summaryrefslogtreecommitdiff
path: root/tools/llvm-objcopy/llvm-objcopy.h
diff options
context:
space:
mode:
authorPetr Hosek <phosek@chromium.org>2017-08-01 00:33:58 +0000
committerPetr Hosek <phosek@chromium.org>2017-08-01 00:33:58 +0000
commite5551a7a5e0cbd3543ed00f7a74315e4888e4cd0 (patch)
treebb8463854603238994924774a1e0ada4f174f95e /tools/llvm-objcopy/llvm-objcopy.h
parent68720204a7240167ef3853df50b54c8dd3504d79 (diff)
Reland "[LLVM][llvm-objcopy] Added basic plumbing to get things started"
As discussed on llvm-dev I've implemented the first basic steps towards llvm-objcopy/llvm-objtool (name pending). This change adds the ability to copy (without modification) 64-bit little endian ELF executables that have SHT_PROGBITS, SHT_NOBITS, SHT_NULL and SHT_STRTAB sections. Patch by Jake Ehrlich Differential Revision: https://reviews.llvm.org/D33964 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@309643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-objcopy/llvm-objcopy.h')
-rw-r--r--tools/llvm-objcopy/llvm-objcopy.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/llvm-objcopy/llvm-objcopy.h b/tools/llvm-objcopy/llvm-objcopy.h
new file mode 100644
index 00000000000..de7bf367ac8
--- /dev/null
+++ b/tools/llvm-objcopy/llvm-objcopy.h
@@ -0,0 +1,32 @@
+//===- llvm-objcopy.h -------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef LLVM_OBJCOPY_H
+#define LLVM_OBJCOPY_H
+
+#include "llvm/ADT/Twine.h"
+#include "llvm/Support/Error.h"
+
+namespace llvm {
+
+LLVM_ATTRIBUTE_NORETURN extern void error(Twine Message);
+
+// This is taken from llvm-readobj.
+// [see here](llvm/tools/llvm-readobj/llvm-readobj.h:38)
+template <class T> T unwrapOrError(Expected<T> EO) {
+ if (EO)
+ return *EO;
+ std::string Buf;
+ raw_string_ostream OS(Buf);
+ logAllUnhandledErrors(EO.takeError(), OS, "");
+ OS.flush();
+ error(Buf);
+}
+}
+
+#endif