| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 V(TypedData_SetFloat32x4, 3) \ | 163 V(TypedData_SetFloat32x4, 3) \ |
| 164 V(ByteData_ToEndianInt16, 2) \ | 164 V(ByteData_ToEndianInt16, 2) \ |
| 165 V(ByteData_ToEndianUint16, 2) \ | 165 V(ByteData_ToEndianUint16, 2) \ |
| 166 V(ByteData_ToEndianInt32, 2) \ | 166 V(ByteData_ToEndianInt32, 2) \ |
| 167 V(ByteData_ToEndianUint32, 2) \ | 167 V(ByteData_ToEndianUint32, 2) \ |
| 168 V(ByteData_ToEndianInt64, 2) \ | 168 V(ByteData_ToEndianInt64, 2) \ |
| 169 V(ByteData_ToEndianUint64, 2) \ | 169 V(ByteData_ToEndianUint64, 2) \ |
| 170 V(ByteData_ToEndianFloat32, 2) \ | 170 V(ByteData_ToEndianFloat32, 2) \ |
| 171 V(ByteData_ToEndianFloat64, 2) \ | 171 V(ByteData_ToEndianFloat64, 2) \ |
| 172 V(Float32x4_fromDoubles, 5) \ | 172 V(Float32x4_fromDoubles, 5) \ |
| 173 V(Float32x4_splat, 2) \ |
| 173 V(Float32x4_zero, 1) \ | 174 V(Float32x4_zero, 1) \ |
| 174 V(Float32x4_add, 2) \ | 175 V(Float32x4_add, 2) \ |
| 175 V(Float32x4_negate, 1) \ | 176 V(Float32x4_negate, 1) \ |
| 176 V(Float32x4_sub, 2) \ | 177 V(Float32x4_sub, 2) \ |
| 177 V(Float32x4_mul, 2) \ | 178 V(Float32x4_mul, 2) \ |
| 178 V(Float32x4_div, 2) \ | 179 V(Float32x4_div, 2) \ |
| 179 V(Float32x4_cmplt, 2) \ | 180 V(Float32x4_cmplt, 2) \ |
| 180 V(Float32x4_cmplte, 2) \ | 181 V(Float32x4_cmplte, 2) \ |
| 181 V(Float32x4_cmpgt, 2) \ | 182 V(Float32x4_cmpgt, 2) \ |
| 182 V(Float32x4_cmpgte, 2) \ | 183 V(Float32x4_cmpgte, 2) \ |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 static void DN_##name(Dart_NativeArguments args); | 259 static void DN_##name(Dart_NativeArguments args); |
| 259 | 260 |
| 260 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 261 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 261 | 262 |
| 262 #undef DECLARE_BOOTSTRAP_NATIVE | 263 #undef DECLARE_BOOTSTRAP_NATIVE |
| 263 }; | 264 }; |
| 264 | 265 |
| 265 } // namespace dart | 266 } // namespace dart |
| 266 | 267 |
| 267 #endif // VM_BOOTSTRAP_NATIVES_H_ | 268 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |