| 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 25 matching lines...) Expand all Loading... |
| 36 V(SSEFloat32Cmp) \ | 36 V(SSEFloat32Cmp) \ |
| 37 V(SSEFloat32Add) \ | 37 V(SSEFloat32Add) \ |
| 38 V(SSEFloat32Sub) \ | 38 V(SSEFloat32Sub) \ |
| 39 V(SSEFloat32Mul) \ | 39 V(SSEFloat32Mul) \ |
| 40 V(SSEFloat32Div) \ | 40 V(SSEFloat32Div) \ |
| 41 V(SSEFloat32Max) \ | 41 V(SSEFloat32Max) \ |
| 42 V(SSEFloat32Min) \ | 42 V(SSEFloat32Min) \ |
| 43 V(SSEFloat32Abs) \ | 43 V(SSEFloat32Abs) \ |
| 44 V(SSEFloat32Neg) \ | 44 V(SSEFloat32Neg) \ |
| 45 V(SSEFloat32Sqrt) \ | 45 V(SSEFloat32Sqrt) \ |
| 46 V(SSEFloat32Round) \ |
| 46 V(SSEFloat64Cmp) \ | 47 V(SSEFloat64Cmp) \ |
| 47 V(SSEFloat64Add) \ | 48 V(SSEFloat64Add) \ |
| 48 V(SSEFloat64Sub) \ | 49 V(SSEFloat64Sub) \ |
| 49 V(SSEFloat64Mul) \ | 50 V(SSEFloat64Mul) \ |
| 50 V(SSEFloat64Div) \ | 51 V(SSEFloat64Div) \ |
| 51 V(SSEFloat64Mod) \ | 52 V(SSEFloat64Mod) \ |
| 52 V(SSEFloat64Max) \ | 53 V(SSEFloat64Max) \ |
| 53 V(SSEFloat64Min) \ | 54 V(SSEFloat64Min) \ |
| 54 V(SSEFloat64Abs) \ | 55 V(SSEFloat64Abs) \ |
| 55 V(SSEFloat64Neg) \ | 56 V(SSEFloat64Neg) \ |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 V(M2I) /* [ %r2*2 + K] */ \ | 131 V(M2I) /* [ %r2*2 + K] */ \ |
| 131 V(M4I) /* [ %r2*4 + K] */ \ | 132 V(M4I) /* [ %r2*4 + K] */ \ |
| 132 V(M8I) /* [ %r2*8 + K] */ \ | 133 V(M8I) /* [ %r2*8 + K] */ \ |
| 133 V(MI) /* [ K] */ | 134 V(MI) /* [ K] */ |
| 134 | 135 |
| 135 } // namespace compiler | 136 } // namespace compiler |
| 136 } // namespace internal | 137 } // namespace internal |
| 137 } // namespace v8 | 138 } // namespace v8 |
| 138 | 139 |
| 139 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ | 140 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
| OLD | NEW |