Index: src/compiler/js-intrinsic-lowering.h |
diff --git a/src/compiler/js-intrinsic-lowering.h b/src/compiler/js-intrinsic-lowering.h |
index 5dd46156b3c587ed95dfc7c74b7a8b45143710b2..61cf9c4817dfcdbeb03d38cf81d58db55c6cdebd 100644 |
--- a/src/compiler/js-intrinsic-lowering.h |
+++ b/src/compiler/js-intrinsic-lowering.h |
@@ -15,6 +15,7 @@ namespace compiler { |
// Forward declarations. |
class CommonOperatorBuilder; |
+class JSOperatorBuilder; |
class JSGraph; |
class MachineOperatorBuilder; |
@@ -56,6 +57,7 @@ class JSIntrinsicLowering final : public AdvancedReducer { |
Reduction ReduceGetTypeFeedbackVector(Node* node); |
Reduction ReduceGetCallerJSFunction(Node* node); |
Reduction ReduceThrowNotDateError(Node* node); |
+ Reduction ReduceCallFunction(Node* node); |
Reduction Change(Node* node, const Operator* op); |
Reduction Change(Node* node, const Operator* op, Node* a, Node* b); |
@@ -65,6 +67,7 @@ class JSIntrinsicLowering final : public AdvancedReducer { |
Graph* graph() const; |
JSGraph* jsgraph() const { return jsgraph_; } |
CommonOperatorBuilder* common() const; |
+ JSOperatorBuilder* javascript() const; |
MachineOperatorBuilder* machine() const; |
DeoptimizationMode mode() const { return mode_; } |
SimplifiedOperatorBuilder* simplified() { return &simplified_; } |