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

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

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/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 dfb3d6c0704444485bc769b608494edf551e7881..b66d853abaf78a7e67f5245e427db673305f4d3b 100644
--- a/src/compiler/x64/instruction-scheduler-x64.cc
+++ b/src/compiler/x64/instruction-scheduler-x64.cc
@@ -123,23 +123,23 @@ int InstructionScheduler::GetTargetInstructionFlags(
case kX64Lea:
case kX64Dec32:
case kX64Inc32:
- case kX64Int32x4Splat:
- case kX64Int32x4ExtractLane:
- 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:
+ case kX64I32x4Splat:
+ case kX64I32x4ExtractLane:
+ case kX64I32x4ReplaceLane:
+ case kX64I32x4Shl:
+ case kX64I32x4ShrS:
+ case kX64I32x4Add:
+ case kX64I32x4Sub:
+ case kX64I32x4Mul:
+ case kX64I32x4MinS:
+ case kX64I32x4MaxS:
+ case kX64I32x4Eq:
+ case kX64I32x4Ne:
+ case kX64I32x4ShrU:
+ case kX64I32x4MinU:
+ case kX64I32x4MaxU:
+ case kX64S128Zero:
+ case kX64S32x4Select:
return (instr->addressing_mode() == kMode_None)
? kNoOpcodeFlags
: kIsLoadOperation | kHasSideEffect;
« 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