/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | Float2Int.cpp | 101 case Instruction::FPToUI: in findRoots() 184 case Instruction::FPToUI: in walkBackwards() 279 case Instruction::FPToUI: in calcRange() 435 case Instruction::FPToUI: in convert()
|
H A D | SpeculativeExecution.cpp | 234 case Instruction::FPToUI: in ComputeSpeculationCost()
|
H A D | GVNSink.cpp | 508 case Instruction::FPToUI: in lookupOrAdd()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXILShaderFlags.cpp | 31 case Instruction::FPToUI: in updateFlags()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsOs16.cpp | 87 case Instruction::FPToUI: in needsFP()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ExpandLargeFpConvert.cpp | 103 if (FPToI->getOpcode() == Instruction::FPToUI) { in expandFPToI() 608 case Instruction::FPToUI: in runImpl() 658 if (I->getOpcode() == Instruction::FPToUI || in runImpl()
|
H A D | TargetLoweringBase.cpp | 1802 case FPToUI: return ISD::FP_TO_UINT; in InstructionOpcodeToISD()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ConstrainedOps.def | 61 DAG_INSTRUCTION(FPToUI, 1, 0, experimental_constrained_fptoui, FP_TO_UINT)
|
H A D | Instruction.def | 187 HANDLE_CAST_INST(41, FPToUI , FPToUIInst ) // floating point -> UInt
|
H A D | VPIntrinsics.def | 503 HELPER_REGISTER_FP_CAST_VP(fptoui, VP_FP_TO_UINT, FPToUI, FP_TO_UINT, 0)
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZTargetTransformInfo.cpp | 794 if ((Opcode == Instruction::FPToSI || Opcode == Instruction::FPToUI) && in getCastInstrCost() 885 Opcode == Instruction::FPToSI || Opcode == Instruction::FPToUI) { in getCastInstrCost() 910 (Opcode == Instruction::FPToSI || Opcode == Instruction::FPToUI)) in getCastInstrCost()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanAnalysis.cpp | 207 case Instruction::FPToUI: in inferScalarTypeForRecipe()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXTargetTransformInfo.cpp | 292 return {Instruction::FPToUI}; in simplifyNvvmIntrinsic()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ObjCARCInstKind.cpp | 277 case Instruction::FPToUI: in GetARCInstKind()
|
H A D | ValueTracking.cpp | 1128 case Instruction::FPToUI: in computeKnownBitsFromOperator() 7264 case Instruction::FPToUI: in canCreateUndefOrPoison() 8673 case Instruction::FPToUI: in lookThroughCast() 8680 CastedTo = ConstantFoldCastOperand(Instruction::FPToUI, C, SrcTy, DL); in lookThroughCast() 8739 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI) in matchDecomposedSelectPattern() 8748 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI) in matchDecomposedSelectPattern()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 205 case Instruction::FPToUI: in ConstantFoldCastInstruction() 211 APSInt IntVal(DestBitWidth, opc == Instruction::FPToUI); in ConstantFoldCastInstruction()
|
H A D | Instructions.cpp | 2731 case Instruction::FPToUI: in isNoopCast() 2984 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore); in Create() 3188 return FPToUI; // FP -> uint in getCastOpcode() 3292 case Instruction::FPToUI: in castIsValid() 3393 : CastInst(Ty, FPToUI, S, Name, InsertBefore) { in FPToUIInst()
|
H A D | Constants.cpp | 1542 case Instruction::FPToUI: in getWithOperands() 2406 case Instruction::FPToUI: in isDesirableCastOp() 2428 case Instruction::FPToUI: in isSupportedCastOp()
|
H A D | Instruction.cpp | 753 case FPToUI: return "fptoui"; in getOpcodeName()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineVectorOps.cpp | 1807 case Instruction::FPToUI: in canEvaluateShuffled() 1899 case Instruction::FPToUI: in buildNew() 1970 case Instruction::FPToUI: in evaluateInDifferentElementOrder() 2522 case Instruction::FPToUI: in foldCastShuffle()
|
H A D | InstCombineCasts.cpp | 87 case Instruction::FPToUI: in EvaluateInDifferentType() 372 case Instruction::FPToUI: in canEvaluateTruncated() 1957 FI.getOpcode() == Instruction::FPToUI ? fcPosNormal : fcNormal; in foldFPtoI()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 877 INSTKEYWORD(fptoui, FPToUI); in LexIdentifier()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyIndVar.cpp | 704 if (Opcode != CastInst::FPToSI && Opcode != CastInst::FPToUI) in replaceFloatIVWithIntegerIV() 716 } else if (Opcode == CastInst::FPToUI || in replaceFloatIVWithIntegerIV()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfoImpl.h | 1268 case Instruction::FPToUI: in getInstructionCost()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 722 case Instruction::FPToUI: // double->APInt conversion handles sign in getConstantValue()
|