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

Side by Side Diff: src/compiler/arm/instruction-scheduler-arm.cc

Issue 2029413005: [builtins] Migrate Math.log to TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo. Created 4 years, 6 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 unified diff | Download patch
OLDNEW
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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 case kArmVsqrtF32: 66 case kArmVsqrtF32:
67 case kArmVcmpF64: 67 case kArmVcmpF64:
68 case kArmVaddF64: 68 case kArmVaddF64:
69 case kArmVsubF64: 69 case kArmVsubF64:
70 case kArmVmulF64: 70 case kArmVmulF64:
71 case kArmVmlaF64: 71 case kArmVmlaF64:
72 case kArmVmlsF64: 72 case kArmVmlsF64:
73 case kArmVdivF64: 73 case kArmVdivF64:
74 case kArmVmodF64: 74 case kArmVmodF64:
75 case kArmVabsF64: 75 case kArmVabsF64:
76 case kArmVlogF64:
76 case kArmVnegF64: 77 case kArmVnegF64:
77 case kArmVsqrtF64: 78 case kArmVsqrtF64:
78 case kArmVrintmF32: 79 case kArmVrintmF32:
79 case kArmVrintmF64: 80 case kArmVrintmF64:
80 case kArmVrintpF32: 81 case kArmVrintpF32:
81 case kArmVrintpF64: 82 case kArmVrintpF64:
82 case kArmVrintzF32: 83 case kArmVrintzF32:
83 case kArmVrintzF64: 84 case kArmVrintzF64:
84 case kArmVrintaF64: 85 case kArmVrintaF64:
85 case kArmVrintnF32: 86 case kArmVrintnF32:
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 137
137 138
138 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 139 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
139 // TODO(all): Add instruction cost modeling. 140 // TODO(all): Add instruction cost modeling.
140 return 1; 141 return 1;
141 } 142 }
142 143
143 } // namespace compiler 144 } // namespace compiler
144 } // namespace internal 145 } // namespace internal
145 } // namespace v8 146 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698