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 12 matching lines...) Expand all Loading... |
23 #if !defined(TARGET_ARCH_DBC) | 23 #if !defined(TARGET_ARCH_DBC) |
24 #define VM_STUB_CODE_LIST(V) \ | 24 #define VM_STUB_CODE_LIST(V) \ |
25 V(GetStackPointer) \ | 25 V(GetStackPointer) \ |
26 V(JumpToFrame) \ | 26 V(JumpToFrame) \ |
27 V(RunExceptionHandler) \ | 27 V(RunExceptionHandler) \ |
28 V(DeoptForRewind) \ | 28 V(DeoptForRewind) \ |
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(CallBootstrapNative) \ |
34 V(CallNativeCFunction) \ | 34 V(CallNoScopeNative) \ |
| 35 V(CallAutoScopeNative) \ |
35 V(FixCallersTarget) \ | 36 V(FixCallersTarget) \ |
36 V(CallStaticFunction) \ | 37 V(CallStaticFunction) \ |
37 V(OptimizeFunction) \ | 38 V(OptimizeFunction) \ |
38 V(InvokeDartCode) \ | 39 V(InvokeDartCode) \ |
39 V(DebugStepCheck) \ | 40 V(DebugStepCheck) \ |
40 V(UnlinkedCall) \ | 41 V(UnlinkedCall) \ |
41 V(MonomorphicMiss) \ | 42 V(MonomorphicMiss) \ |
42 V(SingleTargetCall) \ | 43 V(SingleTargetCall) \ |
43 V(ICCallThroughFunction) \ | 44 V(ICCallThroughFunction) \ |
44 V(ICCallThroughCode) \ | 45 V(ICCallThroughCode) \ |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 207 |
207 // Zap value used to indicate unused CODE_REG in deopt. | 208 // Zap value used to indicate unused CODE_REG in deopt. |
208 static const uword kZapCodeReg = 0xf1f1f1f1; | 209 static const uword kZapCodeReg = 0xf1f1f1f1; |
209 | 210 |
210 // Zap value used to indicate unused return address in deopt. | 211 // Zap value used to indicate unused return address in deopt. |
211 static const uword kZapReturnAddress = 0xe1e1e1e1; | 212 static const uword kZapReturnAddress = 0xe1e1e1e1; |
212 | 213 |
213 } // namespace dart | 214 } // namespace dart |
214 | 215 |
215 #endif // RUNTIME_VM_STUB_CODE_H_ | 216 #endif // RUNTIME_VM_STUB_CODE_H_ |
OLD | NEW |