/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 84 int Relocations = 0; member in __anon01d1147a0111::COFFSymbol 119 relocations Relocations; member in __anon01d1147a0111::COFFSection 569 if (Section->Relocations.size() >= 0xffff) in writeSectionHeaders() 635 if (Sec.Relocations.empty()) { in writeSection() 644 if (Sec.Relocations.size() >= 0xffff) { in writeSection() 648 R.VirtualAddress = Sec.Relocations.size() + 1; in writeSection() 654 for (const auto &Relocation : Sec.Relocations) in writeSection() 768 ++Reloc.Symb->Relocations; in recordRelocation() 825 Sec->Relocations.push_back(Reloc); in recordRelocation() 912 if (!Sec->Relocations.empty()) { in assignFileOffsets() [all …]
|
D | ELFObjectWriter.cpp | 235 DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>> Relocations; member in __anon4da26fc50111::ELFObjectWriter 254 Relocations.clear(); in reset() 784 if (OWriter.Relocations[&Sec].empty()) in createRelocationSection() 917 std::vector<ELFRelocationEntry> &Relocs = OWriter.Relocations[&Sec]; in writeRelocations() 1088 std::vector<MCSectionELF *> Relocations; in writeObject() local 1128 Relocations.push_back(RelSection); in writeObject() 1176 for (MCSectionELF *RelSection : Relocations) { in writeObject() 1493 Relocations[&FixupSection].push_back(Rec); in recordRelocation() 1508 Relocations[&FixupSection].push_back(Rec); in recordRelocation()
|
D | WasmObjectWriter.cpp | 324 std::vector<WasmRelocationEntry> &Relocations); 337 void applyRelocations(ArrayRef<WasmRelocationEntry> Relocations, 639 ArrayRef<WasmRelocationEntry> Relocations, uint64_t ContentsOffset) { in applyRelocations() argument 641 for (const WasmRelocationEntry &RelEntry : Relocations) { in applyRelocations() 924 auto &Relocations = CustomSectionsRelocations[Sec.Section]; in writeCustomRelocSections() local 925 writeRelocSection(Sec.OutputIndex, Sec.Name, Relocations); in writeCustomRelocSections() 1029 auto &Relocations = CustomSectionsRelocations[CustomSection.Section]; in writeCustomSection() local 1030 applyRelocations(Relocations, CustomSection.OutputContentsOffset); in writeCustomSection()
|
D | MachObjectWriter.cpp | 46 Relocations.clear(); in reset() 627 for (RelAndSymbol &Rel : Relocations[&Section]) { in computeSymbolTable() 853 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec]; in writeObject() 967 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec]; in writeObject()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCMachObjectWriter.h | 107 DenseMap<const MCSection *, std::vector<RelAndSymbol>> Relocations; variable 232 Relocations[Sec].push_back(P); in addRelocation()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | COFFEmitter.cpp | 261 if (!S.Relocations.empty()) { in layoutCOFF() 267 S.Header.NumberOfRelocations = S.Relocations.size(); in layoutCOFF() 268 CurrentSectionDataOffset += S.Relocations.size() * COFF::RelocationSize; in layoutCOFF() 513 OS << binary_le<uint32_t>(/*VirtualAddress=*/ S.Relocations.size() + 1) in writeCOFF() 516 for (const COFFYAML::Relocation &R : S.Relocations) { in writeCOFF()
|
D | WasmEmitter.cpp | 527 encodeULEB128(Sec.Relocations.size(), OS); in writeRelocSection() 529 for (auto Reloc : Sec.Relocations) { in writeRelocSection() 606 if (Sec->Relocations.empty()) { in writeWasm()
|
D | COFFYAML.cpp | 587 IO.mapOptional("Relocations", Sec.Relocations); in mapping()
|
D | WasmYAML.cpp | 47 IO.mapOptional("Relocations", Section.Relocations); in commonSectionMapping()
|
D | ELFEmitter.cpp | 800 SHeader.sh_size = SHeader.sh_entsize * Section.Relocations.size(); in writeSectionContent() 811 for (const auto &Rel : Section.Relocations) { in writeSectionContent()
|
D | ELFYAML.cpp | 1101 IO.mapOptional("Relocations", Section.Relocations); in sectionMapping()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 145 for (auto it = Relocations.begin(), e = Relocations.end(); it != e; ++it) { in resolveLocalRelocations() 155 Relocations.clear(); in resolveLocalRelocations() 911 Relocations[SectionID].push_back(RE); in addRelocationForSection() 927 Relocations[SymInfo.getSectionID()].push_back(RECopy); in addRelocationForSymbol()
|
D | RuntimeDyldImpl.h | 279 std::unordered_map<unsigned, RelocationList> Relocations; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | COFFYAML.h | 77 std::vector<Relocation> Relocations; member
|
D | WasmYAML.h | 182 std::vector<Relocation> Relocations; member
|
D | ELFYAML.h | 434 std::vector<Relocation> Relocations; member
|
/third_party/mesa3d/src/intel/genxml/ |
D | README | 52 3) Relocations: whenever we have a pointer from one buffer to
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 836 Section.Relocations.push_back(Reloc); in parseRelocSection() 1471 RelocRef.d.b = Sec.Relocations.size(); in section_rel_end() 1561 assert(Ref.d.b < Sec.Relocations.size()); in getWasmRelocation() 1562 return Sec.Relocations[Ref.d.b]; in getWasmRelocation()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | Wasm.h | 110 std::vector<wasm::WasmRelocation> Relocations; // Relocations for this section member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | DynamicTags.def | 61 DYNAMIC_TAG(TEXTREL, 22) // Relocations exist for non-writable segments.
|
/third_party/elfutils/po/ |
D | de.po | 3957 msgstr "Relocations anzeigen" 6304 msgstr "Relocations anzeigen"
|