debase-ruby_core_source 3.3.1 → 3.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.idea/vcs.xml +28 -0
- data/CHANGELOG.md +8 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/addr2line.h +22 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/builtin.h +117 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ccan/list/list.h +791 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ccan/str/str.h +17 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/constant.h +53 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/darray.h +246 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/debug_counter.h +423 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/dln.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/encindex.h +70 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/eval_intern.h +343 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/hrtime.h +227 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/id.h +343 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/id_table.h +39 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/insns.inc +251 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/insns_info.inc +9215 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/array.h +151 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/basic_operators.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/bignum.h +244 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/bits.h +568 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/class.h +277 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/cmdlineopt.h +65 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/compar.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/compile.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/compilers.h +107 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/complex.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/cont.h +35 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/dir.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/enc.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/encoding.h +35 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/enum.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/enumerator.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/error.h +216 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/eval.h +33 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/file.h +38 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/fixnum.h +184 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/gc.h +364 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/hash.h +191 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/imemo.h +240 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/inits.h +50 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/io.h +137 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/load.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/loadpath.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/math.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/missing.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/numeric.h +273 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/object.h +62 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/parse.h +108 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/proc.h +30 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/process.h +124 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/ractor.h +6 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/random.h +17 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/range.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/rational.h +71 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/re.h +28 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/ruby_parser.h +69 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/sanitizers.h +186 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/serial.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/signal.h +25 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/static_assert.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/string.h +160 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/struct.h +127 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/symbol.h +45 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/thread.h +78 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/time.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/transcode.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/util.h +27 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/variable.h +72 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/vm.h +136 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal/warnings.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/internal.h +112 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/iseq.h +338 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/known_errors.inc +791 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/method.h +254 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/node.h +128 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/node_name.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/optinsn.inc +128 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/optunifs.inc +43 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/parse.h +243 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/parser_bits.h +564 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/parser_node.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/parser_st.h +162 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/parser_value.h +106 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/ast.h +4612 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/defines.h +94 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/diagnostic.h +297 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/encoding.h +248 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/extension.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/node.h +57 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/options.h +204 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/pack.h +152 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/parser.h +716 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/prettyprint.h +26 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/prism.h +272 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/regexp.h +33 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_buffer.h +146 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_char.h +205 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_constant_pool.h +191 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_list.h +97 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_memchr.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_newline_list.h +104 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_state_stack.h +42 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_string.h +150 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_string_list.h +44 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_strncasecmp.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/util/pm_strpbrk.h +43 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism/version.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/prism_compile.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/probes_helper.h +42 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ractor_core.h +393 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/regenc.h +254 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/regint.h +1006 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/regparse.h +371 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/revision.h +5 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/rjit.h +101 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/rjit_c.h +164 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ruby_assert.h +14 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/ruby_atomic.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/rubyparser.h +1405 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/shape.h +233 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/symbol.h +118 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/thread_none.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/thread_pthread.h +166 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/thread_win32.h +58 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/timev.h +58 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/transcode_data.h +138 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/variable.h +39 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/version.h +69 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm.inc +5436 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_call_iseq_optimized.inc +244 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_callinfo.h +614 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_core.h +2202 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_debug.h +122 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_exec.h +199 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_insnhelper.h +261 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_opts.h +67 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vm_sync.h +137 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/vmtc.inc +245 -0
- data/lib/debase/ruby_core_source/ruby-3.3.5-p100/yjit.h +72 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/addr2line.h +22 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/builtin.h +119 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ccan/list/list.h +791 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ccan/str/str.h +17 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/constant.h +53 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/darray.h +191 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/debug_counter.h +423 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/dln.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/encindex.h +70 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/eval_intern.h +324 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/hrtime.h +237 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/id.h +343 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/id_table.h +39 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/insns.inc +259 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/insns_info.inc +9530 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/array.h +151 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/basic_operators.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/bignum.h +244 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/bits.h +568 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/class.h +283 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/cmdlineopt.h +65 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/compar.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/compile.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/compilers.h +107 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/complex.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/cont.h +35 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/dir.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/enc.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/encoding.h +36 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/enum.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/enumerator.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/error.h +216 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/eval.h +33 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/file.h +38 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/fixnum.h +184 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/gc.h +334 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/hash.h +191 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/imemo.h +260 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/inits.h +47 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/io.h +140 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/load.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/loadpath.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/math.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/missing.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/numeric.h +274 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/object.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/parse.h +117 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/proc.h +30 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/process.h +124 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/ractor.h +6 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/random.h +17 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/range.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/rational.h +71 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/re.h +28 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/ruby_parser.h +102 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/sanitizers.h +297 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/serial.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/signal.h +24 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/st.h +11 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/static_assert.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/string.h +182 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/struct.h +127 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/symbol.h +45 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/thread.h +79 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/time.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/transcode.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/util.h +27 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/variable.h +72 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/vm.h +137 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal/warnings.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/internal.h +108 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/iseq.h +340 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/known_errors.inc +1419 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/method.h +255 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/node.h +111 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/node_name.inc +224 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/optinsn.inc +128 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/optunifs.inc +43 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/parse.h +243 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/parser_bits.h +564 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/parser_node.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/parser_st.h +162 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/parser_value.h +106 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/ast.h +6245 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/defines.h +206 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/diagnostic.h +433 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/encoding.h +283 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/extension.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/node.h +150 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/options.h +305 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/pack.h +163 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/parser.h +891 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/prettyprint.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/prism.h +347 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/regexp.h +33 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/static_literals.h +120 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_buffer.h +218 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_char.h +205 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_constant_pool.h +226 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_integer.h +119 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_list.h +97 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_memchr.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_newline_list.h +102 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_string.h +174 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_string_list.h +44 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_strncasecmp.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/util/pm_strpbrk.h +46 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism/version.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/prism_compile.h +88 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/probes_helper.h +42 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ractor_core.h +393 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/regenc.h +254 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/regint.h +1010 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/regparse.h +371 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/revision.h +5 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/rjit.h +101 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/rjit_c.h +165 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ruby_assert.h +14 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/ruby_atomic.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/rubyparser.h +1430 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/shape.h +233 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/symbol.h +118 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/thread_none.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/thread_pthread.h +166 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/thread_win32.h +58 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/timev.h +58 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/transcode_data.h +138 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/variable.h +39 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/version.h +69 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm.inc +5643 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_call_iseq_optimized.inc +244 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_callinfo.h +605 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_core.h +2236 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_debug.h +124 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_exec.h +199 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_insnhelper.h +272 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_opts.h +67 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vm_sync.h +137 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/vmtc.inc +253 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview1/yjit.h +79 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/addr2line.h +22 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/builtin.h +119 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ccan/list/list.h +791 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ccan/str/str.h +17 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/constant.h +53 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/darray.h +209 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/debug_counter.h +423 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/dln.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/encindex.h +70 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/eval_intern.h +324 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/hrtime.h +237 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/id.h +347 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/id_table.h +39 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/insns.inc +265 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/insns_info.inc +9902 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/array.h +152 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/basic_operators.h +64 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/bignum.h +244 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/bits.h +568 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/class.h +283 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/cmdlineopt.h +65 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/compar.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/compile.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/compilers.h +107 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/complex.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/cont.h +35 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/dir.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/enc.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/encoding.h +36 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/enum.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/enumerator.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/error.h +218 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/eval.h +33 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/file.h +38 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/fixnum.h +184 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/gc.h +322 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/hash.h +192 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/imemo.h +261 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/inits.h +47 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/io.h +143 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/load.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/loadpath.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/math.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/missing.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/numeric.h +274 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/object.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/parse.h +129 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/proc.h +30 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/process.h +124 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/ractor.h +6 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/random.h +17 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/range.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/rational.h +71 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/re.h +28 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/ruby_parser.h +102 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/sanitizers.h +326 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/serial.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/signal.h +24 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/st.h +11 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/static_assert.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/string.h +186 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/struct.h +127 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/symbol.h +45 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/thread.h +85 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/time.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/transcode.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/util.h +27 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/variable.h +72 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/vm.h +137 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal/warnings.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/internal.h +108 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/iseq.h +340 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/known_errors.inc +1419 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/method.h +255 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/node.h +111 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/node_name.inc +224 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/optinsn.inc +128 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/optunifs.inc +43 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/parse.h +244 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/parser_bits.h +564 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/parser_node.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/parser_st.h +162 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/parser_value.h +106 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/ast.h +7524 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/defines.h +242 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/diagnostic.h +450 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/encoding.h +283 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/extension.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/node.h +129 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/options.h +396 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/pack.h +163 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/parser.h +933 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/prettyprint.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/prism.h +336 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/regexp.h +43 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/static_literals.h +121 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_buffer.h +218 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_char.h +204 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_constant_pool.h +218 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_integer.h +126 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_list.h +97 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_memchr.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_newline_list.h +113 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_string.h +190 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_strncasecmp.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/util/pm_strpbrk.h +46 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism/version.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/prism_compile.h +99 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/probes_helper.h +42 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ractor_core.h +382 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/regenc.h +254 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/regint.h +1006 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/regparse.h +371 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/revision.h +5 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/rjit.h +101 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/rjit_c.h +165 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ruby_assert.h +14 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/ruby_atomic.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/rubyparser.h +1350 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/shape.h +234 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/symbol.h +123 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/thread_none.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/thread_pthread.h +168 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/thread_win32.h +58 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/timev.h +58 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/transcode_data.h +138 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/variable.h +39 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/version.h +69 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm.inc +5840 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_call_iseq_optimized.inc +244 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_callinfo.h +627 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_core.h +2222 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_debug.h +124 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_exec.h +199 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_insnhelper.h +277 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_opts.h +67 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vm_sync.h +137 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/vmtc.inc +259 -0
- data/lib/debase/ruby_core_source/ruby-3.4.0-preview2/yjit.h +79 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- metadata +436 -6
@@ -0,0 +1,137 @@
|
|
1
|
+
#ifndef INTERNAL_VM_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_VM_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header for RubyVM.
|
10
|
+
*/
|
11
|
+
#include "ruby/internal/stdbool.h" /* for bool */
|
12
|
+
#include "internal/serial.h" /* for rb_serial_t */
|
13
|
+
#include "internal/static_assert.h" /* for STATIC_ASSERT */
|
14
|
+
#include "ruby/ruby.h" /* for ID */
|
15
|
+
#include "ruby/st.h" /* for st_table */
|
16
|
+
|
17
|
+
#ifdef rb_funcallv
|
18
|
+
# undef rb_funcallv
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#ifdef rb_method_basic_definition_p
|
22
|
+
# undef rb_method_basic_definition_p
|
23
|
+
#endif
|
24
|
+
|
25
|
+
struct rb_callable_method_entry_struct; /* in method.h */
|
26
|
+
struct rb_method_definition_struct; /* in method.h */
|
27
|
+
struct rb_execution_context_struct; /* in vm_core.h */
|
28
|
+
struct rb_control_frame_struct; /* in vm_core.h */
|
29
|
+
struct rb_callinfo; /* in vm_core.h */
|
30
|
+
|
31
|
+
enum method_missing_reason {
|
32
|
+
MISSING_NOENTRY = 0x00,
|
33
|
+
MISSING_PRIVATE = 0x01,
|
34
|
+
MISSING_PROTECTED = 0x02,
|
35
|
+
MISSING_FCALL = 0x04,
|
36
|
+
MISSING_VCALL = 0x08,
|
37
|
+
MISSING_SUPER = 0x10,
|
38
|
+
MISSING_MISSING = 0x20,
|
39
|
+
MISSING_NONE = 0x40
|
40
|
+
};
|
41
|
+
|
42
|
+
/* vm_insnhelper.h */
|
43
|
+
VALUE rb_vm_push_frame_fname(struct rb_execution_context_struct *ec, VALUE fname);
|
44
|
+
|
45
|
+
/* vm.c */
|
46
|
+
VALUE rb_obj_is_thread(VALUE obj);
|
47
|
+
void rb_vm_mark(void *ptr);
|
48
|
+
void rb_vm_register_global_object(VALUE obj);
|
49
|
+
void rb_vm_each_stack_value(void *ptr, void (*cb)(VALUE, void*), void *ctx);
|
50
|
+
PUREFUNC(VALUE rb_vm_top_self(void));
|
51
|
+
const void **rb_vm_get_insns_address_table(void);
|
52
|
+
VALUE rb_source_location(int *pline);
|
53
|
+
const char *rb_source_location_cstr(int *pline);
|
54
|
+
void rb_vm_pop_cfunc_frame(void);
|
55
|
+
void rb_vm_check_redefinition_by_prepend(VALUE klass);
|
56
|
+
int rb_vm_check_optimizable_mid(VALUE mid);
|
57
|
+
VALUE rb_yield_refine_block(VALUE refinement, VALUE refinements);
|
58
|
+
VALUE ruby_vm_special_exception_copy(VALUE);
|
59
|
+
PUREFUNC(st_table *rb_vm_fstring_table(void));
|
60
|
+
|
61
|
+
void rb_lastline_set_up(VALUE val, unsigned int up);
|
62
|
+
|
63
|
+
/* vm_eval.c */
|
64
|
+
VALUE rb_current_realfilepath(void);
|
65
|
+
VALUE rb_check_block_call(VALUE, ID, int, const VALUE *, rb_block_call_func_t, VALUE);
|
66
|
+
typedef void rb_check_funcall_hook(int, VALUE, ID, int, const VALUE *, VALUE);
|
67
|
+
VALUE rb_check_funcall_with_hook(VALUE recv, ID mid, int argc, const VALUE *argv,
|
68
|
+
rb_check_funcall_hook *hook, VALUE arg);
|
69
|
+
VALUE rb_check_funcall_with_hook_kw(VALUE recv, ID mid, int argc, const VALUE *argv,
|
70
|
+
rb_check_funcall_hook *hook, VALUE arg, int kw_splat);
|
71
|
+
const char *rb_type_str(enum ruby_value_type type);
|
72
|
+
VALUE rb_check_funcall_default(VALUE, ID, int, const VALUE *, VALUE);
|
73
|
+
VALUE rb_check_funcall_basic_kw(VALUE, ID, VALUE, int, const VALUE*, int);
|
74
|
+
VALUE rb_yield_1(VALUE val);
|
75
|
+
VALUE rb_yield_force_blockarg(VALUE values);
|
76
|
+
VALUE rb_lambda_call(VALUE obj, ID mid, int argc, const VALUE *argv,
|
77
|
+
rb_block_call_func_t bl_proc, int min_argc, int max_argc,
|
78
|
+
VALUE data2);
|
79
|
+
void rb_check_stack_overflow(void);
|
80
|
+
|
81
|
+
#if USE_YJIT
|
82
|
+
/* vm_exec.c */
|
83
|
+
extern uint64_t rb_vm_insns_count;
|
84
|
+
#endif
|
85
|
+
|
86
|
+
extern bool rb_free_at_exit;
|
87
|
+
|
88
|
+
/* miniinit.c and builtin.c */
|
89
|
+
void rb_free_loaded_builtin_table(void);
|
90
|
+
|
91
|
+
/* vm_insnhelper.c */
|
92
|
+
VALUE rb_equal_opt(VALUE obj1, VALUE obj2);
|
93
|
+
VALUE rb_eql_opt(VALUE obj1, VALUE obj2);
|
94
|
+
|
95
|
+
struct rb_iseq_struct;
|
96
|
+
const struct rb_callcache *rb_vm_search_method_slowpath(const struct rb_callinfo *ci, VALUE klass);
|
97
|
+
|
98
|
+
/* vm_method.c */
|
99
|
+
struct rb_execution_context_struct;
|
100
|
+
int rb_ec_obj_respond_to(struct rb_execution_context_struct *ec, VALUE obj, ID id, int priv);
|
101
|
+
|
102
|
+
void rb_clear_constant_cache(void);
|
103
|
+
|
104
|
+
/* vm_dump.c */
|
105
|
+
void rb_print_backtrace(FILE *);
|
106
|
+
|
107
|
+
/* vm_backtrace.c */
|
108
|
+
VALUE rb_vm_thread_backtrace(int argc, const VALUE *argv, VALUE thval);
|
109
|
+
VALUE rb_vm_thread_backtrace_locations(int argc, const VALUE *argv, VALUE thval);
|
110
|
+
VALUE rb_vm_backtrace(int argc, const VALUE * argv, struct rb_execution_context_struct * ec);
|
111
|
+
VALUE rb_vm_backtrace_locations(int argc, const VALUE * argv, struct rb_execution_context_struct * ec);
|
112
|
+
VALUE rb_make_backtrace(void);
|
113
|
+
void rb_backtrace_print_as_bugreport(FILE*);
|
114
|
+
int rb_backtrace_p(VALUE obj);
|
115
|
+
VALUE rb_backtrace_to_str_ary(VALUE obj);
|
116
|
+
VALUE rb_backtrace_to_location_ary(VALUE obj);
|
117
|
+
VALUE rb_location_ary_to_backtrace(VALUE ary);
|
118
|
+
void rb_backtrace_each(VALUE (*iter)(VALUE recv, VALUE str), VALUE output);
|
119
|
+
int rb_frame_info_p(VALUE obj);
|
120
|
+
int rb_get_node_id_from_frame_info(VALUE obj);
|
121
|
+
const struct rb_iseq_struct *rb_get_iseq_from_frame_info(VALUE obj);
|
122
|
+
|
123
|
+
VALUE rb_ec_backtrace_object(const struct rb_execution_context_struct *ec);
|
124
|
+
void rb_backtrace_use_iseq_first_lineno_for_last_location(VALUE self);
|
125
|
+
|
126
|
+
#define RUBY_DTRACE_CREATE_HOOK(name, arg) \
|
127
|
+
RUBY_DTRACE_HOOK(name##_CREATE, arg)
|
128
|
+
#define RUBY_DTRACE_HOOK(name, arg) \
|
129
|
+
do { \
|
130
|
+
if (UNLIKELY(RUBY_DTRACE_##name##_ENABLED())) { \
|
131
|
+
int dtrace_line; \
|
132
|
+
const char *dtrace_file = rb_source_location_cstr(&dtrace_line); \
|
133
|
+
if (!dtrace_file) dtrace_file = ""; \
|
134
|
+
RUBY_DTRACE_##name(arg, dtrace_file, dtrace_line); \
|
135
|
+
} \
|
136
|
+
} while (0)
|
137
|
+
#endif /* INTERNAL_VM_H */
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#ifndef INTERNAL_WARNINGS_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_WARNINGS_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header to suppress / mandate warnings.
|
10
|
+
*/
|
11
|
+
#include "ruby/internal/warning_push.h"
|
12
|
+
#define COMPILER_WARNING_PUSH RBIMPL_WARNING_PUSH()
|
13
|
+
#define COMPILER_WARNING_POP RBIMPL_WARNING_POP()
|
14
|
+
#define COMPILER_WARNING_ERROR(flag) RBIMPL_WARNING_ERROR(flag)
|
15
|
+
#define COMPILER_WARNING_IGNORED(flag) RBIMPL_WARNING_IGNORED(flag)
|
16
|
+
#endif /* INTERNAL_WARNINGS_H */
|
@@ -0,0 +1,108 @@
|
|
1
|
+
#ifndef RUBY_INTERNAL_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define RUBY_INTERNAL_H 1
|
3
|
+
/**
|
4
|
+
* @author $Author$
|
5
|
+
* @date Tue May 17 11:42:20 JST 2011
|
6
|
+
* @copyright Copyright (C) 2011 Yukihiro Matsumoto
|
7
|
+
* @copyright This file is a part of the programming language Ruby.
|
8
|
+
* Permission is hereby granted, to either redistribute and/or
|
9
|
+
* modify this file, provided that the conditions mentioned in the
|
10
|
+
* file COPYING are met. Consult the file for details.
|
11
|
+
*/
|
12
|
+
#include "ruby/internal/config.h"
|
13
|
+
|
14
|
+
#ifdef __cplusplus
|
15
|
+
# error not for C++
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#define LIKELY(x) RB_LIKELY(x)
|
19
|
+
#define UNLIKELY(x) RB_UNLIKELY(x)
|
20
|
+
|
21
|
+
#define numberof(array) ((int)(sizeof(array) / sizeof((array)[0])))
|
22
|
+
#define roomof(x, y) (((x) + (y) - 1) / (y))
|
23
|
+
#define type_roomof(x, y) roomof(sizeof(x), sizeof(y))
|
24
|
+
|
25
|
+
/* Prevent compiler from reordering access */
|
26
|
+
#define ACCESS_ONCE(type,x) (*((volatile type *)&(x)))
|
27
|
+
|
28
|
+
#define UNDEF_P RB_UNDEF_P
|
29
|
+
#define NIL_OR_UNDEF_P RB_NIL_OR_UNDEF_P
|
30
|
+
|
31
|
+
#include "ruby/ruby.h"
|
32
|
+
|
33
|
+
/* Following macros were formerly defined in this header but moved to somewhere
|
34
|
+
* else. In order to detect them we undef here. */
|
35
|
+
|
36
|
+
/* internal/array.h */
|
37
|
+
#undef RARRAY_AREF
|
38
|
+
|
39
|
+
/* internal/class.h */
|
40
|
+
#undef RClass
|
41
|
+
#undef RCLASS_SUPER
|
42
|
+
|
43
|
+
/* internal/hash.h */
|
44
|
+
#undef RHASH_IFNONE
|
45
|
+
#undef RHASH_SIZE
|
46
|
+
#undef RHASH_TBL
|
47
|
+
#undef RHASH_EMPTY_P
|
48
|
+
|
49
|
+
/* internal/struct.h */
|
50
|
+
#undef RSTRUCT_LEN
|
51
|
+
#undef RSTRUCT_PTR
|
52
|
+
#undef RSTRUCT_SET
|
53
|
+
#undef RSTRUCT_GET
|
54
|
+
|
55
|
+
/* Also, we keep the following macros here. They are expected to be
|
56
|
+
* overridden in each headers. */
|
57
|
+
|
58
|
+
/* internal/array.h */
|
59
|
+
#define rb_ary_new_from_args(...) rb_nonexistent_symbol(__VA_ARGS__)
|
60
|
+
|
61
|
+
/* internal/io.h */
|
62
|
+
#define rb_io_fptr_finalize(...) rb_nonexistent_symbol(__VA_ARGS__)
|
63
|
+
|
64
|
+
/* internal/string.h */
|
65
|
+
#define rb_fstring_cstr(...) rb_nonexistent_symbol(__VA_ARGS__)
|
66
|
+
|
67
|
+
/* internal/symbol.h */
|
68
|
+
#define rb_sym_intern_ascii_cstr(...) rb_nonexistent_symbol(__VA_ARGS__)
|
69
|
+
|
70
|
+
/* internal/vm.h */
|
71
|
+
#define rb_funcallv(...) rb_nonexistent_symbol(__VA_ARGS__)
|
72
|
+
#define rb_method_basic_definition_p(...) rb_nonexistent_symbol(__VA_ARGS__)
|
73
|
+
|
74
|
+
|
75
|
+
/* MRI debug support */
|
76
|
+
|
77
|
+
/* gc.c */
|
78
|
+
void rb_obj_info_dump(VALUE obj);
|
79
|
+
void rb_obj_info_dump_loc(VALUE obj, const char *file, int line, const char *func);
|
80
|
+
|
81
|
+
/* debug.c */
|
82
|
+
|
83
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
84
|
+
void ruby_debug_breakpoint(void);
|
85
|
+
PRINTF_ARGS(void ruby_debug_printf(const char*, ...), 1, 2);
|
86
|
+
RUBY_SYMBOL_EXPORT_END
|
87
|
+
|
88
|
+
// show obj data structure without any side-effect
|
89
|
+
#define rp(obj) rb_obj_info_dump_loc((VALUE)(obj), __FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING)
|
90
|
+
|
91
|
+
// same as rp, but add message header
|
92
|
+
#define rp_m(msg, obj) do { \
|
93
|
+
fputs((msg), stderr); \
|
94
|
+
rb_obj_info_dump((VALUE)(obj)); \
|
95
|
+
} while (0)
|
96
|
+
|
97
|
+
// `ruby_debug_breakpoint()` does nothing,
|
98
|
+
// but breakpoint is set in run.gdb, so `make gdb` can stop here.
|
99
|
+
#define bp() ruby_debug_breakpoint()
|
100
|
+
|
101
|
+
#define RBOOL(v) ((v) ? Qtrue : Qfalse)
|
102
|
+
#define RB_BIGNUM_TYPE_P(x) RB_TYPE_P((x), T_BIGNUM)
|
103
|
+
|
104
|
+
#ifndef __MINGW32__
|
105
|
+
#undef memcpy
|
106
|
+
#define memcpy ruby_nonempty_memcpy
|
107
|
+
#endif
|
108
|
+
#endif /* RUBY_INTERNAL_H */
|
@@ -0,0 +1,340 @@
|
|
1
|
+
#ifndef RUBY_ISEQ_H
|
2
|
+
#define RUBY_ISEQ_H 1
|
3
|
+
/**********************************************************************
|
4
|
+
|
5
|
+
iseq.h -
|
6
|
+
|
7
|
+
$Author$
|
8
|
+
created at: 04/01/01 23:36:57 JST
|
9
|
+
|
10
|
+
Copyright (C) 2004-2008 Koichi Sasada
|
11
|
+
|
12
|
+
**********************************************************************/
|
13
|
+
#include "internal/gc.h"
|
14
|
+
#include "shape.h"
|
15
|
+
#include "vm_core.h"
|
16
|
+
#include "prism_compile.h"
|
17
|
+
|
18
|
+
RUBY_EXTERN const int ruby_api_version[];
|
19
|
+
#define ISEQ_MAJOR_VERSION ((unsigned int)ruby_api_version[0])
|
20
|
+
#define ISEQ_MINOR_VERSION ((unsigned int)ruby_api_version[1])
|
21
|
+
|
22
|
+
#define ISEQ_MBITS_SIZE sizeof(iseq_bits_t)
|
23
|
+
#define ISEQ_MBITS_BITLENGTH (ISEQ_MBITS_SIZE * CHAR_BIT)
|
24
|
+
#define ISEQ_MBITS_SET(buf, i) (buf[(i) / ISEQ_MBITS_BITLENGTH] |= ((iseq_bits_t)1 << ((i) % ISEQ_MBITS_BITLENGTH)))
|
25
|
+
#define ISEQ_MBITS_SET_P(buf, i) ((buf[(i) / ISEQ_MBITS_BITLENGTH] >> ((i) % ISEQ_MBITS_BITLENGTH)) & 0x1)
|
26
|
+
#define ISEQ_MBITS_BUFLEN(size) roomof(size, ISEQ_MBITS_BITLENGTH)
|
27
|
+
|
28
|
+
#ifndef USE_ISEQ_NODE_ID
|
29
|
+
#define USE_ISEQ_NODE_ID 1
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#ifndef rb_iseq_t
|
33
|
+
typedef struct rb_iseq_struct rb_iseq_t;
|
34
|
+
#define rb_iseq_t rb_iseq_t
|
35
|
+
#endif
|
36
|
+
typedef void (*rb_iseq_callback)(const rb_iseq_t *, void *);
|
37
|
+
|
38
|
+
extern const ID rb_iseq_shared_exc_local_tbl[];
|
39
|
+
|
40
|
+
#define ISEQ_COVERAGE(iseq) ISEQ_BODY(iseq)->variable.coverage
|
41
|
+
#define ISEQ_COVERAGE_SET(iseq, cov) RB_OBJ_WRITE(iseq, &ISEQ_BODY(iseq)->variable.coverage, cov)
|
42
|
+
#define ISEQ_LINE_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_LINES)
|
43
|
+
#define ISEQ_BRANCH_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_BRANCHES)
|
44
|
+
|
45
|
+
#define ISEQ_PC2BRANCHINDEX(iseq) ISEQ_BODY(iseq)->variable.pc2branchindex
|
46
|
+
#define ISEQ_PC2BRANCHINDEX_SET(iseq, h) RB_OBJ_WRITE(iseq, &ISEQ_BODY(iseq)->variable.pc2branchindex, h)
|
47
|
+
|
48
|
+
#define ISEQ_FLIP_CNT(iseq) ISEQ_BODY(iseq)->variable.flip_count
|
49
|
+
|
50
|
+
#define ISEQ_FROZEN_STRING_LITERAL_ENABLED 1
|
51
|
+
#define ISEQ_FROZEN_STRING_LITERAL_DISABLED 0
|
52
|
+
#define ISEQ_FROZEN_STRING_LITERAL_UNSET -1
|
53
|
+
|
54
|
+
static inline rb_snum_t
|
55
|
+
ISEQ_FLIP_CNT_INCREMENT(const rb_iseq_t *iseq)
|
56
|
+
{
|
57
|
+
rb_snum_t cnt = ISEQ_BODY(iseq)->variable.flip_count;
|
58
|
+
ISEQ_BODY(iseq)->variable.flip_count += 1;
|
59
|
+
return cnt;
|
60
|
+
}
|
61
|
+
|
62
|
+
static inline VALUE *
|
63
|
+
ISEQ_ORIGINAL_ISEQ(const rb_iseq_t *iseq)
|
64
|
+
{
|
65
|
+
return ISEQ_BODY(iseq)->variable.original_iseq;
|
66
|
+
}
|
67
|
+
|
68
|
+
static inline void
|
69
|
+
ISEQ_ORIGINAL_ISEQ_CLEAR(const rb_iseq_t *iseq)
|
70
|
+
{
|
71
|
+
void *ptr = ISEQ_BODY(iseq)->variable.original_iseq;
|
72
|
+
ISEQ_BODY(iseq)->variable.original_iseq = NULL;
|
73
|
+
ruby_xfree(ptr);
|
74
|
+
}
|
75
|
+
|
76
|
+
static inline VALUE *
|
77
|
+
ISEQ_ORIGINAL_ISEQ_ALLOC(const rb_iseq_t *iseq, long size)
|
78
|
+
{
|
79
|
+
return ISEQ_BODY(iseq)->variable.original_iseq =
|
80
|
+
ALLOC_N(VALUE, size);
|
81
|
+
}
|
82
|
+
|
83
|
+
#define ISEQ_TRACE_EVENTS (RUBY_EVENT_LINE | \
|
84
|
+
RUBY_EVENT_CLASS | \
|
85
|
+
RUBY_EVENT_END | \
|
86
|
+
RUBY_EVENT_CALL | \
|
87
|
+
RUBY_EVENT_RETURN| \
|
88
|
+
RUBY_EVENT_C_CALL| \
|
89
|
+
RUBY_EVENT_C_RETURN | \
|
90
|
+
RUBY_EVENT_B_CALL | \
|
91
|
+
RUBY_EVENT_B_RETURN | \
|
92
|
+
RUBY_EVENT_RESCUE | \
|
93
|
+
RUBY_EVENT_COVERAGE_LINE| \
|
94
|
+
RUBY_EVENT_COVERAGE_BRANCH)
|
95
|
+
|
96
|
+
#define ISEQ_NOT_LOADED_YET IMEMO_FL_USER1
|
97
|
+
#define ISEQ_USE_COMPILE_DATA IMEMO_FL_USER2
|
98
|
+
#define ISEQ_TRANSLATED IMEMO_FL_USER3
|
99
|
+
|
100
|
+
#define ISEQ_EXECUTABLE_P(iseq) (FL_TEST_RAW(((VALUE)iseq), ISEQ_NOT_LOADED_YET | ISEQ_USE_COMPILE_DATA) == 0)
|
101
|
+
|
102
|
+
struct iseq_compile_data {
|
103
|
+
/* GC is needed */
|
104
|
+
const VALUE err_info;
|
105
|
+
const VALUE catch_table_ary; /* Array */
|
106
|
+
|
107
|
+
/* GC is not needed */
|
108
|
+
struct iseq_label_data *start_label;
|
109
|
+
struct iseq_label_data *end_label;
|
110
|
+
struct iseq_label_data *redo_label;
|
111
|
+
const rb_iseq_t *current_block;
|
112
|
+
struct iseq_compile_data_ensure_node_stack *ensure_node_stack;
|
113
|
+
struct {
|
114
|
+
struct iseq_compile_data_storage *storage_head;
|
115
|
+
struct iseq_compile_data_storage *storage_current;
|
116
|
+
} node;
|
117
|
+
struct {
|
118
|
+
struct iseq_compile_data_storage *storage_head;
|
119
|
+
struct iseq_compile_data_storage *storage_current;
|
120
|
+
} insn;
|
121
|
+
bool in_rescue;
|
122
|
+
int loopval_popped; /* used by NODE_BREAK */
|
123
|
+
int last_line;
|
124
|
+
int label_no;
|
125
|
+
int node_level;
|
126
|
+
int isolated_depth;
|
127
|
+
unsigned int ci_index;
|
128
|
+
unsigned int ic_index;
|
129
|
+
const rb_compile_option_t *option;
|
130
|
+
struct rb_id_table *ivar_cache_table;
|
131
|
+
const struct rb_builtin_function *builtin_function_table;
|
132
|
+
const NODE *root_node;
|
133
|
+
bool catch_except_p; // If a frame of this ISeq may catch exception, set true.
|
134
|
+
#if OPT_SUPPORT_JOKE
|
135
|
+
st_table *labels_table;
|
136
|
+
#endif
|
137
|
+
};
|
138
|
+
|
139
|
+
static inline struct iseq_compile_data *
|
140
|
+
ISEQ_COMPILE_DATA(const rb_iseq_t *iseq)
|
141
|
+
{
|
142
|
+
if (iseq->flags & ISEQ_USE_COMPILE_DATA) {
|
143
|
+
return iseq->aux.compile_data;
|
144
|
+
}
|
145
|
+
else {
|
146
|
+
return NULL;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
static inline void
|
151
|
+
ISEQ_COMPILE_DATA_ALLOC(rb_iseq_t *iseq)
|
152
|
+
{
|
153
|
+
iseq->aux.compile_data = ZALLOC(struct iseq_compile_data);
|
154
|
+
iseq->flags |= ISEQ_USE_COMPILE_DATA;
|
155
|
+
}
|
156
|
+
|
157
|
+
static inline void
|
158
|
+
ISEQ_COMPILE_DATA_CLEAR(rb_iseq_t *iseq)
|
159
|
+
{
|
160
|
+
iseq->flags &= ~ISEQ_USE_COMPILE_DATA;
|
161
|
+
iseq->aux.compile_data = NULL;
|
162
|
+
}
|
163
|
+
|
164
|
+
static inline rb_iseq_t *
|
165
|
+
iseq_imemo_alloc(void)
|
166
|
+
{
|
167
|
+
return IMEMO_NEW(rb_iseq_t, imemo_iseq, 0);
|
168
|
+
}
|
169
|
+
|
170
|
+
VALUE rb_iseq_ibf_dump(const rb_iseq_t *iseq, VALUE opt);
|
171
|
+
void rb_ibf_load_iseq_complete(rb_iseq_t *iseq);
|
172
|
+
const rb_iseq_t *rb_iseq_ibf_load(VALUE str);
|
173
|
+
const rb_iseq_t *rb_iseq_ibf_load_bytes(const char *cstr, size_t);
|
174
|
+
VALUE rb_iseq_ibf_load_extra_data(VALUE str);
|
175
|
+
void rb_iseq_init_trace(rb_iseq_t *iseq);
|
176
|
+
int rb_iseq_add_local_tracepoint_recursively(const rb_iseq_t *iseq, rb_event_flag_t turnon_events, VALUE tpval, unsigned int target_line, bool target_bmethod);
|
177
|
+
int rb_iseq_remove_local_tracepoint_recursively(const rb_iseq_t *iseq, VALUE tpval);
|
178
|
+
const rb_iseq_t *rb_iseq_load_iseq(VALUE fname);
|
179
|
+
int rb_iseq_opt_frozen_string_literal(void);
|
180
|
+
|
181
|
+
#if VM_INSN_INFO_TABLE_IMPL == 2
|
182
|
+
unsigned int *rb_iseq_insns_info_decode_positions(const struct rb_iseq_constant_body *body);
|
183
|
+
#endif
|
184
|
+
|
185
|
+
int rb_vm_insn_addr2opcode(const void *addr);
|
186
|
+
|
187
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
188
|
+
|
189
|
+
/* compile.c */
|
190
|
+
VALUE rb_iseq_compile_node(rb_iseq_t *iseq, const NODE *node);
|
191
|
+
VALUE rb_iseq_compile_callback(rb_iseq_t *iseq, const struct rb_iseq_new_with_callback_callback_func * ifunc);
|
192
|
+
VALUE *rb_iseq_original_iseq(const rb_iseq_t *iseq);
|
193
|
+
void rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE misc,
|
194
|
+
VALUE locals, VALUE args,
|
195
|
+
VALUE exception, VALUE body);
|
196
|
+
void rb_iseq_mark_and_pin_insn_storage(struct iseq_compile_data_storage *arena);
|
197
|
+
|
198
|
+
VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt);
|
199
|
+
VALUE rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc);
|
200
|
+
unsigned int rb_iseq_line_no(const rb_iseq_t *iseq, size_t pos);
|
201
|
+
#ifdef USE_ISEQ_NODE_ID
|
202
|
+
int rb_iseq_node_id(const rb_iseq_t *iseq, size_t pos);
|
203
|
+
#endif
|
204
|
+
void rb_iseq_trace_set(const rb_iseq_t *iseq, rb_event_flag_t turnon_events);
|
205
|
+
void rb_iseq_trace_set_all(rb_event_flag_t turnon_events);
|
206
|
+
void rb_iseq_insns_info_encode_positions(const rb_iseq_t *iseq);
|
207
|
+
|
208
|
+
struct rb_iseq_constant_body *rb_iseq_constant_body_alloc(void);
|
209
|
+
VALUE rb_iseqw_new(const rb_iseq_t *iseq);
|
210
|
+
const rb_iseq_t *rb_iseqw_to_iseq(VALUE iseqw);
|
211
|
+
|
212
|
+
VALUE rb_iseq_absolute_path(const rb_iseq_t *iseq); /* obsolete */
|
213
|
+
int rb_iseq_from_eval_p(const rb_iseq_t *iseq);
|
214
|
+
VALUE rb_iseq_type(const rb_iseq_t *iseq);
|
215
|
+
VALUE rb_iseq_label(const rb_iseq_t *iseq);
|
216
|
+
VALUE rb_iseq_base_label(const rb_iseq_t *iseq);
|
217
|
+
VALUE rb_iseq_first_lineno(const rb_iseq_t *iseq);
|
218
|
+
VALUE rb_iseq_method_name(const rb_iseq_t *iseq);
|
219
|
+
void rb_iseq_code_location(const rb_iseq_t *iseq, int *first_lineno, int *first_column, int *last_lineno, int *last_column);
|
220
|
+
|
221
|
+
void rb_iseq_remove_coverage_all(void);
|
222
|
+
|
223
|
+
/* proc.c */
|
224
|
+
const rb_iseq_t *rb_method_iseq(VALUE body);
|
225
|
+
const rb_iseq_t *rb_proc_get_iseq(VALUE proc, int *is_proc);
|
226
|
+
|
227
|
+
struct rb_compile_option_struct {
|
228
|
+
unsigned int inline_const_cache: 1;
|
229
|
+
unsigned int peephole_optimization: 1;
|
230
|
+
unsigned int tailcall_optimization: 1;
|
231
|
+
unsigned int specialized_instruction: 1;
|
232
|
+
unsigned int operands_unification: 1;
|
233
|
+
unsigned int instructions_unification: 1;
|
234
|
+
signed int frozen_string_literal: 2; /* -1: not specified, 0: false, 1: true */
|
235
|
+
unsigned int debug_frozen_string_literal: 1;
|
236
|
+
unsigned int coverage_enabled: 1;
|
237
|
+
int debug_level;
|
238
|
+
};
|
239
|
+
|
240
|
+
struct iseq_insn_info_entry {
|
241
|
+
int line_no;
|
242
|
+
#ifdef USE_ISEQ_NODE_ID
|
243
|
+
int node_id;
|
244
|
+
#endif
|
245
|
+
rb_event_flag_t events;
|
246
|
+
};
|
247
|
+
|
248
|
+
/*
|
249
|
+
* iseq type:
|
250
|
+
* CATCH_TYPE_RESCUE, CATCH_TYPE_ENSURE:
|
251
|
+
* use iseq as continuation.
|
252
|
+
*
|
253
|
+
* CATCH_TYPE_BREAK (iter):
|
254
|
+
* use iseq as key.
|
255
|
+
*
|
256
|
+
* CATCH_TYPE_BREAK (while), CATCH_TYPE_RETRY,
|
257
|
+
* CATCH_TYPE_REDO, CATCH_TYPE_NEXT:
|
258
|
+
* NULL.
|
259
|
+
*/
|
260
|
+
enum rb_catch_type {
|
261
|
+
CATCH_TYPE_RESCUE = INT2FIX(1),
|
262
|
+
CATCH_TYPE_ENSURE = INT2FIX(2),
|
263
|
+
CATCH_TYPE_RETRY = INT2FIX(3),
|
264
|
+
CATCH_TYPE_BREAK = INT2FIX(4),
|
265
|
+
CATCH_TYPE_REDO = INT2FIX(5),
|
266
|
+
CATCH_TYPE_NEXT = INT2FIX(6)
|
267
|
+
};
|
268
|
+
|
269
|
+
struct iseq_catch_table_entry {
|
270
|
+
enum rb_catch_type type;
|
271
|
+
rb_iseq_t *iseq;
|
272
|
+
|
273
|
+
unsigned int start;
|
274
|
+
unsigned int end;
|
275
|
+
unsigned int cont;
|
276
|
+
unsigned int sp;
|
277
|
+
};
|
278
|
+
|
279
|
+
RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_BEGIN()
|
280
|
+
struct iseq_catch_table {
|
281
|
+
unsigned int size;
|
282
|
+
struct iseq_catch_table_entry entries[FLEX_ARY_LEN];
|
283
|
+
} RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_END();
|
284
|
+
|
285
|
+
static inline int
|
286
|
+
iseq_catch_table_bytes(int n)
|
287
|
+
{
|
288
|
+
enum {
|
289
|
+
catch_table_entry_size = sizeof(struct iseq_catch_table_entry),
|
290
|
+
catch_table_entries_max = (INT_MAX - offsetof(struct iseq_catch_table, entries)) / catch_table_entry_size
|
291
|
+
};
|
292
|
+
if (n > catch_table_entries_max) rb_fatal("too large iseq_catch_table - %d", n);
|
293
|
+
return (int)(offsetof(struct iseq_catch_table, entries) +
|
294
|
+
n * catch_table_entry_size);
|
295
|
+
}
|
296
|
+
|
297
|
+
#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
|
298
|
+
|
299
|
+
struct iseq_compile_data_storage {
|
300
|
+
struct iseq_compile_data_storage *next;
|
301
|
+
unsigned int pos;
|
302
|
+
unsigned int size;
|
303
|
+
char buff[FLEX_ARY_LEN];
|
304
|
+
};
|
305
|
+
|
306
|
+
/* defined? */
|
307
|
+
|
308
|
+
enum defined_type {
|
309
|
+
DEFINED_NOT_DEFINED,
|
310
|
+
DEFINED_NIL = 1,
|
311
|
+
DEFINED_IVAR,
|
312
|
+
DEFINED_LVAR,
|
313
|
+
DEFINED_GVAR,
|
314
|
+
DEFINED_CVAR,
|
315
|
+
DEFINED_CONST,
|
316
|
+
DEFINED_METHOD,
|
317
|
+
DEFINED_YIELD,
|
318
|
+
DEFINED_ZSUPER,
|
319
|
+
DEFINED_SELF,
|
320
|
+
DEFINED_TRUE,
|
321
|
+
DEFINED_FALSE,
|
322
|
+
DEFINED_ASGN,
|
323
|
+
DEFINED_EXPR,
|
324
|
+
DEFINED_REF,
|
325
|
+
DEFINED_FUNC,
|
326
|
+
DEFINED_CONST_FROM
|
327
|
+
};
|
328
|
+
|
329
|
+
VALUE rb_iseq_defined_string(enum defined_type type);
|
330
|
+
|
331
|
+
/* vm.c */
|
332
|
+
VALUE rb_iseq_local_variables(const rb_iseq_t *iseq);
|
333
|
+
|
334
|
+
attr_index_t rb_estimate_iv_count(VALUE klass, const rb_iseq_t * initialize_iseq);
|
335
|
+
|
336
|
+
void rb_free_encoded_insn_data(void);
|
337
|
+
|
338
|
+
RUBY_SYMBOL_EXPORT_END
|
339
|
+
|
340
|
+
#endif /* RUBY_ISEQ_H */
|