Home | History | Annotate | Download | only in x64

Lines Matching full:slot

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