OLD | NEW |
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 V(SSEFloat64ToUint32) \ | 74 V(SSEFloat64ToUint32) \ |
75 V(SSEInt32ToFloat32) \ | 75 V(SSEInt32ToFloat32) \ |
76 V(SSEUint32ToFloat32) \ | 76 V(SSEUint32ToFloat32) \ |
77 V(SSEInt32ToFloat64) \ | 77 V(SSEInt32ToFloat64) \ |
78 V(SSEUint32ToFloat64) \ | 78 V(SSEUint32ToFloat64) \ |
79 V(SSEFloat64ExtractLowWord32) \ | 79 V(SSEFloat64ExtractLowWord32) \ |
80 V(SSEFloat64ExtractHighWord32) \ | 80 V(SSEFloat64ExtractHighWord32) \ |
81 V(SSEFloat64InsertLowWord32) \ | 81 V(SSEFloat64InsertLowWord32) \ |
82 V(SSEFloat64InsertHighWord32) \ | 82 V(SSEFloat64InsertHighWord32) \ |
83 V(SSEFloat64LoadLowWord32) \ | 83 V(SSEFloat64LoadLowWord32) \ |
| 84 V(SSEFloat64SilenceNaN) \ |
84 V(AVXFloat32Add) \ | 85 V(AVXFloat32Add) \ |
85 V(AVXFloat32Sub) \ | 86 V(AVXFloat32Sub) \ |
86 V(AVXFloat32Mul) \ | 87 V(AVXFloat32Mul) \ |
87 V(AVXFloat32Div) \ | 88 V(AVXFloat32Div) \ |
88 V(AVXFloat32Max) \ | 89 V(AVXFloat32Max) \ |
89 V(AVXFloat32Min) \ | 90 V(AVXFloat32Min) \ |
90 V(AVXFloat64Add) \ | 91 V(AVXFloat64Add) \ |
91 V(AVXFloat64Sub) \ | 92 V(AVXFloat64Sub) \ |
92 V(AVXFloat64Mul) \ | 93 V(AVXFloat64Mul) \ |
93 V(AVXFloat64Div) \ | 94 V(AVXFloat64Div) \ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 V(M2I) /* [ %r2*2 + K] */ \ | 150 V(M2I) /* [ %r2*2 + K] */ \ |
150 V(M4I) /* [ %r2*4 + K] */ \ | 151 V(M4I) /* [ %r2*4 + K] */ \ |
151 V(M8I) /* [ %r2*8 + K] */ \ | 152 V(M8I) /* [ %r2*8 + K] */ \ |
152 V(MI) /* [ K] */ | 153 V(MI) /* [ K] */ |
153 | 154 |
154 } // namespace compiler | 155 } // namespace compiler |
155 } // namespace internal | 156 } // namespace internal |
156 } // namespace v8 | 157 } // namespace v8 |
157 | 158 |
158 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ | 159 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
OLD | NEW |