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

  /external/llvm/lib/MC/
MCELFObjectTargetWriter.cpp 59 std::vector<ELFRelocationEntry> &Relocs) {
60 array_pod_sort(Relocs.begin(), Relocs.end(), cmpRel);
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/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 445 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
447 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
448 const RelocationEntry &RE = Relocs[i];
461 RelocationList &Relocs = i->second;
467 resolveRelocationList(Relocs, 0);
476 resolveRelocationList(Relocs, (uintptr_t)Addr);
RuntimeDyldImpl.h 276 /// \brief Resolves relocations from Relocs list with address from Value.
277 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 87 std::vector<ELFRelocationEntry> &Relocs);
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 333 std::vector<std::pair<uint64_t, SymbolRef> > Relocs;
344 Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
346 array_pod_sort(Relocs.begin(), Relocs.end());

Completed in 3581 milliseconds