blob: 3dd6660b031de84fa9e011a1778fa39cd062cba9 [file] [log] [blame]
Reid Spencer3d7a6142004-08-29 19:22:48 +00001//===- Win32/Signals.cpp - Win32 Signals Implementation ---------*- C++ -*-===//
Mikhail Glushenkovf64d93d2010-10-21 20:40:39 +00002//
Reid Spencer3d7a6142004-08-29 19:22:48 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Mikhail Glushenkovf64d93d2010-10-21 20:40:39 +00007//
Reid Spencer3d7a6142004-08-29 19:22:48 +00008//===----------------------------------------------------------------------===//
9//
10// This file provides the Win32 specific implementation of the Signals class.
11//
12//===----------------------------------------------------------------------===//
13
Michael J. Spencer447762d2010-11-29 18:16:10 +000014#include "Windows.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include <algorithm>
Reid Spencer70b68352004-09-28 23:58:03 +000016#include <stdio.h>
Reid Spencer4aff78a2004-09-16 15:53:16 +000017#include <vector>
18
Jeff Cohen07e22ba2005-02-19 03:01:13 +000019#ifdef __MINGW32__
Reid Spencer187b4ad2006-06-01 19:03:21 +000020 #include <imagehlp.h>
Reid Spencer99049282004-09-23 14:47:10 +000021#else
Reid Spencer187b4ad2006-06-01 19:03:21 +000022 #include <dbghelp.h>
Reid Spencer99049282004-09-23 14:47:10 +000023#endif
24#include <psapi.h>
Reid Spencer4aff78a2004-09-16 15:53:16 +000025
Michael J. Spencer44a36c82011-10-01 00:05:20 +000026#ifdef _MSC_VER
27 #pragma comment(lib, "psapi.lib")
28 #pragma comment(lib, "dbghelp.lib")
29#elif __MINGW32__
Reid Spencer187b4ad2006-06-01 19:03:21 +000030 #if ((HAVE_LIBIMAGEHLP != 1) || (HAVE_LIBPSAPI != 1))
31 #error "libimagehlp.a & libpsapi.a should be present"
32 #endif
Michael J. Spencer44a36c82011-10-01 00:05:20 +000033 // The version of g++ that comes with MinGW does *not* properly understand
34 // the ll format specifier for printf. However, MinGW passes the format
35 // specifiers on to the MSVCRT entirely, and the CRT understands the ll
36 // specifier. So these warnings are spurious in this case. Since we compile
37 // with -Wall, this will generate these warnings which should be ignored. So
38 // we will turn off the warnings for this just file. However, MinGW also does
39 // not support push and pop for diagnostics, so we have to manually turn it
40 // back on at the end of the file.
41 #pragma GCC diagnostic ignored "-Wformat"
42 #pragma GCC diagnostic ignored "-Wformat-extra-args"
43
Anton Korobeynikovb27f11e2011-10-21 09:38:50 +000044 #if !defined(__MINGW64_VERSION_MAJOR)
45 // MinGW.org does not have updated support for the 64-bit versions of the
46 // DebugHlp APIs. So we will have to load them manually. The structures and
47 // method signatures were pulled from DbgHelp.h in the Windows Platform SDK,
48 // and adjusted for brevity.
Michael J. Spencer44a36c82011-10-01 00:05:20 +000049 typedef struct _IMAGEHLP_LINE64 {
50 DWORD SizeOfStruct;
51 PVOID Key;
52 DWORD LineNumber;
53 PCHAR FileName;
54 DWORD64 Address;
55 } IMAGEHLP_LINE64, *PIMAGEHLP_LINE64;
56
57 typedef struct _IMAGEHLP_SYMBOL64 {
58 DWORD SizeOfStruct;
59 DWORD64 Address;
60 DWORD Size;
61 DWORD Flags;
62 DWORD MaxNameLength;
63 CHAR Name[1];
64 } IMAGEHLP_SYMBOL64, *PIMAGEHLP_SYMBOL64;
65
66 typedef struct _tagADDRESS64 {
67 DWORD64 Offset;
68 WORD Segment;
69 ADDRESS_MODE Mode;
70 } ADDRESS64, *LPADDRESS64;
71
72 typedef struct _KDHELP64 {
73 DWORD64 Thread;
74 DWORD ThCallbackStack;
75 DWORD ThCallbackBStore;
76 DWORD NextCallback;
77 DWORD FramePointer;
78 DWORD64 KiCallUserMode;
79 DWORD64 KeUserCallbackDispatcher;
80 DWORD64 SystemRangeStart;
81 DWORD64 KiUserExceptionDispatcher;
82 DWORD64 StackBase;
83 DWORD64 StackLimit;
84 DWORD64 Reserved[5];
85 } KDHELP64, *PKDHELP64;
86
87 typedef struct _tagSTACKFRAME64 {
88 ADDRESS64 AddrPC;
89 ADDRESS64 AddrReturn;
90 ADDRESS64 AddrFrame;
91 ADDRESS64 AddrStack;
92 ADDRESS64 AddrBStore;
93 PVOID FuncTableEntry;
94 DWORD64 Params[4];
95 BOOL Far;
96 BOOL Virtual;
97 DWORD64 Reserved[3];
98 KDHELP64 KdHelp;
99 } STACKFRAME64, *LPSTACKFRAME64;
100
101typedef BOOL (__stdcall *PREAD_PROCESS_MEMORY_ROUTINE64)(HANDLE hProcess,
102 DWORD64 qwBaseAddress, PVOID lpBuffer, DWORD nSize,
103 LPDWORD lpNumberOfBytesRead);
104
105typedef PVOID (__stdcall *PFUNCTION_TABLE_ACCESS_ROUTINE64)( HANDLE ahProcess,
106 DWORD64 AddrBase);
107
108typedef DWORD64 (__stdcall *PGET_MODULE_BASE_ROUTINE64)(HANDLE hProcess,
109 DWORD64 Address);
110
111typedef DWORD64 (__stdcall *PTRANSLATE_ADDRESS_ROUTINE64)(HANDLE hProcess,
112 HANDLE hThread, LPADDRESS64 lpaddr);
113
114typedef BOOL (WINAPI *fpStackWalk64)(DWORD, HANDLE, HANDLE, LPSTACKFRAME64,
115 PVOID, PREAD_PROCESS_MEMORY_ROUTINE64,
116 PFUNCTION_TABLE_ACCESS_ROUTINE64,
117 PGET_MODULE_BASE_ROUTINE64,
118 PTRANSLATE_ADDRESS_ROUTINE64);
119static fpStackWalk64 StackWalk64;
120
121typedef DWORD64 (WINAPI *fpSymGetModuleBase64)(HANDLE, DWORD64);
122static fpSymGetModuleBase64 SymGetModuleBase64;
123
124typedef BOOL (WINAPI *fpSymGetSymFromAddr64)(HANDLE, DWORD64,
125 PDWORD64, PIMAGEHLP_SYMBOL64);
126static fpSymGetSymFromAddr64 SymGetSymFromAddr64;
127
128typedef BOOL (WINAPI *fpSymGetLineFromAddr64)(HANDLE, DWORD64,
129 PDWORD, PIMAGEHLP_LINE64);
130static fpSymGetLineFromAddr64 SymGetLineFromAddr64;
131
132typedef PVOID (WINAPI *fpSymFunctionTableAccess64)(HANDLE, DWORD64);
133static fpSymFunctionTableAccess64 SymFunctionTableAccess64;
134
135static bool load64BitDebugHelp(void) {
136 HMODULE hLib = ::LoadLibrary("Dbghelp.dll");
137 if (hLib) {
138 StackWalk64 = (fpStackWalk64)
139 ::GetProcAddress(hLib, "StackWalk64");
140 SymGetModuleBase64 = (fpSymGetModuleBase64)
141 ::GetProcAddress(hLib, "SymGetModuleBase64");
142 SymGetSymFromAddr64 = (fpSymGetSymFromAddr64)
143 ::GetProcAddress(hLib, "SymGetSymFromAddr64");
144 SymGetLineFromAddr64 = (fpSymGetLineFromAddr64)
145 ::GetProcAddress(hLib, "SymGetLineFromAddr64");
146 SymFunctionTableAccess64 = (fpSymFunctionTableAccess64)
147 ::GetProcAddress(hLib, "SymFunctionTableAccess64");
148 }
149 return StackWalk64 != NULL;
150}
Anton Korobeynikovb27f11e2011-10-21 09:38:50 +0000151 #endif // !defined(__MINGW64_VERSION_MAJOR)
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000152#endif // __MINGW32__
Reid Spencer4aff78a2004-09-16 15:53:16 +0000153
154// Forward declare.
155static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep);
156static BOOL WINAPI LLVMConsoleCtrlHandler(DWORD dwCtrlType);
157
Jeff Cohenba7cc682005-08-02 03:04:47 +0000158// InterruptFunction - The function to call if ctrl-c is pressed.
159static void (*InterruptFunction)() = 0;
160
Reid Spencer70b68352004-09-28 23:58:03 +0000161static std::vector<llvm::sys::Path> *FilesToRemove = NULL;
Chris Lattner4fdd0422009-03-04 21:21:36 +0000162static std::vector<std::pair<void(*)(void*), void*> > *CallBacksToRun = 0;
Reid Spencer4aff78a2004-09-16 15:53:16 +0000163static bool RegisteredUnhandledExceptionFilter = false;
Reid Spencer1bdd0f02004-09-19 05:37:39 +0000164static bool CleanupExecuted = false;
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000165static bool ExitOnUnhandledExceptions = false;
Reid Spencer1bdd0f02004-09-19 05:37:39 +0000166static PTOP_LEVEL_EXCEPTION_FILTER OldFilter = NULL;
Reid Spencer90debc52004-09-17 03:02:27 +0000167
168// Windows creates a new thread to execute the console handler when an event
169// (such as CTRL/C) occurs. This causes concurrency issues with the above
170// globals which this critical section addresses.
Reid Spencer4aff78a2004-09-16 15:53:16 +0000171static CRITICAL_SECTION CriticalSection;
172
Reid Spencer3d7a6142004-08-29 19:22:48 +0000173namespace llvm {
Reid Spencer3d7a6142004-08-29 19:22:48 +0000174
175//===----------------------------------------------------------------------===//
Mikhail Glushenkovf64d93d2010-10-21 20:40:39 +0000176//=== WARNING: Implementation here must contain only Win32 specific code
Reid Spencer4aff78a2004-09-16 15:53:16 +0000177//=== and must not be UNIX code
Reid Spencer3d7a6142004-08-29 19:22:48 +0000178//===----------------------------------------------------------------------===//
179
Daniel Dunbar1bdedd32009-09-22 15:58:35 +0000180#ifdef _MSC_VER
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000181/// CRTReportHook - Function called on a CRT debugging event.
182static int CRTReportHook(int ReportType, char *Message, int *Return) {
183 // Don't cause a DebugBreak() on return.
184 if (Return)
185 *Return = 0;
Reid Spencer4aff78a2004-09-16 15:53:16 +0000186
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000187 switch (ReportType) {
188 default:
189 case _CRT_ASSERT:
190 fprintf(stderr, "CRT assert: %s\n", Message);
191 // FIXME: Is there a way to just crash? Perhaps throw to the unhandled
192 // exception code? Perhaps SetErrorMode() handles this.
193 _exit(3);
194 break;
195 case _CRT_ERROR:
196 fprintf(stderr, "CRT error: %s\n", Message);
197 // FIXME: Is there a way to just crash? Perhaps throw to the unhandled
198 // exception code? Perhaps SetErrorMode() handles this.
199 _exit(3);
200 break;
201 case _CRT_WARN:
202 fprintf(stderr, "CRT warn: %s\n", Message);
203 break;
204 }
205
206 // Don't call _CrtDbgReport.
207 return TRUE;
208}
Daniel Dunbar1bdedd32009-09-22 15:58:35 +0000209#endif
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000210
211static void RegisterHandler() {
Anton Korobeynikovb27f11e2011-10-21 09:38:50 +0000212#if __MINGW32__ && !defined(__MINGW64_VERSION_MAJOR)
213 // On MinGW.org, we need to load up the symbols explicitly, because the
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000214 // Win32 framework they include does not have support for the 64-bit
215 // versions of the APIs we need. If we cannot load up the APIs (which
216 // would be unexpected as they should exist on every version of Windows
217 // we support), we will bail out since there would be nothing to report.
218 if (!load64BitDebugHelp()) {
219 assert(false && "These APIs should always be available");
220 return;
221 }
222#endif
223
Reid Spencer1bdd0f02004-09-19 05:37:39 +0000224 if (RegisteredUnhandledExceptionFilter) {
Reid Spencer90debc52004-09-17 03:02:27 +0000225 EnterCriticalSection(&CriticalSection);
Reid Spencer4aff78a2004-09-16 15:53:16 +0000226 return;
Reid Spencer90debc52004-09-17 03:02:27 +0000227 }
Reid Spencer4aff78a2004-09-16 15:53:16 +0000228
229 // Now's the time to create the critical section. This is the first time
230 // through here, and there's only one thread.
231 InitializeCriticalSection(&CriticalSection);
232
233 // Enter it immediately. Now if someone hits CTRL/C, the console handler
234 // can't proceed until the globals are updated.
235 EnterCriticalSection(&CriticalSection);
236
237 RegisteredUnhandledExceptionFilter = true;
Reid Spencer1bdd0f02004-09-19 05:37:39 +0000238 OldFilter = SetUnhandledExceptionFilter(LLVMUnhandledExceptionFilter);
Reid Spencer4aff78a2004-09-16 15:53:16 +0000239 SetConsoleCtrlHandler(LLVMConsoleCtrlHandler, TRUE);
240
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000241 // Environment variable to disable any kind of crash dialog.
Argyrios Kyrtzidiscd8fe082012-01-11 20:53:25 +0000242 if (getenv("LLVM_DISABLE_CRASH_REPORT")) {
NAKAMURA Takumiad205572010-10-06 02:15:22 +0000243#ifdef _MSC_VER
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000244 _CrtSetReportHook(CRTReportHook);
NAKAMURA Takumiad205572010-10-06 02:15:22 +0000245#endif
NAKAMURA Takumibb4ea1f2011-01-17 22:41:15 +0000246 SetErrorMode(SEM_FAILCRITICALERRORS |
247 SEM_NOGPFAULTERRORBOX |
248 SEM_NOOPENFILEERRORBOX);
Daniel Dunbar1bdedd32009-09-22 15:58:35 +0000249 ExitOnUnhandledExceptions = true;
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000250 }
251
Reid Spencer4aff78a2004-09-16 15:53:16 +0000252 // IMPORTANT NOTE: Caller must call LeaveCriticalSection(&CriticalSection) or
253 // else multi-threading problems will ensue.
254}
255
Reid Spencer3d7a6142004-08-29 19:22:48 +0000256// RemoveFileOnSignal - The public API
Reid Spencer50eac3b2006-08-25 21:37:17 +0000257bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
Reid Spencer4aff78a2004-09-16 15:53:16 +0000258 RegisterHandler();
259
Reid Spencer50eac3b2006-08-25 21:37:17 +0000260 if (CleanupExecuted) {
261 if (ErrMsg)
262 *ErrMsg = "Process terminating -- cannot register for removal";
263 return true;
264 }
Reid Spencer1bdd0f02004-09-19 05:37:39 +0000265
Reid Spencer4aff78a2004-09-16 15:53:16 +0000266 if (FilesToRemove == NULL)
Reid Spencer70b68352004-09-28 23:58:03 +0000267 FilesToRemove = new std::vector<sys::Path>;
Reid Spencer4aff78a2004-09-16 15:53:16 +0000268
Reid Spencerf070b6c2004-11-16 06:59:53 +0000269 FilesToRemove->push_back(Filename);
Reid Spencer4aff78a2004-09-16 15:53:16 +0000270
271 LeaveCriticalSection(&CriticalSection);
Reid Spencer50eac3b2006-08-25 21:37:17 +0000272 return false;
Reid Spencer3d7a6142004-08-29 19:22:48 +0000273}
274
Dan Gohmane201c072010-09-01 14:17:34 +0000275// DontRemoveFileOnSignal - The public API
276void sys::DontRemoveFileOnSignal(const sys::Path &Filename) {
277 if (FilesToRemove == NULL)
278 return;
279
NAKAMURA Takumi3f688b92010-10-22 01:23:50 +0000280 RegisterHandler();
281
Dan Gohmane201c072010-09-01 14:17:34 +0000282 FilesToRemove->push_back(Filename);
283 std::vector<sys::Path>::reverse_iterator I =
284 std::find(FilesToRemove->rbegin(), FilesToRemove->rend(), Filename);
285 if (I != FilesToRemove->rend())
286 FilesToRemove->erase(I.base()-1);
287
288 LeaveCriticalSection(&CriticalSection);
289}
290
Reid Spencer3d7a6142004-08-29 19:22:48 +0000291/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
292/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
Reid Spencer4aff78a2004-09-16 15:53:16 +0000293void sys::PrintStackTraceOnErrorSignal() {
294 RegisterHandler();
295 LeaveCriticalSection(&CriticalSection);
Reid Spencer3d7a6142004-08-29 19:22:48 +0000296}
297
Argyrios Kyrtzidiseb9ae762013-01-09 19:42:40 +0000298void llvm::sys::PrintStackTrace(FILE *) {
299 // FIXME: Implement.
300}
301
Chris Lattner6a5d6ec2005-08-02 02:14:22 +0000302
303void sys::SetInterruptFunction(void (*IF)()) {
Jeff Cohenba7cc682005-08-02 03:04:47 +0000304 RegisterHandler();
Jeff Cohen9aafa062005-08-02 03:26:32 +0000305 InterruptFunction = IF;
Jeff Cohenba7cc682005-08-02 03:04:47 +0000306 LeaveCriticalSection(&CriticalSection);
Chris Lattner6a5d6ec2005-08-02 02:14:22 +0000307}
Sebastian Redl8d5baa02009-03-19 23:26:52 +0000308
309
310/// AddSignalHandler - Add a function to be called when a signal is delivered
311/// to the process. The handler can have a cookie passed to it to identify
312/// what instance of the handler it is.
313void sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) {
314 if (CallBacksToRun == 0)
315 CallBacksToRun = new std::vector<std::pair<void(*)(void*), void*> >();
316 CallBacksToRun->push_back(std::make_pair(FnPtr, Cookie));
317 RegisterHandler();
Torok Edwin6fb09562010-03-31 12:07:16 +0000318 LeaveCriticalSection(&CriticalSection);
Sebastian Redl8d5baa02009-03-19 23:26:52 +0000319}
Reid Spencer3d7a6142004-08-29 19:22:48 +0000320}
321
Reid Spencer4aff78a2004-09-16 15:53:16 +0000322static void Cleanup() {
323 EnterCriticalSection(&CriticalSection);
324
Reid Spencer1bdd0f02004-09-19 05:37:39 +0000325 // Prevent other thread from registering new files and directories for
326 // removal, should we be executing because of the console handler callback.
327 CleanupExecuted = true;
328
329 // FIXME: open files cannot be deleted.
330
Reid Spencer4aff78a2004-09-16 15:53:16 +0000331 if (FilesToRemove != NULL)
332 while (!FilesToRemove->empty()) {
Chris Lattner433cf712009-07-09 16:17:28 +0000333 FilesToRemove->back().eraseFromDisk();
Reid Spencer4aff78a2004-09-16 15:53:16 +0000334 FilesToRemove->pop_back();
335 }
336
Chris Lattner4fdd0422009-03-04 21:21:36 +0000337 if (CallBacksToRun)
338 for (unsigned i = 0, e = CallBacksToRun->size(); i != e; ++i)
339 (*CallBacksToRun)[i].first((*CallBacksToRun)[i].second);
Reid Spencer4aff78a2004-09-16 15:53:16 +0000340
341 LeaveCriticalSection(&CriticalSection);
342}
343
Daniel Dunbar68272562010-05-08 02:10:34 +0000344void llvm::sys::RunInterruptHandlers() {
345 Cleanup();
346}
347
Reid Spencer4aff78a2004-09-16 15:53:16 +0000348static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) {
Mikhail Glushenkov32acd742010-10-27 09:09:04 +0000349 Cleanup();
Mikhail Glushenkovf64d93d2010-10-21 20:40:39 +0000350
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000351 // Initialize the STACKFRAME structure.
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000352 STACKFRAME64 StackFrame;
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000353 memset(&StackFrame, 0, sizeof(StackFrame));
Reid Spencer4aff78a2004-09-16 15:53:16 +0000354
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000355 DWORD machineType;
356#if defined(_M_X64)
357 machineType = IMAGE_FILE_MACHINE_AMD64;
358 StackFrame.AddrPC.Offset = ep->ContextRecord->Rip;
359 StackFrame.AddrPC.Mode = AddrModeFlat;
360 StackFrame.AddrStack.Offset = ep->ContextRecord->Rsp;
361 StackFrame.AddrStack.Mode = AddrModeFlat;
362 StackFrame.AddrFrame.Offset = ep->ContextRecord->Rbp;
363 StackFrame.AddrFrame.Mode = AddrModeFlat;
364#elif defined(_M_IX86)
365 machineType = IMAGE_FILE_MACHINE_I386;
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000366 StackFrame.AddrPC.Offset = ep->ContextRecord->Eip;
367 StackFrame.AddrPC.Mode = AddrModeFlat;
368 StackFrame.AddrStack.Offset = ep->ContextRecord->Esp;
369 StackFrame.AddrStack.Mode = AddrModeFlat;
370 StackFrame.AddrFrame.Offset = ep->ContextRecord->Ebp;
371 StackFrame.AddrFrame.Mode = AddrModeFlat;
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000372#endif
Reid Spencer4aff78a2004-09-16 15:53:16 +0000373
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000374 HANDLE hProcess = GetCurrentProcess();
375 HANDLE hThread = GetCurrentThread();
Reid Spencer4aff78a2004-09-16 15:53:16 +0000376
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000377 // Initialize the symbol handler.
378 SymSetOptions(SYMOPT_DEFERRED_LOADS|SYMOPT_LOAD_LINES);
379 SymInitialize(hProcess, NULL, TRUE);
Reid Spencer4aff78a2004-09-16 15:53:16 +0000380
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000381 while (true) {
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000382 if (!StackWalk64(machineType, hProcess, hThread, &StackFrame,
383 ep->ContextRecord, NULL, SymFunctionTableAccess64,
384 SymGetModuleBase64, NULL)) {
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000385 break;
Reid Spencer4aff78a2004-09-16 15:53:16 +0000386 }
Chuck Rose III07b57d22007-11-21 00:37:56 +0000387
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000388 if (StackFrame.AddrFrame.Offset == 0)
389 break;
390
391 // Print the PC in hexadecimal.
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000392 DWORD64 PC = StackFrame.AddrPC.Offset;
393#if defined(_M_X64)
394 fprintf(stderr, "0x%016llX", PC);
395#elif defined(_M_IX86)
396 fprintf(stderr, "0x%08lX", static_cast<DWORD>(PC));
397#endif
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000398
399 // Print the parameters. Assume there are four.
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000400#if defined(_M_X64)
401 fprintf(stderr, " (0x%016llX 0x%016llX 0x%016llX 0x%016llX)",
402 StackFrame.Params[0],
403 StackFrame.Params[1],
404 StackFrame.Params[2],
405 StackFrame.Params[3]);
406#elif defined(_M_IX86)
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000407 fprintf(stderr, " (0x%08lX 0x%08lX 0x%08lX 0x%08lX)",
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000408 static_cast<DWORD>(StackFrame.Params[0]),
409 static_cast<DWORD>(StackFrame.Params[1]),
410 static_cast<DWORD>(StackFrame.Params[2]),
411 static_cast<DWORD>(StackFrame.Params[3]));
412#endif
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000413 // Verify the PC belongs to a module in this process.
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000414 if (!SymGetModuleBase64(hProcess, PC)) {
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000415 fputs(" <unknown module>\n", stderr);
416 continue;
417 }
418
419 // Print the symbol name.
420 char buffer[512];
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000421 IMAGEHLP_SYMBOL64 *symbol = reinterpret_cast<IMAGEHLP_SYMBOL64 *>(buffer);
422 memset(symbol, 0, sizeof(IMAGEHLP_SYMBOL64));
423 symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
424 symbol->MaxNameLength = 512 - sizeof(IMAGEHLP_SYMBOL64);
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000425
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000426 DWORD64 dwDisp;
427 if (!SymGetSymFromAddr64(hProcess, PC, &dwDisp, symbol)) {
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000428 fputc('\n', stderr);
429 continue;
430 }
431
432 buffer[511] = 0;
433 if (dwDisp > 0)
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000434 fprintf(stderr, ", %s() + 0x%llX bytes(s)", symbol->Name, dwDisp);
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000435 else
436 fprintf(stderr, ", %s", symbol->Name);
437
438 // Print the source file and line number information.
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000439 IMAGEHLP_LINE64 line;
440 DWORD dwLineDisp;
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000441 memset(&line, 0, sizeof(line));
442 line.SizeOfStruct = sizeof(line);
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000443 if (SymGetLineFromAddr64(hProcess, PC, &dwLineDisp, &line)) {
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000444 fprintf(stderr, ", %s, line %lu", line.FileName, line.LineNumber);
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000445 if (dwLineDisp > 0)
446 fprintf(stderr, " + 0x%lX byte(s)", dwLineDisp);
Mikhail Glushenkov080d86f2010-10-28 08:25:44 +0000447 }
448
449 fputc('\n', stderr);
450 }
451
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000452 if (ExitOnUnhandledExceptions)
NAKAMURA Takumi64404a32011-11-29 07:47:04 +0000453 _exit(ep->ExceptionRecord->ExceptionCode);
Daniel Dunbar4c7b0ca2009-09-22 09:50:28 +0000454
Reid Spencer4aff78a2004-09-16 15:53:16 +0000455 // Allow dialog box to pop up allowing choice to start debugger.
Reid Spencer1bdd0f02004-09-19 05:37:39 +0000456 if (OldFilter)
457 return (*OldFilter)(ep);
458 else
459 return EXCEPTION_CONTINUE_SEARCH;
Reid Spencer4aff78a2004-09-16 15:53:16 +0000460}
461
462static BOOL WINAPI LLVMConsoleCtrlHandler(DWORD dwCtrlType) {
Jeff Cohen9aafa062005-08-02 03:26:32 +0000463 // We are running in our very own thread, courtesy of Windows.
Jeff Cohenba7cc682005-08-02 03:04:47 +0000464 EnterCriticalSection(&CriticalSection);
Reid Spencer4aff78a2004-09-16 15:53:16 +0000465 Cleanup();
466
Jeff Cohenba7cc682005-08-02 03:04:47 +0000467 // If an interrupt function has been set, go and run one it; otherwise,
468 // the process dies.
469 void (*IF)() = InterruptFunction;
470 InterruptFunction = 0; // Don't run it on another CTRL-C.
471
472 if (IF) {
Jeff Cohen9aafa062005-08-02 03:26:32 +0000473 // Note: if the interrupt function throws an exception, there is nothing
474 // to catch it in this thread so it will kill the process.
475 IF(); // Run it now.
Jeff Cohenba7cc682005-08-02 03:04:47 +0000476 LeaveCriticalSection(&CriticalSection);
477 return TRUE; // Don't kill the process.
478 }
479
Reid Spencer90debc52004-09-17 03:02:27 +0000480 // Allow normal processing to take place; i.e., the process dies.
Jeff Cohenba7cc682005-08-02 03:04:47 +0000481 LeaveCriticalSection(&CriticalSection);
Reid Spencer4aff78a2004-09-16 15:53:16 +0000482 return FALSE;
483}
Michael J. Spencer44a36c82011-10-01 00:05:20 +0000484
485#if __MINGW32__
486 // We turned these warnings off for this file so that MinGW-g++ doesn't
487 // complain about the ll format specifiers used. Now we are turning the
488 // warnings back on. If MinGW starts to support diagnostic stacks, we can
489 // replace this with a pop.
490 #pragma GCC diagnostic warning "-Wformat"
491 #pragma GCC diagnostic warning "-Wformat-extra-args"
492#endif