You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.207
Former-commit-id: 3b152f462918d427ce18620a2cbe4f8b79650449
This commit is contained in:
parent
8e12397d70
commit
eb85e2fc17
112
external/llvm/tools/llvm-readobj/ObjDumper.h
vendored
112
external/llvm/tools/llvm-readobj/ObjDumper.h
vendored
@ -1,112 +0,0 @@
|
||||
//===-- ObjDumper.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_TOOLS_LLVM_READOBJ_OBJDUMPER_H
|
||||
#define LLVM_TOOLS_LLVM_READOBJ_OBJDUMPER_H
|
||||
|
||||
#include <memory>
|
||||
#include <system_error>
|
||||
|
||||
namespace llvm {
|
||||
namespace object {
|
||||
class COFFImportFile;
|
||||
class ObjectFile;
|
||||
}
|
||||
namespace codeview {
|
||||
class MergingTypeTableBuilder;
|
||||
}
|
||||
|
||||
class ScopedPrinter;
|
||||
|
||||
class ObjDumper {
|
||||
public:
|
||||
ObjDumper(ScopedPrinter &Writer);
|
||||
virtual ~ObjDumper();
|
||||
|
||||
virtual void printFileHeaders() = 0;
|
||||
virtual void printSections() = 0;
|
||||
virtual void printRelocations() = 0;
|
||||
virtual void printSymbols() = 0;
|
||||
virtual void printDynamicSymbols() = 0;
|
||||
virtual void printUnwindInfo() = 0;
|
||||
|
||||
// Only implemented for ELF at this time.
|
||||
virtual void printDynamicRelocations() { }
|
||||
virtual void printDynamicTable() { }
|
||||
virtual void printNeededLibraries() { }
|
||||
virtual void printProgramHeaders() { }
|
||||
virtual void printHashTable() { }
|
||||
virtual void printGnuHashTable() { }
|
||||
virtual void printLoadName() {}
|
||||
virtual void printVersionInfo() {}
|
||||
virtual void printGroupSections() {}
|
||||
virtual void printHashHistogram() {}
|
||||
virtual void printNotes() {}
|
||||
|
||||
// Only implemented for ARM ELF at this time.
|
||||
virtual void printAttributes() { }
|
||||
|
||||
// Only implemented for MIPS ELF at this time.
|
||||
virtual void printMipsPLTGOT() { }
|
||||
virtual void printMipsABIFlags() { }
|
||||
virtual void printMipsReginfo() { }
|
||||
virtual void printMipsOptions() { }
|
||||
|
||||
// Only implemented for PE/COFF.
|
||||
virtual void printCOFFImports() { }
|
||||
virtual void printCOFFExports() { }
|
||||
virtual void printCOFFDirectives() { }
|
||||
virtual void printCOFFBaseReloc() { }
|
||||
virtual void printCOFFDebugDirectory() { }
|
||||
virtual void printCOFFResources() {}
|
||||
virtual void printCOFFLoadConfig() { }
|
||||
virtual void printCodeViewDebugInfo() { }
|
||||
virtual void
|
||||
mergeCodeViewTypes(llvm::codeview::MergingTypeTableBuilder &CVIDs,
|
||||
llvm::codeview::MergingTypeTableBuilder &CVTypes) {}
|
||||
|
||||
// Only implemented for MachO.
|
||||
virtual void printMachODataInCode() { }
|
||||
virtual void printMachOVersionMin() { }
|
||||
virtual void printMachODysymtab() { }
|
||||
virtual void printMachOSegment() { }
|
||||
virtual void printMachOIndirectSymbols() { }
|
||||
virtual void printMachOLinkerOptions() { }
|
||||
|
||||
virtual void printStackMap() const = 0;
|
||||
|
||||
protected:
|
||||
ScopedPrinter &W;
|
||||
};
|
||||
|
||||
std::error_code createCOFFDumper(const object::ObjectFile *Obj,
|
||||
ScopedPrinter &Writer,
|
||||
std::unique_ptr<ObjDumper> &Result);
|
||||
|
||||
std::error_code createELFDumper(const object::ObjectFile *Obj,
|
||||
ScopedPrinter &Writer,
|
||||
std::unique_ptr<ObjDumper> &Result);
|
||||
|
||||
std::error_code createMachODumper(const object::ObjectFile *Obj,
|
||||
ScopedPrinter &Writer,
|
||||
std::unique_ptr<ObjDumper> &Result);
|
||||
|
||||
std::error_code createWasmDumper(const object::ObjectFile *Obj,
|
||||
ScopedPrinter &Writer,
|
||||
std::unique_ptr<ObjDumper> &Result);
|
||||
|
||||
void dumpCOFFImportFile(const object::COFFImportFile *File);
|
||||
|
||||
void dumpCodeViewMergedTypes(
|
||||
ScopedPrinter &Writer, llvm::codeview::MergingTypeTableBuilder &IDTable,
|
||||
llvm::codeview::MergingTypeTableBuilder &TypeTable);
|
||||
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user