Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 51373004: SIMD shuffle API changes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/lib/typed_data.dart ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 V(Float32x4_cmpnequal, 2) \ 209 V(Float32x4_cmpnequal, 2) \
210 V(Float32x4_scale, 2) \ 210 V(Float32x4_scale, 2) \
211 V(Float32x4_abs, 1) \ 211 V(Float32x4_abs, 1) \
212 V(Float32x4_clamp, 3) \ 212 V(Float32x4_clamp, 3) \
213 V(Float32x4_getX, 1) \ 213 V(Float32x4_getX, 1) \
214 V(Float32x4_getY, 1) \ 214 V(Float32x4_getY, 1) \
215 V(Float32x4_getZ, 1) \ 215 V(Float32x4_getZ, 1) \
216 V(Float32x4_getW, 1) \ 216 V(Float32x4_getW, 1) \
217 V(Float32x4_getSignMask, 1) \ 217 V(Float32x4_getSignMask, 1) \
218 V(Float32x4_shuffle, 2) \ 218 V(Float32x4_shuffle, 2) \
219 V(Float32x4_withZWInXY, 2) \ 219 V(Float32x4_shuffleMix, 3) \
220 V(Float32x4_interleaveXY, 2) \
221 V(Float32x4_interleaveZW, 2) \
222 V(Float32x4_interleaveXYPairs, 2) \
223 V(Float32x4_interleaveZWPairs, 2) \
224 V(Float32x4_setX, 2) \ 220 V(Float32x4_setX, 2) \
225 V(Float32x4_setY, 2) \ 221 V(Float32x4_setY, 2) \
226 V(Float32x4_setZ, 2) \ 222 V(Float32x4_setZ, 2) \
227 V(Float32x4_setW, 2) \ 223 V(Float32x4_setW, 2) \
228 V(Float32x4_min, 2) \ 224 V(Float32x4_min, 2) \
229 V(Float32x4_max, 2) \ 225 V(Float32x4_max, 2) \
230 V(Float32x4_sqrt, 1) \ 226 V(Float32x4_sqrt, 1) \
231 V(Float32x4_reciprocal, 1) \ 227 V(Float32x4_reciprocal, 1) \
232 V(Float32x4_reciprocalSqrt, 1) \ 228 V(Float32x4_reciprocalSqrt, 1) \
233 V(Uint32x4_fromInts, 5) \ 229 V(Uint32x4_fromInts, 5) \
234 V(Uint32x4_fromBools, 5) \ 230 V(Uint32x4_fromBools, 5) \
235 V(Uint32x4_fromFloat32x4Bits, 2) \ 231 V(Uint32x4_fromFloat32x4Bits, 2) \
236 V(Uint32x4_or, 2) \ 232 V(Uint32x4_or, 2) \
237 V(Uint32x4_and, 2) \ 233 V(Uint32x4_and, 2) \
238 V(Uint32x4_xor, 2) \ 234 V(Uint32x4_xor, 2) \
239 V(Uint32x4_add, 2) \ 235 V(Uint32x4_add, 2) \
240 V(Uint32x4_sub, 2) \ 236 V(Uint32x4_sub, 2) \
241 V(Uint32x4_getX, 1) \ 237 V(Uint32x4_getX, 1) \
242 V(Uint32x4_getY, 1) \ 238 V(Uint32x4_getY, 1) \
243 V(Uint32x4_getZ, 1) \ 239 V(Uint32x4_getZ, 1) \
244 V(Uint32x4_getW, 1) \ 240 V(Uint32x4_getW, 1) \
245 V(Uint32x4_setX, 2) \ 241 V(Uint32x4_setX, 2) \
246 V(Uint32x4_setY, 2) \ 242 V(Uint32x4_setY, 2) \
247 V(Uint32x4_setZ, 2) \ 243 V(Uint32x4_setZ, 2) \
248 V(Uint32x4_setW, 2) \ 244 V(Uint32x4_setW, 2) \
249 V(Uint32x4_getSignMask, 1) \ 245 V(Uint32x4_getSignMask, 1) \
246 V(Uint32x4_shuffle, 2) \
247 V(Uint32x4_shuffleMix, 3) \
250 V(Uint32x4_getFlagX, 1) \ 248 V(Uint32x4_getFlagX, 1) \
251 V(Uint32x4_getFlagY, 1) \ 249 V(Uint32x4_getFlagY, 1) \
252 V(Uint32x4_getFlagZ, 1) \ 250 V(Uint32x4_getFlagZ, 1) \
253 V(Uint32x4_getFlagW, 1) \ 251 V(Uint32x4_getFlagW, 1) \
254 V(Uint32x4_setFlagX, 2) \ 252 V(Uint32x4_setFlagX, 2) \
255 V(Uint32x4_setFlagY, 2) \ 253 V(Uint32x4_setFlagY, 2) \
256 V(Uint32x4_setFlagZ, 2) \ 254 V(Uint32x4_setFlagZ, 2) \
257 V(Uint32x4_setFlagW, 2) \ 255 V(Uint32x4_setFlagW, 2) \
258 V(Uint32x4_select, 3) \ 256 V(Uint32x4_select, 3) \
259 V(Isolate_mainPort, 0) \ 257 V(Isolate_mainPort, 0) \
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 static void DN_##name(Dart_NativeArguments args); 327 static void DN_##name(Dart_NativeArguments args);
330 328
331 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 329 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
332 330
333 #undef DECLARE_BOOTSTRAP_NATIVE 331 #undef DECLARE_BOOTSTRAP_NATIVE
334 }; 332 };
335 333
336 } // namespace dart 334 } // namespace dart
337 335
338 #endif // VM_BOOTSTRAP_NATIVES_H_ 336 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/typed_data.dart ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698