| Index: runtime/vm/flow_graph_compiler_x64.h
|
| diff --git a/runtime/vm/flow_graph_compiler_x64.h b/runtime/vm/flow_graph_compiler_x64.h
|
| index db83d44811953d6f48216bb67acd8227bfb2c9d5..b7d73d93b9f0eb29dd398e4a52b834f93ef0cea4 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.h
|
| +++ b/runtime/vm/flow_graph_compiler_x64.h
|
| @@ -15,6 +15,8 @@
|
|
|
| namespace dart {
|
|
|
| +class Code;
|
| +class GrowableArray;
|
| class ParsedFunction;
|
|
|
| class FlowGraphCompiler : public InstructionVisitor {
|
| @@ -31,6 +33,11 @@ class FlowGraphCompiler : public InstructionVisitor {
|
|
|
| void CompileGraph();
|
|
|
| + // Infrastructure copied from class CodeGenerator or stubbed out.
|
| + void FinalizePcDescriptors(const Code& code);
|
| + void FinalizeVarDescriptors(const Code& code);
|
| + void FinalizeExceptionHandlers(const Code& code);
|
| +
|
| private:
|
| // Bail out of the flow graph compiler. Does not return to the caller.
|
| void Bailout(const char* reason);
|
|
|