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 43 std::vector<ELFRelocationEntry> &Relocs) {
45 array_pod_sort(Relocs.begin(), Relocs.end());
MachObjectWriter.cpp 697 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
698 unsigned NumRelocs = Relocs.size();
756 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
757 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
758 Write32(Relocs[e - i - 1].Word0);
759 Write32(Relocs[e - i - 1].Word1);
ELFObjectWriter.cpp     [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 51 std::vector<ELFRelocationEntry> &Relocs);
186 std::vector<ELFRelocationEntry> &Relocs) {
189 MCELFObjectTargetWriter::sortRelocs(Asm, Relocs);
194 // Fill RelocLs. Traverse Relocs backwards so that relocations in RelocLs
196 for (std::vector<ELFRelocationEntry>::reverse_iterator R = Relocs.rbegin();
197 R != Relocs.rend(); ++R) {
236 assert(Relocs.size() == RelocLs.size());
240 Relocs[--I] = R->Reloc;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 381 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
383 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
384 resolveRelocationEntry(Relocs[i], Value);
395 RelocationList &Relocs = i->second;
405 resolveRelocationList(Relocs, (uintptr_t)Addr);
410 for (int i = 0, e = Relocs.size(); i != e; ++i) {
411 RelocationEntry Entry = Relocs[i];
415 Relocs.clear();
RuntimeDyldImpl.h 190 /// \brief Resolves relocations from Relocs list with address from Value.
191 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 90 std::vector<ELFRelocationEntry> &Relocs);
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 392 std::vector<std::pair<uint64_t, SymbolRef> > Relocs;
404 Relocs.push_back(std::make_pair(RelocOffset, RelocSym));
406 array_pod_sort(Relocs.begin(), Relocs.end());
600 for (unsigned j = 0; j != Relocs.size(); ++j)
601 if (Relocs[j].first >= SectAddress + Inst.Address &&
602 Relocs[j].first < SectAddress + Inst.Address + Inst.Size) {
605 Relocs[j].second.getAddress(Addr);
606 Relocs[j].second.getName(SymName);

Completed in 102 milliseconds