| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_STUB_CODE_H_ | 5 #ifndef VM_STUB_CODE_H_ |
| 6 #define VM_STUB_CODE_H_ | 6 #define VM_STUB_CODE_H_ |
| 7 | 7 |
| 8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
| 9 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 V(UpdateStoreBuffer) \ | 56 V(UpdateStoreBuffer) \ |
| 57 V(OneArgCheckInlineCache) \ | 57 V(OneArgCheckInlineCache) \ |
| 58 V(TwoArgsCheckInlineCache) \ | 58 V(TwoArgsCheckInlineCache) \ |
| 59 V(ThreeArgsCheckInlineCache) \ | 59 V(ThreeArgsCheckInlineCache) \ |
| 60 V(SmiAddInlineCache) \ | 60 V(SmiAddInlineCache) \ |
| 61 V(SmiSubInlineCache) \ | 61 V(SmiSubInlineCache) \ |
| 62 V(SmiEqualInlineCache) \ | 62 V(SmiEqualInlineCache) \ |
| 63 V(OneArgOptimizedCheckInlineCache) \ | 63 V(OneArgOptimizedCheckInlineCache) \ |
| 64 V(TwoArgsOptimizedCheckInlineCache) \ | 64 V(TwoArgsOptimizedCheckInlineCache) \ |
| 65 V(ThreeArgsOptimizedCheckInlineCache) \ | 65 V(ThreeArgsOptimizedCheckInlineCache) \ |
| 66 V(ClosureCallInlineCache) \ | |
| 67 V(ZeroArgsUnoptimizedStaticCall) \ | 66 V(ZeroArgsUnoptimizedStaticCall) \ |
| 68 V(OneArgUnoptimizedStaticCall) \ | 67 V(OneArgUnoptimizedStaticCall) \ |
| 69 V(TwoArgsUnoptimizedStaticCall) \ | 68 V(TwoArgsUnoptimizedStaticCall) \ |
| 70 V(OptimizeFunction) \ | 69 V(OptimizeFunction) \ |
| 71 V(InvokeDartCode) \ | 70 V(InvokeDartCode) \ |
| 72 | 71 |
| 73 // class StubEntry is used to describe stub methods generated in dart to | 72 // class StubEntry is used to describe stub methods generated in dart to |
| 74 // abstract out common code executed from generated dart code. | 73 // abstract out common code executed from generated dart code. |
| 75 class StubEntry { | 74 class StubEntry { |
| 76 public: | 75 public: |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 Assembler* assembler, | 214 Assembler* assembler, |
| 216 const Register left, | 215 const Register left, |
| 217 const Register right, | 216 const Register right, |
| 218 const Register temp1 = kNoRegister, | 217 const Register temp1 = kNoRegister, |
| 219 const Register temp2 = kNoRegister); | 218 const Register temp2 = kNoRegister); |
| 220 }; | 219 }; |
| 221 | 220 |
| 222 } // namespace dart | 221 } // namespace dart |
| 223 | 222 |
| 224 #endif // VM_STUB_CODE_H_ | 223 #endif // VM_STUB_CODE_H_ |
| OLD | NEW |