rubyx/lib/arm/arm_machine.rb

78 lines
2.3 KiB
Ruby
Raw Normal View History

2014-05-13 16:06:42 +02:00
require "vm/c_machine"
2014-05-03 21:18:04 +02:00
require_relative "stack_instruction"
require_relative "logic_instruction"
require_relative "move_instruction"
require_relative "compare_instruction"
2014-05-03 21:18:04 +02:00
require_relative "memory_instruction"
require_relative "call_instruction"
require_relative "constants"
module Arm
2014-05-13 16:06:42 +02:00
class ArmMachine < Vm::CMachine
def integer_less_or_equal block , left , right
block.add_code cmp(:left => left , :right => right )
Vm::Bool.new
end
def integer_plus block , left , right
block.add_code add(:left => left , :right => right )
left
end
def integer_minus block , left , right
block.add_code sub(:left => left , :right => right )
left
end
def integer_load block , left , right
reg = "r#{left.register}".to_sym
block.add_code mov( :left => reg , :right => right )
left
end
def string_load block , str_lit , reg
block.add_code add( :left => "r#{reg}".to_sym , :extra => str_lit ) #right is pc, implicit
2014-05-06 20:36:28 +02:00
#second arg is a hack to get the stringlength without coding
block.add_code mov( :left => "r#{reg+1}".to_sym , :right => str_lit.length )
str_lit
2014-05-06 20:36:28 +02:00
end
def function_call into , call
raise "Not CallSite #{call.inspect}" unless call.is_a? Vm::CallSite
raise "Not linked #{call.inspect}" unless call.function
into.add_code call( :left => call.function )
call.function.return_type
end
2014-05-03 17:51:47 +02:00
def main_start entry
entry.add_code mov( :left => :fp , :right => 0 )
2014-05-03 17:51:47 +02:00
end
def main_exit exit
syscall(exit , 1)
2014-05-03 21:18:04 +02:00
end
def function_entry block, f_name
# entry.add_code push( :regs => [:lr] )
block
end
def function_exit entry , f_name
2014-05-06 20:36:28 +02:00
entry.add_code mov( :left => :pc , :right => :lr )
end
# assumes string in r0 and r1 and moves them along for the syscall
def write_stdout block
block.add_code mov( :left => :r2 , :right => :r1 )
block.add_code mov( :left => :r1 , :right => :r0 )
block.add_code mov( :left => :r0 , :right => 1 ) # 1 == stdout
syscall( block , 4 )
2014-05-06 20:36:28 +02:00
end
2014-05-06 20:36:28 +02:00
private
def syscall block , num
block.add_code mov( :left => :r7 , :right => num )
block.add_code swi( :left => 0 )
Vm::Integer.new(0) #small todo, is this actually correct for all (that they return int)
2014-05-03 17:51:47 +02:00
end
2014-05-06 20:36:28 +02:00
end
end