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

  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 30 bool IsPIC;
34 IsPIC(false) {}
63 void Initialize(const MachineFunction &MF, bool isPIC) {
64 IsPIC = isPIC;
MipsCodeEmitter.cpp 57 bool IsPIC;
71 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {
124 JTI->Initialize(MF, 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) {}
391 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
393 JTI->Initialize(MF, IsPIC);
    [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 52 bool IsPIC;
58 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
63 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
122 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
416 : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
451 if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
458 if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
818 : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
    [all...]

Completed in 331 milliseconds