| 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 24 matching lines...) Expand all Loading... |
| 35 V(X64Not) \ | 35 V(X64Not) \ |
| 36 V(X64Not32) \ | 36 V(X64Not32) \ |
| 37 V(X64Neg) \ | 37 V(X64Neg) \ |
| 38 V(X64Neg32) \ | 38 V(X64Neg32) \ |
| 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) \ |
| 46 V(X64Ror32) \ |
| 45 V(X64Push) \ | 47 V(X64Push) \ |
| 46 V(X64PushI) \ | 48 V(X64PushI) \ |
| 47 V(X64CallCodeObject) \ | 49 V(X64CallCodeObject) \ |
| 48 V(X64CallAddress) \ | 50 V(X64CallAddress) \ |
| 49 V(PopStack) \ | 51 V(PopStack) \ |
| 50 V(X64CallJSFunction) \ | 52 V(X64CallJSFunction) \ |
| 51 V(SSEFloat64Cmp) \ | 53 V(SSEFloat64Cmp) \ |
| 52 V(SSEFloat64Add) \ | 54 V(SSEFloat64Add) \ |
| 53 V(SSEFloat64Sub) \ | 55 V(SSEFloat64Sub) \ |
| 54 V(SSEFloat64Mul) \ | 56 V(SSEFloat64Mul) \ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 V(MR1I) /* [%r1 + %r2 + K] */ \ | 101 V(MR1I) /* [%r1 + %r2 + K] */ \ |
| 100 V(MR2I) /* [%r1 + %r2*2 + K] */ \ | 102 V(MR2I) /* [%r1 + %r2*2 + K] */ \ |
| 101 V(MR4I) /* [%r1 + %r2*4 + K] */ \ | 103 V(MR4I) /* [%r1 + %r2*4 + K] */ \ |
| 102 V(MR8I) /* [%r1 + %r2*8 + K] */ | 104 V(MR8I) /* [%r1 + %r2*8 + K] */ |
| 103 | 105 |
| 104 } // namespace compiler | 106 } // namespace compiler |
| 105 } // namespace internal | 107 } // namespace internal |
| 106 } // namespace v8 | 108 } // namespace v8 |
| 107 | 109 |
| 108 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 110 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |