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

Unified Diff: vm/compiler.cc

Issue 9721006: Second set of changes for implementation of stack map support. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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
« no previous file with comments | « vm/code_generator_x64_test.cc ('k') | vm/flow_graph_compiler_x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/compiler.cc
===================================================================
--- vm/compiler.cc (revision 5572)
+++ vm/compiler.cc (working copy)
@@ -190,6 +190,7 @@
Code::FinalizeCode(function_fullname, &assembler));
code.set_is_optimized(true);
code_gen.FinalizePcDescriptors(code);
+ code_gen.FinalizeStackmaps(code);
code_gen.FinalizeExceptionHandlers(code);
function.SetCode(code);
code_index_table->AddCode(code);
@@ -209,6 +210,7 @@
Code::Handle(Code::FinalizeCode(function_fullname, &assembler));
code.set_is_optimized(false);
code_gen.FinalizePcDescriptors(code);
+ code_gen.FinalizeStackmaps(code);
code_gen.FinalizeVarDescriptors(code);
code_gen.FinalizeExceptionHandlers(code);
function.set_unoptimized_code(code);
@@ -386,6 +388,7 @@
// functions from the global code description (PC mapping) tables so
// we don't pollute the system unnecessarily with stale data.
code_gen.FinalizePcDescriptors(code);
+ code_gen.FinalizeStackmaps(code);
code_gen.FinalizeExceptionHandlers(code);
GrowableArray<const Object*> arguments; // no arguments.
« no previous file with comments | « vm/code_generator_x64_test.cc ('k') | vm/flow_graph_compiler_x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698