summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-vtabledump/Error.cpp
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2014-07-24 23:14:40 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2014-07-24 23:14:40 +0000
commit72ab1a5aee1bae5980dbb0c9ccbc6a865f7ad83a (patch)
treee49b525bc5f83937230e239995f388f54657960d /llvm/tools/llvm-vtabledump/Error.cpp
parent116083159cde2efb44eb326d4b7933a28eeea29d (diff)
downloadbcm5719-llvm-72ab1a5aee1bae5980dbb0c9ccbc6a865f7ad83a.tar.gz
bcm5719-llvm-72ab1a5aee1bae5980dbb0c9ccbc6a865f7ad83a.zip
llvm-vtabledump: A vtable dumper
This tool's job is to dump the vtables inside object files. It is currently limited to MS ABI vf- and vb-tables but it will eventually support Itanium-style v-tables as well. Differential Revision: http://reviews.llvm.org/D4584 llvm-svn: 213903
Diffstat (limited to 'llvm/tools/llvm-vtabledump/Error.cpp')
-rw-r--r--llvm/tools/llvm-vtabledump/Error.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/llvm/tools/llvm-vtabledump/Error.cpp b/llvm/tools/llvm-vtabledump/Error.cpp
new file mode 100644
index 00000000000..c5de8951636
--- /dev/null
+++ b/llvm/tools/llvm-vtabledump/Error.cpp
@@ -0,0 +1,43 @@
+//===- Error.cpp - system_error extensions for llvm-vtabledump --*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This defines a new error_category for the llvm-vtabledump tool.
+//
+//===----------------------------------------------------------------------===//
+
+#include "Error.h"
+#include "llvm/Support/ErrorHandling.h"
+
+using namespace llvm;
+
+namespace {
+class vtabledump_error_category : public std::error_category {
+public:
+ const char *name() const LLVM_NOEXCEPT override { return "llvm.vtabledump"; }
+ std::string message(int ev) const override {
+ switch (static_cast<vtabledump_error>(ev)) {
+ case vtabledump_error::success:
+ return "Success";
+ case vtabledump_error::file_not_found:
+ return "No such file.";
+ case vtabledump_error::unrecognized_file_format:
+ return "Unrecognized file type.";
+ }
+ llvm_unreachable(
+ "An enumerator of vtabledump_error does not have a message defined.");
+ }
+};
+} // namespace
+
+namespace llvm {
+const std::error_category &vtabledump_category() {
+ static vtabledump_error_category o;
+ return o;
+}
+} // namespace llvm
OpenPOWER on IntegriCloud