HomeSort by relevance Sort by last modified time
    Searched refs:Relocs (Results 1 - 18 of 18) 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) {}
DWARFUnit.h 182 const RelocAddrMap *getRelocMap() const { return &InfoSection.Relocs; }
  /external/llvm/lib/MC/
MCELFObjectTargetWriter.cpp 34 std::vector<ELFRelocationEntry> &Relocs) {
MachObjectWriter.cpp 800 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
801 unsigned NumRelocs = Relocs.size();
908 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
909 for (const RelAndSymbol &Rel : make_range(Relocs.rbegin(), Relocs.rend()))
    [all...]
ELFObjectWriter.cpp     [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 52 std::vector<ELFRelocationEntry> &Relocs) override;
215 // When there are more *HI16 relocs paired with one *LO16 reloc, the 2nd rule
342 std::vector<ELFRelocationEntry> &Relocs) {
343 if (Relocs.size() < 2)
347 array_pod_sort(Relocs.begin(), Relocs.end(), cmpRel);
349 // Init MipsRelocs from Relocs.
351 for (unsigned I = 0, E = Relocs.size(); I != E; ++I)
352 MipsRelocs.push_back(MipsRelocationEntry(Relocs[I]));
381 // Copy sorted MipsRelocs back to Relocs
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/xgate/
hilo.s 22 ;Test Relocs
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 69 DWARFAcceleratorTable Accel(AccelSection, StrData, Section.Relocs);
158 LineTable.parse(lineData, &getLineSection().Relocs, &stmtOffset);
317 Loc.reset(new DWARFDebugLoc(getLocSection().Relocs));
376 Line.reset(new DWARFDebugLine(&getLineSection().Relocs));
708 .Case("debug_info", &InfoSection.Relocs)
709 .Case("debug_loc", &LocSection.Relocs)
710 .Case("debug_info.dwo", &InfoDWOSection.Relocs)
711 .Case("debug_line", &LineSection.Relocs)
712 .Case("apple_names", &AppleNamesSection.Relocs)
713 .Case("apple_types", &AppleTypesSection.Relocs)
    [all...]
DWARFAcceleratorTable.cpp 107 RelocAddrMap::const_iterator Reloc = Relocs.find(DataOffset-4);
108 if (Reloc != Relocs.end())
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 74 std::vector<ELFRelocationEntry> &Relocs);
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 255 SmallVectorImpl<const Value *> &Relocs,
268 NewRelocs.push_back(Relocs[i]);
274 assert(Relocs.size() >= NewRelocs.size());
277 Relocs = NewRelocs;
279 assert(Ptrs.size() == Relocs.size());
393 /// Relocs - the gc_relocate corresponding to each base/ptr pair
398 SmallVectorImpl<const Value *> &Relocs, ImmutableStatepoint StatepointSite,
401 Relocs.push_back(relocateOpers.getUnderlyingCallSite().getInstruction());
410 removeDuplicatesGCPtrs(Bases, Ptrs, Relocs, Builder);
412 assert(Bases.size() == Ptrs.size() && Ptrs.size() == Relocs.size())
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 790 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
792 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
793 const RelocationEntry &RE = Relocs[i];
810 RelocationList &Relocs = i->second;
811 resolveRelocationList(Relocs, 0);
846 RelocationList &Relocs = i->second;
847 resolveRelocationList(Relocs, Addr);
    [all...]
RuntimeDyldImpl.h 392 /// \brief Resolves relocations from Relocs list with address from Value.
393 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
  /toolchain/binutils/binutils-2.25/gold/
output.h 471 // Whether any dynamic relocs have been applied to this section.
1152 // This is used when sorting dynamic relocs. Return -1 to sort this
1159 // when sorting dynamic relocs.
    [all...]
output.cc 1156 // Reloc comparison. This function sorts the dynamic relocs for the
1157 // benefit of the dynamic linker. First we sort all relative relocs
1158 // to the front. Among relative relocs, we sort by output address.
1159 // Among non-relative relocs, we sort by symbol index, then by output
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 773 std::vector<std::pair<uint64_t, SymbolRef>> Relocs;
784 Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
787 array_pod_sort(Relocs.begin(), Relocs.end());
812 Relocs.begin(), Relocs.end(),
814 if (Reloc != Relocs.end()) {
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]

Completed in 2270 milliseconds