class Racc::Grammar
def [](x)
def [](x) @rules[x] end
def _compute_expand(t, set, lock)
def _compute_expand(t, set, lock) if tmp = t.expand set.update tmp return set end tok = nil set.update_a t.heads t.heads.each do |ptr| tok = ptr.dereference if tok and tok.nonterminal? unless lock[tok.ident] lock[tok.ident] = true _compute_expand tok, set, lock end end end set end
def add(rule)
def add(rule) raise ArgumentError, "rule added after the Grammar closed" if @closed @rules.push rule end
def add_start_rule
def add_start_rule r = Rule.new(@symboltable.dummy, [@start, @symboltable.anchor, @symboltable.anchor], UserAction.empty) r.ident = 0 r.hash = 0 r.precedence = nil @rules.unshift r end
def added?(sym)
def added?(sym) @rules.detect {|r| r.target == sym } end
def check_rules_nullable(rules)
def check_rules_nullable(rules) rules.delete_if do |rule| rule.null = true rule.symbols.each do |t| unless t.nullable? rule.null = false break end end rule.nullable? end end
def check_rules_useless(rules)
def check_rules_useless(rules) rules.delete_if do |rule| rule.useless = false rule.symbols.each do |sym| if sym.useless? rule.useless = true break end end not rule.useless? end end
def check_symbols_nullable(symbols)
def check_symbols_nullable(symbols) symbols.delete_if do |sym| sym.heads.each do |ptr| if ptr.rule.nullable? sym.null = true break end end sym.nullable? end end
def check_symbols_useless(s)
def check_symbols_useless(s) s.delete_if do |t| t.heads.each do |ptr| unless ptr.rule.useless? t.useless = false break end end not t.useless? end end
def compute_expand(t)
def compute_expand(t) puts "expand> #{t.to_s}" if @debug_symbol t.expand = _compute_expand(t, ISet.new, []) puts "expand< #{t.to_s}: #{t.expand.to_s}" if @debug_symbol end
def compute_hash
def compute_hash hash = 4 # size of dummy rule @rules.each do |rule| rule.hash = hash hash += (rule.size + 1) end end
def compute_heads
def compute_heads @rules.each do |rule| rule.target.heads.push rule.ptrs[0] end end
def compute_locate
def compute_locate @rules.each do |rule| t = nil rule.ptrs.each do |ptr| unless ptr.reduce? tok = ptr.dereference tok.locate.push ptr t = tok if tok.terminal? end end rule.precedence = t end end
def compute_nullable
def compute_nullable @rules.each {|r| r.null = false } @symboltable.each {|t| t.null = false } r = @rules.dup s = @symboltable.nonterminals begin rs = r.size ss = s.size check_rules_nullable r check_symbols_nullable s end until rs == r.size and ss == s.size end
def compute_nullable_0
def compute_nullable_0 @symboltable.each do |s| if s.terminal? s.snull = false else s.snull = s.heads.any? {|loc| loc.reduce? } end end end
def compute_useless
Sym#useless?, Rule#useless?
def compute_useless @symboltable.each_terminal {|sym| sym.useless = false } @symboltable.each_nonterminal {|sym| sym.useless = true } @rules.each {|rule| rule.useless = true } r = @rules.dup s = @symboltable.nonterminals begin rs = r.size ss = s.size check_rules_useless r check_symbols_useless s end until r.size == rs and s.size == ss end
def declare_precedence(assoc, syms)
def declare_precedence(assoc, syms) raise CompileError, "precedence table defined twice" if @prec_table_closed @prec_table.push [assoc, syms] end
def determine_terminals
def determine_terminals @symboltable.each do |s| s.term = s.heads.empty? end end
def dfa
def dfa (@states ||= States.new(self)).dfa end
def each_index(&block)
def each_index(&block) @rules.each_index(&block) end
def each_rule(&block)
def each_rule(&block) @rules.each(&block) end
def each_useless_nonterminal
def each_useless_nonterminal return to_enum __method__ unless block_given? @symboltable.each_nonterminal do |sym| yield sym if sym.useless? end end
def each_useless_rule
def each_useless_rule return to_enum __method__ unless block_given? each do |r| yield r if r.useless? end end
def each_with_index(&block)
def each_with_index(&block) @rules.each_with_index(&block) end
def end_precedence_declaration(reverse)
def end_precedence_declaration(reverse) @prec_table_closed = true return if @prec_table.empty? table = reverse ? @prec_table.reverse : @prec_table table.each_with_index do |(assoc, syms), idx| syms.each do |sym| sym.assoc = assoc sym.precedence = idx end end end
def fix_ident
Rule#ident
def fix_ident @rules.each_with_index do |rule, idx| rule.ident = idx end end
def init
def init return if @closed @closed = true @start ||= @rules.map {|r| r.target }.detect {|sym| not sym.dummy? } raise CompileError, 'no rule in input' if @rules.empty? add_start_rule @rules.freeze fix_ident compute_hash compute_heads determine_terminals compute_nullable_0 @symboltable.fix compute_locate @symboltable.each_nonterminal {|t| compute_expand t } compute_nullable compute_useless end
def initialize(debug_flags = DebugFlags.new)
def initialize(debug_flags = DebugFlags.new) @symboltable = SymbolTable.new @debug_symbol = debug_flags.token @rules = [] # :: [Rule] @start = nil @n_expected_srconflicts = nil @prec_table = [] @prec_table_closed = false @closed = false @states = nil end
def intern(value, dummy = false)
def intern(value, dummy = false) @symboltable.intern(value, dummy) end
def n_useless_nonterminals
def n_useless_nonterminals @n_useless_nonterminals ||= each_useless_nonterminal.count end
def n_useless_rules
def n_useless_rules @n_useless_rules ||= each_useless_rule.count end
def nfa
def nfa (@states ||= States.new(self)).nfa end
def nonterminal_base
def nonterminal_base @symboltable.nt_base end
def parser_class
def parser_class states = states() # cache if $DEBUG srcfilename = caller(1).first.slice(/\A(.*?):/, 1) begin write_log srcfilename + ".output" rescue SystemCallError end report = lambda {|s| $stderr.puts "racc: #{srcfilename}: #{s}" } if states.should_report_srconflict? report["#{states.n_srconflicts} shift/reduce conflicts"] end if states.rrconflict_exist? report["#{states.n_rrconflicts} reduce/reduce conflicts"] end g = states.grammar if g.useless_nonterminal_exist? report["#{g.n_useless_nonterminals} useless nonterminals"] end if g.useless_rule_exist? report["#{g.n_useless_rules} useless rules"] end end states.state_transition_table.parser_class end
def size
def size @rules.size end
def start_symbol=(s)
def start_symbol=(s) raise CompileError, "start symbol set twice'" if @start @start = s end
def state_transition_table
def state_transition_table states().state_transition_table end
def symbols
def symbols @symboltable.symbols end
def to_s
def to_s "<Racc::Grammar>" end
def useless_nonterminal_exist?
def useless_nonterminal_exist? n_useless_nonterminals() != 0 end
def useless_rule_exist?
def useless_rule_exist? n_useless_rules() != 0 end
def write_log(path)
def write_log(path) File.open(path, 'w') {|f| LogFileGenerator.new(states()).output f } end