| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 V(OneArgUnoptimizedStaticCall) \ | 61 V(OneArgUnoptimizedStaticCall) \ |
| 62 V(TwoArgsUnoptimizedStaticCall) \ | 62 V(TwoArgsUnoptimizedStaticCall) \ |
| 63 V(OptimizeFunction) \ | 63 V(OptimizeFunction) \ |
| 64 V(InvokeDartCode) \ | 64 V(InvokeDartCode) \ |
| 65 V(Subtype1TestCache) \ | 65 V(Subtype1TestCache) \ |
| 66 V(Subtype2TestCache) \ | 66 V(Subtype2TestCache) \ |
| 67 V(Subtype3TestCache) \ | 67 V(Subtype3TestCache) \ |
| 68 V(Deoptimize) \ | 68 V(Deoptimize) \ |
| 69 V(DeoptimizeLazy) \ | 69 V(DeoptimizeLazy) \ |
| 70 V(ICCallBreakpoint) \ | 70 V(ICCallBreakpoint) \ |
| 71 V(ClosureCallBreakpoint) \ | |
| 72 V(RuntimeCallBreakpoint) \ | 71 V(RuntimeCallBreakpoint) \ |
| 73 V(UnoptimizedIdenticalWithNumberCheck) \ | 72 V(UnoptimizedIdenticalWithNumberCheck) \ |
| 74 V(OptimizedIdenticalWithNumberCheck) \ | 73 V(OptimizedIdenticalWithNumberCheck) \ |
| 75 V(DebugStepCheck) \ | 74 V(DebugStepCheck) \ |
| 76 V(MegamorphicLookup) \ | 75 V(MegamorphicLookup) \ |
| 77 | 76 |
| 78 #define STUB_CODE_LIST(V) \ | 77 #define STUB_CODE_LIST(V) \ |
| 79 BOOTSTRAP_STUB_CODE_LIST(V) \ | 78 BOOTSTRAP_STUB_CODE_LIST(V) \ |
| 80 REST_STUB_CODE_LIST(V) | 79 REST_STUB_CODE_LIST(V) |
| 81 | 80 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 Assembler* assembler, | 239 Assembler* assembler, |
| 241 const Register left, | 240 const Register left, |
| 242 const Register right, | 241 const Register right, |
| 243 const Register temp1 = kNoRegister, | 242 const Register temp1 = kNoRegister, |
| 244 const Register temp2 = kNoRegister); | 243 const Register temp2 = kNoRegister); |
| 245 }; | 244 }; |
| 246 | 245 |
| 247 } // namespace dart | 246 } // namespace dart |
| 248 | 247 |
| 249 #endif // VM_STUB_CODE_H_ | 248 #endif // VM_STUB_CODE_H_ |
| OLD | NEW |