| Index: src/builtins.h
|
| diff --git a/src/builtins.h b/src/builtins.h
|
| index 508e9da6274203e0b9c18817b2f9540c6488be7e..23c71a63cc3dab589100f5bce2e4fc0b502f00d4 100644
|
| --- a/src/builtins.h
|
| +++ b/src/builtins.h
|
| @@ -68,7 +68,6 @@
|
| V(DateToPrimitive, kNone) \
|
| \
|
| V(FunctionConstructor, kTargetAndNewTarget) \
|
| - V(FunctionPrototypeBind, kNone) \
|
| V(FunctionPrototypeToString, kNone) \
|
| \
|
| V(GeneratorFunctionConstructor, kTargetAndNewTarget) \
|
| @@ -115,14 +114,12 @@
|
| V(CallFunction_ReceiverIsNotNullOrUndefined, BUILTIN, UNINITIALIZED, \
|
| kNoExtraICState) \
|
| V(CallFunction_ReceiverIsAny, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| - V(CallBoundFunction, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| V(Call_ReceiverIsNullOrUndefined, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| V(Call_ReceiverIsNotNullOrUndefined, BUILTIN, UNINITIALIZED, \
|
| kNoExtraICState) \
|
| V(Call_ReceiverIsAny, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| \
|
| V(ConstructFunction, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| - V(ConstructBoundFunction, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| V(ConstructProxy, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| V(Construct, BUILTIN, UNINITIALIZED, kNoExtraICState) \
|
| \
|
| @@ -346,8 +343,6 @@
|
| static void Generate_CallFunction_ReceiverIsAny(MacroAssembler* masm) {
|
| Generate_CallFunction(masm, ConvertReceiverMode::kAny);
|
| }
|
| - // ES6 section 9.4.1.1 [[Call]] ( thisArgument, argumentsList)
|
| - static void Generate_CallBoundFunction(MacroAssembler* masm);
|
| // ES6 section 7.3.12 Call(F, V, [argumentsList])
|
| static void Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode);
|
| static void Generate_Call_ReceiverIsNullOrUndefined(MacroAssembler* masm) {
|
| @@ -362,8 +357,6 @@
|
|
|
| // ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget)
|
| static void Generate_ConstructFunction(MacroAssembler* masm);
|
| - // ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget)
|
| - static void Generate_ConstructBoundFunction(MacroAssembler* masm);
|
| // ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget)
|
| static void Generate_ConstructProxy(MacroAssembler* masm);
|
| // ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget])
|
|
|