/netbsd-src/external/bsd/file/dist/magic/magdir/ |
H A D | forth | 27 >>>32 lelong x Text Relocation Table length: %d bytes, 28 >>>36 lelong x Data Relocation Table length: %d bytes, 42 >>24 lelong x First Relocation Item: %d, 52 >24 belong x Text Relocation Table length: %d bytes, 53 >28 belong x Data Relocation Table length: %d bytes 61 >24 lelong x Text Relocation Table length: %d bytes, 62 >28 lelong x Data Relocation Table length: %d bytes
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
H A D | COFFYAML.h | 57 struct Relocation { struct 77 std::vector<Relocation> Relocations; argument 118 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Relocation) in LLVM_YAML_IS_SEQUENCE_VECTOR() 199 struct MappingTraits<COFFYAML::Relocation> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 200 static void mapping(IO &IO, COFFYAML::Relocation &Rel); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
H A D | MachOYAML.h | 30 struct Relocation { struct 58 std::vector<Relocation> relocations; argument 161 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::Relocation) in LLVM_YAML_IS_SEQUENCE_VECTOR() argument 217 template <> struct MappingTraits<MachOYAML::Relocation> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 218 static void mapping(IO &IO, MachOYAML::Relocation &R); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
H A D | WasmYAML.h | 110 struct Relocation { struct 187 std::vector<Relocation> Relocations; 419 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Relocation) in LLVM_YAML_IS_SEQUENCE_VECTOR() 493 template <> struct MappingTraits<WasmYAML::Relocation> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 494 static void mapping(IO &IO, WasmYAML::Relocation &Relocation); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
H A D | ELFYAML.h | 184 Relocation, enumerator 589 struct Relocation { struct 597 Optional<std::vector<Relocation>> Relocations; argument 600 RelocationSection() : Section(ChunkKind::Relocation) {} in RelocationSection() 607 return S->Kind == ChunkKind::Relocation; in classof() 749 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::Relocation) in LLVM_YAML_IS_SEQUENCE_VECTOR() 938 template <> struct MappingTraits<ELFYAML::Relocation> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 939 static void mapping(IO &IO, ELFYAML::Relocation &Rel); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
H A D | MachOYAML.cpp | 278 void MappingTraits<MachOYAML::Relocation>::mapping( in mapping() 279 IO &IO, MachOYAML::Relocation &Relocation) { in mapping() argument 280 IO.mapRequired("address", Relocation.address); in mapping() 281 IO.mapRequired("symbolnum", Relocation.symbolnum); in mapping() 282 IO.mapRequired("pcrel", Relocation.is_pcrel); in mapping() 283 IO.mapRequired("length", Relocation.length); in mapping() 284 IO.mapRequired("extern", Relocation.is_extern); in mapping() 285 IO.mapRequired("type", Relocation.type); in mapping() 286 IO.mapRequired("scattered", Relocation.is_scattered); in mapping() 287 IO.mapRequired("value", Relocation.value); in mapping()
|
H A D | WasmYAML.cpp | 317 void MappingTraits<WasmYAML::Relocation>::mapping( in mapping() 318 IO &IO, WasmYAML::Relocation &Relocation) { in mapping() argument 319 IO.mapRequired("Type", Relocation.Type); in mapping() 320 IO.mapRequired("Index", Relocation.Index); in mapping() 321 IO.mapRequired("Offset", Relocation.Offset); in mapping() 322 IO.mapOptional("Addend", Relocation.Addend, 0); in mapping()
|
H A D | MachOEmitter.cpp | 331 makeRelocationInfo(const MachOYAML::Relocation &R, bool IsLE) { in makeRelocationInfo() 347 makeScatteredRelocationInfo(const MachOYAML::Relocation &R) { in makeScatteredRelocationInfo() 366 for (const MachOYAML::Relocation &R : Sec.relocations) { in writeRelocations()
|
H A D | COFFYAML.cpp | 409 void MappingTraits<COFFYAML::Relocation>::mapping(IO &IO, in mapping() 410 COFFYAML::Relocation &Rel) { in mapping()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/ |
H A D | Object.h | 27 struct Relocation { struct 28 Relocation() = default; 29 Relocation(const object::coff_relocation &R) : Reloc(R) {} in Relocation() function 38 std::vector<Relocation> Relocs; argument
|
H A D | Object.cpp | 57 for (const Relocation &R : Sec.Relocs) { in markSymbols()
|
H A D | Reader.cpp | 179 for (Relocation &R : Sec.Relocs) { in setSymbolTargets()
|
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/python/llvm/tests/ |
H A D | test_object.py | 5 from ..object import Relocation 64 assert isinstance(relocation, Relocation)
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
H A D | ELFObjectFile.cpp | 632 for (const auto &Relocation : RelaPlt->relocations()) { in getPltAddresses() local 633 if (Relocation.getType() != JumpSlotReloc) in getPltAddresses() 635 auto PltEntryIter = GotToPlt.find(Relocation.getOffset()); in getPltAddresses() 637 symbol_iterator Sym = Relocation.getSymbol(); in getPltAddresses()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | WinCOFFObjectWriter.cpp | 665 for (const auto &Relocation : Sec.Relocations) in writeSection() local 666 WriteRelocation(Relocation.Data); in writeSection() 995 for (auto &Relocation : Sec->Relocations) { in assignFileOffsets() local 996 assert(Relocation.Symb->getIndex() != -1); in assignFileOffsets() 997 Relocation.Data.SymbolTableIndex = Relocation.Symb->getIndex(); in assignFileOffsets()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
H A D | VE.def | 6 // Relocation types defined in following documents.
|
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/python/llvm/ |
H A D | object.py | 256 last = Relocation(relocations) 357 class Relocation(LLVMObject): class
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 184 template <class ELFT> class Relocation { class 186 Relocation(const typename ELFT::Rel &R, bool IsMips64EL) in Relocation() function in __anond60e1ac70111::Relocation 190 Relocation(const typename ELFT::Rela &R, bool IsMips64EL) in Relocation() function in __anond60e1ac70111::Relocation 191 : Relocation((const typename ELFT::Rel &)R, IsMips64EL) { in Relocation() 266 virtual void printRelRelaReloc(const Relocation<ELFT> &R, 271 void printReloc(const Relocation<ELFT> &R, unsigned RelIndex, 273 void printDynamicReloc(const Relocation<ELFT> &R); 278 llvm::function_ref<void(const Relocation<ELFT> &, unsigned, 305 void printStackSize(const Relocation<ELFT> &R, const Elf_Shdr &RelocSec, 376 Expected<RelSymbol<ELFT>> getRelocationTarget(const Relocation<ELFT> &R, [all …]
|
H A D | COFFDumper.cpp | 262 for (const auto &Relocation : Relocations) { in resolveSymbol() local 263 uint64_t RelocationOffset = Relocation.getOffset(); in resolveSymbol() 266 SymI = Relocation.getSymbol(); in resolveSymbol() 333 for (const auto &Relocation : Relocations) { in printBinaryBlockWithRelocs() local 334 uint64_t RelocationOffset = Relocation.getOffset(); in printBinaryBlockWithRelocs() 336 printRelocation(Sec, Relocation, OffsetStart); in printBinaryBlockWithRelocs()
|
H A D | ARMWinEHPrinter.cpp | 233 for (const auto &Relocation : Section.relocations()) { in getRelocatedSymbol() local 234 uint64_t RelocationOffset = Relocation.getOffset(); in getRelocatedSymbol() 236 return *Relocation.getSymbol(); in getRelocatedSymbol()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
H A D | coff2yaml.cpp | 195 std::vector<COFFYAML::Relocation> Relocations; in dumpSections() 198 COFFYAML::Relocation Rel; in dumpSections()
|
H A D | elf2yaml.cpp | 67 ELFYAML::Relocation &R); 707 ELFYAML::Relocation &R) { in dumpRelocation() 1070 ELFYAML::Relocation R; in dumpRelocSection() 1080 ELFYAML::Relocation R; in dumpRelocSection()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
H A D | Relocation.txt | 1 MIPS Relocation Principles
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
H A D | Object.h | 724 struct Relocation { struct 773 std::vector<Relocation> Relocations; 776 void addRelocation(Relocation Rel) { Relocations.push_back(Rel); } in addRelocation()
|
/netbsd-src/external/bsd/elftoolchain/dist/common/sys/ |
H A D | elfdefinitions.m4 | 217 ** Relocation types. 595 * Relocation descriptors.
|