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

  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 28 bool IsPIC;
32 IsPIC(false) {}
61 void Initialize(const MachineFunction &MF, bool isPIC) {
62 IsPIC = isPIC;
MipsCodeEmitter.cpp 56 bool IsPIC;
70 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {
136 JTI->Initialize(MF, IsPIC);
MipsLongBranch.cpp 69 IsPIC(TM.getRelocationModel() == Reloc::PIC_),
71 LongBranchSeqSize(!IsPIC ? 2 : (ABI == MipsSubtarget::N64 ? 13 : 9)) {}
91 bool IsPIC;
254 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;
ARMJITInfo.cpp 167 if (IsPIC) {
ARMCodeEmitter.cpp 57 bool IsPIC;
72 IsPIC(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {}
405 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
407 JTI->Initialize(MF, IsPIC);
    [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 51 bool IsPIC;
57 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
62 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
133 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
426 : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
461 if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
468 if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
    [all...]

Completed in 479 milliseconds