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 910 // R_386_GOTOFF: S + A - GOT_ORG
914 X86Relocator::Address GOT_ORG = helper_GOT_ORG(pParent);
917 pReloc.target() = S + A - GOT_ORG;
921 // R_386_GOTPC: GOT_ORG + A - P
925 X86Relocator::Address GOT_ORG = helper_GOT_ORG(pParent);
927 pReloc.target() = GOT_ORG + A - pReloc.place();
931 // R_386_GOT32: GOT(S) + A - GOT_ORG
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 899 // R_ARM_GOTOFF32: ((S + A) | T) - GOT_ORG
904 ARMRelocator::Address GOT_ORG = helper_GOT_ORG(pParent);
909 pReloc.target() = ((S + A) | T) - GOT_ORG;
913 // R_ARM_GOT_BREL: GOT(S) + A - GOT_ORG
922 ARMRelocator::Address GOT_ORG = helper_GOT_ORG(pParent);
924 pReloc.target() = GOT_S + A - GOT_ORG;
    [all...]

Completed in 81 milliseconds