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

  /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
object.py 18 Section, Symbol, and Relocation, respectively.
39 To aid working around this limitation, each Section, Symbol, and Relocation
94 "Relocation",
242 This is a generator for llvm.object.Relocation instances.
256 last = Relocation(relocations)
357 class Relocation(LLVMObject):
358 """Represents a relocation definition."""
360 """Create a new relocation instance.
365 a Relocation instance.
375 """The offset of this relocation, in long bytes.""
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
COFFYAML.h 57 struct Relocation {
61 // Normally a Relocation can refer to the symbol via its name.
77 std::vector<Relocation> Relocations;
118 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Relocation)
199 struct MappingTraits<COFFYAML::Relocation> {
200 static void mapping(IO &IO, COFFYAML::Relocation &Rel);
MachOYAML.h 30 struct Relocation {
58 std::vector<Relocation> relocations;
161 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::Relocation)
217 template <> struct MappingTraits<MachOYAML::Relocation> {
218 static void mapping(IO &IO, MachOYAML::Relocation &R);
WasmYAML.h 110 struct Relocation {
187 std::vector<Relocation> Relocations;
419 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Relocation)
493 template <> struct MappingTraits<WasmYAML::Relocation> {
494 static void mapping(IO &IO, WasmYAML::Relocation &Relocation);
ELFYAML.h 184 Relocation,
589 struct Relocation {
597 Optional<std::vector<Relocation>> Relocations;
600 RelocationSection() : Section(ChunkKind::Relocation) {}
607 return S->Kind == ChunkKind::Relocation;
749 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::Relocation)
938 template <> struct MappingTraits<ELFYAML::Relocation> {
939 static void mapping(IO &IO, ELFYAML::Relocation &Rel);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.h 27 struct Relocation {
28 Relocation() = default;
29 Relocation(const object::coff_relocation &R) : Reloc(R) {}
38 std::vector<Relocation> Relocs;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 909 // Record for later use how each relocation was lowered. This is needed to
1025 // each relocation on normal and exceptional path for an invoke. We only
1199 // If relocation was done via virtual register..
1209 SDValue Relocation = RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
1211 setValue(&Relocate, Relocation);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.h 724 struct Relocation {
731 // All relocation sections denote relocations to apply to another section.
732 // However, some relocation sections use a dynamic symbol table and others use
737 // different classes, one which handles the section the relocation is applied to
773 std::vector<Relocation> Relocations;
776 void addRelocation(Relocation Rel) { Relocations.push_back(Rel); }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 184 template <class ELFT> class Relocation {
186 Relocation(const typename ELFT::Rel &R, bool IsMips64EL)
190 Relocation(const typename ELFT::Rela &R, bool IsMips64EL)
191 : Relocation((const typename ELFT::Rel &)R, IsMips64EL) {
266 virtual void printRelRelaReloc(const Relocation<ELFT> &R,
271 void printReloc(const Relocation<ELFT> &R, unsigned RelIndex,
273 void printDynamicReloc(const Relocation<ELFT> &R);
278 llvm::function_ref<void(const Relocation<ELFT> &, unsigned,
305 void printStackSize(const Relocation<ELFT> &R, const Elf_Shdr &RelocSec,
376 Expected<RelSymbol<ELFT>> getRelocationTarget(const Relocation<ELFT> &R
    [all...]

Completed in 50 milliseconds