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

Side by Side Diff: src/compiler/arm64/instruction-scheduler-arm64.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 case kArm64Float32RoundDown: 90 case kArm64Float32RoundDown:
91 case kArm64Float64Cmp: 91 case kArm64Float64Cmp:
92 case kArm64Float64Add: 92 case kArm64Float64Add:
93 case kArm64Float64Sub: 93 case kArm64Float64Sub:
94 case kArm64Float64Mul: 94 case kArm64Float64Mul:
95 case kArm64Float64Div: 95 case kArm64Float64Div:
96 case kArm64Float64Mod: 96 case kArm64Float64Mod:
97 case kArm64Float64Max: 97 case kArm64Float64Max:
98 case kArm64Float64Min: 98 case kArm64Float64Min:
99 case kArm64Float64Abs: 99 case kArm64Float64Abs:
100 case kArm64Float64Log:
100 case kArm64Float64Neg: 101 case kArm64Float64Neg:
101 case kArm64Float64Sqrt: 102 case kArm64Float64Sqrt:
102 case kArm64Float64RoundDown: 103 case kArm64Float64RoundDown:
103 case kArm64Float64RoundTiesAway: 104 case kArm64Float64RoundTiesAway:
104 case kArm64Float64RoundTruncate: 105 case kArm64Float64RoundTruncate:
105 case kArm64Float64RoundTiesEven: 106 case kArm64Float64RoundTiesEven:
106 case kArm64Float64RoundUp: 107 case kArm64Float64RoundUp:
107 case kArm64Float32RoundTiesEven: 108 case kArm64Float32RoundTiesEven:
108 case kArm64Float32RoundTruncate: 109 case kArm64Float32RoundTruncate:
109 case kArm64Float32RoundUp: 110 case kArm64Float32RoundUp:
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 return 5; 336 return 5;
336 337
337 default: 338 default:
338 return 2; 339 return 2;
339 } 340 }
340 } 341 }
341 342
342 } // namespace compiler 343 } // namespace compiler
343 } // namespace internal 344 } // namespace internal
344 } // namespace v8 345 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698