introduce goto instead of using machines jump

fix labels so compiler does not return duplicates
This commit is contained in:
2020-02-13 11:59:00 +07:00
parent 0e3a8bb859
commit 0342df41c7
5 changed files with 61 additions and 13 deletions

View File

@ -2,7 +2,7 @@
word! = name_
cache_entry! = cache_entry_
# local var assignment
callable_method = cache_entry.cached_type.methods
callable_method! = cache_entry.cached_type.methods
while_start_label

10
lib/slot_language/goto.rb Normal file
View File

@ -0,0 +1,10 @@
module SlotLanguage
class Goto
attr_reader :label
def initialize(label)
@label = label
end
end
end

View File

@ -10,6 +10,10 @@ module SlotLanguage
self.new.process(ast)
end
def initialize
@labels = {}
end
def not_implemented(node)
raise "Not implemented #{node.type}"
end
@ -60,13 +64,18 @@ module SlotLanguage
private
def label(name)
SlotMachine::Label.new(name.to_s , name)
raise "no label #{name}" unless(name.to_s.end_with?("_label"))
if @labels.has_key?(name)
return @labels[name]
else
@labels[name] = SlotMachine::Label.new(name.to_s , name)
end
end
def goto(name , args)
# error handling would not hurt
puts "goto #{name} , #{args}" if DEBUG
label = process(args.first)
SlotMachine::Jump.new( label )
Goto.new( label )
end
def check(name , receiver , kids)
raise "Only ==, not #{name}" unless name == :==
@ -90,3 +99,4 @@ require_relative "slot_maker"
require_relative "load_maker"
require_relative "check_maker"
require_relative "macro_maker"
require_relative "goto"