Lines Matching refs:Slot
405 int FullCodeGenerator::SlotOffset(Slot* slot) { in SlotOffset()
411 case Slot::PARAMETER: in SlotOffset()
414 case Slot::LOCAL: in SlotOffset()
417 case Slot::CONTEXT: in SlotOffset()
418 case Slot::LOOKUP: in SlotOffset()
531 Slot* slot = var->AsSlot(); in VisitDeclarations()
536 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) { in VisitDeclarations()
552 Slot* slot = var->AsSlot(); in VisitDeclarations()
554 if ((slot == NULL || slot->type() != Slot::LOOKUP) && var->is_global()) { in VisitDeclarations()
1178 Slot* variable_slot = catch_var->AsSlot(); in VisitTryCatchStatement()
1180 ASSERT_EQ(Slot::LOCAL, variable_slot->type()); in VisitTryCatchStatement()