mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-30 04:36:01 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
72 lines
2.2 KiB
C#
72 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Spv.Generator
|
|
{
|
|
public struct InstructionOperands
|
|
{
|
|
private const int InternalCount = 5;
|
|
|
|
public int Count;
|
|
public IOperand Operand1;
|
|
public IOperand Operand2;
|
|
public IOperand Operand3;
|
|
public IOperand Operand4;
|
|
public IOperand Operand5;
|
|
public IOperand[] Overflow;
|
|
|
|
public Span<IOperand> AsSpan()
|
|
{
|
|
if (Count > InternalCount)
|
|
{
|
|
return MemoryMarshal.CreateSpan(ref this.Overflow[0], Count);
|
|
}
|
|
else
|
|
{
|
|
return MemoryMarshal.CreateSpan(ref this.Operand1, Count);
|
|
}
|
|
}
|
|
|
|
public void Add(IOperand operand)
|
|
{
|
|
if (Count < InternalCount)
|
|
{
|
|
MemoryMarshal.CreateSpan(ref this.Operand1, Count + 1)[Count] = operand;
|
|
Count++;
|
|
}
|
|
else
|
|
{
|
|
if (Overflow == null)
|
|
{
|
|
Overflow = new IOperand[InternalCount * 2];
|
|
MemoryMarshal.CreateSpan(ref this.Operand1, InternalCount).CopyTo(Overflow.AsSpan());
|
|
}
|
|
else if (Count == Overflow.Length)
|
|
{
|
|
Array.Resize(ref Overflow, Overflow.Length * 2);
|
|
}
|
|
|
|
Overflow[Count++] = operand;
|
|
}
|
|
}
|
|
|
|
private readonly IEnumerable<IOperand> AllOperands => new[] { Operand1, Operand2, Operand3, Operand4, Operand5 }
|
|
.Concat(Overflow ?? Array.Empty<IOperand>())
|
|
.Take(Count);
|
|
|
|
public readonly override string ToString()
|
|
{
|
|
return $"({string.Join(", ", AllOperands)})";
|
|
}
|
|
|
|
public readonly string ToString(string[] labels)
|
|
{
|
|
var labeledParams = AllOperands.Zip(labels, (op, label) => $"{label}: {op}");
|
|
var unlabeledParams = AllOperands.Skip(labels.Length).Select(op => op.ToString());
|
|
var paramsToPrint = labeledParams.Concat(unlabeledParams);
|
|
return $"({string.Join(", ", paramsToPrint)})";
|
|
}
|
|
}
|
|
}
|