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

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

Issue 2053893003: [builtins] Introduce proper base::ieee754::log. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: BUILD.gn 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
« no previous file with comments | « src/compiler/arm/instruction-codes-arm.h ('k') | src/compiler/arm/instruction-selector-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
77 case kArmVnegF64: 76 case kArmVnegF64:
78 case kArmVsqrtF64: 77 case kArmVsqrtF64:
79 case kArmVrintmF32: 78 case kArmVrintmF32:
80 case kArmVrintmF64: 79 case kArmVrintmF64:
81 case kArmVrintpF32: 80 case kArmVrintpF32:
82 case kArmVrintpF64: 81 case kArmVrintpF64:
83 case kArmVrintzF32: 82 case kArmVrintzF32:
84 case kArmVrintzF64: 83 case kArmVrintzF64:
85 case kArmVrintaF64: 84 case kArmVrintaF64:
86 case kArmVrintnF32: 85 case kArmVrintnF32:
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 137
139 138
140 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 139 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
141 // TODO(all): Add instruction cost modeling. 140 // TODO(all): Add instruction cost modeling.
142 return 1; 141 return 1;
143 } 142 }
144 143
145 } // namespace compiler 144 } // namespace compiler
146 } // namespace internal 145 } // namespace internal
147 } // namespace v8 146 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/arm/instruction-codes-arm.h ('k') | src/compiler/arm/instruction-selector-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698