mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-22 09:03:36 +00:00
- Dictionary for lookups of type declarations, constants, extinst - LiteralInteger internal data format -> ushort - Deterministic HashCode implementation to avoid spirv result not being the same between runs - Inline operand list instead of List<T>, falls back to array if many operands. (large performance boost) TODO: improve instruction allocation, structured program creator, ssa?
30 lines
903 B
C#
30 lines
903 B
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Spv.Generator
|
|
{
|
|
internal struct TypeDeclarationKey : IEquatable<TypeDeclarationKey>
|
|
{
|
|
private Instruction _typeDeclaration;
|
|
|
|
public TypeDeclarationKey(Instruction typeDeclaration)
|
|
{
|
|
_typeDeclaration = typeDeclaration;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return DeterministicHashCode.Combine(_typeDeclaration.Opcode, _typeDeclaration.GetHashCodeContent());
|
|
}
|
|
|
|
public bool Equals(TypeDeclarationKey other)
|
|
{
|
|
return _typeDeclaration.Opcode == other._typeDeclaration.Opcode && _typeDeclaration.EqualsContent(other._typeDeclaration);
|
|
}
|
|
|
|
public override bool Equals([NotNullWhen(true)] object obj)
|
|
{
|
|
return obj is TypeDeclarationKey && Equals((TypeDeclarationKey)obj);
|
|
}
|
|
}
|
|
}
|