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

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

Issue 2170343002: [turbofan] Change Float64Max/Float64Min to JavaScript semantics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: mips/mips64 ports. Created 4 years, 5 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 case kArm64Ubfx32: 75 case kArm64Ubfx32:
76 case kArm64Ubfiz32: 76 case kArm64Ubfiz32:
77 case kArm64Bfi: 77 case kArm64Bfi:
78 case kArm64Rbit: 78 case kArm64Rbit:
79 case kArm64Rbit32: 79 case kArm64Rbit32:
80 case kArm64Float32Cmp: 80 case kArm64Float32Cmp:
81 case kArm64Float32Add: 81 case kArm64Float32Add:
82 case kArm64Float32Sub: 82 case kArm64Float32Sub:
83 case kArm64Float32Mul: 83 case kArm64Float32Mul:
84 case kArm64Float32Div: 84 case kArm64Float32Div:
85 case kArm64Float32Max:
86 case kArm64Float32Min:
87 case kArm64Float32Abs: 85 case kArm64Float32Abs:
88 case kArm64Float32Neg: 86 case kArm64Float32Neg:
89 case kArm64Float32Sqrt: 87 case kArm64Float32Sqrt:
90 case kArm64Float32RoundDown: 88 case kArm64Float32RoundDown:
91 case kArm64Float64Cmp: 89 case kArm64Float64Cmp:
92 case kArm64Float64Add: 90 case kArm64Float64Add:
93 case kArm64Float64Sub: 91 case kArm64Float64Sub:
94 case kArm64Float64Mul: 92 case kArm64Float64Mul:
95 case kArm64Float64Div: 93 case kArm64Float64Div:
96 case kArm64Float64Mod: 94 case kArm64Float64Mod:
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 return 5; 334 return 5;
337 335
338 default: 336 default:
339 return 2; 337 return 2;
340 } 338 }
341 } 339 }
342 340
343 } // namespace compiler 341 } // namespace compiler
344 } // namespace internal 342 } // namespace internal
345 } // namespace v8 343 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-codes-arm64.h ('k') | src/compiler/arm64/instruction-selector-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698