diff options
Diffstat (limited to 'Ryujinx.Graphics/Shader/IntermediateRepresentation/BasicBlock.cs')
| -rw-r--r-- | Ryujinx.Graphics/Shader/IntermediateRepresentation/BasicBlock.cs | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/Ryujinx.Graphics/Shader/IntermediateRepresentation/BasicBlock.cs b/Ryujinx.Graphics/Shader/IntermediateRepresentation/BasicBlock.cs deleted file mode 100644 index 94975337..00000000 --- a/Ryujinx.Graphics/Shader/IntermediateRepresentation/BasicBlock.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System.Collections.Generic; - -namespace Ryujinx.Graphics.Shader.IntermediateRepresentation -{ - class BasicBlock - { - public int Index { get; set; } - - public LinkedList<INode> Operations { get; } - - private BasicBlock _next; - private BasicBlock _branch; - - public BasicBlock Next - { - get => _next; - set => _next = AddSuccessor(_next, value); - } - - public BasicBlock Branch - { - get => _branch; - set => _branch = AddSuccessor(_branch, value); - } - - public bool HasBranch => _branch != null; - - public List<BasicBlock> Predecessors { get; } - - public HashSet<BasicBlock> DominanceFrontiers { get; } - - public BasicBlock ImmediateDominator { get; set; } - - public BasicBlock() - { - Operations = new LinkedList<INode>(); - - Predecessors = new List<BasicBlock>(); - - DominanceFrontiers = new HashSet<BasicBlock>(); - } - - public BasicBlock(int index) : this() - { - Index = index; - } - - private BasicBlock AddSuccessor(BasicBlock oldBlock, BasicBlock newBlock) - { - oldBlock?.Predecessors.Remove(this); - newBlock?.Predecessors.Add(this); - - return newBlock; - } - - public INode GetLastOp() - { - return Operations.Last?.Value; - } - } -}
\ No newline at end of file |
