(libretro-common) Use inline assembly for PowerPC libco #16675
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Guidelines
Description
Currently libco in libretro-common stashes a bunch of assembly code into a C array, then maps it as RWX and jumps to it. This is incompatible with platforms that can't map arbitrary RWX pages (namely Wii U) and adds RWX pages for questionable reason, which isn't great for security and stability.
Move the assembly into an asm block, which implicitly moves it into .text, making it R_X everywhere as you'd expect for code. I'm using GNU/AT&T assembly syntax here which should be broadly compatible, though I left the old code behind an
#if 0
in case the PowerPC Mac people flag it as a problem.Needed for ScummVM and other libco cores (dosbox-svn?) to work on Wii U. I have no idea how they were ever reported working by users, probably they were using the .elf builds which are fully RWX (cc @Ploggy ?)
Related Issues
[Any issues this pull request may be addressing]
Related Pull Requests
This commit will need to sync out to the libretro-common repository, then ScummVM can have its commit hash updated to pull this code. I don't know what the process is for this.
Reviewers
[If possible @mention all the people that should review your pull request]