mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-17 22:26:39 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
30 lines
866 B
C#
30 lines
866 B
C#
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);
|
|
}
|
|
}
|
|
}
|