| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | ISDOpcodes.h | 449 STRICT_SINT_TO_FP, enumerator
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorOps.cpp | 311 if (Op.getOpcode() == ISD::STRICT_SINT_TO_FP || in LegalizeOp() 688 case ISD::STRICT_SINT_TO_FP: in Promote() 1605 (IsStrict && TLI.getOperationAction(ISD::STRICT_SINT_TO_FP, VT) == in ExpandUINT_TO_FLOAT() 1641 SDValue fHI = DAG.getNode(ISD::STRICT_SINT_TO_FP, DL, in ExpandUINT_TO_FLOAT() 1646 SDValue fLO = DAG.getNode(ISD::STRICT_SINT_TO_FP, DL, in ExpandUINT_TO_FLOAT()
|
| H A D | LegalizeDAG.cpp | 1036 case ISD::STRICT_SINT_TO_FP: in LegalizeOp() 2622 bool isSigned = (Node->getOpcode() == ISD::STRICT_SINT_TO_FP || in ExpandLegalINT_TO_FP() 2843 N->getOpcode() == ISD::STRICT_SINT_TO_FP; in PromoteLegalINT_TO_FP() 2847 unsigned SIntOp = IsStrict ? ISD::STRICT_SINT_TO_FP : ISD::SINT_TO_FP; in PromoteLegalINT_TO_FP() 3336 case ISD::STRICT_SINT_TO_FP: in ExpandNode() 4288 case ISD::STRICT_SINT_TO_FP: in ExpandNode() 4534 DAG.getNode(ISD::STRICT_SINT_TO_FP, SDLoc(Node), in ConvertNodeToLibcall() 4660 case ISD::STRICT_SINT_TO_FP: in ConvertNodeToLibcall() 4667 Node->getOpcode() == ISD::STRICT_SINT_TO_FP; in ConvertNodeToLibcall() 4945 Node->getOpcode() == ISD::STRICT_SINT_TO_FP || in PromoteNode() [all …]
|
| H A D | SelectionDAGDumper.cpp | 366 case ISD::STRICT_SINT_TO_FP: return "strict_sint_to_fp"; in getOperationName()
|
| H A D | LegalizeFloatTypes.cpp | 142 case ISD::STRICT_SINT_TO_FP: in SoftenFloatResult() 854 N->getOpcode() == ISD::STRICT_SINT_TO_FP; in SoftenFloatRes_XINT_TO_FP() 1359 case ISD::STRICT_SINT_TO_FP: in ExpandFloatResult() 1774 N->getOpcode() == ISD::STRICT_SINT_TO_FP; in ExpandFloatRes_XINT_TO_FP()
|
| H A D | LegalizeVectorTypes.cpp | 690 case ISD::STRICT_SINT_TO_FP: in ScalarizeVectorOperand() 3010 case ISD::STRICT_SINT_TO_FP: in SplitVectorOperand() 4550 case ISD::STRICT_SINT_TO_FP: in WidenVecRes_StrictFP() 6077 case ISD::STRICT_SINT_TO_FP: in WidenVectorOperand()
|
| H A D | LegalizeIntegerTypes.cpp | 1802 case ISD::STRICT_SINT_TO_FP: Res = PromoteIntOp_STRICT_SINT_TO_FP(N); break; in PromoteIntegerOperand() 5108 case ISD::STRICT_SINT_TO_FP: in ExpandIntegerOperand() 5396 N->getOpcode() == ISD::STRICT_SINT_TO_FP; in ExpandIntOp_XINT_TO_FP()
|
| H A D | SelectionDAGISel.cpp | 1193 case ISD::STRICT_SINT_TO_FP: in DoInstructionSelection()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 253 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i1, Promote); in PPCTargetLowering() 254 AddPromotedToType(ISD::STRICT_SINT_TO_FP, MVT::i1, in PPCTargetLowering() 281 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i1, Custom); in PPCTargetLowering() 529 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i32, Legal); in PPCTargetLowering() 544 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i32, Expand); in PPCTargetLowering() 684 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i64, Custom); in PPCTargetLowering() 8510 UI->getOpcode() != ISD::STRICT_SINT_TO_FP && in directMoveIsProfitable() 8522 Op.getOpcode() == ISD::STRICT_SINT_TO_FP; in convertIntToFP() 8558 Op.getOpcode() == ISD::STRICT_SINT_TO_FP; in LowerINT_TO_FPDirectMove() 8648 Op.getOpcode() == ISD::STRICT_SINT_TO_FP; in LowerINT_TO_FP() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 237 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i8, Promote); in X86TargetLowering() 241 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i16, Custom); in X86TargetLowering() 244 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i32, Custom); in X86TargetLowering() 248 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i64, Custom); in X86TargetLowering() 2471 ISD::STRICT_SINT_TO_FP, in X86TargetLowering() 18830 Op.getOpcode() == ISD::STRICT_SINT_TO_FP || in LowerI64IntToFP_AVX512DQ() 18872 Op.getOpcode() == ISD::STRICT_SINT_TO_FP || in LowerI64IntToFP16() 28815 Op->getOpcode() == ISD::STRICT_SINT_TO_FP) in LowerWin64_INT128_TO_FP() 31886 case ISD::STRICT_SINT_TO_FP: in LowerOperation() 32624 case ISD::STRICT_SINT_TO_FP: in ReplaceNodeResults() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 236 setOperationAction(ISD::STRICT_SINT_TO_FP, VT, Legal); in SystemZTargetLowering() 278 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i128, LibCall); in SystemZTargetLowering() 469 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::v2i64, Legal); in SystemZTargetLowering() 470 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::v2f64, Legal); in SystemZTargetLowering() 489 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::v4i32, Legal); in SystemZTargetLowering() 490 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::v4f32, Legal); in SystemZTargetLowering()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 595 ISD::STRICT_UINT_TO_FP, ISD::STRICT_SINT_TO_FP}, in RISCVTargetLowering() 600 ISD::STRICT_UINT_TO_FP, ISD::STRICT_SINT_TO_FP}, in RISCVTargetLowering() 752 ISD::FP_TO_UINT, ISD::STRICT_SINT_TO_FP, in RISCVTargetLowering() 810 ISD::FP_TO_UINT, ISD::STRICT_SINT_TO_FP, in RISCVTargetLowering() 1132 ISD::STRICT_SINT_TO_FP, in RISCVTargetLowering() 6155 case ISD::STRICT_SINT_TO_FP: in LowerOperation() 6265 case ISD::STRICT_SINT_TO_FP: in LowerOperation()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetSelectionDAG.td | 613 def strict_sint_to_fp : SDNode<"ISD::STRICT_SINT_TO_FP",
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 535 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i32, Custom); in AArch64TargetLowering() 536 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i64, Custom); in AArch64TargetLowering() 537 setOperationAction(ISD::STRICT_SINT_TO_FP, MVT::i128, Custom); in AArch64TargetLowering() 1100 ISD::STRICT_SINT_TO_FP, ISD::STRICT_UINT_TO_FP, ISD::STRICT_FP_ROUND}) in AArch64TargetLowering() 1111 for (auto Op : {ISD::SINT_TO_FP, ISD::UINT_TO_FP, ISD::STRICT_SINT_TO_FP, in AArch64TargetLowering() 4260 bool IsSigned = Opc == ISD::SINT_TO_FP || Opc == ISD::STRICT_SINT_TO_FP; in LowerVectorINT_TO_FP() 6255 case ISD::STRICT_SINT_TO_FP: in LowerOperation()
|