Searched defs:GOT_ORG (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/Target/X86/
H A DX86RelocationFactory.cpp342 // R_386_GOTOFF: S + A - GOT_ORG
348 X86RelocationFactory::Address GOT_ORG = helper_GOT_ORG(pParent); local
351 pReloc.target() = S + A - GOT_ORG;
355 // R_386_GOTPC: GOT_ORG + A - P
361 X86RelocationFactory::Address GOT_ORG = helper_GOT_ORG(pParent); local
363 pReloc.target() = GOT_ORG + A - pReloc.place(pParent.getLayout());
367 // R_386_GOT32: GOT(S) + A - GOT_ORG
378 X86RelocationFactory::Address GOT_ORG = helper_GOT_ORG(pParent); local
380 pReloc.target() = GOT_S + A - GOT_ORG;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocationFactory.cpp465 // R_ARM_GOTOFF32: ((S + A) | T) - GOT_ORG
472 ARMRelocationFactory::Address GOT_ORG = helper_GOT_ORG(pParent); local
475 pReloc.target() = ((S + A) | T) - GOT_ORG;
479 // R_ARM_GOT_BREL: GOT(S) + A - GOT_ORG
490 ARMRelocationFactory::Address GOT_ORG = helper_GOT_ORG(pParent); local
492 pReloc.target() = GOT_S + A - GOT_ORG;

Completed in 48 milliseconds