Home
last modified time | relevance | path

Searched refs:IsDouble (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILIntrinsicExpansion.cpp564 bool IsDouble = ScalarTy->isDoubleTy(); in expandBufferLoadIntrinsic() local
565 assert(IsDouble || ScalarTy->isIntegerTy(64) && in expandBufferLoadIntrinsic()
608 if (IsDouble) in expandBufferLoadIntrinsic()
676 bool IsDouble = ScalarTy->isDoubleTy(); in expandBufferStoreIntrinsic() local
677 assert((IsDouble || ScalarTy->isIntegerTy(64)) && in expandBufferStoreIntrinsic()
703 if (IsDouble) { in expandBufferStoreIntrinsic()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp702 bool IsDouble = Left->getType()->isDoubleTy(); in emitCmp() local
703 if (!IsFloat && !IsDouble) in emitCmp()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp2226 bool IsDouble = UnqualTy == Context.DoubleTy; in checkTypeSupport() local
2228 if (IsRetTy && !TI.hasFPReturn() && (IsDouble || IsFloat)) { in checkTypeSupport()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp279 bool expandTrunc(MCInst &Inst, bool IsDouble, bool Is64FPU, SMLoc IDLoc,
4346 bool MipsAsmParser::expandTrunc(MCInst &Inst, bool IsDouble, bool Is64FPU, in expandTrunc() argument
4370 TOut.emitRR(IsDouble ? (Is64FPU ? Mips::CVT_W_D64 : Mips::CVT_W_D32) in expandTrunc()
4378 TOut.emitRR(IsDouble ? (Is64FPU ? Mips::TRUNC_W_D64 : Mips::TRUNC_W_D32) in expandTrunc()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7194 bool IsDouble = (VT == MVT::f64); in LowerConstantFP() local
7231 if (IsDouble && !Subtarget->hasFP64()) in LowerConstantFP()
7235 int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal); in LowerConstantFP()
7238 if (IsDouble || !ST->useNEONForSinglePrecisionFP()) { in LowerConstantFP()
7256 if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP())) in LowerConstantFP()
7265 if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32)) in LowerConstantFP()
7275 if (IsDouble) in LowerConstantFP()
7292 if (IsDouble) in LowerConstantFP()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp3609 bool IsDouble = Name[17] == 'd'; in upgradeX86IntrinsicCall() local
3614 Intrinsic::ID IID = MinMaxTbl[IsMin][IsDouble]; in upgradeX86IntrinsicCall()