debase-ruby_core_source 3.3.6 → 4.0.0.preview2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ruby-version +1 -0
- data/CHANGELOG.md +10 -0
- data/Rakefile +3 -1
- data/debase-ruby_core_source.gemspec +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/builtin.h +7 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/darray.h +1 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/id.h +5 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/insns.inc +2 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/insns_info.inc +310 -175
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/basic_operators.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/bits.h +82 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/encoding.h +2 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/error.h +26 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/fixnum.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/gc.h +14 -6
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/imemo.h +6 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/io.h +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/parse.h +2 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/proc.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/ractor.h +4 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/sanitizers.h +31 -39
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/string.h +22 -10
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/thread.h +23 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/vm.h +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/method.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/optunifs.inc +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/parse.h +2 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/ast.h +427 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/defines.h +8 -7
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/diagnostic.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/extension.h +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/prism.h +47 -11
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/version.h +2 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism_compile.h +5 -5
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/ractor_core.h +6 -6
- data/lib/debase/ruby_core_source/ruby-3.4.0-p-1/revision.h +5 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/rubyparser.h +3 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/thread_pthread.h +0 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/version.h +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/vm.inc +151 -88
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/vm_core.h +40 -12
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/vm_sync.h +3 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/vmtc.inc +2 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/yjit.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/builtin.h +7 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/darray.h +101 -14
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/debug_counter.h +6 -4
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/dln.h +1 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/eval_intern.h +7 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/id.h +16 -5
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/id_table.h +15 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/insns.inc +49 -6
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/insns_info.inc +2432 -721
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/array.h +3 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/basic_operators.h +2 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/bignum.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/bits.h +82 -0
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/internal/box.h +81 -0
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/internal/class.h +805 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/cmdlineopt.h +3 -4
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/internal/concurrent_set.h +21 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/encoding.h +4 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/error.h +35 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/eval.h +8 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/fixnum.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/gc.h +54 -30
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/hash.h +3 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/imemo.h +94 -32
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/inits.h +4 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/io.h +30 -7
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/load.h +2 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/numeric.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/object.h +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/parse.h +18 -4
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/proc.h +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/ractor.h +4 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/re.h +7 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/sanitizers.h +88 -39
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/internal/set_table.h +70 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/signal.h +1 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/st.h +1 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/string.h +39 -18
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/struct.h +38 -5
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/symbol.h +4 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/thread.h +42 -9
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/time.h +4 -1
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/variable.h +13 -11
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/internal/vm.h +6 -7
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal.h +0 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/iseq.h +19 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/known_errors.inc +103 -103
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/method.h +18 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/node.h +14 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/optunifs.inc +1 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/parse.h +37 -36
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/ast.h +2495 -507
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/defines.h +61 -7
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/diagnostic.h +31 -6
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/extension.h +5 -5
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/node.h +0 -21
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/options.h +186 -6
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/parser.h +85 -40
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/prism.h +88 -16
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/prism/regexp.h +43 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/static_literals.h +3 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/util/pm_buffer.h +18 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/util/pm_char.h +1 -2
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/util/pm_constant_pool.h +0 -8
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/util/pm_integer.h +26 -15
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/util/pm_list.h +6 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/util/pm_newline_list.h +11 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/util/pm_string.h +39 -13
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism/version.h +3 -3
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/prism_compile.h +30 -12
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/ractor_core.h +47 -134
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/regenc.h +9 -4
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/regint.h +0 -5
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/regparse.h +2 -2
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/revision.h +5 -0
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/ruby_atomic.h +66 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/rubyparser.h +214 -250
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/shape.h +444 -0
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/symbol.h +8 -10
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/thread_pthread.h +36 -27
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/variable.h +8 -20
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/vm.inc +884 -344
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/vm_callinfo.h +110 -75
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/vm_core.h +220 -106
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/vm_exec.h +15 -4
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/vm_insnhelper.h +11 -6
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/vm_sync.h +23 -4
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-4.0.0-preview2}/vmtc.inc +42 -6
- data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/yjit.h +5 -3
- data/lib/debase/ruby_core_source/ruby-4.0.0-preview2/zjit.h +47 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- data/lib/debase/ruby_core_source.rb +4 -2
- data/test/deduce_source_dir_test.rb +31 -0
- metadata +307 -293
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/class.h +0 -283
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/regexp.h +0 -33
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_string_list.h +0 -44
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/revision.h +0 -5
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/shape.h +0 -233
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/revision.h +0 -5
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/rjit.h +0 -101
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/rjit_c.h +0 -165
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ruby_atomic.h +0 -23
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/addr2line.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/ccan/build_assert/build_assert.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/ccan/check_type/check_type.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/ccan/container_of/container_of.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/ccan/list/list.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/ccan/str/str.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/constant.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/debug_counter.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/dln.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/encindex.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/eval_intern.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/hrtime.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/id_table.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/array.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/bignum.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/class.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/cmdlineopt.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/compar.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/compile.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/compilers.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/complex.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/cont.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/dir.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/enc.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/enum.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/enumerator.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/eval.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/file.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/internal/hash.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/inits.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/load.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/loadpath.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/math.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/missing.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/numeric.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/object.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/process.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/random.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/range.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/rational.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/re.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/ruby_parser.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/serial.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/signal.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/st.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/static_assert.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/struct.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/symbol.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/time.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/transcode.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/util.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/variable.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal/warnings.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/internal.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/iseq.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/known_errors.inc +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/node.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/node_name.inc +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/optinsn.inc +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/parser_bits.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/parser_node.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/parser_st.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/parser_value.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/encoding.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/node.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/options.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/pack.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/parser.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/prettyprint.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/regexp.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/static_literals.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/util/pm_buffer.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/util/pm_char.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/util/pm_constant_pool.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/util/pm_integer.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/util/pm_list.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/util/pm_memchr.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/util/pm_newline_list.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/prism/util/pm_string.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/util/pm_strncasecmp.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/prism/util/pm_strpbrk.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/probes_helper.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/regenc.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/regint.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/regparse.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/rjit.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/rjit_c.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/ruby_assert.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/ruby_atomic.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/shape.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/siphash.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/symbol.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/thread_none.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/thread_win32.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/timev.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/transcode_data.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/variable.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/vm_call_iseq_optimized.inc +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/vm_callinfo.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/vm_debug.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/vm_exec.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-3.4.0-p-1}/vm_insnhelper.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview1 → ruby-3.4.0-p-1}/vm_opts.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/addr2line.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/ccan/build_assert/build_assert.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/ccan/check_type/check_type.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/ccan/container_of/container_of.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/ccan/list/list.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/ccan/str/str.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/constant.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/encindex.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/hrtime.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/compar.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/compile.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/compilers.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/complex.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/cont.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/dir.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/enc.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/enum.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/enumerator.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/file.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/loadpath.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/math.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/missing.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/process.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/random.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/range.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/rational.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/ruby_parser.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/serial.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/static_assert.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/transcode.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/util.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/internal/warnings.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/node_name.inc +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/optinsn.inc +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/parser_bits.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/parser_node.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/parser_st.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/parser_value.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/encoding.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/pack.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/prettyprint.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/util/pm_memchr.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/util/pm_strncasecmp.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/prism/util/pm_strpbrk.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/probes_helper.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/ruby_assert.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/siphash.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/thread_none.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/thread_win32.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/timev.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/transcode_data.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/version.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/vm_call_iseq_optimized.inc +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/vm_debug.h +0 -0
- /data/lib/debase/ruby_core_source/{ruby-3.4.0-preview2 → ruby-4.0.0-preview2}/vm_opts.h +0 -0
|
@@ -149,6 +149,7 @@ const char rb_vm_insn_name_base[] =
|
|
|
149
149
|
"opt_str_freeze" "\0"
|
|
150
150
|
"opt_nil_p" "\0"
|
|
151
151
|
"opt_str_uminus" "\0"
|
|
152
|
+
"opt_duparray_send" "\0"
|
|
152
153
|
"opt_newarray_send" "\0"
|
|
153
154
|
"invokesuper" "\0"
|
|
154
155
|
"invokesuperforward" "\0"
|
|
@@ -258,6 +259,7 @@ const char rb_vm_insn_name_base[] =
|
|
|
258
259
|
"trace_opt_str_freeze" "\0"
|
|
259
260
|
"trace_opt_nil_p" "\0"
|
|
260
261
|
"trace_opt_str_uminus" "\0"
|
|
262
|
+
"trace_opt_duparray_send" "\0"
|
|
261
263
|
"trace_opt_newarray_send" "\0"
|
|
262
264
|
"trace_invokesuper" "\0"
|
|
263
265
|
"trace_invokesuperforward" "\0"
|
|
@@ -311,20 +313,20 @@ const unsigned short rb_vm_insn_name_offset[] = {
|
|
|
311
313
|
313, 325, 334, 341, 350, 369, 378, 386, 398, 410, 424, 436,
|
|
312
314
|
447, 455, 463, 472, 476, 480, 485, 490, 502, 507, 512, 524,
|
|
313
315
|
532, 544, 555, 568, 578, 590, 603, 617, 622, 634, 657, 669,
|
|
314
|
-
684, 700, 715, 725, 740, 758,
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
1914,
|
|
322
|
-
2074,
|
|
323
|
-
2291,
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
316
|
+
684, 700, 715, 725, 740, 758, 776, 788, 807, 819, 825, 831,
|
|
317
|
+
836, 845, 858, 868, 873, 891, 900, 910, 919, 927, 935, 942,
|
|
318
|
+
950, 957, 964, 971, 978, 987, 995, 1002, 1011, 1020, 1034, 1048,
|
|
319
|
+
1059, 1068, 1080, 1089, 1097, 1114, 1128, 1155, 1188, 1202, 1216, 1230,
|
|
320
|
+
1244, 1265, 1286, 1296, 1311, 1326, 1346, 1366, 1391, 1408, 1425, 1451,
|
|
321
|
+
1477, 1500, 1523, 1550, 1568, 1586, 1602, 1618, 1631, 1645, 1661, 1684,
|
|
322
|
+
1700, 1723, 1743, 1761, 1776, 1789, 1804, 1829, 1844, 1858, 1876, 1894,
|
|
323
|
+
1914, 1932, 1949, 1963, 1977, 1992, 2002, 2012, 2023, 2034, 2052, 2063,
|
|
324
|
+
2074, 2092, 2106, 2124, 2141, 2160, 2176, 2194, 2213, 2233, 2244, 2262,
|
|
325
|
+
2291, 2309, 2330, 2352, 2373, 2389, 2410, 2434, 2458, 2476, 2501, 2519,
|
|
326
|
+
2531, 2543, 2554, 2569, 2588, 2604, 2615, 2639, 2654, 2670, 2685, 2699,
|
|
327
|
+
2713, 2726, 2740, 2753, 2766, 2779, 2792, 2807, 2821, 2834, 2849, 2864,
|
|
328
|
+
2884, 2904, 2921, 2936, 2954, 2969, 2983, 3006, 3026, 3059, 3098, 3118,
|
|
329
|
+
3138, 3158, 3178, 3205,
|
|
328
330
|
};
|
|
329
331
|
|
|
330
332
|
ASSERT_VM_INSTRUCTION_SIZE(rb_vm_insn_name_offset);
|
|
@@ -346,14 +348,14 @@ RUBY_SYMBOL_EXPORT_END
|
|
|
346
348
|
const uint8_t rb_vm_insn_len_info[] = {
|
|
347
349
|
1, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2,
|
|
348
350
|
2, 1, 3, 1, 2, 1, 2, 2, 3, 1, 1, 2, 2, 1, 2, 2, 1, 1, 2, 1, 2, 2, 2,
|
|
349
|
-
2, 4, 4, 2, 3, 2, 4, 3, 3, 3, 3, 2, 2, 3, 3, 3, 2, 3, 3, 3, 3, 2,
|
|
350
|
-
2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
351
|
-
3, 3, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 1, 1, 1, 3, 3, 3, 3,
|
|
352
|
-
3, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 1, 3, 1, 2,
|
|
353
|
-
2, 2, 3, 1, 1, 2, 2, 1, 2, 2, 1, 1, 2, 1, 2, 2, 2, 2, 4, 4, 2, 3,
|
|
354
|
-
4, 3, 3, 3, 3, 2, 2, 3, 3, 3, 2, 3, 3, 3, 3, 2, 1, 2, 2, 2, 2,
|
|
355
|
-
3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2,
|
|
356
|
-
2, 2, 2, 3, 3, 2, 2, 2, 2, 1, 1,
|
|
351
|
+
2, 4, 4, 2, 3, 2, 4, 3, 3, 3, 3, 2, 2, 3, 3, 3, 2, 3, 4, 3, 3, 3, 2,
|
|
352
|
+
1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
353
|
+
2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 1, 1, 1, 3, 3, 3, 3,
|
|
354
|
+
3, 3, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 1, 3, 1, 2,
|
|
355
|
+
1, 2, 2, 3, 1, 1, 2, 2, 1, 2, 2, 1, 1, 2, 1, 2, 2, 2, 2, 4, 4, 2, 3,
|
|
356
|
+
2, 4, 3, 3, 3, 3, 2, 2, 3, 3, 3, 2, 3, 4, 3, 3, 3, 2, 1, 2, 2, 2, 2,
|
|
357
|
+
2, 3, 3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2,
|
|
358
|
+
2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 1, 1,
|
|
357
359
|
};
|
|
358
360
|
|
|
359
361
|
ASSERT_VM_INSTRUCTION_SIZE(rb_vm_insn_len_info);
|
|
@@ -387,38 +389,38 @@ const char rb_vm_insn_op_base[] =
|
|
|
387
389
|
"N" "\0" "N" "\0" "NVV" "\0" "IAV" "\0" "N" "\0"
|
|
388
390
|
"LL" "\0" "N" "\0" "ISN" "\0" "IS" "\0" "IS" "\0"
|
|
389
391
|
"CS" "\0" "CS" "\0" "C" "\0" "C" "\0" "VC" "\0"
|
|
390
|
-
"VC" "\0" "VC" "\0" "C" "\0" "VC" "\0" "
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
"
|
|
394
|
-
"C" "\0" "C" "\0" "
|
|
392
|
+
"VC" "\0" "VC" "\0" "C" "\0" "VC" "\0" "VIN" "\0"
|
|
393
|
+
"NN" "\0" "CS" "\0" "CS" "\0" "C" "\0" "" "\0"
|
|
394
|
+
"N" "\0" "O" "\0" "O" "\0" "O" "\0" "O" "\0"
|
|
395
|
+
"ST" "\0" "HO" "\0" "C" "\0" "C" "\0" "C" "\0"
|
|
396
|
+
"C" "\0" "C" "\0" "C" "\0" "CC" "\0" "C" "\0"
|
|
395
397
|
"C" "\0" "C" "\0" "C" "\0" "C" "\0" "C" "\0"
|
|
396
|
-
"C" "\0" "C" "\0" "
|
|
398
|
+
"C" "\0" "C" "\0" "C" "\0" "VC" "\0" "VC" "\0"
|
|
397
399
|
"C" "\0" "C" "\0" "C" "\0" "C" "\0" "C" "\0"
|
|
398
|
-
"
|
|
399
|
-
"L" "\0" "L" "\0" ""
|
|
400
|
-
"
|
|
401
|
-
"
|
|
402
|
-
"IJ" "\0" "
|
|
403
|
-
"I" "\0" ""
|
|
404
|
-
"
|
|
405
|
-
""
|
|
406
|
-
"
|
|
407
|
-
""
|
|
408
|
-
"
|
|
409
|
-
"N" "\0" "
|
|
410
|
-
"
|
|
411
|
-
"CS" "\0" "
|
|
412
|
-
"VC" "\0" "
|
|
413
|
-
"
|
|
414
|
-
"
|
|
400
|
+
"C" "\0" "R" "\0" "RN" "\0" "RN" "\0" "L" "\0"
|
|
401
|
+
"L" "\0" "L" "\0" "L" "\0" "" "\0" "" "\0"
|
|
402
|
+
"" "\0" "LN" "\0" "LN" "\0" "LN" "\0" "LN" "\0"
|
|
403
|
+
"LN" "\0" "NN" "\0" "N" "\0" "IA" "\0" "IA" "\0"
|
|
404
|
+
"IJ" "\0" "IJ" "\0" "K" "\0" "I" "\0" "I" "\0"
|
|
405
|
+
"I" "\0" "I" "\0" "" "\0" "" "\0" "V" "\0"
|
|
406
|
+
"N" "\0" "V" "\0" "V" "\0" "N" "\0" "" "\0"
|
|
407
|
+
"NN" "\0" "" "\0" "N" "\0" "" "\0" "V" "\0"
|
|
408
|
+
"V" "\0" "NN" "\0" "" "\0" "" "\0" "N" "\0"
|
|
409
|
+
"V" "\0" "" "\0" "N" "\0" "N" "\0" "" "\0"
|
|
410
|
+
"" "\0" "N" "\0" "" "\0" "N" "\0" "N" "\0"
|
|
411
|
+
"N" "\0" "N" "\0" "NVV" "\0" "IAV" "\0" "N" "\0"
|
|
412
|
+
"LL" "\0" "N" "\0" "ISN" "\0" "IS" "\0" "IS" "\0"
|
|
413
|
+
"CS" "\0" "CS" "\0" "C" "\0" "C" "\0" "VC" "\0"
|
|
414
|
+
"VC" "\0" "VC" "\0" "C" "\0" "VC" "\0" "VIN" "\0"
|
|
415
|
+
"NN" "\0" "CS" "\0" "CS" "\0" "C" "\0" "" "\0"
|
|
416
|
+
"N" "\0" "O" "\0" "O" "\0" "O" "\0" "O" "\0"
|
|
417
|
+
"ST" "\0" "HO" "\0" "C" "\0" "C" "\0" "C" "\0"
|
|
418
|
+
"C" "\0" "C" "\0" "C" "\0" "CC" "\0" "C" "\0"
|
|
415
419
|
"C" "\0" "C" "\0" "C" "\0" "C" "\0" "C" "\0"
|
|
416
|
-
"C" "\0" "
|
|
420
|
+
"C" "\0" "C" "\0" "C" "\0" "VC" "\0" "VC" "\0"
|
|
417
421
|
"C" "\0" "C" "\0" "C" "\0" "C" "\0" "C" "\0"
|
|
418
|
-
"C" "\0" "
|
|
419
|
-
"
|
|
420
|
-
"RN" "\0" "RN" "\0" "L" "\0" "L" "\0" "L" "\0"
|
|
421
|
-
"L" "\0" "" "\0" "" "\0"
|
|
422
|
+
"C" "\0" "R" "\0" "RN" "\0" "RN" "\0" "L" "\0"
|
|
423
|
+
"L" "\0" "L" "\0" "L" "\0" "" "\0" "" "\0"
|
|
422
424
|
;
|
|
423
425
|
|
|
424
426
|
const unsigned short rb_vm_insn_op_offset[] = {
|
|
@@ -427,20 +429,20 @@ const unsigned short rb_vm_insn_op_offset[] = {
|
|
|
427
429
|
55, 56, 59, 60, 62, 63, 65, 67, 70, 71, 72, 74,
|
|
428
430
|
76, 77, 79, 81, 82, 83, 85, 86, 88, 90, 92, 94,
|
|
429
431
|
98, 102, 104, 107, 109, 113, 116, 119, 122, 125, 127, 129,
|
|
430
|
-
132, 135, 138, 140, 143,
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
432
|
+
132, 135, 138, 140, 143, 147, 150, 153, 156, 158, 159, 161,
|
|
433
|
+
163, 165, 167, 169, 172, 175, 177, 179, 181, 183, 185, 187,
|
|
434
|
+
190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 211, 214,
|
|
435
|
+
216, 218, 220, 222, 224, 226, 228, 231, 234, 236, 238, 240,
|
|
436
|
+
242, 243, 244, 245, 248, 251, 254, 257, 260, 263, 265, 268,
|
|
437
|
+
271, 274, 277, 279, 281, 283, 285, 287, 288, 289, 291, 293,
|
|
438
|
+
295, 297, 299, 300, 303, 304, 306, 307, 309, 311, 314, 315,
|
|
439
|
+
316, 318, 320, 321, 323, 325, 326, 327, 329, 330, 332, 334,
|
|
440
|
+
336, 338, 342, 346, 348, 351, 353, 357, 360, 363, 366, 369,
|
|
441
|
+
371, 373, 376, 379, 382, 384, 387, 391, 394, 397, 400, 402,
|
|
442
|
+
403, 405, 407, 409, 411, 413, 416, 419, 421, 423, 425, 427,
|
|
443
|
+
429, 431, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452,
|
|
444
|
+
455, 458, 460, 462, 464, 466, 468, 470, 472, 475, 478, 480,
|
|
445
|
+
482, 484, 486, 487,
|
|
444
446
|
};
|
|
445
447
|
|
|
446
448
|
ASSERT_VM_INSTRUCTION_SIZE(rb_vm_insn_op_offset);
|
|
@@ -508,7 +510,7 @@ leafness_of_checkmatch(rb_num_t flag)
|
|
|
508
510
|
return false;
|
|
509
511
|
}
|
|
510
512
|
}
|
|
511
|
-
#line
|
|
513
|
+
#line 514 "insns_info.inc"
|
|
512
514
|
|
|
513
515
|
#line 10 "tool/ruby_vm/views/_sp_inc_helpers.erb"
|
|
514
516
|
|
|
@@ -538,7 +540,7 @@ sp_inc_of_invokeblock(const struct rb_callinfo *ci)
|
|
|
538
540
|
* instructions, except that it does not pop receiver. */
|
|
539
541
|
return sp_inc_of_sendish(ci) + 1;
|
|
540
542
|
}
|
|
541
|
-
#line
|
|
543
|
+
#line 544 "insns_info.inc"
|
|
542
544
|
|
|
543
545
|
#ifndef RUBY_VM_EXEC_H
|
|
544
546
|
/* can't #include "vm_exec.h" here... */
|
|
@@ -1127,6 +1129,16 @@ PUREFUNC(MAYBE_UNUSED(static rb_num_t attr_popn_opt_str_uminus(VALUE str, CALL_D
|
|
|
1127
1129
|
PUREFUNC(MAYBE_UNUSED(static rb_num_t attr_retn_opt_str_uminus(VALUE str, CALL_DATA cd)));
|
|
1128
1130
|
PUREFUNC(MAYBE_UNUSED(static rb_snum_t attr_sp_inc_opt_str_uminus(VALUE str, CALL_DATA cd)));
|
|
1129
1131
|
PUREFUNC(MAYBE_UNUSED(static rb_num_t attr_width_opt_str_uminus(VALUE str, CALL_DATA cd)));
|
|
1132
|
+
PUREFUNC(MAYBE_UNUSED(static enum ruby_vminsn_type attr_bin_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1133
|
+
PUREFUNC(MAYBE_UNUSED(static rb_snum_t attr_comptime_sp_inc_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1134
|
+
PUREFUNC(MAYBE_UNUSED(static bool attr_handles_sp_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1135
|
+
PUREFUNC(MAYBE_UNUSED(static bool attr_leaf_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1136
|
+
PUREFUNC(MAYBE_UNUSED(static const char* attr_name_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1137
|
+
PUREFUNC(MAYBE_UNUSED(static rb_num_t attr_open_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1138
|
+
PUREFUNC(MAYBE_UNUSED(static rb_num_t attr_popn_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1139
|
+
PUREFUNC(MAYBE_UNUSED(static rb_num_t attr_retn_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1140
|
+
PUREFUNC(MAYBE_UNUSED(static rb_snum_t attr_sp_inc_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1141
|
+
PUREFUNC(MAYBE_UNUSED(static rb_num_t attr_width_opt_duparray_send(VALUE ary, ID method, rb_num_t argc)));
|
|
1130
1142
|
PUREFUNC(MAYBE_UNUSED(static enum ruby_vminsn_type attr_bin_opt_newarray_send(rb_num_t num, rb_num_t method)));
|
|
1131
1143
|
PUREFUNC(MAYBE_UNUSED(static rb_snum_t attr_comptime_sp_inc_opt_newarray_send(rb_num_t num, rb_num_t method)));
|
|
1132
1144
|
PUREFUNC(MAYBE_UNUSED(static bool attr_handles_sp_opt_newarray_send(rb_num_t num, rb_num_t method)));
|
|
@@ -2080,7 +2092,7 @@ attr_leaf_getspecial(
|
|
|
2080
2092
|
return
|
|
2081
2093
|
#line 192 "insns.def"
|
|
2082
2094
|
(type == 0) ? true : false;
|
|
2083
|
-
#line
|
|
2095
|
+
#line 2096 "insns_info.inc"
|
|
2084
2096
|
}
|
|
2085
2097
|
|
|
2086
2098
|
/* attr const char* name @ getspecial(key, type)()(val) */
|
|
@@ -2236,7 +2248,7 @@ attr_leaf_getinstancevariable(
|
|
|
2236
2248
|
return
|
|
2237
2249
|
#line 214 "insns.def"
|
|
2238
2250
|
false;
|
|
2239
|
-
#line
|
|
2251
|
+
#line 2252 "insns_info.inc"
|
|
2240
2252
|
}
|
|
2241
2253
|
|
|
2242
2254
|
/* attr const char* name @ getinstancevariable(id, ic)()(val) */
|
|
@@ -2329,7 +2341,7 @@ attr_leaf_setinstancevariable(
|
|
|
2329
2341
|
return
|
|
2330
2342
|
#line 225 "insns.def"
|
|
2331
2343
|
false;
|
|
2332
|
-
#line
|
|
2344
|
+
#line 2345 "insns_info.inc"
|
|
2333
2345
|
}
|
|
2334
2346
|
|
|
2335
2347
|
/* attr const char* name @ setinstancevariable(id, ic)(val)() */
|
|
@@ -2422,7 +2434,7 @@ attr_leaf_getclassvariable(
|
|
|
2422
2434
|
return
|
|
2423
2435
|
#line 237 "insns.def"
|
|
2424
2436
|
false;
|
|
2425
|
-
#line
|
|
2437
|
+
#line 2438 "insns_info.inc"
|
|
2426
2438
|
}
|
|
2427
2439
|
|
|
2428
2440
|
/* attr const char* name @ getclassvariable(id, ic)()(val) */
|
|
@@ -2515,7 +2527,7 @@ attr_leaf_setclassvariable(
|
|
|
2515
2527
|
return
|
|
2516
2528
|
#line 250 "insns.def"
|
|
2517
2529
|
false;
|
|
2518
|
-
#line
|
|
2530
|
+
#line 2531 "insns_info.inc"
|
|
2519
2531
|
}
|
|
2520
2532
|
|
|
2521
2533
|
/* attr const char* name @ setclassvariable(id, ic)(val)() */
|
|
@@ -2599,7 +2611,7 @@ attr_leaf_opt_getconstant_path(MAYBE_UNUSED(IC ic))
|
|
|
2599
2611
|
return
|
|
2600
2612
|
#line 261 "insns.def"
|
|
2601
2613
|
false;
|
|
2602
|
-
#line
|
|
2614
|
+
#line 2615 "insns_info.inc"
|
|
2603
2615
|
}
|
|
2604
2616
|
|
|
2605
2617
|
/* attr const char* name @ opt_getconstant_path(ic)()(val) */
|
|
@@ -2665,7 +2677,7 @@ attr_leaf_getconstant(MAYBE_UNUSED(ID id))
|
|
|
2665
2677
|
return
|
|
2666
2678
|
#line 276 "insns.def"
|
|
2667
2679
|
false;
|
|
2668
|
-
#line
|
|
2680
|
+
#line 2681 "insns_info.inc"
|
|
2669
2681
|
}
|
|
2670
2682
|
|
|
2671
2683
|
/* attr const char* name @ getconstant(id)(klass, allow_nil)(val) */
|
|
@@ -2731,7 +2743,7 @@ attr_leaf_setconstant(MAYBE_UNUSED(ID id))
|
|
|
2731
2743
|
return
|
|
2732
2744
|
#line 292 "insns.def"
|
|
2733
2745
|
false;
|
|
2734
|
-
#line
|
|
2746
|
+
#line 2747 "insns_info.inc"
|
|
2735
2747
|
}
|
|
2736
2748
|
|
|
2737
2749
|
/* attr const char* name @ setconstant(id)(val, cbase)() */
|
|
@@ -2797,7 +2809,7 @@ attr_leaf_getglobal(MAYBE_UNUSED(ID gid))
|
|
|
2797
2809
|
return
|
|
2798
2810
|
#line 305 "insns.def"
|
|
2799
2811
|
false;
|
|
2800
|
-
#line
|
|
2812
|
+
#line 2813 "insns_info.inc"
|
|
2801
2813
|
}
|
|
2802
2814
|
|
|
2803
2815
|
/* attr const char* name @ getglobal(gid)()(val) */
|
|
@@ -2863,7 +2875,7 @@ attr_leaf_setglobal(MAYBE_UNUSED(ID gid))
|
|
|
2863
2875
|
return
|
|
2864
2876
|
#line 316 "insns.def"
|
|
2865
2877
|
false;
|
|
2866
|
-
#line
|
|
2878
|
+
#line 2879 "insns_info.inc"
|
|
2867
2879
|
}
|
|
2868
2880
|
|
|
2869
2881
|
/* attr const char* name @ setglobal(gid)(val)() */
|
|
@@ -3118,7 +3130,7 @@ attr_leaf_putspecialobject(MAYBE_UNUSED(rb_num_t value_type))
|
|
|
3118
3130
|
return
|
|
3119
3131
|
#line 363 "insns.def"
|
|
3120
3132
|
(value_type == VM_SPECIAL_OBJECT_VMCORE);
|
|
3121
|
-
#line
|
|
3133
|
+
#line 3134 "insns_info.inc"
|
|
3122
3134
|
}
|
|
3123
3135
|
|
|
3124
3136
|
/* attr const char* name @ putspecialobject(value_type)()(val) */
|
|
@@ -3310,7 +3322,7 @@ attr_leaf_concatstrings(MAYBE_UNUSED(rb_num_t num))
|
|
|
3310
3322
|
return
|
|
3311
3323
|
#line 399 "insns.def"
|
|
3312
3324
|
false;
|
|
3313
|
-
#line
|
|
3325
|
+
#line 3326 "insns_info.inc"
|
|
3314
3326
|
}
|
|
3315
3327
|
|
|
3316
3328
|
/* attr const char* name @ concatstrings(num)(...)(val) */
|
|
@@ -3348,7 +3360,7 @@ attr_sp_inc_concatstrings(MAYBE_UNUSED(rb_num_t num))
|
|
|
3348
3360
|
return
|
|
3349
3361
|
#line 400 "insns.def"
|
|
3350
3362
|
1 - (rb_snum_t)num;
|
|
3351
|
-
#line
|
|
3363
|
+
#line 3364 "insns_info.inc"
|
|
3352
3364
|
}
|
|
3353
3365
|
|
|
3354
3366
|
/* attr rb_num_t width @ concatstrings(num)(...)(val) */
|
|
@@ -3451,7 +3463,7 @@ attr_leaf_toregexp(
|
|
|
3451
3463
|
return
|
|
3452
3464
|
#line 426 "insns.def"
|
|
3453
3465
|
false;
|
|
3454
|
-
#line
|
|
3466
|
+
#line 3467 "insns_info.inc"
|
|
3455
3467
|
}
|
|
3456
3468
|
|
|
3457
3469
|
/* attr const char* name @ toregexp(opt, cnt)(...)(val) */
|
|
@@ -3504,7 +3516,7 @@ attr_sp_inc_toregexp(
|
|
|
3504
3516
|
return
|
|
3505
3517
|
#line 427 "insns.def"
|
|
3506
3518
|
1 - (rb_snum_t)cnt;
|
|
3507
|
-
#line
|
|
3519
|
+
#line 3520 "insns_info.inc"
|
|
3508
3520
|
}
|
|
3509
3521
|
|
|
3510
3522
|
/* attr rb_num_t width @ toregexp(opt, cnt)(...)(val) */
|
|
@@ -3636,7 +3648,7 @@ attr_sp_inc_newarray(MAYBE_UNUSED(rb_num_t num))
|
|
|
3636
3648
|
return
|
|
3637
3649
|
#line 450 "insns.def"
|
|
3638
3650
|
1 - (rb_snum_t)num;
|
|
3639
|
-
#line
|
|
3651
|
+
#line 3652 "insns_info.inc"
|
|
3640
3652
|
}
|
|
3641
3653
|
|
|
3642
3654
|
/* attr rb_num_t width @ newarray(num)(...)(val) */
|
|
@@ -3855,7 +3867,7 @@ attr_handles_sp_expandarray(
|
|
|
3855
3867
|
return
|
|
3856
3868
|
#line 505 "insns.def"
|
|
3857
3869
|
true;
|
|
3858
|
-
#line
|
|
3870
|
+
#line 3871 "insns_info.inc"
|
|
3859
3871
|
}
|
|
3860
3872
|
|
|
3861
3873
|
/* attr bool leaf @ expandarray(num, flag)(..., ary)(...) */
|
|
@@ -3868,7 +3880,7 @@ attr_leaf_expandarray(
|
|
|
3868
3880
|
return
|
|
3869
3881
|
#line 506 "insns.def"
|
|
3870
3882
|
false;
|
|
3871
|
-
#line
|
|
3883
|
+
#line 3884 "insns_info.inc"
|
|
3872
3884
|
}
|
|
3873
3885
|
|
|
3874
3886
|
/* attr const char* name @ expandarray(num, flag)(..., ary)(...) */
|
|
@@ -3921,7 +3933,7 @@ attr_sp_inc_expandarray(
|
|
|
3921
3933
|
return
|
|
3922
3934
|
#line 507 "insns.def"
|
|
3923
3935
|
(rb_snum_t)num - 1 + (flag & 1 ? 1 : 0);
|
|
3924
|
-
#line
|
|
3936
|
+
#line 3937 "insns_info.inc"
|
|
3925
3937
|
}
|
|
3926
3938
|
|
|
3927
3939
|
/* attr rb_num_t width @ expandarray(num, flag)(..., ary)(...) */
|
|
@@ -3955,7 +3967,7 @@ attr_leaf_concatarray(void)
|
|
|
3955
3967
|
return
|
|
3956
3968
|
#line 520 "insns.def"
|
|
3957
3969
|
false;
|
|
3958
|
-
#line
|
|
3970
|
+
#line 3971 "insns_info.inc"
|
|
3959
3971
|
}
|
|
3960
3972
|
|
|
3961
3973
|
/* attr const char* name @ concatarray()(ary1, ary2)(ary) */
|
|
@@ -4021,7 +4033,7 @@ attr_leaf_concattoarray(void)
|
|
|
4021
4033
|
return
|
|
4022
4034
|
#line 534 "insns.def"
|
|
4023
4035
|
false;
|
|
4024
|
-
#line
|
|
4036
|
+
#line 4037 "insns_info.inc"
|
|
4025
4037
|
}
|
|
4026
4038
|
|
|
4027
4039
|
/* attr const char* name @ concattoarray()(ary1, ary2)(ary) */
|
|
@@ -4122,7 +4134,7 @@ attr_sp_inc_pushtoarray(MAYBE_UNUSED(rb_num_t num))
|
|
|
4122
4134
|
return
|
|
4123
4135
|
#line 545 "insns.def"
|
|
4124
4136
|
-(rb_snum_t)num;
|
|
4125
|
-
#line
|
|
4137
|
+
#line 4138 "insns_info.inc"
|
|
4126
4138
|
}
|
|
4127
4139
|
|
|
4128
4140
|
/* attr rb_num_t width @ pushtoarray(num)(...)(val) */
|
|
@@ -4153,7 +4165,7 @@ attr_leaf_splatarray(MAYBE_UNUSED(VALUE flag))
|
|
|
4153
4165
|
return
|
|
4154
4166
|
#line 557 "insns.def"
|
|
4155
4167
|
false;
|
|
4156
|
-
#line
|
|
4168
|
+
#line 4169 "insns_info.inc"
|
|
4157
4169
|
}
|
|
4158
4170
|
|
|
4159
4171
|
/* attr const char* name @ splatarray(flag)(ary)(obj) */
|
|
@@ -4219,7 +4231,7 @@ attr_leaf_splatkw(void)
|
|
|
4219
4231
|
return
|
|
4220
4232
|
#line 568 "insns.def"
|
|
4221
4233
|
false;
|
|
4222
|
-
#line
|
|
4234
|
+
#line 4235 "insns_info.inc"
|
|
4223
4235
|
}
|
|
4224
4236
|
|
|
4225
4237
|
/* attr const char* name @ splatkw()(hash, block)(obj, block) */
|
|
@@ -4285,7 +4297,7 @@ attr_leaf_newhash(MAYBE_UNUSED(rb_num_t num))
|
|
|
4285
4297
|
return
|
|
4286
4298
|
#line 584 "insns.def"
|
|
4287
4299
|
false;
|
|
4288
|
-
#line
|
|
4300
|
+
#line 4301 "insns_info.inc"
|
|
4289
4301
|
}
|
|
4290
4302
|
|
|
4291
4303
|
/* attr const char* name @ newhash(num)(...)(val) */
|
|
@@ -4323,7 +4335,7 @@ attr_sp_inc_newhash(MAYBE_UNUSED(rb_num_t num))
|
|
|
4323
4335
|
return
|
|
4324
4336
|
#line 585 "insns.def"
|
|
4325
4337
|
1 - (rb_snum_t)num;
|
|
4326
|
-
#line
|
|
4338
|
+
#line 4339 "insns_info.inc"
|
|
4327
4339
|
}
|
|
4328
4340
|
|
|
4329
4341
|
/* attr rb_num_t width @ newhash(num)(...)(val) */
|
|
@@ -4354,7 +4366,7 @@ attr_leaf_newrange(MAYBE_UNUSED(rb_num_t flag))
|
|
|
4354
4366
|
return
|
|
4355
4367
|
#line 605 "insns.def"
|
|
4356
4368
|
false;
|
|
4357
|
-
#line
|
|
4369
|
+
#line 4370 "insns_info.inc"
|
|
4358
4370
|
}
|
|
4359
4371
|
|
|
4360
4372
|
/* attr const char* name @ newrange(flag)(low, high)(val) */
|
|
@@ -4581,7 +4593,7 @@ attr_sp_inc_dupn(MAYBE_UNUSED(rb_num_t n))
|
|
|
4581
4593
|
return
|
|
4582
4594
|
#line 641 "insns.def"
|
|
4583
4595
|
n;
|
|
4584
|
-
#line
|
|
4596
|
+
#line 4597 "insns_info.inc"
|
|
4585
4597
|
}
|
|
4586
4598
|
|
|
4587
4599
|
/* attr rb_num_t width @ dupn(n)(...)(...) */
|
|
@@ -4710,7 +4722,7 @@ attr_sp_inc_opt_reverse(MAYBE_UNUSED(rb_num_t n))
|
|
|
4710
4722
|
return
|
|
4711
4723
|
#line 665 "insns.def"
|
|
4712
4724
|
0;
|
|
4713
|
-
#line
|
|
4725
|
+
#line 4726 "insns_info.inc"
|
|
4714
4726
|
}
|
|
4715
4727
|
|
|
4716
4728
|
/* attr rb_num_t width @ opt_reverse(n)(...)(...) */
|
|
@@ -4776,7 +4788,7 @@ attr_sp_inc_topn(MAYBE_UNUSED(rb_num_t n))
|
|
|
4776
4788
|
return
|
|
4777
4789
|
#line 695 "insns.def"
|
|
4778
4790
|
1;
|
|
4779
|
-
#line
|
|
4791
|
+
#line 4792 "insns_info.inc"
|
|
4780
4792
|
}
|
|
4781
4793
|
|
|
4782
4794
|
/* attr rb_num_t width @ topn(n)(...)(val) */
|
|
@@ -4842,7 +4854,7 @@ attr_sp_inc_setn(MAYBE_UNUSED(rb_num_t n))
|
|
|
4842
4854
|
return
|
|
4843
4855
|
#line 706 "insns.def"
|
|
4844
4856
|
0;
|
|
4845
|
-
#line
|
|
4857
|
+
#line 4858 "insns_info.inc"
|
|
4846
4858
|
}
|
|
4847
4859
|
|
|
4848
4860
|
/* attr rb_num_t width @ setn(n)(..., val)(val) */
|
|
@@ -4908,7 +4920,7 @@ attr_sp_inc_adjuststack(MAYBE_UNUSED(rb_num_t n))
|
|
|
4908
4920
|
return
|
|
4909
4921
|
#line 717 "insns.def"
|
|
4910
4922
|
-(rb_snum_t)n;
|
|
4911
|
-
#line
|
|
4923
|
+
#line 4924 "insns_info.inc"
|
|
4912
4924
|
}
|
|
4913
4925
|
|
|
4914
4926
|
/* attr rb_num_t width @ adjuststack(n)(...)(...) */
|
|
@@ -4951,7 +4963,7 @@ attr_leaf_defined(
|
|
|
4951
4963
|
return
|
|
4952
4964
|
#line 732 "insns.def"
|
|
4953
4965
|
leafness_of_defined(op_type);
|
|
4954
|
-
#line
|
|
4966
|
+
#line 4967 "insns_info.inc"
|
|
4955
4967
|
}
|
|
4956
4968
|
|
|
4957
4969
|
/* attr const char* name @ defined(op_type, obj, pushval)(v)(val) */
|
|
@@ -5053,7 +5065,7 @@ attr_leaf_definedivar(
|
|
|
5053
5065
|
return
|
|
5054
5066
|
#line 746 "insns.def"
|
|
5055
5067
|
false;
|
|
5056
|
-
#line
|
|
5068
|
+
#line 5069 "insns_info.inc"
|
|
5057
5069
|
}
|
|
5058
5070
|
|
|
5059
5071
|
/* attr const char* name @ definedivar(id, ic, pushval)()(val) */
|
|
@@ -5143,7 +5155,7 @@ attr_leaf_checkmatch(MAYBE_UNUSED(rb_num_t flag))
|
|
|
5143
5155
|
return
|
|
5144
5156
|
#line 766 "insns.def"
|
|
5145
5157
|
leafness_of_checkmatch(flag);
|
|
5146
|
-
#line
|
|
5158
|
+
#line 5159 "insns_info.inc"
|
|
5147
5159
|
}
|
|
5148
5160
|
|
|
5149
5161
|
/* attr const char* name @ checkmatch(flag)(target, pattern)(result) */
|
|
@@ -5640,7 +5652,7 @@ attr_comptime_sp_inc_send(
|
|
|
5640
5652
|
return
|
|
5641
5653
|
#line 848 "insns.def"
|
|
5642
5654
|
sp_inc_of_sendish(ci);
|
|
5643
|
-
#line
|
|
5655
|
+
#line 5656 "insns_info.inc"
|
|
5644
5656
|
}
|
|
5645
5657
|
|
|
5646
5658
|
/* attr bool handles_sp @ send(cd, blockiseq)(...)(val) */
|
|
@@ -5713,7 +5725,7 @@ attr_sp_inc_send(
|
|
|
5713
5725
|
return
|
|
5714
5726
|
#line 847 "insns.def"
|
|
5715
5727
|
sp_inc_of_sendish(cd->ci);
|
|
5716
|
-
#line
|
|
5728
|
+
#line 5729 "insns_info.inc"
|
|
5717
5729
|
}
|
|
5718
5730
|
|
|
5719
5731
|
/* attr rb_num_t width @ send(cd, blockiseq)(...)(val) */
|
|
@@ -5746,7 +5758,7 @@ attr_comptime_sp_inc_sendforward(
|
|
|
5746
5758
|
return
|
|
5747
5759
|
#line 867 "insns.def"
|
|
5748
5760
|
sp_inc_of_sendish(ci);
|
|
5749
|
-
#line
|
|
5761
|
+
#line 5762 "insns_info.inc"
|
|
5750
5762
|
}
|
|
5751
5763
|
|
|
5752
5764
|
/* attr bool handles_sp @ sendforward(cd, blockiseq)(...)(val) */
|
|
@@ -5819,7 +5831,7 @@ attr_sp_inc_sendforward(
|
|
|
5819
5831
|
return
|
|
5820
5832
|
#line 866 "insns.def"
|
|
5821
5833
|
sp_inc_of_sendish(cd->ci);
|
|
5822
|
-
#line
|
|
5834
|
+
#line 5835 "insns_info.inc"
|
|
5823
5835
|
}
|
|
5824
5836
|
|
|
5825
5837
|
/* attr rb_num_t width @ sendforward(cd, blockiseq)(...)(val) */
|
|
@@ -5846,7 +5858,7 @@ attr_comptime_sp_inc_opt_send_without_block(MAYBE_UNUSED(CALL_INFO ci))
|
|
|
5846
5858
|
return
|
|
5847
5859
|
#line 895 "insns.def"
|
|
5848
5860
|
sp_inc_of_sendish(ci);
|
|
5849
|
-
#line
|
|
5861
|
+
#line 5862 "insns_info.inc"
|
|
5850
5862
|
}
|
|
5851
5863
|
|
|
5852
5864
|
/* attr bool handles_sp @ opt_send_without_block(cd)(...)(val) */
|
|
@@ -5856,7 +5868,7 @@ attr_handles_sp_opt_send_without_block(MAYBE_UNUSED(CALL_DATA cd))
|
|
|
5856
5868
|
return
|
|
5857
5869
|
#line 893 "insns.def"
|
|
5858
5870
|
true;
|
|
5859
|
-
#line
|
|
5871
|
+
#line 5872 "insns_info.inc"
|
|
5860
5872
|
}
|
|
5861
5873
|
|
|
5862
5874
|
/* attr bool leaf @ opt_send_without_block(cd)(...)(val) */
|
|
@@ -5901,7 +5913,7 @@ attr_sp_inc_opt_send_without_block(MAYBE_UNUSED(CALL_DATA cd))
|
|
|
5901
5913
|
return
|
|
5902
5914
|
#line 894 "insns.def"
|
|
5903
5915
|
sp_inc_of_sendish(cd->ci);
|
|
5904
|
-
#line
|
|
5916
|
+
#line 5917 "insns_info.inc"
|
|
5905
5917
|
}
|
|
5906
5918
|
|
|
5907
5919
|
/* attr rb_num_t width @ opt_send_without_block(cd)(...)(val) */
|
|
@@ -5932,7 +5944,7 @@ attr_leaf_objtostring(MAYBE_UNUSED(CALL_DATA cd))
|
|
|
5932
5944
|
return
|
|
5933
5945
|
#line 913 "insns.def"
|
|
5934
5946
|
false;
|
|
5935
|
-
#line
|
|
5947
|
+
#line 5948 "insns_info.inc"
|
|
5936
5948
|
}
|
|
5937
5949
|
|
|
5938
5950
|
/* attr const char* name @ objtostring(cd)(recv)(val) */
|
|
@@ -6400,6 +6412,125 @@ attr_width_opt_str_uminus(
|
|
|
6400
6412
|
return 3;
|
|
6401
6413
|
}
|
|
6402
6414
|
|
|
6415
|
+
/* attr enum ruby_vminsn_type bin @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6416
|
+
enum ruby_vminsn_type
|
|
6417
|
+
attr_bin_opt_duparray_send(
|
|
6418
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6419
|
+
MAYBE_UNUSED(ID method),
|
|
6420
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6421
|
+
)
|
|
6422
|
+
{
|
|
6423
|
+
return BIN(opt_duparray_send);
|
|
6424
|
+
}
|
|
6425
|
+
|
|
6426
|
+
/* attr rb_snum_t comptime_sp_inc @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6427
|
+
rb_snum_t
|
|
6428
|
+
attr_comptime_sp_inc_opt_duparray_send(
|
|
6429
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6430
|
+
MAYBE_UNUSED(ID method),
|
|
6431
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6432
|
+
)
|
|
6433
|
+
{
|
|
6434
|
+
return
|
|
6435
|
+
#line 1005 "insns.def"
|
|
6436
|
+
1 - (rb_snum_t)argc;
|
|
6437
|
+
#line 6438 "insns_info.inc"
|
|
6438
|
+
}
|
|
6439
|
+
|
|
6440
|
+
/* attr bool handles_sp @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6441
|
+
bool
|
|
6442
|
+
attr_handles_sp_opt_duparray_send(
|
|
6443
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6444
|
+
MAYBE_UNUSED(ID method),
|
|
6445
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6446
|
+
)
|
|
6447
|
+
{
|
|
6448
|
+
return false;
|
|
6449
|
+
}
|
|
6450
|
+
|
|
6451
|
+
/* attr bool leaf @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6452
|
+
bool
|
|
6453
|
+
attr_leaf_opt_duparray_send(
|
|
6454
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6455
|
+
MAYBE_UNUSED(ID method),
|
|
6456
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6457
|
+
)
|
|
6458
|
+
{
|
|
6459
|
+
return
|
|
6460
|
+
#line 1003 "insns.def"
|
|
6461
|
+
false;
|
|
6462
|
+
#line 6463 "insns_info.inc"
|
|
6463
|
+
}
|
|
6464
|
+
|
|
6465
|
+
/* attr const char* name @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6466
|
+
const char*
|
|
6467
|
+
attr_name_opt_duparray_send(
|
|
6468
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6469
|
+
MAYBE_UNUSED(ID method),
|
|
6470
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6471
|
+
)
|
|
6472
|
+
{
|
|
6473
|
+
return insn_name(BIN(opt_duparray_send));
|
|
6474
|
+
}
|
|
6475
|
+
|
|
6476
|
+
/* attr rb_num_t open @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6477
|
+
rb_num_t
|
|
6478
|
+
attr_open_opt_duparray_send(
|
|
6479
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6480
|
+
MAYBE_UNUSED(ID method),
|
|
6481
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6482
|
+
)
|
|
6483
|
+
{
|
|
6484
|
+
return 3;
|
|
6485
|
+
}
|
|
6486
|
+
|
|
6487
|
+
/* attr rb_num_t popn @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6488
|
+
rb_num_t
|
|
6489
|
+
attr_popn_opt_duparray_send(
|
|
6490
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6491
|
+
MAYBE_UNUSED(ID method),
|
|
6492
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6493
|
+
)
|
|
6494
|
+
{
|
|
6495
|
+
return 0;
|
|
6496
|
+
}
|
|
6497
|
+
|
|
6498
|
+
/* attr rb_num_t retn @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6499
|
+
rb_num_t
|
|
6500
|
+
attr_retn_opt_duparray_send(
|
|
6501
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6502
|
+
MAYBE_UNUSED(ID method),
|
|
6503
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6504
|
+
)
|
|
6505
|
+
{
|
|
6506
|
+
return 1;
|
|
6507
|
+
}
|
|
6508
|
+
|
|
6509
|
+
/* attr rb_snum_t sp_inc @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6510
|
+
rb_snum_t
|
|
6511
|
+
attr_sp_inc_opt_duparray_send(
|
|
6512
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6513
|
+
MAYBE_UNUSED(ID method),
|
|
6514
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6515
|
+
)
|
|
6516
|
+
{
|
|
6517
|
+
return
|
|
6518
|
+
#line 1004 "insns.def"
|
|
6519
|
+
1 - (rb_snum_t)argc;
|
|
6520
|
+
#line 6521 "insns_info.inc"
|
|
6521
|
+
}
|
|
6522
|
+
|
|
6523
|
+
/* attr rb_num_t width @ opt_duparray_send(ary, method, argc)(...)(val) */
|
|
6524
|
+
rb_num_t
|
|
6525
|
+
attr_width_opt_duparray_send(
|
|
6526
|
+
MAYBE_UNUSED(VALUE ary),
|
|
6527
|
+
MAYBE_UNUSED(ID method),
|
|
6528
|
+
MAYBE_UNUSED(rb_num_t argc)
|
|
6529
|
+
)
|
|
6530
|
+
{
|
|
6531
|
+
return 4;
|
|
6532
|
+
}
|
|
6533
|
+
|
|
6403
6534
|
/* attr enum ruby_vminsn_type bin @ opt_newarray_send(num, method)(...)(val) */
|
|
6404
6535
|
enum ruby_vminsn_type
|
|
6405
6536
|
attr_bin_opt_newarray_send(
|
|
@@ -6418,9 +6549,9 @@ attr_comptime_sp_inc_opt_newarray_send(
|
|
|
6418
6549
|
)
|
|
6419
6550
|
{
|
|
6420
6551
|
return
|
|
6421
|
-
#line
|
|
6552
|
+
#line 1027 "insns.def"
|
|
6422
6553
|
1 - (rb_snum_t)num;
|
|
6423
|
-
#line
|
|
6554
|
+
#line 6555 "insns_info.inc"
|
|
6424
6555
|
}
|
|
6425
6556
|
|
|
6426
6557
|
/* attr bool handles_sp @ opt_newarray_send(num, method)(...)(val) */
|
|
@@ -6441,9 +6572,9 @@ attr_leaf_opt_newarray_send(
|
|
|
6441
6572
|
)
|
|
6442
6573
|
{
|
|
6443
6574
|
return
|
|
6444
|
-
#line
|
|
6575
|
+
#line 1025 "insns.def"
|
|
6445
6576
|
false;
|
|
6446
|
-
#line
|
|
6577
|
+
#line 6578 "insns_info.inc"
|
|
6447
6578
|
}
|
|
6448
6579
|
|
|
6449
6580
|
/* attr const char* name @ opt_newarray_send(num, method)(...)(val) */
|
|
@@ -6494,9 +6625,9 @@ attr_sp_inc_opt_newarray_send(
|
|
|
6494
6625
|
)
|
|
6495
6626
|
{
|
|
6496
6627
|
return
|
|
6497
|
-
#line
|
|
6628
|
+
#line 1026 "insns.def"
|
|
6498
6629
|
1 - (rb_snum_t)num;
|
|
6499
|
-
#line
|
|
6630
|
+
#line 6631 "insns_info.inc"
|
|
6500
6631
|
}
|
|
6501
6632
|
|
|
6502
6633
|
/* attr rb_num_t width @ opt_newarray_send(num, method)(...)(val) */
|
|
@@ -6527,9 +6658,9 @@ attr_comptime_sp_inc_invokesuper(
|
|
|
6527
6658
|
)
|
|
6528
6659
|
{
|
|
6529
6660
|
return
|
|
6530
|
-
#line
|
|
6661
|
+
#line 1060 "insns.def"
|
|
6531
6662
|
sp_inc_of_sendish(ci);
|
|
6532
|
-
#line
|
|
6663
|
+
#line 6664 "insns_info.inc"
|
|
6533
6664
|
}
|
|
6534
6665
|
|
|
6535
6666
|
/* attr bool handles_sp @ invokesuper(cd, blockiseq)(...)(val) */
|
|
@@ -6600,9 +6731,9 @@ attr_sp_inc_invokesuper(
|
|
|
6600
6731
|
)
|
|
6601
6732
|
{
|
|
6602
6733
|
return
|
|
6603
|
-
#line
|
|
6734
|
+
#line 1059 "insns.def"
|
|
6604
6735
|
sp_inc_of_sendish(cd->ci);
|
|
6605
|
-
#line
|
|
6736
|
+
#line 6737 "insns_info.inc"
|
|
6606
6737
|
}
|
|
6607
6738
|
|
|
6608
6739
|
/* attr rb_num_t width @ invokesuper(cd, blockiseq)(...)(val) */
|
|
@@ -6633,9 +6764,9 @@ attr_comptime_sp_inc_invokesuperforward(
|
|
|
6633
6764
|
)
|
|
6634
6765
|
{
|
|
6635
6766
|
return
|
|
6636
|
-
#line
|
|
6767
|
+
#line 1079 "insns.def"
|
|
6637
6768
|
sp_inc_of_sendish(ci);
|
|
6638
|
-
#line
|
|
6769
|
+
#line 6770 "insns_info.inc"
|
|
6639
6770
|
}
|
|
6640
6771
|
|
|
6641
6772
|
/* attr bool handles_sp @ invokesuperforward(cd, blockiseq)(...)(val) */
|
|
@@ -6706,9 +6837,9 @@ attr_sp_inc_invokesuperforward(
|
|
|
6706
6837
|
)
|
|
6707
6838
|
{
|
|
6708
6839
|
return
|
|
6709
|
-
#line
|
|
6840
|
+
#line 1078 "insns.def"
|
|
6710
6841
|
sp_inc_of_sendish(cd->ci);
|
|
6711
|
-
#line
|
|
6842
|
+
#line 6843 "insns_info.inc"
|
|
6712
6843
|
}
|
|
6713
6844
|
|
|
6714
6845
|
/* attr rb_num_t width @ invokesuperforward(cd, blockiseq)(...)(val) */
|
|
@@ -6733,9 +6864,9 @@ rb_snum_t
|
|
|
6733
6864
|
attr_comptime_sp_inc_invokeblock(MAYBE_UNUSED(CALL_INFO ci))
|
|
6734
6865
|
{
|
|
6735
6866
|
return
|
|
6736
|
-
#line
|
|
6867
|
+
#line 1107 "insns.def"
|
|
6737
6868
|
sp_inc_of_invokeblock(ci);
|
|
6738
|
-
#line
|
|
6869
|
+
#line 6870 "insns_info.inc"
|
|
6739
6870
|
}
|
|
6740
6871
|
|
|
6741
6872
|
/* attr bool handles_sp @ invokeblock(cd)(...)(val) */
|
|
@@ -6743,9 +6874,9 @@ bool
|
|
|
6743
6874
|
attr_handles_sp_invokeblock(MAYBE_UNUSED(CALL_DATA cd))
|
|
6744
6875
|
{
|
|
6745
6876
|
return
|
|
6746
|
-
#line
|
|
6877
|
+
#line 1105 "insns.def"
|
|
6747
6878
|
true;
|
|
6748
|
-
#line
|
|
6879
|
+
#line 6880 "insns_info.inc"
|
|
6749
6880
|
}
|
|
6750
6881
|
|
|
6751
6882
|
/* attr bool leaf @ invokeblock(cd)(...)(val) */
|
|
@@ -6788,9 +6919,9 @@ rb_snum_t
|
|
|
6788
6919
|
attr_sp_inc_invokeblock(MAYBE_UNUSED(CALL_DATA cd))
|
|
6789
6920
|
{
|
|
6790
6921
|
return
|
|
6791
|
-
#line
|
|
6922
|
+
#line 1106 "insns.def"
|
|
6792
6923
|
sp_inc_of_invokeblock(cd->ci);
|
|
6793
|
-
#line
|
|
6924
|
+
#line 6925 "insns_info.inc"
|
|
6794
6925
|
}
|
|
6795
6926
|
|
|
6796
6927
|
/* attr rb_num_t width @ invokeblock(cd)(...)(val) */
|
|
@@ -6812,9 +6943,9 @@ bool
|
|
|
6812
6943
|
attr_handles_sp_leave(void)
|
|
6813
6944
|
{
|
|
6814
6945
|
return
|
|
6815
|
-
#line
|
|
6946
|
+
#line 1129 "insns.def"
|
|
6816
6947
|
true;
|
|
6817
|
-
#line
|
|
6948
|
+
#line 6949 "insns_info.inc"
|
|
6818
6949
|
}
|
|
6819
6950
|
|
|
6820
6951
|
/* attr bool leaf @ leave()(val)(val) */
|
|
@@ -6822,9 +6953,9 @@ bool
|
|
|
6822
6953
|
attr_leaf_leave(void)
|
|
6823
6954
|
{
|
|
6824
6955
|
return
|
|
6825
|
-
#line
|
|
6956
|
+
#line 1128 "insns.def"
|
|
6826
6957
|
false;
|
|
6827
|
-
#line
|
|
6958
|
+
#line 6959 "insns_info.inc"
|
|
6828
6959
|
}
|
|
6829
6960
|
|
|
6830
6961
|
/* attr const char* name @ leave()(val)(val) */
|
|
@@ -6888,9 +7019,9 @@ bool
|
|
|
6888
7019
|
attr_leaf_throw(MAYBE_UNUSED(rb_num_t throw_state))
|
|
6889
7020
|
{
|
|
6890
7021
|
return
|
|
6891
|
-
#line
|
|
7022
|
+
#line 1162 "insns.def"
|
|
6892
7023
|
false;
|
|
6893
|
-
#line
|
|
7024
|
+
#line 7025 "insns_info.inc"
|
|
6894
7025
|
}
|
|
6895
7026
|
|
|
6896
7027
|
/* attr const char* name @ throw(throw_state)(throwobj)(val) */
|
|
@@ -6954,9 +7085,9 @@ bool
|
|
|
6954
7085
|
attr_leaf_jump(MAYBE_UNUSED(OFFSET dst))
|
|
6955
7086
|
{
|
|
6956
7087
|
return
|
|
6957
|
-
#line
|
|
7088
|
+
#line 1180 "insns.def"
|
|
6958
7089
|
leafness_of_check_ints;
|
|
6959
|
-
#line
|
|
7090
|
+
#line 7091 "insns_info.inc"
|
|
6960
7091
|
}
|
|
6961
7092
|
|
|
6962
7093
|
/* attr const char* name @ jump(dst)()() */
|
|
@@ -7020,9 +7151,9 @@ bool
|
|
|
7020
7151
|
attr_leaf_branchif(MAYBE_UNUSED(OFFSET dst))
|
|
7021
7152
|
{
|
|
7022
7153
|
return
|
|
7023
|
-
#line
|
|
7154
|
+
#line 1193 "insns.def"
|
|
7024
7155
|
leafness_of_check_ints;
|
|
7025
|
-
#line
|
|
7156
|
+
#line 7157 "insns_info.inc"
|
|
7026
7157
|
}
|
|
7027
7158
|
|
|
7028
7159
|
/* attr const char* name @ branchif(dst)(val)() */
|
|
@@ -7086,9 +7217,9 @@ bool
|
|
|
7086
7217
|
attr_leaf_branchunless(MAYBE_UNUSED(OFFSET dst))
|
|
7087
7218
|
{
|
|
7088
7219
|
return
|
|
7089
|
-
#line
|
|
7220
|
+
#line 1208 "insns.def"
|
|
7090
7221
|
leafness_of_check_ints;
|
|
7091
|
-
#line
|
|
7222
|
+
#line 7223 "insns_info.inc"
|
|
7092
7223
|
}
|
|
7093
7224
|
|
|
7094
7225
|
/* attr const char* name @ branchunless(dst)(val)() */
|
|
@@ -7152,9 +7283,9 @@ bool
|
|
|
7152
7283
|
attr_leaf_branchnil(MAYBE_UNUSED(OFFSET dst))
|
|
7153
7284
|
{
|
|
7154
7285
|
return
|
|
7155
|
-
#line
|
|
7286
|
+
#line 1223 "insns.def"
|
|
7156
7287
|
leafness_of_check_ints;
|
|
7157
|
-
#line
|
|
7288
|
+
#line 7289 "insns_info.inc"
|
|
7158
7289
|
}
|
|
7159
7290
|
|
|
7160
7291
|
/* attr const char* name @ branchnil(dst)(val)() */
|
|
@@ -7367,9 +7498,9 @@ attr_sp_inc_opt_case_dispatch(
|
|
|
7367
7498
|
)
|
|
7368
7499
|
{
|
|
7369
7500
|
return
|
|
7370
|
-
#line
|
|
7501
|
+
#line 1251 "insns.def"
|
|
7371
7502
|
-1;
|
|
7372
|
-
#line
|
|
7503
|
+
#line 7504 "insns_info.inc"
|
|
7373
7504
|
}
|
|
7374
7505
|
|
|
7375
7506
|
/* attr rb_num_t width @ opt_case_dispatch(hash, else_offset)(..., key)() */
|
|
@@ -7590,9 +7721,9 @@ bool
|
|
|
7590
7721
|
attr_leaf_opt_div(MAYBE_UNUSED(CALL_DATA cd))
|
|
7591
7722
|
{
|
|
7592
7723
|
return
|
|
7593
|
-
#line
|
|
7724
|
+
#line 1312 "insns.def"
|
|
7594
7725
|
false;
|
|
7595
|
-
#line
|
|
7726
|
+
#line 7727 "insns_info.inc"
|
|
7596
7727
|
}
|
|
7597
7728
|
|
|
7598
7729
|
/* attr const char* name @ opt_div(cd)(recv, obj)(val) */
|
|
@@ -7656,9 +7787,9 @@ bool
|
|
|
7656
7787
|
attr_leaf_opt_mod(MAYBE_UNUSED(CALL_DATA cd))
|
|
7657
7788
|
{
|
|
7658
7789
|
return
|
|
7659
|
-
#line
|
|
7790
|
+
#line 1328 "insns.def"
|
|
7660
7791
|
false;
|
|
7661
|
-
#line
|
|
7792
|
+
#line 7793 "insns_info.inc"
|
|
7662
7793
|
}
|
|
7663
7794
|
|
|
7664
7795
|
/* attr const char* name @ opt_mod(cd)(recv, obj)(val) */
|
|
@@ -8127,9 +8258,9 @@ bool
|
|
|
8127
8258
|
attr_leaf_opt_ltlt(MAYBE_UNUSED(CALL_DATA cd))
|
|
8128
8259
|
{
|
|
8129
8260
|
return
|
|
8130
|
-
#line
|
|
8261
|
+
#line 1430 "insns.def"
|
|
8131
8262
|
false;
|
|
8132
|
-
#line
|
|
8263
|
+
#line 8264 "insns_info.inc"
|
|
8133
8264
|
}
|
|
8134
8265
|
|
|
8135
8266
|
/* attr const char* name @ opt_ltlt(cd)(recv, obj)(val) */
|
|
@@ -8319,9 +8450,9 @@ bool
|
|
|
8319
8450
|
attr_leaf_opt_aref(MAYBE_UNUSED(CALL_DATA cd))
|
|
8320
8451
|
{
|
|
8321
8452
|
return
|
|
8322
|
-
#line
|
|
8453
|
+
#line 1477 "insns.def"
|
|
8323
8454
|
false;
|
|
8324
|
-
#line
|
|
8455
|
+
#line 8456 "insns_info.inc"
|
|
8325
8456
|
}
|
|
8326
8457
|
|
|
8327
8458
|
/* attr const char* name @ opt_aref(cd)(recv, obj)(val) */
|
|
@@ -8385,9 +8516,9 @@ bool
|
|
|
8385
8516
|
attr_leaf_opt_aset(MAYBE_UNUSED(CALL_DATA cd))
|
|
8386
8517
|
{
|
|
8387
8518
|
return
|
|
8388
|
-
#line
|
|
8519
|
+
#line 1494 "insns.def"
|
|
8389
8520
|
false;
|
|
8390
|
-
#line
|
|
8521
|
+
#line 8522 "insns_info.inc"
|
|
8391
8522
|
}
|
|
8392
8523
|
|
|
8393
8524
|
/* attr const char* name @ opt_aset(cd)(recv, obj, set)(val) */
|
|
@@ -8460,9 +8591,9 @@ attr_leaf_opt_aset_with(
|
|
|
8460
8591
|
)
|
|
8461
8592
|
{
|
|
8462
8593
|
return
|
|
8463
|
-
#line
|
|
8594
|
+
#line 1510 "insns.def"
|
|
8464
8595
|
false;
|
|
8465
|
-
#line
|
|
8596
|
+
#line 8597 "insns_info.inc"
|
|
8466
8597
|
}
|
|
8467
8598
|
|
|
8468
8599
|
/* attr const char* name @ opt_aset_with(key, cd)(recv, val)(val) */
|
|
@@ -8553,9 +8684,9 @@ attr_leaf_opt_aref_with(
|
|
|
8553
8684
|
)
|
|
8554
8685
|
{
|
|
8555
8686
|
return
|
|
8556
|
-
#line
|
|
8687
|
+
#line 1531 "insns.def"
|
|
8557
8688
|
false;
|
|
8558
|
-
#line
|
|
8689
|
+
#line 8690 "insns_info.inc"
|
|
8559
8690
|
}
|
|
8560
8691
|
|
|
8561
8692
|
/* attr const char* name @ opt_aref_with(key, cd)(recv)(val) */
|
|
@@ -8952,9 +9083,9 @@ bool
|
|
|
8952
9083
|
attr_leaf_opt_regexpmatch2(MAYBE_UNUSED(CALL_DATA cd))
|
|
8953
9084
|
{
|
|
8954
9085
|
return
|
|
8955
|
-
#line
|
|
9086
|
+
#line 1617 "insns.def"
|
|
8956
9087
|
false;
|
|
8957
|
-
#line
|
|
9088
|
+
#line 9089 "insns_info.inc"
|
|
8958
9089
|
}
|
|
8959
9090
|
|
|
8960
9091
|
/* attr const char* name @ opt_regexpmatch2(cd)(obj2, obj1)(val) */
|
|
@@ -9018,9 +9149,9 @@ bool
|
|
|
9018
9149
|
attr_leaf_invokebuiltin(MAYBE_UNUSED(RB_BUILTIN bf))
|
|
9019
9150
|
{
|
|
9020
9151
|
return
|
|
9021
|
-
#line
|
|
9152
|
+
#line 1632 "insns.def"
|
|
9022
9153
|
false;
|
|
9023
|
-
#line
|
|
9154
|
+
#line 9155 "insns_info.inc"
|
|
9024
9155
|
}
|
|
9025
9156
|
|
|
9026
9157
|
/* attr const char* name @ invokebuiltin(bf)(...)(val) */
|
|
@@ -9056,9 +9187,9 @@ rb_snum_t
|
|
|
9056
9187
|
attr_sp_inc_invokebuiltin(MAYBE_UNUSED(RB_BUILTIN bf))
|
|
9057
9188
|
{
|
|
9058
9189
|
return
|
|
9059
|
-
#line
|
|
9190
|
+
#line 1633 "insns.def"
|
|
9060
9191
|
1 - bf->argc;
|
|
9061
|
-
#line
|
|
9192
|
+
#line 9193 "insns_info.inc"
|
|
9062
9193
|
}
|
|
9063
9194
|
|
|
9064
9195
|
/* attr rb_num_t width @ invokebuiltin(bf)(...)(val) */
|
|
@@ -9096,9 +9227,9 @@ attr_leaf_opt_invokebuiltin_delegate(
|
|
|
9096
9227
|
)
|
|
9097
9228
|
{
|
|
9098
9229
|
return
|
|
9099
|
-
#line
|
|
9230
|
+
#line 1644 "insns.def"
|
|
9100
9231
|
false;
|
|
9101
|
-
#line
|
|
9232
|
+
#line 9233 "insns_info.inc"
|
|
9102
9233
|
}
|
|
9103
9234
|
|
|
9104
9235
|
/* attr const char* name @ opt_invokebuiltin_delegate(bf, index)()(val) */
|
|
@@ -9189,9 +9320,9 @@ attr_leaf_opt_invokebuiltin_delegate_leave(
|
|
|
9189
9320
|
)
|
|
9190
9321
|
{
|
|
9191
9322
|
return
|
|
9192
|
-
#line
|
|
9323
|
+
#line 1655 "insns.def"
|
|
9193
9324
|
false;
|
|
9194
|
-
#line
|
|
9325
|
+
#line 9326 "insns_info.inc"
|
|
9195
9326
|
}
|
|
9196
9327
|
|
|
9197
9328
|
/* attr const char* name @ opt_invokebuiltin_delegate_leave(bf, index)()(val) */
|
|
@@ -9647,12 +9778,12 @@ comptime_insn_stack_increase_dispatch(enum ruby_vminsn_type insn, const VALUE *o
|
|
|
9647
9778
|
1, -127, 0, -127, -127, -127, -127, 0,
|
|
9648
9779
|
1, -1, 1, 0, -1, 0, -1, -127,
|
|
9649
9780
|
-127, -127, 0, 1, 1, 1, 0, 1,
|
|
9650
|
-
-127, -127, -127, -127, 0, 0, 0,
|
|
9651
|
-
-1, -1, 1, -127, -1, -1, -1,
|
|
9781
|
+
-127, -127, -127, -127, -127, 0, 0, 0,
|
|
9782
|
+
-1, -1, -1, 1, -127, -1, -1, -1,
|
|
9652
9783
|
-1, -1, -1, -1, -1, -1, -1, -1,
|
|
9653
|
-
-1, -1, -1, -2, -1, 0, 0,
|
|
9654
|
-
0, 0, 0, -1, -127, 1, 1,
|
|
9655
|
-
1, -1, -1, 1, 1, 0, 0,
|
|
9784
|
+
-1, -1, -1, -1, -2, -1, 0, 0,
|
|
9785
|
+
0, 0, 0, 0, -1, -127, 1, 1,
|
|
9786
|
+
1, 1, -1, -1, 1, 1, 0, 0,
|
|
9656
9787
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
9657
9788
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
9658
9789
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
@@ -9666,7 +9797,7 @@ comptime_insn_stack_increase_dispatch(enum ruby_vminsn_type insn, const VALUE *o
|
|
|
9666
9797
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
9667
9798
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
9668
9799
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
9669
|
-
0, 0,
|
|
9800
|
+
0, 0, 0, 0,
|
|
9670
9801
|
};
|
|
9671
9802
|
signed char c = t[insn];
|
|
9672
9803
|
|
|
@@ -9705,6 +9836,8 @@ comptime_insn_stack_increase_dispatch(enum ruby_vminsn_type insn, const VALUE *o
|
|
|
9705
9836
|
return attr_comptime_sp_inc_sendforward((CALL_INFO)(opes[0]), (ISEQ)(opes[1]));
|
|
9706
9837
|
case BIN(opt_send_without_block):
|
|
9707
9838
|
return attr_comptime_sp_inc_opt_send_without_block((CALL_INFO)(opes[0]));
|
|
9839
|
+
case BIN(opt_duparray_send):
|
|
9840
|
+
return attr_comptime_sp_inc_opt_duparray_send(opes[0], SYM2ID(opes[1]), NUM2LONG(opes[2]));
|
|
9708
9841
|
case BIN(opt_newarray_send):
|
|
9709
9842
|
return attr_comptime_sp_inc_opt_newarray_send(NUM2LONG(opes[0]), NUM2LONG(opes[1]));
|
|
9710
9843
|
case BIN(invokesuper):
|
|
@@ -9763,6 +9896,7 @@ insn_may_depend_on_sp_or_pc(int insn, const VALUE *opes)
|
|
|
9763
9896
|
case BIN(sendforward):
|
|
9764
9897
|
case BIN(opt_send_without_block):
|
|
9765
9898
|
case BIN(objtostring):
|
|
9899
|
+
case BIN(opt_duparray_send):
|
|
9766
9900
|
case BIN(opt_newarray_send):
|
|
9767
9901
|
case BIN(invokesuper):
|
|
9768
9902
|
case BIN(invokesuperforward):
|
|
@@ -9849,6 +9983,7 @@ insn_may_depend_on_sp_or_pc(int insn, const VALUE *opes)
|
|
|
9849
9983
|
case BIN(trace_opt_str_freeze):
|
|
9850
9984
|
case BIN(trace_opt_nil_p):
|
|
9851
9985
|
case BIN(trace_opt_str_uminus):
|
|
9986
|
+
case BIN(trace_opt_duparray_send):
|
|
9852
9987
|
case BIN(trace_opt_newarray_send):
|
|
9853
9988
|
case BIN(trace_invokesuper):
|
|
9854
9989
|
case BIN(trace_invokesuperforward):
|