Home | History | Annotate | Download | only in ia32

Lines Matching refs:Variable

219       Variable* var =
257 Variable* arguments = info->scope()->arguments();
426 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const {
615 MemOperand FullCodeGenerator::StackOperand(Variable* var) {
629 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) {
641 void FullCodeGenerator::GetVar(Register dest, Variable* var) {
648 void FullCodeGenerator::SetVar(Variable* var,
688 void FullCodeGenerator::EmitDebugCheckDeclarationContext(Variable* variable) {
689 // The variable in the declaration always resides in the current context.
690 DCHECK_EQ(0, scope()->ContextChainLength(variable->scope()));
705 Variable* variable = proxy->var();
706 switch (variable->location()) {
708 DCHECK(!variable->binding_needs_init());
709 globals_->Add(variable->name(), zone());
719 if (variable->binding_needs_init()) {
721 __ mov(StackOperand(variable),
727 if (variable->binding_needs_init()) {
729 EmitDebugCheckDeclarationContext(variable);
730 __ mov(ContextOperand(esi, variable->index()),
747 Variable* variable = proxy->var();
748 switch (variable->location()) {
750 globals_->Add(variable->name(), zone());
772 __ mov(StackOperand(variable), result_register());
778 EmitDebugCheckDeclarationContext(variable);
780 __ mov(ContextOperand(esi, variable->index()), result_register());
783 Context::SlotOffset(variable->index()),
1027 // Update the 'each' property or variable from the possibly filtered
1081 Variable* var = proxy->var();
1086 Comment cmnt(masm_, "[ Global variable");
1096 Comment cmnt(masm_, var->IsContextSlot() ? "[ Context variable"
1097 : "[ Stack variable");
1338 case VARIABLE:
1369 // variable/property load.
1374 case VARIABLE:
1418 case VARIABLE: {
1597 case VARIABLE: {
1632 Variable* var, MemOperand location) {
1641 void FullCodeGenerator::EmitVariableAssignment(Variable* var, Token::Value op,
2169 Variable* var = proxy->var();
2184 // not really a variable, though we implement it as one. The
2189 // Result of deleting non-property, non-variable reference is true.
2279 if (assign_type == VARIABLE) {
2309 case VARIABLE:
2316 if (assign_type == VARIABLE) {
2336 case VARIABLE:
2381 case VARIABLE:
2412 case VARIABLE: {