Index: src/full-codegen/ppc/full-codegen-ppc.cc |
diff --git a/src/full-codegen/ppc/full-codegen-ppc.cc b/src/full-codegen/ppc/full-codegen-ppc.cc |
index 2419c6291ccea7cf1532a50ffa5286d39f57fb43..7dd8696c03d2b2ee4d1e39772f702bc1b93c310c 100644 |
--- a/src/full-codegen/ppc/full-codegen-ppc.cc |
+++ b/src/full-codegen/ppc/full-codegen-ppc.cc |
@@ -261,37 +261,10 @@ void FullCodeGenerator::Generate() { |
PrepareForBailoutForId(BailoutId::FunctionContext(), |
BailoutState::NO_REGISTERS); |
- // Possibly set up a local binding to the this function which is used in |
- // derived constructors with super calls. |
- Variable* this_function_var = info->scope()->this_function_var(); |
- if (this_function_var != nullptr) { |
- Comment cmnt(masm_, "[ This function"); |
- if (!function_in_register_r4) { |
- __ LoadP(r4, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); |
- // The write barrier clobbers register again, keep it marked as such. |
- } |
- SetVar(this_function_var, r4, r3, r5); |
- } |
- |
- // Possibly set up a local binding to the new target value. |
- Variable* new_target_var = info->scope()->new_target_var(); |
- if (new_target_var != nullptr) { |
- Comment cmnt(masm_, "[ new.target"); |
- SetVar(new_target_var, r6, r3, r5); |
- } |
- |
- // Possibly allocate RestParameters |
- Variable* rest_param = info->scope()->rest_parameter(); |
- if (rest_param != nullptr) { |
- Comment cmnt(masm_, "[ Allocate rest parameter array"); |
- if (!function_in_register_r4) { |
- __ LoadP(r4, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); |
- } |
- FastNewRestParameterStub stub(isolate()); |
- __ CallStub(&stub); |
- function_in_register_r4 = false; |
- SetVar(rest_param, r3, r4, r5); |
- } |
+ // We don't support new.target and rest parameters here. |
+ DCHECK_NULL(info->scope()->new_target_var()); |
+ DCHECK_NULL(info->scope()->rest_parameter()); |
+ DCHECK_NULL(info->scope()->this_function_var()); |
Variable* arguments = info->scope()->arguments(); |
if (arguments != NULL) { |