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

Unified Diff: runtime/vm/object_store.h

Issue 1496713002: --collect_dynamic_function_names (default false): find unique virtual function names and use them t… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Comments Created 5 years 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/flow_graph_optimizer.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
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 193c84784c6c74198c5dd46aebc171e9a490d072..db57663a656bd342b55413324302920a248cada7 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -444,6 +444,13 @@ class ObjectStore {
compile_time_constants_ = value.raw();
}
+ RawArray* unique_dynamic_targets() const {
+ return unique_dynamic_targets_;
+ }
+ void set_unique_dynamic_targets(const Array& value) {
+ unique_dynamic_targets_ = value.raw();
+ }
+
RawGrowableObjectArray* token_objects() const {
return token_objects_;
}
@@ -570,6 +577,7 @@ class ObjectStore {
RawObject** to_snapshot() {
return reinterpret_cast<RawObject**>(&compile_time_constants_);
}
+ RawArray* unique_dynamic_targets_;
RawGrowableObjectArray* token_objects_;
RawArray* token_objects_map_;
RawGrowableObjectArray* megamorphic_cache_table_;
« no previous file with comments | « runtime/vm/flow_graph_optimizer.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698