HomeSort by: relevance | last modified time | path
    Searched defs:Rel (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
WasmDump.cpp 34 const wasm::WasmRelocation &Rel = Obj->getWasmRelocation(RelRef);
41 Fmt << Rel.Index;
49 Fmt << (Rel.Addend < 0 ? "" : "+") << Rel.Addend;
ELFDump.cpp 60 DataRefImpl Rel = RelRef.getRawDataRefImpl();
61 auto SecOrErr = EF.getSection(Rel.d.a);
74 const typename ELFT::Rela *ERela = Obj->getRela(Rel);
78 const typename ELFT::Rel *ERel = Obj->getRel(Rel);
131 const RelocationRef &Rel,
134 return getRelocationValueString(ELF32LE, Rel, Result);
136 return getRelocationValueString(ELF64LE, Rel, Result);
138 return getRelocationValueString(ELF32BE, Rel, Result);
140 return getRelocationValueString(ELF64BE, Rel, Result)
    [all...]
MachODump.cpp 432 DataRefImpl Rel = RelRef.getRawDataRefImpl();
433 MachO::any_relocation_info RE = Obj->getRelocation(Rel);
457 DataRefImpl RelNext = Rel;
506 DataRefImpl RelNext = Rel;
528 DataRefImpl RelNext = Rel;
568 DataRefImpl RelNext = Rel;
817 const DataRefImpl Rel = Reloc->getRawDataRefImpl();
818 const MachO::any_relocation_info RE = O->getRelocation(Rel);
1451 DataRefImpl Rel;
1454 Rel = Reloc.getRawDataRefImpl()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
ELF.cpp 298 std::vector<typename ELFT::Rel>
330 Elf_Rel Rel;
331 Rel.r_info = 0;
332 Rel.setType(getRelativeRelocationType(), false);
350 Rel.r_offset = Entry;
351 Relocs.push_back(Rel);
362 Rel.r_offset = Offset;
363 Relocs.push_back(Rel);
WasmObjectFile.cpp 1695 void WasmObjectFile::moveRelocationNext(DataRefImpl &Rel) const { Rel.d.b++; }
1698 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref);
1699 return Rel.Offset;
1703 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref);
1704 if (Rel.Type == wasm::R_WASM_TYPE_INDEX_LEB)
1708 Sym.d.b = Rel.Index;
1713 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref);
1714 return Rel.Type;
1719 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
coff2yaml.cpp 198 COFFYAML::Relocation Rel;
209 Rel.SymbolName = *SymbolNameOrErr;
211 Rel.SymbolTableIndex = reloc->SymbolTableIndex;
212 Rel.VirtualAddress = reloc->VirtualAddress;
213 Rel.Type = reloc->Type;
214 Relocations.push_back(Rel);
macho2yaml.cpp 96 const object::DataRefImpl Rel = Reloc.getRawDataRefImpl();
97 const MachO::any_relocation_info RE = Obj.getRelocation(Rel);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RDFGraph.cpp 1049 NodeList Rel = getRelatedRefs(IA, DA);
1050 NodeAddr<DefNode*> PDA = Rel.front();
1064 for (NodeAddr<NodeBase*> T : Rel)
1095 NodeList Rel = getRelatedRefs(IA, DA);
1096 NodeAddr<DefNode*> PDA = Rel.front();
1118 for (NodeAddr<NodeBase*> T : Rel)

Completed in 39 milliseconds