2013-04-04 02:31:38 +08:00
|
|
|
//===-- llvm-readobj.h ----------------------------------------------------===//
|
2013-02-20 10:37:12 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_TOOLS_LLVM_READOBJ_LLVM_READOBJ_H
|
|
|
|
#define LLVM_TOOLS_LLVM_READOBJ_LLVM_READOBJ_H
|
2013-02-20 10:37:12 +08:00
|
|
|
|
2013-04-04 02:31:38 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2015-12-05 05:29:53 +08:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2013-04-04 02:31:38 +08:00
|
|
|
#include <string>
|
2013-02-20 10:37:12 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2013-04-04 02:31:38 +08:00
|
|
|
namespace object {
|
|
|
|
class RelocationRef;
|
|
|
|
}
|
2013-02-20 10:37:12 +08:00
|
|
|
|
2013-04-04 02:31:38 +08:00
|
|
|
// Various helper functions.
|
2015-12-05 05:29:53 +08:00
|
|
|
LLVM_ATTRIBUTE_NORETURN void reportError(Twine Msg);
|
2015-07-20 11:23:55 +08:00
|
|
|
void error(std::error_code ec);
|
2013-04-04 02:31:38 +08:00
|
|
|
bool relocAddressLess(object::RelocationRef A,
|
|
|
|
object::RelocationRef B);
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
namespace opts {
|
|
|
|
extern llvm::cl::list<std::string> InputFilenames;
|
|
|
|
extern llvm::cl::opt<bool> FileHeaders;
|
|
|
|
extern llvm::cl::opt<bool> Sections;
|
|
|
|
extern llvm::cl::opt<bool> SectionRelocations;
|
|
|
|
extern llvm::cl::opt<bool> SectionSymbols;
|
|
|
|
extern llvm::cl::opt<bool> SectionData;
|
|
|
|
extern llvm::cl::opt<bool> Relocations;
|
|
|
|
extern llvm::cl::opt<bool> Symbols;
|
|
|
|
extern llvm::cl::opt<bool> DynamicSymbols;
|
|
|
|
extern llvm::cl::opt<bool> UnwindInfo;
|
2013-04-12 12:01:52 +08:00
|
|
|
extern llvm::cl::opt<bool> ExpandRelocs;
|
2015-02-19 03:32:05 +08:00
|
|
|
extern llvm::cl::opt<bool> CodeView;
|
|
|
|
extern llvm::cl::opt<bool> CodeViewSubsectionBytes;
|
2014-01-30 12:46:33 +08:00
|
|
|
extern llvm::cl::opt<bool> ARMAttributes;
|
2014-06-18 16:47:09 +08:00
|
|
|
extern llvm::cl::opt<bool> MipsPLTGOT;
|
2016-02-11 04:40:55 +08:00
|
|
|
enum OutpytStyleTy { LLVM, GNU };
|
|
|
|
extern llvm::cl::opt<OutpytStyleTy> Output;
|
2013-04-04 02:31:38 +08:00
|
|
|
} // namespace opts
|
|
|
|
|
|
|
|
#define LLVM_READOBJ_ENUM_ENT(ns, enum) \
|
|
|
|
{ #enum, ns::enum }
|
2013-02-20 10:37:12 +08:00
|
|
|
|
2016-01-14 03:32:35 +08:00
|
|
|
#define LLVM_READOBJ_ENUM_CLASS_ENT(enum_class, enum) \
|
|
|
|
{ #enum, std::underlying_type<enum_class>::type(enum_class::enum) }
|
|
|
|
|
2013-02-20 10:37:12 +08:00
|
|
|
#endif
|