Home
last modified time | relevance | path

Searched refs:got_base (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/Target/ARM/
DARMPLT.cpp149 uint64_t got_base = m_GOT.getSection().addr(); in applyPLT0() local
150 assert(got_base && ".got base address is NULL!"); in applyPLT0()
154 if (got_base > plt_base) in applyPLT0()
155 offset = got_base - (plt_base + 16); in applyPLT0()
157 offset = (plt_base + 16) - got_base; in applyPLT0()
183 uint64_t got_base = m_GOT.getSection().addr(); in applyPLT1() local
184 assert(got_base && ".got base address is NULL!"); in applyPLT1()
192 got_base + GOTEntrySize * 3; in applyPLT1()
/frameworks/compile/mclinker/lib/Target/X86/
DX86PLT.cpp193 uint64_t got_base = m_GOT.getSection().addr(); in applyPLT0() local
194 assert(got_base && ".got base address is NULL!"); in applyPLT0()
196 *offset = got_base + 4; in applyPLT0()
198 *offset = got_base + 8; in applyPLT0()
210 uint64_t got_base = m_GOT.getSection().addr(); in applyPLT1() local
211 assert(got_base && ".got base address is NULL!"); in applyPLT1()