remove virtual main instruction
on a quest to remove all virtual instructions
This commit is contained in:
parent
4b8a4d4ef5
commit
4334b68736
@ -1,17 +0,0 @@
|
|||||||
module Register
|
|
||||||
|
|
||||||
# "Boot" the virtual machine at the function given
|
|
||||||
# meaning jump to that function currently. Maybe better to do some machine setup
|
|
||||||
# and possibly some cleanup/exit has to tie in, but that is not this day
|
|
||||||
|
|
||||||
class MainImplementation
|
|
||||||
def run block
|
|
||||||
block.codes.dup.each do |code|
|
|
||||||
next unless code.is_a? Virtual::VirtualMain
|
|
||||||
branch = Register::Branch.new( code , code.method.source.blocks.first )
|
|
||||||
block.replace(code , branch )
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
Virtual.machine.add_pass "Register::MainImplementation"
|
|
||||||
end
|
|
@ -1,7 +1,6 @@
|
|||||||
require_relative "instruction"
|
require_relative "instruction"
|
||||||
require_relative "register_reference"
|
require_relative "register_reference"
|
||||||
require_relative "assembler"
|
require_relative "assembler"
|
||||||
require_relative "passes/main_implementation"
|
|
||||||
require_relative "passes/frame_implementation"
|
require_relative "passes/frame_implementation"
|
||||||
require_relative "passes/message_implementation"
|
require_relative "passes/message_implementation"
|
||||||
require_relative "passes/set_implementation"
|
require_relative "passes/set_implementation"
|
||||||
|
@ -21,4 +21,3 @@ require_relative "instructions/method_return"
|
|||||||
require_relative "instructions/new_frame"
|
require_relative "instructions/new_frame"
|
||||||
require_relative "instructions/new_message"
|
require_relative "instructions/new_message"
|
||||||
require_relative "instructions/set"
|
require_relative "instructions/set"
|
||||||
require_relative "instructions/virtual_main"
|
|
||||||
|
@ -1,23 +0,0 @@
|
|||||||
module Virtual
|
|
||||||
|
|
||||||
# This starts the Virtual machine machine at the given function.
|
|
||||||
|
|
||||||
# The implementation is most likely a jump/branch , but since we have the extra layer
|
|
||||||
# we make good use of it, ie give things descriptive names (what they do, not how)
|
|
||||||
|
|
||||||
class VirtualMain < Instruction
|
|
||||||
include Positioned
|
|
||||||
|
|
||||||
def initialize method
|
|
||||||
@method = method
|
|
||||||
end
|
|
||||||
attr_reader :method
|
|
||||||
def word_length
|
|
||||||
4
|
|
||||||
end
|
|
||||||
|
|
||||||
def to_s
|
|
||||||
"#{self.class.name}( method: #{method.name})"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
@ -119,15 +119,10 @@ module Virtual
|
|||||||
end
|
end
|
||||||
|
|
||||||
def boot
|
def boot
|
||||||
# if @booted
|
|
||||||
# boot_functions!
|
|
||||||
# @init = Block.new("init", :__init__ )
|
|
||||||
# @init.add_code Virtual::VirtualMain.new( self.space.get_init )
|
|
||||||
# return self
|
|
||||||
# end
|
|
||||||
boot_parfait!
|
boot_parfait!
|
||||||
@init = Block.new("init", :__init__ )
|
@init = Block.new("init", :__init__ )
|
||||||
@init.add_code Virtual::VirtualMain.new( self.space.get_init )
|
branch = Register::Branch.new( "__init__" , self.space.get_init.source.blocks.first )
|
||||||
|
@init.add_code branch
|
||||||
@booted = true
|
@booted = true
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user