Searched refs:Relocs (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.2-release/contrib/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.cpp812 std::vector<MachO::any_relocation_info> &Relocs = Relocations[it]; local
813 unsigned NumRelocs = Relocs.size();
886 std::vector<MachO::any_relocation_info> &Relocs = Relocations[it]; local
887 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
888 Write32(Relocs[e - i - 1].r_word0);
889 Write32(Relocs[e - i - 1].r_word1);
H A DELFObjectWriter.cpp1080 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD]; local
1084 TargetObjectWriter->sortRelocs(Asm, Relocs);
1086 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1087 ELFRelocationEntry entry = Relocs[e - i - 1];
/freebsd-10.2-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp51 std::vector<ELFRelocationEntry> &Relocs);
259 std::vector<ELFRelocationEntry> &Relocs) {
262 MCELFObjectTargetWriter::sortRelocs(Asm, Relocs);
267 // Fill RelocLs. Traverse Relocs backwards so that relocations in RelocLs
269 for (std::vector<ELFRelocationEntry>::reverse_iterator R = Relocs.rbegin();
270 R != Relocs.rend(); ++R) {
309 assert(Relocs.size() == RelocLs.size());
313 Relocs[--I] = R->Reloc;
258 sortRelocs(const MCAssembler &Asm, std::vector<ELFRelocationEntry> &Relocs) argument
/freebsd-10.2-release/contrib/llvm/lib/DebugInfo/
H A DDWARFContext.cpp111 DWARFDebugLine::parseStatementTable(lineData, &getLineSection().Relocs, &stmtOffset, state);
223 Loc.reset(new DWARFDebugLoc(getLocSection().Relocs));
262 Line.reset(new DWARFDebugLine(&getLineSection().Relocs));
288 &getInfoSection().Relocs, isLittleEndian()));
310 &I->second.Relocs, isLittleEndian()));
328 &getInfoDWOSection().Relocs, isLittleEndian()));
650 .Case("debug_info", &InfoSection.Relocs)
651 .Case("debug_loc", &LocSection.Relocs)
652 .Case("debug_info.dwo", &InfoDWOSection.Relocs)
653 .Case("debug_line", &LineSection.Relocs)
[all...]
H A DDWARFContext.h58 RelocAddrMap Relocs; member in struct:llvm::DWARFContext::Section
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp487 void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs, argument
489 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
490 const RelocationEntry &RE = Relocs[i];
506 RelocationList &Relocs = i->second; local
507 resolveRelocationList(Relocs, 0);
540 RelocationList &Relocs = i->second; local
541 resolveRelocationList(Relocs, Addr);
H A DRuntimeDyldImpl.h289 /// \brief Resolves relocations from Relocs list with address from Value.
290 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
/freebsd-10.2-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp331 std::vector<std::pair<uint64_t, SymbolRef> > Relocs; local
342 Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
344 array_pod_sort(Relocs.begin(), Relocs.end());
/freebsd-10.2-release/contrib/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h87 std::vector<ELFRelocationEntry> &Relocs);

Completed in 189 milliseconds