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

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

Issue 1066393002: [turbofan] Add new Float32Abs and Float64Abs operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix comment. Created 5 years, 8 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(X64Lzcnt32) \
50 V(SSEFloat32Cmp) \ 50 V(SSEFloat32Cmp) \
51 V(SSEFloat32Add) \ 51 V(SSEFloat32Add) \
52 V(SSEFloat32Sub) \ 52 V(SSEFloat32Sub) \
53 V(SSEFloat32Mul) \ 53 V(SSEFloat32Mul) \
54 V(SSEFloat32Div) \ 54 V(SSEFloat32Div) \
55 V(SSEFloat32Abs) \
55 V(SSEFloat32Neg) \ 56 V(SSEFloat32Neg) \
56 V(SSEFloat32Sqrt) \ 57 V(SSEFloat32Sqrt) \
57 V(SSEFloat32Max) \ 58 V(SSEFloat32Max) \
58 V(SSEFloat32Min) \ 59 V(SSEFloat32Min) \
59 V(SSEFloat32ToFloat64) \ 60 V(SSEFloat32ToFloat64) \
60 V(SSEFloat64Cmp) \ 61 V(SSEFloat64Cmp) \
61 V(SSEFloat64Add) \ 62 V(SSEFloat64Add) \
62 V(SSEFloat64Sub) \ 63 V(SSEFloat64Sub) \
63 V(SSEFloat64Mul) \ 64 V(SSEFloat64Mul) \
64 V(SSEFloat64Div) \ 65 V(SSEFloat64Div) \
65 V(SSEFloat64Mod) \ 66 V(SSEFloat64Mod) \
67 V(SSEFloat64Abs) \
66 V(SSEFloat64Neg) \ 68 V(SSEFloat64Neg) \
67 V(SSEFloat64Sqrt) \ 69 V(SSEFloat64Sqrt) \
68 V(SSEFloat64Round) \ 70 V(SSEFloat64Round) \
69 V(SSEFloat64Max) \ 71 V(SSEFloat64Max) \
70 V(SSEFloat64Min) \ 72 V(SSEFloat64Min) \
71 V(SSEFloat64ToFloat32) \ 73 V(SSEFloat64ToFloat32) \
72 V(SSEFloat64ToInt32) \ 74 V(SSEFloat64ToInt32) \
73 V(SSEFloat64ToUint32) \ 75 V(SSEFloat64ToUint32) \
74 V(SSEInt32ToFloat64) \ 76 V(SSEInt32ToFloat64) \
75 V(SSEUint32ToFloat64) \ 77 V(SSEUint32ToFloat64) \
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 V(M1I) /* [ %r2*1 + K] */ \ 144 V(M1I) /* [ %r2*1 + K] */ \
143 V(M2I) /* [ %r2*2 + K] */ \ 145 V(M2I) /* [ %r2*2 + K] */ \
144 V(M4I) /* [ %r2*4 + K] */ \ 146 V(M4I) /* [ %r2*4 + K] */ \
145 V(M8I) /* [ %r2*8 + K] */ 147 V(M8I) /* [ %r2*8 + K] */
146 148
147 } // namespace compiler 149 } // namespace compiler
148 } // namespace internal 150 } // namespace internal
149 } // namespace v8 151 } // namespace v8
150 152
151 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 153 #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