HomeSort by relevance Sort by last modified time
    Searched refs:GOT_ORG (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.cpp 349 // R_386_GOTOFF: S + A - GOT_ORG
353 X86Relocator::Address GOT_ORG = helper_GOT_ORG(pParent);
356 pReloc.target() = S + A - GOT_ORG;
360 // R_386_GOTPC: GOT_ORG + A - P
364 X86Relocator::Address GOT_ORG = helper_GOT_ORG(pParent);
366 pReloc.target() = GOT_ORG + A - pReloc.place();
370 // R_386_GOT32: GOT(S) + A - GOT_ORG
379 X86Relocator::Address GOT_ORG = helper_GOT_ORG(pParent);
381 pReloc.target() = GOT_S + A - GOT_ORG;
884 // R_X86_64_GOTPCREL: GOT(S) + GOT_ORG + A -
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 443 // R_ARM_GOTOFF32: ((S + A) | T) - GOT_ORG
448 ARMRelocator::Address GOT_ORG = helper_GOT_ORG(pParent);
451 pReloc.target() = ((S + A) | T) - GOT_ORG;
455 // R_ARM_GOT_BREL: GOT(S) + A - GOT_ORG
464 ARMRelocator::Address GOT_ORG = helper_GOT_ORG(pParent);
466 pReloc.target() = GOT_S + A - GOT_ORG;

Completed in 65 milliseconds