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

Side by Side Diff: src/compiler/x64/instruction-codes-x64.h

Issue 1021183002: [turbofan] Turn Math.clz32 into an inlinable builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-selector-x64.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 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 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 28 matching lines...) Expand all
39 V(X64Neg) \ 39 V(X64Neg) \
40 V(X64Neg32) \ 40 V(X64Neg32) \
41 V(X64Shl) \ 41 V(X64Shl) \
42 V(X64Shl32) \ 42 V(X64Shl32) \
43 V(X64Shr) \ 43 V(X64Shr) \
44 V(X64Shr32) \ 44 V(X64Shr32) \
45 V(X64Sar) \ 45 V(X64Sar) \
46 V(X64Sar32) \ 46 V(X64Sar32) \
47 V(X64Ror) \ 47 V(X64Ror) \
48 V(X64Ror32) \ 48 V(X64Ror32) \
49 V(X64Lzcnt32) \
49 V(SSEFloat64Cmp) \ 50 V(SSEFloat64Cmp) \
50 V(SSEFloat64Add) \ 51 V(SSEFloat64Add) \
51 V(SSEFloat64Sub) \ 52 V(SSEFloat64Sub) \
52 V(SSEFloat64Mul) \ 53 V(SSEFloat64Mul) \
53 V(SSEFloat64Div) \ 54 V(SSEFloat64Div) \
54 V(SSEFloat64Mod) \ 55 V(SSEFloat64Mod) \
55 V(SSEFloat64Sqrt) \ 56 V(SSEFloat64Sqrt) \
56 V(SSEFloat64Round) \ 57 V(SSEFloat64Round) \
57 V(SSEFloat64Max) \ 58 V(SSEFloat64Max) \
58 V(SSEFloat64Min) \ 59 V(SSEFloat64Min) \
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 V(M1I) /* [ %r2*1 + K] */ \ 124 V(M1I) /* [ %r2*1 + K] */ \
124 V(M2I) /* [ %r2*2 + K] */ \ 125 V(M2I) /* [ %r2*2 + K] */ \
125 V(M4I) /* [ %r2*4 + K] */ \ 126 V(M4I) /* [ %r2*4 + K] */ \
126 V(M8I) /* [ %r2*8 + K] */ 127 V(M8I) /* [ %r2*8 + K] */
127 128
128 } // namespace compiler 129 } // namespace compiler
129 } // namespace internal 130 } // namespace internal
130 } // namespace v8 131 } // namespace v8
131 132
132 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 133 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698