Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h768 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DRISCVISelLowering.cpp19522 bool RISCVTargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
19524 if (!isOperationLegalOrCustom(Op, VT) || !FPVT.isSimple()) in shouldConvertFpToSat()
19527 switch (FPVT.getSimpleVT().SimpleTy) { in shouldConvertFpToSat()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h754 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DARMFastISel.cpp1777 EVT FPVT = TLI.getValueType(DL, I->getType(), true); in SelectBinaryFPOp() local
1778 if (!FPVT.isSimple()) return false; in SelectBinaryFPOp()
1779 MVT VT = FPVT.getSimpleVT(); in SelectBinaryFPOp()
H A DARMISelLowering.cpp13889 bool ARMTargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
13891 if (!isOperationLegalOrCustom(Op, VT) || !FPVT.isSimple()) in shouldConvertFpToSat()
13894 switch (FPVT.getSimpleVT().SimpleTy) { in shouldConvertFpToSat()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h885 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DAArch64ISelLowering.cpp25479 bool AArch64TargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
25483 if (FPVT == MVT::v8f16 && !Subtarget->hasFullFP16()) in shouldConvertFpToSat()
25485 return TargetLowering::shouldConvertFpToSat(Op, FPVT, VT); in shouldConvertFpToSat()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1177 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override { in shouldConvertFpToSat() argument
H A DX86ISelLowering.cpp22613 EVT FPVT = N->getValueType(0); in optimizeFMulOrFDivAsShiftAddBitcast() local
22619 if (FPVT.isVector() && in optimizeFMulOrFDivAsShiftAddBitcast()
22620 FPVT.getScalarSizeInBits() != IntVT.getScalarSizeInBits()) in optimizeFMulOrFDivAsShiftAddBitcast()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5548 EVT FPVT = N0.getOperand(0).getValueType().getScalarType(); in isSaturatingMinMax() local
5549 if (FPVT.isSimple()) { in isSaturatingMinMax()
5550 Type *InputTy = FPVT.getTypeForEVT(*DAG.getContext()); in isSaturatingMinMax()
5628 EVT FPVT = Fp.getOperand(0).getValueType(); in PerformMinMaxFpToSatCombine() local
5630 if (FPVT.isVector()) in PerformMinMaxFpToSatCombine()
5632 FPVT.getVectorElementCount()); in PerformMinMaxFpToSatCombine()
5634 if (!DAG.getTargetLoweringInfo().shouldConvertFpToSat(NewOpc, FPVT, NewVT)) in PerformMinMaxFpToSatCombine()
5663 EVT FPVT = N0.getOperand(0).getValueType(); in PerformUMinFpToSatCombine() local
5665 if (FPVT.isVector()) in PerformUMinFpToSatCombine()
5667 FPVT.getVectorElementCount()); in PerformUMinFpToSatCombine()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h3275 virtual bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const { in shouldConvertFpToSat() argument