dynarmic/src
Marshall Mohror 1ebc1895ee A32/x64: Create a global_offset optimization for the page table (#507)
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
2020-04-22 21:04:23 +01:00
..
backend/x64 A32/x64: Create a global_offset optimization for the page table (#507) 2020-04-22 21:04:23 +01:00
common Merge pull request #503 from lioncash/cmp 2020-04-22 21:04:22 +01:00
frontend ir/basic_block: Add FastDispatchHint to TerminalToString 2020-04-22 21:04:23 +01:00
ir_opt constant_propagation_pass: Handle GetCarryFromOp for MostSignificantWord 2020-04-22 21:04:23 +01:00
CMakeLists.txt CMakeLists: Temporarily remove export 2020-04-22 21:04:22 +01:00