Home
last modified time | relevance | path

Searched refs:FPVT (Results 1 – 12 of 12) 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/ARM/
H A DARMISelLowering.h753 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.cpp13894 bool ARMTargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
13896 if (!isOperationLegalOrCustom(Op, VT) || !FPVT.isSimple()) in shouldConvertFpToSat()
13899 switch (FPVT.getSimpleVT().SimpleTy) { in shouldConvertFpToSat()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h827 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DRISCVISelLowering.cpp21141 bool RISCVTargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat()
21143 if (!isOperationLegalOrCustom(Op, VT) || !FPVT.isSimple()) in shouldConvertFpToSat()
21146 switch (FPVT.getSimpleVT().SimpleTy) { in shouldConvertFpToSat()
21138 shouldConvertFpToSat(unsigned Op,EVT FPVT,EVT VT) const shouldConvertFpToSat() argument
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1186 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override { in shouldConvertFpToSat() argument
H A DX86ISelLowering.cpp22794 EVT FPVT = N->getValueType(0); in optimizeFMulOrFDivAsShiftAddBitcast() local
22800 if (FPVT.isVector() && in optimizeFMulOrFDivAsShiftAddBitcast()
22801 FPVT.getScalarSizeInBits() != IntVT.getScalarSizeInBits()) in optimizeFMulOrFDivAsShiftAddBitcast()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h908 bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const override;
H A DAArch64ISelLowering.cpp26925 bool AArch64TargetLowering::shouldConvertFpToSat(unsigned Op, EVT FPVT, in shouldConvertFpToSat() argument
26929 if (FPVT == MVT::v8f16 && !Subtarget->hasFullFP16()) in shouldConvertFpToSat()
26931 if (FPVT == MVT::v8bf16) in shouldConvertFpToSat()
26933 return TargetLowering::shouldConvertFpToSat(Op, FPVT, VT); in shouldConvertFpToSat()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5545 EVT FPVT = N0.getOperand(0).getValueType().getScalarType(); in isSaturatingMinMax() local
5546 if (FPVT.isSimple()) { in isSaturatingMinMax()
5547 Type *InputTy = FPVT.getTypeForEVT(*DAG.getContext()); in isSaturatingMinMax()
5625 EVT FPVT = Fp.getOperand(0).getValueType(); in PerformMinMaxFpToSatCombine() local
5627 if (FPVT.isVector()) in PerformMinMaxFpToSatCombine()
5629 FPVT.getVectorElementCount()); in PerformMinMaxFpToSatCombine()
5631 if (!DAG.getTargetLoweringInfo().shouldConvertFpToSat(NewOpc, FPVT, NewVT)) in PerformMinMaxFpToSatCombine()
5660 EVT FPVT = N0.getOperand(0).getValueType(); in PerformUMinFpToSatCombine() local
5662 if (FPVT.isVector()) in PerformUMinFpToSatCombine()
5664 FPVT.getVectorElementCount()); in PerformUMinFpToSatCombine()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h3390 virtual bool shouldConvertFpToSat(unsigned Op, EVT FPVT, EVT VT) const { in shouldConvertFpToSat() argument