diff options
| author | 2021-10-31 17:46:46 +0100 | |
|---|---|---|
| committer | 2021-10-31 19:34:15 +0100 | |
| commit | c50ad56bf59169bd0fc808ebecfb4a69376f10df (patch) | |
| tree | 56b4c044f6116a092370438c89b96e1400ad363a /src/shader_recompiler/frontend/ir/value.h | |
| parent | Merge pull request #6702 from lat9nq/disable-screensaver (diff) | |
| download | yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.gz yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.xz yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.zip | |
ShaderCache: Order Phi Arguments from farthest away to nearest.
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/value.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/value.h b/src/shader_recompiler/frontend/ir/value.h index 334bb47aa..6c9ef6bdd 100644 --- a/src/shader_recompiler/frontend/ir/value.h +++ b/src/shader_recompiler/frontend/ir/value.h | |||
| @@ -182,6 +182,9 @@ public: | |||
| 182 | /// Add phi operand to a phi instruction. | 182 | /// Add phi operand to a phi instruction. |
| 183 | void AddPhiOperand(Block* predecessor, const Value& value); | 183 | void AddPhiOperand(Block* predecessor, const Value& value); |
| 184 | 184 | ||
| 185 | /// Orders the Phi arguments from farthest away to nearest. | ||
| 186 | void OrderPhiArgs(); | ||
| 187 | |||
| 185 | void Invalidate(); | 188 | void Invalidate(); |
| 186 | void ClearArgs(); | 189 | void ClearArgs(); |
| 187 | 190 | ||