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

Unified Diff: runtime/vm/isolate.h

Issue 15470013: Remove the IC data array from the isolate. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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.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
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 407a9f8d44256acee161098392c44cd8ccc320bd..e0059cff6e26a267d1351cd1994ef19d2537407c 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -405,10 +405,6 @@ class Isolate : public BaseIsolate {
return (deopt_id % kDeoptIdStep) == kDeoptIdAfterOffset;
}
- RawArray* ic_data_array() const { return ic_data_array_; }
- void set_ic_data_array(RawArray* value) { ic_data_array_ = value; }
- ICData* GetICDataForDeoptId(intptr_t deopt_id) const;
-
Mutex* mutex() const { return mutex_; }
Debugger* debugger() const { return debugger_; }
@@ -615,7 +611,6 @@ class Isolate : public BaseIsolate {
LongJump* long_jump_base_;
TimerList timer_list_;
intptr_t deopt_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.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698