rubyx/lib/risc/builtin/integer.rb

92 lines
3.5 KiB
Ruby
Raw Normal View History

#integer related kernel functions
module Risc
module Builtin
module Integer
module ClassMethods
include AST::Sexp
include CompileHelper
2015-08-07 15:46:55 +02:00
def mod4 context
compiler = compiler_for(:Integer,:mod4 ,{})
return compiler.method
2015-08-05 17:49:37 +02:00
end
def putint context
compiler = compiler_for(:Integer,:putint ,{})
return compiler.method
2015-08-05 17:49:37 +02:00
end
def +( context )
source = "plus"
2018-03-31 18:17:55 +02:00
compiler = compiler_for(:Integer,:+ ,{other: :Integer})
2018-03-30 17:05:38 +02:00
me , other = self_and_int_arg(compiler,source + "1")
# reduce me and other to integers
compiler.add_slot_to_reg( source + "2" , me , Parfait::Integer.integer_index , me)
compiler.add_slot_to_reg( source + "3", other , Parfait::Integer.integer_index , other)
2018-03-30 17:05:38 +02:00
compiler.add_code Risc.op( source + "4", :+ , me , other)
#TODO must get an Integer and put the value there then return the integer (object not value)
# and put it back into the return value
2018-03-30 17:05:38 +02:00
compiler.add_reg_to_slot( source + "5" , me , :message , :return_value)
return compiler.method
end
def div10( context )
s = "div_10"
compiler = compiler_for(:Integer,:div10 ,{})
me = compiler.add_known( :receiver )
tmp = compiler.add_known( :receiver )
q = compiler.add_known( :receiver )
const = compiler.use_reg :Integer , 1
compiler.add_load_data( s, 1 , const )
# int tmp = self >> 1
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :>> , tmp , const)
# int q = self >> 2
compiler.add_load_data( s , 2 , const)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :>> , q , const)
# q = q + tmp
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :+ , q , tmp )
# tmp = q >> 4
compiler.add_load_data( s , 4 , const)
compiler.add_transfer( s, q , tmp)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :>> , tmp , const)
# q = q + tmp
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :+ , q , tmp )
# tmp = q >> 8
compiler.add_load_data( s , 8 , const)
compiler.add_transfer( s, q , tmp)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :>> , tmp , const)
# q = q + tmp
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :+ , q , tmp )
# tmp = q >> 16
compiler.add_load_data( s , 16 , const)
compiler.add_transfer( s, q , tmp)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :>> , tmp , const)
# q = q + tmp
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :+ , q , tmp )
# q = q >> 3
compiler.add_load_data( s , 3 , const)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :>> , q , const)
# tmp = q * 10
compiler.add_load_data( s , 10 , const)
compiler.add_transfer( s, q , tmp)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :* , tmp , const)
# tmp = self - tmp
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :- , me , tmp )
compiler.add_transfer( s , me , tmp)
# tmp = tmp + 6
compiler.add_load_data( s , 6 , const)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :+ , tmp , const )
# tmp = tmp >> 4
compiler.add_load_data( s , 4 , const)
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :>> , tmp , const )
# return q + tmp
2018-03-24 16:53:27 +01:00
compiler.add_code Risc.op( s , :+ , q , tmp )
compiler.add_reg_to_slot( s , q , :message , :return_value)
compiler.add_mom( Mom::ReturnSequence.new)
return compiler.method
end
end
extend ClassMethods
end
end
end