@@ -15,6 +15,7 @@ namespace Slang {
15
15
struct SharedSCCPContext
16
16
{
17
17
IRModule* module;
18
+ DiagnosticSink* sink;
18
19
};
19
20
//
20
21
// Next we have a context struct that will be applied for each function (or other
@@ -580,7 +581,7 @@ struct SCCPContext
580
581
type,
581
582
v0,
582
583
v1,
583
- [](IRIntegerValue c0, IRIntegerValue c1) { return c0 / c1; },
584
+ [](IRIntegerValue c0, IRIntegerValue c1) { return c0 / c1; },
584
585
[](IRFloatingPointValue c0, IRFloatingPointValue c1) { return c0 / c1; });
585
586
}
586
587
LatticeVal evalEql (IRType* type, LatticeVal v0, LatticeVal v1)
@@ -870,10 +871,27 @@ struct SCCPContext
870
871
getLatticeVal (inst->getOperand (0 )),
871
872
getLatticeVal (inst->getOperand (1 )));
872
873
case kIROp_Div :
874
+ {
875
+ // Detect divide by zero error.
876
+ auto divisor = getLatticeVal (inst->getOperand (1 ));
877
+ if (divisor.flavor == LatticeVal::Flavor::Constant)
878
+ {
879
+ if (isIntegralType (divisor.value ->getDataType ()))
880
+ {
881
+ auto c = as<IRConstant>(divisor.value );
882
+ if (c->value .intVal == 0 )
883
+ {
884
+ if (shared->sink )
885
+ shared->sink ->diagnose (inst->sourceLoc , Diagnostics::divideByZero);
886
+ return LatticeVal::getAny ();
887
+ }
888
+ }
889
+ }
873
890
return evalDiv (
874
891
inst->getDataType (),
875
892
getLatticeVal (inst->getOperand (0 )),
876
- getLatticeVal (inst->getOperand (1 )));
893
+ divisor);
894
+ }
877
895
case kIROp_Eql :
878
896
return evalEql (
879
897
inst->getDataType (),
@@ -1658,10 +1676,15 @@ static bool applySparseConditionalConstantPropagationRec(
1658
1676
}
1659
1677
1660
1678
bool applySparseConditionalConstantPropagation (
1661
- IRModule* module)
1679
+ IRModule* module,
1680
+ DiagnosticSink* sink)
1662
1681
{
1682
+ if (sink && sink->getErrorCount ())
1683
+ return false ;
1684
+
1663
1685
SharedSCCPContext shared;
1664
1686
shared.module = module;
1687
+ shared.sink = sink;
1665
1688
1666
1689
// First we fold constants at global scope.
1667
1690
SCCPContext globalContext;
@@ -1676,21 +1699,30 @@ bool applySparseConditionalConstantPropagation(
1676
1699
}
1677
1700
1678
1701
bool applySparseConditionalConstantPropagationForGlobalScope (
1679
- IRModule* module)
1702
+ IRModule* module,
1703
+ DiagnosticSink* sink)
1680
1704
{
1705
+ if (sink && sink->getErrorCount ())
1706
+ return false ;
1707
+
1681
1708
SharedSCCPContext shared;
1682
1709
shared.module = module;
1710
+ shared.sink = sink;
1683
1711
SCCPContext globalContext;
1684
1712
globalContext.shared = &shared;
1685
1713
globalContext.code = nullptr ;
1686
1714
bool changed = globalContext.applyOnGlobalScope (module);
1687
1715
return changed;
1688
1716
}
1689
1717
1690
- bool applySparseConditionalConstantPropagation (IRInst* func)
1718
+ bool applySparseConditionalConstantPropagation (IRInst* func, DiagnosticSink* sink )
1691
1719
{
1720
+ if (sink && sink->getErrorCount ())
1721
+ return false ;
1722
+
1692
1723
SharedSCCPContext shared;
1693
1724
shared.module = func->getModule ();
1725
+ shared.sink = sink;
1694
1726
1695
1727
SCCPContext globalContext;
1696
1728
globalContext.shared = &shared;
0 commit comments