| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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_BOOTSTRAP_NATIVES_H_ | 5 #ifndef VM_BOOTSTRAP_NATIVES_H_ |
| 6 #define VM_BOOTSTRAP_NATIVES_H_ | 6 #define VM_BOOTSTRAP_NATIVES_H_ |
| 7 | 7 |
| 8 #include "vm/native_entry.h" | 8 #include "vm/native_entry.h" |
| 9 | 9 |
| 10 // bootstrap dart natives used in the core dart library. | 10 // bootstrap dart natives used in the core dart library. |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 V(TypedData_Uint16Array_new, 2) \ | 175 V(TypedData_Uint16Array_new, 2) \ |
| 176 V(TypedData_Int32Array_new, 2) \ | 176 V(TypedData_Int32Array_new, 2) \ |
| 177 V(TypedData_Uint32Array_new, 2) \ | 177 V(TypedData_Uint32Array_new, 2) \ |
| 178 V(TypedData_Int64Array_new, 2) \ | 178 V(TypedData_Int64Array_new, 2) \ |
| 179 V(TypedData_Uint64Array_new, 2) \ | 179 V(TypedData_Uint64Array_new, 2) \ |
| 180 V(TypedData_Float32Array_new, 2) \ | 180 V(TypedData_Float32Array_new, 2) \ |
| 181 V(TypedData_Float64Array_new, 2) \ | 181 V(TypedData_Float64Array_new, 2) \ |
| 182 V(TypedData_Float32x4Array_new, 2) \ | 182 V(TypedData_Float32x4Array_new, 2) \ |
| 183 V(TypedData_Int32x4Array_new, 2) \ | 183 V(TypedData_Int32x4Array_new, 2) \ |
| 184 V(TypedData_Float64x2Array_new, 2) \ | 184 V(TypedData_Float64x2Array_new, 2) \ |
| 185 V(ExternalTypedData_Int8Array_new, 2) \ | |
| 186 V(ExternalTypedData_Uint8Array_new, 2) \ | |
| 187 V(ExternalTypedData_Uint8ClampedArray_new, 2) \ | |
| 188 V(ExternalTypedData_Int16Array_new, 2) \ | |
| 189 V(ExternalTypedData_Uint16Array_new, 2) \ | |
| 190 V(ExternalTypedData_Int32Array_new, 2) \ | |
| 191 V(ExternalTypedData_Uint32Array_new, 2) \ | |
| 192 V(ExternalTypedData_Int64Array_new, 2) \ | |
| 193 V(ExternalTypedData_Uint64Array_new, 2) \ | |
| 194 V(ExternalTypedData_Float32Array_new, 2) \ | |
| 195 V(ExternalTypedData_Float64Array_new, 2) \ | |
| 196 V(ExternalTypedData_Float32x4Array_new, 2) \ | |
| 197 V(ExternalTypedData_Int32x4Array_new, 2) \ | |
| 198 V(ExternalTypedData_Float64x2Array_new, 2) \ | |
| 199 V(TypedData_length, 1) \ | 185 V(TypedData_length, 1) \ |
| 200 V(TypedData_setRange, 7) \ | 186 V(TypedData_setRange, 7) \ |
| 201 V(TypedData_GetInt8, 2) \ | 187 V(TypedData_GetInt8, 2) \ |
| 202 V(TypedData_SetInt8, 3) \ | 188 V(TypedData_SetInt8, 3) \ |
| 203 V(TypedData_GetUint8, 2) \ | 189 V(TypedData_GetUint8, 2) \ |
| 204 V(TypedData_SetUint8, 3) \ | 190 V(TypedData_SetUint8, 3) \ |
| 205 V(TypedData_GetInt16, 2) \ | 191 V(TypedData_GetInt16, 2) \ |
| 206 V(TypedData_SetInt16, 3) \ | 192 V(TypedData_SetInt16, 3) \ |
| 207 V(TypedData_GetUint16, 2) \ | 193 V(TypedData_GetUint16, 2) \ |
| 208 V(TypedData_SetUint16, 3) \ | 194 V(TypedData_SetUint16, 3) \ |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 #ifndef PRODUCT | 421 #ifndef PRODUCT |
| 436 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 422 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 437 #endif | 423 #endif |
| 438 | 424 |
| 439 #undef DECLARE_BOOTSTRAP_NATIVE | 425 #undef DECLARE_BOOTSTRAP_NATIVE |
| 440 }; | 426 }; |
| 441 | 427 |
| 442 } // namespace dart | 428 } // namespace dart |
| 443 | 429 |
| 444 #endif // VM_BOOTSTRAP_NATIVES_H_ | 430 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |