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

  /frameworks/compile/mclinker/include/mcld/Target/
GOT.h 71 const_iterator begin() const { return m_SectionData->begin(); }
72 iterator begin() { return m_SectionData->begin(); }
73 const_iterator end () const { return m_SectionData->end(); }
74 iterator end () { return m_SectionData->end(); }
77 { return m_SectionData->empty(); }
91 SectionData* m_SectionData;
PLT.h 93 const_iterator begin() const { return m_SectionData->begin(); }
94 iterator begin() { return m_SectionData->begin(); }
95 const_iterator end () const { return m_SectionData->end(); }
96 iterator end () { return m_SectionData->end(); }
100 SectionData* m_SectionData;
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonPLT.cpp 51 new HexagonDynPLT0(*m_SectionData);
57 new HexagonExecPLT0(*m_SectionData);
59 m_Last = m_SectionData->begin();
68 iterator first = m_SectionData->getFragmentList().begin();
70 assert(first != m_SectionData->getFragmentList().end() &&
87 SectionData::iterator frag, fragEnd = m_SectionData->end();
88 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
HexagonGOT.cpp 33 new HexagonGOTEntry(0, m_SectionData);
41 m_pLast = llvm::cast<HexagonGOTEntry>(&m_SectionData->front());
  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 26 m_SectionData = IRBuilder::CreateSectionData(pSection);
36 SectionData::iterator frag, fragEnd = m_SectionData->end();
37 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
PLT.cpp 23 m_SectionData = IRBuilder::CreateSectionData(pSection);
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.cpp 36 iterator it = m_SectionData->begin();
39 assert((it != m_SectionData->end()) &&
53 new MipsGOTEntry(0, m_SectionData);
61 m_pLast = llvm::cast<MipsGOTEntry>(&m_SectionData->front());
71 return (m_SectionData->size() > MipsGOT0Num);
107 assert(it != m_SectionData->getFragmentList().end() &&
116 assert(it != m_SectionData->getFragmentList().end() &&
123 return m_SectionData->getFragmentList().size();
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.cpp 33 new X86_32GOTEntry(0, m_SectionData);
41 m_pLast = llvm::cast<X86_32GOTEntry>(&m_SectionData->front());
64 new X86_64GOTEntry(0, m_SectionData);
72 m_pLast = llvm::cast<X86_64GOTEntry>(&m_SectionData->front());
X86PLT.cpp 74 new X86_32DynPLT0(*m_SectionData);
82 new X86_32ExecPLT0(*m_SectionData);
92 new X86_64PLT0(*m_SectionData);
93 m_Last = m_SectionData->begin();
95 m_Last = m_SectionData->begin();
114 size += (m_SectionData->size() - 1) * plt1->size();
119 SectionData::iterator frag, fragEnd = m_SectionData->end();
120 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
128 return (m_SectionData->size() > 1);
138 plt1_entry = new X86_32DynPLT1(*m_SectionData);
    [all...]
X86GOTPLT.cpp 41 return (m_SectionData->size() > X86GOTPLT0Num);
47 (*(m_SectionData->getFragmentList().begin())).setValue(pAddress);
85 return (m_SectionData->size() > X86GOTPLT0Num);
91 (*(m_SectionData->getFragmentList().begin())).setValue(pAddress);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp 34 new ARMPLT0(*m_SectionData);
35 m_PLTEntryIterator = m_SectionData->begin();
44 return (m_SectionData->size() > 1);
49 uint64_t size = (m_SectionData->size() - 1) * sizeof(arm_plt1) +
54 SectionData::iterator frag, fragEnd = m_SectionData->end();
55 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
66 plt1_entry = new (std::nothrow) ARMPLT1(*m_SectionData);
78 assert(m_PLTEntryIterator != m_SectionData->end() &&
86 iterator first = m_SectionData->getFragmentList().begin();
88 assert(first != m_SectionData->getFragmentList().end() &
    [all...]
ARMGOT.cpp 44 return (m_SectionData->size() > ARMGOT0Num);
50 new ARMGOTEntry(0, m_SectionData);
58 m_pLast = llvm::cast<ARMGOTEntry>(&m_SectionData->front());
68 ARMGOTEntry* entry = new ARMGOTEntry(0, m_SectionData);
91 ARMGOTEntry* entry = new ARMGOTEntry(0, m_SectionData);
129 (*(m_SectionData->getFragmentList().begin())).setValue(pAddress);
140 e_end = m_SectionData->end();

Completed in 258 milliseconds