ErrorHandling.cpp 8.3 KB

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