From 1bdd0f0a08159c5094132c0520907a70b9b7deb9 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 19 Sep 2004 05:37:39 +0000 Subject: [PATCH] Minor correction to Signals implementation. Patch submitted by Jeff Cohen. Thanks Jeff! llvm-svn: 16401 --- llvm/lib/System/Win32/Signals.cpp | 38 +++++++++++++++++++------------ 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/llvm/lib/System/Win32/Signals.cpp b/llvm/lib/System/Win32/Signals.cpp index 130d3d63a18a..1b6202a9db14 100644 --- a/llvm/lib/System/Win32/Signals.cpp +++ b/llvm/lib/System/Win32/Signals.cpp @@ -28,6 +28,8 @@ static BOOL WINAPI LLVMConsoleCtrlHandler(DWORD dwCtrlType); static std::vector *FilesToRemove = NULL; static std::vector *DirectoriesToRemove = NULL; static bool RegisteredUnhandledExceptionFilter = false; +static bool CleanupExecuted = false; +static PTOP_LEVEL_EXCEPTION_FILTER OldFilter = NULL; // Windows creates a new thread to execute the console handler when an event // (such as CTRL/C) occurs. This causes concurrency issues with the above @@ -43,8 +45,7 @@ namespace llvm { static void RegisterHandler() { - if (RegisteredUnhandledExceptionFilter) - { + if (RegisteredUnhandledExceptionFilter) { EnterCriticalSection(&CriticalSection); return; } @@ -58,7 +59,7 @@ static void RegisterHandler() { EnterCriticalSection(&CriticalSection); RegisteredUnhandledExceptionFilter = true; - SetUnhandledExceptionFilter(LLVMUnhandledExceptionFilter); + OldFilter = SetUnhandledExceptionFilter(LLVMUnhandledExceptionFilter); SetConsoleCtrlHandler(LLVMConsoleCtrlHandler, TRUE); // IMPORTANT NOTE: Caller must call LeaveCriticalSection(&CriticalSection) or @@ -69,6 +70,9 @@ static void RegisterHandler() { void sys::RemoveFileOnSignal(const std::string &Filename) { RegisterHandler(); + if (CleanupExecuted) + throw std::string("Process terminating -- cannot register for removal"); + if (FilesToRemove == NULL) FilesToRemove = new std::vector; @@ -81,6 +85,9 @@ void sys::RemoveFileOnSignal(const std::string &Filename) { void sys::RemoveDirectoryOnSignal(const sys::Path& path) { RegisterHandler(); + if (CleanupExecuted) + throw std::string("Process terminating -- cannot register for removal"); + if (path.is_directory()) { if (DirectoriesToRemove == NULL) DirectoriesToRemove = new std::vector; @@ -103,6 +110,12 @@ void sys::PrintStackTraceOnErrorSignal() { static void Cleanup() { EnterCriticalSection(&CriticalSection); + // Prevent other thread from registering new files and directories for + // removal, should we be executing because of the console handler callback. + CleanupExecuted = true; + + // FIXME: open files cannot be deleted. + if (FilesToRemove != NULL) while (!FilesToRemove->empty()) { try { @@ -144,7 +157,7 @@ static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) { // Initialize the symbol handler. SymSetOptions(SYMOPT_DEFERRED_LOADS|SYMOPT_LOAD_LINES); - SymInitialize(GetCurrentProcess(), NULL, TRUE); + SymInitialize(hProcess, NULL, TRUE); while (true) { if (!StackWalk(IMAGE_FILE_MACHINE_I386, hProcess, hThread, &StackFrame, @@ -158,7 +171,7 @@ static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) { // Print the PC in hexadecimal. DWORD PC = StackFrame.AddrPC.Offset; - fprintf(stderr, "%04X:%08X", ep->ContextRecord->SegCs, PC); + fprintf(stderr, "%08X", PC); // Print the parameters. Assume there are four. fprintf(stderr, " (0x%08X 0x%08X 0x%08X 0x%08X)", StackFrame.Params[0], @@ -166,7 +179,7 @@ static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) { // Verify the PC belongs to a module in this process. if (!SymGetModuleBase(hProcess, PC)) { - fputc('\n', stderr); + fputs(" \n", stderr); continue; } @@ -201,21 +214,18 @@ static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) { fputc('\n', stderr); } - } - catch (...) - { + } catch (...) { assert(!"Crashed in LLVMUnhandledExceptionFilter"); } // Allow dialog box to pop up allowing choice to start debugger. - return EXCEPTION_CONTINUE_SEARCH; + if (OldFilter) + return (*OldFilter)(ep); + else + return EXCEPTION_CONTINUE_SEARCH; } static BOOL WINAPI LLVMConsoleCtrlHandler(DWORD dwCtrlType) { - // FIXME: This handler executes on a different thread. The main thread - // is still running, potentially creating new files to be cleaned up - // in the tiny window between the call to Cleanup() and process termination. - // Also, any files currently open cannot be deleted. Cleanup(); // Allow normal processing to take place; i.e., the process dies.