| Index: runtime/vm/flow_graph_builder.h
|
| diff --git a/runtime/vm/flow_graph_builder.h b/runtime/vm/flow_graph_builder.h
|
| index 04ee91d45f513b5bc74b73cc42313a964cf9e1ae..f2132a185b1e7be750e4e844e0539765726983f3 100644
|
| --- a/runtime/vm/flow_graph_builder.h
|
| +++ b/runtime/vm/flow_graph_builder.h
|
| @@ -37,6 +37,13 @@ class FlowGraphBuilder: public ValueObject {
|
| intptr_t context_level() const { return context_level_; }
|
|
|
| private:
|
| + void ComputeDominators(GrowableArray<BlockEntryInstr*>* preorder,
|
| + GrowableArray<intptr_t>* parent);
|
| + void CompressPath(intptr_t start_index,
|
| + intptr_t current_index,
|
| + GrowableArray<intptr_t>* parent,
|
| + GrowableArray<intptr_t>* label);
|
| +
|
| const ParsedFunction& parsed_function_;
|
| GrowableArray<BlockEntryInstr*> preorder_block_entries_;
|
| GrowableArray<BlockEntryInstr*> postorder_block_entries_;
|
|
|