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

Unified Diff: vm/object.h

Issue 11265026: - Consolidate code into the old generation. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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
Index: vm/object.h
===================================================================
--- vm/object.h (revision 14048)
+++ vm/object.h (working copy)
@@ -2426,6 +2426,11 @@
void set_stackmaps(const Array& maps) const;
RawStackmap* GetStackmap(uword pc, Array* stackmaps, Stackmap* map) const;
+ RawGrowableObjectArray* resolved_static_calls() const {
+ return raw_ptr()->resolved_static_calls_;
+ }
+ void set_resolved_static_calls(const GrowableObjectArray& val) const;
+
class Comments : public ZoneAllocated {
public:
static Comments& New(intptr_t count);

Powered by Google App Engine
This is Rietveld 408576698