| 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_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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 V(AVXFloat64Add) \ | 110 V(AVXFloat64Add) \ |
| 111 V(AVXFloat64Sub) \ | 111 V(AVXFloat64Sub) \ |
| 112 V(AVXFloat64Mul) \ | 112 V(AVXFloat64Mul) \ |
| 113 V(AVXFloat64Div) \ | 113 V(AVXFloat64Div) \ |
| 114 V(AVXFloat64Abs) \ | 114 V(AVXFloat64Abs) \ |
| 115 V(AVXFloat64Neg) \ | 115 V(AVXFloat64Neg) \ |
| 116 V(AVXFloat32Abs) \ | 116 V(AVXFloat32Abs) \ |
| 117 V(AVXFloat32Neg) \ | 117 V(AVXFloat32Neg) \ |
| 118 V(X64Movsxbl) \ | 118 V(X64Movsxbl) \ |
| 119 V(X64Movzxbl) \ | 119 V(X64Movzxbl) \ |
| 120 V(X64Movsxbq) \ | |
| 121 V(X64Movzxbq) \ | |
| 122 V(X64Movb) \ | 120 V(X64Movb) \ |
| 123 V(X64Movsxwl) \ | 121 V(X64Movsxwl) \ |
| 124 V(X64Movzxwl) \ | 122 V(X64Movzxwl) \ |
| 125 V(X64Movsxwq) \ | |
| 126 V(X64Movzxwq) \ | |
| 127 V(X64Movw) \ | 123 V(X64Movw) \ |
| 128 V(X64Movl) \ | 124 V(X64Movl) \ |
| 129 V(X64Movsxlq) \ | 125 V(X64Movsxlq) \ |
| 130 V(X64Movq) \ | 126 V(X64Movq) \ |
| 131 V(X64Movsd) \ | 127 V(X64Movsd) \ |
| 132 V(X64Movss) \ | 128 V(X64Movss) \ |
| 133 V(X64BitcastFI) \ | 129 V(X64BitcastFI) \ |
| 134 V(X64BitcastDL) \ | 130 V(X64BitcastDL) \ |
| 135 V(X64BitcastIF) \ | 131 V(X64BitcastIF) \ |
| 136 V(X64BitcastLD) \ | 132 V(X64BitcastLD) \ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 V(M1I) /* [ %r2*1 + K] */ \ | 171 V(M1I) /* [ %r2*1 + K] */ \ |
| 176 V(M2I) /* [ %r2*2 + K] */ \ | 172 V(M2I) /* [ %r2*2 + K] */ \ |
| 177 V(M4I) /* [ %r2*4 + K] */ \ | 173 V(M4I) /* [ %r2*4 + K] */ \ |
| 178 V(M8I) /* [ %r2*8 + K] */ | 174 V(M8I) /* [ %r2*8 + K] */ |
| 179 | 175 |
| 180 } // namespace compiler | 176 } // namespace compiler |
| 181 } // namespace internal | 177 } // namespace internal |
| 182 } // namespace v8 | 178 } // namespace v8 |
| 183 | 179 |
| 184 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 180 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |