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

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

Issue 2776753004: [wasm] Make Opcode names consistent across architectures, implementations (Closed)
Patch Set: Fix Saturates Created 3 years, 9 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 ba4a1ff96f1a7ae0b8ccf4261de85f56f12595fc..0133f80d4b7c99c0ee1d285d9acc4331a53bee72 100644
--- a/src/compiler/x64/instruction-codes-x64.h
+++ b/src/compiler/x64/instruction-codes-x64.h
@@ -143,23 +143,23 @@ namespace compiler {
V(X64Push) \
V(X64Poke) \
V(X64StackCheck) \
- V(X64Int32x4Splat) \
- V(X64Int32x4ExtractLane) \
- V(X64Int32x4ReplaceLane) \
- V(X64Int32x4Add) \
- V(X64Int32x4Sub) \
- V(X64Int32x4Mul) \
- V(X64Int32x4Min) \
- V(X64Int32x4Max) \
- V(X64Int32x4Equal) \
- V(X64Int32x4NotEqual) \
- V(X64Int32x4ShiftLeftByScalar) \
- V(X64Int32x4ShiftRightByScalar) \
- V(X64Uint32x4ShiftRightByScalar) \
- V(X64Uint32x4Min) \
- V(X64Uint32x4Max) \
- V(X64Simd32x4Select) \
- V(X64Simd128Zero)
+ V(X64I32x4Splat) \
+ V(X64I32x4ExtractLane) \
+ V(X64I32x4ReplaceLane) \
+ V(X64I32x4Shl) \
+ V(X64I32x4ShrS) \
+ V(X64I32x4Add) \
+ V(X64I32x4Sub) \
+ V(X64I32x4Mul) \
+ V(X64I32x4MinS) \
+ V(X64I32x4MaxS) \
+ V(X64I32x4Eq) \
+ V(X64I32x4Ne) \
+ V(X64I32x4ShrU) \
+ V(X64I32x4MinU) \
+ V(X64I32x4MaxU) \
+ V(X64S32x4Select) \
+ V(X64S128Zero)
// Addressing modes represent the "shape" of inputs to an instruction.
// Many instructions support multiple addressing modes. Addressing modes
« 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