New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFC] New PPCAnalyst class. #323
Merged
Sonicadvance1
merged 8 commits into
dolphin-emu:master
from
Sonicadvance1:newer-ppcanalyst
Apr 30, 2014
Merged
[RFC] New PPCAnalyst class. #323
Sonicadvance1
merged 8 commits into
dolphin-emu:master
from
Sonicadvance1:newer-ppcanalyst
Apr 30, 2014
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Did a couple benches with povray on JIT64. |
|
That's a 7%-11% improvement. |
|
|
||
| // Number of instructions | ||
| // Gives us the size of the block. | ||
| u32 m_instructions; |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
|
Pretty cool. Please open a testing thread on the forums so we can get more data about this change (especially regressions and performance improvements). |
Supports conditional branch continuation. More features to come.
ArmJit32 supports OPTION_CONDITIONAL_CONTINUE with this.
Implements support for OPTION_CONDITIONAL_CONTINUE in JIT64.
Sonicadvance1
added a commit
that referenced
this pull request
Apr 30, 2014
[RFC] New PPCAnalyst class.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The old PPCAnalyst namespace leaves a lot to be desired. This is more work for improving the PPCAnalyst and improving the CPU core as time goes.
Implements a new PPCAnalyser class instead of a namespace so it can contain options within it.
Doesn't yet remove the old PPCAnalyst::Flatten function, but will do so once the x86 JIT cores are moved over to it.
Implements a new feature already that is named OPTION_CONDITIONAL_CONTINUE that makes it so the JIT core doesn't end the JIT block on conditional branch instructions.
This single feature tends to give me an average of 2-3FPS more in a few tested scene I've done.