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

Unified Diff: runtime/vm/object.h

Issue 9567023: Fix crash in inline cache: forgot to GC properly RawICData. Various cleanups. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 10 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/code_patcher_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 4802)
+++ runtime/vm/object.h (working copy)
@@ -3679,10 +3679,6 @@
return raw_ptr()->target_name_;
}
- RawArray* ic_data() const {
- return raw_ptr()->ic_data_;
- }
-
intptr_t num_args_tested() const {
return raw_ptr()->num_args_tested_;
}
@@ -3726,6 +3722,10 @@
intptr_t num_args_tested);
private:
+ RawArray* ic_data() const {
+ return raw_ptr()->ic_data_;
+ }
+
void set_function(const Function& value) const;
void set_target_name(const String& value) const;
void set_id(intptr_t value) const;
« no previous file with comments | « runtime/vm/code_patcher_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698