checkpointing on the mad road to register allocation
This commit is contained in:
parent
b0302948dd
commit
f6711ea49c
@ -31,45 +31,45 @@ module Arm
|
||||
end
|
||||
end
|
||||
|
||||
def integer_less_or_equal left , right
|
||||
cmp(:left => left , :right => right )
|
||||
def integer_less_or_equal block , left , right
|
||||
block.add_code cmp(:left => left , :right => right )
|
||||
Vm::Bool.new
|
||||
end
|
||||
|
||||
def integer_plus left , right
|
||||
add(:left => left , :right => right )
|
||||
def integer_plus block , left , right
|
||||
block.add_code add(:left => left , :right => right )
|
||||
left
|
||||
end
|
||||
|
||||
def word_load value , reg
|
||||
raise "not a register :#{reg}:" unless reg.class == Symbol
|
||||
mov( :left => reg , :right => value )
|
||||
def integer_load block , left , right
|
||||
reg = "r#{left.register}".to_sym
|
||||
block.add_code mov( :left => reg , :right => right )
|
||||
left
|
||||
end
|
||||
def string_load str_lit , reg
|
||||
[ add( :left => "r#{reg}".to_sym , :extra => str_lit ) , #right is pc, implicit
|
||||
def string_load block , str_lit , reg
|
||||
block.add_code add( :left => "r#{reg}".to_sym , :extra => str_lit ) #right is pc, implicit
|
||||
#second arg is a hack to get the stringlength without coding
|
||||
mov( :left => "r#{reg+1}".to_sym , :right => str_lit.length ) ]
|
||||
block.add_code mov( :left => "r#{reg+1}".to_sym , :right => str_lit.length )
|
||||
str_lit
|
||||
end
|
||||
|
||||
def function_call call
|
||||
raise "Not FunctionCall #{call.inspect}" unless call.is_a? Vm::FunctionCall
|
||||
call.args.each do | arg |
|
||||
end
|
||||
bl( :left => call.function )
|
||||
block.add_code bl( :left => call.function )
|
||||
call.function.return_value
|
||||
end
|
||||
|
||||
def main_start
|
||||
entry = Vm::Block.new("main_entry")
|
||||
def main_start entry
|
||||
entry.add_code mov( :left => :fp , :right => 0 )
|
||||
end
|
||||
def main_exit
|
||||
entry = Vm::Block.new("main_exit")
|
||||
entry.add_code syscall(1)
|
||||
def main_exit exit
|
||||
exit.add_code syscall(1)
|
||||
end
|
||||
def function_entry f_name
|
||||
entry = Vm::Block.new("#{f_name}_entry")
|
||||
# entry.add_code push( :regs => [:lr] )
|
||||
def function_entry block, f_name
|
||||
# entry.add_code push( :regs => [:lr] )
|
||||
block
|
||||
end
|
||||
def function_exit f_name
|
||||
entry = Vm::Block.new("#{f_name}_exit")
|
||||
def function_exit entry , f_name
|
||||
entry.add_code mov( :left => :pc , :right => :lr )
|
||||
end
|
||||
def putstring
|
||||
|
@ -14,7 +14,7 @@ module Ast
|
||||
value.to_s
|
||||
end
|
||||
def compile context , into
|
||||
Vm::Integer.new value
|
||||
Vm::IntegerConstant.new value
|
||||
end
|
||||
def attributes
|
||||
[:value]
|
||||
|
@ -18,16 +18,20 @@ module Ast
|
||||
end
|
||||
def compile context , into
|
||||
raise "function does not compile into anything #{self}" if into
|
||||
parent_locals = context.locals
|
||||
context.locals = {}
|
||||
args = []
|
||||
locals = {}
|
||||
params.each_with_index do |param , index|
|
||||
arg = param.name
|
||||
arg_value = Vm::Integer.new(index)
|
||||
context.locals[arg] = arg_value
|
||||
locals[arg] = arg_value
|
||||
args << arg_value
|
||||
end
|
||||
function = Vm::Function.new(name , args )
|
||||
parent_locals = context.locals
|
||||
parent_function = context.function
|
||||
context.locals = locals
|
||||
context.function = function
|
||||
|
||||
context.program.add_function function
|
||||
into = function.entry
|
||||
block.each do |b|
|
||||
@ -41,6 +45,7 @@ module Ast
|
||||
puts compiled.inspect
|
||||
end
|
||||
context.locals = parent_locals
|
||||
context.function = parent_function
|
||||
function
|
||||
end
|
||||
|
||||
|
@ -43,10 +43,15 @@ module Ast
|
||||
"#{left} #{operator} #{right}"
|
||||
end
|
||||
def compile context , into
|
||||
puts "compile #{to_s}"
|
||||
r_val = right.compile(context , into)
|
||||
|
||||
if operator == "=" # assignemnt
|
||||
raise "Can only assign variables, not #{left}" unless left.is_a?(NameExpression)
|
||||
if r_val.is_a? Vm::IntegerConstant
|
||||
puts context.attributes.keys.join(" ")
|
||||
next_register = context.function.next_register
|
||||
r_val = Vm::Integer.new(next_register).load( into , r_val )
|
||||
end
|
||||
context.locals[left.name] = r_val
|
||||
return r_val
|
||||
end
|
||||
@ -54,9 +59,9 @@ module Ast
|
||||
|
||||
case operator
|
||||
when ">"
|
||||
code = l_val.less_or_equal r_val
|
||||
code = l_val.less_or_equal into , r_val
|
||||
when "+"
|
||||
code = l_val.plus r_val
|
||||
code = l_val.plus into , r_val
|
||||
else
|
||||
raise "unimplemented operator #{operator} #{self}"
|
||||
end
|
||||
|
@ -4,19 +4,19 @@ module Core
|
||||
#there are no Kernel instances, only class methods.
|
||||
# We use this module syntax to avoid the (ugly) self (also eases searching).
|
||||
module ClassMethods
|
||||
def main_start
|
||||
def main_start block
|
||||
#TODO extract args into array of strings
|
||||
Vm::CMachine.instance.main_start
|
||||
Vm::CMachine.instance.main_start block
|
||||
end
|
||||
def main_exit
|
||||
def main_exit block
|
||||
# Machine.exit mov r7 , 0 + swi 0
|
||||
Vm::CMachine.instance.main_exit
|
||||
Vm::CMachine.instance.main_exit block
|
||||
end
|
||||
def function_entry f_name
|
||||
Vm::CMachine.instance.function_entry f_name
|
||||
def function_entry block , f_name
|
||||
Vm::CMachine.instance.function_entry block , f_name
|
||||
end
|
||||
def function_exit f_name
|
||||
Vm::CMachine.instance.function_exit f_name
|
||||
def function_exit block , f_name
|
||||
Vm::CMachine.instance.function_exit block , f_name
|
||||
end
|
||||
def putstring
|
||||
# should unwrap from string to char*
|
||||
|
@ -34,11 +34,7 @@ module Vm
|
||||
end
|
||||
|
||||
def add_code(kode)
|
||||
if( kode.is_a? Array )
|
||||
kode.each { |code| @codes << code }
|
||||
else
|
||||
@codes << kode
|
||||
end
|
||||
@codes << kode
|
||||
self
|
||||
end
|
||||
|
||||
|
@ -11,7 +11,7 @@ module Vm
|
||||
|
||||
|
||||
class IntegerConstant < Constant
|
||||
def init int
|
||||
def initialize int
|
||||
@integer = int
|
||||
end
|
||||
attr_reader :integer
|
||||
|
@ -12,6 +12,6 @@ module Vm
|
||||
@attributes = {}
|
||||
@attributes[:program] = program
|
||||
end
|
||||
|
||||
attr_reader :attributes
|
||||
end
|
||||
end
|
||||
|
@ -22,24 +22,24 @@ module Vm
|
||||
super()
|
||||
@name = name
|
||||
@args = args
|
||||
@entry = Core::Kernel::function_entry( name )
|
||||
@exit = Core::Kernel::function_exit( name )
|
||||
@body = Block.new("#{name}_body")
|
||||
@entry = Core::Kernel::function_entry( Vm::Block.new("#{name}_exit") ,name )
|
||||
@exit = Core::Kernel::function_exit( Vm::Block.new("#{name}_entry") , name )
|
||||
@body = Block.new("#{name}_body")
|
||||
@reg_count = 0
|
||||
branch_body
|
||||
end
|
||||
attr_reader :args , :entry , :exit , :body , :name
|
||||
|
||||
# this creates a branch from entry here and from here to exit
|
||||
# unless there is a link existing, in which you are resposible
|
||||
def set_body body
|
||||
@body = body
|
||||
branch_body
|
||||
end
|
||||
|
||||
def arity
|
||||
@args.length
|
||||
end
|
||||
|
||||
def next_register
|
||||
next_free = @reg_count
|
||||
@reg_count += 1
|
||||
next_free + args.length
|
||||
end
|
||||
|
||||
def link_at address , context
|
||||
raise "undefined code #{inspect}" if @body.nil?
|
||||
super #just sets the position
|
||||
@ -66,10 +66,5 @@ module Vm
|
||||
@entry.set_next(@body)
|
||||
@body.set_next(@exit) if @body and !@body.next
|
||||
end
|
||||
|
||||
def add_arg value
|
||||
# TODO check
|
||||
@args << value
|
||||
end
|
||||
end
|
||||
end
|
@ -12,9 +12,9 @@ module Vm
|
||||
attr_reader :function , :args , :name
|
||||
|
||||
def load_args into
|
||||
raise args.inspect
|
||||
args.each_with_index do |arg , index|
|
||||
into.add_code arg.load("r#{index}".to_sym)
|
||||
puts "load " + arg.inspect
|
||||
into.add_code arg.move("r#{index}".to_sym)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -31,10 +31,10 @@ module Vm
|
||||
@objects = []
|
||||
# global functions
|
||||
@functions = []
|
||||
@entry = Core::Kernel::main_start
|
||||
@entry = Core::Kernel::main_start Vm::Block.new("main_entry")
|
||||
#main gets executed between entry and exit
|
||||
@main = Block.new("main")
|
||||
@exit = Core::Kernel::main_exit
|
||||
@exit = Core::Kernel::main_exit Vm::Block.new("main_exit")
|
||||
end
|
||||
attr_reader :context , :main , :functions
|
||||
|
||||
@ -58,9 +58,7 @@ module Vm
|
||||
fun = get_function name
|
||||
unless fun
|
||||
puts @functions.inspect
|
||||
fun = Function.new(name)
|
||||
block = Core::Kernel.send(name)
|
||||
fun.set_body block
|
||||
fun = Core::Kernel.send(name)
|
||||
@functions << fun
|
||||
end
|
||||
fun
|
||||
|
@ -27,6 +27,11 @@ module Vm
|
||||
end
|
||||
end
|
||||
|
||||
# Just a nice way to write branches
|
||||
class Bool < Value
|
||||
|
||||
end
|
||||
|
||||
# This is what it is when we don't know what it is.
|
||||
# Must be promoted to A Word-Value to to anything
|
||||
# remembering that our oo machine is typed, no overloading or stuff
|
||||
@ -34,10 +39,12 @@ module Vm
|
||||
|
||||
attr_accessor :register
|
||||
|
||||
def initialize reg
|
||||
register = reg
|
||||
def inspect
|
||||
self.class.name + ":reg:#{register}:"
|
||||
end
|
||||
def initialize reg
|
||||
@register = reg
|
||||
end
|
||||
|
||||
def length
|
||||
4
|
||||
end
|
||||
@ -45,19 +52,23 @@ module Vm
|
||||
|
||||
class Unsigned < Word
|
||||
|
||||
def plus unsigned
|
||||
Machine.instance.unsigned_plus self , unsigned
|
||||
def plus block , unsigned
|
||||
CMachine.instance.unsigned_plus self , unsigned
|
||||
end
|
||||
end
|
||||
|
||||
class Integer < Word
|
||||
|
||||
def less_or_equal right
|
||||
Machine.instance.integer_less_or_equal self , right
|
||||
def less_or_equal block , right
|
||||
CMachine.instance.integer_less_or_equal block , self , right
|
||||
end
|
||||
|
||||
def plus right
|
||||
Machine.instance.integer_plus self , right
|
||||
def plus block , right
|
||||
CMachine.instance.integer_plus block , self , right
|
||||
end
|
||||
|
||||
def load block , right
|
||||
CMachine.instance.integer_load block , self , right
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user