Chromium Code Reviews| Index: vm/flow_graph_builder.h |
| =================================================================== |
| --- vm/flow_graph_builder.h (revision 8786) |
| +++ vm/flow_graph_builder.h (working copy) |
| @@ -52,6 +52,11 @@ |
| GrowableArray<intptr_t>* parent, |
| GrowableArray<intptr_t>* label); |
| + void Rename(intptr_t var_count); |
| + void RenameRecursive(BlockEntryInstr* block_entry, |
| + ZoneGrowableArray<Value*>* env, |
| + intptr_t var_count); |
|
srdjan
2012/06/18 18:04:38
SHould we move all the SSA building methods and fi
Florian Schneider
2012/06/19 11:26:40
Yes, I think that would be good. I'll do it as a s
|
| + |
| void InsertPhis(const GrowableArray<BlockEntryInstr*>& preorder, |
| const GrowableArray<BitVector*>& assigned_vars, |
| const intptr_t var_count, |
| @@ -64,6 +69,7 @@ |
| intptr_t last_used_try_index_; |
| intptr_t try_index_; |
| GraphEntryInstr* graph_entry_; |
| + intptr_t current_ssa_temp_index_; |
| DISALLOW_IMPLICIT_CONSTRUCTORS(FlowGraphBuilder); |
| }; |