Hi,
Are there Visual C++ versions of the following (in GCC)?
__builtin_return_address__builtin_frame_address
Reference - http://gcc.gnu.org/onlinedocs/gcc/Return-Address.html
If not, is there a way to emulate them?
Thanks.
|
|
Hi, Are there Visual C++ versions of the following (in GCC)?
Reference - http://gcc.gnu.org/onlinedocs/gcc/Return-Address.html If not, is there a way to emulate them? Thanks.
|
||
|
|
|
|
Here is a full list of the available Visual Studio 2008 Compiler Intrinsics. One of the ones you are specifically looking for here is _ReturnAddress... still looking for the other. For walking the stack (and getting frame pointers), read the details on the Visual Leak Detector stack walking mechanism, which uses StackWalk64 internally. |
||||||||
|
|
|
For functions declared For functions declared I'm not sure about |
||||
|
|
|
The corresponding function to __builtin_frame_address, if it exists, would likely not work in optimized code, since VC does an optimization called Frame Pointer Omission. However, you can turn that optimization off, as described here: http://msdn.microsoft.com/en-us/library/2kxx5t2c%28VS.71%29.aspx Note that, for x86 you can write inline assembly code http://msdn.microsoft.com/en-us/library/4ks26t93%28VS.71%29.aspx unfortunately, it doesn't work for 64-bit architectures so that probably isn't helpful to you. |
||
|
|