rubyx/lib/arm/arm_machine.rb

106 lines
3.4 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 , first , right
2014-05-18 11:18:57 +02:00
block << cmp( first , right )
Vm::Bool.new
end
def integer_plus block , result , first , right
2014-05-18 11:18:57 +02:00
block << add( result , first , right )
2014-05-14 21:04:03 +02:00
result
end
def integer_minus block , result , first , right
2014-05-18 11:18:57 +02:00
block << sub( result , first , right )
2014-05-14 21:04:03 +02:00
result
end
def integer_load block , first , right
2014-05-18 11:18:57 +02:00
block << mov( first , right )
first
end
2014-05-14 11:02:54 +02:00
def integer_move block , first , right
2014-05-18 11:18:57 +02:00
block << mov( first , right )
first
2014-05-14 11:02:54 +02:00
end
def string_load block , str_lit , reg
block << add( "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 << mov( "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 << call( call.function , {})
call.function.return_type
end
2014-05-03 17:51:47 +02:00
def main_start entry
entry << mov( :fp , right: 0 )
2014-05-03 17:51:47 +02:00
end
def main_exit exit
syscall(exit , 1)
2014-05-14 21:04:03 +02:00
exit
2014-05-03 21:18:04 +02:00
end
def function_entry block, f_name
block << push( [:lr] , {})
end
def function_exit entry , f_name
entry << pop( [:pc] , {})
end
# assumes string in r0 and r1 and moves them along for the syscall
def write_stdout block
2014-05-16 22:33:25 +02:00
block.instance_eval do
mov( :r2 , right: :r1 )
mov( :r1 , right: :r0 )
mov( :r0 , right: 1 ) # 1 == stdout
end
syscall( block , 4 )
2014-05-06 20:36:28 +02:00
end
# the number (a Vm::integer) is (itself) divided by 10, ie overwritten by the result
# and the remainder is overwritten (ie an out argument)
# not really a function, more a macro,
def div10 block, number , remainder
# Note about division: devision is MUCH more expensive than one would have thought
# And coding it is a bit of a mind leap: it's all about finding a a result that gets the
# remainder smaller than an int. i'll post some links sometime. This is from the arm manual
2014-05-16 22:33:25 +02:00
block.instance_eval do
2014-05-18 11:18:57 +02:00
sub( remainder , number , 10 )
sub( number , number , number , shift_lsr: 2)
add( number , number , number , shift_lsr: 4)
add( number , number , number , shift_lsr: 8)
add( number , number , number , shift_lsr: 16)
mov( number , number , shift_lsr: 3)
2014-05-16 22:33:25 +02:00
tmp = Vm::Integer.new( remainder.register + 1)
2014-05-18 11:18:57 +02:00
add( tmp , number , number , shift_lsl: 2)
sub( remainder , remainder , tmp , shift_lsl: 1 , update_status: 1)
add( number , number, 1 , condition_code: :pl )
add( remainder , remainder , 10 , condition_code: :mi )
2014-05-16 22:33:25 +02:00
end
end
def syscall block , num
block << mov( :r7 , right: num )
block << swi( 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