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

1 2 3

  /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
rdfseg.asm 4 ;; [2] should produce standard relocation
  /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/MC/MachO/ARM/
bad-darwin-ARM-reloc.s 9 @ CHECK-ERROR: unsupported relocation on symbol
long-call-branch-island-relocation.s 21 @ Make the _foo symbol sufficiently far away to force the 'bl' relocation
23 @ generating an external relocation so the linker can create a branch
40 @ CHECK: # Relocation 0
  /external/chromium_org/tools/relocation_packer/src/
packer_unittest.cc 14 Elf32_Rel relocation = {addr, R_ARM_RELATIVE}; local
15 relocations->push_back(relocation);
18 bool CheckRelocation(Elf32_Addr addr, const Elf32_Rel& relocation) {
19 return relocation.r_offset == addr && relocation.r_info == R_ARM_RELATIVE;
32 // Initial relocation.
103 // Initial relocation.
run_length_encoder_unittest.cc 14 Elf32_Rel relocation = {addr, R_ARM_RELATIVE}; local
15 relocations->push_back(relocation);
18 bool CheckRelocation(Elf32_Addr addr, const Elf32_Rel& relocation) {
19 return relocation.r_offset == addr && relocation.r_info == R_ARM_RELATIVE;
37 // Add one relocation (insufficient data to encode).
45 // Add a second relocation, 4 byte delta (minimum data to encode).
54 // Initial relocation.
56 // Run of a single relocation, 4 byte delta.
60 // Add a third relocation, 4 byte delta
    [all...]
run_length_encoder.cc 71 // The first relocation is just one created from the initial address.
85 const Elf32_Rel relocation = {addr, R_ARM_RELATIVE}; local
86 relocations->push_back(relocation);
98 // If we have zero or one relocation only then there is no packing
elf_file.cc 413 // We need to adjust the offset of every relocation inside it that falls
656 const Elf32_Rel* relocation = &relocations[i]; local
657 CHECK(ELF32_R_TYPE(relocation->r_info) == R_ARM_RELATIVE);
659 // See if this relocation points into the current section.
660 if (relocation->r_offset >= section_start &&
661 relocation->r_offset < section_end) {
662 Elf32_Addr byte_offset = relocation->r_offset - section_start;
665 // Is the relocation's target after the hole's start?
676 VLOG("relocation[%lu] target adjusted to %u\n", i, *target);
681 // If we applied any relocation to this section, write it back
704 Elf32_Rel* relocation = &relocations->at(i); local
737 const Elf32_Rel& relocation = relocations[i]; local
918 const Elf32_Rel& relocation = relocations[i]; local
    [all...]
  /external/llvm/test/MC/ARM/
elf-thumbfunc-reloc.s 23 @@ make sure an R_ARM_THM_CALL relocation is generated for the call to g
30 @@ make sure the relocation is with f. That is one way to make sure it includes
eh-compact-pr0.s 63 @ another relocation entry for __aeabi_unwind_cpp_pr0, so that the linker
98 @ another relocation entry for __aeabi_unwind_cpp_pr0, so that the linker
eh-directive-handlerdata.s 43 @ We should see a relocation entry to __aeabi_unwind_cpp_pr0, so that the
100 @ We should see a relocation entry to __aeabi_unwind_cpp_pr0, so that the
eh-compact-pr1.s 67 @ another relocation entry for __aeabi_unwind_cpp_pr1, so that the linker
  /external/chromium_org/base/third_party/symbolize/
symbolize.h 120 uint64 relocation);
  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
MachO_x86-64_PIC_relocations.s 1 # RUN: llvm-mc -triple=x86_64-apple-macosx10.9 -relocation-model=pic -filetype=obj -o %t.o %s
  /external/llvm/test/MC/PowerPC/
ppc64-initial-cfa.s 1 # RUN: llvm-mc -triple=powerpc64-unknown-linux-gnu -filetype=obj -relocation-model=static %s | \
3 # RUN: llvm-mc -triple=powerpc64-unknown-linux-gnu -filetype=obj -relocation-model=pic %s | \
5 # RUN: llvm-mc -triple=powerpc64le-unknown-linux-gnu -filetype=obj -relocation-model=static %s | \
7 # RUN: llvm-mc -triple=powerpc64le-unknown-linux-gnu -filetype=obj -relocation-model=pic %s | \
  /frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp 66 case LDFileFormat::Relocation:
107 case LDFileFormat::Relocation:
108 // sort relocation for the benefit of the dynamic linker.
396 case LDFileFormat::Relocation:
482 llvm::report_fatal_error("unsupported relocation section type!");
498 const Relocation* relocation = 0; local
506 relocation = &(llvm::cast<Relocation>(*it));
507 frag_ref = &(relocation->targetRef())
541 const Relocation* relocation = 0; local
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
hello-reloc.s 2 ; which is responsible for writing mach-o relocation entries for (PIC)
5 ; RUN: llvm-mc -filetype=obj -relocation-model=pic -mcpu=g4 -triple=powerpc-apple-darwin8 %s -o - | llvm-readobj -relocations | FileCheck -check-prefix=DARWIN-G4-DUMP %s
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
elf_mem_image.cc 252 ptrdiff_t relocation = local
256 relocation);
267 value += relocation;
271 value += relocation;
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
elf_mem_image.cc 252 ptrdiff_t relocation = local
256 relocation);
267 value += relocation;
271 value += relocation;
  /external/llvm/test/MC/Mips/
hilo-addressing.s 39 # Check that relocation isn't emitted for %hi(label1 - label2) and
  /external/llvm/test/MC/Sparc/
sparc-pic.s 1 ! RUN: llvm-mc %s -arch=sparcv9 --relocation-model=pic -filetype=obj | llvm-readobj -r | FileCheck %s
  /frameworks/compile/mclinker/include/mcld/Object/
ObjectLinker.h 30 class Relocation;
60 /// readRelocations - read all relocation entries
93 /// scanRelocations - scan all relocation entries by output symbols.
112 /// relocate - applying relocation entries and create relocation
114 /// Create relocation section, asking TargetLDBackend to
115 /// read the relocation information into RelocationEntry
116 /// and push_back into the relocation section
117 bool relocation();
151 /// normalSyncRelocationResult - sync relocation result when producing share
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 41 #include <mcld/Fragment/Relocation.h>
284 /// readRelocations - read all relocation entries
289 // Bitcode is read by the other path. This function reads relocation sections
320 case LDFileFormat::Relocation: {
561 Relocation* relocation = llvm::cast<Relocation>(reloc); local
564 ResolveInfo* info = relocation->symInfo();
570 // scan relocation
573 *relocation, *m_pBuilder, *m_pModule, **rs, **input)
737 bool ObjectLinker::relocation() function in class:ObjectLinker
758 Relocation* relocation = llvm::cast<Relocation>(reloc); local
825 Relocation* relocation = llvm::cast<Relocation>(reloc); local
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 532 HANDLE_OPERAND(relocation);
535 HANDLE_OPERAND(relocation);
538 HANDLE_OPERAND(relocation);
539 HANDLE_OPERAND(relocation);
546 HANDLE_OPTIONAL(relocation)
551 HANDLE_OPERAND(relocation);
559 HANDLE_OPTIONAL(relocation)
690 // Operand 2 (optional) is an immediate or relocation.
703 HANDLE_OPTIONAL(relocation)
717 // Operand 2 (optional) is an immediate or relocation
    [all...]

Completed in 642 milliseconds

1 2 3