| Index: src/builtins/builtins.h
 | 
| diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h
 | 
| index f8ce2e699fbc9e36b17bd5e516e86264364e8a22..df5976699244f28edd787a9090600e02a2e3eb5e 100644
 | 
| --- a/src/builtins/builtins.h
 | 
| +++ b/src/builtins/builtins.h
 | 
| @@ -123,9 +123,10 @@ namespace internal {
 | 
|    ASM(InterpreterMarkBaselineOnReturn)                                        \
 | 
|    ASM(InterpreterPushArgsAndCall)                                             \
 | 
|    ASM(InterpreterPushArgsAndCallFunction)                                     \
 | 
| -  ASM(InterpreterPushArgsAndConstruct)                                        \
 | 
|    ASM(InterpreterPushArgsAndTailCall)                                         \
 | 
|    ASM(InterpreterPushArgsAndTailCallFunction)                                 \
 | 
| +  ASM(InterpreterPushArgsAndConstruct)                                        \
 | 
| +  ASM(InterpreterPushArgsAndConstructFunction)                                \
 | 
|    ASM(InterpreterEnterBytecodeDispatch)                                       \
 | 
|    ASM(InterpreterOnStackReplacement)                                          \
 | 
|                                                                                \
 | 
| @@ -590,6 +591,7 @@ class Builtins {
 | 
|    Handle<Code> InterpreterPushArgsAndCall(
 | 
|        TailCallMode tail_call_mode,
 | 
|        CallableType function_type = CallableType::kAny);
 | 
| +  Handle<Code> InterpreterPushArgsAndConstruct(CallableType function_type);
 | 
|  
 | 
|    Code* builtin(Name name) {
 | 
|      // Code::cast cannot be used here since we access builtins
 | 
| @@ -643,6 +645,9 @@ class Builtins {
 | 
|        MacroAssembler* masm, TailCallMode tail_call_mode,
 | 
|        CallableType function_type);
 | 
|  
 | 
| +  static void Generate_InterpreterPushArgsAndConstructImpl(
 | 
| +      MacroAssembler* masm, CallableType function_type);
 | 
| +
 | 
|    static void Generate_DatePrototype_GetField(MacroAssembler* masm,
 | 
|                                                int field_index);
 | 
|  
 | 
| 
 |