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 RUNTIME_VM_STUB_CODE_H_ | 5 #ifndef RUNTIME_VM_STUB_CODE_H_ |
6 #define RUNTIME_VM_STUB_CODE_H_ | 6 #define RUNTIME_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 16 matching lines...) Expand all Loading... |
27 V(GetStackPointer) \ | 27 V(GetStackPointer) \ |
28 V(JumpToExceptionHandler) \ | 28 V(JumpToExceptionHandler) \ |
29 V(UpdateStoreBuffer) \ | 29 V(UpdateStoreBuffer) \ |
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(InvokeDartCode) \ | 38 V(InvokeDartCode) \ |
38 V(DebugStepCheck) \ | 39 V(DebugStepCheck) \ |
39 V(UnlinkedCall) \ | 40 V(UnlinkedCall) \ |
40 V(MonomorphicMiss) \ | 41 V(MonomorphicMiss) \ |
41 V(SingleTargetCall) \ | 42 V(SingleTargetCall) \ |
42 V(ICCallThroughFunction) \ | 43 V(ICCallThroughFunction) \ |
43 V(ICCallThroughCode) \ | 44 V(ICCallThroughCode) \ |
44 V(MegamorphicCall) \ | 45 V(MegamorphicCall) \ |
45 V(FixAllocationStubTarget) \ | 46 V(FixAllocationStubTarget) \ |
46 V(Deoptimize) \ | 47 V(Deoptimize) \ |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 | 198 |
198 enum DeoptStubKind { | 199 enum DeoptStubKind { |
199 kLazyDeoptFromReturn, | 200 kLazyDeoptFromReturn, |
200 kLazyDeoptFromThrow, | 201 kLazyDeoptFromThrow, |
201 kEagerDeopt | 202 kEagerDeopt |
202 }; | 203 }; |
203 | 204 |
204 } // namespace dart | 205 } // namespace dart |
205 | 206 |
206 #endif // RUNTIME_VM_STUB_CODE_H_ | 207 #endif // RUNTIME_VM_STUB_CODE_H_ |
OLD | NEW |