OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pGOT
(Results
1 - 10
of
10
) sorted by null
/frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.cpp
329
m_pGOT
(NULL),
334
delete
m_pGOT
;
351
m_pGOT
= new X86_32GOT(got);
374
assert(
m_pGOT
!= NULL);
375
return *
m_pGOT
;
379
assert(
m_pGOT
!= NULL);
380
return *
m_pGOT
;
464
if (!
m_pGOT
->empty())
465
m_pGOT
->finalizeSectionSize();
469
assert(
m_pGOT
&& "emitGOTSectionData failed, m_pGOT is NULL!")
[
all
...]
X86LDBackend.h
192
X86_32GOT*
m_pGOT
;
234
X86_64GOT*
m_pGOT
;
/frameworks/compile/mclinker/lib/Target/AArch64/
AArch64LDBackend.cpp
57
m_pGOT
(NULL),
69
if (
m_pGOT
== m_pGOTPLT) {
70
if (
m_pGOT
!= NULL)
71
delete
m_pGOT
;
73
if (
m_pGOT
!= NULL)
74
delete
m_pGOT
;
95
m_pGOT
= new AArch64GOT(got);
100
m_pGOT
->createGOT0();
101
m_pGOTPLT =
m_pGOT
;
194
if (LinkerConfig::DynObj == config().codeGenType() ||
m_pGOT
->hasGOT1() |
[
all
...]
AArch64LDBackend.h
152
AArch64GOT*
m_pGOT
;
/frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp
125
m_pGOT
(NULL),
141
delete
m_pGOT
;
179
m_pGOT
= new ARMGOT(got);
183
m_pPLT = new ARMPLT(plt, *
m_pGOT
);
294
if (LinkerConfig::DynObj == config().codeGenType() ||
m_pGOT
->hasGOT1() ||
296
m_pGOT
->finalizeSectionSize();
339
// Since we already have the size of GOT,
m_pGOT
should not be NULL.
340
assert(
m_pGOT
!= NULL);
342
m_pGOT
->applyGOT0(file_format->getDynamic().addr());
345
m_pGOT
->applyGOT0(0)
[
all
...]
ARMLDBackend.h
182
ARMGOT*
m_pGOT
;
/frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp
53
m_pGOT
(NULL),
191
if (LinkerConfig::DynObj == config().codeGenType() ||
m_pGOT
->hasGOT1() ||
193
m_pGOT
->finalizeScanning(*m_pRelDyn);
194
m_pGOT
->finalizeSectionSize();
267
return
m_pGOT
->emit(pRegion);
343
const MipsGOT&
m_pGOT
;
345
explicit DynsymGOTCompare(const MipsGOT& pGOT) :
m_pGOT
(pGOT) {}
348
return
m_pGOT
.dynSymOrderCompare(X, Y);
365
symbols.dynamicBegin(), symbols.dynamicEnd(), DynsymGOTCompare(*
m_pGOT
));
499
assert(
m_pGOT
!= NULL)
[
all
...]
MipsLDBackend.h
237
MipsGOT*
m_pGOT
; // .got
/frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp
48
m_pGOT
(NULL),
60
delete
m_pGOT
;
230
assert(
m_pGOT
!= NULL);
231
return *
m_pGOT
;
235
assert(
m_pGOT
!= NULL);
236
return *
m_pGOT
;
300
if (!
m_pGOT
->empty())
301
m_pGOT
->finalizeSectionSize();
305
assert(
m_pGOT
&& "emitGOTSectionData failed,
m_pGOT
is NULL!")
[
all
...]
HexagonLDBackend.h
174
HexagonGOT*
m_pGOT
;
Completed in 47 milliseconds