dynarmic/include/dynarmic
Markus Wick 93668c24be A64/x64: Create a global_offset optimization for the page table.
Instead of looking up the page table like:
  table[addr >> 12][addr & 0xFFF]
We can use a global offset on the table to query the memory like:
  table[addr >> 12][addr]

This saves two instructions on *every* memory access within the recompiler.

Thanks at skmp for the idea.
2020-04-22 21:04:23 +01:00
..
A32 fuzz_arm: Test MSR and MRS instructions against unicorn 2020-04-22 21:04:23 +01:00
A64 A64/x64: Create a global_offset optimization for the page table. 2020-04-22 21:04:23 +01:00