Home
last modified time | relevance | path

Searched refs:Relocations (Results 1 – 25 of 184) sorted by relevance

12345678

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp85 int Relocations = 0; member in __anon9a7db13a0111::COFFSymbol
120 relocations Relocations; member in __anon9a7db13a0111::COFFSection
580 if (Section->Relocations.size() >= 0xffff) in writeSectionHeaders()
646 if (Sec.Relocations.empty()) { in writeSection()
655 if (Sec.Relocations.size() >= 0xffff) { in writeSection()
659 R.VirtualAddress = Sec.Relocations.size() + 1; in writeSection()
665 for (const auto &Relocation : Sec.Relocations) in writeSection()
786 ++Reloc.Symb->Relocations; in recordRelocation()
847 Sec->Relocations.push_back(Reloc); in recordRelocation()
976 if (!Sec->Relocations.empty()) { in assignFileOffsets()
[all …]
H A DXCOFFObjectWriter.cpp83 SmallVector<XCOFFRelocation, 1> Relocations; member
485 SectionMap[RelocationSec]->Relocations.push_back(Reloc); in recordRelocation()
509 SectionMap[RelocationSec]->Relocations.push_back(RelocB); in recordRelocation()
739 for (const auto Reloc : Csect.Relocations) in writeRelocations()
810 const size_t CsectRelocCount = Csect.Relocations.size(); in finalizeSectionInfo()
H A DELFObjectWriter.cpp221 DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>> Relocations; member in __anon4cfeac850111::ELFObjectWriter
242 Relocations.clear(); in reset()
784 if (OWriter.Relocations[&Sec].empty()) in createRelocationSection()
917 std::vector<ELFRelocationEntry> &Relocs = OWriter.Relocations[&Sec]; in writeRelocations()
1086 std::vector<MCSectionELF *> Relocations; in writeObject() local
1124 Relocations.push_back(RelSection); in writeObject()
1170 for (MCSectionELF *RelSection : Relocations) { in writeObject()
1491 Relocations[&FixupSection].push_back(Rec); in recordRelocation()
1506 Relocations[&FixupSection].push_back(Rec); in recordRelocation()
H A DWasmObjectWriter.cpp324 std::vector<WasmRelocationEntry> &Relocations);
335 void applyRelocations(ArrayRef<WasmRelocationEntry> Relocations,
704 ArrayRef<WasmRelocationEntry> Relocations, uint64_t ContentsOffset, in applyRelocations() argument
707 for (const WasmRelocationEntry &RelEntry : Relocations) { in applyRelocations()
1083 auto &Relocations = CustomSectionsRelocations[Sec.Section]; in writeCustomRelocSections() local
1084 writeRelocSection(Sec.OutputIndex, Sec.Name, Relocations); in writeCustomRelocSections()
1189 auto &Relocations = CustomSectionsRelocations[CustomSection.Section]; in writeCustomSection() local
1190 applyRelocations(Relocations, CustomSection.OutputContentsOffset, Layout); in writeCustomSection()
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-pru.texi15 * PRU Relocations:: Relocations
64 @node PRU Relocations
65 @section PRU Machine Relocations
H A Dc-nios2.texi21 * Nios II Relocations:: Relocations
92 @node Nios II Relocations
93 @section Nios II Machine Relocations
H A Dc-wasm32.texi45 * WebAssembly-Relocs:: Relocations
60 @subsection Relocations
H A Dc-aarch64.texi319 * AArch64-Relocations:: Relocations
350 @node AArch64-Relocations
351 @subsection Relocations
356 Relocations for @samp{MOVZ} and @samp{MOVK} instructions can be generated
367 Relocations for @samp{ADRP}, and @samp{ADD}, @samp{LDR} or @samp{STR}
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-pru.texi15 * PRU Relocations:: Relocations
64 @node PRU Relocations
65 @section PRU Machine Relocations
H A Dc-nios2.texi21 * Nios II Relocations:: Relocations
92 @node Nios II Relocations
93 @section Nios II Machine Relocations
H A Dc-wasm32.texi45 * WebAssembly-Relocs:: Relocations
60 @subsection Relocations
H A Dc-aarch64.texi262 * AArch64-Relocations:: Relocations
293 @node AArch64-Relocations
294 @subsection Relocations
299 Relocations for @samp{MOVZ} and @samp{MOVK} instructions can be generated
310 Relocations for @samp{ADRP}, and @samp{ADD}, @samp{LDR} or @samp{STR}
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp195 std::vector<COFFYAML::Relocation> Relocations; in dumpSections() local
214 Relocations.push_back(Rel); in dumpSections()
216 NewYAMLSection.Relocations = Relocations; in dumpSections()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOReader.cpp98 S.Relocations.reserve(S.NReloc); in extractSections()
107 S.Relocations.push_back(R); in extractSections()
110 assert(S.NReloc == S.Relocations.size() && in extractSections()
225 for (auto &Reloc : Sec->Relocations) in setSymbolInRelocationInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h108 DenseMap<const MCSection *, std::vector<RelAndSymbol>> Relocations; variable
235 Relocations[Sec].push_back(P); in addRelocation()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp125 cl::opt<bool> Relocations("relocations", variable
128 cl::aliasopt(Relocations), cl::NotHidden);
130 cl::aliasopt(Relocations));
519 if (opts::Relocations) in dumpObject()
769 opts::Relocations = true; in main()
H A DXCOFFDumper.cpp136 auto Relocations = unwrapOrError(Obj.getFileName(), Obj.relocations(Sec)); in printRelocations() local
137 if (Relocations.empty()) in printRelocations()
142 for (auto Reloc : Relocations) { in printRelocations()
/netbsd-src/external/gpl3/binutils/dist/bfd/doc/
H A Dbfd.texi181 a set of relocations (@pxref{Relocations}), and
209 * Relocations::
255 @node Formats, Relocations, Archives, BFD front end
258 @node Relocations, Core Files, Formats, BFD front end
261 @node Core Files, Targets, Relocations, BFD front end
/netbsd-src/external/gpl3/binutils.old/dist/bfd/doc/
H A Dbfd.texi181 a set of relocations (@pxref{Relocations}), and
208 * Relocations::
257 @node Formats, Relocations, Archives, BFD front end
260 @node Relocations, Core Files, Formats, BFD front end
263 @node Core Files, Targets, Relocations, BFD front end
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp260 if (!S.Relocations.empty()) { in layoutCOFF()
266 S.Header.NumberOfRelocations = S.Relocations.size(); in layoutCOFF()
267 CurrentSectionDataOffset += S.Relocations.size() * COFF::RelocationSize; in layoutCOFF()
512 OS << binary_le<uint32_t>(/*VirtualAddress=*/ S.Relocations.size() + 1) in writeCOFF()
515 for (const COFFYAML::Relocation &R : S.Relocations) { in writeCOFF()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/wasm/
H A DBUILD.gn29 "Relocations.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/MachO/
H A DBUILD.gn42 "Relocations.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/ELF/
H A DBUILD.gn55 "Relocations.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DELF_x86_64.cpp469 auto Relocations = Obj.relas(SecRef); in addRelocations() local
470 if (!Relocations) in addRelocations()
471 return Relocations.takeError(); in addRelocations()
473 for (const auto &Rela : *Relocations) { in addRelocations()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp145 for (auto it = Relocations.begin(), e = Relocations.end(); it != e; ++it) { in resolveLocalRelocations()
155 Relocations.clear(); in resolveLocalRelocations()
929 Relocations[SectionID].push_back(RE); in addRelocationForSection()
947 Relocations[SymInfo.getSectionID()].push_back(RECopy); in addRelocationForSymbol()

12345678