blob: 3a7e90b38e21cedb12826e655124ac3afdbfea1b [file] [log] [blame]
Reid Spencer496c2772004-08-29 19:22:48 +00001//===- Win32/Signals.cpp - Win32 Signals Implementation ---------*- C++ -*-===//
Mikhail Glushenkov84ba14f2010-10-21 20:40:39 +00002//
Reid Spencer496c2772004-08-29 19:22:48 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Glushenkov84ba14f2010-10-21 20:40:39 +00007//
Reid Spencer496c2772004-08-29 19:22:48 +00008//===----------------------------------------------------------------------===//
9//
10// This file provides the Win32 specific implementation of the Signals class.
11//
12//===----------------------------------------------------------------------===//
13
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000014#include "Windows.h"
Reid Spencerced41102004-09-28 23:58:03 +000015#include <stdio.h>
Reid Spencer90b54132004-09-16 15:53:16 +000016#include <vector>
Sebastian Redl48fe6352009-03-19 23:26:52 +000017#include <algorithm>
Reid Spencer90b54132004-09-16 15:53:16 +000018
Jeff Cohen23a1cf32005-02-19 03:01:13 +000019#ifdef __MINGW32__
Reid Spencer48fdf912006-06-01 19:03:21 +000020 #include <imagehlp.h>
Reid Spencerf6cbc0f2004-09-23 14:47:10 +000021#else
Reid Spencer48fdf912006-06-01 19:03:21 +000022 #include <dbghelp.h>
Reid Spencerf6cbc0f2004-09-23 14:47:10 +000023#endif
24#include <psapi.h>
Reid Spencer90b54132004-09-16 15:53:16 +000025
Michael J. Spencer0bcd9c72011-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 Spencer48fdf912006-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. Spencer0bcd9c72011-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 Korobeynikovcda065d2011-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. Spencer0bcd9c72011-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 Korobeynikovcda065d2011-10-21 09:38:50 +0000151 #endif // !defined(__MINGW64_VERSION_MAJOR)
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000152#endif // __MINGW32__
Reid Spencer90b54132004-09-16 15:53:16 +0000153
154// Forward declare.
155static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep);
156static BOOL WINAPI LLVMConsoleCtrlHandler(DWORD dwCtrlType);
157
Jeff Cohenee841a12005-08-02 03:04:47 +0000158// InterruptFunction - The function to call if ctrl-c is pressed.
159static void (*InterruptFunction)() = 0;
160
Reid Spencerced41102004-09-28 23:58:03 +0000161static std::vector<llvm::sys::Path> *FilesToRemove = NULL;
Chris Lattner35033a52009-03-04 21:21:36 +0000162static std::vector<std::pair<void(*)(void*), void*> > *CallBacksToRun = 0;
Reid Spencer90b54132004-09-16 15:53:16 +0000163static bool RegisteredUnhandledExceptionFilter = false;
Reid Spencer7b60a152004-09-19 05:37:39 +0000164static bool CleanupExecuted = false;
Daniel Dunbardf338842009-09-22 09:50:28 +0000165static bool ExitOnUnhandledExceptions = false;
Reid Spencer7b60a152004-09-19 05:37:39 +0000166static PTOP_LEVEL_EXCEPTION_FILTER OldFilter = NULL;
Reid Spencer298d6c12004-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 Spencer90b54132004-09-16 15:53:16 +0000171static CRITICAL_SECTION CriticalSection;
172
Reid Spencer496c2772004-08-29 19:22:48 +0000173namespace llvm {
Reid Spencer496c2772004-08-29 19:22:48 +0000174
175//===----------------------------------------------------------------------===//
Mikhail Glushenkov84ba14f2010-10-21 20:40:39 +0000176//=== WARNING: Implementation here must contain only Win32 specific code
Reid Spencer90b54132004-09-16 15:53:16 +0000177//=== and must not be UNIX code
Reid Spencer496c2772004-08-29 19:22:48 +0000178//===----------------------------------------------------------------------===//
179
Daniel Dunbar3be2d122009-09-22 15:58:35 +0000180#ifdef _MSC_VER
Daniel Dunbardf338842009-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 Spencer90b54132004-09-16 15:53:16 +0000186
Daniel Dunbardf338842009-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 Dunbar3be2d122009-09-22 15:58:35 +0000209#endif
Daniel Dunbardf338842009-09-22 09:50:28 +0000210
211static void RegisterHandler() {
Anton Korobeynikovcda065d2011-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. Spencer0bcd9c72011-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 Spencer7b60a152004-09-19 05:37:39 +0000224 if (RegisteredUnhandledExceptionFilter) {
Reid Spencer298d6c12004-09-17 03:02:27 +0000225 EnterCriticalSection(&CriticalSection);
Reid Spencer90b54132004-09-16 15:53:16 +0000226 return;
Reid Spencer298d6c12004-09-17 03:02:27 +0000227 }
Reid Spencer90b54132004-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 Spencer7b60a152004-09-19 05:37:39 +0000238 OldFilter = SetUnhandledExceptionFilter(LLVMUnhandledExceptionFilter);
Reid Spencer90b54132004-09-16 15:53:16 +0000239 SetConsoleCtrlHandler(LLVMConsoleCtrlHandler, TRUE);
240
Daniel Dunbardf338842009-09-22 09:50:28 +0000241 // Environment variable to disable any kind of crash dialog.
242 if (getenv("LLVM_DISABLE_CRT_DEBUG")) {
NAKAMURA Takumia8bbe702010-10-06 02:15:22 +0000243#ifdef _MSC_VER
Daniel Dunbardf338842009-09-22 09:50:28 +0000244 _CrtSetReportHook(CRTReportHook);
NAKAMURA Takumia8bbe702010-10-06 02:15:22 +0000245#endif
NAKAMURA Takumiac25e442011-01-17 22:41:15 +0000246 SetErrorMode(SEM_FAILCRITICALERRORS |
247 SEM_NOGPFAULTERRORBOX |
248 SEM_NOOPENFILEERRORBOX);
Daniel Dunbar3be2d122009-09-22 15:58:35 +0000249 ExitOnUnhandledExceptions = true;
Daniel Dunbardf338842009-09-22 09:50:28 +0000250 }
251
Reid Spencer90b54132004-09-16 15:53:16 +0000252 // IMPORTANT NOTE: Caller must call LeaveCriticalSection(&CriticalSection) or
253 // else multi-threading problems will ensue.
254}
255
Reid Spencer496c2772004-08-29 19:22:48 +0000256// RemoveFileOnSignal - The public API
Reid Spencer05545752006-08-25 21:37:17 +0000257bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
Reid Spencer90b54132004-09-16 15:53:16 +0000258 RegisterHandler();
259
Reid Spencer05545752006-08-25 21:37:17 +0000260 if (CleanupExecuted) {
261 if (ErrMsg)
262 *ErrMsg = "Process terminating -- cannot register for removal";
263 return true;
264 }
Reid Spencer7b60a152004-09-19 05:37:39 +0000265
Reid Spencer90b54132004-09-16 15:53:16 +0000266 if (FilesToRemove == NULL)
Reid Spencerced41102004-09-28 23:58:03 +0000267 FilesToRemove = new std::vector<sys::Path>;
Reid Spencer90b54132004-09-16 15:53:16 +0000268
Reid Spencer98601212004-11-16 06:59:53 +0000269 FilesToRemove->push_back(Filename);
Reid Spencer90b54132004-09-16 15:53:16 +0000270
271 LeaveCriticalSection(&CriticalSection);
Reid Spencer05545752006-08-25 21:37:17 +0000272 return false;
Reid Spencer496c2772004-08-29 19:22:48 +0000273}
274
Dan Gohman41154112010-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 Takumi2172f3c2010-10-22 01:23:50 +0000280 RegisterHandler();
281
Dan Gohman41154112010-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 Spencer496c2772004-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 Spencer90b54132004-09-16 15:53:16 +0000293void sys::PrintStackTraceOnErrorSignal() {
294 RegisterHandler();
295 LeaveCriticalSection(&CriticalSection);
Reid Spencer496c2772004-08-29 19:22:48 +0000296}
297
Chris Lattnerfa8c2922005-08-02 02:14:22 +0000298
299void sys::SetInterruptFunction(void (*IF)()) {
Jeff Cohenee841a12005-08-02 03:04:47 +0000300 RegisterHandler();
Jeff Cohen64fe5842005-08-02 03:26:32 +0000301 InterruptFunction = IF;
Jeff Cohenee841a12005-08-02 03:04:47 +0000302 LeaveCriticalSection(&CriticalSection);
Chris Lattnerfa8c2922005-08-02 02:14:22 +0000303}
Sebastian Redl48fe6352009-03-19 23:26:52 +0000304
305
306/// AddSignalHandler - Add a function to be called when a signal is delivered
307/// to the process. The handler can have a cookie passed to it to identify
308/// what instance of the handler it is.
309void sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) {
310 if (CallBacksToRun == 0)
311 CallBacksToRun = new std::vector<std::pair<void(*)(void*), void*> >();
312 CallBacksToRun->push_back(std::make_pair(FnPtr, Cookie));
313 RegisterHandler();
Torok Edwin61633362010-03-31 12:07:16 +0000314 LeaveCriticalSection(&CriticalSection);
Sebastian Redl48fe6352009-03-19 23:26:52 +0000315}
Reid Spencer496c2772004-08-29 19:22:48 +0000316}
317
Reid Spencer90b54132004-09-16 15:53:16 +0000318static void Cleanup() {
319 EnterCriticalSection(&CriticalSection);
320
Reid Spencer7b60a152004-09-19 05:37:39 +0000321 // Prevent other thread from registering new files and directories for
322 // removal, should we be executing because of the console handler callback.
323 CleanupExecuted = true;
324
325 // FIXME: open files cannot be deleted.
326
Reid Spencer90b54132004-09-16 15:53:16 +0000327 if (FilesToRemove != NULL)
328 while (!FilesToRemove->empty()) {
Chris Lattnerac356602009-07-09 16:17:28 +0000329 FilesToRemove->back().eraseFromDisk();
Reid Spencer90b54132004-09-16 15:53:16 +0000330 FilesToRemove->pop_back();
331 }
332
Chris Lattner35033a52009-03-04 21:21:36 +0000333 if (CallBacksToRun)
334 for (unsigned i = 0, e = CallBacksToRun->size(); i != e; ++i)
335 (*CallBacksToRun)[i].first((*CallBacksToRun)[i].second);
Reid Spencer90b54132004-09-16 15:53:16 +0000336
337 LeaveCriticalSection(&CriticalSection);
338}
339
Daniel Dunbarfb89e082010-05-08 02:10:34 +0000340void llvm::sys::RunInterruptHandlers() {
341 Cleanup();
342}
343
Reid Spencer90b54132004-09-16 15:53:16 +0000344static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) {
Mikhail Glushenkov11d03f62010-10-27 09:09:04 +0000345 Cleanup();
Mikhail Glushenkov84ba14f2010-10-21 20:40:39 +0000346
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000347 // Initialize the STACKFRAME structure.
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000348 STACKFRAME64 StackFrame;
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000349 memset(&StackFrame, 0, sizeof(StackFrame));
Reid Spencer90b54132004-09-16 15:53:16 +0000350
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000351 DWORD machineType;
352#if defined(_M_X64)
353 machineType = IMAGE_FILE_MACHINE_AMD64;
354 StackFrame.AddrPC.Offset = ep->ContextRecord->Rip;
355 StackFrame.AddrPC.Mode = AddrModeFlat;
356 StackFrame.AddrStack.Offset = ep->ContextRecord->Rsp;
357 StackFrame.AddrStack.Mode = AddrModeFlat;
358 StackFrame.AddrFrame.Offset = ep->ContextRecord->Rbp;
359 StackFrame.AddrFrame.Mode = AddrModeFlat;
360#elif defined(_M_IX86)
361 machineType = IMAGE_FILE_MACHINE_I386;
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000362 StackFrame.AddrPC.Offset = ep->ContextRecord->Eip;
363 StackFrame.AddrPC.Mode = AddrModeFlat;
364 StackFrame.AddrStack.Offset = ep->ContextRecord->Esp;
365 StackFrame.AddrStack.Mode = AddrModeFlat;
366 StackFrame.AddrFrame.Offset = ep->ContextRecord->Ebp;
367 StackFrame.AddrFrame.Mode = AddrModeFlat;
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000368#endif
Reid Spencer90b54132004-09-16 15:53:16 +0000369
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000370 HANDLE hProcess = GetCurrentProcess();
371 HANDLE hThread = GetCurrentThread();
Reid Spencer90b54132004-09-16 15:53:16 +0000372
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000373 // Initialize the symbol handler.
374 SymSetOptions(SYMOPT_DEFERRED_LOADS|SYMOPT_LOAD_LINES);
375 SymInitialize(hProcess, NULL, TRUE);
Reid Spencer90b54132004-09-16 15:53:16 +0000376
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000377 while (true) {
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000378 if (!StackWalk64(machineType, hProcess, hThread, &StackFrame,
379 ep->ContextRecord, NULL, SymFunctionTableAccess64,
380 SymGetModuleBase64, NULL)) {
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000381 break;
Reid Spencer90b54132004-09-16 15:53:16 +0000382 }
Chuck Rose III0ccb9302007-11-21 00:37:56 +0000383
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000384 if (StackFrame.AddrFrame.Offset == 0)
385 break;
386
387 // Print the PC in hexadecimal.
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000388 DWORD64 PC = StackFrame.AddrPC.Offset;
389#if defined(_M_X64)
390 fprintf(stderr, "0x%016llX", PC);
391#elif defined(_M_IX86)
392 fprintf(stderr, "0x%08lX", static_cast<DWORD>(PC));
393#endif
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000394
395 // Print the parameters. Assume there are four.
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000396#if defined(_M_X64)
397 fprintf(stderr, " (0x%016llX 0x%016llX 0x%016llX 0x%016llX)",
398 StackFrame.Params[0],
399 StackFrame.Params[1],
400 StackFrame.Params[2],
401 StackFrame.Params[3]);
402#elif defined(_M_IX86)
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000403 fprintf(stderr, " (0x%08lX 0x%08lX 0x%08lX 0x%08lX)",
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000404 static_cast<DWORD>(StackFrame.Params[0]),
405 static_cast<DWORD>(StackFrame.Params[1]),
406 static_cast<DWORD>(StackFrame.Params[2]),
407 static_cast<DWORD>(StackFrame.Params[3]));
408#endif
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000409 // Verify the PC belongs to a module in this process.
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000410 if (!SymGetModuleBase64(hProcess, PC)) {
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000411 fputs(" <unknown module>\n", stderr);
412 continue;
413 }
414
415 // Print the symbol name.
416 char buffer[512];
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000417 IMAGEHLP_SYMBOL64 *symbol = reinterpret_cast<IMAGEHLP_SYMBOL64 *>(buffer);
418 memset(symbol, 0, sizeof(IMAGEHLP_SYMBOL64));
419 symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
420 symbol->MaxNameLength = 512 - sizeof(IMAGEHLP_SYMBOL64);
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000421
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000422 DWORD64 dwDisp;
423 if (!SymGetSymFromAddr64(hProcess, PC, &dwDisp, symbol)) {
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000424 fputc('\n', stderr);
425 continue;
426 }
427
428 buffer[511] = 0;
429 if (dwDisp > 0)
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000430 fprintf(stderr, ", %s() + 0x%llX bytes(s)", symbol->Name, dwDisp);
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000431 else
432 fprintf(stderr, ", %s", symbol->Name);
433
434 // Print the source file and line number information.
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000435 IMAGEHLP_LINE64 line;
436 DWORD dwLineDisp;
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000437 memset(&line, 0, sizeof(line));
438 line.SizeOfStruct = sizeof(line);
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000439 if (SymGetLineFromAddr64(hProcess, PC, &dwLineDisp, &line)) {
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000440 fprintf(stderr, ", %s, line %lu", line.FileName, line.LineNumber);
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000441 if (dwLineDisp > 0)
442 fprintf(stderr, " + 0x%lX byte(s)", dwLineDisp);
Mikhail Glushenkov6d8ac5a2010-10-28 08:25:44 +0000443 }
444
445 fputc('\n', stderr);
446 }
447
Daniel Dunbardf338842009-09-22 09:50:28 +0000448 if (ExitOnUnhandledExceptions)
NAKAMURA Takumi5d2f8c32011-11-29 07:47:04 +0000449 _exit(ep->ExceptionRecord->ExceptionCode);
Daniel Dunbardf338842009-09-22 09:50:28 +0000450
Reid Spencer90b54132004-09-16 15:53:16 +0000451 // Allow dialog box to pop up allowing choice to start debugger.
Reid Spencer7b60a152004-09-19 05:37:39 +0000452 if (OldFilter)
453 return (*OldFilter)(ep);
454 else
455 return EXCEPTION_CONTINUE_SEARCH;
Reid Spencer90b54132004-09-16 15:53:16 +0000456}
457
458static BOOL WINAPI LLVMConsoleCtrlHandler(DWORD dwCtrlType) {
Jeff Cohen64fe5842005-08-02 03:26:32 +0000459 // We are running in our very own thread, courtesy of Windows.
Jeff Cohenee841a12005-08-02 03:04:47 +0000460 EnterCriticalSection(&CriticalSection);
Reid Spencer90b54132004-09-16 15:53:16 +0000461 Cleanup();
462
Jeff Cohenee841a12005-08-02 03:04:47 +0000463 // If an interrupt function has been set, go and run one it; otherwise,
464 // the process dies.
465 void (*IF)() = InterruptFunction;
466 InterruptFunction = 0; // Don't run it on another CTRL-C.
467
468 if (IF) {
Jeff Cohen64fe5842005-08-02 03:26:32 +0000469 // Note: if the interrupt function throws an exception, there is nothing
470 // to catch it in this thread so it will kill the process.
471 IF(); // Run it now.
Jeff Cohenee841a12005-08-02 03:04:47 +0000472 LeaveCriticalSection(&CriticalSection);
473 return TRUE; // Don't kill the process.
474 }
475
Reid Spencer298d6c12004-09-17 03:02:27 +0000476 // Allow normal processing to take place; i.e., the process dies.
Jeff Cohenee841a12005-08-02 03:04:47 +0000477 LeaveCriticalSection(&CriticalSection);
Reid Spencer90b54132004-09-16 15:53:16 +0000478 return FALSE;
479}
Michael J. Spencer0bcd9c72011-10-01 00:05:20 +0000480
481#if __MINGW32__
482 // We turned these warnings off for this file so that MinGW-g++ doesn't
483 // complain about the ll format specifiers used. Now we are turning the
484 // warnings back on. If MinGW starts to support diagnostic stacks, we can
485 // replace this with a pop.
486 #pragma GCC diagnostic warning "-Wformat"
487 #pragma GCC diagnostic warning "-Wformat-extra-args"
488#endif