| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 V(SSEFloat32Add) \ | 56 V(SSEFloat32Add) \ |
| 57 V(SSEFloat32Sub) \ | 57 V(SSEFloat32Sub) \ |
| 58 V(SSEFloat32Mul) \ | 58 V(SSEFloat32Mul) \ |
| 59 V(SSEFloat32Div) \ | 59 V(SSEFloat32Div) \ |
| 60 V(SSEFloat32Abs) \ | 60 V(SSEFloat32Abs) \ |
| 61 V(SSEFloat32Neg) \ | 61 V(SSEFloat32Neg) \ |
| 62 V(SSEFloat32Sqrt) \ | 62 V(SSEFloat32Sqrt) \ |
| 63 V(SSEFloat32Max) \ | 63 V(SSEFloat32Max) \ |
| 64 V(SSEFloat32Min) \ | 64 V(SSEFloat32Min) \ |
| 65 V(SSEFloat32ToFloat64) \ | 65 V(SSEFloat32ToFloat64) \ |
| 66 V(SSEFloat32Round) \ |
| 66 V(SSEFloat64Cmp) \ | 67 V(SSEFloat64Cmp) \ |
| 67 V(SSEFloat64Add) \ | 68 V(SSEFloat64Add) \ |
| 68 V(SSEFloat64Sub) \ | 69 V(SSEFloat64Sub) \ |
| 69 V(SSEFloat64Mul) \ | 70 V(SSEFloat64Mul) \ |
| 70 V(SSEFloat64Div) \ | 71 V(SSEFloat64Div) \ |
| 71 V(SSEFloat64Mod) \ | 72 V(SSEFloat64Mod) \ |
| 72 V(SSEFloat64Abs) \ | 73 V(SSEFloat64Abs) \ |
| 73 V(SSEFloat64Neg) \ | 74 V(SSEFloat64Neg) \ |
| 74 V(SSEFloat64Sqrt) \ | 75 V(SSEFloat64Sqrt) \ |
| 75 V(SSEFloat64Round) \ | 76 V(SSEFloat64Round) \ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 V(M1I) /* [ %r2*1 + K] */ \ | 164 V(M1I) /* [ %r2*1 + K] */ \ |
| 164 V(M2I) /* [ %r2*2 + K] */ \ | 165 V(M2I) /* [ %r2*2 + K] */ \ |
| 165 V(M4I) /* [ %r2*4 + K] */ \ | 166 V(M4I) /* [ %r2*4 + K] */ \ |
| 166 V(M8I) /* [ %r2*8 + K] */ | 167 V(M8I) /* [ %r2*8 + K] */ |
| 167 | 168 |
| 168 } // namespace compiler | 169 } // namespace compiler |
| 169 } // namespace internal | 170 } // namespace internal |
| 170 } // namespace v8 | 171 } // namespace v8 |
| 171 | 172 |
| 172 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 173 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |