diff options
Diffstat (limited to 'src/literal.h')
-rw-r--r-- | src/literal.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/literal.h b/src/literal.h index 8ead70fc7..d94d1a6d0 100644 --- a/src/literal.h +++ b/src/literal.h @@ -509,6 +509,11 @@ public: Literal maxSI16x8(const Literal& other) const; Literal maxUI16x8(const Literal& other) const; Literal avgrUI16x8(const Literal& other) const; + Literal q15MulrSatSI16x8(const Literal& other) const; + Literal extMulLowSI16x8(const Literal& other) const; + Literal extMulHighSI16x8(const Literal& other) const; + Literal extMulLowUI16x8(const Literal& other) const; + Literal extMulHighUI16x8(const Literal& other) const; Literal absI32x4() const; Literal negI32x4() const; Literal anyTrueI32x4() const; @@ -525,6 +530,10 @@ public: Literal maxSI32x4(const Literal& other) const; Literal maxUI32x4(const Literal& other) const; Literal dotSI16x8toI32x4(const Literal& other) const; + Literal extMulLowSI32x4(const Literal& other) const; + Literal extMulHighSI32x4(const Literal& other) const; + Literal extMulLowUI32x4(const Literal& other) const; + Literal extMulHighUI32x4(const Literal& other) const; Literal negI64x2() const; Literal anyTrueI64x2() const; Literal allTrueI64x2() const; @@ -534,6 +543,10 @@ public: Literal addI64x2(const Literal& other) const; Literal subI64x2(const Literal& other) const; Literal mulI64x2(const Literal& other) const; + Literal extMulLowSI64x2(const Literal& other) const; + Literal extMulHighSI64x2(const Literal& other) const; + Literal extMulLowUI64x2(const Literal& other) const; + Literal extMulHighUI64x2(const Literal& other) const; Literal absF32x4() const; Literal negF32x4() const; Literal sqrtF32x4() const; |