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

Unified Diff: vm/raw_object.h

Issue 8379013: Implement new inline cache. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years, 2 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 | « vm/object.cc ('k') | vm/stub_code.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/raw_object.h
===================================================================
--- vm/raw_object.h (revision 700)
+++ vm/raw_object.h (working copy)
@@ -489,9 +489,8 @@
RawPcDescriptors* pc_descriptors_;
// Ongoing redesign of inline caches may soon remove the need for 'ic_data_'.
RawArray* ic_data_; // Used to store IC stub data (see class ICData).
- RawArray* class_ic_stubs_; // Array of pairs (RawArray<RawClass>, RawCode)
RawObject** to() {
- return reinterpret_cast<RawObject**>(&ptr()->class_ic_stubs_);
+ return reinterpret_cast<RawObject**>(&ptr()->ic_data_);
}
intptr_t pointer_offsets_length_;
« no previous file with comments | « vm/object.cc ('k') | vm/stub_code.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698