Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp592 if (VTy->isFPOrFPVectorTy() && DestTy->isIntOrIntVectorTy()) { in Act()
600 if (VTy->isIntOrIntVectorTy() && DestTy->isFPOrFPVectorTy()) { in Act()
608 if (VTy->isFPOrFPVectorTy() && DestTy->isFPOrFPVectorTy()) { in Act()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DPatternInit.cpp54 if (Ty->isFPOrFPVectorTy()) { in initializationPatternFor()
H A DCGExprScalar.cpp748 if (Ops.LHS->getType()->isFPOrFPVectorTy()) { in EmitMul()
2754 if (Op->getType()->isFPOrFPVectorTy()) in VisitUnaryMinus()
2782 if (Oper->getType()->isFPOrFPVectorTy()) { in VisitUnaryLNot()
3211 if (Ops.LHS->getType()->isFPOrFPVectorTy()) { in EmitDiv()
3597 if (op.LHS->getType()->isFPOrFPVectorTy()) { in EmitAdd()
3747 if (op.LHS->getType()->isFPOrFPVectorTy()) { in EmitSub()
4094 } else if (LHS->getType()->isFPOrFPVectorTy()) { in EmitCompare()
4247 if (LHS->getType()->isFPOrFPVectorTy()) { in VisitBinLAnd()
4363 if (LHS->getType()->isFPOrFPVectorTy()) { in VisitBinLOr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstants.cpp57 if (getType()->isFPOrFPVectorTy()) in isNegativeZeroValue()
1033 if (Ty->isFPOrFPVectorTy()) in getZeroValueForNegation()
2072 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in getFPCast()
2131 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in getFPTrunc()
2143 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in getFPExtend()
2155 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() && in getUIToFP()
2166 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() && in getSIToFP()
2177 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() && in getFPToUI()
2188 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() && in getFPToSI()
2264 assert(C->getType()->isFPOrFPVectorTy() && in get()
[all …]
H A DVerifier.cpp2893 Assert(SrcTy->isFPOrFPVectorTy(), "FPTrunc only operates on FP", &I); in visitFPTruncInst()
2894 Assert(DestTy->isFPOrFPVectorTy(), "FPTrunc only produces an FP", &I); in visitFPTruncInst()
2911 Assert(SrcTy->isFPOrFPVectorTy(), "FPExt only operates on FP", &I); in visitFPExtInst()
2912 Assert(DestTy->isFPOrFPVectorTy(), "FPExt only produces an FP", &I); in visitFPExtInst()
2932 Assert(DestTy->isFPOrFPVectorTy(), "UIToFP result must be FP or FP vector", in visitUIToFPInst()
2955 Assert(DestTy->isFPOrFPVectorTy(), "SIToFP result must be FP or FP vector", in visitSIToFPInst()
2976 Assert(SrcTy->isFPOrFPVectorTy(), "FPToUI source must be FP or FP vector", in visitFPToUIInst()
2999 Assert(SrcTy->isFPOrFPVectorTy(), "FPToSI source must be FP or FP vector", in visitFPToSIInst()
3494 Assert(U.getType()->isFPOrFPVectorTy(), in visitUnaryOperator()
3535 Assert(B.getType()->isFPOrFPVectorTy(), in visitBinaryOperator()
[all …]
H A DInstructions.cpp2443 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
2500 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
2514 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
2527 assert(getType()->isFPOrFPVectorTy() && in AssertOK()
3143 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in CreateFPCast()
3156 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && in CreateFPCast()
3364 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() && in castIsValid()
3367 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() && in castIsValid()
3371 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() && in castIsValid()
3375 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() && in castIsValid()
H A DConstantFold.cpp1817 if (CE1Op0->getType()->isFPOrFPVectorTy()) in evaluateICmpRelation()
2277 !CE2Op0->getType()->isFPOrFPVectorTy()) { in ConstantFoldCompareInstruction()
H A DAutoUpgrade.cpp508 if (Idx->isFPOrFPVectorTy()) { in UpgradeX86IntrinsicFunction()
1206 bool IsFloat = Ty->isFPOrFPVectorTy(); in UpgradeX86VPERMT2Intrinsics()
1695 bool IsFloat = CI.getType()->isFPOrFPVectorTy(); in upgradeAVX512MaskToSelect()
H A DFunction.cpp1423 case IITDescriptor::AK_AnyFloat: return !Ty->isFPOrFPVectorTy(); in matchIntrinsicType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsCCState.cpp63 if (Ty->isVectorTy() && Ty->isFPOrFPVectorTy()) in originalTypeIsVectorFloat()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DType.h190 bool isFPOrFPVectorTy() const { return getScalarType()->isFloatingPointTy(); } in isFPOrFPVectorTy() function
H A DOperator.h405 return Ty->isFPOrFPVectorTy(); in classof()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h706 if (!Ty->isIntOrIntVectorTy() && !Ty->isFPOrFPVectorTy() && in getOperandsScalarizationOverhead()
762 bool IsFloat = Ty->isFPOrFPVectorTy();
2073 if (Ty->isFPOrFPVectorTy()) { in getMinMaxReductionCost()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp404 if (ArgType->isFPOrFPVectorTy() && !isa<VectorType>(ArgType)) { in lowerPrintfForGpu()
H A DAMDGPUTargetTransformInfo.cpp536 bool IsFloat = Ty->isFPOrFPVectorTy(); in getArithmeticInstrCost()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1757 if (SI.getType()->isFPOrFPVectorTy()) { in foldAddSubSelect()
1775 if (SI.getType()->isFPOrFPVectorTy()) { in foldAddSubSelect()
2917 if (SelType->isIntOrIntVectorTy() || SelType->isFPOrFPVectorTy()) { in visitSelectInst()
2948 (LHS->getType()->isFPOrFPVectorTy() && in visitSelectInst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DValueTypes.cpp62 return LLVMTy->isFPOrFPVectorTy(); in isExtendedFloatingPoint()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1070 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedUnaryOpcode()
1084 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode()
2809 if (OpTy->isFPOrFPVectorTy()) in parseConstants()
4391 bool IsFP = LHS->getType()->isFPOrFPVectorTy(); in parseFunctionBody()
4399 if (LHS->getType()->isFPOrFPVectorTy()) in parseFunctionBody()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp3697 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
3724 if (!Val->getType()->isFPOrFPVectorTy()) in parseValID()
3799 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
6837 bool Valid = IsFP ? LHS->getType()->isFPOrFPVectorTy() in parseUnaryOp()
6979 bool Valid = IsFP ? LHS->getType()->isFPOrFPVectorTy() in parseArithmetic()
7022 if (!LHS->getType()->isFPOrFPVectorTy()) in parseCompare()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp402 if (I.getType()->isFPOrFPVectorTy()) { in computeUsesMSVCFloatingPoint()
407 if (Op->getType()->isFPOrFPVectorTy()) { in computeUsesMSVCFloatingPoint()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2643 RetTy->isFPOrFPVectorTy() || in maybeHandleSimpleNomemIntrinsic()
4170 if (T->isFPOrFPVectorTy() || T->isX86_MMXTy()) in classifyArgument()
4549 if (T->isFPOrFPVectorTy()) in classifyArgument()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp1566 Ty->isFPOrFPVectorTy() ? Instruction::FCmp : Instruction::ICmp; in getMinMaxReductionCost()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp3785 assert(Ty->isFPOrFPVectorTy() && in getMinMaxCost()
3885 if (Ty->isFPOrFPVectorTy()) { in getMinMaxCost()
3920 assert(ValTy->isFPOrFPVectorTy() && in getMinMaxReductionCost()

12