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

Unified Diff: runtime/vm/isolate.h

Issue 10830109: Add type propagation phase in optimizing compiler (work in progress). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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.cc ('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 10124)
+++ runtime/vm/isolate.h (working copy)
@@ -23,6 +23,7 @@
class HandleScope;
class HandleVisitor;
class Heap;
+class ICData;
class LongJump;
class MessageHandler;
class Mutex;
@@ -179,9 +180,11 @@
intptr_t computation_id() const { return computation_id_; }
void set_computation_id(int value) { computation_id_ = value; }
+ intptr_t GetNextCid() { return computation_id_++; }
RawArray* ic_data_array() const { return ic_data_array_; }
void set_ic_data_array(RawArray* value) { ic_data_array_ = value; }
+ ICData* GetICDataForCid(intptr_t cid) const;
Debugger* debugger() const { return debugger_; }
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698