Home
last modified time | relevance | path

Searched refs:m_GOTPLT (Results 1 – 8 of 8) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64GOT.cpp39 return ((!m_GOT.empty()) || (!m_GOTPLT.empty())); in hasGOT1()
50 m_GOTPLT.push_back(entry); in createGOTPLT()
65 if (!m_GOTPLT.empty()) { in finalizeSectionSize()
66 m_pGOTPLTFront = m_GOTPLT.front(); in finalizeSectionSize()
67 entry_iterator it, end = m_GOTPLT.end(); in finalizeSectionSize()
68 for (it = m_GOTPLT.begin(); it != end; ++it) { in finalizeSectionSize()
76 m_GOTPLT.clear(); in finalizeSectionSize()
DAArch64GOT.h88 EntryListType m_GOTPLT; variable
/frameworks/compile/mclinker/lib/Target/ARM/
DARMGOT.cpp36 return ((!m_GOT.empty()) || (!m_GOTPLT.empty())); in hasGOT1()
47 m_GOTPLT.push_back(entry); in createGOTPLT()
62 if (!m_GOTPLT.empty()) { in finalizeSectionSize()
63 m_pGOTPLTFront = m_GOTPLT.front(); in finalizeSectionSize()
64 entry_iterator it, end = m_GOTPLT.end(); in finalizeSectionSize()
65 for (it = m_GOTPLT.begin(); it != end; ++it) { in finalizeSectionSize()
73 m_GOTPLT.clear(); in finalizeSectionSize()
DARMGOT.h76 EntryListType m_GOTPLT; variable
/frameworks/compile/mclinker/lib/Target/X86/
DX86PLT.cpp138 : X86PLT(pSection, pConfig, 32), m_GOTPLT(pGOTPLT) { in X86_32PLT()
155 *offset = m_GOTPLT.addr() + 4; in applyPLT0()
157 *offset = m_GOTPLT.addr() + 8; in applyPLT0()
176 GOTEntryOffset += m_GOTPLT.addr(); in applyPLT1()
221 : X86PLT(pSection, pConfig, 64), m_GOTPLT(pGOTPLT) { in X86_64PLT()
238 *offset = m_GOTPLT.addr() - addr() + 8 - 6; in applyPLT0()
241 *offset = m_GOTPLT.addr() - addr() + 16 - 12; in applyPLT0()
257 uint64_t SymGOTPCREL = m_GOTPLT.addr(); in applyPLT1()
DX86PLT.h147 X86_32GOTPLT& m_GOTPLT;
167 X86_64GOTPLT& m_GOTPLT;
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonPLT.cpp38 : PLT(pSection), m_GOTPLT(pGOTPLT) { in HexagonPLT()
106 uint32_t gotpltAddr = m_GOTPLT.addr(); in applyPLT0()
123 uint64_t got_base = m_GOTPLT.addr(); in applyPLT1()
DHexagonPLT.h84 HexagonGOTPLT& m_GOTPLT;