| Index: src/compiler/js-typed-lowering.h
|
| diff --git a/src/compiler/js-typed-lowering.h b/src/compiler/js-typed-lowering.h
|
| index b5a2f40784f8fea84e6a0d389a1a1075550b98c9..4621a45e283bde4fdd8e85dad83b3cbd32ea484a 100644
|
| --- a/src/compiler/js-typed-lowering.h
|
| +++ b/src/compiler/js-typed-lowering.h
|
| @@ -68,14 +68,6 @@ class JSTypedLowering final : public AdvancedReducer {
|
| Reduction ReduceJSToString(Node* node);
|
| Reduction ReduceJSToObject(Node* node);
|
| Reduction ReduceJSConvertReceiver(Node* node);
|
| - Reduction ReduceJSCreate(Node* node);
|
| - Reduction ReduceJSCreateArguments(Node* node);
|
| - Reduction ReduceJSCreateArray(Node* node);
|
| - Reduction ReduceJSCreateIterResultObject(Node* node);
|
| - Reduction ReduceJSCreateFunctionContext(Node* node);
|
| - Reduction ReduceJSCreateWithContext(Node* node);
|
| - Reduction ReduceJSCreateCatchContext(Node* node);
|
| - Reduction ReduceJSCreateBlockContext(Node* node);
|
| Reduction ReduceJSCallConstruct(Node* node);
|
| Reduction ReduceJSCallFunction(Node* node);
|
| Reduction ReduceJSForInDone(Node* node);
|
| @@ -86,19 +78,8 @@ class JSTypedLowering final : public AdvancedReducer {
|
| Reduction ReduceInt32Binop(Node* node, const Operator* intOp);
|
| Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
|
| const Operator* shift_op);
|
| - Reduction ReduceNewArray(Node* node, Node* length, int capacity,
|
| - Handle<AllocationSite> site);
|
|
|
| Node* Word32Shl(Node* const lhs, int32_t const rhs);
|
| - Node* AllocateArguments(Node* effect, Node* control, Node* frame_state);
|
| - Node* AllocateRestArguments(Node* effect, Node* control, Node* frame_state,
|
| - int start_index);
|
| - Node* AllocateAliasedArguments(Node* effect, Node* control, Node* frame_state,
|
| - Node* context, Handle<SharedFunctionInfo>,
|
| - bool* has_aliased_arguments);
|
| - Node* AllocateElements(Node* effect, Node* control,
|
| - ElementsKind elements_kind, int capacity,
|
| - PretenureFlag pretenure);
|
|
|
| Factory* factory() const;
|
| Graph* graph() const;
|
| @@ -111,10 +92,6 @@ class JSTypedLowering final : public AdvancedReducer {
|
| CompilationDependencies* dependencies() const;
|
| Flags flags() const { return flags_; }
|
|
|
| - // Limits up to which context allocations are inlined.
|
| - static const int kFunctionContextAllocationLimit = 16;
|
| - static const int kBlockContextAllocationLimit = 16;
|
| -
|
| CompilationDependencies* dependencies_;
|
| Flags flags_;
|
| JSGraph* jsgraph_;
|
|
|