OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_SectionData
(Results
1 - 13
of
13
) sorted by null
/frameworks/compile/mclinker/include/mcld/Target/
GOT.h
72
const_iterator begin() const { return
m_SectionData
->begin(); }
73
iterator begin() { return
m_SectionData
->begin(); }
74
const_iterator end () const { return
m_SectionData
->end(); }
75
iterator end () { return
m_SectionData
->end(); }
78
{ return
m_SectionData
->empty(); }
92
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/
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/Hexagon/
HexagonGOT.cpp
33
new HexagonGOTEntry(0,
m_SectionData
);
41
m_pLast = llvm::cast<HexagonGOTEntry>(&
m_SectionData
->front());
HexagonGOTPLT.cpp
43
return (
m_SectionData
->size() > HexagonGOTPLT0Num);
49
(*(
m_SectionData
->getFragmentList().begin())).setValue(pAddress);
HexagonPLT.cpp
51
new HexagonPLT0(*
m_SectionData
);
52
m_Last =
m_SectionData
->begin();
62
iterator first =
m_SectionData
->getFragmentList().begin();
64
assert(first !=
m_SectionData
->getFragmentList().end() &&
84
size += (
m_SectionData
->size() - 1) * plt1->size();
89
SectionData::iterator frag, fragEnd =
m_SectionData
->end();
90
for (frag =
m_SectionData
->begin(); frag != fragEnd; ++frag) {
98
return (
m_SectionData
->size() > 1);
106
plt1_entry = new HexagonPLT1(*
m_SectionData
);
116
assert(m_Last !=
m_SectionData
->end() &
[
all
...]
/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();
/frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.cpp
89
new MipsGOTEntry(0,
m_SectionData
);
108
it->m_pLastLocal = llvm::cast<MipsGOTEntry>(&
m_SectionData
->back());
110
it->m_pLastGlobal = llvm::cast<MipsGOTEntry>(&
m_SectionData
->back());
Completed in 647 milliseconds