| 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 22 matching lines...) Expand all Loading... |
| 33 V(OptimizeInvokedFunction) \ | 33 V(OptimizeInvokedFunction) \ |
| 34 V(TraceICCall) \ | 34 V(TraceICCall) \ |
| 35 V(PatchStaticCall) \ | 35 V(PatchStaticCall) \ |
| 36 V(RangeError) \ | 36 V(RangeError) \ |
| 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(RewindPostDeopt) \ |
| 43 V(UpdateFieldCid) \ | 44 V(UpdateFieldCid) \ |
| 44 V(InitStaticField) \ | 45 V(InitStaticField) \ |
| 45 V(GrowRegExpStack) \ | 46 V(GrowRegExpStack) \ |
| 46 V(CompileFunction) \ | 47 V(CompileFunction) \ |
| 47 V(MonomorphicMiss) \ | 48 V(MonomorphicMiss) \ |
| 48 V(SingleTargetMiss) \ | 49 V(SingleTargetMiss) \ |
| 49 V(UnlinkedCall) | 50 V(UnlinkedCall) |
| 50 | 51 |
| 51 #define LEAF_RUNTIME_ENTRY_LIST(V) \ | 52 #define LEAF_RUNTIME_ENTRY_LIST(V) \ |
| 52 V(void, PrintStopMessage, const char*) \ | 53 V(void, PrintStopMessage, const char*) \ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 65 V(double, LibcTan, double) \ | 66 V(double, LibcTan, double) \ |
| 66 V(double, LibcAcos, double) \ | 67 V(double, LibcAcos, double) \ |
| 67 V(double, LibcAsin, double) \ | 68 V(double, LibcAsin, double) \ |
| 68 V(double, LibcAtan, double) \ | 69 V(double, LibcAtan, double) \ |
| 69 V(double, LibcAtan2, double, double) \ | 70 V(double, LibcAtan2, double, double) \ |
| 70 V(RawBool*, CaseInsensitiveCompareUC16, RawString*, RawSmi*, RawSmi*, RawSmi*) | 71 V(RawBool*, CaseInsensitiveCompareUC16, RawString*, RawSmi*, RawSmi*, RawSmi*) |
| 71 | 72 |
| 72 } // namespace dart | 73 } // namespace dart |
| 73 | 74 |
| 74 #endif // RUNTIME_VM_RUNTIME_ENTRY_LIST_H_ | 75 #endif // RUNTIME_VM_RUNTIME_ENTRY_LIST_H_ |
| OLD | NEW |