2015-05-06 07:38:29 +02:00
|
|
|
module Virtual
|
|
|
|
# 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)
|
2015-06-20 22:49:30 +02:00
|
|
|
# We are not modelling the array here, but the index into it.
|
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: SelfSlot
|
2015-06-20 23:21:42 +02:00
|
|
|
# - a message that will be sent, NextMessageSlot
|
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
|
|
|
|
|
|
|
|
class Slot < Object
|
|
|
|
|
|
|
|
attr_accessor :index , :type , :value
|
|
|
|
|
|
|
|
private #abstract base class
|
|
|
|
|
|
|
|
def initialize index , type , value
|
|
|
|
@index = index
|
|
|
|
@type = type
|
|
|
|
@value = value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
require_relative "message_slot"
|
2015-06-20 22:49:30 +02:00
|
|
|
require_relative "self_slot"
|
|
|
|
require_relative "frame_slot"
|
2015-06-21 12:29:27 +02:00
|
|
|
require_relative "next_message_slot"
|