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

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

Issue 19646005: Add two argument shuffle operations to Float32x4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months 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') | sdk/lib/typed_data/typed_data.dart » ('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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_shuffle, 2) \ 198 V(Float32x4_shuffle, 2) \
199 V(Float32x4_withZWInXY, 2) \
200 V(Float32x4_interleaveXY, 2) \
201 V(Float32x4_interleaveZW, 2) \
202 V(Float32x4_interleaveXYPairs, 2) \
203 V(Float32x4_interleaveZWPairs, 2) \
199 V(Float32x4_setX, 2) \ 204 V(Float32x4_setX, 2) \
200 V(Float32x4_setY, 2) \ 205 V(Float32x4_setY, 2) \
201 V(Float32x4_setZ, 2) \ 206 V(Float32x4_setZ, 2) \
202 V(Float32x4_setW, 2) \ 207 V(Float32x4_setW, 2) \
203 V(Float32x4_min, 2) \ 208 V(Float32x4_min, 2) \
204 V(Float32x4_max, 2) \ 209 V(Float32x4_max, 2) \
205 V(Float32x4_sqrt, 1) \ 210 V(Float32x4_sqrt, 1) \
206 V(Float32x4_reciprocal, 1) \ 211 V(Float32x4_reciprocal, 1) \
207 V(Float32x4_reciprocalSqrt, 1) \ 212 V(Float32x4_reciprocalSqrt, 1) \
208 V(Float32x4_toUint32x4, 1) \ 213 V(Float32x4_toUint32x4, 1) \
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 static void DN_##name(Dart_NativeArguments args); 281 static void DN_##name(Dart_NativeArguments args);
277 282
278 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 283 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
279 284
280 #undef DECLARE_BOOTSTRAP_NATIVE 285 #undef DECLARE_BOOTSTRAP_NATIVE
281 }; 286 };
282 287
283 } // namespace dart 288 } // namespace dart
284 289
285 #endif // VM_BOOTSTRAP_NATIVES_H_ 290 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/typed_data.dart ('k') | sdk/lib/typed_data/typed_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698