diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-11-04 15:44:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-04 15:44:19 -0800 |
commit | 368f8a743c8322c3a01633f0cfa8ce205d58fb49 (patch) | |
tree | 3cf09812f83b13d6c7dd87cc0359fd7e024ad0a4 /src/literal.h | |
parent | 74526f3effdab0d5bca9cb122989335b6527e76f (diff) | |
download | binaryen-368f8a743c8322c3a01633f0cfa8ce205d58fb49.tar.gz binaryen-368f8a743c8322c3a01633f0cfa8ce205d58fb49.tar.bz2 binaryen-368f8a743c8322c3a01633f0cfa8ce205d58fb49.zip |
Add i32x4.dot_i16x8_s (#2420)
This experimental instruction is specified in
https://github.com/WebAssembly/simd/pull/127 and is being implemented
to enable further investigation of its performance impact.
Diffstat (limited to 'src/literal.h')
-rw-r--r-- | src/literal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/literal.h b/src/literal.h index 007a2cde8..1106d1c27 100644 --- a/src/literal.h +++ b/src/literal.h @@ -364,6 +364,7 @@ public: Literal minUI32x4(const Literal& other) const; Literal maxSI32x4(const Literal& other) const; Literal maxUI32x4(const Literal& other) const; + Literal dotSI16x8toI32x4(const Literal& other) const; Literal negI64x2() const; Literal anyTrueI64x2() const; Literal allTrueI64x2() const; |