mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-29 20:06:25 +02:00
Implement a new JIT for Arm devices
This commit is contained in:
parent
9864675a0b
commit
597710a522
127 changed files with 42538 additions and 25 deletions
16
src/Ryujinx.Cpu/LightningJit/CompiledFunction.cs
Normal file
16
src/Ryujinx.Cpu/LightningJit/CompiledFunction.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
|
||||
namespace Ryujinx.Cpu.LightningJit
|
||||
{
|
||||
ref struct CompiledFunction
|
||||
{
|
||||
public readonly ReadOnlySpan<byte> Code;
|
||||
public readonly int GuestCodeLength;
|
||||
|
||||
public CompiledFunction(ReadOnlySpan<byte> code, int guestCodeLength)
|
||||
{
|
||||
Code = code;
|
||||
GuestCodeLength = guestCodeLength;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue