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
Hello, I wanna get parameters' high name of a function. And Here is a simplelified snippet of my code:
dRes_main = decomplib.decompileFunction(mainFunction, 20, monitor)
hfunction_main = dRes_main.getHighFunction()
pstBlocks = hfunction_main.getBasicBlocks()
...
for pstBlock in pstBlocks:
if pcode.getMnemonic() == "CALL":
varnodes = pcode.getInputs()
for i in range(1, len(varnodes)):
print(varnodes[i].getHigh().getName()
But I got "UNNAMED" instead of "local_xx". Could someone please provide some guidance on this issue? Your assistance would be greatly appreciated. Thank you.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello, I wanna get parameters' high name of a function. And Here is a simplelified snippet of my code:
But I got "UNNAMED" instead of "local_xx". Could someone please provide some guidance on this issue? Your assistance would be greatly appreciated. Thank you.
Beta Was this translation helpful? Give feedback.
All reactions