| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 V(SSEFloat64Sqrt) \ | 55 V(SSEFloat64Sqrt) \ |
| 56 V(SSEFloat64Floor) \ | 56 V(SSEFloat64Floor) \ |
| 57 V(SSEFloat64Ceil) \ | 57 V(SSEFloat64Ceil) \ |
| 58 V(SSEFloat64RoundTruncate) \ | 58 V(SSEFloat64RoundTruncate) \ |
| 59 V(SSECvtss2sd) \ | 59 V(SSECvtss2sd) \ |
| 60 V(SSECvtsd2ss) \ | 60 V(SSECvtsd2ss) \ |
| 61 V(SSEFloat64ToInt32) \ | 61 V(SSEFloat64ToInt32) \ |
| 62 V(SSEFloat64ToUint32) \ | 62 V(SSEFloat64ToUint32) \ |
| 63 V(SSEInt32ToFloat64) \ | 63 V(SSEInt32ToFloat64) \ |
| 64 V(SSEUint32ToFloat64) \ | 64 V(SSEUint32ToFloat64) \ |
| 65 V(SSEFloat64ExtractLowWord32) \ |
| 66 V(SSEFloat64ExtractHighWord32) \ |
| 67 V(SSEFloat64InsertLowWord32) \ |
| 68 V(SSEFloat64InsertHighWord32) \ |
| 69 V(SSEFloat64LoadLowWord32) \ |
| 65 V(AVXFloat64Add) \ | 70 V(AVXFloat64Add) \ |
| 66 V(AVXFloat64Sub) \ | 71 V(AVXFloat64Sub) \ |
| 67 V(AVXFloat64Mul) \ | 72 V(AVXFloat64Mul) \ |
| 68 V(AVXFloat64Div) \ | 73 V(AVXFloat64Div) \ |
| 69 V(X64Movsxbl) \ | 74 V(X64Movsxbl) \ |
| 70 V(X64Movzxbl) \ | 75 V(X64Movzxbl) \ |
| 71 V(X64Movb) \ | 76 V(X64Movb) \ |
| 72 V(X64Movsxwl) \ | 77 V(X64Movsxwl) \ |
| 73 V(X64Movzxwl) \ | 78 V(X64Movzxwl) \ |
| 74 V(X64Movw) \ | 79 V(X64Movw) \ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 V(M1I) /* [ %r2*1 + K] */ \ | 120 V(M1I) /* [ %r2*1 + K] */ \ |
| 116 V(M2I) /* [ %r2*2 + K] */ \ | 121 V(M2I) /* [ %r2*2 + K] */ \ |
| 117 V(M4I) /* [ %r2*4 + K] */ \ | 122 V(M4I) /* [ %r2*4 + K] */ \ |
| 118 V(M8I) /* [ %r2*8 + K] */ | 123 V(M8I) /* [ %r2*8 + K] */ |
| 119 | 124 |
| 120 } // namespace compiler | 125 } // namespace compiler |
| 121 } // namespace internal | 126 } // namespace internal |
| 122 } // namespace v8 | 127 } // namespace v8 |
| 123 | 128 |
| 124 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 129 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |