Stream: git-wasmtime

Topic: wasmtime / PR #4520 cranelift: Align Scalar and SIMD shif...


view this post on Zulip Wasmtime GitHub notifications bot (Jul 24 2022 at 19:36):

afonso360 opened PR #4520 from vec-shift to main:

:wave: Hey,

In #4424 @uweigand reported that we have different semantics for scalar and SIMD shifts, which is unusual in our instruction set.

This PR corrects the AArch64 and x86 backends to mask the shift amount before performing SIMD shifts. The s390x should already follow this behavior.

It also reorganizes the ishl/ushl/sshl tests into separate files. Since we had a bunch of duplicate tests in hard to find files that were somewhat unrelated.

I tried to keep changes contained in separate commits so that it's easier to review.

Fixes #4424
CC: @cfallin @abrown @uweigand @akirilov-arm

view this post on Zulip Wasmtime GitHub notifications bot (Jul 24 2022 at 20:59):

afonso360 edited PR #4520 from vec-shift to main:

:wave: Hey,

In #4424 @uweigand reported that we have different semantics for scalar and SIMD shifts, which is unusual in our instruction set.

This PR corrects the AArch64 and x86 backends to mask the shift amount before performing SIMD shifts. The s390x backend should already follow this behavior.

It also reorganizes the ishl/ushl/sshl tests into separate files. Since we had a bunch of duplicate tests in hard to find files that were somewhat unrelated.

I tried to keep changes contained in separate commits so that it's easier to review.

Fixes #4424
CC: @cfallin @abrown @uweigand @akirilov-arm

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 00:02):

jameysharp submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 14:22):

akirilov-arm created PR review comment:

Just a quick comment - I am surprised that passing $I32 to sub works for I64X2 vectors, since the shift amount should end up being a large positive number (or 0) instead of a small negative number.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 14:22):

akirilov-arm submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 14:22):

akirilov-arm submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 14:22):

akirilov-arm created PR review comment:

Ditto.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 14:22):

akirilov-arm created PR review comment:

PR #4521 should remove these unnecessary instructions.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 15:09):

afonso360 updated PR #4520 from vec-shift to main.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 15:09):

afonso360 submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 15:09):

afonso360 created PR review comment:

I'm guessing dup will sign extend? That's the only way I can see this working, but I can't find any mention of sign extending in the docs.

I've switched to a 64 bit sub.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 15:10):

afonso360 submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 15:10):

afonso360 created PR review comment:

:+1: Will rebase once that lands

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 15:26):

akirilov-arm submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 15:26):

akirilov-arm created PR review comment:

Ah, now I remember why the original code works and is in fact correct, but I still like the usage of $I64 - I forgot that the vector shifts used only the least significant byte of the shift amount, so there is in fact masking, just not the kind we need.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 18:24):

afonso360 updated PR #4520 from vec-shift to main.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 18:45):

akirilov-arm submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 18:45):

akirilov-arm submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 18:45):

akirilov-arm created PR review comment:

Could we add a debug_assert!() that ty.lane_bits() is a power of 2?

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 18:45):

akirilov-arm submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 26 2022 at 21:00):

afonso360 updated PR #4520 from vec-shift to main.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 10:09):

akirilov-arm submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 16:56):

cfallin submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 16:56):

cfallin created PR review comment:

Likewise here, let's update this comment

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 16:56):

cfallin created PR review comment:

There is a .is_power_of_two() method on the integer types that makes this clearer, IMHO (internally I suspect it uses exactly this idiom).

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 16:56):

cfallin created PR review comment:

This comment is slightly out of date now ("can each use a single instruction, once the shift amount is masked")

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 16:56):

cfallin submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 17:23):

afonso360 updated PR #4520 from vec-shift to main.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 17:32):

jameysharp has enabled auto merge for PR #4520.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 27 2022 at 17:54):

jameysharp merged PR #4520.


Last updated: Nov 22 2024 at 17:03 UTC