Merge remote-tracking branch 'gdk/new-jit-ht' into ios-ht

This commit is contained in:
riperiperi 2024-01-04 21:35:33 +00:00
commit afcfba498c
154 changed files with 45754 additions and 88 deletions

View file

@ -76,11 +76,11 @@ namespace ARMeilleure.Translation
CountTable = new EntryTable<uint>();
Functions = new TranslatorCache<TranslatedFunction>();
FunctionTable = new AddressTable<ulong>(for64Bits ? _levels64Bit : _levels32Bit);
Stubs = new TranslatorStubs(this);
Stubs = new TranslatorStubs(FunctionTable);
FunctionTable.Fill = (ulong)Stubs.SlowDispatchStub;
if (memory.Type.IsHostMapped())
if (memory.Type.IsHostMappedOrTracked())
{
NativeSignalHandler.InitializeSignalHandler(allocator.GetPageSize());
}