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

Unified Diff: src/compiler/x64/instruction-scheduler-x64.cc

Issue 2719953002: Add Int32x4 Wasm Simd Binops, compare ops, select (Closed)
Patch Set: Rebase again 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
Index: src/compiler/x64/instruction-scheduler-x64.cc
diff --git a/src/compiler/x64/instruction-scheduler-x64.cc b/src/compiler/x64/instruction-scheduler-x64.cc
index fae8d3406c679f83436972c85f9f72b8f8e08f6f..dfb3d6c0704444485bc769b608494edf551e7881 100644
--- a/src/compiler/x64/instruction-scheduler-x64.cc
+++ b/src/compiler/x64/instruction-scheduler-x64.cc
@@ -128,6 +128,17 @@ int InstructionScheduler::GetTargetInstructionFlags(
case kX64Int32x4ReplaceLane:
case kX64Int32x4Add:
case kX64Int32x4Sub:
+ case kX64Int32x4Mul:
+ case kX64Int32x4Min:
+ case kX64Int32x4Max:
+ case kX64Int32x4Equal:
+ case kX64Int32x4NotEqual:
+ case kX64Int32x4ShiftLeftByScalar:
+ case kX64Int32x4ShiftRightByScalar:
+ case kX64Uint32x4ShiftRightByScalar:
+ case kX64Uint32x4Min:
+ case kX64Uint32x4Max:
+ case kX64Simd32x4Select:
case kX64Simd128Zero:
return (instr->addressing_mode() == kMode_None)
? kNoOpcodeFlags

Powered by Google App Engine
This is Rietveld 408576698