HomeSort by relevance Sort by last modified time
    Searched refs:coff_section (Results 1 - 20 of 20) sorted by null

  /external/llvm/tools/llvm-readobj/
Win64EHDumper.h 20 struct coff_section;
29 typedef std::error_code (*SymbolResolver)(const object::coff_section *,
45 const object::coff_section *Section,
49 void printUnwindInfo(const Context &Ctx, const object::coff_section *Section,
52 const object::coff_section *Section,
Win64EHDumper.cpp 116 const coff_section *Section, uint64_t Offset,
142 const coff_section *Section,
144 const coff_section *&ResolvedSection,
166 const coff_section *Section,
237 void Dumper::printUnwindInfo(const Context &Ctx, const coff_section *Section,
282 const coff_section *Section,
288 const coff_section *XData;
313 const coff_section *PData = Ctx.COFF.getCOFFSection(Section);
COFFDumper.cpp 112 void printRelocatedField(StringRef Label, const coff_section *Sec,
124 std::error_code resolveSymbol(const coff_section *Section, uint64_t Offset,
126 std::error_code resolveSymbolName(const coff_section *Section,
128 std::error_code resolveSymbolName(const coff_section *Section,
136 typedef DenseMap<const coff_section*, std::vector<RelocationRef> > RelocMapTy;
181 const coff_section *Sec;
204 std::error_code COFFDumper::resolveSymbol(const coff_section *Section,
225 std::error_code COFFDumper::resolveSymbolName(const coff_section *Section,
240 std::error_code COFFDumper::resolveSymbolName(const coff_section *Section,
252 void COFFDumper::printRelocatedField(StringRef Label, const coff_section *Sec
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
coffgrok.h 47 struct coff_section struct
66 struct coff_section *sections;
75 struct coff_section *parent;
161 struct coff_section *sec; /* What section */
209 struct coff_section *section;
srconv.c 58 static void wr_sh (struct coff_ofile *, struct coff_section *);
59 static void wr_ob (struct coff_ofile *, struct coff_section *);
60 static void wr_rl (struct coff_ofile *, struct coff_section *);
63 (struct coff_sfile *, struct coff_section *, struct coff_scope *, int, int);
64 static void wr_dps_end (struct coff_section *, struct coff_scope *, int);
71 (struct coff_sfile *, struct coff_section *, struct coff_symbol *, int);
73 (struct coff_section *, struct coff_sfile *, struct coff_scope *, int, int);
74 static void walk_tree_sfile (struct coff_section *, struct coff_sfile *);
78 static int find_base (struct coff_sfile *, struct coff_section *);
440 wr_sh (struct coff_ofile *p ATTRIBUTE_UNUSED, struct coff_section *sec
    [all...]
coffdump.c 46 static void dump_coff_section (struct coff_section *);
418 dump_coff_section (struct coff_section *ptr)
coffgrok.c 133 struct coff_section *all = (struct coff_section *) (xcalloc (abfd->section_count + 1,
134 sizeof (struct coff_section)));
  /external/swiftshader/third_party/LLVM/lib/Object/
COFFObjectFile.cpp 72 const coff_section *COFFObjectFile::toSec(DataRefImpl Sec) const {
73 const coff_section *addr = reinterpret_cast<const coff_section*>(Sec.p);
82 assert(offset % sizeof(coff_section) == 0 &&
121 const coff_section *Section = NULL;
139 const coff_section *Section = NULL;
191 const coff_section *Section = NULL;
224 const coff_section *Section = NULL;
280 const coff_section *sec = toSec(Sec);
289 const coff_section *sec = toSec(Sec)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
COFF.h 57 struct coff_section { struct in namespace:llvm::object
79 const coff_section *SectionTable;
85 const coff_section *&Res) const;
91 const coff_section *toSec(DataRefImpl Sec) const;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
DbiStream.h 28 struct coff_section;
99 codeview::FixedStreamArray<object::coff_section> getSectionHeaders();
139 codeview::FixedStreamArray<object::coff_section> SectionHeaders;
  /external/llvm/lib/Object/
COFFObjectFile.cpp 116 const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const {
117 const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p);
125 assert(Offset % sizeof(coff_section) == 0 &&
169 const coff_section *Section = nullptr;
242 const coff_section *Sec = nullptr;
256 const coff_section *Sec = toSec(Ref);
263 const coff_section *Sec = toSec(Ref);
268 const coff_section *Sec = toSec(Ref);
283 const coff_section *Sec = toSec(Ref)
    [all...]
  /external/llvm/include/llvm/Object/
COFF.h 419 struct coff_section { struct in namespace:llvm::object
631 const coff_section *SectionTable;
649 const coff_section *toSec(DataRefImpl Sec) const;
760 const coff_section *getCOFFSection(const SectionRef &Section) const;
805 std::error_code getSection(int32_t index, const coff_section *&Res) const;
853 getRelocations(const coff_section *Sec) const;
855 std::error_code getSectionName(const coff_section *Sec, StringRef &Res) const;
856 uint64_t getSectionSize(const coff_section *Sec) const;
857 std::error_code getSectionContents(const coff_section *Sec,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFObjectWriter.cpp 371 COFFSection *coff_section = createSection(Sec.getSectionName()); local
374 coff_section->Symbol = coff_symbol;
375 coff_symbol->Section = coff_section;
384 coff_section->Header.Characteristics = Sec.getCharacteristics();
386 uint32_t &Characteristics = coff_section->Header.Characteristics;
407 coff_section->MCData = &SectionData;
408 SectionMap[&SectionData.getSection()] = coff_section;
654 COFFSection *coff_section = SectionMap[&SectionData->getSection()]; local
728 coff_section->Relocations.push_back(Reloc);
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 267 COFFSection *coff_section = createSection(Sec.getSectionName()); local
274 COMDATSymbol->Section = coff_section;
278 coff_section->Symbol = coff_symbol;
279 coff_symbol->Section = coff_section;
288 coff_section->Header.Characteristics = Sec.getCharacteristics();
290 uint32_t &Characteristics = coff_section->Header.Characteristics;
339 coff_section->MCSection = &Sec;
340 SectionMap[&Sec] = coff_section;
678 COFFSection *coff_section = SectionMap[Section]; local
800 coff_section->Relocations.push_back(Reloc)
    [all...]
  /external/llvm/lib/DebugInfo/PDB/Raw/
DbiStream.cpp 244 codeview::FixedStreamArray<object::coff_section>
294 if (StreamLen % sizeof(object::coff_section))
298 size_t NumSections = StreamLen / sizeof(object::coff_section);
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 162 const coff_section *&ResolvedSection,
202 const coff_section *Section;
456 const coff_section *Pdata = Obj->getCOFFSection(Section);
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 105 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 358 const coff_section *CoffSection = COFFObj->getCOFFSection(Section);
    [all...]
  /external/llvm/tools/llvm-pdbdump/
LLVMOutputStyle.cpp 732 for (const object::coff_section &Section : Dbi->getSectionHeaders()) {
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 817 const coff_section *Section = Obj.getCOFFSection(*SecI);
    [all...]

Completed in 340 milliseconds