| 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 28 matching lines...) Expand all Loading... |
| 39 V(X64Shl) \ | 39 V(X64Shl) \ |
| 40 V(X64Shl32) \ | 40 V(X64Shl32) \ |
| 41 V(X64Shr) \ | 41 V(X64Shr) \ |
| 42 V(X64Shr32) \ | 42 V(X64Shr32) \ |
| 43 V(X64Sar) \ | 43 V(X64Sar) \ |
| 44 V(X64Sar32) \ | 44 V(X64Sar32) \ |
| 45 V(X64Ror) \ | 45 V(X64Ror) \ |
| 46 V(X64Ror32) \ | 46 V(X64Ror32) \ |
| 47 V(X64Push) \ | 47 V(X64Push) \ |
| 48 V(X64PushI) \ | 48 V(X64PushI) \ |
| 49 V(X64Movsxlq) \ |
| 50 V(X64Movl) \ |
| 49 V(X64CallCodeObject) \ | 51 V(X64CallCodeObject) \ |
| 50 V(X64CallAddress) \ | 52 V(X64CallAddress) \ |
| 51 V(PopStack) \ | 53 V(PopStack) \ |
| 52 V(X64CallJSFunction) \ | 54 V(X64CallJSFunction) \ |
| 53 V(SSEFloat64Cmp) \ | 55 V(SSEFloat64Cmp) \ |
| 54 V(SSEFloat64Add) \ | 56 V(SSEFloat64Add) \ |
| 55 V(SSEFloat64Sub) \ | 57 V(SSEFloat64Sub) \ |
| 56 V(SSEFloat64Mul) \ | 58 V(SSEFloat64Mul) \ |
| 57 V(SSEFloat64Div) \ | 59 V(SSEFloat64Div) \ |
| 58 V(SSEFloat64Mod) \ | 60 V(SSEFloat64Mod) \ |
| 59 V(X64Int32ToInt64) \ | |
| 60 V(X64Int64ToInt32) \ | |
| 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(SSELoad) \ | 65 V(SSELoad) \ |
| 66 V(SSEStore) \ | 66 V(SSEStore) \ |
| 67 V(X64LoadWord8) \ | 67 V(X64LoadWord8) \ |
| 68 V(X64StoreWord8) \ | 68 V(X64StoreWord8) \ |
| 69 V(X64StoreWord8I) \ | 69 V(X64StoreWord8I) \ |
| 70 V(X64LoadWord16) \ | 70 V(X64LoadWord16) \ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 101 V(MR1I) /* [%r1 + %r2 + K] */ \ | 101 V(MR1I) /* [%r1 + %r2 + K] */ \ |
| 102 V(MR2I) /* [%r1 + %r2*2 + K] */ \ | 102 V(MR2I) /* [%r1 + %r2*2 + K] */ \ |
| 103 V(MR4I) /* [%r1 + %r2*4 + K] */ \ | 103 V(MR4I) /* [%r1 + %r2*4 + K] */ \ |
| 104 V(MR8I) /* [%r1 + %r2*8 + K] */ | 104 V(MR8I) /* [%r1 + %r2*8 + K] */ |
| 105 | 105 |
| 106 } // namespace compiler | 106 } // namespace compiler |
| 107 } // namespace internal | 107 } // namespace internal |
| 108 } // namespace v8 | 108 } // namespace v8 |
| 109 | 109 |
| 110 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 110 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |