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

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

Issue 2829483002: [wasm] Implement first set of SIMD I8x16 ops (Closed)
Patch Set: 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/instruction-codes-x64.h ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 07a62f0c972dfab4d3e4d7fe9430af1f95eb242d..6a800948ac54c284b0c709e987637f7f90dbd97d 100644
--- a/src/compiler/x64/instruction-scheduler-x64.cc
+++ b/src/compiler/x64/instruction-scheduler-x64.cc
@@ -157,6 +157,21 @@ int InstructionScheduler::GetTargetInstructionFlags(
case kX64I16x8SubSaturateU:
case kX64I16x8MinU:
case kX64I16x8MaxU:
+ case kX64I8x16Splat:
+ case kX64I8x16ExtractLane:
+ case kX64I8x16ReplaceLane:
+ case kX64I8x16Add:
+ case kX64I8x16AddSaturateS:
+ case kX64I8x16Sub:
+ case kX64I8x16SubSaturateS:
+ case kX64I8x16MinS:
+ case kX64I8x16MaxS:
+ case kX64I8x16Eq:
+ case kX64I8x16Ne:
+ case kX64I8x16AddSaturateU:
+ case kX64I8x16SubSaturateU:
+ case kX64I8x16MinU:
+ case kX64I8x16MaxU:
case kX64S128Select:
case kX64S128Zero:
return (instr->addressing_mode() == kMode_None)
« no previous file with comments | « src/compiler/x64/instruction-codes-x64.h ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698