Home
last modified time | relevance | path

Searched refs:isFPOrFPVectorTy (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonTargetTransformInfo.cpp288 if (SrcTy->isFPOrFPVectorTy() || DstTy->isFPOrFPVectorTy()) { in getCastInstrCost()
289 unsigned SrcN = SrcTy->isFPOrFPVectorTy() ? getTypeNumElements(SrcTy) : 0; in getCastInstrCost()
290 unsigned DstN = DstTy->isFPOrFPVectorTy() ? getTypeNumElements(DstTy) : 0; in getCastInstrCost()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-stress/
Dllvm-stress.cpp596 if (VTy->isFPOrFPVectorTy() && DestTy->isIntOrIntVectorTy()) { in Act()
604 if (VTy->isIntOrIntVectorTy() && DestTy->isFPOrFPVectorTy()) { in Act()
612 if (VTy->isFPOrFPVectorTy() && DestTy->isFPOrFPVectorTy()) { in Act()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DPatternInit.cpp54 if (Ty->isFPOrFPVectorTy()) { in initializationPatternFor()
DCGExprScalar.cpp750 if (Ops.LHS->getType()->isFPOrFPVectorTy()) { in EmitMul()
2764 if (Op->getType()->isFPOrFPVectorTy()) in VisitUnaryMinus()
2792 if (Oper->getType()->isFPOrFPVectorTy()) { in VisitUnaryLNot()
3221 if (Ops.LHS->getType()->isFPOrFPVectorTy()) { in EmitDiv()
3610 if (op.LHS->getType()->isFPOrFPVectorTy()) { in EmitAdd()
3760 if (op.LHS->getType()->isFPOrFPVectorTy()) { in EmitSub()
4107 } else if (LHS->getType()->isFPOrFPVectorTy()) { in EmitCompare()
4260 if (LHS->getType()->isFPOrFPVectorTy()) { in VisitBinLAnd()
4376 if (LHS->getType()->isFPOrFPVectorTy()) { in VisitBinLOr()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DConstants.cpp51 if (getType()->isFPOrFPVectorTy()) in isNegativeZeroValue()
1035 if (Ty->isFPOrFPVectorTy()) in getZeroValueForNegation()
2074 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in getFPCast()
2133 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in getFPTrunc()
2145 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in getFPExtend()
2157 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() && in getUIToFP()
2168 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() && in getSIToFP()
2179 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() && in getFPToUI()
2190 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() && in getFPToSI()
2266 assert(C->getType()->isFPOrFPVectorTy() && in get()
[all …]
DVerifier.cpp2827 Assert(SrcTy->isFPOrFPVectorTy(), "FPTrunc only operates on FP", &I); in visitFPTruncInst()
2828 Assert(DestTy->isFPOrFPVectorTy(), "FPTrunc only produces an FP", &I); in visitFPTruncInst()
2845 Assert(SrcTy->isFPOrFPVectorTy(), "FPExt only operates on FP", &I); in visitFPExtInst()
2846 Assert(DestTy->isFPOrFPVectorTy(), "FPExt only produces an FP", &I); in visitFPExtInst()
2866 Assert(DestTy->isFPOrFPVectorTy(), "UIToFP result must be FP or FP vector", in visitUIToFPInst()
2889 Assert(DestTy->isFPOrFPVectorTy(), "SIToFP result must be FP or FP vector", in visitSIToFPInst()
2910 Assert(SrcTy->isFPOrFPVectorTy(), "FPToUI source must be FP or FP vector", in visitFPToUIInst()
2933 Assert(SrcTy->isFPOrFPVectorTy(), "FPToSI source must be FP or FP vector", in visitFPToSIInst()
3460 Assert(U.getType()->isFPOrFPVectorTy(), in visitUnaryOperator()
3501 Assert(B.getType()->isFPOrFPVectorTy(), in visitBinaryOperator()
[all …]
DInstructions.cpp2457 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
2514 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
2528 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
2541 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
3163 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in CreateFPCast()
3176 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in CreateFPCast()
3384 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() && in castIsValid()
3387 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() && in castIsValid()
3391 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() && in castIsValid()
3395 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() && in castIsValid()
DConstantFold.cpp1566 if (CE1Op0->getType()->isFPOrFPVectorTy()) in evaluateICmpRelation()
2026 !CE2Op0->getType()->isFPOrFPVectorTy()) { in ConstantFoldCompareInstruction()
DAutoUpgrade.cpp508 if (Idx->isFPOrFPVectorTy()) { in UpgradeX86IntrinsicFunction()
1212 bool IsFloat = Ty->isFPOrFPVectorTy(); in UpgradeX86VPERMT2Intrinsics()
1700 bool IsFloat = CI.getType()->isFPOrFPVectorTy(); in upgradeAVX512MaskToSelect()
DFunction.cpp1447 case IITDescriptor::AK_AnyFloat: return !Ty->isFPOrFPVectorTy(); in matchIntrinsicType()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
DMipsCCState.cpp63 if (Ty->isVectorTy() && Ty->isFPOrFPVectorTy()) in originalTypeIsVectorFloat()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DType.h189 bool isFPOrFPVectorTy() const { return getScalarType()->isFloatingPointTy(); } in isFPOrFPVectorTy() function
DOperator.h406 return Ty->isFPOrFPVectorTy(); in classof()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUPrintfRuntimeBinding.cpp398 if (ArgType->isFPOrFPVectorTy() && !isa<VectorType>(ArgType)) { in lowerPrintfForGpu()
DAMDGPUTargetTransformInfo.cpp537 bool IsFloat = Ty->isFPOrFPVectorTy(); in getArithmeticInstrCost()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h706 if (!Ty->isIntOrIntVectorTy() && !Ty->isFPOrFPVectorTy() && in getOperandsScalarizationOverhead()
762 bool IsFloat = Ty->isFPOrFPVectorTy();
2119 if (Ty->isFPOrFPVectorTy()) { in getMinMaxReductionCost()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DReassociate.cpp764 if (NewOp->getType()->isFPOrFPVectorTy()) in RewriteExprTree()
820 return C->getType()->isFPOrFPVectorTy() ? ConstantExpr::getFNeg(C) : in NegateValue()
2201 if (I->getType()->isFPOrFPVectorTy() && !I->isFast()) in OptimizeInst()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp1757 if (SI.getType()->isFPOrFPVectorTy()) { in foldAddSubSelect()
1775 if (SI.getType()->isFPOrFPVectorTy()) { in foldAddSubSelect()
2960 if (SelType->isIntOrIntVectorTy() || SelType->isFPOrFPVectorTy()) { in visitSelectInst()
2991 (LHS->getType()->isFPOrFPVectorTy() && in visitSelectInst()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DValueTypes.cpp61 return LLVMTy->isFPOrFPVectorTy(); in isExtendedFloatingPoint()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1038 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedUnaryOpcode()
1052 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode()
2778 if (OpTy->isFPOrFPVectorTy()) in parseConstants()
4358 bool IsFP = LHS->getType()->isFPOrFPVectorTy(); in parseFunctionBody()
4366 if (LHS->getType()->isFPOrFPVectorTy()) in parseFunctionBody()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/
DLLParser.cpp3386 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
3413 if (!Val->getType()->isFPOrFPVectorTy()) in parseValID()
3488 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
6538 bool Valid = IsFP ? LHS->getType()->isFPOrFPVectorTy() in parseUnaryOp()
6680 bool Valid = IsFP ? LHS->getType()->isFPOrFPVectorTy() in parseArithmetic()
6723 if (!LHS->getType()->isFPOrFPVectorTy()) in parseCompare()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp402 if (I.getType()->isFPOrFPVectorTy()) { in computeUsesMSVCFloatingPoint()
407 if (Op->getType()->isFPOrFPVectorTy()) { in computeUsesMSVCFloatingPoint()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp2660 RetTy->isFPOrFPVectorTy() || in maybeHandleSimpleNomemIntrinsic()
4192 if (T->isFPOrFPVectorTy() || T->isX86_MMXTy()) in classifyArgument()
4571 if (T->isFPOrFPVectorTy()) in classifyArgument()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86TargetTransformInfo.cpp4007 assert(Ty->isFPOrFPVectorTy() && in getMinMaxCost()
4107 if (Ty->isFPOrFPVectorTy()) { in getMinMaxCost()
4137 assert(ValTy->isFPOrFPVectorTy() && in getMinMaxReductionCost()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64TargetTransformInfo.cpp1915 Ty->isFPOrFPVectorTy() ? Instruction::FCmp : Instruction::ICmp; in getMinMaxReductionCost()

12