rubyx/stash/vm/method_compiler/operator_expression.rb

16 lines
658 B
Ruby
Raw Normal View History

2017-01-14 18:28:44 +01:00
module Vm
2016-12-09 13:17:01 +01:00
module OperatorExpression
def on_OperatorExpression statement
2016-12-09 13:17:01 +01:00
# operator , left_e , right_e = *statement
2015-10-15 08:32:47 +02:00
# left and right must be expressions. Expressions return a register when compiled
left_reg = process(statement.left_expression)
right_reg = process(statement.right_expression)
raise "Not register #{left_reg}" unless left_reg.is_a?(Risc::RiscValue)
raise "Not register #{right_reg}" unless right_reg.is_a?(Risc::RiscValue)
add_code Risc::OperatorInstruction.new(statement,statement.operator,left_reg,right_reg)
2015-10-15 08:32:47 +02:00
return left_reg # though this has wrong value attached
end
end
end