summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_debug_stack.c
AgeCommit message (Collapse)AuthorFilesLines
2013-06-25util/debug: Make debug_backtrace_capture work for 64bit windows.José Fonseca1-2/+54
Rely on Windows' CaptureStackBackTrace to do the grunt work. Reviewed-by: Brian Paul <brianp@vmware.com>
2013-02-22util/debug: Always use __builtin_frame_address on gcc.Sergey Matyukevich1-4/+1
Should workaround fdo bug 57563. Signed-off-by: José Fonseca <jfonseca@vmware.com>
2012-01-16util: Silence GCC unused-but-set-variable warning.Vinson Lee1-0/+2
Fix this GCC 4.6 warning with 64-bit builds. u_debug_stack.c: In function ‘debug_backtrace_capture’: u_debug_stack.c:45:17: warning: variable ‘frame_pointer’ set but not used [-Wunused-but-set-variable] Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: José Fonseca <jfonseca@vmware.com>
2010-12-02util: __builtin_frame_address() doesn't work on mingw.José Fonseca1-1/+4
2009-05-05util: Limit the stack walk to avoid referencing undefined memory.José Fonseca1-1/+10
2009-04-01util: Lookup symbol names from addresses.José Fonseca1-1/+2
Nice for stack backtraces. Windows-only for now.
2009-03-25util: Don't use x86 asm on x86_64.José Fonseca1-1/+1
2009-02-20util: Stack backtracing facilities.José Fonseca1-0/+97
Not much useful until we have symbol lookup.