Commit b6e9f625 authored by adamk's avatar adamk Committed by Commit bot

[es6] Self-assignment in a default parameter initializer should throw

The first bug was that there are two different "initialization positions"
passed into PatternRewriter::DeclareAndInitializeVariables, and we weren't
setting them all properly for this case.

After further code review, it became clear that we weren't even recording
the correct position (the end of the initializer expression).

The combination of those two bugs caused the hole check elimination code
in full-codegen to skip emitting a hole check.

This patch takes care of both of those things. A follow-up will try
to reduce the number of "initializer positions" we track in the
variable declaration code.

R=littledan@chromium.org
BUG=v8:4568
LOG=n

Review URL: https://codereview.chromium.org/1468143004

Cr-Commit-Position: refs/heads/master@{#32237}
parent ceb92ebf
......@@ -4077,7 +4077,11 @@ void ParserTraits::ParseArrowFunctionFormalParameters(
parser_->scope_, parameters->scope);
}
AddFormalParameter(parameters, expr, initializer, is_rest);
// TODO(adamk): params_loc.end_pos is not the correct initializer position,
// but it should be conservative enough to trigger hole checks for variables
// referenced in the initializer (if any).
AddFormalParameter(parameters, expr, initializer, params_loc.end_pos,
is_rest);
}
......@@ -4539,7 +4543,15 @@ Block* Parser::BuildParameterInitializationBlock(
descriptor.is_const = false;
descriptor.needs_init = true;
descriptor.declaration_pos = parameter.pattern->position();
// The position that will be used by the AssignmentExpression
// which copies from the temp parameter to the pattern.
//
// TODO(adamk): Should this be RelocInfo::kNoPosition, since
// it's just copying from a temp var to the real param var?
descriptor.initialization_pos = parameter.pattern->position();
// The initializer position which will end up in,
// Variable::initializer_position(), used for hole check elimination.
int initializer_position = parameter.pattern->position();
Expression* initial_value =
factory()->NewVariableProxy(parameters.scope->parameter(i));
if (parameter.initializer != nullptr) {
......@@ -4554,6 +4566,7 @@ Block* Parser::BuildParameterInitializationBlock(
condition, parameter.initializer, initial_value,
RelocInfo::kNoPosition);
descriptor.initialization_pos = parameter.initializer->position();
initializer_position = parameter.initializer_end_position;
} else if (parameter.is_rest) {
// $rest = [];
// for (var $argument_index = $rest_index;
......@@ -4565,7 +4578,6 @@ Block* Parser::BuildParameterInitializationBlock(
DCHECK(parameter.pattern->IsVariableProxy());
DCHECK_EQ(i, parameters.params.length() - 1);
int pos = parameter.pattern->position();
Variable* temp_var = parameters.scope->parameter(i);
auto empty_values = new (zone()) ZoneList<Expression*>(0, zone());
auto empty_array = factory()->NewArrayLiteral(
......@@ -4629,8 +4641,6 @@ Block* Parser::BuildParameterInitializationBlock(
zone());
init_block->statements()->Add(loop, zone());
descriptor.initialization_pos = pos;
}
Scope* param_scope = scope_;
......@@ -4649,7 +4659,7 @@ Block* Parser::BuildParameterInitializationBlock(
{
BlockState block_state(&scope_, param_scope);
DeclarationParsingResult::Declaration decl(
parameter.pattern, parameter.pattern->position(), initial_value);
parameter.pattern, initializer_position, initial_value);
PatternRewriter::DeclareAndInitializeVariables(param_block, &descriptor,
&decl, nullptr, CHECK_OK);
}
......
......@@ -551,12 +551,17 @@ class SingletonLogger;
struct ParserFormalParameters : FormalParametersBase {
struct Parameter {
Parameter(const AstRawString* name, Expression* pattern,
Expression* initializer, bool is_rest)
: name(name), pattern(pattern), initializer(initializer),
Expression* initializer, int initializer_end_position,
bool is_rest)
: name(name),
pattern(pattern),
initializer(initializer),
initializer_end_position(initializer_end_position),
is_rest(is_rest) {}
const AstRawString* name;
Expression* pattern;
Expression* initializer;
int initializer_end_position;
bool is_rest;
bool is_simple() const {
return pattern->IsVariableProxy() && initializer == nullptr && !is_rest;
......@@ -793,9 +798,10 @@ class ParserTraits {
V8_INLINE Scope* NewScope(Scope* parent_scope, ScopeType scope_type,
FunctionKind kind = kNormalFunction);
V8_INLINE void AddFormalParameter(
ParserFormalParameters* parameters, Expression* pattern,
Expression* initializer, bool is_rest);
V8_INLINE void AddFormalParameter(ParserFormalParameters* parameters,
Expression* pattern,
Expression* initializer,
int initializer_end_position, bool is_rest);
V8_INLINE void DeclareFormalParameter(
Scope* scope, const ParserFormalParameters::Parameter& parameter,
ExpressionClassifier* classifier);
......@@ -1337,9 +1343,11 @@ Expression* ParserTraits::SpreadCallNew(
}
void ParserTraits::AddFormalParameter(
ParserFormalParameters* parameters,
Expression* pattern, Expression* initializer, bool is_rest) {
void ParserTraits::AddFormalParameter(ParserFormalParameters* parameters,
Expression* pattern,
Expression* initializer,
int initializer_end_position,
bool is_rest) {
bool is_simple =
!is_rest && pattern->IsVariableProxy() && initializer == nullptr;
DCHECK(parser_->allow_harmony_destructuring_bind() ||
......@@ -1349,7 +1357,8 @@ void ParserTraits::AddFormalParameter(
? pattern->AsVariableProxy()->raw_name()
: parser_->ast_value_factory()->empty_string();
parameters->params.Add(
ParserFormalParameters::Parameter(name, pattern, initializer, is_rest),
ParserFormalParameters::Parameter(name, pattern, initializer,
initializer_end_position, is_rest),
parameters->scope->zone());
}
......
......@@ -1708,9 +1708,10 @@ class PreParserTraits {
return !tag.IsNoTemplateTag();
}
void AddFormalParameter(
PreParserFormalParameters* parameters, PreParserExpression pattern,
PreParserExpression initializer, bool is_rest) {
void AddFormalParameter(PreParserFormalParameters* parameters,
PreParserExpression pattern,
PreParserExpression initializer,
int initializer_end_position, bool is_rest) {
++parameters->arity;
}
void DeclareFormalParameter(Scope* scope, PreParserIdentifier parameter,
......@@ -3839,7 +3840,8 @@ void ParserBase<Traits>::ParseFormalParameter(
classifier->RecordNonSimpleParameter();
}
Traits::AddFormalParameter(parameters, pattern, initializer, is_rest);
Traits::AddFormalParameter(parameters, pattern, initializer,
scanner()->location().end_pos, is_rest);
}
......
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Flags: --harmony-default-parameters
((a=-a) => { })();
*%(basename)s:7: ReferenceError: a is not defined
((a=-a) => { })();
^
ReferenceError: a is not defined
at *%(basename)s:7:6
at *%(basename)s:7:16
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Flags: --harmony-default-parameters
(function(a=+a) { })();
*%(basename)s:7: ReferenceError: a is not defined
(function(a=+a) { })();
^
ReferenceError: a is not defined
at *%(basename)s:7:14
at *%(basename)s:7:21
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment