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

Unified Diff: runtime/vm/flow_graph_compiler_x64.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_x64.cc
diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
index 13a44e662f352e9a3a92a694d7f90175db760251..0aef5485745b75a40cd03bf530f17b88c2b10c44 100644
--- a/runtime/vm/flow_graph_compiler_x64.cc
+++ b/runtime/vm/flow_graph_compiler_x64.cc
@@ -802,7 +802,8 @@ void FlowGraphCompiler::CopyParameters() {
}
if (is_optimizing()) {
stackmap_table_builder_->AddEntry(assembler()->CodeSize(),
- empty_stack_bitmap);
+ empty_stack_bitmap,
+ 0);
Vyacheslav Egorov (Google) 2012/08/27 14:54:51 I wonder if it would not be cleaner to pass Regist
Kevin Millikin (Google) 2012/08/29 12:40:41 At some point we have to unpack it into something
}
if (FLAG_trace_functions) {
@@ -817,7 +818,8 @@ void FlowGraphCompiler::CopyParameters() {
CatchClauseNode::kInvalidTryIndex);
if (is_optimizing()) {
stackmap_table_builder_->AddEntry(assembler()->CodeSize(),
- empty_stack_bitmap);
+ empty_stack_bitmap,
+ 0);
}
__ popq(RAX); // Remove argument.
__ popq(RAX); // Restore result.

Powered by Google App Engine
This is Rietveld 408576698