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

Unified Diff: runtime/vm/object_store.h

Issue 583583007: 1. Add user tag to the pointers traversed in the object store (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 40496)
+++ runtime/vm/object_store.h (working copy)
@@ -432,19 +432,6 @@
handle_message_function_ = function.raw();
}
- RawUserTag* default_tag() const {
- return default_tag_;
- }
- void set_default_tag(const UserTag& tag) {
- // Only set once.
- ASSERT(default_tag_ == UserTag::null());
- ASSERT(!tag.IsNull());
- default_tag_ = tag.raw();
- }
- static intptr_t default_tag_offset() {
- return OFFSET_OF(ObjectStore, default_tag_);
- }
-
RawArray* library_load_error_table() const {
return library_load_error_table_;
}
@@ -544,7 +531,6 @@
RawTypedData* empty_uint32_array_;
RawFunction* handle_message_function_;
RawArray* library_load_error_table_;
- RawUserTag* default_tag_;
RawObject** to() {
return reinterpret_cast<RawObject**>(&library_load_error_table_);
}
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698