| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 case kArmVrintpF64: | 73 case kArmVrintpF64: |
| 74 case kArmVrintzF32: | 74 case kArmVrintzF32: |
| 75 case kArmVrintzF64: | 75 case kArmVrintzF64: |
| 76 case kArmVrintaF64: | 76 case kArmVrintaF64: |
| 77 case kArmVrintnF32: | 77 case kArmVrintnF32: |
| 78 case kArmVrintnF64: | 78 case kArmVrintnF64: |
| 79 case kArmVcvtF32F64: | 79 case kArmVcvtF32F64: |
| 80 case kArmVcvtF64F32: | 80 case kArmVcvtF64F32: |
| 81 case kArmVcvtF64S32: | 81 case kArmVcvtF64S32: |
| 82 case kArmVcvtF64U32: | 82 case kArmVcvtF64U32: |
| 83 case kArmVcvtS32F32: |
| 83 case kArmVcvtS32F64: | 84 case kArmVcvtS32F64: |
| 84 case kArmVcvtU32F64: | 85 case kArmVcvtU32F64: |
| 85 case kArmVmovLowU32F64: | 86 case kArmVmovLowU32F64: |
| 86 case kArmVmovLowF64U32: | 87 case kArmVmovLowF64U32: |
| 87 case kArmVmovHighU32F64: | 88 case kArmVmovHighU32F64: |
| 88 case kArmVmovHighF64U32: | 89 case kArmVmovHighF64U32: |
| 89 case kArmVmovF64U32U32: | 90 case kArmVmovF64U32U32: |
| 90 return kNoOpcodeFlags; | 91 return kNoOpcodeFlags; |
| 91 | 92 |
| 92 case kArmVldrF32: | 93 case kArmVldrF32: |
| (...skipping 27 matching lines...) Expand all Loading... |
| 120 | 121 |
| 121 | 122 |
| 122 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { | 123 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { |
| 123 // TODO(all): Add instruction cost modeling. | 124 // TODO(all): Add instruction cost modeling. |
| 124 return 1; | 125 return 1; |
| 125 } | 126 } |
| 126 | 127 |
| 127 } // namespace compiler | 128 } // namespace compiler |
| 128 } // namespace internal | 129 } // namespace internal |
| 129 } // namespace v8 | 130 } // namespace v8 |
| OLD | NEW |