OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pSectionData
(Results
1 - 9
of
9
) sorted by null
/frameworks/compile/mclinker/lib/Target/
PLT.cpp
21
m_pSectionData
= IRBuilder::CreateSectionData(pSection);
/frameworks/compile/mclinker/include/mcld/Target/
PLT.h
73
const_iterator begin() const { return
m_pSectionData
->begin(); }
74
iterator begin() { return
m_pSectionData
->begin(); }
75
const_iterator end() const { return
m_pSectionData
->end(); }
76
iterator end() { return
m_pSectionData
->end(); }
80
SectionData*
m_pSectionData
;
/frameworks/compile/mclinker/lib/Target/AArch64/
AArch64PLT.cpp
35
new AArch64PLT0(*
m_pSectionData
);
42
return (
m_pSectionData
->size() > 1);
46
uint64_t size = (
m_pSectionData
->size() - 1) * sizeof(aarch64_plt1) +
51
SectionData::iterator frag, fragEnd =
m_pSectionData
->end();
52
for (frag =
m_pSectionData
->begin(); frag != fragEnd; ++frag) {
59
AArch64PLT1* plt1_entry = new (std::nothrow) AArch64PLT1(*
m_pSectionData
);
67
iterator first =
m_pSectionData
->getFragmentList().begin();
68
assert(first !=
m_pSectionData
->getFragmentList().end() &&
107
AArch64PLT::iterator it =
m_pSectionData
->begin();
108
AArch64PLT::iterator ie =
m_pSectionData
->end()
[
all
...]
/frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp
32
new ARMPLT0(*
m_pSectionData
);
39
return (
m_pSectionData
->size() > 1);
44
(
m_pSectionData
->size() - 1) * sizeof(arm_plt1) + sizeof(arm_plt0);
48
SectionData::iterator frag, fragEnd =
m_pSectionData
->end();
49
for (frag =
m_pSectionData
->begin(); frag != fragEnd; ++frag) {
56
ARMPLT1* plt1_entry = new (std::nothrow) ARMPLT1(*
m_pSectionData
);
76
iterator first =
m_pSectionData
->getFragmentList().begin();
78
assert(first !=
m_pSectionData
->getFragmentList().end() &&
102
ARMPLT::iterator it =
m_pSectionData
->begin();
103
ARMPLT::iterator ie =
m_pSectionData
->end()
[
all
...]
/frameworks/compile/mclinker/lib/Target/X86/
X86PLT.cpp
64
new X86_32DynPLT0(*
m_pSectionData
);
71
new X86_32ExecPLT0(*
m_pSectionData
);
80
new X86_64PLT0(*
m_pSectionData
);
98
size += (
m_pSectionData
->size() - 1) * plt1->size();
103
SectionData::iterator frag, fragEnd =
m_pSectionData
->end();
104
for (frag =
m_pSectionData
->begin(); frag != fragEnd; ++frag) {
111
return (
m_pSectionData
->size() > 1);
116
return new X86_32DynPLT1(*
m_pSectionData
);
118
return new X86_32ExecPLT1(*
m_pSectionData
);
122
iterator first =
m_pSectionData
->getFragmentList().begin()
[
all
...]
/frameworks/compile/mclinker/lib/Target/Mips/
MipsPLT.cpp
59
new MipsPLT0(*
m_pSectionData
);
63
uint64_t size = sizeof(PLT0) + (
m_pSectionData
->size() - 1) * sizeof(PLTA);
67
SectionData::iterator frag, fragEnd =
m_pSectionData
->end();
68
for (frag =
m_pSectionData
->begin(); frag != fragEnd; ++frag) {
75
return
m_pSectionData
->size() > 1;
97
return new MipsPLTA(*
m_pSectionData
);
104
for (iterator it =
m_pSectionData
->begin(); it !=
m_pSectionData
->end();
108
if (it ==
m_pSectionData
->begin()) {
/frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonPLT.cpp
46
new HexagonPLT0(*
m_pSectionData
);
54
iterator first =
m_pSectionData
->getFragmentList().begin();
56
assert(first !=
m_pSectionData
->getFragmentList().end() &&
75
size += (
m_pSectionData
->size() - 1) * plt1->size();
80
SectionData::iterator frag, fragEnd =
m_pSectionData
->end();
81
for (frag =
m_pSectionData
->begin(); frag != fragEnd; ++frag) {
88
return (
m_pSectionData
->size() > 1);
92
return new HexagonPLT1(*
m_pSectionData
);
126
HexagonPLT::iterator it =
m_pSectionData
->begin();
127
HexagonPLT::iterator ie =
m_pSectionData
->end()
[
all
...]
/frameworks/compile/mclinker/lib/LD/
EhFrame.cpp
92
EhFrame::EhFrame() : m_pSection(NULL),
m_pSectionData
(NULL) {
96
: m_pSection(&pSection),
m_pSectionData
(NULL) {
97
m_pSectionData
= SectionData::Create(pSection);
131
if (!
m_pSectionData
->empty())
132
offset =
m_pSectionData
->back().getOffset() +
m_pSectionData
->back().size();
134
m_pSectionData
->getFragmentList().push_back(&pFrag);
135
pFrag.setParent(
m_pSectionData
);
/frameworks/compile/mclinker/include/mcld/LD/
EhFrame.h
181
const SectionData* getSectionData() const { return
m_pSectionData
; }
182
SectionData* getSectionData() { return
m_pSectionData
; }
240
SectionData*
m_pSectionData
;
Completed in 110 milliseconds