mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-27 00:36:00 +03:00
[PR #3707] [MERGED] amdgpu: Split liverpool registers and cleanup #3674
Labels
No labels
Bloodborne
bug
contributor wanted
documentation
enhancement
frontend
good first issue
help wanted
linux
pull-request
question
release
verification progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shadPS4#3674
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/shadps4-emu/shadPS4/pull/3707
Author: @raphaelthegreat
Created: 10/5/2025
Status: ✅ Merged
Merged: 10/5/2025
Merged by: @squidbus
Base:
main← Head:liverpool-split📝 Commits (1)
61588daamdgpu: Split liverpool registers and cleanup📊 Changes
75 files changed (+2505 additions, -2641 deletions)
View changed files
📝
CMakeLists.txt(+12 -5)📝
src/common/number_utils.cpp(+5 -11)📝
src/core/debug_state.cpp(+10 -11)📝
src/core/debug_state.h(+8 -7)📝
src/core/devtools/widget/cmd_list.cpp(+126 -126)📝
src/core/devtools/widget/cmd_list.h(+2 -3)📝
src/core/devtools/widget/reg_popup.cpp(+54 -53)📝
src/core/devtools/widget/reg_popup.h(+19 -13)📝
src/core/devtools/widget/reg_view.cpp(+5 -6)📝
src/core/devtools/widget/reg_view.h(+6 -5)📝
src/core/libraries/videoout/driver.cpp(+1 -0)📝
src/shader_recompiler/backend/spirv/emit_spirv.cpp(+7 -8)📝
src/shader_recompiler/backend/spirv/emit_spirv_atomic.cpp(+2 -4)📝
src/shader_recompiler/backend/spirv/emit_spirv_special.cpp(+2 -2)📝
src/shader_recompiler/backend/spirv/spirv_emit_context.cpp(+3 -4)➖
src/shader_recompiler/exception.h(+0 -64)📝
src/shader_recompiler/frontend/structured_control_flow.cpp(+2 -2)📝
src/shader_recompiler/frontend/translate/export.cpp(+13 -13)📝
src/shader_recompiler/frontend/translate/translate.cpp(+1 -1)📝
src/shader_recompiler/frontend/translate/vector_interpolation.cpp(+1 -0)...and 55 more files
📄 Description
This is something I've been wanting for a while but never found motivation to do so. The liverpool header has grown pretty huge over time and because all the register structures and enums are nested inside it, they cannot be forward declared, forcing users to include the full heavyweight header to just use a small part of it. So the proposed patch does the following:
While implementing that I've also done some additional cleanup where appropriate
Probably needs a ton of testing to ensure nothing broke
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.