ErrorHandling.cpp 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. //===- lib/Support/ErrorHandling.cpp - Callbacks for errors ---------------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // This file defines an API used to indicate fatal error conditions. Non-fatal
  11. // errors (most of them) should be handled through LLVMContext.
  12. //
  13. //===----------------------------------------------------------------------===//
  14. #include "llvm/Support/ErrorHandling.h"
  15. #include "llvm-c/Core.h"
  16. #include "llvm/ADT/SmallVector.h"
  17. #include "llvm/ADT/Twine.h"
  18. #include "llvm/Config/config.h"
  19. #include "llvm/Support/Debug.h"
  20. #include "llvm/Support/Errc.h"
  21. #include "llvm/Support/ManagedStatic.h"
  22. #include "llvm/Support/Mutex.h"
  23. #include "llvm/Support/MutexGuard.h"
  24. #include "llvm/Support/Signals.h"
  25. #include "llvm/Support/Threading.h"
  26. #include "llvm/Support/WindowsError.h"
  27. #include "llvm/Support/raw_ostream.h"
  28. #include <cassert>
  29. #include <cstdlib>
  30. #include "windows.h" // HLSL Change
  31. #if defined(HAVE_UNISTD_H)
  32. # include <unistd.h>
  33. #endif
  34. #if defined(_MSC_VER)
  35. # include <io.h>
  36. # include <fcntl.h>
  37. #endif
  38. using namespace llvm;
  39. // HLSL Change - mark these as thread_local
  40. thread_local static fatal_error_handler_t ErrorHandler = nullptr;
  41. thread_local static void *ErrorHandlerUserData = nullptr;
  42. // HLSL Change - no mutex needed, handlers are thread_local
  43. //static ManagedStatic<sys::Mutex> ErrorHandlerMutex;
  44. void llvm::install_fatal_error_handler(fatal_error_handler_t handler,
  45. void *user_data) {
  46. // llvm::MutexGuard Lock(*ErrorHandlerMutex); // HLSL Change - ErrorHandler and user data already thread-local
  47. assert(!ErrorHandler && "Error handler already registered!\n");
  48. ErrorHandler = handler;
  49. ErrorHandlerUserData = user_data;
  50. }
  51. void llvm::remove_fatal_error_handler() {
  52. // llvm::MutexGuard Lock(*ErrorHandlerMutex); // HLSL Change - ErrorHandler and user data already thread-local
  53. ErrorHandler = nullptr;
  54. ErrorHandlerUserData = nullptr;
  55. }
  56. void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) {
  57. report_fatal_error(Twine(Reason), GenCrashDiag);
  58. }
  59. void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) {
  60. report_fatal_error(Twine(Reason), GenCrashDiag);
  61. }
  62. void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) {
  63. report_fatal_error(Twine(Reason), GenCrashDiag);
  64. }
  65. void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) {
  66. llvm::fatal_error_handler_t handler = nullptr;
  67. void* handlerData = nullptr;
  68. {
  69. // Only acquire the mutex while reading the handler, so as not to invoke a
  70. // user-supplied callback under a lock.
  71. // llvm::MutexGuard Lock(*ErrorHandlerMutex); // HLSL Change - ErrorHandler and user data already thread-local
  72. handler = ErrorHandler;
  73. handlerData = ErrorHandlerUserData;
  74. }
  75. #if 0 // HLSL Change - unwind if necessary, but don't terminate the process
  76. if (handler) {
  77. handler(handlerData, Reason.str(), GenCrashDiag);
  78. } else {
  79. // Blast the result out to stderr. We don't try hard to make sure this
  80. // succeeds (e.g. handling EINTR) and we can't use errs() here because
  81. // raw ostreams can call report_fatal_error.
  82. SmallVector<char, 64> Buffer;
  83. raw_svector_ostream OS(Buffer);
  84. OS << "LLVM ERROR: " << Reason << "\n";
  85. StringRef MessageStr = OS.str();
  86. ssize_t written = ::_write(2, MessageStr.data(), MessageStr.size());
  87. (void)written; // If something went wrong, we deliberately just give up.
  88. }
  89. // If we reached here, we are failing ungracefully. Run the interrupt handlers
  90. // to make sure any special cleanups get done, in particular that we remove
  91. // files registered with RemoveFileOnSignal.
  92. sys::RunInterruptHandlers();
  93. exit(1);
  94. #else
  95. if (handler) {
  96. handler(handlerData, Reason.str(), GenCrashDiag);
  97. }
  98. RaiseException(STATUS_LLVM_FATAL, 0, 0, 0);
  99. #endif
  100. }
  101. void llvm::llvm_unreachable_internal(const char *msg, const char *file,
  102. unsigned line) {
  103. // This code intentionally doesn't call the ErrorHandler callback, because
  104. // llvm_unreachable is intended to be used to indicate "impossible"
  105. // situations, and not legitimate runtime errors.
  106. if (msg)
  107. dbgs() << msg << "\n";
  108. dbgs() << "UNREACHABLE executed";
  109. if (file)
  110. dbgs() << " at " << file << ":" << line;
  111. dbgs() << "!\n";
  112. #if 0 // HLSL Change - unwind if necessary, but don't terminate the process
  113. abort();
  114. #else
  115. RaiseException(STATUS_LLVM_UNREACHABLE, 0, 0, 0);
  116. #endif
  117. }
  118. static void bindingsErrorHandler(void *user_data, const std::string& reason,
  119. bool gen_crash_diag) {
  120. LLVMFatalErrorHandler handler =
  121. LLVM_EXTENSION reinterpret_cast<LLVMFatalErrorHandler>(user_data);
  122. handler(reason.c_str());
  123. }
  124. void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler) {
  125. install_fatal_error_handler(bindingsErrorHandler,
  126. LLVM_EXTENSION reinterpret_cast<void *>(Handler));
  127. }
  128. void LLVMResetFatalErrorHandler() {
  129. remove_fatal_error_handler();
  130. }
  131. #ifdef LLVM_ON_WIN32
  132. #include <winerror.h>
  133. // I'd rather not double the line count of the following.
  134. #define MAP_ERR_TO_COND(x, y) \
  135. case x: \
  136. return make_error_code(errc::y)
  137. std::error_code llvm::mapWindowsError(unsigned EV) {
  138. switch (EV) {
  139. MAP_ERR_TO_COND(ERROR_ACCESS_DENIED, permission_denied);
  140. MAP_ERR_TO_COND(ERROR_ALREADY_EXISTS, file_exists);
  141. MAP_ERR_TO_COND(ERROR_BAD_UNIT, no_such_device);
  142. MAP_ERR_TO_COND(ERROR_BUFFER_OVERFLOW, filename_too_long);
  143. MAP_ERR_TO_COND(ERROR_BUSY, device_or_resource_busy);
  144. MAP_ERR_TO_COND(ERROR_BUSY_DRIVE, device_or_resource_busy);
  145. MAP_ERR_TO_COND(ERROR_CANNOT_MAKE, permission_denied);
  146. MAP_ERR_TO_COND(ERROR_CANTOPEN, io_error);
  147. MAP_ERR_TO_COND(ERROR_CANTREAD, io_error);
  148. MAP_ERR_TO_COND(ERROR_CANTWRITE, io_error);
  149. MAP_ERR_TO_COND(ERROR_CURRENT_DIRECTORY, permission_denied);
  150. MAP_ERR_TO_COND(ERROR_DEV_NOT_EXIST, no_such_device);
  151. MAP_ERR_TO_COND(ERROR_DEVICE_IN_USE, device_or_resource_busy);
  152. MAP_ERR_TO_COND(ERROR_DIR_NOT_EMPTY, directory_not_empty);
  153. MAP_ERR_TO_COND(ERROR_DIRECTORY, invalid_argument);
  154. MAP_ERR_TO_COND(ERROR_DISK_FULL, no_space_on_device);
  155. MAP_ERR_TO_COND(ERROR_FILE_EXISTS, file_exists);
  156. MAP_ERR_TO_COND(ERROR_FILE_NOT_FOUND, no_such_file_or_directory);
  157. MAP_ERR_TO_COND(ERROR_HANDLE_DISK_FULL, no_space_on_device);
  158. MAP_ERR_TO_COND(ERROR_INVALID_ACCESS, permission_denied);
  159. MAP_ERR_TO_COND(ERROR_INVALID_DRIVE, no_such_device);
  160. MAP_ERR_TO_COND(ERROR_INVALID_FUNCTION, function_not_supported);
  161. MAP_ERR_TO_COND(ERROR_INVALID_HANDLE, invalid_argument);
  162. MAP_ERR_TO_COND(ERROR_INVALID_NAME, invalid_argument);
  163. MAP_ERR_TO_COND(ERROR_LOCK_VIOLATION, no_lock_available);
  164. MAP_ERR_TO_COND(ERROR_LOCKED, no_lock_available);
  165. MAP_ERR_TO_COND(ERROR_NEGATIVE_SEEK, invalid_argument);
  166. MAP_ERR_TO_COND(ERROR_NOACCESS, permission_denied);
  167. MAP_ERR_TO_COND(ERROR_NOT_ENOUGH_MEMORY, not_enough_memory);
  168. MAP_ERR_TO_COND(ERROR_NOT_READY, resource_unavailable_try_again);
  169. MAP_ERR_TO_COND(ERROR_OPEN_FAILED, io_error);
  170. MAP_ERR_TO_COND(ERROR_OPEN_FILES, device_or_resource_busy);
  171. MAP_ERR_TO_COND(ERROR_OUTOFMEMORY, not_enough_memory);
  172. MAP_ERR_TO_COND(ERROR_PATH_NOT_FOUND, no_such_file_or_directory);
  173. MAP_ERR_TO_COND(ERROR_BAD_NETPATH, no_such_file_or_directory);
  174. MAP_ERR_TO_COND(ERROR_READ_FAULT, io_error);
  175. MAP_ERR_TO_COND(ERROR_RETRY, resource_unavailable_try_again);
  176. MAP_ERR_TO_COND(ERROR_SEEK, io_error);
  177. MAP_ERR_TO_COND(ERROR_SHARING_VIOLATION, permission_denied);
  178. MAP_ERR_TO_COND(ERROR_TOO_MANY_OPEN_FILES, too_many_files_open);
  179. MAP_ERR_TO_COND(ERROR_WRITE_FAULT, io_error);
  180. MAP_ERR_TO_COND(ERROR_WRITE_PROTECT, permission_denied);
  181. MAP_ERR_TO_COND(WSAEACCES, permission_denied);
  182. MAP_ERR_TO_COND(WSAEBADF, bad_file_descriptor);
  183. MAP_ERR_TO_COND(WSAEFAULT, bad_address);
  184. MAP_ERR_TO_COND(WSAEINTR, interrupted);
  185. MAP_ERR_TO_COND(WSAEINVAL, invalid_argument);
  186. MAP_ERR_TO_COND(WSAEMFILE, too_many_files_open);
  187. MAP_ERR_TO_COND(WSAENAMETOOLONG, filename_too_long);
  188. default:
  189. return std::error_code(EV, std::system_category());
  190. }
  191. }
  192. #endif