| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 V(X64Sar32) \ | 45 V(X64Sar32) \ |
| 46 V(X64Ror) \ | 46 V(X64Ror) \ |
| 47 V(X64Ror32) \ | 47 V(X64Ror32) \ |
| 48 V(SSEFloat64Cmp) \ | 48 V(SSEFloat64Cmp) \ |
| 49 V(SSEFloat64Add) \ | 49 V(SSEFloat64Add) \ |
| 50 V(SSEFloat64Sub) \ | 50 V(SSEFloat64Sub) \ |
| 51 V(SSEFloat64Mul) \ | 51 V(SSEFloat64Mul) \ |
| 52 V(SSEFloat64Div) \ | 52 V(SSEFloat64Div) \ |
| 53 V(SSEFloat64Mod) \ | 53 V(SSEFloat64Mod) \ |
| 54 V(SSEFloat64Sqrt) \ | 54 V(SSEFloat64Sqrt) \ |
| 55 V(SSEFloat64Floor) \ |
| 56 V(SSEFloat64Ceil) \ |
| 57 V(SSEFloat64RoundTruncate) \ |
| 55 V(SSECvtss2sd) \ | 58 V(SSECvtss2sd) \ |
| 56 V(SSECvtsd2ss) \ | 59 V(SSECvtsd2ss) \ |
| 57 V(SSEFloat64ToInt32) \ | 60 V(SSEFloat64ToInt32) \ |
| 58 V(SSEFloat64ToUint32) \ | 61 V(SSEFloat64ToUint32) \ |
| 59 V(SSEInt32ToFloat64) \ | 62 V(SSEInt32ToFloat64) \ |
| 60 V(SSEUint32ToFloat64) \ | 63 V(SSEUint32ToFloat64) \ |
| 61 V(X64Movsxbl) \ | 64 V(X64Movsxbl) \ |
| 62 V(X64Movzxbl) \ | 65 V(X64Movzxbl) \ |
| 63 V(X64Movb) \ | 66 V(X64Movb) \ |
| 64 V(X64Movsxwl) \ | 67 V(X64Movsxwl) \ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 V(M1I) /* [ %r2*1 + K] */ \ | 108 V(M1I) /* [ %r2*1 + K] */ \ |
| 106 V(M2I) /* [ %r2*2 + K] */ \ | 109 V(M2I) /* [ %r2*2 + K] */ \ |
| 107 V(M4I) /* [ %r2*4 + K] */ \ | 110 V(M4I) /* [ %r2*4 + K] */ \ |
| 108 V(M8I) /* [ %r2*8 + K] */ | 111 V(M8I) /* [ %r2*8 + K] */ |
| 109 | 112 |
| 110 } // namespace compiler | 113 } // namespace compiler |
| 111 } // namespace internal | 114 } // namespace internal |
| 112 } // namespace v8 | 115 } // namespace v8 |
| 113 | 116 |
| 114 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 117 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |