OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getrelocationmodel
(Results
1 - 25
of
37
) sorted by null
1
2
/external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp
48
if (TM.
getRelocationModel
() == Reloc::PIC_)
55
if (TM.
getRelocationModel
() == Reloc::PIC_)
62
if (TM.
getRelocationModel
() == Reloc::PIC_)
69
if (TM.
getRelocationModel
() == Reloc::PIC_)
77
if (TM.
getRelocationModel
() == Reloc::PIC_)
90
if (TM.
getRelocationModel
() == Reloc::PIC_)
104
if (TM.
getRelocationModel
() == Reloc::PIC_)
112
if (TM.
getRelocationModel
() == Reloc::PIC_)
X86TargetMachine.cpp
106
if (
getRelocationModel
() == Reloc::Static) {
115
if (
getRelocationModel
() == Reloc::PIC_)
118
assert(
getRelocationModel
() == Reloc::DynamicNoPIC);
X86CodeEmitter.cpp
58
IsPIC(TM.
getRelocationModel
() == Reloc::PIC_) {}
63
IsPIC(TM.
getRelocationModel
() == Reloc::PIC_) {}
122
IsPIC = TM.
getRelocationModel
() == Reloc::PIC_;
[
all
...]
X86Subtarget.cpp
162
return isTargetELF() || TM.
getRelocationModel
() == Reloc::Static;
/external/llvm/include/llvm/MC/
MCCodeGenInfo.h
32
Reloc::Model
getRelocationModel
() const { return RelocationModel; }
/external/llvm/lib/Target/PowerPC/
PPCCodeEmitter.cpp
94
assert((MF.getTarget().
getRelocationModel
() != Reloc::Default ||
95
MF.getTarget().
getRelocationModel
() != Reloc::Static) &&
129
assert(TM.
getRelocationModel
() == Reloc::PIC_);
154
if (TM.
getRelocationModel
() == Reloc::PIC_) {
PPCAsmPrinter.cpp
178
if (TM.
getRelocationModel
() == Reloc::Static) {
201
if (TM.
getRelocationModel
() != Reloc::Static &&
451
if (TM.
getRelocationModel
() == Reloc::PIC_) {
457
} else if (TM.
getRelocationModel
() == Reloc::DynamicNoPIC) {
492
if (TM.
getRelocationModel
() == Reloc::PIC_) {
PPCSubtarget.cpp
132
if (!HasLazyResolverStubs || TM.
getRelocationModel
() == Reloc::Static)
/external/llvm/lib/Target/SystemZ/
SystemZSubtarget.cpp
42
if (TM.
getRelocationModel
() == Reloc::PIC_) {
SystemZAsmPrinter.cpp
99
if (TM.
getRelocationModel
() == Reloc::PIC_ &&
112
if (TM.
getRelocationModel
() == Reloc::PIC_)
SystemZISelLowering.cpp
730
bool IsPic = getTargetMachine().
getRelocationModel
() == Reloc::PIC_;
[
all
...]
/external/llvm/lib/Target/Mips/
MipsEmitGPRestore.cpp
47
if (TM.
getRelocationModel
() != Reloc::PIC_)
MipsFrameLowering.cpp
148
bool isPIC = (MF.getTarget().
getRelocationModel
() == Reloc::PIC_);
MipsISelLowering.cpp
[
all
...]
MipsISelDAGToDAG.cpp
125
if (TM.
getRelocationModel
() == Reloc::PIC_) {
/external/llvm/lib/Target/
TargetMachine.cpp
223
///
getRelocationModel
- Returns the code generation relocation model. The
225
Reloc::Model TargetMachine::
getRelocationModel
() const {
228
return CodeGenInfo->
getRelocationModel
();
TargetLoweringObjectFile.cpp
44
InitMCObjectFileInfo(TM.getTargetTriple(), TM.
getRelocationModel
(), *Ctx);
126
Reloc::Model ReloModel = TM.
getRelocationModel
();
/external/llvm/lib/CodeGen/
ELFCodeEmitter.cpp
146
assert(TM.
getRelocationModel
() != Reloc::PIC_ &&
172
assert(TM.
getRelocationModel
() != Reloc::PIC_ &&
/external/llvm/lib/Target/CellSPU/
SPUAsmPrinter.cpp
266
if (TM.
getRelocationModel
() != Reloc::Static) {
276
if (TM.
getRelocationModel
() != Reloc::Static) {
/external/llvm/include/llvm/Target/
TargetMachine.h
211
///
getRelocationModel
- Returns the code generation relocation model. The
213
Reloc::Model
getRelocationModel
() const;
/external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp
72
IsPIC(TM.
getRelocationModel
() == Reloc::PIC_), IsThumb(false) {}
377
assert((MF.getTarget().
getRelocationModel
() != Reloc::Default ||
378
MF.getTarget().
getRelocationModel
() != Reloc::Static) &&
387
IsPIC = TM.
getRelocationModel
() == Reloc::PIC_;
712
Reloc::Model RelocM = TM.
getRelocationModel
();
[
all
...]
ARMAsmPrinter.cpp
460
Reloc::Model RelocM = TM.
getRelocationModel
();
745
Subtarget->GVIsIndirectSymbol(GV, TM.
getRelocationModel
());
846
if (TM.
getRelocationModel
() == Reloc::PIC_)
[
all
...]
ARMISelLowering.cpp
[
all
...]
/external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp
225
if (TM.
getRelocationModel
() == Reloc::PIC_) {
/external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp
[
all
...]
Completed in 711 milliseconds
1
2