OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pGOT
(Results
1 - 8
of
8
) sorted by null
/frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp
39
m_pGOT
(NULL),
50
delete
m_pGOT
;
62
m_pGOT
= new MipsGOT(got);
123
m_pGOT
->hasGOT1() ||
125
m_pGOT
->finalizeScanning(*m_pRelDyn);
126
m_pGOT
->finalizeSectionSize();
170
assert(NULL !=
m_pGOT
&& "emitSectionData failed,
m_pGOT
is NULL!");
171
uint64_t result =
m_pGOT
->emit(pRegion);
190
const MipsGOT&
m_pGOT
;
[
all
...]
MipsLDBackend.h
135
MipsGOT*
m_pGOT
; // .got
/frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.cpp
305
m_pGOT
(NULL),
311
delete
m_pGOT
;
330
m_pGOT
= new X86_32GOT(got);
356
assert(NULL !=
m_pGOT
);
357
return *
m_pGOT
;
362
assert(NULL !=
m_pGOT
);
363
return *
m_pGOT
;
403
if (!
m_pGOT
->empty())
404
m_pGOT
->finalizeSectionSize();
409
assert(
m_pGOT
&& "emitGOTSectionData failed, m_pGOT is NULL!")
[
all
...]
X86LDBackend.h
187
X86_32GOT*
m_pGOT
;
227
X86_64GOT*
m_pGOT
;
/frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp
51
m_pGOT
(NULL),
67
delete
m_pGOT
;
99
m_pGOT
= new ARMGOT(got);
103
m_pPLT = new ARMPLT(plt, *
m_pGOT
);
213
m_pGOT
->hasGOT1() ||
215
m_pGOT
->finalizeSectionSize();
257
// Since we already have the size of GOT,
m_pGOT
should not be NULL.
258
assert(NULL !=
m_pGOT
);
260
m_pGOT
->applyGOT0(file_format->getDynamic().addr());
263
m_pGOT
->applyGOT0(0)
[
all
...]
ARMLDBackend.h
155
ARMGOT*
m_pGOT
;
/frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp
46
m_pGOT
(NULL),
59
delete
m_pGOT
;
234
assert(NULL !=
m_pGOT
);
235
return *
m_pGOT
;
240
assert(NULL !=
m_pGOT
);
241
return *
m_pGOT
;
317
if (!
m_pGOT
->empty())
318
m_pGOT
->finalizeSectionSize();
323
assert(
m_pGOT
&& "emitGOTSectionData failed,
m_pGOT
is NULL!")
[
all
...]
HexagonLDBackend.h
179
HexagonGOT*
m_pGOT
;
Completed in 49 milliseconds