Get mangled function name #7110
-
Hello, I'm using FlatAPI in python and I'm trying to get the original mangled name (like
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I'm not sure if this is optimal, but you can do |
Beta Was this translation helpful? Give feedback.
-
Each mangled symbol should still be at the address of the function, along with the demangled symbol. It looks like there is no method on SymbolManager symbolManager = currentProgram.getSymbolManager();
Symbol[] symbols = symbolManager.getSymbols(function_entry_point); |
Beta Was this translation helpful? Give feedback.
I'm not sure if this is optimal, but you can do
for entry in currentProgram.getSymbolTable().getLabelHistory(addr): ...
and try to get it from there.entry
is of typeLabelHistory
which you can look up.