2014-05-06 11:47:07 +02:00
|
|
|
module Core
|
2014-05-06 11:42:43 +02:00
|
|
|
class Kernel
|
|
|
|
|
|
|
|
#there are no Kernel instances, only class methods.
|
2014-05-06 20:36:28 +02:00
|
|
|
# We use this module syntax to avoid the (ugly) self (also eases searching).
|
2014-05-06 11:42:43 +02:00
|
|
|
module ClassMethods
|
2014-05-13 17:21:24 +02:00
|
|
|
def main_start block
|
2014-05-06 11:42:43 +02:00
|
|
|
#TODO extract args into array of strings
|
2014-05-21 18:43:46 +02:00
|
|
|
Vm::RegisterMachine.instance.main_start block
|
2014-05-14 09:47:30 +02:00
|
|
|
block
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-05-13 17:21:24 +02:00
|
|
|
def main_exit block
|
2014-05-06 11:42:43 +02:00
|
|
|
# Machine.exit mov r7 , 0 + swi 0
|
2014-05-21 18:43:46 +02:00
|
|
|
Vm::RegisterMachine.instance.main_exit block
|
2014-05-14 09:47:30 +02:00
|
|
|
block
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-05-13 17:21:24 +02:00
|
|
|
def function_entry block , f_name
|
2014-05-21 18:43:46 +02:00
|
|
|
Vm::RegisterMachine.instance.function_entry block , f_name
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-05-13 17:21:24 +02:00
|
|
|
def function_exit block , f_name
|
2014-05-21 18:43:46 +02:00
|
|
|
Vm::RegisterMachine.instance.function_exit block , f_name
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-06-01 13:24:54 +02:00
|
|
|
|
2014-05-13 20:06:12 +02:00
|
|
|
#TODO this is in the wrong place. It is a function that returns a function object
|
|
|
|
# while all other methods add their code into some block. --> kernel
|
2014-06-07 22:22:32 +02:00
|
|
|
def putstring context
|
|
|
|
function = Vm::Function.new(:putstring , Vm::Integer , [] )
|
2014-05-13 20:06:12 +02:00
|
|
|
block = function.body
|
|
|
|
# should be another level of indirection, ie write(io,str)
|
2014-05-21 18:43:46 +02:00
|
|
|
ret = Vm::RegisterMachine.instance.write_stdout(block)
|
2014-05-25 07:43:07 +02:00
|
|
|
function.set_return ret
|
2014-05-13 20:06:12 +02:00
|
|
|
function
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-05-15 15:54:23 +02:00
|
|
|
|
2014-06-06 20:49:03 +02:00
|
|
|
def putint context
|
|
|
|
putint_function = Vm::Function.new(:putint , Vm::Integer , [] , Vm::Integer )
|
2014-05-19 11:18:01 +02:00
|
|
|
buffer = Vm::StringConstant.new(" ") # create a buffer
|
2014-05-31 11:52:29 +02:00
|
|
|
context.object_space.add_object buffer # and save it (function local variable: a no no)
|
2014-06-07 16:59:44 +02:00
|
|
|
int = putint_function.receiver
|
2014-05-21 18:06:21 +02:00
|
|
|
moved_int = putint_function.new_local
|
2014-05-31 15:19:44 +02:00
|
|
|
utoa = context.object_space.get_or_create_class(:Object).get_or_create_function(:utoa)
|
2014-06-07 23:56:40 +02:00
|
|
|
body = putint_function.body
|
|
|
|
body.mov( moved_int , int ) #move arg up
|
|
|
|
#body.a buffer => int # string to write to
|
2014-05-19 14:44:12 +02:00
|
|
|
|
2014-06-07 23:56:40 +02:00
|
|
|
body.add( int , buffer ,nil ) # string to write to
|
|
|
|
body.add(int , int , buffer.length - 3)
|
|
|
|
body.call( utoa )
|
|
|
|
after = body.new_block("#{body.name}_a")
|
|
|
|
body.insert_at after
|
2014-05-16 22:08:45 +02:00
|
|
|
# And now we "just" have to print it, using the write_stdout
|
2014-06-07 23:56:40 +02:00
|
|
|
after.add( int , buffer , nil ) # string to write to
|
|
|
|
after.mov( moved_int , buffer.length )
|
|
|
|
Vm::RegisterMachine.instance.write_stdout(after)
|
2014-05-19 11:18:01 +02:00
|
|
|
putint_function
|
2014-05-15 15:54:23 +02:00
|
|
|
end
|
2014-05-16 18:55:46 +02:00
|
|
|
|
2014-05-16 22:24:19 +02:00
|
|
|
# The conversion to base10 is quite a bit more complicated than i thought. The bulk of it is in div10
|
|
|
|
# We set up variables, do the devision and write the result to the string
|
|
|
|
# then check if were done and recurse if neccessary
|
|
|
|
# As we write before we recurse (save a push) we write the number backwards
|
2014-05-19 11:18:01 +02:00
|
|
|
# arguments: string address , integer
|
2014-05-16 18:55:46 +02:00
|
|
|
def utoa context
|
2014-06-06 20:49:03 +02:00
|
|
|
utoa_function = Vm::Function.new(:utoa , Vm::Integer , [ Vm::Integer ] , Vm::Integer )
|
2014-06-07 16:59:44 +02:00
|
|
|
str_addr = utoa_function.receiver
|
|
|
|
number = utoa_function.args.first
|
2014-05-21 18:06:21 +02:00
|
|
|
remainder = utoa_function.new_local
|
2014-05-21 18:43:46 +02:00
|
|
|
Vm::RegisterMachine.instance.div10( utoa_function.body , number , remainder )
|
2014-05-16 22:24:19 +02:00
|
|
|
# make char out of digit (by using ascii encoding) 48 == "0"
|
2014-06-07 23:56:40 +02:00
|
|
|
body = utoa_function.body
|
|
|
|
body.add(remainder , remainder , 48)
|
|
|
|
body.strb( remainder, str_addr )
|
|
|
|
body.sub( str_addr, str_addr , 1 )
|
|
|
|
body.cmp( number , 0 )
|
|
|
|
body.callne( utoa_function )
|
2014-05-19 11:18:01 +02:00
|
|
|
return utoa_function
|
2014-05-16 18:55:46 +02:00
|
|
|
end
|
2014-05-19 16:32:41 +02:00
|
|
|
|
2014-05-25 12:34:06 +02:00
|
|
|
# testing method, hand coded fibo, expects arg in 1
|
|
|
|
# result comes in 7
|
2014-05-19 16:32:41 +02:00
|
|
|
# a hand coded version of the fibonachi numbers
|
|
|
|
# not my hand off course, found in the net from a basic introduction
|
|
|
|
def fibo context
|
2014-06-06 20:49:03 +02:00
|
|
|
fibo_function = Vm::Function.new(:fibo , Vm::Integer , [] , Vm::Integer )
|
2014-06-07 16:59:44 +02:00
|
|
|
result = fibo_function.return_type
|
|
|
|
int = fibo_function.receiver
|
2014-05-21 18:27:27 +02:00
|
|
|
count = fibo_function.new_local
|
|
|
|
f1 = fibo_function.new_local
|
|
|
|
f2 = fibo_function.new_local
|
2014-06-07 23:56:40 +02:00
|
|
|
body = fibo_function.body
|
2014-05-21 11:47:40 +02:00
|
|
|
|
2014-06-07 23:56:40 +02:00
|
|
|
body.cmp int , 1
|
|
|
|
body.mov( result, int , condition_code: :le)
|
|
|
|
body.mov( :pc , :lr , condition_code: :le)
|
|
|
|
body.push [ count , f1 , f2 , :lr]
|
|
|
|
body.mov f1 , 1
|
|
|
|
body.mov f2 , 0
|
|
|
|
body.sub count , int , 2
|
2014-05-21 11:47:40 +02:00
|
|
|
|
2014-06-07 16:59:44 +02:00
|
|
|
l = fibo_function.body.new_block("loop")
|
|
|
|
|
|
|
|
l.add f1 , f1 , f2
|
|
|
|
l.sub f2 , f1 , f2
|
|
|
|
l.sub count , count , 1 , set_update_status: 1
|
2014-05-25 12:34:06 +02:00
|
|
|
l.bpl( l )
|
|
|
|
l.mov( result , f1 )
|
|
|
|
fibo_function.set_return result
|
2014-05-21 11:47:40 +02:00
|
|
|
l.pop [ count , f1 , f2 , :pc]
|
2014-05-19 16:32:41 +02:00
|
|
|
fibo_function
|
|
|
|
end
|
|
|
|
|
2014-05-02 07:02:25 +02:00
|
|
|
end
|
2014-05-06 11:42:43 +02:00
|
|
|
|
|
|
|
extend ClassMethods
|
2014-05-02 07:02:25 +02:00
|
|
|
end
|
|
|
|
end
|