HomeSort by relevance Sort by last modified time
    Searched full:relocation (Results 1 - 25 of 1700) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/e_brel_bma/
name 1 block relocation table using the memory array implementation
  /external/e2fsprogs/tests/e_irel_ima/
name 1 inode relocation table using the memory array implementation
  /external/e2fsprogs/tests/progs/
test_rel_cmds.ct 8 # Block relocation table commands
11 request do_brel_ma_create, "Open a memory array block relocation table",
14 request do_brel_free, "Free a block relocation table",
17 request do_brel_put, "Add or modify a block relocation entry",
20 request do_brel_get, "Get a block relocation entry",
26 request do_brel_next, "Get the next block relocation entry",
29 request do_brel_dump, "Dump the block relocation table",
32 request do_brel_move, "Move an entry in the block relocation table",
35 request do_brel_delete, "Delete an entry in the block relocation table",
39 # Inode relocation table command
    [all...]
  /prebuilts/tools/common/m2/repository/kxml2/kxml2/2.3.0/
kxml2-2.3.0.pom 8 <relocation>
10 </relocation>
  /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...]
  /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/test/MC/MachO/
reloc-diff.s 3 // CHECK: # Relocation 0
6 // CHECK: # Relocation 1
9 // CHECK: # Relocation 2
12 // CHECK: # Relocation 3
15 // CHECK: # Relocation 4
18 // CHECK: # Relocation 5
21 // CHECK: # Relocation 6
24 // CHECK: # Relocation 7
27 // CHECK: # Relocation 8
30 // CHECK: # Relocation
    [all...]
reloc-pcrel.s 3 // CHECK: # Relocation 0
6 // CHECK: # Relocation 1
9 // CHECK: # Relocation 2
12 // CHECK: # Relocation 3
15 // CHECK: # Relocation 4
18 // CHECK: # Relocation 5
21 // CHECK: # Relocation 6
24 // CHECK: # Relocation 7
27 // CHECK: # Relocation 8
30 // CHECK: # Relocation
    [all...]
darwin-x86_64-diff-reloc-assign.s 6 // relocation entries:
7 // Relocation information (__TEXT,__text) 2 entries
21 // CHECK: # Relocation 0
24 // CHECK: # Relocation 1
darwin-x86_64-diff-reloc-assign-2.s 6 // four relocation entries:
7 // Relocation information (__DATA,__data) 4 entries
26 // CHECK: # Relocation 0
29 // CHECK: # Relocation 1
32 // CHECK: # Relocation 2
35 // CHECK: # Relocation 3
  /frameworks/compile/mclinker/include/mcld/LD/
RelocationFactory.h 1 //===- Relocation.h -------------------------------------------------------===//
13 #include <mcld/Fragment/Relocation.h>
22 * relocation
25 class RelocationFactory : public GCFactory<Relocation, MCLD_RELOCATIONS_PER_INPUT>
28 typedef Relocation::Type Type;
29 typedef Relocation::Address Address;
30 typedef Relocation::DWord DWord;
31 typedef Relocation::SWord SWord;
39 /// produce - produce a relocation entry
40 /// @param pType - the type of the relocation entr
    [all...]
DiagRelocations.inc 5 DIAG(non_pic_relocation, DiagnosticEngine::Error, "attempt to generate unsupported relocation type `%0' for symbol `%1', recompile with -fPIC", "attempt to generate unsupported relocation type `%0' for symbol `%1, recompile with -fPIC")
6 DIAG(base_relocation, DiagnosticEngine::Fatal, "relocation type `%0' is not supported for symbol `%1'\nPlease report to %2", "relocation type `%0' is not supported for symbol `%1'\nPlease report to %2")
7 DIAG(dynamic_relocation, DiagnosticEngine::Fatal, "unexpected relocation type `%0' in object file", "unexpected relocation type `%0' in object file")
8 DIAG(unsupported_relocation, DiagnosticEngine::Unreachable, "encounter unsupported relocation type `%0'\nPlease report to %1", "encounter unsupported relocation type `%0'\nPlease report to %1")
9 DIAG(unknown_relocation, DiagnosticEngine::Fatal, "encounter unknown relocation type `%0' for symbol `%1'", "encounter unknown relocation type `%0' for symbol `%1'"
    [all...]
Relocator.h 12 #include <mcld/Fragment/Relocation.h>
29 typedef Relocation::Type Type;
30 typedef Relocation::Address Address;
31 typedef Relocation::DWord DWord;
32 typedef Relocation::SWord SWord;
33 typedef Relocation::Size Size;
52 virtual Result applyRelocation(Relocation& pRelocation) = 0;
55 /// to relocation and generate empty entries, such as GOT, dynamic relocation
58 /// @param pReloc - a read in relocation entr
    [all...]
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/2.0.2/
xml-apis-2.0.2.pom 7 <relocation>
11 </relocation>
  /external/chromium_org/tools/relocation_packer/src/
delta_encoder.cc 19 // One relocation is sufficient for delta encoding.
30 const ELF::Rela* relocation = &relocations[i]; local
31 CHECK(ELF_R_TYPE(relocation->r_info) == ELF::kRelativeRelocationCode);
33 packed->push_back(relocation->r_offset - offset);
34 offset = relocation->r_offset;
35 packed->push_back(relocation->r_addend - addend);
36 addend = relocation->r_addend;
63 // Generate a relocation for this offset and addend pair.
64 ELF::Rela relocation; local
65 relocation.r_offset = offset
    [all...]
run_length_encoder_unittest.cc 15 ELF::Rel relocation; local
16 relocation.r_offset = addr;
17 relocation.r_info = ELF_R_INFO(0, ELF::kRelativeRelocationCode);
18 relocations->push_back(relocation);
21 bool CheckRelocation(ELF::Addr addr, const ELF::Rel& relocation) {
22 return relocation.r_offset == addr &&
23 ELF_R_SYM(relocation.r_info) == 0 &&
24 ELF_R_TYPE(relocation.r_info) == ELF::kRelativeRelocationCode;
42 // Add one relocation (insufficient data to encode).
50 // Add a second relocation, 4 byte delta (minimum data to encode)
    [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)
  /external/llvm/test/CodeGen/ARM/
pic.ll 1 ; Check the function call in PIC relocation model.
3 ; If the relocation model is PIC, then the "bl" instruction for the function
7 ; RUN: -relocation-model=pic -fast-isel -verify-machineinstrs \
  /external/llvm/test/MC/AArch64/
arm64-small-data-fixups.s 12 ; CHECK: # Relocation 0
15 ; CHECK: # Relocation 1
18 ; CHECK: # Relocation 2
21 ; CHECK: # Relocation 3
  /external/llvm/test/MC/MachO/ARM/
static-movt-relocs.s 11 @ CHECK: # Relocation 0
14 @ CHECK: # Relocation 1
17 @ CHECK: # Relocation 2
20 @ CHECK: # Relocation 3
thumb2-movw-fixup.s 21 @ CHECK: # Relocation 0
24 @ CHECK: # Relocation 1
27 @ CHECK: # Relocation 2
30 @ CHECK: # Relocation 3
33 @ CHECK: # Relocation 4
36 @ CHECK: # Relocation 5
39 @ CHECK: # Relocation 6
42 @ CHECK: # Relocation 7
  /external/llvm/test/CodeGen/X86/
x86-store-gv-addr.ll 1 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -relocation-model=static | not grep lea
2 ; RUN: llc < %s -mtriple=x86_64-pc-linux-gnu -relocation-model=static | not grep lea
  /external/llvm/test/MC/ARM/
cxx-global-constructor.ll 1 ; RUN: llc %s -mtriple=armv7-linux-gnueabi -relocation-model=pic \
11 ; Check for a relocation of type R_ARM_TARGET1.
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdftest1.asm 4 ;; [1] relocation within the same segment in each module
5 ;; [2] relocation to different segments in same module
6 ;; [3] relocation to same segment in different module
7 ;; [4] relocation to different segment in different module
8 ;; [5] relative relocation to same module
9 ;; [6] relative relocation to different module
  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.h 45 * 0001 ReserveRel - reserve an dynamic relocation entry
71 virtual Result applyRelocation(Relocation& pRelocation) = 0;
73 virtual const char* getName(Relocation::Type pType) const = 0;
83 /// - dynamin relocation entries (for .rel.plt and .rel.dyn sections)
84 void scanRelocation(Relocation& pReloc,
91 /// addCopyReloc - add a copy relocation into .rel.dyn for pSym
103 virtual void scanLocalReloc(Relocation& pReloc,
108 virtual void scanGlobalReloc(Relocation& pReloc,
128 R_386_TLS_OPT = 44 // mcld internal relocation type
134 Result applyRelocation(Relocation& pRelocation)
    [all...]

Completed in 748 milliseconds

1 2 3 4 5 6 7 8 91011>>