| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 V(X64CallJSFunction) \ | 50 V(X64CallJSFunction) \ |
| 51 V(SSEFloat64Cmp) \ | 51 V(SSEFloat64Cmp) \ |
| 52 V(SSEFloat64Add) \ | 52 V(SSEFloat64Add) \ |
| 53 V(SSEFloat64Sub) \ | 53 V(SSEFloat64Sub) \ |
| 54 V(SSEFloat64Mul) \ | 54 V(SSEFloat64Mul) \ |
| 55 V(SSEFloat64Div) \ | 55 V(SSEFloat64Div) \ |
| 56 V(SSEFloat64Mod) \ | 56 V(SSEFloat64Mod) \ |
| 57 V(X64Int32ToInt64) \ | 57 V(X64Int32ToInt64) \ |
| 58 V(X64Int64ToInt32) \ | 58 V(X64Int64ToInt32) \ |
| 59 V(SSEFloat64ToInt32) \ | 59 V(SSEFloat64ToInt32) \ |
| 60 V(SSEFloat64ToUint32) \ |
| 60 V(SSEInt32ToFloat64) \ | 61 V(SSEInt32ToFloat64) \ |
| 62 V(SSEUint32ToFloat64) \ |
| 61 V(SSELoad) \ | 63 V(SSELoad) \ |
| 62 V(SSEStore) \ | 64 V(SSEStore) \ |
| 63 V(X64LoadWord8) \ | 65 V(X64LoadWord8) \ |
| 64 V(X64StoreWord8) \ | 66 V(X64StoreWord8) \ |
| 65 V(X64StoreWord8I) \ | 67 V(X64StoreWord8I) \ |
| 66 V(X64LoadWord16) \ | 68 V(X64LoadWord16) \ |
| 67 V(X64StoreWord16) \ | 69 V(X64StoreWord16) \ |
| 68 V(X64StoreWord16I) \ | 70 V(X64StoreWord16I) \ |
| 69 V(X64LoadWord32) \ | 71 V(X64LoadWord32) \ |
| 70 V(X64StoreWord32) \ | 72 V(X64StoreWord32) \ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 97 V(MR1I) /* [%r1 + %r2 + K] */ \ | 99 V(MR1I) /* [%r1 + %r2 + K] */ \ |
| 98 V(MR2I) /* [%r1 + %r2*2 + K] */ \ | 100 V(MR2I) /* [%r1 + %r2*2 + K] */ \ |
| 99 V(MR4I) /* [%r1 + %r2*4 + K] */ \ | 101 V(MR4I) /* [%r1 + %r2*4 + K] */ \ |
| 100 V(MR8I) /* [%r1 + %r2*8 + K] */ | 102 V(MR8I) /* [%r1 + %r2*8 + K] */ |
| 101 | 103 |
| 102 } // namespace compiler | 104 } // namespace compiler |
| 103 } // namespace internal | 105 } // namespace internal |
| 104 } // namespace v8 | 106 } // namespace v8 |
| 105 | 107 |
| 106 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 108 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |