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

Unified Diff: runtime/vm/object.h

Issue 172653002: Unbox/Box Float64x2 and inline typed array loads and stores (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 5b363e28772436c683ce8eba950e94ddb85163aa..b9f1e3e467a2a73eaed761d38a710ca19f0b9b62 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4137,6 +4137,9 @@ class AbstractType : public Instance {
// Check if this type represents the 'Float32x4' type.
bool IsFloat32x4Type() const;
+ // Check if this type represents the 'Float64x2' type.
+ bool IsFloat64x2Type() const;
+
// Check if this type represents the 'Int32x4' type.
bool IsInt32x4Type() const;
@@ -4264,6 +4267,9 @@ class Type : public AbstractType {
// The 'Float32x4' type.
static RawType* Float32x4();
+ // The 'Float64x2' type.
+ static RawType* Float64x2();
+
// The 'Int32x4' type.
static RawType* Int32x4();

Powered by Google App Engine
This is Rietveld 408576698