use compiler to generate methods and their instructions

This commit is contained in:
Torsten Ruger 2015-10-28 21:37:42 +02:00
parent 99a695907c
commit 191be8d2f6
4 changed files with 33 additions and 33 deletions

View File

@ -12,7 +12,7 @@ module Register
# As we write before we recurse (save a push) we write the number backwards
# arguments: string address , integer
# def utoa context
# utoa_function = MethodSource.create_method(:Integer ,:utoa , [ :Integer ] )
# compiler = Soml::Compiler.new.create_method(:Integer ,:utoa , [ :Integer ] ).init_method
# function.source.receiver = :Integer
# return utoa_function
# # str_addr = utoa_function.receiver
@ -31,8 +31,8 @@ module Register
# end
def putint context
putint_function = MethodSource.create_method(:Integer,:putint , [] )
return putint_function
compiler = Soml::Compiler.new.create_method(:Integer,:putint , [] ).init_method
return compiler.method
# buffer = Parfait::Word.new(" ") # create a buffer
# context.object_space.add_object buffer # and save it (function local variable: a no no)
# int = putint_function.receiver
@ -58,8 +58,8 @@ module Register
# a hand coded version of the fibonachi numbers
# not my hand off course, found in the net http://www.peter-cockerell.net/aalp/html/ch-5.html
def fibo context
fibo_function = MethodSource.create_method(:Integer,:fibo , [] )
return fibo_function
compiler = Soml::Compiler.new.create_method(:Integer,:fibo , [] ).init_method
return compiler.method
# int = fibo_function.receiver
#
# last = fibo_function.new_block("return")

View File

@ -6,58 +6,58 @@ module Register
# it isn't really a function, ie it is jumped to (not called), exits and may not return
# so it is responsible for initial setup
def __init__ context
function = MethodSource.create_method(:Kernel,:__init__ , [])
compiler = Soml::Compiler.new.create_method(:Kernel,:__init__ , [])
# no method enter or return (automatically added), remove
new_start = Label.new(function , "__init__" )
function.instructions = new_start
function.source.set_current new_start
new_start = Label.new("__init__" , "__init__" )
compiler.method.instructions = new_start
compiler.set_current new_start
#Set up the Space as self upon init
space = Parfait::Space.object_space
space_reg = Register.tmp_reg(:Space)
function.source.add_code LoadConstant.new(function, space , space_reg)
compiler.add_code LoadConstant.new("__init__", space , space_reg)
message_ind = Register.resolve_index( :space , :first_message )
# Load the message to new message register (r1)
function.source.add_code Register.get_slot( function , space_reg , message_ind , :new_message)
compiler.add_code Register.get_slot( "__init__" , space_reg , message_ind , :new_message)
# And store the space as the new self (so the call can move it back as self)
function.source.add_code Register.set_slot( function, space_reg , :new_message , :receiver)
compiler.add_code Register.set_slot( "__init__", space_reg , :new_message , :receiver)
# now we are set up to issue a call to the main
Register.issue_call( function , Register.machine.space.get_main)
emit_syscall( function , :exit )
return function
Register.issue_call( compiler , Register.machine.space.get_main)
emit_syscall( compiler , :exit )
return compiler.method
end
def exit context
function = MethodSource.create_method(:Kernel,:exit , [])
return function
compiler = Soml::Compiler.new.create_method(:Kernel,:exit , []).init_method
return compiler.method
ret = RegisterMachine.instance.exit(function)
function.set_return ret
function
end
def emit_syscall function , name
save_message( function )
function.source.add_code Syscall.new(function, name )
restore_message(function)
def emit_syscall compiler , name
save_message( compiler )
compiler.add_code Syscall.new("emit_syscall", name )
restore_message(compiler)
end
# save the current message, as the syscall destroys all context
#
# This relies on linux to save and restore all registers
#
def save_message(function)
def save_message(compiler)
r8 = RegisterValue.new( :r8 , :Message)
function.source.add_code RegisterTransfer.new(function, Register.message_reg , r8 )
compiler.add_code RegisterTransfer.new("save_message", Register.message_reg , r8 )
end
def restore_message(function)
def restore_message(compiler)
r8 = RegisterValue.new( :r8 , :Message)
return_tmp = Register.tmp_reg :Integer
# get the sys return out of the way
function.source.add_code RegisterTransfer.new(function, Register.message_reg , return_tmp )
compiler.add_code RegisterTransfer.new("restore_message", Register.message_reg , return_tmp )
# load the stored message into the base RegisterMachine
function.source.add_code RegisterTransfer.new(function, r8 , Register.message_reg )
compiler.add_code RegisterTransfer.new("restore_message", r8 , Register.message_reg )
# save the return value into the message
function.source.add_code Register.set_slot( function, return_tmp , :message , :return_value )
compiler.add_code Register.set_slot( "restore_message" , return_tmp , :message , :return_value )
# and "unroll" self and frame
end
end

View File

@ -6,8 +6,8 @@ module Register
# main entry point, ie __init__ calls this
# defined here as empty, to be redefined
def main context
function = MethodSource.create_method(:Object , :main , [])
return function
compiler = Soml::Compiler.new.create_method(:Object , :main , []).init_method
return compiler.method
end
end

View File

@ -3,10 +3,10 @@ module Register
module Word
module ClassMethods
def putstring context
function = MethodSource.create_method(:Word , :putstring , [] )
function.source.add_code Register.get_slot( function , :message , :receiver , :new_message )
Kernel.emit_syscall( function , :putstring )
function
compiler = Soml::Compiler.new.create_method(:Word , :putstring , [] ).init_method
compiler.add_code Register.get_slot( "putstring" , :message , :receiver , :new_message )
Kernel.emit_syscall( compiler , :putstring )
compiler.method
end
end
extend ClassMethods