I am trying to get DUnit2 working under 64 bits, but I am stumped to what this method does, let alone how to convert it to 64 bits. Pure Pascal would better, but since it refers to the stack (ebp), it might not be possible.
function CallerAddr: Pointer; assembler;
const
CallerIP = $4;
asm
mov eax, ebp
call IsBadPointer
test eax,eax
jne @@Error
mov eax, [ebp].CallerIP
sub eax, 5 // 5 bytes for call
push eax
call IsBadPointer
test eax,eax
pop eax
je @@Finish
@@Error:
xor eax, eax
@@Finish:
end;
push EBP; mov ESP, EBPthe result is that[ EBP + 4 ]is always the return address (as written by theCALLused to enter a function). Framepointers are optional on 64bit, often optimized out, so simply replacing[ EBP + 4 ]with[ RBP + 8 ]isn't ok. The Delphi runtime hasRtlCaptureStackBacktrace()(just like e.g. Linux glibc hasbacktrace()) as "abstracted" solution for this. – FrankH. Aug 19 '12 at 6:39RtlCaptureStackBacktrace()- missed thekernel32.dllbelow. Was largely posting this comment because the accepted answer is a "magic" one and noone unfamiliar with this will be able to learn from it ... – FrankH. Aug 20 '12 at 8:52