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-13 17:21:24 +02:00
|
|
|
Vm::CMachine.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-13 17:21:24 +02:00
|
|
|
Vm::CMachine.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
|
|
|
|
Vm::CMachine.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
|
|
|
|
Vm::CMachine.instance.function_exit block , f_name
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
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-05-15 15:54:23 +02:00
|
|
|
def putstring context
|
2014-05-13 20:06:12 +02:00
|
|
|
function = Vm::Function.new(:putstring , [Vm::Integer , Vm::Integer ] )
|
|
|
|
block = function.body
|
|
|
|
# should be another level of indirection, ie write(io,str)
|
|
|
|
ret = Vm::CMachine.instance.write_stdout(block)
|
|
|
|
function.return_type = ret
|
|
|
|
function
|
2014-05-06 11:42:43 +02:00
|
|
|
end
|
2014-05-15 15:54:23 +02:00
|
|
|
|
|
|
|
def putint context
|
|
|
|
function = Vm::Function.new(:putint , [Vm::Integer , Vm::Integer ] )
|
|
|
|
block = function.body
|
|
|
|
buffer = Vm::StringConstant.new(" ")
|
|
|
|
context.program.add_object buffer
|
2014-05-16 18:55:46 +02:00
|
|
|
str_addr = Vm::Integer.new(0) # address of the
|
|
|
|
context.str_addr = str_addr
|
2014-05-16 22:33:25 +02:00
|
|
|
reg1 = Vm::Integer.new(1)
|
2014-05-16 18:55:46 +02:00
|
|
|
itos_fun = context.program.get_or_create_function(:utoa)
|
2014-05-16 22:33:25 +02:00
|
|
|
block.instance_eval do
|
2014-05-18 11:30:49 +02:00
|
|
|
mov( reg1 , str_addr ) #move arg up
|
2014-05-18 11:18:57 +02:00
|
|
|
add( str_addr , buffer ,nil ) # string to write to
|
|
|
|
add( str_addr , str_addr , (buffer.length-3))
|
2014-05-18 11:34:53 +02:00
|
|
|
call( itos_fun )
|
2014-05-16 22:08:45 +02:00
|
|
|
# And now we "just" have to print it, using the write_stdout
|
2014-05-18 11:30:49 +02:00
|
|
|
add( str_addr , buffer , nil ) # string to write to
|
|
|
|
mov( reg1 , buffer.length )
|
2014-05-16 22:33:25 +02:00
|
|
|
end
|
2014-05-16 22:08:45 +02:00
|
|
|
ret = Vm::CMachine.instance.write_stdout(block)
|
2014-05-15 15:54:23 +02:00
|
|
|
function
|
|
|
|
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-16 18:55:46 +02:00
|
|
|
def utoa context
|
|
|
|
function = Vm::Function.new(:utoa , [Vm::Integer , Vm::Integer ] )
|
|
|
|
block = function.body
|
|
|
|
str_addr = context.str_addr
|
|
|
|
number = Vm::Integer.new(str_addr.register + 1)
|
|
|
|
remainder = Vm::Integer.new( number.register + 1)
|
|
|
|
Vm::CMachine.instance.div10( block , number , remainder )
|
2014-05-16 22:24:19 +02:00
|
|
|
# make char out of digit (by using ascii encoding) 48 == "0"
|
2014-05-16 22:33:25 +02:00
|
|
|
block.instance_eval do
|
2014-05-18 11:18:57 +02:00
|
|
|
add( remainder , remainder , 48 )
|
2014-05-16 22:33:25 +02:00
|
|
|
strb( remainder, right: str_addr )
|
2014-05-18 11:18:57 +02:00
|
|
|
sub( str_addr, str_addr , 1 )
|
|
|
|
cmp( number , 0 )
|
2014-05-18 11:34:53 +02:00
|
|
|
callne( function )
|
2014-05-16 22:33:25 +02:00
|
|
|
end
|
2014-05-16 18:55:46 +02:00
|
|
|
return 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
|