forked from OSchip/llvm-project
Improve STRICT_FSETCC codegen in absence of no NaN
As for SETCC, use a less expensive condition code when generating STRICT_FSETCC if the node is known not to have Nan. Reviewed By: SjoerdMeijer Differential Revision: https://reviews.llvm.org/D91972
This commit is contained in:
parent
a56e57493b
commit
bad0290ce3
|
@ -7126,7 +7126,10 @@ void SelectionDAGBuilder::visitConstrainedFPIntrinsic(
|
|||
case ISD::STRICT_FSETCC:
|
||||
case ISD::STRICT_FSETCCS: {
|
||||
auto *FPCmp = dyn_cast<ConstrainedFPCmpIntrinsic>(&FPI);
|
||||
Opers.push_back(DAG.getCondCode(getFCmpCondCode(FPCmp->getPredicate())));
|
||||
ISD::CondCode Condition = getFCmpCondCode(FPCmp->getPredicate());
|
||||
if (TM.Options.NoNaNsFPMath)
|
||||
Condition = getFCmpCodeWithoutNaN(Condition);
|
||||
Opers.push_back(DAG.getCondCode(Condition));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,112 @@
|
|||
; RUN: llc < %s -mtriple=arm64-eabi -mattr=+fullfp16 -enable-no-nans-fp-math | FileCheck %s
|
||||
|
||||
declare i1 @llvm.experimental.constrained.fcmp.f32(float, float, metadata, metadata)
|
||||
declare i1 @llvm.experimental.constrained.fcmp.f64(double, double, metadata, metadata)
|
||||
|
||||
; CHECK-LABEL: @f32_constrained_fcmp_ueq
|
||||
; CHECK: fcmp s0, s1
|
||||
; CHECK-NEXT: cset w0, eq
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f32_constrained_fcmp_ueq(float %a, float %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f32(float %a, float %b, metadata !"ueq", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f32_constrained_fcmp_une
|
||||
; CHECK: fcmp s0, s1
|
||||
; CHECK-NEXT: cset w0, ne
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f32_constrained_fcmp_une(float %a, float %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f32(float %a, float %b, metadata !"une", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f32_constrained_fcmp_ugt
|
||||
; CHECK: fcmp s0, s1
|
||||
; CHECK-NEXT: cset w0, gt
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f32_constrained_fcmp_ugt(float %a, float %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f32(float %a, float %b, metadata !"ugt", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f32_constrained_fcmp_uge
|
||||
; CHECK: fcmp s0, s1
|
||||
; CHECK-NEXT: cset w0, ge
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f32_constrained_fcmp_uge(float %a, float %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f32(float %a, float %b, metadata !"uge", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f32_constrained_fcmp_ult
|
||||
; CHECK: fcmp s0, s1
|
||||
; CHECK-NEXT: cset w0, lt
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f32_constrained_fcmp_ult(float %a, float %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f32(float %a, float %b, metadata !"ult", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f32_constrained_fcmp_ule
|
||||
; CHECK: fcmp s0, s1
|
||||
; CHECK-NEXT: cset w0, le
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f32_constrained_fcmp_ule(float %a, float %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f32(float %a, float %b, metadata !"ule", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f64_constrained_fcmp_ueq
|
||||
; CHECK: fcmp d0, d1
|
||||
; CHECK-NEXT: cset w0, eq
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f64_constrained_fcmp_ueq(double %a, double %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f64(double %a, double %b, metadata !"ueq", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f64_constrained_fcmp_une
|
||||
; CHECK: fcmp d0, d1
|
||||
; CHECK-NEXT: cset w0, ne
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f64_constrained_fcmp_une(double %a, double %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f64(double %a, double %b, metadata !"une", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f64_constrained_fcmp_ugt
|
||||
; CHECK: fcmp d0, d1
|
||||
; CHECK-NEXT: cset w0, gt
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f64_constrained_fcmp_ugt(double %a, double %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f64(double %a, double %b, metadata !"ugt", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f64_constrained_fcmp_uge
|
||||
; CHECK: fcmp d0, d1
|
||||
; CHECK-NEXT: cset w0, ge
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f64_constrained_fcmp_uge(double %a, double %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f64(double %a, double %b, metadata !"uge", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f64_constrained_fcmp_ult
|
||||
; CHECK: fcmp d0, d1
|
||||
; CHECK-NEXT: cset w0, lt
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f64_constrained_fcmp_ult(double %a, double %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f64(double %a, double %b, metadata !"ult", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @f64_constrained_fcmp_ule
|
||||
; CHECK: fcmp d0, d1
|
||||
; CHECK-NEXT: cset w0, le
|
||||
; CHECK-NEXT: ret
|
||||
define i1 @f64_constrained_fcmp_ule(double %a, double %b) nounwind ssp {
|
||||
%cmp = tail call i1 @llvm.experimental.constrained.fcmp.f64(double %a, double %b, metadata !"ule", metadata !"fpexcept.strict")
|
||||
ret i1 %cmp
|
||||
}
|
Loading…
Reference in New Issue