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

Unified Diff: runtime/vm/flow_graph_compiler_ia32.cc

Issue 10882055: Put live register bits in stackmaps. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/flow_graph_compiler_ia32.cc
diff --git a/runtime/vm/flow_graph_compiler_ia32.cc b/runtime/vm/flow_graph_compiler_ia32.cc
index 24bdb8168c3251ebad563e594697f5aa0e953b3b..70c4ff2385f4d58a402972732271d63c845cad7d 100644
--- a/runtime/vm/flow_graph_compiler_ia32.cc
+++ b/runtime/vm/flow_graph_compiler_ia32.cc
@@ -796,7 +796,8 @@ void FlowGraphCompiler::CopyParameters() {
}
if (is_optimizing()) {
stackmap_table_builder_->AddEntry(assembler()->CodeSize(),
- empty_stack_bitmap);
+ empty_stack_bitmap,
+ 0); // No registers.
}
@@ -812,7 +813,8 @@ void FlowGraphCompiler::CopyParameters() {
CatchClauseNode::kInvalidTryIndex);
if (is_optimizing()) {
stackmap_table_builder_->AddEntry(assembler()->CodeSize(),
- empty_stack_bitmap);
+ empty_stack_bitmap,
+ 0); // No registers.
}
__ popl(EAX); // Remove argument.
__ popl(EAX); // Restore result.

Powered by Google App Engine
This is Rietveld 408576698