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

Unified Diff: runtime/vm/object.h

Issue 13818006: Unboxed load/store indexed of Float32x4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 6d73f43a799f4f71d4f5e1926a1caebc903f36ee..a640bd136d1ac1ade03bafe5218356e9624342de 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -3510,6 +3510,12 @@ class AbstractType : public Instance {
// Check if this type represents the 'double' type.
bool IsDoubleType() const;
+ // Check if this type represents the 'Float32x4' type.
+ bool IsFloat32x4Type() const;
+
+ // Check if this type represents the 'Uint32x4' type.
+ bool IsUint32x4Type() const;
+
// Check if this type represents the 'num' type.
bool IsNumberType() const;
@@ -3622,6 +3628,12 @@ class Type : public AbstractType {
// The 'double' type.
static RawType* Double();
+ // The 'Float32x4' type.
+ static RawType* Float32x4();
+
+ // The 'Uint32x4' type.
+ static RawType* Uint32x4();
+
// The 'num' type.
static RawType* Number();

Powered by Google App Engine
This is Rietveld 408576698