HomeSort by relevance Sort by last modified time
    Searched refs:m_SectionData (Results 1 - 10 of 10) sorted by null

  /frameworks/compile/mclinker/include/mcld/Target/
GOT.h 62 const_iterator begin() const { return m_SectionData->begin(); }
63 iterator begin() { return m_SectionData->begin(); }
64 const_iterator end() const { return m_SectionData->end(); }
65 iterator end() { return m_SectionData->end(); }
67 bool empty() const { return m_SectionData->empty(); }
74 SectionData* m_SectionData;
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.cpp 28 return new X86_32GOTEntry(0, m_SectionData);
41 return new X86_64GOTEntry(0, m_SectionData);
X86GOTPLT.cpp 33 return (m_SectionData->size() > X86GOTPLT0Num);
37 llvm::cast<X86_32GOTEntry>(*(m_SectionData->getFragmentList().begin()))
66 return (m_SectionData->size() > X86GOTPLT0Num);
70 llvm::cast<X86_64GOTEntry>(*(m_SectionData->getFragmentList().begin()))
  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 25 m_SectionData = IRBuilder::CreateSectionData(pSection);
33 SectionData::iterator frag, fragEnd = m_SectionData->end();
34 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.cpp 28 return new HexagonGOTEntry(0, m_SectionData);
HexagonGOTPLT.cpp 36 return (m_SectionData->size() > HexagonGOTPLT0Num);
40 llvm::cast<HexagonGOTEntry>(*(m_SectionData->getFragmentList().begin()))
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.cpp 26 new GOTPLTEntry(0, m_SectionData);
27 new GOTPLTEntry(0, m_SectionData);
43 return new GOTPLTEntry(0, m_SectionData);
47 return m_SectionData->size() > MipsGOTPLT0Num;
MipsGOT.cpp 107 createEntry(0, m_SectionData);
123 it->m_pLastLocal = &m_SectionData->back();
125 it->m_pLastGlobal = &m_SectionData->back();
127 it->m_pLastTLS = &m_SectionData->back();
512 createEntry(0, m_SectionData);
513 createEntry(Mips32ModulePtr, m_SectionData);
547 createEntry(0, m_SectionData);
548 createEntry(Mips64ModulePtr, m_SectionData);
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64GOT.cpp 33 // create GOT0, and put them into m_SectionData immediately
35 new AArch64GOTEntry(0, m_SectionData);
56 SectionData::FragmentListType& frag_list = m_SectionData->getFragmentList();
58 SectionData::iterator frag, fragEnd = m_SectionData->end();
59 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
71 entry->setParent(m_SectionData);
85 entry->setParent(m_SectionData);
97 llvm::cast<AArch64GOTEntry>(*(m_SectionData->getFragmentList().begin()))
108 e_end = m_SectionData->end();
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.cpp 27 // create GOT0, and put them into m_SectionData immediately
29 new ARMGOTEntry(0, m_SectionData);
53 SectionData::FragmentListType& frag_list = m_SectionData->getFragmentList();
55 SectionData::iterator frag, fragEnd = m_SectionData->end();
56 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
68 entry->setParent(m_SectionData);
82 entry->setParent(m_SectionData);
94 llvm::cast<ARMGOTEntry>(*(m_SectionData->getFragmentList().begin()))
105 e_end = m_SectionData->end();

Completed in 1145 milliseconds