2014-05-21 18:43:46 +02:00
|
|
|
require "vm/register_machine"
|
2014-05-03 21:18:04 +02:00
|
|
|
require_relative "stack_instruction"
|
|
|
|
require_relative "logic_instruction"
|
2014-05-10 14:34:05 +02:00
|
|
|
require_relative "move_instruction"
|
|
|
|
require_relative "compare_instruction"
|
2014-05-03 21:18:04 +02:00
|
|
|
require_relative "memory_instruction"
|
|
|
|
require_relative "call_instruction"
|
2014-05-14 09:47:30 +02:00
|
|
|
require_relative "constants"
|
2014-05-03 14:13:15 +02:00
|
|
|
|
|
|
|
module Arm
|
2014-05-21 18:43:46 +02:00
|
|
|
class ArmMachine < Vm::RegisterMachine
|
2014-06-10 12:29:01 +02:00
|
|
|
# The constants are here for readablility, the code uses access functions below
|
|
|
|
RETURN_REG = :r0
|
|
|
|
TYPE_REG = :r1
|
|
|
|
RECEIVER_REG = :r2
|
|
|
|
|
|
|
|
def return_register
|
|
|
|
RETURN_REG
|
|
|
|
end
|
|
|
|
def type_register
|
|
|
|
TYPE_REG
|
|
|
|
end
|
|
|
|
def receiver_register
|
|
|
|
RECEIVER_REG
|
|
|
|
end
|
2014-05-13 15:24:19 +02:00
|
|
|
|
2014-05-25 07:43:07 +02:00
|
|
|
def integer_equals block , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code cmp( left , right )
|
2014-05-25 07:43:07 +02:00
|
|
|
Vm::BranchCondition.new :eq
|
|
|
|
end
|
2014-05-18 11:34:53 +02:00
|
|
|
def integer_less_or_equal block , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code cmp( left , right )
|
2014-05-22 20:38:57 +02:00
|
|
|
Vm::BranchCondition.new :le
|
|
|
|
end
|
2014-05-28 19:10:16 +02:00
|
|
|
def integer_greater_or_equal block , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code cmp( left , right )
|
2014-05-28 19:10:16 +02:00
|
|
|
Vm::BranchCondition.new :ge
|
|
|
|
end
|
2014-05-24 09:41:57 +02:00
|
|
|
def integer_less_than block , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code cmp( left , right )
|
2014-05-24 09:41:57 +02:00
|
|
|
Vm::BranchCondition.new :lt
|
|
|
|
end
|
2014-05-22 20:38:57 +02:00
|
|
|
def integer_greater_than block , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code cmp( left , right )
|
2014-05-22 20:38:57 +02:00
|
|
|
Vm::BranchCondition.new :gt
|
2014-05-13 15:24:19 +02:00
|
|
|
end
|
|
|
|
|
2014-06-01 20:03:08 +02:00
|
|
|
# TODO wrong type, should be object_reference. But that needs the actual typing to work
|
|
|
|
def integer_at_index block , result ,left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code ldr( result , left , right )
|
2014-06-01 20:03:08 +02:00
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2014-05-18 11:34:53 +02:00
|
|
|
def integer_plus block , result , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code add( result , left , right )
|
2014-05-14 21:04:03 +02:00
|
|
|
result
|
2014-05-13 15:24:19 +02:00
|
|
|
end
|
|
|
|
|
2014-05-18 11:34:53 +02:00
|
|
|
def integer_minus block , result , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code sub( result , left , right )
|
2014-05-14 21:04:03 +02:00
|
|
|
result
|
2014-05-14 10:33:23 +02:00
|
|
|
end
|
2014-06-02 14:11:48 +02:00
|
|
|
def integer_left_shift block , result , left , right
|
2014-06-10 22:57:56 +02:00
|
|
|
block.add_code mov( result , left , shift_lsr: right )
|
2014-06-02 14:11:48 +02:00
|
|
|
result
|
|
|
|
end
|
2014-05-14 10:33:23 +02:00
|
|
|
|
2014-05-13 20:06:12 +02:00
|
|
|
def function_call into , call
|
2014-05-13 20:15:02 +02:00
|
|
|
raise "Not CallSite #{call.inspect}" unless call.is_a? Vm::CallSite
|
2014-05-13 20:06:12 +02:00
|
|
|
raise "Not linked #{call.inspect}" unless call.function
|
2014-06-10 22:57:56 +02:00
|
|
|
into.add_code call( call.function )
|
2014-05-19 10:28:37 +02:00
|
|
|
raise "No return type for #{call.function.name}" unless call.function.return_type
|
2014-05-13 20:06:12 +02:00
|
|
|
call.function.return_type
|
2014-05-03 14:13:15 +02:00
|
|
|
end
|
2014-05-03 17:51:47 +02:00
|
|
|
|
2014-05-13 17:21:24 +02:00
|
|
|
def main_start entry
|
2014-06-10 22:57:56 +02:00
|
|
|
entry.do_add mov( :fp , 0 )
|
2014-05-03 17:51:47 +02:00
|
|
|
end
|
2014-05-13 17:21:24 +02:00
|
|
|
def main_exit exit
|
2014-05-13 20:06:12 +02:00
|
|
|
syscall(exit , 1)
|
2014-05-14 21:04:03 +02:00
|
|
|
exit
|
2014-05-03 21:18:04 +02:00
|
|
|
end
|
2014-05-13 17:21:24 +02:00
|
|
|
def function_entry block, f_name
|
2014-06-10 22:57:56 +02:00
|
|
|
block.do_add push( [:lr] )
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-05-13 17:21:24 +02:00
|
|
|
def function_exit entry , f_name
|
2014-06-10 22:57:56 +02:00
|
|
|
entry.do_add pop( [:pc] )
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-05-13 20:06:12 +02:00
|
|
|
|
|
|
|
# assumes string in r0 and r1 and moves them along for the syscall
|
|
|
|
def write_stdout block
|
2014-06-10 22:57:56 +02:00
|
|
|
# TODO save and restore r0
|
|
|
|
block.do_add mov( :r0 , 1 ) # 1 == stdout
|
2014-05-13 20:06:12 +02:00
|
|
|
syscall( block , 4 )
|
2014-05-06 20:36:28 +02:00
|
|
|
end
|
2014-05-13 20:06:12 +02:00
|
|
|
|
2014-05-16 16:31:01 +02:00
|
|
|
|
2014-05-15 15:54:23 +02:00
|
|
|
# the number (a Vm::integer) is (itself) divided by 10, ie overwritten by the result
|
|
|
|
# and the remainder is overwritten (ie an out argument)
|
2014-05-16 22:24:19 +02:00
|
|
|
# not really a function, more a macro,
|
2014-05-15 15:54:23 +02:00
|
|
|
def div10 block, number , remainder
|
2014-05-16 22:24:19 +02:00
|
|
|
# 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-21 15:42:36 +02:00
|
|
|
tmp = function.new_local
|
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
|
2014-05-15 15:54:23 +02:00
|
|
|
end
|
|
|
|
|
2014-05-13 20:06:12 +02:00
|
|
|
def syscall block , num
|
2014-06-10 12:29:01 +02:00
|
|
|
#small todo, is this actually correct for all (that they return int)
|
|
|
|
sys_and_ret = Vm::Integer.new( Vm::RegisterMachine.instance.return_register )
|
2014-06-10 22:57:56 +02:00
|
|
|
block.do_add mov( sys_and_ret , num )
|
|
|
|
block.do_add swi( 0 )
|
|
|
|
block.do_add mov( sys_and_ret , return_register ) # syscall returns in r0, more to our return
|
2014-05-25 09:57:56 +02:00
|
|
|
#todo should write type into r0 according to syscall
|
|
|
|
sys_and_ret
|
2014-05-03 17:51:47 +02:00
|
|
|
end
|
2014-05-06 20:36:28 +02:00
|
|
|
|
2014-05-03 14:13:15 +02:00
|
|
|
end
|
|
|
|
end
|