-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
[wasm] WasmBase.IsSupported no longer returns true #88494
Comments
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue DetailsDescriptionTestcase:
JIT debug output:
What seems to be happening is that the JIT first calls
Which doesn't handle WasmBase, but it still returns a MonoInst for WasmBase:get_IsSupported (), so Reproduction Steps. Expected behavior. Actual behavior. Regression?Yes Known WorkaroundsNo response Configurationdotnet/runtime master Other informationNo response
|
Tagging subscribers to 'arch-wasm': @lewing Issue DetailsDescriptionTestcase:
JIT debug output:
What seems to be happening is that the JIT first calls
Which doesn't handle WasmBase, but it still returns a MonoInst for WasmBase:get_IsSupported (), so Reproduction Steps. Expected behavior. Actual behavior. Regression?Yes Known WorkaroundsNo response Configurationdotnet/runtime master Other informationNo response
|
Fixed by #88523. |
Description
Testcase:
JIT debug output:
What seems to be happening is that the JIT first calls
arch_emit_simd_intrinsics (), which calls
Which doesn't handle WasmBase, but it still returns a MonoInst for WasmBase:get_IsSupported (), so
arch_emit_common_intrinsics () is never called.
Reproduction Steps
.
Expected behavior
.
Actual behavior
.
Regression?
Yes
Known Workarounds
No response
Configuration
dotnet/runtime master
Other information
No response
The text was updated successfully, but these errors were encountered: