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

Unified Diff: vm/stack_frame.cc

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
« vm/pages.cc ('K') | « vm/raw_object.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/stack_frame.cc
===================================================================
--- vm/stack_frame.cc (revision 14048)
+++ vm/stack_frame.cc (working copy)
@@ -59,6 +59,10 @@
Code code;
code = LookupDartCode();
if (!code.IsNull()) {
+ // Visit the code object.
+ RawObject* raw_code = code.raw();
+ visitor->VisitPointer(&raw_code);
+ // Visit stack based on stack maps.
Array maps;
maps = Array::null();
Stackmap map;
« vm/pages.cc ('K') | « vm/raw_object.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698