aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/StructuredIr/AstOperand.cs
blob: 1fc0035f2e8c29a41d45893331ed0c0293c40044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
using Ryujinx.Graphics.Shader.Translation;
using System.Collections.Generic;

namespace Ryujinx.Graphics.Shader.StructuredIr
{
    class AstOperand : AstNode
    {
        public HashSet<IAstNode> Defs { get; }
        public HashSet<IAstNode> Uses { get; }

        public OperandType Type { get; }

        public AggregateType VarType { get; set; }

        public int Value { get; }

        public int CbufSlot   { get; }
        public int CbufOffset { get; }

        private AstOperand()
        {
            Defs = new HashSet<IAstNode>();
            Uses = new HashSet<IAstNode>();

            VarType = AggregateType.S32;
        }

        public AstOperand(Operand operand) : this()
        {
            Type = operand.Type;

            if (Type == OperandType.ConstantBuffer)
            {
                CbufSlot   = operand.GetCbufSlot();
                CbufOffset = operand.GetCbufOffset();
            }
            else
            {
                Value = operand.Value;
            }
        }

        public AstOperand(OperandType type, int value = 0)  : this()
        {
            Type  = type;
            Value = value;
        }
    }
}