HomeSort by relevance Sort by last modified time
    Searched defs:Relocation (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/mclinker/lib/LD/
Relocation.cpp 1 //===- Relocation.cpp -----------------------------------------------------===//
11 #include <mcld/LD/Relocation.h>
17 Relocation::Relocation(Relocation::Type pType,
19 Relocation::Address pAddend,
20 Relocation::DWord pTargetData)
31 Relocation::~Relocation()
35 Relocation::Address Relocation::place(const Layout& pLayout) cons
    [all...]
  /external/llvm/bindings/python/llvm/tests/
test_object.py 3 from ..object import Relocation
61 for relocation in section.get_relocations():
62 assert isinstance(relocation, Relocation)
63 assert isinstance(relocation.address, long)
64 assert isinstance(relocation.offset, long)
65 assert isinstance(relocation.type_number, long)
66 assert isinstance(relocation.type_name, str)
67 assert isinstance(relocation.value_string, str)
  /frameworks/compile/mclinker/include/mcld/LD/
Relocation.h 1 //===- Relocation.h ----------------------------------------------------===//
27 class Relocation : public llvm::MCFragment
37 Relocation(Type pType,
43 ~Relocation();
45 /// type - relocation type
90 // Relocation is a kind of MCFragment with type of FT_Reloc
93 static bool classof(const Relocation *) { return true; }
96 /// m_Type - the type of the relocation entries
102 /// m_pSymInfo - resolved symbol info of relocation target symbol
LDFileFormat.h 35 Relocation,
  /external/llvm/bindings/python/llvm/
object.py 19 Section, Symbol, and Relocation, respectively.
40 To aid working around this limitation, each Section, Symbol, and Relocation
92 "Relocation",
235 This is a generator for llvm.object.Relocation instances.
249 last = Relocation(relocations)
359 class Relocation(LLVMObject):
360 """Represents a relocation definition."""
362 """Create a new relocation instance.
367 a Relocation instance.
377 """The address of this relocation, in long bytes.""
    [all...]

Completed in 456 milliseconds