| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/compiler/instruction-scheduler.h" | 5 #include "src/compiler/instruction-scheduler.h" |
| 6 | 6 |
| 7 namespace v8 { | 7 namespace v8 { |
| 8 namespace internal { | 8 namespace internal { |
| 9 namespace compiler { | 9 namespace compiler { |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 case kPPC_ShiftRightAlg32: | 28 case kPPC_ShiftRightAlg32: |
| 29 case kPPC_ShiftRightAlg64: | 29 case kPPC_ShiftRightAlg64: |
| 30 case kPPC_ShiftRightAlgPair: | 30 case kPPC_ShiftRightAlgPair: |
| 31 case kPPC_RotRight32: | 31 case kPPC_RotRight32: |
| 32 case kPPC_RotRight64: | 32 case kPPC_RotRight64: |
| 33 case kPPC_Not: | 33 case kPPC_Not: |
| 34 case kPPC_RotLeftAndMask32: | 34 case kPPC_RotLeftAndMask32: |
| 35 case kPPC_RotLeftAndClear64: | 35 case kPPC_RotLeftAndClear64: |
| 36 case kPPC_RotLeftAndClearLeft64: | 36 case kPPC_RotLeftAndClearLeft64: |
| 37 case kPPC_RotLeftAndClearRight64: | 37 case kPPC_RotLeftAndClearRight64: |
| 38 case kPPC_Add: | 38 case kPPC_Add32: |
| 39 case kPPC_Add64: |
| 39 case kPPC_AddWithOverflow32: | 40 case kPPC_AddWithOverflow32: |
| 40 case kPPC_AddPair: | 41 case kPPC_AddPair: |
| 41 case kPPC_AddDouble: | 42 case kPPC_AddDouble: |
| 42 case kPPC_Sub: | 43 case kPPC_Sub: |
| 43 case kPPC_SubWithOverflow32: | 44 case kPPC_SubWithOverflow32: |
| 44 case kPPC_SubPair: | 45 case kPPC_SubPair: |
| 45 case kPPC_SubDouble: | 46 case kPPC_SubDouble: |
| 46 case kPPC_Mul32: | 47 case kPPC_Mul32: |
| 47 case kPPC_Mul32WithHigh32: | 48 case kPPC_Mul32WithHigh32: |
| 48 case kPPC_Mul64: | 49 case kPPC_Mul64: |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 146 |
| 146 | 147 |
| 147 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { | 148 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { |
| 148 // TODO(all): Add instruction cost modeling. | 149 // TODO(all): Add instruction cost modeling. |
| 149 return 1; | 150 return 1; |
| 150 } | 151 } |
| 151 | 152 |
| 152 } // namespace compiler | 153 } // namespace compiler |
| 153 } // namespace internal | 154 } // namespace internal |
| 154 } // namespace v8 | 155 } // namespace v8 |
| OLD | NEW |