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 30 matching lines...) Expand all Loading... |
41 case kArmSbfx: | 41 case kArmSbfx: |
42 case kArmSxtb: | 42 case kArmSxtb: |
43 case kArmSxth: | 43 case kArmSxth: |
44 case kArmSxtab: | 44 case kArmSxtab: |
45 case kArmSxtah: | 45 case kArmSxtah: |
46 case kArmUxtb: | 46 case kArmUxtb: |
47 case kArmUxth: | 47 case kArmUxth: |
48 case kArmUxtab: | 48 case kArmUxtab: |
49 case kArmUxtah: | 49 case kArmUxtah: |
50 case kArmRbit: | 50 case kArmRbit: |
| 51 case kArmPairLsl: |
51 case kArmVcmpF32: | 52 case kArmVcmpF32: |
52 case kArmVaddF32: | 53 case kArmVaddF32: |
53 case kArmVsubF32: | 54 case kArmVsubF32: |
54 case kArmVmulF32: | 55 case kArmVmulF32: |
55 case kArmVmlaF32: | 56 case kArmVmlaF32: |
56 case kArmVmlsF32: | 57 case kArmVmlsF32: |
57 case kArmVdivF32: | 58 case kArmVdivF32: |
58 case kArmVabsF32: | 59 case kArmVabsF32: |
59 case kArmVnegF32: | 60 case kArmVnegF32: |
60 case kArmVsqrtF32: | 61 case kArmVsqrtF32: |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 | 127 |
127 | 128 |
128 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { | 129 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { |
129 // TODO(all): Add instruction cost modeling. | 130 // TODO(all): Add instruction cost modeling. |
130 return 1; | 131 return 1; |
131 } | 132 } |
132 | 133 |
133 } // namespace compiler | 134 } // namespace compiler |
134 } // namespace internal | 135 } // namespace internal |
135 } // namespace v8 | 136 } // namespace v8 |
OLD | NEW |