Decode symbols #301
-
Hello, I'm trying to recover the symbol names of disassembled programs. For example:
Here we can do some math to figure out that the offsets My question (related to #300) is whether there is a way to do this within
If I include the Bonus question: can this also be extended to cases where the assembler doesn't resolve the address but emits an actual rip-relative operand? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Answering my own question, I just need to read the relocation table (the same output as |
Beta Was this translation helpful? Give feedback.
Answering my own question, I just need to read the relocation table (the same output as
objdump -r
) and figure out the address correspondence.