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

  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 1 //===- Relocation.cpp -----------------------------------------------------===//
9 #include <mcld/Fragment/Relocation.h>
25 // Relocation Factory Methods
27 /// Initialize - set up the relocation factory
28 void Relocation::SetUp(const LinkerConfig& pConfig)
33 /// Clear - Clean up the relocation factory
34 void Relocation::Clear()
39 /// Create - produce an empty relocation entry
40 Relocation* Relocation::Create(
    [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/Fragment/
Relocation.h 1 //===- Relocation.h ----------------------------------------------------===//
27 class Relocation : public llvm::ilist_node<Relocation>
30 friend class GCFactoryListTraits<Relocation>;
31 friend class Chunk<Relocation, MCLD_RELOCATIONS_PER_INPUT>;
41 Relocation();
43 Relocation(Type pType,
48 ~Relocation();
51 /// Initialize - set up the relocation factory
54 /// Clear - Clean up the relocation factor
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
LDFileFormat.h 34 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 49 milliseconds