mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-01-18 14:29:59 +01:00
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. Original change by degasus in A64 emitter |
||
|---|---|---|
| .. | ||
| backend/x64 | ||
| common | ||
| frontend | ||
| ir_opt | ||
| CMakeLists.txt | ||