You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was comparing the decompiler output from Ghidra and Ida and apparently "code" is equivalent to the int type. Maybe it is dependent on the architecture or/and something else? I guess it may be equivalent to an unsigned long long in the x86_64 architecture...
The text was updated successfully, but these errors were encountered:
The code is actually void internally in Ghidra so code* is void* as well. That's because it just points to somewhere but its size cannot be measured (function may have any size up to the last return or even beyond that if far branching is used) nor pointer can be dereferenced (loaded or stored if thinking in pcode fashion), it can only be called but you need calling convention along with list of arguments types and type of returned value and all of this is varying from function to function so type is just void.
I was comparing the decompiler output from Ghidra and Ida and apparently "code" is equivalent to the int type. Maybe it is dependent on the architecture or/and something else? I guess it may be equivalent to an unsigned long long in the x86_64 architecture...
The text was updated successfully, but these errors were encountered: