Home
last modified time | relevance | path

Searched refs:FPVT (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.cpp112 for (MVT FPVT : MVT::fp_valuetypes()) { in initSPUActions() local
114 setLoadExtAction(ISD::EXTLOAD, FPVT, OtherFPVT, Expand); in initSPUActions()
115 setTruncStoreAction(FPVT, OtherFPVT, Expand); in initSPUActions()
219 for (MVT FPVT : MVT::fp_valuetypes()) { in initSPUActions() local
220 setOperationAction(ISD::FP16_TO_FP, FPVT, Expand); in initSPUActions()
221 setOperationAction(ISD::FP_TO_FP16, FPVT, Expand); in initSPUActions()
238 for (MVT FPVT : {MVT::f32, MVT::f64}) { in initSPUActions()
240 setOperationAction(ISD::ConstantFP, FPVT, Legal); in initSPUActions()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h388 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DRISCVISelLowering.cpp23569 bool RISCVTargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
23571 if (!isOperationLegalOrCustom(Op, VT) || !FPVT.isSimple()) in shouldConvertFpToSat()
23574 switch (FPVT.getSimpleVT().SimpleTy) { in shouldConvertFpToSat()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h780 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DARMFastISel.cpp1837 EVT FPVT = TLI.getValueType(DL, I->getType(), true); in SelectBinaryFPOp() local
1838 if (!FPVT.isSimple()) return false; in SelectBinaryFPOp()
1839 MVT VT = FPVT.getSimpleVT(); in SelectBinaryFPOp()
H A DARMISelLowering.cpp13971 bool ARMTargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
13973 if (!isOperationLegalOrCustom(Op, VT) || !FPVT.isSimple()) in shouldConvertFpToSat()
13976 switch (FPVT.getSimpleVT().SimpleTy) { in shouldConvertFpToSat()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h415 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DAArch64ISelLowering.cpp28518 bool AArch64TargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
28522 if (FPVT == MVT::v8f16 && !Subtarget->hasFullFP16()) in shouldConvertFpToSat()
28524 if (FPVT == MVT::v8bf16) in shouldConvertFpToSat()
28526 return TargetLowering::shouldConvertFpToSat(Op, FPVT, VT); in shouldConvertFpToSat()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1272 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override { in shouldConvertFpToSat() argument
H A DX86ISelLowering.cpp23536 EVT FPVT = N->getValueType(0); in optimizeFMulOrFDivAsShiftAddBitcast() local
23542 if (FPVT.isVector() && in optimizeFMulOrFDivAsShiftAddBitcast()
23543 FPVT.getScalarSizeInBits() != IntVT.getScalarSizeInBits()) in optimizeFMulOrFDivAsShiftAddBitcast()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1861 EVT FPVT = BW == 32 ? MVT::f32 : MVT::f64; in ExpandUINT_TO_FLOAT() local
1865 EVT FloatVecVT = SrcVT.changeVectorElementType(FPVT); in ExpandUINT_TO_FLOAT()
H A DDAGCombiner.cpp5920 EVT FPVT = N0.getOperand(0).getValueType().getScalarType(); in isSaturatingMinMax() local
5921 if (FPVT.isSimple()) { in isSaturatingMinMax()
5922 Type *InputTy = FPVT.getTypeForEVT(*DAG.getContext()); in isSaturatingMinMax()
6000 EVT FPVT = Fp.getOperand(0).getValueType(); in PerformMinMaxFpToSatCombine() local
6002 if (FPVT.isVector()) in PerformMinMaxFpToSatCombine()
6004 FPVT.getVectorElementCount()); in PerformMinMaxFpToSatCombine()
6006 if (!DAG.getTargetLoweringInfo().shouldConvertFpToSat(NewOpc, FPVT, NewVT)) in PerformMinMaxFpToSatCombine()
6035 EVT FPVT = N0.getOperand(0).getValueType(); in PerformUMinFpToSatCombine() local
6037 if (FPVT.isVector()) in PerformUMinFpToSatCombine()
6039 FPVT.getVectorElementCount()); in PerformUMinFpToSatCombine()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h3493 virtual bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const { in shouldConvertFpToSat() argument