Displaying 1 result from an estimated 1 matches for "retrieve_url".
2020 Feb 28
2
Is BlockAddress always correct ?
...my own program
and then I print it out.
But , I found that BlockAddress is not always correct.
For example, some function's rsp (stack pointer) or other register is
maintained by caller,
so it would be like:
https://i.imgur.com/Rwuy5ju.png
0x42c37a: e8 c1 7a 00 00 call 433e40 <retrieve_url>
0x42c37f: 48 83 c4 20 add rsp,0x20
0x42c383: eb 00 jmp 42c385 <main+0x16b5>
What I want is the basic block which is "excatly" after the function call ,
0x42c37f
I want BlockAddress give me 0x42c37f.
But actually, the output my program p...