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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 10824177: Reapply "Added support for copied parameters to the SSA compiler." (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_builder.h
diff --git a/runtime/vm/flow_graph_builder.h b/runtime/vm/flow_graph_builder.h
index 06a1a3e73078e730e2b62f7d0db4bc282f41e479..3eeb659240c2023db8bb250bbd302035f3ea2319 100644
--- a/runtime/vm/flow_graph_builder.h
+++ b/runtime/vm/flow_graph_builder.h
@@ -60,7 +60,9 @@ class FlowGraphBuilder: public ValueObject {
GrowableArray<intptr_t>* parent,
GrowableArray<intptr_t>* label);
- void Rename(intptr_t var_count);
+ void Rename(intptr_t stack_local_count,
+ intptr_t fixed_parameter_count,
+ intptr_t copied_parameter_count);
void RenameRecursive(BlockEntryInstr* block_entry,
GrowableArray<Value*>* env,
intptr_t var_count,

Powered by Google App Engine
This is Rietveld 408576698