2010-04-08 01:12:29 +02:00
|
|
|
//===- lib/Support/ErrorHandling.cpp - Callbacks for errors ---------------===//
|
2009-07-07 19:32:34 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-04-08 01:12:29 +02:00
|
|
|
// This file defines an API used to indicate fatal error conditions. Non-fatal
|
|
|
|
// errors (most of them) should be handled through LLVMContext.
|
|
|
|
//
|
2009-07-07 19:32:34 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2014-01-07 12:48:04 +01:00
|
|
|
#include "llvm-c/Core.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2009-07-24 09:58:10 +02:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/Config/config.h"
|
2010-01-05 02:28:29 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "llvm/Support/Signals.h"
|
|
|
|
#include "llvm/Support/Threading.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-07-07 19:32:34 +02:00
|
|
|
#include <cassert>
|
|
|
|
#include <cstdlib>
|
2010-08-18 01:03:53 +02:00
|
|
|
|
|
|
|
#if defined(HAVE_UNISTD_H)
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
# include <io.h>
|
|
|
|
# include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
2009-07-07 19:32:34 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-04-08 01:12:29 +02:00
|
|
|
static fatal_error_handler_t ErrorHandler = 0;
|
2009-08-10 05:36:26 +02:00
|
|
|
static void *ErrorHandlerUserData = 0;
|
|
|
|
|
2010-04-08 01:12:29 +02:00
|
|
|
void llvm::install_fatal_error_handler(fatal_error_handler_t handler,
|
|
|
|
void *user_data) {
|
2009-07-07 19:32:34 +02:00
|
|
|
assert(!llvm_is_multithreaded() &&
|
|
|
|
"Cannot register error handlers after starting multithreaded mode!\n");
|
|
|
|
assert(!ErrorHandler && "Error handler already registered!\n");
|
|
|
|
ErrorHandler = handler;
|
2009-08-10 05:36:26 +02:00
|
|
|
ErrorHandlerUserData = user_data;
|
2009-07-07 19:32:34 +02:00
|
|
|
}
|
|
|
|
|
2010-04-08 01:12:29 +02:00
|
|
|
void llvm::remove_fatal_error_handler() {
|
2009-07-07 19:32:34 +02:00
|
|
|
ErrorHandler = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-27 19:27:54 +01:00
|
|
|
void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) {
|
|
|
|
report_fatal_error(Twine(Reason), GenCrashDiag);
|
2009-07-24 09:58:10 +02:00
|
|
|
}
|
|
|
|
|
2013-03-27 19:27:54 +01:00
|
|
|
void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) {
|
|
|
|
report_fatal_error(Twine(Reason), GenCrashDiag);
|
2009-07-24 09:58:10 +02:00
|
|
|
}
|
|
|
|
|
2014-01-27 06:24:39 +01:00
|
|
|
void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) {
|
2013-03-27 19:27:54 +01:00
|
|
|
report_fatal_error(Twine(Reason), GenCrashDiag);
|
2010-11-13 03:48:51 +01:00
|
|
|
}
|
|
|
|
|
2013-03-27 19:27:54 +01:00
|
|
|
void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) {
|
2010-08-18 01:03:53 +02:00
|
|
|
if (ErrorHandler) {
|
2013-03-27 19:27:54 +01:00
|
|
|
ErrorHandler(ErrorHandlerUserData, Reason.str(), GenCrashDiag);
|
2009-07-07 19:32:34 +02:00
|
|
|
} else {
|
2010-08-18 01:03:53 +02:00
|
|
|
// Blast the result out to stderr. We don't try hard to make sure this
|
|
|
|
// succeeds (e.g. handling EINTR) and we can't use errs() here because
|
|
|
|
// raw ostreams can call report_fatal_error.
|
|
|
|
SmallVector<char, 64> Buffer;
|
2010-08-19 00:04:43 +02:00
|
|
|
raw_svector_ostream OS(Buffer);
|
|
|
|
OS << "LLVM ERROR: " << Reason << "\n";
|
|
|
|
StringRef MessageStr = OS.str();
|
2010-09-16 10:20:49 +02:00
|
|
|
ssize_t written = ::write(2, MessageStr.data(), MessageStr.size());
|
|
|
|
(void)written; // If something went wrong, we deliberately just give up.
|
2009-07-07 19:32:34 +02:00
|
|
|
}
|
2010-05-08 04:10:36 +02:00
|
|
|
|
|
|
|
// If we reached here, we are failing ungracefully. Run the interrupt handlers
|
|
|
|
// to make sure any special cleanups get done, in particular that we remove
|
|
|
|
// files registered with RemoveFileOnSignal.
|
|
|
|
sys::RunInterruptHandlers();
|
|
|
|
|
2012-11-13 17:42:19 +01:00
|
|
|
exit(1);
|
2009-07-07 19:32:34 +02:00
|
|
|
}
|
|
|
|
|
2010-04-08 01:12:29 +02:00
|
|
|
void llvm::llvm_unreachable_internal(const char *msg, const char *file,
|
|
|
|
unsigned line) {
|
2009-08-20 19:15:19 +02:00
|
|
|
// This code intentionally doesn't call the ErrorHandler callback, because
|
|
|
|
// llvm_unreachable is intended to be used to indicate "impossible"
|
|
|
|
// situations, and not legitimate runtime errors.
|
2009-07-11 22:10:48 +02:00
|
|
|
if (msg)
|
2010-01-05 02:28:29 +01:00
|
|
|
dbgs() << msg << "\n";
|
|
|
|
dbgs() << "UNREACHABLE executed";
|
2009-07-14 14:49:22 +02:00
|
|
|
if (file)
|
2010-01-05 02:28:29 +01:00
|
|
|
dbgs() << " at " << file << ":" << line;
|
|
|
|
dbgs() << "!\n";
|
2009-07-07 19:32:34 +02:00
|
|
|
abort();
|
2013-07-16 16:04:08 +02:00
|
|
|
#ifdef LLVM_BUILTIN_UNREACHABLE
|
|
|
|
// Windows systems and possibly others don't declare abort() to be noreturn,
|
|
|
|
// so use the unreachable builtin to avoid a Clang self-host warning.
|
|
|
|
LLVM_BUILTIN_UNREACHABLE;
|
|
|
|
#endif
|
2009-07-07 19:32:34 +02:00
|
|
|
}
|
2013-10-17 03:38:28 +02:00
|
|
|
|
|
|
|
static void bindingsErrorHandler(void *user_data, const std::string& reason,
|
|
|
|
bool gen_crash_diag) {
|
|
|
|
LLVMFatalErrorHandler handler =
|
2013-10-22 14:30:55 +02:00
|
|
|
LLVM_EXTENSION reinterpret_cast<LLVMFatalErrorHandler>(user_data);
|
2013-10-17 03:38:28 +02:00
|
|
|
handler(reason.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler) {
|
2013-10-22 14:30:55 +02:00
|
|
|
install_fatal_error_handler(bindingsErrorHandler,
|
|
|
|
LLVM_EXTENSION reinterpret_cast<void *>(Handler));
|
2013-10-17 03:38:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMResetFatalErrorHandler() {
|
|
|
|
remove_fatal_error_handler();
|
|
|
|
}
|