OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsPIC
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/Target/Mips/
MipsJITInfo.h
28
bool
IsPIC
;
33
IsPIC
(false), IsLittleEndian(true) {}
62
void Initialize(const MachineFunction &MF, bool
isPIC
,
64
IsPIC
=
isPIC
;
MipsConstantIslandPass.cpp
53
IsPIC
(TM.getRelocationModel() == Reloc::PIC_),
64
bool
IsPIC
;
MipsCodeEmitter.cpp
57
bool
IsPIC
;
70
IsPIC
(TM.getRelocationModel() == Reloc::PIC_) {}
140
JTI->Initialize(MF,
IsPIC
, Subtarget->isLittle());
MipsLongBranch.cpp
68
IsPIC
(TM.getRelocationModel() == Reloc::PIC_),
70
LongBranchSeqSize(!
IsPIC
? 2 : (ABI == MipsSubtarget::N64 ? 13 : 9)) {}
89
bool
IsPIC
;
259
if (
IsPIC
) {
MipsISelLowering.cpp
[
all
...]
/external/llvm/lib/Target/ARM/
ARMJITInfo.h
44
//
IsPIC
- True if the relocation model is PIC. This is used to determine
46
bool
IsPIC
;
49
explicit ARMJITInfo() :
IsPIC
(false) { useGOT = false; }
106
void Initialize(const MachineFunction &MF, bool
isPIC
) {
110
IsPIC
=
isPIC
;
ARMCodeEmitter.cpp
57
bool
IsPIC
;
72
IsPIC
(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {}
411
IsPIC
= TM.getRelocationModel() == Reloc::PIC_;
413
JTI->Initialize(MF,
IsPIC
);
[
all
...]
/external/llvm/lib/Target/X86/
X86CodeEmitter.cpp
51
bool
IsPIC
;
57
IsPIC
(TM.getRelocationModel() == Reloc::PIC_) {}
136
IsPIC
= TM.getRelocationModel() == Reloc::PIC_;
429
: (
IsPIC
? X86::reloc_picrel_word : X86::reloc_absolute_word);
464
if (!MCE.earlyResolveAddresses() || Is64BitMode ||
IsPIC
) {
471
if (!MCE.earlyResolveAddresses() || Is64BitMode ||
IsPIC
) {
[
all
...]
Completed in 236 milliseconds