-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Default to -mno-bulk-memory-opt #23126
Conversation
This should fix the recent CI failures on the test-node-compat bot. Once emscripten-core#22873 lands this can, of course, be removed.
@sunfishcode, its maybe little annoying the users who have |
PTAL, to green the CI again |
@@ -11,5 +11,6 @@ j (_wasmfs_get_preloaded_child_path) | |||
k (_wasmfs_get_num_preloaded_files) | |||
l (_wasmfs_get_num_preloaded_dirs) | |||
m (_wasmfs_copy_preloaded_file_data) | |||
n (_abort_js) | |||
o (random_get) | |||
n (_emscripten_memcpy_js) |
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.
Why did this change?
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.
Because without -mno-bulk-memory-opt
(part of this change) we were defaulting to using the bulk memory instruction here (by mistake).
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.
The changes here originally made it in via a rebaseline that I did this morning: ea87423. I normally don't land re-baselines without review if they include symbol changes like this, but this one slipped through.
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.
Oh, I see, I didn't review the earlier rebaseline, so this seemed like a regression to me...
Maybe we should add some automation for the automatic rebaselining? Like a script that does it + does a check if it is "trivial". Anything aside from size changes within some range could show an error to the user and suggest investigation?
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.
I think that's a great idea.
Then contributors could run the script on their PRs too and we could maybe remove the slack on those tests?
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.
See #23146
This should fix the recent CI failures on the test-node-compat bot. Once emscripten-core#22873 lands this can, of course, be removed.
This should fix the recent CI failures on the test-node-compat bot. Once #22873 lands this can, of course, be removed.