| Index: src/compiler/bytecode-graph-builder.h
|
| diff --git a/src/compiler/bytecode-graph-builder.h b/src/compiler/bytecode-graph-builder.h
|
| index 251822da203a6a8a26d22410df2ce519bdc29519..f11127ef5a56cc30b98545cc1f8d11966707329c 100644
|
| --- a/src/compiler/bytecode-graph-builder.h
|
| +++ b/src/compiler/bytecode-graph-builder.h
|
| @@ -23,13 +23,12 @@ class BytecodeGraphBuilder {
|
| JSGraph* jsgraph);
|
|
|
| // Creates a graph by visiting bytecodes.
|
| - bool CreateGraph(bool stack_check = true);
|
| + bool CreateGraph();
|
|
|
| private:
|
| class Environment;
|
| class FrameStateBeforeAndAfter;
|
|
|
| - void CreateGraphBody(bool stack_check);
|
| void VisitBytecodes();
|
|
|
| // Get or create the node that represents the outer function closure.
|
| @@ -161,9 +160,6 @@ class BytecodeGraphBuilder {
|
| // Simulates entry and exit of exception handlers.
|
| void EnterAndExitExceptionHandlers(int current_offset);
|
|
|
| - // Attaches a frame state to |node| for the entry to the function.
|
| - void PrepareEntryFrameState(Node* node);
|
| -
|
| // Growth increment for the temporary buffer used to construct input lists to
|
| // new nodes.
|
| static const int kInputBufferSizeIncrement = 64;
|
|
|