[PR #1099] [MERGED] CPU/Recompiler: Implement LUT-based fastmem #321

Open
opened 2026-01-29 19:07:24 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/stenzek/duckstation/pull/1099
Author: @stenzek
Created: 11/23/2020
Status: Merged
Merged: 11/24/2020
Merged by: @stenzek

Base: masterHead: lut-fastmem-pr


📝 Commits (1)

  • bf2e38a CPU/Recompiler: Implement LUT-based fastmem

📊 Changes

26 files changed (+1132 additions, -409 deletions)

View changed files

📝 android/app/src/main/res/values/arrays.xml (+10 -0)
📝 android/app/src/main/res/xml/advanced_preferences.xml (+6 -3)
📝 src/common/page_fault_handler.cpp (+18 -5)
📝 src/core/CMakeLists.txt (+6 -6)
📝 src/core/bus.cpp (+205 -87)
📝 src/core/bus.h (+11 -7)
📝 src/core/core.vcxproj (+5 -5)
📝 src/core/cpu_code_cache.cpp (+65 -22)
📝 src/core/cpu_code_cache.h (+4 -4)
📝 src/core/cpu_core.cpp (+1 -5)
📝 src/core/cpu_recompiler_code_generator.cpp (+1 -5)
📝 src/core/cpu_recompiler_code_generator.h (+11 -7)
📝 src/core/cpu_recompiler_code_generator_aarch32.cpp (+246 -0)
📝 src/core/cpu_recompiler_code_generator_aarch64.cpp (+140 -51)
📝 src/core/cpu_recompiler_code_generator_generic.cpp (+1 -27)
📝 src/core/cpu_recompiler_code_generator_x64.cpp (+250 -147)
📝 src/core/cpu_recompiler_thunks.h (+0 -4)
📝 src/core/host_interface.cpp (+11 -2)
📝 src/core/settings.cpp (+35 -2)
📝 src/core/settings.h (+17 -2)

...and 6 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/stenzek/duckstation/pull/1099 **Author:** [@stenzek](https://github.com/stenzek) **Created:** 11/23/2020 **Status:** ✅ Merged **Merged:** 11/24/2020 **Merged by:** [@stenzek](https://github.com/stenzek) **Base:** `master` ← **Head:** `lut-fastmem-pr` --- ### 📝 Commits (1) - [`bf2e38a`](https://github.com/stenzek/duckstation/commit/bf2e38aed598fbcfaf6cddb1d3a98db1e19642f0) CPU/Recompiler: Implement LUT-based fastmem ### 📊 Changes **26 files changed** (+1132 additions, -409 deletions) <details> <summary>View changed files</summary> 📝 `android/app/src/main/res/values/arrays.xml` (+10 -0) 📝 `android/app/src/main/res/xml/advanced_preferences.xml` (+6 -3) 📝 `src/common/page_fault_handler.cpp` (+18 -5) 📝 `src/core/CMakeLists.txt` (+6 -6) 📝 `src/core/bus.cpp` (+205 -87) 📝 `src/core/bus.h` (+11 -7) 📝 `src/core/core.vcxproj` (+5 -5) 📝 `src/core/cpu_code_cache.cpp` (+65 -22) 📝 `src/core/cpu_code_cache.h` (+4 -4) 📝 `src/core/cpu_core.cpp` (+1 -5) 📝 `src/core/cpu_recompiler_code_generator.cpp` (+1 -5) 📝 `src/core/cpu_recompiler_code_generator.h` (+11 -7) 📝 `src/core/cpu_recompiler_code_generator_aarch32.cpp` (+246 -0) 📝 `src/core/cpu_recompiler_code_generator_aarch64.cpp` (+140 -51) 📝 `src/core/cpu_recompiler_code_generator_generic.cpp` (+1 -27) 📝 `src/core/cpu_recompiler_code_generator_x64.cpp` (+250 -147) 📝 `src/core/cpu_recompiler_thunks.h` (+0 -4) 📝 `src/core/host_interface.cpp` (+11 -2) 📝 `src/core/settings.cpp` (+35 -2) 📝 `src/core/settings.h` (+17 -2) _...and 6 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 19:07:24 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/duckstation#321