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

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

Issue 2216883003: S390: Decouple TF Operator kS390_And/Or/Xor/Not to 32/64 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/s390/instruction-scheduler-s390.cc
diff --git a/src/compiler/s390/instruction-scheduler-s390.cc b/src/compiler/s390/instruction-scheduler-s390.cc
index 44e7d7f06fadf5b5ccb4d04e9ee9c65de3c358e0..5ac6da79b2ec7669125d6abf8263550c4534d7d0 100644
--- a/src/compiler/s390/instruction-scheduler-s390.cc
+++ b/src/compiler/s390/instruction-scheduler-s390.cc
@@ -13,9 +13,12 @@ bool InstructionScheduler::SchedulerSupported() { return true; }
int InstructionScheduler::GetTargetInstructionFlags(
const Instruction* instr) const {
switch (instr->arch_opcode()) {
- case kS390_And:
- case kS390_Or:
- case kS390_Xor:
+ case kS390_And32:
+ case kS390_And64:
+ case kS390_Or32:
+ case kS390_Or64:
+ case kS390_Xor32:
+ case kS390_Xor64:
case kS390_ShiftLeft32:
case kS390_ShiftLeft64:
case kS390_ShiftLeftPair:
@@ -27,7 +30,8 @@ int InstructionScheduler::GetTargetInstructionFlags(
case kS390_ShiftRightArithPair:
case kS390_RotRight32:
case kS390_RotRight64:
- case kS390_Not:
+ case kS390_Not32:
+ case kS390_Not64:
case kS390_RotLeftAndMask32:
case kS390_RotLeftAndClear64:
case kS390_RotLeftAndClearLeft64:

Powered by Google App Engine
This is Rietveld 408576698