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

Unified Diff: runtime/vm/stub_code_mips.cc

Issue 1052563003: VM: Add infrastructure to support deferred generation of unoptimized code. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 9 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: runtime/vm/stub_code_mips.cc
===================================================================
--- runtime/vm/stub_code_mips.cc (revision 44707)
+++ runtime/vm/stub_code_mips.cc (working copy)
@@ -588,7 +588,8 @@
// Frame is fully rewritten at this point and it is safe to perform a GC.
// Materialize any objects that were deferred by FillFrame because they
// require allocation.
- __ EnterStubFrame();
+ // Enter stub frame with loading PP. The caller's PP is not materialized yet.
+ __ EnterStubFrame(true);
if (preserve_result) {
__ Push(T1); // Preserve result, it will be GC-d here.
}

Powered by Google App Engine
This is Rietveld 408576698