HomeSort by relevance Sort by last modified time
    Searched defs:Relocation (Results 1 - 8 of 8) 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 ----------------------------------------------------===//
24 class Relocation : public llvm::ilist_node<Relocation>
27 friend class GCFactoryListTraits<Relocation>;
28 friend class Chunk<Relocation, MCLD_RELOCATIONS_PER_INPUT>;
38 Relocation();
40 Relocation(Type pType,
45 ~Relocation();
48 /// Initialize - set up the relocation factory
51 /// Clear - Clean up the relocation factor
    [all...]
  /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
95 "Relocation",
243 This is a generator for llvm.object.Relocation instances.
257 last = Relocation(relocations)
358 class Relocation(LLVMObject):
359 """Represents a relocation definition."""
361 """Create a new relocation instance.
366 a Relocation instance.
376 """The address of this relocation, in long bytes.""
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 43 struct Relocation {
53 std::vector<Relocation> Relocations;
83 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Relocation)
144 struct MappingTraits<COFFYAML::Relocation> {
145 static void mapping(IO &IO, COFFYAML::Relocation &Rel);
ELFYAML.h 74 enum class SectionKind { RawContent, Relocation };
93 struct Relocation {
101 std::vector<Relocation> Relocations;
102 RelocationSection() : Section(SectionKind::Relocation) {}
104 return S->Kind == SectionKind::Relocation;
122 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::Relocation)
197 template <> struct MappingTraits<ELFYAML::Relocation> {
198 static void mapping(IO &IO, ELFYAML::Relocation &Rel);
  /frameworks/compile/mclinker/include/mcld/LD/
LDFileFormat.h 32 Relocation,
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-model-3.2.1.jar 

Completed in 89 milliseconds