Home | History | Annotate | Download | only in ia32

Lines Matching full:slot

55   enum Type { UNLOADED = -2, ILLEGAL = -1, SLOT = 0, NAMED = 1, KEYED = 2 };
75 return (type_ < SLOT) ? 0 : type_;
79 bool is_slot() const { return type_ == SLOT; }
93 // Like GetValue except that the slot is expected to be written to before
399 Operand SlotOperand(Slot* slot, Register tmp);
401 Operand ContextSlotOperandCheckExtensions(Slot* slot,
422 // Read a value from a slot and leave it on top of the expression stack.
423 Result LoadFromSlot(Slot* slot, TypeofState typeof_state);
424 Result LoadFromSlotCheckForArguments(Slot* slot, TypeofState typeof_state);
425 Result LoadFromGlobalSlotCheckExtensions(Slot* slot,
429 // Store the value on top of the expression stack into a slot, leaving the
431 void StoreToSlot(Slot* slot, InitState init_state);