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_RUNTIME_ENTRY_LIST_H_ | 5 #ifndef VM_RUNTIME_ENTRY_LIST_H_ |
6 #define VM_RUNTIME_ENTRY_LIST_H_ | 6 #define VM_RUNTIME_ENTRY_LIST_H_ |
7 | 7 |
8 namespace dart { | 8 namespace dart { |
9 | 9 |
10 #define RUNTIME_ENTRY_LIST(V) \ | 10 #define RUNTIME_ENTRY_LIST(V) \ |
(...skipping 15 matching lines...) Expand all Loading... |
26 V(BadTypeError) \ | 26 V(BadTypeError) \ |
27 V(NonBoolTypeError) \ | 27 V(NonBoolTypeError) \ |
28 V(InstantiateType) \ | 28 V(InstantiateType) \ |
29 V(InstantiateTypeArguments) \ | 29 V(InstantiateTypeArguments) \ |
30 V(InvokeClosureNoSuchMethod) \ | 30 V(InvokeClosureNoSuchMethod) \ |
31 V(InvokeNoSuchMethodDispatcher) \ | 31 V(InvokeNoSuchMethodDispatcher) \ |
32 V(MegamorphicCacheMissHandler) \ | 32 V(MegamorphicCacheMissHandler) \ |
33 V(OptimizeInvokedFunction) \ | 33 V(OptimizeInvokedFunction) \ |
34 V(TraceICCall) \ | 34 V(TraceICCall) \ |
35 V(PatchStaticCall) \ | 35 V(PatchStaticCall) \ |
| 36 V(RangeError) \ |
36 V(ReThrow) \ | 37 V(ReThrow) \ |
37 V(StackOverflow) \ | 38 V(StackOverflow) \ |
38 V(Throw) \ | 39 V(Throw) \ |
39 V(TraceFunctionEntry) \ | 40 V(TraceFunctionEntry) \ |
40 V(TraceFunctionExit) \ | 41 V(TraceFunctionExit) \ |
41 V(DeoptimizeMaterialize) \ | 42 V(DeoptimizeMaterialize) \ |
42 V(UpdateFieldCid) \ | 43 V(UpdateFieldCid) \ |
43 V(InitStaticField) \ | 44 V(InitStaticField) \ |
44 V(GrowRegExpStack) \ | 45 V(GrowRegExpStack) \ |
45 V(CompileFunction) \ | 46 V(CompileFunction) \ |
(...skipping 16 matching lines...) Expand all Loading... |
62 V(double, LibcAcos, double) \ | 63 V(double, LibcAcos, double) \ |
63 V(double, LibcAsin, double) \ | 64 V(double, LibcAsin, double) \ |
64 V(double, LibcAtan, double) \ | 65 V(double, LibcAtan, double) \ |
65 V(double, LibcAtan2, double, double) \ | 66 V(double, LibcAtan2, double, double) \ |
66 V(RawBool*, CaseInsensitiveCompareUC16, \ | 67 V(RawBool*, CaseInsensitiveCompareUC16, \ |
67 RawString*, RawSmi*, RawSmi*, RawSmi*) \ | 68 RawString*, RawSmi*, RawSmi*, RawSmi*) \ |
68 | 69 |
69 } // namespace dart | 70 } // namespace dart |
70 | 71 |
71 #endif // VM_RUNTIME_ENTRY_LIST_H_ | 72 #endif // VM_RUNTIME_ENTRY_LIST_H_ |
OLD | NEW |