tests for mom check instructions
This commit is contained in:
@ -31,32 +31,6 @@ module Risc
|
||||
end
|
||||
end
|
||||
|
||||
# dynamic version of an Branch that jumps to the contents
|
||||
# of a register instead of a hardcoded address
|
||||
# As Branches jump to Labels, this is not derived from Branch
|
||||
# PS: to conditionally jump to a dynamic adddress we do a normal branch
|
||||
# over the dynamic one and then a dynamic one. Save us having all types of branches
|
||||
# in two versions
|
||||
class DynamicJump < Instruction
|
||||
def initialize( source , register )
|
||||
super(source)
|
||||
@register = register
|
||||
end
|
||||
attr_reader :register
|
||||
|
||||
def to_s
|
||||
class_source( register.to_s)
|
||||
end
|
||||
end
|
||||
|
||||
# A Dynamic yield is very much like a DynamicJump, especially in it's idea
|
||||
#
|
||||
# The implentation differes slightly, as we use a chache entry in the DynamicJump
|
||||
# but a block in the DynamicYield.
|
||||
# Using means that we assume the register to be ready loaded with a Block
|
||||
class DynamicYield < DynamicJump
|
||||
end
|
||||
|
||||
class IsZero < Branch
|
||||
end
|
||||
|
||||
|
27
lib/risc/instructions/dynamic_jump.rb
Normal file
27
lib/risc/instructions/dynamic_jump.rb
Normal file
@ -0,0 +1,27 @@
|
||||
module Risc
|
||||
# dynamic version of an Branch that jumps to the contents
|
||||
# of a register instead of a hardcoded address
|
||||
# As Branches jump to Labels, this is not derived from Branch
|
||||
# PS: to conditionally jump to a dynamic adddress we do a normal branch
|
||||
# over the dynamic one and then a dynamic one. Save us having all types of branches
|
||||
# in two versions
|
||||
class DynamicJump < Instruction
|
||||
def initialize( source , register )
|
||||
super(source)
|
||||
@register = register
|
||||
end
|
||||
attr_reader :register
|
||||
|
||||
def to_s
|
||||
class_source( register.to_s)
|
||||
end
|
||||
end
|
||||
|
||||
# A Dynamic yield is very much like a DynamicJump, especially in it's idea
|
||||
#
|
||||
# The implentation differes slightly, as we use a chache entry in the DynamicJump
|
||||
# but a block in the DynamicYield.
|
||||
# Using means that we assume the register to be ready loaded with a Block
|
||||
class DynamicYield < DynamicJump
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user