Home
last modified time | relevance | path

Searched refs:FPToUI (Results 1 – 25 of 46) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp101 case Instruction::FPToUI: in findRoots()
184 case Instruction::FPToUI: in walkBackwards()
279 case Instruction::FPToUI: in calcRange()
429 case Instruction::FPToUI: in convert()
H A DSpeculativeExecution.cpp234 case Instruction::FPToUI: in ComputeSpeculationCost()
H A DGVNSink.cpp475 case Instruction::FPToUI: in lookupOrAdd()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILShaderFlags.cpp31 case Instruction::FPToUI: in updateFlags()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsOs16.cpp87 case Instruction::FPToUI: in needsFP()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandLargeFpConvert.cpp103 if (FPToI->getOpcode() == Instruction::FPToUI) { in expandFPToI()
584 case Instruction::FPToUI: in runImpl()
622 if (I->getOpcode() == Instruction::FPToUI || in runImpl()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstrainedOps.def61 DAG_INSTRUCTION(FPToUI, 1, 0, experimental_constrained_fptoui, FP_TO_UINT)
H A DInstruction.def187 HANDLE_CAST_INST(41, FPToUI , FPToUIInst ) // floating point -> UInt
H A DVPIntrinsics.def458 HELPER_REGISTER_FP_CAST_VP(fptoui, VP_FP_TO_UINT, FPToUI, FP_TO_UINT, 0)
H A DPatternMatch.h1811 inline CastInst_match<OpTy, Instruction::FPToUI> m_FPToUI(const OpTy &Op) { in m_FPToUI()
1812 return CastInst_match<OpTy, Instruction::FPToUI>(Op); in m_FPToUI()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanAnalysis.cpp174 case Instruction::FPToUI: in inferScalarTypeForRecipe()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp792 if ((Opcode == Instruction::FPToSI || Opcode == Instruction::FPToUI) && in getCastInstrCost()
883 Opcode == Instruction::FPToSI || Opcode == Instruction::FPToUI) { in getCastInstrCost()
908 (Opcode == Instruction::FPToSI || Opcode == Instruction::FPToUI)) in getCastInstrCost()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.cpp292 return {Instruction::FPToUI}; in simplifyNvvmIntrinsic()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DObjCARCInstKind.cpp277 case Instruction::FPToUI: in GetARCInstKind()
H A DValueTracking.cpp996 case Instruction::FPToUI: in computeKnownBitsFromOperator()
6587 case Instruction::FPToUI: in canCreateUndefOrPoison()
7918 case Instruction::FPToUI: in lookThroughCast()
7925 CastedTo = ConstantFoldCastOperand(Instruction::FPToUI, C, SrcTy, DL); in lookThroughCast()
7984 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI) in matchDecomposedSelectPattern()
7993 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI) in matchDecomposedSelectPattern()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp3086 case Instruction::FPToUI: in isNoopCast()
3345 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore); in Create()
3367 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd); in Create()
3656 return FPToUI; // FP -> uint in getCastOpcode()
3760 case Instruction::FPToUI: in castIsValid()
3902 ) : CastInst(Ty, FPToUI, S, Name, InsertBefore) { in FPToUIInst()
3908 ) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) { in FPToUIInst()
H A DConstants.cpp1467 case Instruction::FPToUI: in getWithOperands()
2185 case Instruction::FPToUI: in isDesirableCastOp()
2207 case Instruction::FPToUI: in isSupportedCastOp()
3234 case Instruction::FPToUI: in getAsInstruction()
H A DConstantFold.cpp265 case Instruction::FPToUI: in ConstantFoldCastInstruction()
271 APSInt IntVal(DestBitWidth, opc == Instruction::FPToUI); in ConstantFoldCastInstruction()
H A DInstruction.cpp661 case FPToUI: return "fptoui"; in getOpcodeName()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp1799 case Instruction::FPToUI: in canEvaluateShuffled()
1891 case Instruction::FPToUI: in buildNew()
1962 case Instruction::FPToUI: in evaluateInDifferentElementOrder()
2498 case Instruction::FPToUI: in foldCastShuffle()
H A DInstCombineCasts.cpp87 case Instruction::FPToUI: in EvaluateInDifferentType()
364 case Instruction::FPToUI: in canEvaluateTruncated()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp679 if (Opcode != CastInst::FPToSI && Opcode != CastInst::FPToUI) in replaceFloatIVWithIntegerIV()
691 } else if (Opcode == CastInst::FPToUI || in replaceFloatIVWithIntegerIV()
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp866 INSTKEYWORD(fptoui, FPToUI); in LexIdentifier()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1225 case Instruction::FPToUI: in getInstructionCost()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp722 case Instruction::FPToUI: // double->APInt conversion handles sign in getConstantValue()

12