[Windows] Implement PrintStackTrace(FILE*)
authorZachary Turner <zturner@google.com>
Thu, 5 Mar 2015 17:47:52 +0000 (17:47 +0000)
committerZachary Turner <zturner@google.com>
Thu, 5 Mar 2015 17:47:52 +0000 (17:47 +0000)
commit62b7b617a8e5ebdfb088988ea57c29833ac9c956
treedaf41abe7ed6836b90e9c9e07dc7d257ded056f0
parente4b9213f80fe52a335e80a1e9f7673e1fec7072c
[Windows] Implement PrintStackTrace(FILE*)

llvm::sys::PrintBacktrace(FILE*) is supposed to print a backtrace
of the current thread given the current PC.  This function was
unimplemented on Windows, and instead the only time we could
print a backtrace was as the result of an exception through
LLVMUnhandledExceptionFilter.

This patch implements backtracing of self by using
RtlCaptureContext to get a CONTEXT for the current thread, and
moving the printing and StackWalk64 code to a common method that
printing own stack trace and printing stack trace of an exception
can use.

Differential Revision: http://reviews.llvm.org/D8068
Reviewed by: Reid Kleckner

llvm-svn: 231382
llvm/lib/Support/Windows/Signals.inc