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