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

Unified Diff: runtime/vm/object_store.h

Issue 148043003: Add Float64x2, Float64x2List, etc... with runtime and dart2js implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 710572ffd2b03206ffd4341b0c0bcdf4bd17300d..b5f022a7d1e67a8d9f5b7757205be1d57668fa82 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -208,6 +208,16 @@ class ObjectStore {
RawType* int32x4_type() const { return int32x4_type_; }
void set_int32x4_type(const Type& value) { int32x4_type_ = value.raw(); }
+ RawClass* float64x2_class() const {
+ return float64x2_class_;
+ }
+ void set_float64x2_class(const Class& value) {
+ float64x2_class_ = value.raw();
+ }
+
+ RawType* float64x2_type() const { return float64x2_type_; }
+ void set_float64x2_type(const Type& value) { float64x2_type_ = value.raw(); }
+
RawArray* typed_data_classes() const {
return typed_data_classes_;
}
@@ -438,6 +448,7 @@ class ObjectStore {
RawType* double_type_;
RawType* float32x4_type_;
RawType* int32x4_type_;
+ RawType* float64x2_type_;
RawType* string_type_;
RawClass* one_byte_string_class_;
RawClass* two_byte_string_class_;
@@ -451,6 +462,7 @@ class ObjectStore {
RawClass* growable_object_array_class_;
RawClass* float32x4_class_;
RawClass* int32x4_class_;
+ RawClass* float64x2_class_;
RawArray* typed_data_classes_;
RawClass* error_class_;
RawClass* stacktrace_class_;

Powered by Google App Engine
This is Rietveld 408576698