-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add: optimise switches #78
Conversation
I made some changes. Now the check for all results being the same is done earlier, and if all ranges are the same as default they are removed. Then the replacement happens if there's only default, read only expression and not a return computed value |
@andythenorth suggested more possible optimisations. I'm waiting for test cases. |
Stats compiling iron-horse nml master:
NFO size: 20269741 this PR:
NFO size: 18352185 So compilation is a lot slower, for a very small improvement. Edit: and then I discovered -c nmlc option, with it GRF size is the same with both nmlc and grfcodec :) |
A whole order of magnitude is a ridiculous slow down. Is there something specific causing it? |
Slow down is caused by repeating loops when searching for duplicates (one for each new template, one for each new spriteset) |
It looks like the first 3 commits can be a big win already, and it's only the last 2 commits that are causing the slowdown. |
b9cdffa
to
0b6b5a2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non-blocking: this could use a test case.
4c848fc
to
a456eb9
Compare
I had the idea after seeing this pastebin from Andy.
With this PR the following code
will be replaced at compile time with
Each replacement generates a warning and the replacement is done only if the switch expression doesn't have side effects (no STORE_TEMP() nor STORE_PERM()) and if there's a default return.