-
Notifications
You must be signed in to change notification settings - Fork 736
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
Fallback to portable(-ish) SIMD reads against guard pages on not-yet-supported platforms #2545
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
#if WASM_RT_MEMCHECK_GUARD_PAGES | ||
#if defined(__GNUC__) && defined(__x86_64__) | ||
#define SIMD_FORCE_READ(var) __asm__("" ::"x"(var)); | ||
#elif defined(__GNUC__) && defined(__aarch64__) | ||
#define SIMD_FORCE_READ(var) __asm__("" ::"w"(var)); | ||
#else | ||
// best-effort using volatile | ||
#define SIMD_FORCE_READ(var) (void)*(volatile v128*)&var; | ||
#endif | ||
#else | ||
#define SIMD_FORCE_READ(var) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think it's a good idea to have a macro called SIMD_FORCE_READ that doesn't force a read. We're already careful not to call this in the "checked" versions of the memory access functions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agreed but: (a) this a pre-existing condition that doesn't necessarily need to be fixed as part of this PR There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's new in this PR (in the current version) is that if WASM_RT_MEMCHECK_GUARD_PAGES isn't set, now SIMD_FORCE_READ will become a nop -- that's the change that I didn't super-love. I don't think we need a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see, so maybe WASM_RT_MEMCHECK_GUARD_PAGES isn't set we simply don't need to define There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. keep in mind the "unchecked" versions are the base versions. they're used regardless of page size, so even tho custom-page-sizes does manual bounds checking, it's still additionally triggering this force-read when guard pages are enabled. (even tho custom-page-sizes doesn't/can't use guard pages, yes.) how about we rename it to |
||
#endif | ||
// TODO: equivalent constraint for ARM and other architectures | ||
|
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 only with
WASM_RT_MEMCHECK_GUARD_PAGES
, why not make this the default fallback?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.
Can we use
_asm__("" ::"x"(var));
on x86 too maybe?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 we don't want it as the default fallback always because it may have some performance implications (we have to pay this in the guard model for spec compliance, but no reason to pay it when using bounds checks)
We should probably put the whole thing under the guard_pages macro check tbh
but this change would be just for clarity and would not result in perf difference
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.
Yes, I would expect SIMD_FORCE_READ to not be used at all if its not needed.
Defining it to something that doesn't actually force anything seems wrong.
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.
SIMD_FORCE_READ_IF_NECESSARY?
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.
Lets just leave the name as is.
I do this think we should not define it to anything unless
WASM_RT_MEMCHECK_GUARD_PAGES
is set though.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.
that would make the code way messier tho... hmm...
SIMD_CHECK_PAGE_FAULT? (or maybe SIMD_CHECK_READ?) we already have bounds-check macros that do nothing when they're not needed...