| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 V(void, StoreBufferBlockProcess, Thread*) \ | 51 V(void, StoreBufferBlockProcess, Thread*) \ |
| 52 V(intptr_t, BigintCompare, RawBigint*, RawBigint*) \ | 52 V(intptr_t, BigintCompare, RawBigint*, RawBigint*) \ |
| 53 V(double, LibcPow, double, double) \ | 53 V(double, LibcPow, double, double) \ |
| 54 V(double, DartModulo, double, double) \ | 54 V(double, DartModulo, double, double) \ |
| 55 V(double, LibcFloor, double) \ | 55 V(double, LibcFloor, double) \ |
| 56 V(double, LibcCeil, double) \ | 56 V(double, LibcCeil, double) \ |
| 57 V(double, LibcTrunc, double) \ | 57 V(double, LibcTrunc, double) \ |
| 58 V(double, LibcRound, double) \ | 58 V(double, LibcRound, double) \ |
| 59 V(double, LibcCos, double) \ | 59 V(double, LibcCos, double) \ |
| 60 V(double, LibcSin, double) \ | 60 V(double, LibcSin, double) \ |
| 61 V(double, LibcAtan, double) \ |
| 62 V(double, LibcAtan2, double, double) \ |
| 61 V(RawBool*, CaseInsensitiveCompareUC16, \ | 63 V(RawBool*, CaseInsensitiveCompareUC16, \ |
| 62 RawString*, RawSmi*, RawSmi*, RawSmi*) \ | 64 RawString*, RawSmi*, RawSmi*, RawSmi*) \ |
| 63 | 65 |
| 64 } // namespace dart | 66 } // namespace dart |
| 65 | 67 |
| 66 #endif // VM_RUNTIME_ENTRY_LIST_H_ | 68 #endif // VM_RUNTIME_ENTRY_LIST_H_ |
| OLD | NEW |