Home
last modified time | relevance | path

Searched refs:AArch64GOT (Results 1 – 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64GOT.cpp25 AArch64GOT::AArch64GOT(LDSection& pSection) in AArch64GOT() function in AArch64GOT
30 AArch64GOT::~AArch64GOT() in ~AArch64GOT()
34 void AArch64GOT::createGOT0() in createGOT0()
41 bool AArch64GOT::hasGOT1() const in hasGOT1()
46 AArch64GOTEntry* AArch64GOT::createGOT() in createGOT()
53 AArch64GOTEntry* AArch64GOT::createGOTPLT() in createGOTPLT()
60 void AArch64GOT::finalizeSectionSize() in finalizeSectionSize()
104 void AArch64GOT::applyGOT0(uint64_t pAddress) in applyGOT0()
110 void AArch64GOT::applyGOTPLT(uint64_t pPLTBase) in applyGOTPLT()
128 uint64_t AArch64GOT::emit(MemoryRegion& pRegion) in emit()
DAArch64LDBackend.h84 AArch64GOT& getGOT();
85 const AArch64GOT& getGOT() const;
87 AArch64GOT& getGOTPLT();
88 const AArch64GOT& getGOTPLT() const;
147 AArch64GOT* m_pGOT;
148 AArch64GOT* m_pGOTPLT;
DAArch64PLT.h40 class AArch64GOT; variable
60 AArch64PLT(LDSection& pSection, AArch64GOT& pGOTPLT);
80 AArch64GOT& m_GOT;
DAArch64GOT.h56 class AArch64GOT : public GOT
59 AArch64GOT(LDSection &pSection);
61 ~AArch64GOT();
DAArch64LDBackend.cpp97 m_pGOT = new AArch64GOT(got); in initTargetSections()
109 m_pGOTPLT = new AArch64GOT(gotplt); in initTargetSections()
367 AArch64GOT& AArch64GNULDBackend::getGOT() in getGOT()
373 const AArch64GOT& AArch64GNULDBackend::getGOT() const in getGOT()
379 AArch64GOT& AArch64GNULDBackend::getGOTPLT() in getGOTPLT()
385 const AArch64GOT& AArch64GNULDBackend::getGOTPLT() const in getGOTPLT()
DAndroid.mk8 AArch64GOT.cpp \
DAArch64PLT.cpp31 AArch64PLT::AArch64PLT(LDSection& pSection, AArch64GOT &pGOTPLT) in AArch64PLT()