HomeSort by relevance Sort by last modified time
    Searched defs:Relocs (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFSection.h 20 RelocAddrMap Relocs;
DWARFAcceleratorTable.h 42 const RelocAddrMap& Relocs;
45 const RelocAddrMap &Relocs)
46 : AccelSection(AccelSection), StringSection(StringSection), Relocs(Relocs) {}
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 496 RelocationList &Relocs = Relocations[Name];
497 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
498 RelocationEntry &RE = Relocs[i];
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
ELF.cpp 297 std::vector<Elf_Rela> Relocs;
315 Relocs.push_back(Rela);
327 Relocs.push_back(Rela);
336 return Relocs;
371 std::vector<Elf_Rela> Relocs;
372 Relocs.reserve(NumRelocs);
410 Relocs.push_back(R);
420 return Relocs;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCCodeEmitter.cpp 493 static const std::map<unsigned,unsigned> Relocs = {
507 auto F = Relocs.find(VarKind);
508 if (F != Relocs.end())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MachObjectWriter.cpp 690 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
691 unsigned NumRelocs = Relocs.size();
749 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
750 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
751 Write32(Relocs[e - i - 1].Word0);
752 Write32(Relocs[e - i - 1].Word1);
ELFObjectWriter.cpp 747 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
749 array_pod_sort(Relocs.begin(), Relocs.end());
751 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
752 ELFRelocationEntry entry = Relocs[e - i - 1];
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MachODump.cpp 418 std::vector<std::pair<uint64_t, uint32_t> > Relocs;
422 Relocs.push_back(std::make_pair(RE->Word0, RE->Word1 & 0xffffff));
424 array_pod_sort(Relocs.begin(), Relocs.end());
577 for (unsigned j = 0; j != Relocs.size(); ++j)
578 if (Relocs[j].first >= Sections[SectIdx].Address + Inst.Address &&
579 Relocs[j].first < Sections[SectIdx].Address + Inst.Address +
583 UnsortedSymbols[Relocs[j].second].StringIndex)
585 DumpAddress(UnsortedSymbols[Relocs[j].second].Value, Sections,
  /external/llvm/lib/MC/
MachObjectWriter.cpp 804 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
805 unsigned NumRelocs = Relocs.size();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MachObjectWriter.cpp 836 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
837 unsigned NumRelocs = Relocs.size();
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 891 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
893 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
894 const RelocationEntry &RE = Relocs[i];
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 827 std::vector<std::pair<uint64_t, SymbolRef>> Relocs;
838 Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
841 array_pod_sort(Relocs.begin(), Relocs.end());
866 Relocs.begin(), Relocs.end(),
868 if (Reloc != Relocs.end()) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]

Completed in 1086 milliseconds