rubyx/stash/slot.rb

21 lines
774 B
Ruby
Raw Normal View History

2015-10-22 17:16:29 +02:00
module Register
2015-05-06 07:38:29 +02:00
# A slot is a slot in an object. It is the storage location for a value.
# (Remember, values are typed)
# From a memory perspective a slot is an index into an array (the object)
# The mapping into arrays is a straightforward matter, but happens in the
# next level down, the register machine.
2015-05-06 07:38:29 +02:00
# Four known objects exist and those correspond to subclasses:
# - the message that has been received: MessageSlot
# - the frame of the method that is executing (local variables): FrameSlot
# - self as an object: SelfsSlot
2015-06-29 19:55:45 +02:00
# - a message that will be sent, NewMessageSlot
2015-05-06 07:38:29 +02:00
# additionally frame, self and return are slots in Message and NewMessage
# Slot has a lot of small subclasses
# Names for the slots avoid indexes
end