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

Unified Diff: runtime/vm/object_store.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
« no previous file with comments | « runtime/vm/object.cc ('k') | tests/lib/typeddata/float32x4_list_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index fde7670ab76de5cc399c46f18eb29a4e5f520d1f..5ceabd5020038d2615f84ce6d9bbba59890ed45a 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -181,6 +181,9 @@ class ObjectStore {
float32x4_class_ = value.raw();
}
+ RawType* float32x4_type() const { return float32x4_type_; }
+ void set_float32x4_type(const Type& value) { float32x4_type_ = value.raw(); }
+
RawClass* uint32x4_class() const {
return uint32x4_class_;
}
@@ -188,6 +191,9 @@ class ObjectStore {
uint32x4_class_ = value.raw();
}
+ RawType* uint32x4_type() const { return uint32x4_type_; }
+ void set_uint32x4_type(const Type& value) { uint32x4_type_ = value.raw(); }
+
RawArray* typeddata_classes() const {
return typeddata_classes_;
}
@@ -442,6 +448,8 @@ class ObjectStore {
RawClass* bigint_class_;
RawClass* double_class_;
RawType* double_type_;
+ RawType* float32x4_type_;
+ RawType* uint32x4_type_;
RawType* string_type_;
RawClass* one_byte_string_class_;
RawClass* two_byte_string_class_;
« no previous file with comments | « runtime/vm/object.cc ('k') | tests/lib/typeddata/float32x4_list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698