| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 V(Float32x4_cmpgte, 2) \ | 188 V(Float32x4_cmpgte, 2) \ |
| 189 V(Float32x4_cmpequal, 2) \ | 189 V(Float32x4_cmpequal, 2) \ |
| 190 V(Float32x4_cmpnequal, 2) \ | 190 V(Float32x4_cmpnequal, 2) \ |
| 191 V(Float32x4_scale, 2) \ | 191 V(Float32x4_scale, 2) \ |
| 192 V(Float32x4_abs, 1) \ | 192 V(Float32x4_abs, 1) \ |
| 193 V(Float32x4_clamp, 3) \ | 193 V(Float32x4_clamp, 3) \ |
| 194 V(Float32x4_getX, 1) \ | 194 V(Float32x4_getX, 1) \ |
| 195 V(Float32x4_getY, 1) \ | 195 V(Float32x4_getY, 1) \ |
| 196 V(Float32x4_getZ, 1) \ | 196 V(Float32x4_getZ, 1) \ |
| 197 V(Float32x4_getW, 1) \ | 197 V(Float32x4_getW, 1) \ |
| 198 V(Float32x4_getXXXX, 1) \ | 198 V(Float32x4_shuffle, 2) \ |
| 199 V(Float32x4_getYYYY, 1) \ | |
| 200 V(Float32x4_getZZZZ, 1) \ | |
| 201 V(Float32x4_getWWWW, 1) \ | |
| 202 V(Float32x4_setX, 2) \ | 199 V(Float32x4_setX, 2) \ |
| 203 V(Float32x4_setY, 2) \ | 200 V(Float32x4_setY, 2) \ |
| 204 V(Float32x4_setZ, 2) \ | 201 V(Float32x4_setZ, 2) \ |
| 205 V(Float32x4_setW, 2) \ | 202 V(Float32x4_setW, 2) \ |
| 206 V(Float32x4_min, 2) \ | 203 V(Float32x4_min, 2) \ |
| 207 V(Float32x4_max, 2) \ | 204 V(Float32x4_max, 2) \ |
| 208 V(Float32x4_sqrt, 1) \ | 205 V(Float32x4_sqrt, 1) \ |
| 209 V(Float32x4_reciprocal, 1) \ | 206 V(Float32x4_reciprocal, 1) \ |
| 210 V(Float32x4_reciprocalSqrt, 1) \ | 207 V(Float32x4_reciprocalSqrt, 1) \ |
| 211 V(Float32x4_toUint32x4, 1) \ | 208 V(Float32x4_toUint32x4, 1) \ |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 static void DN_##name(Dart_NativeArguments args); | 272 static void DN_##name(Dart_NativeArguments args); |
| 276 | 273 |
| 277 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 274 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 278 | 275 |
| 279 #undef DECLARE_BOOTSTRAP_NATIVE | 276 #undef DECLARE_BOOTSTRAP_NATIVE |
| 280 }; | 277 }; |
| 281 | 278 |
| 282 } // namespace dart | 279 } // namespace dart |
| 283 | 280 |
| 284 #endif // VM_BOOTSTRAP_NATIVES_H_ | 281 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |