aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/ErrorHandling.h
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2009-07-07 17:32:34 +0000
committerTorok Edwin <edwintorok@gmail.com>2009-07-07 17:32:34 +0000
commit31e2466f159a887fed9139067a676f65adf2a8c3 (patch)
tree038fcdc29c6f146048427213045ae05a3e4fe0b8 /include/llvm/Support/ErrorHandling.h
parent9903527c142a37a25ea3b2212cb04a182331fbfa (diff)
downloadexternal_llvm-31e2466f159a887fed9139067a676f65adf2a8c3.zip
external_llvm-31e2466f159a887fed9139067a676f65adf2a8c3.tar.gz
external_llvm-31e2466f159a887fed9139067a676f65adf2a8c3.tar.bz2
Introduce new error handling API.
This will replace exit()/abort() style error handling with an API that allows clients to register custom error handling hooks. The default is to call exit(1) when no error handler is provided. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74922 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/ErrorHandling.h')
-rw-r--r--include/llvm/Support/ErrorHandling.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/include/llvm/Support/ErrorHandling.h b/include/llvm/Support/ErrorHandling.h
new file mode 100644
index 0000000..445d3b6
--- /dev/null
+++ b/include/llvm/Support/ErrorHandling.h
@@ -0,0 +1,52 @@
+//===- llvm/Support/ErrorHandling.h - Callbacks for errors ------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines an API used to indicate error conditions.
+// Callbacks can be registered for these errors through this API.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_SUPPORT_ERRORHANDLING_H
+#define LLVM_SUPPORT_ERRORHANDLING_H
+
+#include "llvm/Support/Compiler.h"
+
+namespace llvm {
+ // An error handler callback.
+ typedef void (*llvm_error_handler_t)(const std::string& reason);
+
+ // Installs a new error handler: this function will be called whenever a
+ // serious error is encountered by LLVM.
+ // If you are using llvm_start_multithreaded, you should register the handler
+ // before doing that.
+ //
+ // If no error handler is installed the default is to print the error message
+ // to stderr, and call exit(1).
+ // If an error handler is installed then it is the handler's responsibility to
+ // log the message, it will no longer be printed to stderr.
+ // If the error handler returns, then exit(1) will be called.
+ void llvm_install_error_handler(llvm_error_handler_t handler);
+
+ // Restores default error handling behaviour.
+ // This must not be called between llvm_start_multithreaded() and
+ // llvm_stop_multithreaded().
+ void llvm_remove_error_handler(void);
+
+ // Reports a serious error, calling any installed error handler.
+ // If no error handler is installed the default is to print the message to
+ void llvm_report_error(const std::string &reason) NORETURN;
+
+ // This function calls abort().
+ // Call this after assert(0), so that compiler knows the path is not
+ // reachable.
+ void llvm_unreachable(void) NORETURN;
+}
+
+#endif
+