aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs')
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs
index 23180ff82..6ec90fa3c 100644
--- a/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs
@@ -138,6 +138,8 @@ namespace Ryujinx.Graphics.Shader.Translation.Optimizations
138 // Ensure that conditions met for that branch are also met for the current one. 138 // Ensure that conditions met for that branch are also met for the current one.
139 // Prefer the latest sources for the phi node. 139 // Prefer the latest sources for the phi node.
140 140
141 int undefCount = 0;
142
141 for (int i = phiNode.SourcesCount - 1; i >= 0; i--) 143 for (int i = phiNode.SourcesCount - 1; i >= 0; i--)
142 { 144 {
143 BasicBlock phiBlock = phiNode.GetBlock(i); 145 BasicBlock phiBlock = phiNode.GetBlock(i);
@@ -159,6 +161,26 @@ namespace Ryujinx.Graphics.Shader.Translation.Optimizations
159 return match; 161 return match;
160 } 162 }
161 } 163 }
164 else if (phiSource.Type == OperandType.Undefined)
165 {
166 undefCount++;
167 }
168 }
169
170 // If all sources but one are undefined, we can assume that the one
171 // that is not undefined is the right one.
172
173 if (undefCount == phiNode.SourcesCount - 1)
174 {
175 for (int i = phiNode.SourcesCount - 1; i >= 0; i--)
176 {
177 Operand phiSource = phiNode.GetSource(i);
178
179 if (phiSource.Type != OperandType.Undefined)
180 {
181 return phiSource;
182 }
183 }
162 } 184 }
163 } 185 }
164 186