Home
last modified time | relevance | path

Searched refs:GOT (Results 1 – 18 of 18) sorted by relevance

/frameworks/compile/mclinker/lib/Target/X86/
DX86GOT.h22 class X86_32GOTEntry : public GOT::Entry<4> {
25 : GOT::Entry<4>(pContent, pParent) {} in X86_32GOTEntry()
32 class X86_32GOT : public GOT {
44 class X86_64GOTEntry : public GOT::Entry<8> {
47 : GOT::Entry<8>(pContent, pParent) {} in X86_64GOTEntry()
54 class X86_64GOT : public GOT {
DX86GOT.cpp21 X86_32GOT::X86_32GOT(LDSection& pSection) : GOT(pSection) { in X86_32GOT()
34 X86_64GOT::X86_64GOT(LDSection& pSection) : GOT(pSection) { in X86_64GOT()
/frameworks/compile/mclinker/lib/Target/
DGOT.cpp24 GOT::GOT(LDSection& pSection) : m_Section(pSection) { in GOT() function in mcld::GOT
28 GOT::~GOT() { in ~GOT()
31 void GOT::finalizeSectionSize() { in finalizeSectionSize()
DPLT.cpp15 class GOT;
DAndroid.bp13 "GOT.cpp",
/frameworks/compile/mclinker/include/mcld/Target/
DGOT.h18 class GOT; variable
25 class GOT {
27 explicit GOT(LDSection& pSection);
56 virtual ~GOT();
/frameworks/compile/mclinker/include/mcld/LD/
DDiagGOTPLT.inc7 "fial to allocate memory for GOT",
8 "fial to allocate memory for GOT")
15 "The number of reserved entries for GOT is inconsist",
16 "The number of reserved entries for GOT is inconsist")
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonGOT.h22 class HexagonGOTEntry : public GOT::Entry<4> {
25 : GOT::Entry<4>(pContent, pParent) {} in HexagonGOTEntry()
32 class HexagonGOT : public GOT {
DHexagonGOT.cpp21 HexagonGOT::HexagonGOT(LDSection& pSection) : GOT(pSection) { in HexagonGOT()
DHexagonRelocator.cpp847 Relocator::Address GOT = pParent.getTarget().getGOTSymbolAddr(); in relocGOT() local
848 int32_t result = (int32_t)(GOT_S - GOT); in relocGOT()
887 result_u = GOT_S - GOT; in relocGOT()
916 Relocator::Address GOT = pParent.getTarget().getGOTSymbolAddr(); in relocGOTREL() local
922 uint32_t result = (uint32_t)(S + A - GOT); in relocGOTREL()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMGOT.h24 class ARMGOTEntry : public GOT::Entry<4> {
27 : GOT::Entry<4>(pContent, pParent) {} in ARMGOTEntry()
47 class ARMGOT : public GOT {
DARMGOT.cpp26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL) { in ARMGOT()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64GOT.h26 class AArch64GOTEntry : public GOT::Entry<8> {
29 : GOT::Entry<8>(pContent, pParent) {} in AArch64GOTEntry()
54 class AArch64GOT : public GOT {
DAArch64GOT.cpp26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL) { in AArch64GOT()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsGOTPLT.cpp14 typedef mcld::GOT::Entry<4> GOTPLTEntry;
24 MipsGOTPLT::MipsGOTPLT(LDSection& pSection) : GOT(pSection) { in MipsGOTPLT()
DMipsGOT.h33 class MipsGOT : public GOT {
226 typedef GOT::Entry<4> Mips32GOTEntry;
244 typedef GOT::Entry<8> Mips64GOTEntry;
DMipsGOTPLT.h23 class MipsGOTPLT : public GOT {
DMipsGOT.cpp94 : GOT(pSection), in MipsGOT()