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

Side by Side Diff: src/compiler/ia32/instruction-codes-ia32.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
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_IA32_INSTRUCTION_CODES_IA32_H_ 5 #ifndef V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 V(AVXFloat32Mul) \ 69 V(AVXFloat32Mul) \
70 V(AVXFloat32Div) \ 70 V(AVXFloat32Div) \
71 V(AVXFloat32Max) \ 71 V(AVXFloat32Max) \
72 V(AVXFloat32Min) \ 72 V(AVXFloat32Min) \
73 V(AVXFloat64Add) \ 73 V(AVXFloat64Add) \
74 V(AVXFloat64Sub) \ 74 V(AVXFloat64Sub) \
75 V(AVXFloat64Mul) \ 75 V(AVXFloat64Mul) \
76 V(AVXFloat64Div) \ 76 V(AVXFloat64Div) \
77 V(AVXFloat64Max) \ 77 V(AVXFloat64Max) \
78 V(AVXFloat64Min) \ 78 V(AVXFloat64Min) \
79 V(AVXFloat64Abs) \
80 V(AVXFloat64Neg) \
81 V(AVXFloat32Abs) \
82 V(AVXFloat32Neg) \
79 V(IA32Movsxbl) \ 83 V(IA32Movsxbl) \
80 V(IA32Movzxbl) \ 84 V(IA32Movzxbl) \
81 V(IA32Movb) \ 85 V(IA32Movb) \
82 V(IA32Movsxwl) \ 86 V(IA32Movsxwl) \
83 V(IA32Movzxwl) \ 87 V(IA32Movzxwl) \
84 V(IA32Movw) \ 88 V(IA32Movw) \
85 V(IA32Movl) \ 89 V(IA32Movl) \
86 V(IA32Movss) \ 90 V(IA32Movss) \
87 V(IA32Movsd) \ 91 V(IA32Movsd) \
88 V(IA32Lea) \ 92 V(IA32Lea) \
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 V(M2I) /* [ %r2*2 + K] */ \ 126 V(M2I) /* [ %r2*2 + K] */ \
123 V(M4I) /* [ %r2*4 + K] */ \ 127 V(M4I) /* [ %r2*4 + K] */ \
124 V(M8I) /* [ %r2*8 + K] */ \ 128 V(M8I) /* [ %r2*8 + K] */ \
125 V(MI) /* [ K] */ 129 V(MI) /* [ K] */
126 130
127 } // namespace compiler 131 } // namespace compiler
128 } // namespace internal 132 } // namespace internal
129 } // namespace v8 133 } // namespace v8
130 134
131 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 135 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/compiler/ia32/instruction-selector-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698