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

Unified Diff: runtime/vm/symbols.h

Issue 12303013: Simd128Float32, Simd128Mask, and Simd128Float32List additions for dart:scalarlist (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix strict aliasing warning Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | sdk/lib/scalarlist/byte_arrays.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/symbols.h
diff --git a/runtime/vm/symbols.h b/runtime/vm/symbols.h
index ee8291126d31def93c62daa3b0ed5b2b1f0d4feb..a413ffc583f94a01a9530922db6d7b37c17d33f1 100644
--- a/runtime/vm/symbols.h
+++ b/runtime/vm/symbols.h
@@ -122,6 +122,10 @@ class ObjectPointerVisitor;
V(Object, "Object") \
V(Int, "int") \
V(Double, "double") \
+ V(_Float32x4, "_Float32x4") \
+ V(_Uint32x4, "_Uint32x4") \
+ V(Float32x4, "Float32x4") \
+ V(Uint32x4, "Uint32x4") \
V(Int8List, "Int8List") \
V(Uint8List, "Uint8List") \
V(Uint8ClampedList, "Uint8ClampedList") \
@@ -131,6 +135,7 @@ class ObjectPointerVisitor;
V(Uint32List, "Uint32List") \
V(Int64List, "Int64List") \
V(Uint64List, "Uint64List") \
+ V(Float32x4List, "Float32x4List") \
V(Float32List, "Float32List") \
V(Float64List, "Float64List") \
V(_Int8Array, "_Int8Array") \
@@ -142,6 +147,7 @@ class ObjectPointerVisitor;
V(_Uint32Array, "_Uint32Array") \
V(_Int64Array, "_Int64Array") \
V(_Uint64Array, "_Uint64Array") \
+ V(_Float32x4Array, "_Float32x4Array") \
V(_Float32Array, "_Float32Array") \
V(_Float64Array, "_Float64Array") \
V(_ExternalInt8Array, "_ExternalInt8Array") \
@@ -153,6 +159,7 @@ class ObjectPointerVisitor;
V(_ExternalUint32Array, "_ExternalUint32Array") \
V(_ExternalInt64Array, "_ExternalInt64Array") \
V(_ExternalUint64Array, "_ExternalUint64Array") \
+ V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \
V(_ExternalFloat32Array, "_ExternalFloat32Array") \
V(_ExternalFloat64Array, "_ExternalFloat64Array") \
V(_WeakProperty, "_WeakProperty") \
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | sdk/lib/scalarlist/byte_arrays.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698