OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getRelocationModel
(Results
1 - 25
of
39
) sorted by null
1
2
/external/llvm/include/llvm/MC/
MCCodeGenInfo.h
40
Reloc::Model
getRelocationModel
() const { return RelocationModel; }
/external/llvm/lib/Target/X86/
X86TargetMachine.cpp
41
if (
getRelocationModel
() == Reloc::Static) {
50
if (
getRelocationModel
() == Reloc::PIC_)
53
assert(
getRelocationModel
() == Reloc::DynamicNoPIC);
X86Subtarget.cpp
182
return isTargetELF() || TM.
getRelocationModel
() == Reloc::Static;
/external/llvm/lib/Target/
TargetMachine.cpp
74
///
getRelocationModel
- Returns the code generation relocation model. The
76
Reloc::Model TargetMachine::
getRelocationModel
() const {
79
return CodeGenInfo->
getRelocationModel
();
111
bool isPIC =
getRelocationModel
() == Reloc::PIC_;
TargetLoweringObjectFile.cpp
47
TM.
getRelocationModel
(), TM.getCodeModel(), *Ctx);
137
Reloc::Model ReloModel = TM.
getRelocationModel
();
/external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp
94
if (TM.
getRelocationModel
() != Reloc::Static && GV->hasDefaultVisibility()) {
/external/llvm/lib/Target/PowerPC/
PPCCodeEmitter.cpp
100
assert((MF.getTarget().
getRelocationModel
() != Reloc::Default ||
101
MF.getTarget().
getRelocationModel
() != Reloc::Static) &&
136
assert(TM.
getRelocationModel
() == Reloc::PIC_);
162
if (TM.
getRelocationModel
() == Reloc::PIC_) {
PPCSubtarget.cpp
214
if (!HasLazyResolverStubs || TM.
getRelocationModel
() == Reloc::Static)
PPCAsmPrinter.cpp
177
if (TM.
getRelocationModel
() != Reloc::Static &&
860
if (TM.
getRelocationModel
() == Reloc::PIC_) {
[
all
...]
/external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp
252
if (Subtarget.
getRelocationModel
() == Reloc::PIC_)
429
if (Subtarget.
getRelocationModel
() != Reloc::PIC_ ) {
443
bool PicMode = Subtarget.
getRelocationModel
() == Reloc::PIC_;
MipsLongBranch.cpp
66
IsPIC(TM.
getRelocationModel
() == Reloc::PIC_),
189
TM.
getRelocationModel
() == Reloc::PIC_)))
454
if ((TM.
getRelocationModel
() == Reloc::PIC_) &&
503
if (TM.
getRelocationModel
() == Reloc::PIC_) {
MipsSubtarget.h
273
Reloc::Model
getRelocationModel
() const {return RM;}
Mips16ISelDAGToDAG.cpp
181
if (TM.
getRelocationModel
() != Reloc::PIC_) {
MipsCodeEmitter.cpp
71
IsPIC(TM.
getRelocationModel
() == Reloc::PIC_) {}
MipsFastISel.cpp
62
TargetSupported = ((Subtarget->
getRelocationModel
() == Reloc::PIC_) &&
MipsAsmPrinter.cpp
675
Reloc::Model RM = Subtarget->
getRelocationModel
();
924
if (Subtarget->
getRelocationModel
() == Reloc::PIC_)
[
all
...]
MipsSEISelDAGToDAG.cpp
162
if (MF.getTarget().
getRelocationModel
() == Reloc::Static) {
303
if (TM.
getRelocationModel
() != Reloc::PIC_) {
MipsSEInstrInfo.cpp
29
tm.
getRelocationModel
() == Reloc::PIC_ ? Mips::B : Mips::J),
609
if (TM.
getRelocationModel
() == Reloc::PIC_)
MipsISelLowering.cpp
[
all
...]
/external/llvm/include/llvm/Target/
TargetMachine.h
165
///
getRelocationModel
- Returns the code generation relocation model. The
167
Reloc::Model
getRelocationModel
() const;
/external/llvm/lib/Target/ARM/
ARMInstrInfo.cpp
107
if (TM->
getRelocationModel
() != Reloc::PIC_)
ARMCodeEmitter.cpp
74
IsPIC(TM.
getRelocationModel
() == Reloc::PIC_), IsThumb(false) {}
368
assert((Target.
getRelocationModel
() != Reloc::Default ||
369
Target.
getRelocationModel
() != Reloc::Static) &&
380
IsPIC = TM.
getRelocationModel
() == Reloc::PIC_;
642
Reloc::Model RelocM = TM.
getRelocationModel
();
[
all
...]
ARMAsmPrinter.cpp
417
Reloc::Model RelocM = TM.
getRelocationModel
();
675
if (TM.
getRelocationModel
() == Reloc::PIC_) {
800
Subtarget->GVIsIndirectSymbol(GV, TM.
getRelocationModel
());
[
all
...]
/external/llvm/lib/Target/Sparc/
SparcCodeEmitter.cpp
54
IsPIC(TM.
getRelocationModel
() == Reloc::PIC_) {}
SparcAsmPrinter.cpp
188
if (TM.
getRelocationModel
() != Reloc::PIC_) {
Completed in 383 milliseconds
1
2