aboutsummaryrefslogblamecommitdiff
path: root/src/Spv.Generator/ConstantKey.cs
blob: 9fd25598818a5d183fc9cea5746fb3917d21cdb3 (plain) (tree)
1
2
3
4
5
6
7
8



                                      
                                                                  
     
                                               
















                                                                                                                                                         
                                                         

         
using System;
using System.Diagnostics.CodeAnalysis;

namespace Spv.Generator
{
    internal readonly struct ConstantKey : IEquatable<ConstantKey>
    {
        private readonly Instruction _constant;

        public ConstantKey(Instruction constant)
        {
            _constant = constant;
        }

        public override int GetHashCode()
        {
            return HashCode.Combine(_constant.Opcode, _constant.GetHashCodeContent(), _constant.GetHashCodeResultType());
        }

        public bool Equals(ConstantKey other)
        {
            return _constant.Opcode == other._constant.Opcode && _constant.EqualsContent(other._constant) && _constant.EqualsResultType(other._constant);
        }

        public override bool Equals([NotNullWhen(true)] object obj)
        {
            return obj is ConstantKey key && Equals(key);
        }
    }
}