2017-08-01 02:33:58 +02:00
|
|
|
//===- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2017-11-01 22:16:06 +01:00
|
|
|
|
|
|
|
#ifndef LLVM_TOOLS_OBJCOPY_OBJCOPY_H
|
|
|
|
#define LLVM_TOOLS_OBJCOPY_OBJCOPY_H
|
2017-08-01 02:33:58 +02:00
|
|
|
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2017-11-01 22:16:06 +01:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2017-08-01 02:33:58 +02:00
|
|
|
#include "llvm/Support/Error.h"
|
2017-11-01 22:16:06 +01:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include <string>
|
2017-08-01 02:33:58 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2017-10-12 01:54:34 +02:00
|
|
|
LLVM_ATTRIBUTE_NORETURN extern void error(Twine Message);
|
2018-01-25 23:46:17 +01:00
|
|
|
LLVM_ATTRIBUTE_NORETURN extern void reportError(StringRef File, Error E);
|
|
|
|
LLVM_ATTRIBUTE_NORETURN extern void reportError(StringRef File,
|
|
|
|
std::error_code EC);
|
2017-08-01 02:33:58 +02:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2017-11-01 22:16:06 +01:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_TOOLS_OBJCOPY_OBJCOPY_H
|