mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 04:10:47 -07:00
Move solution and projects to src
This commit is contained in:
25
src/ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs
Normal file
25
src/ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using ARMeilleure.IntermediateRepresentation;
|
||||
|
||||
namespace ARMeilleure.CodeGen.RegisterAllocators
|
||||
{
|
||||
class StackAllocator
|
||||
{
|
||||
private int _offset;
|
||||
|
||||
public int TotalSize => _offset;
|
||||
|
||||
public int Allocate(OperandType type)
|
||||
{
|
||||
return Allocate(type.GetSizeInBytes());
|
||||
}
|
||||
|
||||
public int Allocate(int sizeInBytes)
|
||||
{
|
||||
int offset = _offset;
|
||||
|
||||
_offset += sizeInBytes;
|
||||
|
||||
return offset;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user