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

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: Remove commented out code used for testing 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
Index: runtime/vm/symbols.h
diff --git a/runtime/vm/symbols.h b/runtime/vm/symbols.h
index 0e6e274d734636b9e047bd2e86747039654091dc..9d2f1305294a1d881ffdf90e7e06807d8d7cb788 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(_Simd128Float32, "_Simd128Float32x4") \
+ V(_Simd128Mask, "_Simd128Mask") \
+ V(Simd128Float32, "Simd128Float32x4") \
+ V(Simd128Mask, "Simd128Mask") \
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(Simd128Float32List, "Simd128Float32List") \
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(_Simd128Float32Array, "_Simd128Float32x4Array") \
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(_ExternalSimd128Float32Array, "_ExternalSimd128Float32x4Array") \
V(_ExternalFloat32Array, "_ExternalFloat32Array") \
V(_ExternalFloat64Array, "_ExternalFloat64Array") \
V(_WeakProperty, "_WeakProperty") \

Powered by Google App Engine
This is Rietveld 408576698