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

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

Issue 2801183002: [WASM SIMD] Implement primitive shuffles. (Closed)
Patch Set: Fix non-ARM build. 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/arm/instruction-codes-arm.h ('k') | src/compiler/arm/instruction-selector-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/arm/instruction-scheduler-arm.cc
diff --git a/src/compiler/arm/instruction-scheduler-arm.cc b/src/compiler/arm/instruction-scheduler-arm.cc
index e6f3464bb54ff3d3703b93e2a89675dd43d67e90..8bcd995bfe72b24b7054e1d05748a8fd61d23e85 100644
--- a/src/compiler/arm/instruction-scheduler-arm.cc
+++ b/src/compiler/arm/instruction-scheduler-arm.cc
@@ -216,6 +216,31 @@ int InstructionScheduler::GetTargetInstructionFlags(
case kArmS128Xor:
case kArmS128Not:
case kArmS128Select:
+ case kArmS32x4ZipLeft:
+ case kArmS32x4ZipRight:
+ case kArmS32x4UnzipLeft:
+ case kArmS32x4UnzipRight:
+ case kArmS32x4TransposeLeft:
+ case kArmS32x4TransposeRight:
+ case kArmS16x8ZipLeft:
+ case kArmS16x8ZipRight:
+ case kArmS16x8UnzipLeft:
+ case kArmS16x8UnzipRight:
+ case kArmS16x8TransposeLeft:
+ case kArmS16x8TransposeRight:
+ case kArmS8x16ZipLeft:
+ case kArmS8x16ZipRight:
+ case kArmS8x16UnzipLeft:
+ case kArmS8x16UnzipRight:
+ case kArmS8x16TransposeLeft:
+ case kArmS8x16TransposeRight:
+ case kArmS8x16Concat:
+ case kArmS32x2Reverse:
+ case kArmS16x4Reverse:
+ case kArmS16x2Reverse:
+ case kArmS8x8Reverse:
+ case kArmS8x4Reverse:
+ case kArmS8x2Reverse:
case kArmS1x4AnyTrue:
case kArmS1x4AllTrue:
case kArmS1x8AnyTrue:
« no previous file with comments | « src/compiler/arm/instruction-codes-arm.h ('k') | src/compiler/arm/instruction-selector-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698