-
Notifications
You must be signed in to change notification settings - Fork 266
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
SIMD: implements comparison instructions #617
Conversation
ok done with interpreter.... |
Signed-off-by: Takeshi Yoneda <[email protected]>
Signed-off-by: Takeshi Yoneda <[email protected]>
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.
great woodchopping. Keep it up!
@@ -2180,6 +2180,198 @@ operatorSwitch: | |||
c.emit( | |||
&OperationV128Shr{Shape: ShapeI64x2, Signed: false}, | |||
) | |||
case wasm.OpcodeVecI8x16Eq: |
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.
touch compiler_test.go each PR even if only one case
Co-authored-by: Crypt Keeper <[email protected]>
Signed-off-by: Takeshi Yoneda <[email protected]>
Signed-off-by: Takeshi Yoneda <[email protected]>
Signed-off-by: Takeshi Yoneda <[email protected]>
will do the wazeroir/compiler_test backfilling in another PR as this is already huge! |
This implements all the vector comparison operators for the interpreter
and compiler(amd64).
Notably, now our engines pass
simd_*_cmp.wast
spec tests.part of #484