summaryrefslogtreecommitdiff
path: root/tool/ruby_vm/loaders/opt_insn_unif_def.rb
blob: aa6fd79e79c4e4a1af574b9e210199ccdb8564e2 (plain)
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
#! /your/favourite/path/to/ruby
# -*- Ruby -*-
# -*- frozen_string_literal: true; -*-
# -*- warn_indent: true; -*-
#
# Copyright (c) 2017 Urabe, Shyouhei.  All rights reserved.
#
# This file is  a part of the programming language  Ruby.  Permission is hereby
# granted, to  either redistribute and/or  modify this file, provided  that the
# conditions  mentioned in  the file  COPYING are  met.  Consult  the file  for
# details.

require_relative '../helpers/scanner'

json    = []
scanner = RubyVM::Scanner.new '../../../defs/opt_insn_unif.def'
path    = scanner.__FILE__
until scanner.eos? do
  next  if scanner.scan(/\G ^ (?: \#.* )? \n /x)
  break if scanner.scan(/\G ^ __END__ $ /x)

  pos = scanner.scan!(/\G (?<series>  (?: [\ \t]* \w+ )+ ) \n /mx)
  json << {
    location: [path, pos],
    signature: scanner["series"].strip.split
  }
end

RubyVM::OptInsnUnifDef = json

if __FILE__ == $0 then
  require 'json'
  JSON.dump RubyVM::OptInsnUnifDef, STDOUT
end