mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-27 08:46:03 +03:00
[PR #3637] [CLOSED] Fix/memory mapping high addresses #3626
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#3626
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/3637
Author: @ADEMOLA200
Created: 9/21/2025
Status: ❌ Closed
Base:
main← Head:fix/memory-mapping-high-addresses📝 Commits (4)
a5aedb1Silent some log spam88347d8pr3096d1f4577Hacks09c815dFix memory mapping assertion for high virtual address requests📊 Changes
39 files changed (+228 additions, -71 deletions)
View changed files
📝
src/common/config.cpp(+7 -0)📝
src/common/config.h(+1 -0)📝
src/core/address_space.cpp(+1 -1)📝
src/core/aerolib/stubs.cpp(+2 -2)📝
src/core/file_sys/devices/logger.cpp(+2 -2)📝
src/core/libraries/ajm/ajm_at9.cpp(+18 -3)📝
src/core/libraries/ajm/ajm_instance.cpp(+0 -5)📝
src/core/libraries/ajm/ajm_instance.h(+0 -1)📝
src/core/libraries/ajm/ajm_mp3.cpp(+2 -2)📝
src/core/libraries/audio/audioin.cpp(+1 -1)📝
src/core/libraries/audio3d/audio3d.cpp(+1 -1)📝
src/core/libraries/kernel/memory.cpp(+6 -6)📝
src/core/libraries/network/http.cpp(+1 -1)📝
src/core/libraries/network/net.cpp(+2 -2)📝
src/core/libraries/network/p2p_sockets.cpp(+1 -1)📝
src/core/libraries/network/sys_net.cpp(+1 -1)📝
src/core/libraries/np/np_party.cpp(+1 -1)📝
src/core/libraries/pad/pad.cpp(+3 -3)📝
src/core/libraries/playgo/playgo.cpp(+3 -3)📝
src/core/libraries/system/sysmodule.cpp(+1 -1)...and 19 more files
📄 Description
Fix memory mapping for high address requests
This commit resolves the "Virtual address not in vm_map" assertion failure
that occurred when applications request memory at high virtual addresses.
Changes:
gracefully handle addresses beyond the expected range
instead of just the VMA map
The fixes ensure that high memory address requests are handled correctly
without crashing the emulator, allowing applications that use these
addresses to run properly.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.