Searched refs:m_pLast (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOT.cpp22 : GOT(pSection), m_pLast(NULL)
39 if (NULL == m_pLast) {
41 m_pLast = llvm::cast<HexagonGOTEntry>(&m_SectionData->front());
42 return m_pLast;
45 m_pLast = llvm::cast<HexagonGOTEntry>(m_pLast->getNextNode());
46 return m_pLast;
H A DHexagonGOT.h49 HexagonGOTEntry* m_pLast; ///< the last consumed entry member in class:mcld::HexagonGOT
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp22 : GOT(pSection), m_pLast(NULL)
39 if (NULL == m_pLast) {
41 m_pLast = llvm::cast<X86_32GOTEntry>(&m_SectionData->front());
42 return m_pLast;
45 m_pLast = llvm::cast<X86_32GOTEntry>(m_pLast->getNextNode());
46 return m_pLast;
53 : GOT(pSection), m_pLast(NULL)
70 if (NULL == m_pLast) {
72 m_pLast
[all...]
H A DX86GOT.h49 X86_32GOTEntry* m_pLast; ///< the last consumed entry member in class:mcld::X86_32GOT
79 X86_64GOTEntry* m_pLast; ///< the last consumed entry member in class:mcld::X86_64GOT
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputFactory.h50 const AttributeProxy& attr() const { return *m_pLast; }
51 AttributeProxy& attr() { return *m_pLast; }
54 AttributeProxy* m_pLast; member in class:mcld::InputFactory
/frameworks/compile/mclinker/lib/MC/
H A DInputFactory.cpp23 m_pLast = new AttributeProxy(*m_pAttrSet,
31 delete m_pLast;
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp27 : GOT(pSection), m_pLast(NULL)
56 if (NULL == m_pLast) {
58 m_pLast = llvm::cast<ARMGOTEntry>(&m_SectionData->front());
59 return m_pLast;
62 m_pLast = llvm::cast<ARMGOTEntry>(m_pLast->getNextNode());
63 return m_pLast;
H A DARMGOT.h93 ARMGOTEntry* m_pLast; ///< the last consumed entry member in class:mcld::ARMGOT

Completed in 101 milliseconds