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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 10824147: 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, 5 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 735bcc679d2730d8c63b27eb5443f0d5cd63d81a..ee1a54128d7f7bd996baa21626f756fdd2a08d4d 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 named_parameter_count);
void RenameRecursive(BlockEntryInstr* block_entry,
GrowableArray<Value*>* env,
intptr_t var_count,

Powered by Google App Engine
This is Rietveld 408576698