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

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
« no previous file with comments | « runtime/vm/locations.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 0e8c586bce49bfc06b211b4af866149fbdf59b63..f98aff2f9e30dc4d3aa9e42118b17ad08580abd6 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4140,6 +4140,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;
@@ -4267,6 +4270,9 @@ class Type : public AbstractType {
// The 'Float32x4' type.
static RawType* Float32x4();
+ // The 'Float64x2' type.
+ static RawType* Float64x2();
+
// The 'Int32x4' type.
static RawType* Int32x4();
« no previous file with comments | « runtime/vm/locations.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698