more splitting of slot code
now constants, still wip
This commit is contained in:
parent
24d7fe25da
commit
1da5cd16c3
49
lib/slot_machine/instruction/constant_definition.rb
Normal file
49
lib/slot_machine/instruction/constant_definition.rb
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
module SlotMachine
|
||||||
|
class ConstantDefinition < SlotDefinition
|
||||||
|
# get the right definition, depending on the object
|
||||||
|
def self.for(object , slots)
|
||||||
|
case object
|
||||||
|
when :message
|
||||||
|
MessageDefinition.new(slots)
|
||||||
|
when Constant
|
||||||
|
ConstantDefinition.new(object , slots)
|
||||||
|
else
|
||||||
|
SlotDefinition.new(object,slots)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def initialize( object , slots)
|
||||||
|
super(object, slots)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def known_name
|
||||||
|
known_object.class.short_name
|
||||||
|
end
|
||||||
|
|
||||||
|
# load the slots into a register
|
||||||
|
# the code is added to compiler
|
||||||
|
# the register returned
|
||||||
|
def to_register(compiler, source)
|
||||||
|
if known_object.respond_to?(:ct_type)
|
||||||
|
type = known_object.ct_type
|
||||||
|
else
|
||||||
|
type = :Object
|
||||||
|
end
|
||||||
|
right = compiler.use_reg( type )
|
||||||
|
case known_object
|
||||||
|
when Constant
|
||||||
|
parfait = known_object.to_parfait(compiler)
|
||||||
|
const = Risc.load_constant(source, parfait , right)
|
||||||
|
compiler.add_code const
|
||||||
|
if slots.length == 1
|
||||||
|
raise "only type allowed for constants, not #{slots[0]}" unless slots[0] == :type
|
||||||
|
compiler.add_code Risc::SlotToReg.new( source , right , Parfait::TYPE_INDEX, right)
|
||||||
|
end
|
||||||
|
raise "Can't have slots into Constants #{slots}" if slots.length > 1
|
||||||
|
end
|
||||||
|
return const.register
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
@ -6,7 +6,7 @@ module SlotMachine
|
|||||||
end
|
end
|
||||||
|
|
||||||
def known_name
|
def known_name
|
||||||
known_object
|
:message
|
||||||
end
|
end
|
||||||
|
|
||||||
# load the slots into a register
|
# load the slots into a register
|
||||||
|
@ -20,6 +20,8 @@ module SlotMachine
|
|||||||
case object
|
case object
|
||||||
when :message
|
when :message
|
||||||
MessageDefinition.new(slots)
|
MessageDefinition.new(slots)
|
||||||
|
when Constant
|
||||||
|
ConstantDefinition.new(object , slots)
|
||||||
else
|
else
|
||||||
SlotDefinition.new(object,slots)
|
SlotDefinition.new(object,slots)
|
||||||
end
|
end
|
||||||
@ -45,7 +47,7 @@ module SlotMachine
|
|||||||
|
|
||||||
def known_name
|
def known_name
|
||||||
case known_object
|
case known_object
|
||||||
when Constant , Parfait::Object
|
when Parfait::Object
|
||||||
known_object.class.short_name
|
known_object.class.short_name
|
||||||
when Risc::Label
|
when Risc::Label
|
||||||
known_object.to_s
|
known_object.to_s
|
||||||
@ -58,24 +60,13 @@ module SlotMachine
|
|||||||
# the code is added to compiler
|
# the code is added to compiler
|
||||||
# the register returned
|
# the register returned
|
||||||
def to_register(compiler, source)
|
def to_register(compiler, source)
|
||||||
if known_object.respond_to?(:ct_type)
|
if(known_object.respond_to?(:get_type))
|
||||||
type = known_object.ct_type
|
|
||||||
elsif(known_object.respond_to?(:get_type))
|
|
||||||
type = known_object.get_type
|
type = known_object.get_type
|
||||||
else
|
else
|
||||||
type = :Object
|
type = :Object
|
||||||
end
|
end
|
||||||
right = compiler.use_reg( type )
|
right = compiler.use_reg( type )
|
||||||
case known_object
|
case known_object
|
||||||
when Constant
|
|
||||||
parfait = known_object.to_parfait(compiler)
|
|
||||||
const = Risc.load_constant(source, parfait , right)
|
|
||||||
compiler.add_code const
|
|
||||||
if slots.length == 1
|
|
||||||
raise "only type allowed for constants, not #{slots[0]}" unless slots[0] == :type
|
|
||||||
compiler.add_code Risc::SlotToReg.new( source , right , Parfait::TYPE_INDEX, right)
|
|
||||||
end
|
|
||||||
raise "Can't have slots into Constants #{slots}" if slots.length > 1
|
|
||||||
when Parfait::Object , Risc::Label
|
when Parfait::Object , Risc::Label
|
||||||
const = Risc.load_constant(source, known_object , right)
|
const = Risc.load_constant(source, known_object , right)
|
||||||
compiler.add_code const
|
compiler.add_code const
|
||||||
|
@ -82,3 +82,4 @@ module SlotMachine
|
|||||||
end
|
end
|
||||||
require_relative "slot_definition"
|
require_relative "slot_definition"
|
||||||
require_relative "message_definition"
|
require_relative "message_definition"
|
||||||
|
require_relative "constant_definition"
|
||||||
|
16
out.txt
16
out.txt
@ -1,16 +0,0 @@
|
|||||||
[/home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
||||||
[/home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
||||||
/home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
||||||
test/slot_machine/instruction/test_slot_definition3.rb
|
|
||||||
/slot_machine/instruction/test_slot_definition3.rb
|
|
||||||
/slot_machine/instruction/test_slot_definition3.rb
|
|
||||||
test/slot_machine/instruction/test_slot_definition3.rb
|
|
||||||
test/slot_machine/instruction/test_slot_definition2.rb
|
|
||||||
home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
||||||
home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
||||||
home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
||||||
/home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
||||||
test/slot_machine/instruction/test_slot_definition3.rb
|
|
||||||
/home/torsten/ruby-x/rubyx/lib/sol/if_statement.rb:35
|
|
||||||
test/slot_machine/instruction/test_slot_definition.rb
|
|
||||||
/home/torsten/ruby-x/rubyx/test/slot_machine/instruction/test_slot_definition.rb:20
|
|
@ -23,9 +23,6 @@ module Sol
|
|||||||
def test_receiver_move_class
|
def test_receiver_move_class
|
||||||
assert_equal ArgumentTransfer, @ins.next(1).class
|
assert_equal ArgumentTransfer, @ins.next(1).class
|
||||||
end
|
end
|
||||||
def test_receiver_move
|
|
||||||
assert_equal SlotDefinition, @ins.next.receiver.class
|
|
||||||
end
|
|
||||||
def test_receiver
|
def test_receiver
|
||||||
type , value = receiver
|
type , value = receiver
|
||||||
assert_equal type, @ins.next.receiver.known_object.class
|
assert_equal type, @ins.next.receiver.known_object.class
|
||||||
|
@ -13,6 +13,9 @@ module Sol
|
|||||||
def test_call_has_right_method
|
def test_call_has_right_method
|
||||||
assert_equal :div4, @ins.next(2).method.name
|
assert_equal :div4, @ins.next(2).method.name
|
||||||
end
|
end
|
||||||
|
def test_receiver_move
|
||||||
|
assert_equal ConstantDefinition, @ins.next.receiver.class
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -23,5 +23,9 @@ module Sol
|
|||||||
check_array [MessageSetup,ArgumentTransfer,SimpleCall, SlotLoad, ReturnJump,
|
check_array [MessageSetup,ArgumentTransfer,SimpleCall, SlotLoad, ReturnJump,
|
||||||
Label, ReturnSequence , Label] , @ins
|
Label, ReturnSequence , Label] , @ins
|
||||||
end
|
end
|
||||||
|
def test_receiver_move
|
||||||
|
assert_equal ConstantDefinition, @ins.next.receiver.class
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user