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

Unified Diff: runtime/vm/isolate.h

Issue 10378093: Adding collected type feedback to the IL nodes (only in optimized mode). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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/intermediate_language.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
===================================================================
--- runtime/vm/isolate.h (revision 7505)
+++ runtime/vm/isolate.h (working copy)
@@ -28,6 +28,7 @@
class Mutex;
class ObjectPointerVisitor;
class ObjectStore;
+class RawArray;
class RawContext;
class RawError;
class StackResource;
@@ -167,6 +168,9 @@
intptr_t computation_id() const { return computation_id_; }
void set_computation_id(int value) { computation_id_ = value; }
+ RawArray* ic_data_array() const { return ic_data_array_; }
+ void set_ic_data_array(RawArray* value) { ic_data_array_ = value; }
+
Debugger* debugger() const { return debugger_; }
static void SetCreateCallback(Dart_IsolateCreateCallback cback);
@@ -214,6 +218,7 @@
TimerList timer_list_;
intptr_t ast_node_id_; // Deprecate.
intptr_t computation_id_;
+ RawArray* ic_data_array_;
Mutex* mutex_; // protects stack_limit_ and saved_stack_limit_.
uword stack_limit_;
uword saved_stack_limit_;
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698