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 19 matching lines...) Expand all Loading... |
30 V(PrintStopMessage) \ | 30 V(PrintStopMessage) \ |
31 V(CallToRuntime) \ | 31 V(CallToRuntime) \ |
32 V(LazyCompile) \ | 32 V(LazyCompile) \ |
33 V(CallBootstrapCFunction) \ | 33 V(CallBootstrapCFunction) \ |
34 V(CallNativeCFunction) \ | 34 V(CallNativeCFunction) \ |
35 V(FixCallersTarget) \ | 35 V(FixCallersTarget) \ |
36 V(CallStaticFunction) \ | 36 V(CallStaticFunction) \ |
37 V(OptimizeFunction) \ | 37 V(OptimizeFunction) \ |
38 V(InvokeDartCode) \ | 38 V(InvokeDartCode) \ |
39 V(DebugStepCheck) \ | 39 V(DebugStepCheck) \ |
40 V(ICLookupThroughFunction) \ | 40 V(ICCallThroughFunction) \ |
41 V(ICLookupThroughCode) \ | 41 V(ICCallThroughCode) \ |
42 V(MegamorphicLookup) \ | 42 V(MegamorphicCall) \ |
43 V(MonomorphicMiss) \ | 43 V(MonomorphicMiss) \ |
44 V(FixAllocationStubTarget) \ | 44 V(FixAllocationStubTarget) \ |
45 V(Deoptimize) \ | 45 V(Deoptimize) \ |
46 V(DeoptimizeLazy) \ | 46 V(DeoptimizeLazy) \ |
47 V(UnoptimizedIdenticalWithNumberCheck) \ | 47 V(UnoptimizedIdenticalWithNumberCheck) \ |
48 V(OptimizedIdenticalWithNumberCheck) \ | 48 V(OptimizedIdenticalWithNumberCheck) \ |
49 V(ICCallBreakpoint) \ | 49 V(ICCallBreakpoint) \ |
50 V(RuntimeCallBreakpoint) \ | 50 V(RuntimeCallBreakpoint) \ |
51 V(AllocateArray) \ | 51 V(AllocateArray) \ |
52 V(AllocateContext) \ | 52 V(AllocateContext) \ |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 | 192 |
193 | 193 |
194 enum DeoptStubKind { | 194 enum DeoptStubKind { |
195 kLazyDeopt, | 195 kLazyDeopt, |
196 kEagerDeopt | 196 kEagerDeopt |
197 }; | 197 }; |
198 | 198 |
199 } // namespace dart | 199 } // namespace dart |
200 | 200 |
201 #endif // VM_STUB_CODE_H_ | 201 #endif // VM_STUB_CODE_H_ |
OLD | NEW |