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 26 matching lines...) Expand all Loading... |
37 V(ReThrow) \ | 37 V(ReThrow) \ |
38 V(StackOverflow) \ | 38 V(StackOverflow) \ |
39 V(Throw) \ | 39 V(Throw) \ |
40 V(TraceFunctionEntry) \ | 40 V(TraceFunctionEntry) \ |
41 V(TraceFunctionExit) \ | 41 V(TraceFunctionExit) \ |
42 V(DeoptimizeMaterialize) \ | 42 V(DeoptimizeMaterialize) \ |
43 V(UpdateFieldCid) \ | 43 V(UpdateFieldCid) \ |
44 V(InitStaticField) \ | 44 V(InitStaticField) \ |
45 V(GrowRegExpStack) \ | 45 V(GrowRegExpStack) \ |
46 V(CompileFunction) \ | 46 V(CompileFunction) \ |
| 47 V(MonomorphicMiss) \ |
47 | 48 |
48 #define LEAF_RUNTIME_ENTRY_LIST(V) \ | 49 #define LEAF_RUNTIME_ENTRY_LIST(V) \ |
49 V(void, PrintStopMessage, const char*) \ | 50 V(void, PrintStopMessage, const char*) \ |
50 V(intptr_t, DeoptimizeCopyFrame, uword, uword) \ | 51 V(intptr_t, DeoptimizeCopyFrame, uword, uword) \ |
51 V(void, DeoptimizeFillFrame, uword) \ | 52 V(void, DeoptimizeFillFrame, uword) \ |
52 V(void, StoreBufferBlockProcess, Thread*) \ | 53 V(void, StoreBufferBlockProcess, Thread*) \ |
53 V(intptr_t, BigintCompare, RawBigint*, RawBigint*) \ | 54 V(intptr_t, BigintCompare, RawBigint*, RawBigint*) \ |
54 V(double, LibcPow, double, double) \ | 55 V(double, LibcPow, double, double) \ |
55 V(double, DartModulo, double, double) \ | 56 V(double, DartModulo, double, double) \ |
56 V(double, LibcFloor, double) \ | 57 V(double, LibcFloor, double) \ |
57 V(double, LibcCeil, double) \ | 58 V(double, LibcCeil, double) \ |
58 V(double, LibcTrunc, double) \ | 59 V(double, LibcTrunc, double) \ |
59 V(double, LibcRound, double) \ | 60 V(double, LibcRound, double) \ |
60 V(double, LibcCos, double) \ | 61 V(double, LibcCos, double) \ |
61 V(double, LibcSin, double) \ | 62 V(double, LibcSin, double) \ |
62 V(double, LibcTan, double) \ | 63 V(double, LibcTan, double) \ |
63 V(double, LibcAcos, double) \ | 64 V(double, LibcAcos, double) \ |
64 V(double, LibcAsin, double) \ | 65 V(double, LibcAsin, double) \ |
65 V(double, LibcAtan, double) \ | 66 V(double, LibcAtan, double) \ |
66 V(double, LibcAtan2, double, double) \ | 67 V(double, LibcAtan2, double, double) \ |
67 V(RawBool*, CaseInsensitiveCompareUC16, \ | 68 V(RawBool*, CaseInsensitiveCompareUC16, \ |
68 RawString*, RawSmi*, RawSmi*, RawSmi*) \ | 69 RawString*, RawSmi*, RawSmi*, RawSmi*) \ |
69 | 70 |
70 } // namespace dart | 71 } // namespace dart |
71 | 72 |
72 #endif // VM_RUNTIME_ENTRY_LIST_H_ | 73 #endif // VM_RUNTIME_ENTRY_LIST_H_ |
OLD | NEW |