Home
last modified time | relevance | path

Searched refs:IsN32 (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsABIInfo.cpp29 if (IsN32() || IsN64()) in GetByValArgRegs()
37 if (IsN32() || IsN64()) in GetVarArgRegs()
45 if (IsN32() || IsN64()) in GetCalleeAllocdArgSizeInBytes()
DMipsABIInfo.h43 bool IsN32() const { return ThisABI == ABI::N32; } in IsN32() function
76 inline bool AreGprs64bit() const { return IsN32() || IsN64(); } in AreGprs64bit()
DMipsTargetStreamer.cpp789 else if (getABI().IsN32()) in finish()
1001 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpLoad()
1063 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpRestore()
1077 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpsetup()
1094 if (getABI().IsN32()) { in emitDirectiveCpsetup()
1134 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpreturn()
DMipsOptionRecord.cpp53 Sec->setAlignment(MTS->getABI().IsN32() ? 8 : 4); in EmitMipsOptionRecord()
/external/llvm/lib/Target/Mips/
DMipsSubtarget.cpp172 bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); } in isABI_N32()
DMipsTargetMachine.cpp73 if (ABI.IsN64() || ABI.IsN32()) in computeDataLayout()
DMipsISelLowering.cpp433 setMinStackArgumentAlignment((ABI.IsN32() || ABI.IsN64()) ? 8 : 4); in MipsTargetLowering()
1779 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerGlobalAddress()
1789 (ABI.IsN32() || ABI.IsN64()) ? MipsII::MO_GOT_DISP : MipsII::MO_GOT, in lowerGlobalAddress()
1801 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerBlockAddress()
1895 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerJumpTable()
1917 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerConstantPool()
1943 unsigned ArgSlotSizeInBytes = (ABI.IsN32() || ABI.IsN64()) ? 8 : 4; in lowerVAARG()
2836 Callee = getAddrLocal(G, DL, Ty, DAG, ABI.IsN32() || ABI.IsN64()); in LowerCall()
DMipsSEISelDAGToDAG.cpp181 if (ABI.IsN32()) { in initGlobalBaseReg()
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp453 bool isABI_N32() const { return ABI.IsN32(); } in isABI_N32()