Lines Matching defs:slot
80 static LinkageLocation ForCallerFrameSlot(int32_t slot, MachineType type) {
81 DCHECK_GT(0, slot);
82 return LinkageLocation(STACK_SLOT, slot, type);
85 static LinkageLocation ForCalleeFrameSlot(int32_t slot, MachineType type) {
87 DCHECK(slot >= 0 && slot < LinkageLocation::MAX_STACK_SLOT);
88 return LinkageLocation(STACK_SLOT, slot, type);
429 // relative to callee slot 0, the return address. If there are no parameter
434 // relative to callee slot 0, the return address. If there are no return
435 // slots, returns the offset to the lowest slot of the parameter area.
439 // Returns two 16-bit numbers packed together: (first slot << 16) | num_slots.
597 // A special {OsrValue} index to indicate the context spill slot.