Home
last modified time | relevance | path

Searched refs:coff_relocation (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp356 const coff_relocation *FirstReloc; in getNumberOfRelocations()
358 reinterpret_cast<const coff_relocation *>( in getNumberOfRelocations()
369 static const coff_relocation *
374 auto begin = reinterpret_cast<const coff_relocation *>( in getFirstReloc()
382 sizeof(coff_relocation) * NumRelocs)) { in getFirstReloc()
391 const coff_relocation *begin = getFirstReloc(Sec, Data, base()); in section_rel_begin()
401 const coff_relocation *I = getFirstReloc(Sec, Data, base()); in section_rel_end()
1142 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { in toRel()
1143 return reinterpret_cast<const coff_relocation*>(Rel.p); in toRel()
1148 reinterpret_cast<const coff_relocation*>(Rel.p) + 1); in moveRelocationNext()
[all …]
H A DCOFFImportFile.cpp193 NumberOfRelocations * sizeof(coff_relocation) + in createImportDescriptor()
222 NumberOfRelocations * sizeof(coff_relocation)), in createImportDescriptor()
238 const coff_relocation RelocationTable[NumberOfRelocations] = { in createImportDescriptor()
H A DWindowsResource.cpp980 reinterpret_cast<coff_relocation *>(BufferStart + CurrentOffset); in writeFirstSectionRelocations()
999 CurrentOffset += sizeof(coff_relocation); in writeFirstSectionRelocations()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
H A DObject.h29 Relocation(const object::coff_relocation &R) : Reloc(R) {} in Relocation()
31 object::coff_relocation Reloc;
H A DReader.cpp72 ArrayRef<coff_relocation> Relocs = COFFObj.getRelocations(Sec); in readSections()
73 for (const coff_relocation &R : Relocs) in readSections()
H A DWriter.cpp105 FileSize += sizeof(coff_relocation); in layoutSections()
111 FileSize += S.Relocs.size() * sizeof(coff_relocation); in layoutSections()
321 object::coff_relocation R; in writeSections()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DCOFF.h474 struct coff_relocation { struct
833 const coff_relocation *toRel(DataRefImpl Rel) const;
982 const coff_relocation *getCOFFRelocation(const RelocationRef &Reloc) const;
1073 ArrayRef<coff_relocation> getRelocations(const coff_section *Sec) const;
1265 std::vector<const coff_relocation *> Relocs;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp197 const object::coff_relocation *reloc = Obj.getCOFFRelocation(Reloc); in dumpSections()