mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
fix setcc on floats, fixes singlesource:pi, perhaps others
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20172 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d2beaa63b3
commit
572af908e4
@ -63,6 +63,8 @@ namespace {
|
|||||||
setOperationAction(ISD::MEMSET , MVT::Other, Expand);
|
setOperationAction(ISD::MEMSET , MVT::Other, Expand);
|
||||||
setOperationAction(ISD::MEMCPY , MVT::Other, Expand);
|
setOperationAction(ISD::MEMCPY , MVT::Other, Expand);
|
||||||
|
|
||||||
|
setOperationAction(ISD::SETCC , MVT::f32, Promote);
|
||||||
|
|
||||||
computeRegisterProperties();
|
computeRegisterProperties();
|
||||||
|
|
||||||
addLegalFPImmediate(+0.0); //F31
|
addLegalFPImmediate(+0.0); //F31
|
||||||
@ -1109,15 +1111,17 @@ unsigned ISel::SelectExpr(SDOperand N) {
|
|||||||
//Can only compare doubles, and dag won't promote for me
|
//Can only compare doubles, and dag won't promote for me
|
||||||
if (SetCC->getOperand(0).getValueType() == MVT::f32)
|
if (SetCC->getOperand(0).getValueType() == MVT::f32)
|
||||||
{
|
{
|
||||||
|
std::cerr << "Setcc On float?\n";
|
||||||
Tmp3 = MakeReg(MVT::f64);
|
Tmp3 = MakeReg(MVT::f64);
|
||||||
BuildMI(BB, Alpha::CVTST, 1, Tmp3).addReg(Tmp1);
|
BuildMI(BB, Alpha::CVTST, 1, Tmp3).addReg(Tmp1);
|
||||||
Tmp1 = Tmp3;
|
Tmp1 = Tmp3;
|
||||||
}
|
}
|
||||||
if (SetCC->getOperand(1).getValueType() == MVT::f32)
|
if (SetCC->getOperand(1).getValueType() == MVT::f32)
|
||||||
{
|
{
|
||||||
|
std::cerr << "Setcc On float?\n";
|
||||||
Tmp3 = MakeReg(MVT::f64);
|
Tmp3 = MakeReg(MVT::f64);
|
||||||
BuildMI(BB, Alpha::CVTST, 1, Tmp3).addReg(Tmp2);
|
BuildMI(BB, Alpha::CVTST, 1, Tmp3).addReg(Tmp2);
|
||||||
Tmp1 = Tmp2;
|
Tmp2 = Tmp3;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rev) std::swap(Tmp1, Tmp2);
|
if (rev) std::swap(Tmp1, Tmp2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user