Searched defs:COFF (Results 1 - 5 of 5) sorted by relevance

/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h34 const object::COFFObjectFile &COFF; member in struct:llvm::Win64EH::Dumper::Context
38 Context(const object::COFFObjectFile &COFF, SymbolResolver Resolver, argument
40 : COFF(COFF), ResolveSymbol(Resolver), UserData(UserData) {}
H A DARMWinEHPrinter.cpp187 Decoder::getSectionContaining(const COFFObjectFile &COFF, uint64_t VA) { argument
188 for (const auto &Section : COFF.sections()) {
203 ErrorOr<object::SymbolRef> Decoder::getSymbol(const COFFObjectFile &COFF, argument
205 for (const auto &Symbol : COFF.symbols()) {
521 bool Decoder::dumpXDataRecord(const COFFObjectFile &COFF,
525 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
581 getRelocatedSymbol(COFF, Section, HandlerOffset * sizeof(uint32_t));
583 Symbol = getSymbol(COFF, Address, /*FunctionOnly=*/true);
597 bool Decoder::dumpUnpackedEntry(const COFFObjectFile &COFF,
662 dumpPackedEntry(const object::COFFObjectFile &COFF, const SectionRef Section, uint64_t Offset, unsigned Index, const RuntimeFunction &RF) argument
699 dumpProcedureDataEntry(const COFFObjectFile &COFF, const SectionRef Section, unsigned Index, ArrayRef<uint8_t> Contents) argument
713 dumpProcedureData(const COFFObjectFile &COFF, const SectionRef Section) argument
729 dumpProcedureData(const COFFObjectFile &COFF) argument
[all...]
/external/llvm/include/llvm/Object/
H A DCOFFYAML.h1 //===- COFFYAML.h - COFF YAMLIO implementation ------------------*- C++ -*-===//
10 // This file declares classes for handling the YAML representation of COFF.
19 #include "llvm/Support/COFF.h"
23 namespace COFF { namespace in namespace:llvm
36 // The structure of the yaml files is not an exact 1:1 match to COFF. In order
50 COFF::section Header;
59 COFF::symbol Header;
60 COFF::SymbolBaseType SimpleType;
61 COFF::SymbolComplexType ComplexType;
62 Optional<COFF
[all...]
/external/llvm/include/llvm/ADT/
H A DTriple.h143 COFF, enumerator in enum:llvm::Triple::ObjectFormatType
400 /// \brief Tests whether the OS uses the COFF binary format.
402 return getObjectFormat() == Triple::COFF;
/external/llvm/include/llvm/Support/
H A DCOFF.h1 //===-- llvm/Support/COFF.h -------------------------------------*- C++ -*-===//
10 // This file contains an definitions used in Windows COFF Files.
13 // information from Microsoft's publicly available PE/COFF format document:
31 namespace COFF { namespace in namespace:llvm
33 // The maximum number of sections that a COFF object can have (inclusive).
39 // Sizes in bytes of various things in the COFF format.
92 /// COFF line numbers have been stripped. This is deprecated and should be
95 /// COFF symbol table entries for local symbols have been removed. This is
654 } // End namespace COFF.

Completed in 297 milliseconds