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

  /external/llvm/lib/MC/
MCELFObjectTargetWriter.cpp 48 std::vector<ELFRelocationEntry> &Relocs) {
50 array_pod_sort(Relocs.begin(), Relocs.end());
MachObjectWriter.cpp 794 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
795 unsigned NumRelocs = Relocs.size();
867 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
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);
    [all...]
ELFObjectWriter.cpp     [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 51 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;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCELFObjectWriter.cpp 39 std::vector<ELFRelocationEntry> &Relocs);
269 std::vector<ELFRelocationEntry> &Relocs) {
275 for (std::vector<ELFRelocationEntry>::iterator R = Relocs.begin();
276 R != Relocs.end(); ++R) {
287 Relocs[I] = ELFRelocationEntry(R->r_offset, R->Index, R->Type,
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 420 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
422 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
423 resolveRelocationEntry(Relocs[i], Value);
432 RelocationList &Relocs = i->second;
438 resolveRelocationList(Relocs, 0);
447 resolveRelocationList(Relocs, (uintptr_t)Addr);
RuntimeDyldImpl.h 270 /// \brief Resolves relocations from Relocs list with address from Value.
271 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 94 std::vector<ELFRelocationEntry> &Relocs);
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 363 std::vector<std::pair<uint64_t, SymbolRef> > Relocs;
375 Relocs.push_back(std::make_pair(RelocOffset, RelocSym));
377 array_pod_sort(Relocs.begin(), Relocs.end());
594 for (unsigned j = 0; j != Relocs.size(); ++j)
595 if (Relocs[j].first >= SectAddress + Inst.Address &&
596 Relocs[j].first < SectAddress + Inst.Address + Inst.Size) {
599 Relocs[j].second.getAddress(Addr);
600 Relocs[j].second.getName(SymName);

Completed in 95 milliseconds