diff options
author | Max Graey <maxgraey@gmail.com> | 2021-06-03 23:22:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 13:22:30 -0700 |
commit | a4ab1c7ee7376977ca09e2d3c4358893e9fdfce2 (patch) | |
tree | b8bb89becfd8ca853594a09456342024f92d2c52 /src/ir/bits.h | |
parent | a440c7697875e5fcc046370b40295f6dffe44ee0 (diff) | |
download | binaryen-a4ab1c7ee7376977ca09e2d3c4358893e9fdfce2.tar.gz binaryen-a4ab1c7ee7376977ca09e2d3c4358893e9fdfce2.tar.bz2 binaryen-a4ab1c7ee7376977ca09e2d3c4358893e9fdfce2.zip |
[OptimizeInstructions] Handle post-MVP sign extended operations (#3910)
fixes part of #3906
Diffstat (limited to 'src/ir/bits.h')
-rw-r--r-- | src/ir/bits.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/ir/bits.h b/src/ir/bits.h index 95481eeab..950864a23 100644 --- a/src/ir/bits.h +++ b/src/ir/bits.h @@ -385,9 +385,26 @@ Index getMaxBits(Expression* curr, case WrapInt64: case ExtendUInt32: return std::min(Index(32), getMaxBits(unary->value, localInfoProvider)); + case ExtendS8Int32: { + auto maxBits = getMaxBits(unary->value, localInfoProvider); + return maxBits >= 8 ? Index(32) : maxBits; + } + case ExtendS16Int32: { + auto maxBits = getMaxBits(unary->value, localInfoProvider); + return maxBits >= 16 ? Index(32) : maxBits; + } + case ExtendS8Int64: { + auto maxBits = getMaxBits(unary->value, localInfoProvider); + return maxBits >= 8 ? Index(64) : maxBits; + } + case ExtendS16Int64: { + auto maxBits = getMaxBits(unary->value, localInfoProvider); + return maxBits >= 16 ? Index(64) : maxBits; + } + case ExtendS32Int64: case ExtendSInt32: { auto maxBits = getMaxBits(unary->value, localInfoProvider); - return maxBits == 32 ? Index(64) : maxBits; + return maxBits >= 32 ? Index(64) : maxBits; } default: { } |