mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-27 23:07:56 +02:00
- jit caches are no longer static. - JitUnwindWindows now supports multiple jit caches. - Jit caches should no longer cause crashes due to entry offset collisions. - cpu tests now run concurrently. Co-authored-by: LotP1 <68976644+LotP1@users.noreply.github.com>
12 lines
199 B
C#
12 lines
199 B
C#
namespace ARMeilleure.CodeGen.Unwinding
|
|
{
|
|
public enum UnwindPseudoOp
|
|
{
|
|
PushReg = 0,
|
|
SetFrame = 1,
|
|
AllocStack = 2,
|
|
SaveReg = 3,
|
|
SaveXmm128 = 4,
|
|
}
|
|
}
|