aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/StructuredIr/PhiFunctions.cs
diff options
context:
space:
mode:
authorgdk <gab.dark.100@gmail.com>2019-10-13 03:02:07 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit1876b346fea647e8284a66bb6d62c38801035cff (patch)
tree6eeff094298cda84d1613dc5ec0691e51d7b35f1 /Ryujinx.Graphics/Shader/StructuredIr/PhiFunctions.cs
parentf617fb542a0e3d36012d77a4b5acbde7b08902f2 (diff)
Initial work
Diffstat (limited to 'Ryujinx.Graphics/Shader/StructuredIr/PhiFunctions.cs')
-rw-r--r--Ryujinx.Graphics/Shader/StructuredIr/PhiFunctions.cs74
1 files changed, 0 insertions, 74 deletions
diff --git a/Ryujinx.Graphics/Shader/StructuredIr/PhiFunctions.cs b/Ryujinx.Graphics/Shader/StructuredIr/PhiFunctions.cs
deleted file mode 100644
index 53391b62..00000000
--- a/Ryujinx.Graphics/Shader/StructuredIr/PhiFunctions.cs
+++ /dev/null
@@ -1,74 +0,0 @@
-using Ryujinx.Graphics.Shader.IntermediateRepresentation;
-using System.Collections.Generic;
-
-namespace Ryujinx.Graphics.Shader.StructuredIr
-{
- static class PhiFunctions
- {
- public static void Remove(BasicBlock[] blocks)
- {
- for (int blkIndex = 0; blkIndex < blocks.Length; blkIndex++)
- {
- BasicBlock block = blocks[blkIndex];
-
- LinkedListNode<INode> node = block.Operations.First;
-
- while (node != null)
- {
- LinkedListNode<INode> nextNode = node.Next;
-
- if (!(node.Value is PhiNode phi))
- {
- node = nextNode;
-
- continue;
- }
-
- for (int index = 0; index < phi.SourcesCount; index++)
- {
- Operand src = phi.GetSource(index);
-
- BasicBlock srcBlock = phi.GetBlock(index);
-
- Operation copyOp = new Operation(Instruction.Copy, phi.Dest, src);
-
- AddBeforeBranch(srcBlock, copyOp);
- }
-
- block.Operations.Remove(node);
-
- node = nextNode;
- }
- }
- }
-
- private static void AddBeforeBranch(BasicBlock block, INode node)
- {
- INode lastOp = block.GetLastOp();
-
- if (lastOp is Operation operation && IsControlFlowInst(operation.Inst))
- {
- block.Operations.AddBefore(block.Operations.Last, node);
- }
- else
- {
- block.Operations.AddLast(node);
- }
- }
-
- private static bool IsControlFlowInst(Instruction inst)
- {
- switch (inst)
- {
- case Instruction.Branch:
- case Instruction.BranchIfFalse:
- case Instruction.BranchIfTrue:
- case Instruction.Discard:
- case Instruction.Return:
- return true;
- }
-
- return false;
- }
- }
-} \ No newline at end of file