diff options
author | Petr Hosek <phosek@chromium.org> | 2017-08-01 00:33:58 +0000 |
---|---|---|
committer | Petr Hosek <phosek@chromium.org> | 2017-08-01 00:33:58 +0000 |
commit | 05a04cbeddd022b2387ab016704fcabb37d3c811 (patch) | |
tree | 7f2ae87b4c9bdd57e1e6cfaec21e5d232c7ec202 /llvm/tools/llvm-objcopy/llvm-objcopy.h | |
parent | 37f41d1e7cc7d73711d24d6043569c6142f52a50 (diff) | |
download | bcm5719-llvm-05a04cbeddd022b2387ab016704fcabb37d3c811.tar.gz bcm5719-llvm-05a04cbeddd022b2387ab016704fcabb37d3c811.zip |
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
llvm-svn: 309643
Diffstat (limited to 'llvm/tools/llvm-objcopy/llvm-objcopy.h')
-rw-r--r-- | llvm/tools/llvm-objcopy/llvm-objcopy.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/llvm/tools/llvm-objcopy/llvm-objcopy.h b/llvm/tools/llvm-objcopy/llvm-objcopy.h new file mode 100644 index 00000000000..de7bf367ac8 --- /dev/null +++ b/llvm/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 |