Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: src/compiler/x64/instruction-codes-x64.h

Issue 2767983002: [wasm] Implement wasm x64 I16x8 Ops (Closed)
Patch Set: Bill's review Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-scheduler-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/x64/instruction-codes-x64.h
diff --git a/src/compiler/x64/instruction-codes-x64.h b/src/compiler/x64/instruction-codes-x64.h
index 0133f80d4b7c99c0ee1d285d9acc4331a53bee72..d3a3696e939cd5e55c52f7673b59a334c7c0bdb9 100644
--- a/src/compiler/x64/instruction-codes-x64.h
+++ b/src/compiler/x64/instruction-codes-x64.h
@@ -158,7 +158,26 @@ namespace compiler {
V(X64I32x4ShrU) \
V(X64I32x4MinU) \
V(X64I32x4MaxU) \
- V(X64S32x4Select) \
+ V(X64I16x8Splat) \
+ V(X64I16x8ExtractLane) \
+ V(X64I16x8ReplaceLane) \
+ V(X64I16x8Shl) \
+ V(X64I16x8ShrS) \
+ V(X64I16x8Add) \
+ V(X64I16x8AddSaturateS) \
+ V(X64I16x8Sub) \
+ V(X64I16x8SubSaturateS) \
+ V(X64I16x8Mul) \
+ V(X64I16x8MinS) \
+ V(X64I16x8MaxS) \
+ V(X64I16x8Eq) \
+ V(X64I16x8Ne) \
+ V(X64I16x8ShrU) \
+ V(X64I16x8AddSaturateU) \
+ V(X64I16x8SubSaturateU) \
+ V(X64I16x8MinU) \
+ V(X64I16x8MaxU) \
+ V(X64S128Select) \
V(X64S128Zero)
// Addressing modes represent the "shape" of inputs to an instruction.
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-scheduler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698