| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 V(CallNativeCFunction) \ | 43 V(CallNativeCFunction) \ |
| 44 V(FixCallersTarget) \ | 44 V(FixCallersTarget) \ |
| 45 V(CallStaticFunction) \ | 45 V(CallStaticFunction) \ |
| 46 V(FixAllocationStubTarget) \ | 46 V(FixAllocationStubTarget) \ |
| 47 V(FixAllocateArrayStubTarget) \ | 47 V(FixAllocateArrayStubTarget) \ |
| 48 V(CallClosureNoSuchMethod) \ | 48 V(CallClosureNoSuchMethod) \ |
| 49 V(AllocateContext) \ | 49 V(AllocateContext) \ |
| 50 V(UpdateStoreBuffer) \ | 50 V(UpdateStoreBuffer) \ |
| 51 V(OneArgCheckInlineCache) \ | 51 V(OneArgCheckInlineCache) \ |
| 52 V(TwoArgsCheckInlineCache) \ | 52 V(TwoArgsCheckInlineCache) \ |
| 53 V(ThreeArgsCheckInlineCache) \ | |
| 54 V(SmiAddInlineCache) \ | 53 V(SmiAddInlineCache) \ |
| 55 V(SmiSubInlineCache) \ | 54 V(SmiSubInlineCache) \ |
| 56 V(SmiEqualInlineCache) \ | 55 V(SmiEqualInlineCache) \ |
| 57 V(UnaryRangeCollectingInlineCache) \ | 56 V(UnaryRangeCollectingInlineCache) \ |
| 58 V(BinaryRangeCollectingInlineCache) \ | 57 V(BinaryRangeCollectingInlineCache) \ |
| 59 V(OneArgOptimizedCheckInlineCache) \ | 58 V(OneArgOptimizedCheckInlineCache) \ |
| 60 V(TwoArgsOptimizedCheckInlineCache) \ | 59 V(TwoArgsOptimizedCheckInlineCache) \ |
| 61 V(ThreeArgsOptimizedCheckInlineCache) \ | |
| 62 V(ZeroArgsUnoptimizedStaticCall) \ | 60 V(ZeroArgsUnoptimizedStaticCall) \ |
| 63 V(OneArgUnoptimizedStaticCall) \ | 61 V(OneArgUnoptimizedStaticCall) \ |
| 64 V(TwoArgsUnoptimizedStaticCall) \ | 62 V(TwoArgsUnoptimizedStaticCall) \ |
| 65 V(OptimizeFunction) \ | 63 V(OptimizeFunction) \ |
| 66 V(InvokeDartCode) \ | 64 V(InvokeDartCode) \ |
| 67 V(Subtype1TestCache) \ | 65 V(Subtype1TestCache) \ |
| 68 V(Subtype2TestCache) \ | 66 V(Subtype2TestCache) \ |
| 69 V(Subtype3TestCache) \ | 67 V(Subtype3TestCache) \ |
| 70 V(Deoptimize) \ | 68 V(Deoptimize) \ |
| 71 V(DeoptimizeLazy) \ | 69 V(DeoptimizeLazy) \ |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 Assembler* assembler, | 240 Assembler* assembler, |
| 243 const Register left, | 241 const Register left, |
| 244 const Register right, | 242 const Register right, |
| 245 const Register temp1 = kNoRegister, | 243 const Register temp1 = kNoRegister, |
| 246 const Register temp2 = kNoRegister); | 244 const Register temp2 = kNoRegister); |
| 247 }; | 245 }; |
| 248 | 246 |
| 249 } // namespace dart | 247 } // namespace dart |
| 250 | 248 |
| 251 #endif // VM_STUB_CODE_H_ | 249 #endif // VM_STUB_CODE_H_ |
| OLD | NEW |