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 18 matching lines...) Expand all Loading... |
29 V(CallToRuntime) \ | 29 V(CallToRuntime) \ |
30 V(LazyCompile) \ | 30 V(LazyCompile) \ |
31 V(CallBootstrapCFunction) \ | 31 V(CallBootstrapCFunction) \ |
32 V(CallNativeCFunction) \ | 32 V(CallNativeCFunction) \ |
33 V(FixCallersTarget) \ | 33 V(FixCallersTarget) \ |
34 V(CallStaticFunction) \ | 34 V(CallStaticFunction) \ |
35 V(OptimizeFunction) \ | 35 V(OptimizeFunction) \ |
36 V(InvokeDartCode) \ | 36 V(InvokeDartCode) \ |
37 V(DebugStepCheck) \ | 37 V(DebugStepCheck) \ |
38 V(ICLookup) \ | 38 V(ICLookup) \ |
| 39 V(ICSmiAddLookup) \ |
| 40 V(ICSmiSubLookup) \ |
| 41 V(ICSmiEqualLookup) \ |
39 V(MegamorphicLookup) \ | 42 V(MegamorphicLookup) \ |
40 V(FixAllocationStubTarget) \ | 43 V(FixAllocationStubTarget) \ |
41 V(Deoptimize) \ | 44 V(Deoptimize) \ |
42 V(DeoptimizeLazy) \ | 45 V(DeoptimizeLazy) \ |
43 V(UnoptimizedIdenticalWithNumberCheck) \ | 46 V(UnoptimizedIdenticalWithNumberCheck) \ |
44 V(OptimizedIdenticalWithNumberCheck) \ | 47 V(OptimizedIdenticalWithNumberCheck) \ |
45 V(ICCallBreakpoint) \ | 48 V(ICCallBreakpoint) \ |
46 V(RuntimeCallBreakpoint) \ | 49 V(RuntimeCallBreakpoint) \ |
47 V(AllocateArray) \ | 50 V(AllocateArray) \ |
48 V(AllocateContext) \ | 51 V(AllocateContext) \ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 187 |
185 | 188 |
186 enum DeoptStubKind { | 189 enum DeoptStubKind { |
187 kLazyDeopt, | 190 kLazyDeopt, |
188 kEagerDeopt | 191 kEagerDeopt |
189 }; | 192 }; |
190 | 193 |
191 } // namespace dart | 194 } // namespace dart |
192 | 195 |
193 #endif // VM_STUB_CODE_H_ | 196 #endif // VM_STUB_CODE_H_ |
OLD | NEW |