2010-04-08 07:12:29 +08:00
|
|
|
//===- lib/Support/ErrorHandling.cpp - Callbacks for errors ---------------===//
|
2009-07-08 01:32:34 +08: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 07:12:29 +08: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-08 01:32:34 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-24 15:58:10 +08:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2010-01-05 09:28:29 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-08 01:32:34 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/System/Threading.h"
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdlib>
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace std;
|
|
|
|
|
2010-04-08 07:12:29 +08:00
|
|
|
static fatal_error_handler_t ErrorHandler = 0;
|
2009-08-10 11:36:26 +08:00
|
|
|
static void *ErrorHandlerUserData = 0;
|
|
|
|
|
2010-04-08 07:12:29 +08:00
|
|
|
void llvm::install_fatal_error_handler(fatal_error_handler_t handler,
|
|
|
|
void *user_data) {
|
2009-07-08 01:32:34 +08: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 11:36:26 +08:00
|
|
|
ErrorHandlerUserData = user_data;
|
2009-07-08 01:32:34 +08:00
|
|
|
}
|
|
|
|
|
2010-04-08 07:12:29 +08:00
|
|
|
void llvm::remove_fatal_error_handler() {
|
2009-07-08 01:32:34 +08:00
|
|
|
ErrorHandler = 0;
|
|
|
|
}
|
|
|
|
|
2010-04-08 07:12:29 +08:00
|
|
|
void llvm::report_fatal_error(const char *reason) {
|
2010-04-08 06:58:41 +08:00
|
|
|
report_fatal_error(Twine(reason));
|
2009-07-24 15:58:10 +08:00
|
|
|
}
|
|
|
|
|
2010-04-08 07:12:29 +08:00
|
|
|
void llvm::report_fatal_error(const std::string &reason) {
|
2010-04-08 06:58:41 +08:00
|
|
|
report_fatal_error(Twine(reason));
|
2009-07-24 15:58:10 +08:00
|
|
|
}
|
|
|
|
|
2010-04-08 07:12:29 +08:00
|
|
|
void llvm::report_fatal_error(const Twine &reason) {
|
2009-07-08 01:32:34 +08:00
|
|
|
if (!ErrorHandler) {
|
|
|
|
errs() << "LLVM ERROR: " << reason << "\n";
|
|
|
|
} else {
|
2009-08-10 11:36:26 +08:00
|
|
|
ErrorHandler(ErrorHandlerUserData, reason.str());
|
2009-07-08 01:32:34 +08:00
|
|
|
}
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-04-08 07:12:29 +08:00
|
|
|
void llvm::llvm_unreachable_internal(const char *msg, const char *file,
|
|
|
|
unsigned line) {
|
2009-08-21 01:15:19 +08: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-12 04:10:48 +08:00
|
|
|
if (msg)
|
2010-01-05 09:28:29 +08:00
|
|
|
dbgs() << msg << "\n";
|
|
|
|
dbgs() << "UNREACHABLE executed";
|
2009-07-14 20:49:22 +08:00
|
|
|
if (file)
|
2010-01-05 09:28:29 +08:00
|
|
|
dbgs() << " at " << file << ":" << line;
|
|
|
|
dbgs() << "!\n";
|
2009-07-08 01:32:34 +08:00
|
|
|
abort();
|
|
|
|
}
|