mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-03-13 02:39:39 -05:00

* Write/read guest state to context for sync points, stop reserving stack for them * Fix UsedGprsMask not being updated when allocating with preferencing * POP should be also considered a return
35 lines
874 B
C#
35 lines
874 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Cpu.LightningJit.Arm32
|
|
{
|
|
class MultiBlock
|
|
{
|
|
public readonly List<Block> Blocks;
|
|
public readonly bool HasHostCall;
|
|
public readonly bool HasHostCallSkipContext;
|
|
public readonly bool IsTruncated;
|
|
|
|
public MultiBlock(List<Block> blocks)
|
|
{
|
|
Blocks = blocks;
|
|
|
|
Block block = blocks[0];
|
|
|
|
HasHostCall = block.HasHostCall;
|
|
HasHostCallSkipContext = block.HasHostCallSkipContext;
|
|
|
|
for (int index = 1; index < blocks.Count; index++)
|
|
{
|
|
block = blocks[index];
|
|
|
|
HasHostCall |= block.HasHostCall;
|
|
HasHostCallSkipContext |= block.HasHostCallSkipContext;
|
|
}
|
|
|
|
block = blocks[^1];
|
|
|
|
IsTruncated = block.IsTruncated;
|
|
}
|
|
}
|
|
}
|