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

Unified Diff: runtime/vm/object.h

Issue 8394061: Store IC data instead of array of classes in AST node, so that we can easier access targets and f... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
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 | « runtime/vm/ic_data.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 755)
+++ runtime/vm/object.h (working copy)
@@ -1849,10 +1849,9 @@
// (inclusive) and 'end_offset' (exclusive).
bool ObjectExistInArea(intptr_t start_offest, intptr_t end_offset) const;
- // For each (*token_indices)[i] an array of types (*types)[i] is defined.
- void ExtractTypesAtIcCalls(
- GrowableArray<intptr_t>* token_indices,
- GrowableArray<ZoneGrowableArray<const Class*>*>* types) const;
+ // Each (*node_ids)[n] has a an extracted ic data array (*arrays)[n].
+ void ExtractIcDataArraysAtCalls(GrowableArray<intptr_t>* node_ids,
+ GrowableArray<const Array*>* arrays) const;
private:
static const intptr_t kEntrySize = sizeof(int32_t); // NOLINT
« no previous file with comments | « runtime/vm/ic_data.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698