Displaying 1 result from an estimated 1 matches for "42c385".
2020 Feb 28
2
Is BlockAddress always correct ?
..., 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 print out is 0x42c383.
I guess "add rsp,0x20" is seen as within the basic block of the
f...