| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(SSEFloat32ToInt32) \ | 66 V(SSEFloat32ToInt32) \ |
| 67 V(SSEFloat32ToUint32) \ |
| 67 V(SSEFloat32Round) \ | 68 V(SSEFloat32Round) \ |
| 68 V(SSEFloat64Cmp) \ | 69 V(SSEFloat64Cmp) \ |
| 69 V(SSEFloat64Add) \ | 70 V(SSEFloat64Add) \ |
| 70 V(SSEFloat64Sub) \ | 71 V(SSEFloat64Sub) \ |
| 71 V(SSEFloat64Mul) \ | 72 V(SSEFloat64Mul) \ |
| 72 V(SSEFloat64Div) \ | 73 V(SSEFloat64Div) \ |
| 73 V(SSEFloat64Mod) \ | 74 V(SSEFloat64Mod) \ |
| 74 V(SSEFloat64Abs) \ | 75 V(SSEFloat64Abs) \ |
| 75 V(SSEFloat64Neg) \ | 76 V(SSEFloat64Neg) \ |
| 76 V(SSEFloat64Sqrt) \ | 77 V(SSEFloat64Sqrt) \ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 V(M1I) /* [ %r2*1 + K] */ \ | 169 V(M1I) /* [ %r2*1 + K] */ \ |
| 169 V(M2I) /* [ %r2*2 + K] */ \ | 170 V(M2I) /* [ %r2*2 + K] */ \ |
| 170 V(M4I) /* [ %r2*4 + K] */ \ | 171 V(M4I) /* [ %r2*4 + K] */ \ |
| 171 V(M8I) /* [ %r2*8 + K] */ | 172 V(M8I) /* [ %r2*8 + K] */ |
| 172 | 173 |
| 173 } // namespace compiler | 174 } // namespace compiler |
| 174 } // namespace internal | 175 } // namespace internal |
| 175 } // namespace v8 | 176 } // namespace v8 |
| 176 | 177 |
| 177 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 178 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |