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

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

Issue 2070813002: Revert of [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/instruction-codes.h ('k') | src/compiler/instruction-selector.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 #include "src/base/adapters.h" 7 #include "src/base/adapters.h"
8 #include "src/base/utils/random-number-generator.h" 8 #include "src/base/utils/random-number-generator.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 switch (instr->arch_opcode()) { 219 switch (instr->arch_opcode()) {
220 case kArchNop: 220 case kArchNop:
221 case kArchFramePointer: 221 case kArchFramePointer:
222 case kArchParentFramePointer: 222 case kArchParentFramePointer:
223 case kArchTruncateDoubleToI: 223 case kArchTruncateDoubleToI:
224 case kArchStackSlot: 224 case kArchStackSlot:
225 case kArchDebugBreak: 225 case kArchDebugBreak:
226 case kArchComment: 226 case kArchComment:
227 case kIeee754Float64Atan: 227 case kIeee754Float64Atan:
228 case kIeee754Float64Atan2: 228 case kIeee754Float64Atan2:
229 case kIeee754Float64Exp:
230 case kIeee754Float64Log: 229 case kIeee754Float64Log:
231 case kIeee754Float64Log1p: 230 case kIeee754Float64Log1p:
232 case kIeee754Float64Log2: 231 case kIeee754Float64Log2:
233 case kIeee754Float64Log10: 232 case kIeee754Float64Log10:
234 return kNoOpcodeFlags; 233 return kNoOpcodeFlags;
235 234
236 case kArchStackPointer: 235 case kArchStackPointer:
237 // ArchStackPointer instruction loads the current stack pointer value and 236 // ArchStackPointer instruction loads the current stack pointer value and
238 // must not be reordered with instruction with side effects. 237 // must not be reordered with instruction with side effects.
239 return kIsLoadOperation; 238 return kIsLoadOperation;
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 } 345 }
347 } 346 }
348 347
349 node->set_total_latency(max_latency + node->latency()); 348 node->set_total_latency(max_latency + node->latency());
350 } 349 }
351 } 350 }
352 351
353 } // namespace compiler 352 } // namespace compiler
354 } // namespace internal 353 } // namespace internal
355 } // namespace v8 354 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/instruction-codes.h ('k') | src/compiler/instruction-selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698