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

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

Issue 1698483002: [arm][arm64] Improve CountTrailingZero implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: comments addressed Created 4 years, 10 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 case kArm64Ror32: 68 case kArm64Ror32:
69 case kArm64Mov32: 69 case kArm64Mov32:
70 case kArm64Sxtb32: 70 case kArm64Sxtb32:
71 case kArm64Sxth32: 71 case kArm64Sxth32:
72 case kArm64Sxtw: 72 case kArm64Sxtw:
73 case kArm64Sbfx32: 73 case kArm64Sbfx32:
74 case kArm64Ubfx: 74 case kArm64Ubfx:
75 case kArm64Ubfx32: 75 case kArm64Ubfx32:
76 case kArm64Ubfiz32: 76 case kArm64Ubfiz32:
77 case kArm64Bfi: 77 case kArm64Bfi:
78 case kArm64Rbit:
79 case kArm64Rbit32:
78 case kArm64Float32Cmp: 80 case kArm64Float32Cmp:
79 case kArm64Float32Add: 81 case kArm64Float32Add:
80 case kArm64Float32Sub: 82 case kArm64Float32Sub:
81 case kArm64Float32Mul: 83 case kArm64Float32Mul:
82 case kArm64Float32Div: 84 case kArm64Float32Div:
83 case kArm64Float32Max: 85 case kArm64Float32Max:
84 case kArm64Float32Min: 86 case kArm64Float32Min:
85 case kArm64Float32Abs: 87 case kArm64Float32Abs:
86 case kArm64Float32Sqrt: 88 case kArm64Float32Sqrt:
87 case kArm64Float32RoundDown: 89 case kArm64Float32RoundDown:
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 return 5; 223 return 5;
222 224
223 default: 225 default:
224 return 1; 226 return 1;
225 } 227 }
226 } 228 }
227 229
228 } // namespace compiler 230 } // namespace compiler
229 } // namespace internal 231 } // namespace internal
230 } // namespace v8 232 } // 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