}
+bool ScriptContextTable::LookupLexical(Handle<ScriptContextTable> table,
+ Handle<String> name) {
+ for (int i = 0; i < table->used(); i++) {
+ Handle<Context> context = GetContext(table, i);
+ DCHECK(context->IsScriptContext());
+ Handle<ScopeInfo> scope_info(ScopeInfo::cast(context->extension()));
+ int slot_index = ScopeInfo::LexicalContextSlotIndex(scope_info, name);
+ if (slot_index >= 0) return true;
+ }
+ return false;
+}
+
+
Context* Context::declaration_context() {
Context* current = this;
while (!current->IsFunctionContext() && !current->IsNativeContext() &&
static bool Lookup(Handle<ScriptContextTable> table, Handle<String> name,
LookupResult* result);
+ MUST_USE_RESULT
+ static bool LookupLexical(Handle<ScriptContextTable> table,
+ Handle<String> name);
+
MUST_USE_RESULT
static Handle<ScriptContextTable> Extend(Handle<ScriptContextTable> table,
Handle<Context> script_context);
InitializationFlag* init_flag,
MaybeAssignedFlag* maybe_assigned_flag);
+ static int LexicalContextSlotIndex(Handle<ScopeInfo> scope_info,
+ Handle<String> name);
+
// Lookup the name of a certain context slot by its index.
String* ContextSlotName(int slot_index);
V(ParameterCount) \
V(StackLocalCount) \
V(ContextLocalCount) \
+ V(LexicalContextLocalCount) \
V(ContextGlobalCount) \
V(StrongModeFreeVariableCount)
bool is_const, bool is_function) {
Handle<ScriptContextTable> script_contexts(
global->native_context()->script_context_table());
- ScriptContextTable::LookupResult lookup;
- if (ScriptContextTable::Lookup(script_contexts, name, &lookup) &&
- IsLexicalVariableMode(lookup.mode)) {
+ // We use LookupLexical to limit lookup to lexical variables. As long as
+ // lexical variables are not used extensively, this is a performance win.
+ // TODO(yangguo): reconsider this shortcut.
+ if (ScriptContextTable::LookupLexical(script_contexts, name)) {
return ThrowRedeclarationError(isolate, name);
}
for (int var = 0; var < scope_info->ContextLocalCount(); var++) {
Handle<String> name(scope_info->ContextLocalName(var));
VariableMode mode = scope_info->ContextLocalMode(var);
- ScriptContextTable::LookupResult lookup;
- if (ScriptContextTable::Lookup(script_context, name, &lookup)) {
- if (IsLexicalVariableMode(mode) || IsLexicalVariableMode(lookup.mode)) {
+ if (IsLexicalVariableMode(mode)) {
+ ScriptContextTable::LookupResult lookup;
+ if (ScriptContextTable::Lookup(script_context, name, &lookup)) {
+ return ThrowRedeclarationError(isolate, name);
+ }
+ } else {
+ if (ScriptContextTable::LookupLexical(script_context, name)) {
return ThrowRedeclarationError(isolate, name);
}
}
// Add context locals' info.
DCHECK(index == scope_info->ContextLocalInfoEntriesIndex());
+ bool encountered_lexical = false;
+ int lexical_context_local_count = 0;
for (int i = 0; i < context_local_count; ++i) {
Variable* var = context_locals[i];
uint32_t value =
ContextLocalInitFlag::encode(var->initialization_flag()) |
ContextLocalMaybeAssignedFlag::encode(var->maybe_assigned());
scope_info->set(index++, Smi::FromInt(value));
+ if (encountered_lexical) {
+ // Check that context locals are sorted so that lexicals are at the end.
+ DCHECK(IsLexicalVariableMode(var->mode()));
+ } else if (IsLexicalVariableMode(var->mode())) {
+ lexical_context_local_count = context_local_count - i;
+ }
}
+ scope_info->SetLexicalContextLocalCount(lexical_context_local_count);
+
// Add context globals' info.
DCHECK(index == scope_info->ContextGlobalInfoEntriesIndex());
for (int i = 0; i < context_global_count; ++i) {
const int stack_local_count = 0;
const int context_local_count = 1;
+ const int lexical_context_local_count = 1;
const int context_global_count = 0;
const int strong_mode_free_variable_count = 0;
const bool has_simple_parameters = true;
scope_info->SetParameterCount(parameter_count);
scope_info->SetStackLocalCount(stack_local_count);
scope_info->SetContextLocalCount(context_local_count);
+ scope_info->SetLexicalContextLocalCount(lexical_context_local_count);
scope_info->SetContextGlobalCount(context_global_count);
scope_info->SetStrongModeFreeVariableCount(strong_mode_free_variable_count);
}
+int ScopeInfo::LexicalContextSlotIndex(Handle<ScopeInfo> scope_info,
+ Handle<String> name) {
+ DCHECK(name->IsInternalizedString());
+ if (scope_info->length() > 0) {
+ // TODO(yangguo): consider using the context slot cache here.
+ int total_count = scope_info->ContextLocalCount();
+ int lexical_count = scope_info->LexicalContextLocalCount();
+ int non_lexical_count = total_count - lexical_count;
+
+ int start = scope_info->ContextLocalNameEntriesIndex();
+ int end = start + total_count;
+ int lexical_start = start + non_lexical_count;
+
+ for (int i = lexical_start; i < end; ++i) {
+ if (*name == scope_info->get(i)) {
+ int var = i - start;
+ DCHECK(IsLexicalVariableMode(scope_info->ContextLocalMode(var)));
+ return Context::MIN_CONTEXT_SLOTS + var;
+ }
+ }
+ }
+ return -1;
+}
+
+
String* ScopeInfo::ContextSlotName(int slot_index) {
int const var = slot_index - Context::MIN_CONTEXT_SLOTS;
DCHECK_LE(0, var);
Variable* var() const { return var_; }
int order() const { return order_; }
static int Compare(const VarAndOrder* a, const VarAndOrder* b) {
- return a->order_ - b->order_;
+ // Sort lexical variables to the end of the list.
+ bool a_is_lexical = IsLexicalVariableMode(a->var()->mode());
+ bool b_is_lexical = IsLexicalVariableMode(b->var()->mode());
+ if (a_is_lexical == b_is_lexical) return a->order_ - b->order_;
+ return a_is_lexical ? 1 : -1;
}
private: