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

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

Issue 1072343002: [x86] Introduce vandps/vandpd/vxorps/vxorpd. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 V(AVXFloat32Div) \ 87 V(AVXFloat32Div) \
88 V(AVXFloat32Max) \ 88 V(AVXFloat32Max) \
89 V(AVXFloat32Min) \ 89 V(AVXFloat32Min) \
90 V(AVXFloat64Cmp) \ 90 V(AVXFloat64Cmp) \
91 V(AVXFloat64Add) \ 91 V(AVXFloat64Add) \
92 V(AVXFloat64Sub) \ 92 V(AVXFloat64Sub) \
93 V(AVXFloat64Mul) \ 93 V(AVXFloat64Mul) \
94 V(AVXFloat64Div) \ 94 V(AVXFloat64Div) \
95 V(AVXFloat64Max) \ 95 V(AVXFloat64Max) \
96 V(AVXFloat64Min) \ 96 V(AVXFloat64Min) \
97 V(AVXFloat64Abs) \
98 V(AVXFloat64Neg) \
99 V(AVXFloat32Abs) \
100 V(AVXFloat32Neg) \
97 V(X64Movsxbl) \ 101 V(X64Movsxbl) \
98 V(X64Movzxbl) \ 102 V(X64Movzxbl) \
99 V(X64Movb) \ 103 V(X64Movb) \
100 V(X64Movsxwl) \ 104 V(X64Movsxwl) \
101 V(X64Movzxwl) \ 105 V(X64Movzxwl) \
102 V(X64Movw) \ 106 V(X64Movw) \
103 V(X64Movl) \ 107 V(X64Movl) \
104 V(X64Movsxlq) \ 108 V(X64Movsxlq) \
105 V(X64Movq) \ 109 V(X64Movq) \
106 V(X64Movsd) \ 110 V(X64Movsd) \
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 V(M1I) /* [ %r2*1 + K] */ \ 148 V(M1I) /* [ %r2*1 + K] */ \
145 V(M2I) /* [ %r2*2 + K] */ \ 149 V(M2I) /* [ %r2*2 + K] */ \
146 V(M4I) /* [ %r2*4 + K] */ \ 150 V(M4I) /* [ %r2*4 + K] */ \
147 V(M8I) /* [ %r2*8 + K] */ 151 V(M8I) /* [ %r2*8 + K] */
148 152
149 } // namespace compiler 153 } // namespace compiler
150 } // namespace internal 154 } // namespace internal
151 } // namespace v8 155 } // namespace v8
152 156
153 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 157 #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