| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 89     case kArmVcvtF64F32: | 89     case kArmVcvtF64F32: | 
| 90     case kArmVcvtF32S32: | 90     case kArmVcvtF32S32: | 
| 91     case kArmVcvtF32U32: | 91     case kArmVcvtF32U32: | 
| 92     case kArmVcvtF64S32: | 92     case kArmVcvtF64S32: | 
| 93     case kArmVcvtF64U32: | 93     case kArmVcvtF64U32: | 
| 94     case kArmVcvtS32F32: | 94     case kArmVcvtS32F32: | 
| 95     case kArmVcvtU32F32: | 95     case kArmVcvtU32F32: | 
| 96     case kArmVcvtS32F64: | 96     case kArmVcvtS32F64: | 
| 97     case kArmVcvtU32F64: | 97     case kArmVcvtU32F64: | 
| 98     case kArmVmovU32F32: | 98     case kArmVmovU32F32: | 
|  | 99     case kArmVmovF32U32: | 
| 99     case kArmVmovLowU32F64: | 100     case kArmVmovLowU32F64: | 
| 100     case kArmVmovLowF64U32: | 101     case kArmVmovLowF64U32: | 
| 101     case kArmVmovHighU32F64: | 102     case kArmVmovHighU32F64: | 
| 102     case kArmVmovHighF64U32: | 103     case kArmVmovHighF64U32: | 
| 103     case kArmVmovF64U32U32: | 104     case kArmVmovF64U32U32: | 
| 104     case kArmFloat64Max: | 105     case kArmFloat64Max: | 
| 105     case kArmFloat64Min: | 106     case kArmFloat64Min: | 
| 106     case kArmFloat32Max: | 107     case kArmFloat32Max: | 
| 107     case kArmFloat32Min: | 108     case kArmFloat32Min: | 
| 108       return kNoOpcodeFlags; | 109       return kNoOpcodeFlags; | 
| (...skipping 29 matching lines...) Expand all  Loading... | 
| 138 | 139 | 
| 139 | 140 | 
| 140 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { | 141 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { | 
| 141   // TODO(all): Add instruction cost modeling. | 142   // TODO(all): Add instruction cost modeling. | 
| 142   return 1; | 143   return 1; | 
| 143 } | 144 } | 
| 144 | 145 | 
| 145 }  // namespace compiler | 146 }  // namespace compiler | 
| 146 }  // namespace internal | 147 }  // namespace internal | 
| 147 }  // namespace v8 | 148 }  // namespace v8 | 
| OLD | NEW | 
|---|