Searched defs:Relocs (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/MC/
H A DMCELFObjectTargetWriter.cpp59 std::vector<ELFRelocationEntry> &Relocs) {
60 array_pod_sort(Relocs.begin(), Relocs.end(), cmpRel);
58 sortRelocs(const MCAssembler &Asm, std::vector<ELFRelocationEntry> &Relocs) argument
H A DMachObjectWriter.cpp794 std::vector<macho::RelocationEntry> &Relocs = Relocations[it]; local
795 unsigned NumRelocs = Relocs.size();
867 std::vector<macho::RelocationEntry> &Relocs = Relocations[it]; local
868 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
869 Write32(Relocs[e - i - 1].Word0);
870 Write32(Relocs[e - i - 1].Word1);
H A DELFObjectWriter.cpp1062 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD]; local
1066 TargetObjectWriter->sortRelocs(Asm, Relocs);
1068 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1069 ELFRelocationEntry entry = Relocs[e - i - 1];
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp51 std::vector<ELFRelocationEntry> &Relocs);
220 std::vector<ELFRelocationEntry> &Relocs) {
223 MCELFObjectTargetWriter::sortRelocs(Asm, Relocs);
228 // Fill RelocLs. Traverse Relocs backwards so that relocations in RelocLs
230 for (std::vector<ELFRelocationEntry>::reverse_iterator R = Relocs.rbegin();
231 R != Relocs.rend(); ++R) {
270 assert(Relocs.size() == RelocLs.size());
274 Relocs[--I] = R->Reloc;
219 sortRelocs(const MCAssembler &Asm, std::vector<ELFRelocationEntry> &Relocs) argument
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp333 std::vector<std::pair<uint64_t, SymbolRef> > Relocs; local
344 Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
346 array_pod_sort(Relocs.begin(), Relocs.end());
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp445 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs, argument
447 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
448 const RelocationEntry &RE = Relocs[i];
461 RelocationList &Relocs = i->second; local
467 resolveRelocationList(Relocs, 0);
476 resolveRelocationList(Relocs, (uintptr_t)Addr);

Completed in 171 milliseconds