rubyx/lib/parfait/message.rb

71 lines
2.0 KiB
Ruby
Raw Normal View History

2014-08-05 14:55:24 +02:00
# A message is what is created when a message is sent. Args and stuff are packed up in to a
# Message and the Message is activated (by swapping it into the machine).
# Part of the housekeeping (see attributes) makes messages a double linked list (next_message and
2018-03-14 15:59:51 +01:00
# caller) , and maybe surprisingly this means that we can create all messages at compile-time
# and link them up and never have to touch that list again.
2018-03-14 15:59:51 +01:00
# All the args and receiver data changes, but the list of messages stays constant
# (a pleasant stupor while we ignore closures and longer extended frames ).
module Parfait
class Message < Object
2019-09-09 23:18:20 +02:00
attr_reader :next_message, :receiver
attr_reader :return_address, :return_value
attr_reader :caller , :method
2019-09-09 23:18:20 +02:00
attr_reader :arguments_given, :arg1 , :arg2, :arg3, :arg4, :arg5, :arg6
attr_reader :locals_used, :local1 , :local2, :local3, :local4, :local5, :local6 ,:local7
attr_reader :local8 , :local9 ,:local10, :local11 , :local12, :local13, :local14
def self.type_length
2019-09-09 23:18:20 +02:00
30
end
def self.memory_size
32
end
def self.args_start_at
Parfait.object_space.get_type_by_class_name(:Message).variable_index(:arguments_given)
end
def self.locals_start_at
Parfait.object_space.get_type_by_class_name(:Message).variable_index(:locals_used)
end
def initialize( )
2015-06-28 21:02:07 +02:00
super()
@locals_used = Parfait::Integer.new(0)
@arguments_given = Parfait::Integer.new(0)
2015-06-28 21:02:07 +02:00
end
public :initialize
2015-06-28 21:02:07 +02:00
def set_receiver(rec)
@receiver = rec
end
def set_caller(caller)
@caller = caller
end
def get_type_for(name)
index = @type.get_index(name)
get_at(index)
end
def method_name
return "" unless @method
return "" unless @method == NilClass
@method.name
end
2018-07-04 07:28:29 +02:00
def to_s
"Message:#{method_name}(#{@arguments_given})"
end
def _set_next_message(nekst)
@next_message = nekst
end
def _set_caller(prev)
@caller = prev
2018-07-04 07:28:29 +02:00
end
2014-08-05 14:55:24 +02:00
end
end