Home
last modified time | relevance | path

Searched refs:Relocs (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/
DMipsELFObjectWriter.cpp68 std::vector<ELFRelocationEntry> &Relocs) override;
207 static void dumpRelocs(const char *Prefix, const Container &Relocs) { in dumpRelocs() argument
208 for (const auto &R : Relocs) in dumpRelocs()
455 std::vector<ELFRelocationEntry> &Relocs) { in sortRelocs() argument
462 if (Relocs.size() < 2) in sortRelocs()
466 llvm::sort(Relocs, in sortRelocs()
474 LLVM_DEBUG(dumpRelocs("R: ", Relocs)); in sortRelocs()
479 copy_if_else(Relocs.begin(), Relocs.end(), std::back_inserter(Remainder), in sortRelocs()
522 assert(Relocs.size() == Sorted.size() && "Some relocs were not consumed"); in sortRelocs()
528 Relocs[CopyTo++] = R.R; in sortRelocs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DELF.cpp307 std::vector<Elf_Rela> Relocs; in decode_relrs() local
325 Relocs.push_back(Rela); in decode_relrs()
337 Relocs.push_back(Rela); in decode_relrs()
346 return Relocs; in decode_relrs()
381 std::vector<Elf_Rela> Relocs; in android_relas() local
382 Relocs.reserve(NumRelocs); in android_relas()
417 Relocs.push_back(R); in android_relas()
427 return Relocs; in android_relas()
DCOFFObjectFile.cpp1770 Relocs.reserve(OrigRelocs.size()); in load()
1772 Relocs.push_back(&R); in load()
1773 std::sort(Relocs.begin(), Relocs.end(), in load()
1792 std::equal_range(Relocs.begin(), Relocs.end(), &RelocTarget, in getContents()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DInstrumentationMap.cpp89 RelocMap Relocs; in loadObj() local
115 Relocs.insert({Reloc.getOffset(), resolved}); in loadObj()
118 Relocs.insert({Reloc.getOffset(), *AddendOrErr}); in loadObj()
137 RelocMap::const_iterator R = Relocs.find(A); in loadObj()
138 if (R != Relocs.end()) in loadObj()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCELFObjectTargetWriter.cpp27 std::vector<ELFRelocationEntry> &Relocs) { in sortRelocs() argument
DMachObjectWriter.cpp853 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec]; in writeObject() local
854 unsigned NumRelocs = Relocs.size(); in writeObject()
967 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec]; in writeObject() local
968 for (const RelAndSymbol &Rel : make_range(Relocs.rbegin(), Relocs.rend())) { in writeObject()
DELFObjectWriter.cpp917 std::vector<ELFRelocationEntry> &Relocs = OWriter.Relocations[&Sec]; in writeRelocations() local
923 std::reverse(Relocs.begin(), Relocs.end()); in writeRelocations()
926 OWriter.TargetObjectWriter->sortRelocs(Asm, Relocs); in writeRelocations()
928 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) { in writeRelocations()
929 const ELFRelocationEntry &Entry = Relocs[e - i - 1]; in writeRelocations()
DWasmObjectWriter.cpp884 std::vector<WasmRelocationEntry> &Relocs) { in writeRelocSection() argument
888 if (Relocs.empty()) in writeRelocSection()
897 Relocs, [](const WasmRelocationEntry &A, const WasmRelocationEntry &B) { in writeRelocSection()
906 encodeULEB128(Relocs.size(), W.OS); in writeRelocSection()
907 for (const WasmRelocationEntry &RelEntry : Relocs) { in writeRelocSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp1059 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs, in resolveRelocationList() argument
1061 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) { in resolveRelocationList()
1062 const RelocationEntry &RE = Relocs[i]; in resolveRelocationList()
1081 RelocationList &Relocs = i->second; in applyExternalSymbolRelocations() local
1082 resolveRelocationList(Relocs, 0); in applyExternalSymbolRelocations()
1126 RelocationList &Relocs = i->second; in applyExternalSymbolRelocations() local
1127 resolveRelocationList(Relocs, Addr); in applyExternalSymbolRelocations()
DRuntimeDyldImpl.h411 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DStatepointLowering.cpp278 SmallVectorImpl<const GCRelocateInst *> &Relocs, in removeDuplicateGCPtrs() argument
293 NewRelocs.push_back(Relocs[i]); in removeDuplicateGCPtrs()
302 assert(Relocs.size() >= NewRelocs.size()); in removeDuplicateGCPtrs()
305 Relocs = NewRelocs; in removeDuplicateGCPtrs()
307 assert(Ptrs.size() == Relocs.size()); in removeDuplicateGCPtrs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp1428 RelocAddrMap Relocs; member
1689 RelocAddrMap *Map = Sec ? &Sec->Relocs : nullptr; in DWARFObjInMemory()
1695 .Relocs; in DWARFObjInMemory()
1699 .Relocs; in DWARFObjInMemory()
1703 .Relocs; in DWARFObjInMemory()
1707 .Relocs; in DWARFObjInMemory()
1778 RelocAddrMap::const_iterator AI = Sec.Relocs.find(Pos); in find()
1779 if (AI == Sec.Relocs.end()) in find()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCELFObjectWriter.h94 std::vector<ELFRelocationEntry> &Relocs);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCCodeEmitter.cpp491 static const std::map<unsigned,unsigned> Relocs = { in getFixupNoBits() local
505 auto F = Relocs.find(VarKind); in getFixupNoBits()
506 if (F != Relocs.end()) in getFixupNoBits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DCOFF.h1231 std::vector<const coff_relocation *> Relocs; variable