Commit 329cf123 authored by rossberg@chromium.org's avatar rossberg@chromium.org

Make sure that names of temporaries do not clash with real variables.

R=mstarzinger@chromium.org
BUG=v8:2322

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12668 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent b07f38a4
...@@ -4066,7 +4066,7 @@ class Internals { ...@@ -4066,7 +4066,7 @@ class Internals {
static const int kNullValueRootIndex = 7; static const int kNullValueRootIndex = 7;
static const int kTrueValueRootIndex = 8; static const int kTrueValueRootIndex = 8;
static const int kFalseValueRootIndex = 9; static const int kFalseValueRootIndex = 9;
static const int kEmptySymbolRootIndex = 116; static const int kEmptySymbolRootIndex = 117;
static const int kJSObjectType = 0xaa; static const int kJSObjectType = 0xaa;
static const int kFirstNonstringType = 0x80; static const int kFirstNonstringType = 0x80;
......
...@@ -176,6 +176,7 @@ namespace internal { ...@@ -176,6 +176,7 @@ namespace internal {
V(constructor_symbol, "constructor") \ V(constructor_symbol, "constructor") \
V(code_symbol, ".code") \ V(code_symbol, ".code") \
V(result_symbol, ".result") \ V(result_symbol, ".result") \
V(dot_for_symbol, ".for.") \
V(catch_var_symbol, ".catch-var") \ V(catch_var_symbol, ".catch-var") \
V(empty_symbol, "") \ V(empty_symbol, "") \
V(eval_symbol, "eval") \ V(eval_symbol, "eval") \
......
...@@ -2842,7 +2842,12 @@ Statement* Parser::ParseForStatement(ZoneStringList* labels, bool* ok) { ...@@ -2842,7 +2842,12 @@ Statement* Parser::ParseForStatement(ZoneStringList* labels, bool* ok) {
// TODO(keuchel): Move the temporary variable to the block scope, after // TODO(keuchel): Move the temporary variable to the block scope, after
// implementing stack allocated block scoped variables. // implementing stack allocated block scoped variables.
Variable* temp = top_scope_->DeclarationScope()->NewTemporary(name); Factory* heap_factory = isolate()->factory();
Handle<String> dot =
heap_factory->NewStringFromAscii(CStrVector(".for."));
Handle<String> tempstr = heap_factory->NewConsString(dot, name);
Handle<String> tempname = heap_factory->LookupSymbol(tempstr);
Variable* temp = top_scope_->DeclarationScope()->NewTemporary(tempname);
VariableProxy* temp_proxy = factory()->NewVariableProxy(temp); VariableProxy* temp_proxy = factory()->NewVariableProxy(temp);
ForInStatement* loop = factory()->NewForInStatement(labels); ForInStatement* loop = factory()->NewForInStatement(labels);
Target target(&this->target_stack_, loop); Target target(&this->target_stack_, loop);
......
...@@ -189,7 +189,7 @@ class Scope: public ZoneObject { ...@@ -189,7 +189,7 @@ class Scope: public ZoneObject {
// Creates a new temporary variable in this scope. The name is only used // Creates a new temporary variable in this scope. The name is only used
// for printing and cannot be used to find the variable. In particular, // for printing and cannot be used to find the variable. In particular,
// the only way to get hold of the temporary is by keeping the Variable* // the only way to get hold of the temporary is by keeping the Variable*
// around. // around. The name should not clash with a legitimate variable names.
Variable* NewTemporary(Handle<String> name); Variable* NewTemporary(Handle<String> name);
// Adds the specific declaration node to the list of declarations in // Adds the specific declaration node to the list of declarations in
......
...@@ -376,7 +376,7 @@ listener_delegate = function(exec_state) { ...@@ -376,7 +376,7 @@ listener_delegate = function(exec_state) {
debug.ScopeType.Global], exec_state); debug.ScopeType.Global], exec_state);
CheckScopeContent({x:'y'}, 0, exec_state); CheckScopeContent({x:'y'}, 0, exec_state);
// The function scope contains a temporary iteration variable. // The function scope contains a temporary iteration variable.
CheckScopeContent({x:'y'}, 1, exec_state); CheckScopeContent({'.for.x':'y'}, 1, exec_state);
}; };
for_loop_1(); for_loop_1();
EndTest(); EndTest();
...@@ -401,7 +401,7 @@ listener_delegate = function(exec_state) { ...@@ -401,7 +401,7 @@ listener_delegate = function(exec_state) {
CheckScopeContent({x:3}, 0, exec_state); CheckScopeContent({x:3}, 0, exec_state);
CheckScopeContent({x:'y'}, 1, exec_state); CheckScopeContent({x:'y'}, 1, exec_state);
// The function scope contains a temporary iteration variable. // The function scope contains a temporary iteration variable.
CheckScopeContent({x:'y'}, 2, exec_state); CheckScopeContent({'.for.x':'y'}, 2, exec_state);
}; };
for_loop_2(); for_loop_2();
EndTest(); EndTest();
......
...@@ -27,5 +27,10 @@ ...@@ -27,5 +27,10 @@
// Flags: --harmony-scoping // Flags: --harmony-scoping
"use strict";
assertThrows("'use strict'; for (let x in x);", ReferenceError); assertThrows("'use strict'; for (let x in x);", ReferenceError);
let s;
for (let pppp in {}) {};
assertThrows(function() { pppp = true }, ReferenceError);
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