HomeSort by relevance Sort by last modified time
    Searched refs:IsPIC (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/Target/Sparc/
SparcJITInfo.h 26 bool IsPIC;
30 : IsPIC(false) {}
60 void Initialize(const MachineFunction &MF, bool isPIC) {
61 IsPIC = isPIC;
SparcCodeEmitter.cpp 41 bool IsPIC;
54 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
108 JTI->Initialize(MF, IsPIC);
  /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;
MipsCodeEmitter.cpp 58 bool IsPIC;
71 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
152 JTI->Initialize(MF, IsPIC, Subtarget->isLittle());
MipsLongBranch.cpp 66 IsPIC(TM.getRelocationModel() == Reloc::PIC_),
68 LongBranchSeqSize(!IsPIC ? 2 : (ABI == MipsSubtarget::N64 ? 10 :
88 bool IsPIC;
263 if (IsPIC) {
MipsConstantIslandPass.cpp 345 bool IsPIC;
369 IsPIC(TM.getRelocationModel() == Reloc::PIC_),
    [all...]
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMJITInfo.h 43 // IsPIC - True if the relocation model is PIC. This is used to determine
45 bool IsPIC;
48 explicit ARMJITInfo() : IsPIC(false) { useGOT = false; }
105 void Initialize(const MachineFunction &MF, bool isPIC);
ARMJITInfo.cpp 167 if (IsPIC) {
339 void ARMJITInfo::Initialize(const MachineFunction &MF, bool isPIC) {
343 IsPIC = isPIC;
ARMCodeEmitter.cpp 59 bool IsPIC;
74 IsPIC(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {}
380 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
382 JTI->Initialize(MF, IsPIC);
    [all...]
ARMExpandPseudoInsts.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 52 bool IsPIC;
58 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
137 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
427 : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
462 if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
469 if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
    [all...]

Completed in 225 milliseconds