Home | History | Annotate | Download | only in ia32

Lines Matching refs:scope

130     int locals_count = scope()->num_stack_slots();
144 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
161 int num_parameters = scope()->num_parameters();
163 Slot* slot = scope()->parameter(i)->AsSlot();
181 Variable* arguments = scope()->arguments();
191 int offset = scope()->num_parameters() * kPointerSize;
195 __ SafePush(Immediate(Smi::FromInt(scope()->num_parameters())));
205 Variable* arguments_shadow = scope()->arguments_shadow();
219 if (scope()->HasIllegalRedeclaration()) {
221 scope()->VisitIllegalRedeclaration(this);
227 if (scope()->is_function_scope() && scope()->function() != NULL) {
228 EmitDeclaration(scope()->function(), Variable::CONST, NULL);
230 VisitDeclarations(scope()->declarations());
319 int arguments_bytes = (scope()->num_parameters() + 1) * kPointerSize;
588 scope()->ContextChainLength(slot->var()->scope());
676 ASSERT_EQ(0, scope()->ContextChainLength(variable->scope()));
1034 scope()->is_function_scope() &&
1064 Scope* s = scope();
1079 // If no outer scope calls eval, we do not need to check more
1080 // context extensions. If we have reached an eval scope, we check
1127 for (Scope* s = scope(); s != slot->var()->scope(); s = s->outer_scope()) {
1160 // perform a runtime call for all variables in the scope
1848 // scope. However, unlike var initializers, const initializers are able
1850 // context. We thus bypass the normal static scope lookup.
2027 { PreservePositionScope scope(masm()->positions_recorder());
2061 { PreservePositionScope scope(masm()->positions_recorder());
2084 { PreservePositionScope scope(masm()->positions_recorder());
2111 __ push(Operand(ebp, (2 + scope()->num_parameters()) * kPointerSize));
2198 { PreservePositionScope scope(masm()->positions_recorder());
2238 { PreservePositionScope scope(masm()->positions_recorder());
2271 { PreservePositionScope scope(masm()->positions_recorder());
2278 { PreservePositionScope scope(masm()->positions_recorder());
2658 __ SafeSet(eax, Immediate(Smi::FromInt(scope()->num_parameters())));
2670 __ SafeSet(eax, Immediate(Smi::FromInt(scope()->num_parameters())));
2791 CpuFeatures::Scope fscope(SSE2);