2014-04-16 11:03:39 +02:00
|
|
|
module Asm
|
|
|
|
|
2014-04-23 11:38:38 +02:00
|
|
|
class Shift
|
2014-04-16 11:03:39 +02:00
|
|
|
attr_accessor :type, :value, :argument
|
|
|
|
end
|
|
|
|
|
2014-04-22 11:23:55 +02:00
|
|
|
# Registers have off course a name (r1-16 for arm)
|
|
|
|
# but also refer to an address. In other words they can be an operand for instructions.
|
|
|
|
# Arm has addressing modes abound, and so can add to a register before actually using it
|
|
|
|
# If can actually shift or indeed shift what it adds, but not implemented
|
2014-04-23 11:38:38 +02:00
|
|
|
class Register
|
2014-04-22 11:23:55 +02:00
|
|
|
attr_accessor :name , :offset
|
2014-04-18 18:19:57 +02:00
|
|
|
def initialize name
|
|
|
|
@name = name
|
2014-04-22 11:23:55 +02:00
|
|
|
@offset = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
# this is for the dsl, so we can write pretty code like r1 + 4
|
|
|
|
# when we want to access the next word (4) after r1
|
|
|
|
def + number
|
|
|
|
@offset = number
|
|
|
|
self
|
2014-04-18 18:19:57 +02:00
|
|
|
end
|
2014-04-16 11:03:39 +02:00
|
|
|
end
|
|
|
|
|
2014-04-23 12:52:34 +02:00
|
|
|
# maybe not used at all as code_gen::instruction raises if used.
|
2014-04-20 22:48:04 +02:00
|
|
|
# instead now using Arrays
|
2014-04-23 11:38:38 +02:00
|
|
|
class RegisterList
|
2014-04-16 11:03:39 +02:00
|
|
|
attr_accessor :registers
|
2014-04-20 22:48:04 +02:00
|
|
|
def initialize regs
|
2014-04-22 10:58:17 +02:00
|
|
|
@registers = regs
|
2014-04-23 11:38:38 +02:00
|
|
|
regs.each{ |reg| raise "not a reg #{sym} , #{reg}" unless reg.is_a?(Asm::Register) }
|
2014-04-20 22:48:04 +02:00
|
|
|
end
|
2014-04-16 11:03:39 +02:00
|
|
|
end
|
|
|
|
|
2014-04-23 11:38:38 +02:00
|
|
|
class NumLiteral
|
2014-04-16 11:03:39 +02:00
|
|
|
attr_accessor :value
|
2014-04-18 18:19:57 +02:00
|
|
|
def initialize val
|
|
|
|
@value = val
|
|
|
|
end
|
2014-04-16 11:03:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|