macournoyer / rbv8

A Ruby VM running on Google V8 super VM.

This URL has Read+Write access

rbv8 / codegen / ruby_parser_extras.rb
100644 727 lines (609 sloc) 18.603 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
require 'stringio'
require 'racc/parser'
require 'sexp'
require 'strscan'
 
# WHY do I have to do this?!?
class Regexp
  ONCE = 0 # 16 # ?
  ENC_NONE = /x/n.options
  ENC_EUC = /x/e.options
  ENC_SJIS = /x/s.options
  ENC_UTF8 = /x/u.options
end
 
class Fixnum
  def ord
    self # I hate ruby 1.9 string changes
  end
end
 
class StringScanner
# if ENV['TALLY'] then
# alias :old_getch :getch
# def getch
# warn({:getch => caller[0]}.inspect)
# old_getch
# end
# end
 
  def current_line # HAHA fuck you (HACK)
    string[0..pos][/\A.*__LINE__/m].split(/\n/).size
  end
 
  def lineno
    string[0..pos].split(/\n/).size
  end
 
  def unread c
    return if c.nil? # UGH
    warn({:unread => caller[0]}.inspect) if ENV['TALLY']
    string[pos, 0] = c
  end
 
  def unread_many str
    warn({:unread_many => caller[0]}.inspect) if ENV['TALLY']
    string[pos, 0] = str
  end
 
  def was_begin_of_line
    pos <= 2 or string[pos-2] == ?\n
  end
end
 
class RubyParser < Racc::Parser
  VERSION = '1.0.0'
 
  attr_accessor :lexer, :in_def, :in_single, :file
  attr_reader :env, :comments
 
  def append_to_block head, tail # FIX: wtf is this?!? switch to block_append
    return head if tail.nil?
    return tail if head.nil?
 
    head = s(:block, head) unless head.node_type == :block
    head << tail
  end
 
  def arg_add(node1, node2)
    return s(:array, node2) unless node1
    return node1 << node2 if node1[0] == :array
    return s(:argspush, node1, node2)
  end
 
  def arg_blk_pass node1, node2
    if node2 then
      node2.insert 1, node1
      return node2
    else
      node1
    end
  end
 
  def arg_concat node1, node2
    return node2.nil? ? node1 : s(:argscat, node1, node2)
  end
 
  def aryset receiver, index
    s(:attrasgn, receiver, :"[]=", index)
  end
 
  def assignable(lhs, value = nil)
    id = lhs.to_sym
    id = id.to_sym if Sexp === id
 
    raise SyntaxError, "Can't change the value of #{id}" if
      id.to_s =~ /^(?:self|nil|true|false|__LINE__|__FILE__)$/
 
    result = case id.to_s
             when /^@@/ then
               asgn = in_def || in_single > 0
               s((asgn ? :cvasgn : :cvdecl), id)
             when /^@/ then
               s(:iasgn, id)
             when /^\$/ then
               s(:gasgn, id)
             when /^[A-Z]/ then
               s(:cdecl, id)
             else
               case self.env[id]
               when :lvar then
                 s(:lasgn, id)
               when :dvar, nil then
                 if self.env.current[id] == :dvar then
                   s(:lasgn, id)
                 elsif self.env[id] == :dvar then
                   self.env.use(id)
                   s(:lasgn, id)
                 elsif ! self.env.dynamic? then
                   s(:lasgn, id)
                 else
                   s(:lasgn, id)
                 end
               else
                 raise "wtf? unknown type: #{self.env[id]}"
               end
             end
 
    self.env[id] ||= :lvar
 
    result << value if value
 
    return result
  end
 
  def block_append(head, tail, strip_tail_block=false)
    return head unless tail
    return tail unless head
 
    case head[0]
    when :lit, :str then
      return tail
    end
 
    head = remove_begin(head)
    head = s(:block, head) unless head[0] == :block
 
    if strip_tail_block and Sexp === tail and tail[0] == :block then
      head.push(*tail.values)
    else
      head << tail
    end
  end
 
  def cond node
    return nil if node.nil?
    node = value_expr node
 
    case node.first
    when :dregex then
      return s(:match2, node, s(:gvar, "$_".to_sym))
    when :regex then
      return s(:match, node)
    when :lit then
      if Regexp === node.last then
        return s(:match, node)
      else
        return node
      end
    when :and then
      return s(:and, cond(node[1]), cond(node[2]))
    when :or then
      return s(:or, cond(node[1]), cond(node[2]))
    when :dot2 then
      label = "flip#{node.hash}"
      env[label] = :lvar
      return s(:flip2, node[1], node[2])
    when :dot3 then
      label = "flip#{node.hash}"
      env[label] = :lvar
      return s(:flip3, node[1], node[2])
    else
      return node
    end
  end
 
  ##
  # for pure ruby systems only
 
  def do_parse
    _racc_do_parse_rb(_racc_setup, false)
  end if ENV['PURE_RUBY']
 
  def get_match_node lhs, rhs
    if lhs then
      case lhs[0]
      when :dregx, :dregx_once then
        return s(:match2, lhs, rhs)
      when :lit then
        return s(:match2, lhs, rhs) if Regexp === lhs.last
      end
    end
 
    if rhs then
      case rhs[0]
      when :dregx, :dregx_once then
        return s(:match3, rhs, lhs)
      when :lit then
        return s(:match3, rhs, lhs) if Regexp === rhs.last
      end
    end
 
    return s(:call, lhs, :"=~", s(:array, rhs))
  end
 
  def gettable(id)
    id = id.to_sym if Sexp === id # HACK
    id = id.to_sym if String === id # HACK
 
    return s(:self) if id == :self
    return s(:nil) if id == :nil
    return s(:true) if id == :true
    return s(:false) if id == :false
    return s(:str, self.file) if id == :"__FILE__"
    return s(:lit, lexer.src.current_line) if id == :"__LINE__"
 
    result = case id.to_s
             when /^@@/ then
               s(:cvar, id)
             when /^@/ then
               s(:ivar, id)
             when /^\$/ then
               s(:gvar, id)
             when /^[A-Z]/ then
               s(:const, id)
             else
               type = env[id]
               if type then
                 s(type, id)
               elsif env.dynamic? and :dvar == env[id] then
                 s(:lvar, id)
               else
                 s(:call, nil, id, s(:arglist))
               end
             end
 
    return result if result
 
    raise "identifier #{id.inspect} is not valid"
  end
 
  def initialize
    super
    self.lexer = RubyLexer.new
    self.lexer.parser = self
    self.in_def = false
    self.in_single = 0
    @env = Environment.new
    @comments = []
  end
 
  def list_append list, item # TODO: nuke me *sigh*
    return s(:array, item) unless list
    list << item
  end
 
  def literal_concat head, tail
    return tail unless head
    return head unless tail
 
    htype, ttype = head[0], tail[0]
 
    head = s(:dstr, '', head) if htype == :evstr
 
    case ttype
    when :str then
      if htype == :str
        head[-1] << tail[-1]
      elsif htype == :dstr and head.size == 2 then
        head[-1] << tail[-1]
      else
        head << tail
      end
    when :dstr then
      if htype == :str then
        tail[1] = head[-1] + tail[1]
        head = tail
      else
        tail[0] = :array
        tail[1] = s(:str, tail[1])
        tail.delete_at 1 if tail[1] == s(:str, '')
 
        head.push(*tail[1..-1])
      end
    when :evstr then
      head[0] = :dstr if htype == :str
      if head.size == 2 and tail[1][0] == :str then
        head[-1] << tail[1][-1]
        head[0] = :str if head.size == 2 # HACK ?
      else
        head.push(tail)
      end
    end
 
    return head
  end
 
  def logop(type, left, right) # TODO: rename logical_op
    left = value_expr left
 
    if left and left[0] == type and not left.paren then
      node, second = left, nil
 
      while (second = node[2]) && second[0] == type and not second.paren do
        node = second
      end
 
      node[2] = s(type, second, right)
 
      return left
    end
 
    return s(type, left, right)
  end
 
  def new_call recv, meth, args = nil # REFACTOR - merge with fcall
    if args && args[0] == :block_pass then
      new_args = args.array(true) || args.argscat(true) || args.splat(true)
      new_args ||= s(:arglist)
      new_args[0] = :arglist if new_args[0] == :array
 
      call = s(:call, recv, meth)
      call << new_args if new_args
      args << call
 
      return args
    end
    result = s(:call, recv, meth)
    args ||= s(:arglist)
    args[0] = :arglist if args[0] == :array
    result << args
    result
  end
 
  def new_fcall meth, args = nil # TODO: remove
    new_call(nil, meth, args)
  end
 
  def new_super args
    if args && args.node_type == :block_pass then
      t, body, bp = args
      result = s(t, bp, s(:super, body))
    else
      result = s(:super)
      result << args if args and args != s(:array)
    end
    result
  end
 
  def new_yield(node)
    if node then
      raise SyntaxError, "Block argument should not be given." if
        node.node_type == :block_pass
 
      node = node.last if node.node_type == :array and node.size == 2
    end
 
    return s(:yield, node)
  end
 
  def next_token
    if self.lexer.advance then
      [self.lexer.token, self.lexer.yacc_value]
    else
      return [false, '$end']
    end
  end
 
  def node_assign(lhs, rhs)
    return nil unless lhs
 
    rhs = value_expr rhs
 
    case lhs[0]
    when :gasgn, :iasgn, :lasgn, :dasgn, :dasgn_curr,
      :masgn, :cdecl, :cvdecl, :cvasgn then
      lhs << rhs
    when :attrasgn, :call then
      args = lhs.array(true) || lhs.argscat(true) || lhs.splat(true) # FIX: fragile
      lhs << arg_add(args, rhs)
    when :const then
      lhs[0] = :cdecl
      lhs << rhs
    else
      raise "unknown lhs #{lhs.inspect}"
    end
 
    lhs
  end
 
  def parse(str, file = "(string)")
    raise "bad val: #{str.inspect}" unless String === str
 
    self.file = file
    self.lexer.src = str
 
    @yydebug = ENV.has_key? 'DEBUG'
 
    do_parse
  end
 
  def remove_begin node
    node = node[-1] if node and node[0] == :begin and node.size == 2
    node
  end
 
  def ret_args node
    if node then
      raise SyntaxError, "block argument should not be given" if
        node[0] == :block_pass
 
      node = node.last if node[0] == :array && node.size == 2
      # HACK matz wraps ONE of the FOUR splats in a newline to
      # distinguish. I use paren for now. ugh
      node = s(:svalue, node) if node[0] == :splat and not node.paren
    end
 
    node
  end
 
  def value_expr node # HACK
    node = remove_begin node
    node[2] = value_expr(node[2]) if node and node[0] == :if
    node
  end
 
  def void_stmts node
    return nil unless node
    return node unless node[0] == :block
 
    node[1..-2] = node[1..-2].map { |n| remove_begin(n) }
    node
  end
 
  def warning s
    # do nothing for now
  end
end
 
class Keyword
  class KWtable
    attr_accessor :name, :id, :state
    def initialize(name, id=[], state=nil)
      @name = name
      @id = id
      @state = state
    end
 
    def id0
      self.id.first
    end
 
    def id1
      self.id.last
    end
  end
 
  TOTAL_KEYWORDS = 40
  MIN_WORD_LENGTH = 2
  MAX_WORD_LENGTH = 8
  MIN_HASH_VALUE = 6
  MAX_HASH_VALUE = 55
  # maximum key range = 50, duplicates = 0
 
  ASSO_VALUES = [
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 11, 56, 56, 36, 56, 1, 37,
                 31, 1, 56, 56, 56, 56, 29, 56, 1, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 1, 56, 32, 1, 2,
                 1, 1, 4, 23, 56, 17, 56, 20, 9, 2,
                 9, 26, 14, 56, 5, 1, 1, 16, 56, 21,
                 20, 9, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
                 56, 56, 56, 56, 56, 56
                ]
 
  ##
  # :expr_beg = ignore newline, +/- is a sign.
  # :expr_end = newline significant, +/- is a operator.
  # :expr_arg = newline significant, +/- is a operator.
  # :expr_cmdarg = newline significant, +/- is a operator.
  # :expr_endarg = newline significant, +/- is a operator.
  # :expr_mid = newline significant, +/- is a operator.
  # :expr_fname = ignore newline, no reserved words.
  # :expr_dot = right after . or ::, no reserved words.
  # :expr_class = immediate after class, no here document.
 
  WORDLIST = [
              [""], [""], [""], [""], [""], [""],
              ["end", [:kEND, :kEND ], :expr_end ],
              ["else", [:kELSE, :kELSE ], :expr_beg ],
              ["case", [:kCASE, :kCASE ], :expr_beg ],
              ["ensure", [:kENSURE, :kENSURE ], :expr_beg ],
              ["module", [:kMODULE, :kMODULE ], :expr_beg ],
              ["elsif", [:kELSIF, :kELSIF ], :expr_beg ],
              ["def", [:kDEF, :kDEF ], :expr_fname ],
              ["rescue", [:kRESCUE, :kRESCUE_MOD ], :expr_mid ],
              ["not", [:kNOT, :kNOT ], :expr_beg ],
              ["then", [:kTHEN, :kTHEN ], :expr_beg ],
              ["yield", [:kYIELD, :kYIELD ], :expr_arg ],
              ["for", [:kFOR, :kFOR ], :expr_beg ],
              ["self", [:kSELF, :kSELF ], :expr_end ],
              ["false", [:kFALSE, :kFALSE ], :expr_end ],
              ["retry", [:kRETRY, :kRETRY ], :expr_end ],
              ["return", [:kRETURN, :kRETURN ], :expr_mid ],
              ["true", [:kTRUE, :kTRUE ], :expr_end ],
              ["if", [:kIF, :kIF_MOD ], :expr_beg ],
              ["defined?", [:kDEFINED, :kDEFINED ], :expr_arg ],
              ["super", [:kSUPER, :kSUPER ], :expr_arg ],
              ["undef", [:kUNDEF, :kUNDEF ], :expr_fname ],
              ["break", [:kBREAK, :kBREAK ], :expr_mid ],
              ["in", [:kIN, :kIN ], :expr_beg ],
              ["do", [:kDO, :kDO ], :expr_beg ],
              ["nil", [:kNIL, :kNIL ], :expr_end ],
              ["until", [:kUNTIL, :kUNTIL_MOD ], :expr_beg ],
              ["unless", [:kUNLESS, :kUNLESS_MOD ], :expr_beg ],
              ["or", [:kOR, :kOR ], :expr_beg ],
              ["next", [:kNEXT, :kNEXT ], :expr_mid ],
              ["when", [:kWHEN, :kWHEN ], :expr_beg ],
              ["redo", [:kREDO, :kREDO ], :expr_end ],
              ["and", [:kAND, :kAND ], :expr_beg ],
              ["begin", [:kBEGIN, :kBEGIN ], :expr_beg ],
              ["__LINE__", [:k__LINE__, :k__LINE__ ], :expr_end ],
              ["class", [:kCLASS, :kCLASS ], :expr_class ],
              ["__FILE__", [:k__FILE__, :k__FILE__ ], :expr_end ],
              ["END", [:klEND, :klEND ], :expr_end ],
              ["BEGIN", [:klBEGIN, :klBEGIN ], :expr_end ],
              ["while", [:kWHILE, :kWHILE_MOD ], :expr_beg ],
              [""], [""], [""], [""], [""], [""], [""], [""], [""],
              [""],
              ["alias", [:kALIAS, :kALIAS ], :expr_fname ],
             ].map { |args| KWtable.new(*args) }
 
  def self.hash_keyword(str, len)
    hval = len
 
    case hval
    when 2, 1 then
      hval += ASSO_VALUES[str[0].ord]
    else
      hval += ASSO_VALUES[str[2].ord]
      hval += ASSO_VALUES[str[0].ord]
    end
 
    hval += ASSO_VALUES[str[len - 1].ord]
    return hval
  end
 
  def self.keyword(str, len = str.size)
    if len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH then
      key = hash_keyword(str, len)
      if key <= MAX_HASH_VALUE && key >= 0 then
        s = WORDLIST[key].name
        return WORDLIST[key] if str == s
      end
    end
 
    return nil
  end
end
 
class Environment
  attr_reader :env, :dyn
  attr_accessor :init
 
  def [] k
    self.all[k]
  end
 
  def []= k, v
    raise "no" if v == true
    self.current[k] = v
  end
 
  def all
    idx = @dyn.index false
    @env[0..idx].reverse.inject { |env, scope| env.merge scope }
  end
 
  def current
    @env.first
  end
 
  def dynamic
    idx = @dyn.index false
    @env[0...idx].reverse.inject { |env, scope| env.merge scope } || {}
  end
 
  def dynamic?
    @dyn[0] != false
  end
 
  def extend dyn = false
    @dyn.unshift dyn
    @env.unshift({})
    @use.unshift({})
   end
 
  def initialize dyn = false
    @dyn = []
    @env = []
    @use = []
    @init = false
    self.extend
  end
 
  def unextend
    @dyn.shift
    @env.shift
    @use.shift
    raise "You went too far unextending env" if @env.empty?
  end
 
  def use id
    @env.each_with_index do |env, i|
      if env[id] then
        @use[i][id] = true
      end
    end
  end
 
  def used? id
    idx = @dyn.index false # REFACTOR
    u = @use[0...idx].reverse.inject { |env, scope| env.merge scope } || {}
    u[id]
  end
end
 
class StackState
  attr_reader :stack
 
  def initialize(name)
    @name = name
    @stack = [false]
  end
 
  def inspect
    "StackState(#{@name}, #{@stack.inspect})"
  end
 
  def is_in_state
    @stack.last
  end
 
  def lexpop
    raise if @stack.size == 0
    a = @stack.pop
    b = @stack.pop
    @stack.push(a || b)
  end
 
  def pop
    r = @stack.pop
    @stack.push false if @stack.size == 0
    r
  end
 
  def push val
    raise if val != true and val != false
    @stack.push val
  end
end
 
############################################################
# HACK HACK HACK HACK HACK HACK HACK HACK HACK HACK HACK HACK
 
class Symbol
  def is_argument # TODO: phase this out
    return self == :expr_arg || self == :expr_cmdarg
  end
end
 
class Sexp
  attr_writer :paren
  attr_accessor :comments
 
  def node_type
    first
  end
 
  def paren
    @paren ||= false
  end
 
  def value
    raise "multi item sexp" if size > 2
    last
  end
 
  def to_sym
    self.value.to_sym
  end
 
  def values
    self[1..-1]
  end
end
 
# END HACK
############################################################