虚無庵

徒然なるままに

今日の ruby build 2024-01-07

今日のビルド

bca1493815ae7ab504ed4f9b049f62a27f30d779 までを pull ってきてビルド。

compiling parse.c
In file included from ./include/ruby/internal/arithmetic/int.h:26,
                 from ./include/ruby/internal/arithmetic/char.h:23,
                 from ./include/ruby/internal/arithmetic.h:24,
                 from ./include/ruby/ruby.h:28,
                 from internal.h:31,
                 from parse.y:49:
parse.y: In function ‘node_cdhash_hash’:
./include/ruby/internal/arithmetic/long.h:53:22: warning: operand of ‘?:’ changes signedness from ‘long int’ to ‘VALUE’ {aka ‘long unsigned int’} due to unsignedness of other operand [-Wsign-compare]
   53 | #define RB_FIX2LONG  rb_fix2long          /**< @alias{rb_fix2long} */
./include/ruby/internal/arithmetic/long.h:46:22: note: in expansion of macro ‘RB_FIX2LONG’
   46 | #define FIX2LONG     RB_FIX2LONG          /**< @old{RB_FIX2LONG} */
      |                      ^~~~~~~~~~~
parse.y:227:43: note: in expansion of macro ‘FIX2LONG’
  227 |             return (FIXNUM_P(val) ? val : FIX2LONG(rb_big_hash(val)));
      |                                           ^~~~~~~~
parse.y: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
compiling ripper.c
ripper.y: In function ‘set_number_literal’:
ripper.y:9149:26: warning: variable ‘numeric_type’ set but not used [-Wunused-but-set-variable]
 9149 |     enum rb_numeric_type numeric_type = integer_literal;
      |                          ^~~~~~~~~~~~
ripper.y: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
  Files:        942

  Classes:     1230 ( 288 undocumented)
  Modules:      226 (  68 undocumented)
  Constants:   2368 ( 642 undocumented)
  Attributes:  1458 ( 239 undocumented)
  Methods:    12099 (2105 undocumented)

  Total:      17381 (3342 undocumented)
   80.77% documented

  Elapsed: 30.9s

おや、これは何だ?これの影響かな?

今日のテスト

make test-all を実行。

Finished tests in 915.309203s, 29.0121 tests/s, 6910.0059 assertions/s.
26555 tests, 6324792 assertions, 0 failures, 0 errors, 104 skips

ruby -v: ruby 3.4.0dev (2024-01-07T12:49:47Z master bca1493815) [x86_64-linux]

今日のビルド(Universal Parser 有効化)

bca1493815ae7ab504ed4f9b049f62a27f30d779 までを pull ってきてビルド。

ruby_parser.c: In function ‘rb_parser_config_initialize’:
ruby_parser.c:778:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  778 |     config->compile_warn    = rb_compile_warn;
      |                             ^
ruby_parser.c:779:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  779 |     config->compile_warning = rb_compile_warning;
      |                             ^
ruby_parser.c:780:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  780 |     config->bug             = rb_bug;
      |                             ^
ruby_parser.c:781:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  781 |     config->fatal           = rb_fatal;
      |                             ^
ruby_parser.c: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
ripper.y: In function ‘set_number_literal’:
ripper.y:9149:26: warning: variable ‘numeric_type’ set but not used [-Wunused-but-set-variable]
 9149 |     enum rb_numeric_type numeric_type = integer_literal;
      |                          ^~~~~~~~~~~~
ripper.y: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
  Files:        942

  Classes:     1230 ( 288 undocumented)
  Modules:      226 (  68 undocumented)
  Constants:   2368 ( 642 undocumented)
  Attributes:  1458 ( 239 undocumented)
  Methods:    12099 (2105 undocumented)

  Total:      17381 (3342 undocumented)
   80.77% documented

  Elapsed: 36.3s

今日のテスト(Universal Parser 有効化)

make test-all を実行。

  1) Failure:
TestRubyLiteral#test_hash_duplicated_key [/home/jinroq/dev/sandbox/my-ruby-build/build-up-ruby-repo/test/ruby/test_literal.rb:488]:
duplicated literal key.

1. [ 3/11] Assertion for "1000"
   | expected: /key 1000 is duplicated/
   | actual: "".

2. [ 4/11] Assertion for "1.0"
   | expected: /key 1\.0 is duplicated/
   | actual: "".

3. [ 5/11] Assertion for "1_000_000_000_000_000_000_000"
   | expected: /key 1000000000000000000000 is duplicated/
   | actual: "".

4. [ 6/11] Assertion for "1.0r"
   | expected: /key \(1\/1\) is duplicated/
   | actual: "".

5. [ 7/11] Assertion for "1.0i"
   | expected: /key \(0\+1\.0i\) is duplicated/
   | actual: "".

6. [ 8/11] Assertion for "1.72723e-77"
   | expected: /key 1\.72723e\-77 is duplicated/
   | actual: "".

7. [10/11] Assertion for "__LINE__"
   | expected: /key 1 is duplicated/
   | actual: "".

8. [11/11] Assertion for "__FILE__"
   | expected: /key "\(eval\ at\ \/home\/jinroq\/dev\/sandbox\/my\-ruby\-build\/build\-up\-ruby\-repo\/test\/ruby\/test_literal\.rb:502\)" is duplicated/
   | actual: "".

Finished tests in 987.922997s, 26.8796 tests/s, 6403.1499 assertions/s.
26555 tests, 6325819 assertions, 1 failures, 0 errors, 104 skips

ruby -v: ruby 3.4.0dev (2024-01-07T12:49:47Z master bca1493815) [x86_64-linux]
make: *** [uncommon.mk:945: yes-test-all] エラー 1

今日のビルド(YJIT 有効化)

bca1493815ae7ab504ed4f9b049f62a27f30d779 までを pull ってきてビルド。

compiling parse.c
In file included from ./include/ruby/internal/arithmetic/int.h:26,
                 from ./include/ruby/internal/arithmetic/char.h:23,
                 from ./include/ruby/internal/arithmetic.h:24,
                 from ./include/ruby/ruby.h:28,
                 from internal.h:31,
                 from parse.y:49:
parse.y: In function ‘node_cdhash_hash’:
./include/ruby/internal/arithmetic/long.h:53:22: warning: operand of ‘?:’ changes signedness from ‘long int’ to ‘VALUE’ {aka ‘long unsigned int’} due to unsignedness of other operand [-Wsign-compare]
   53 | #define RB_FIX2LONG  rb_fix2long          /**< @alias{rb_fix2long} */
./include/ruby/internal/arithmetic/long.h:46:22: note: in expansion of macro ‘RB_FIX2LONG’
   46 | #define FIX2LONG     RB_FIX2LONG          /**< @old{RB_FIX2LONG} */
      |                      ^~~~~~~~~~~
parse.y:227:43: note: in expansion of macro ‘FIX2LONG’
  227 |             return (FIXNUM_P(val) ? val : FIX2LONG(rb_big_hash(val)));
      |                                           ^~~~~~~~
parse.y: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
ripper.y: In function ‘set_number_literal’:
ripper.y:9149:26: warning: variable ‘numeric_type’ set but not used [-Wunused-but-set-variable]
 9149 |     enum rb_numeric_type numeric_type = integer_literal;
      |                          ^~~~~~~~~~~~
ripper.y: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics

今日のテスト(YJIT 有効化)

make test-all を実行。

Finished tests in 944.542863s, 28.1141 tests/s, 6694.8703 assertions/s.
26555 tests, 6323592 assertions, 0 failures, 0 errors, 104 skips

ruby -v: ruby 3.4.0dev (2024-01-07T12:49:47Z master bca1493815) [x86_64-linux]

今日のビルド(RJIT 有効化)

bca1493815ae7ab504ed4f9b049f62a27f30d779 までを pull ってきてビルド。

compiling parse.c
In file included from ./include/ruby/internal/arithmetic/int.h:26,
                 from ./include/ruby/internal/arithmetic/char.h:23,
                 from ./include/ruby/internal/arithmetic.h:24,
                 from ./include/ruby/ruby.h:28,
                 from internal.h:31,
                 from parse.y:49:
parse.y: In function ‘node_cdhash_hash’:
./include/ruby/internal/arithmetic/long.h:53:22: warning: operand of ‘?:’ changes signedness from ‘long int’ to ‘VALUE’ {aka ‘long unsigned int’} due to unsignedness of other operand [-Wsign-compare]
   53 | #define RB_FIX2LONG  rb_fix2long          /**< @alias{rb_fix2long} */
./include/ruby/internal/arithmetic/long.h:46:22: note: in expansion of macro ‘RB_FIX2LONG’
   46 | #define FIX2LONG     RB_FIX2LONG          /**< @old{RB_FIX2LONG} */
      |                      ^~~~~~~~~~~
parse.y:227:43: note: in expansion of macro ‘FIX2LONG’
  227 |             return (FIXNUM_P(val) ? val : FIX2LONG(rb_big_hash(val)));
      |                                           ^~~~~~~~
parse.y: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
compiling ripper.c
ripper.y: In function ‘set_number_literal’:
ripper.y:9149:26: warning: variable ‘numeric_type’ set but not used [-Wunused-but-set-variable]
 9149 |     enum rb_numeric_type numeric_type = integer_literal;
      |                          ^~~~~~~~~~~~
ripper.y: At top level:
cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics

今日のテスト(RJIT 有効化)

make test-all を実行。

  1) Failure:
TestRubyOptimization#test_block_parameter_should_not_create_objects [/home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/test/ruby/test_optimization.rb:785]:
<0> expected but was
<19>.

  2) Failure:
TestRubyOptions#test_parser_flag [/home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/test/ruby/test_rubyoptions.rb:293]:
pid 2259841 killed by SIGABRT (signal 6) (core dumped)
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby: warning: The compiler based on the Prism parser is currently experimental and compatibility with the compiler based on parse.y is not yet complete. Please report any issues you find on the `ruby/prism` issue tracker.
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/compiler.rb:4: [BUG] Local with constant_id 90 does not exist
| ruby 3.4.0dev (2024-01-07T12:49:47Z master bca1493815) +RJIT +PRISM [x86_64-lin
| 
| -- Control frame information -----------------------------------------------
| c:0005 p:---- s:0019 e:000018 CFUNC  :require
| c:0004 p:0029 s:0014 e:000013 TOP    /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/compiler.rb:4 [FINISH]
| c:0003 p:---- s:0011 e:000010 CFUNC  :require
| c:0002 p:0038 s:0006 e:000005 TOP    <internal:rjit>:38 [FINISH]
| c:0001 p:0000 s:0003 E:001960 DUMMY  [FINISH]
| 
| -- Ruby level backtrace information ----------------------------------------
| <internal:rjit>:38:in `<internal:rjit>'
| <internal:rjit>:38:in `require'
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/compiler.rb:4:in `<compiled>'
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/compiler.rb:4:in `require'
| 
| -- Threading information ---------------------------------------------------
| Total ractor count: 1
| Ruby thread count for this ractor: 1
| 
| -- C level backtrace information -------------------------------------------
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_print_backtrace+0x14) [0x55c996fdb921] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_dump.c:820
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_vm_bugreport) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_dump.c:1151
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(bug_report_end+0x0) [0x55c9971a0e26] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/error.c:1042
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_bug_without_die) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/error.c:1042
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(die+0x0) [0x55c996dc4885] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/error.c:1050
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_bug) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/error.c:1052
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_constant_id_lookup+0x0) [0x55c996dc415c] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:787
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_pattern) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:1992
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_pattern_match+0x148) [0x55c9971602e8] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:1406
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_pattern+0x65b) [0x55c99715d7fb] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:1603
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(ADD_ELEM+0x0) [0x55c997150030] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:3384
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:3385
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x8b71) [0x55c997155071] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:4627
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x624d) [0x55c99715274d] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6324
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xd4a9) [0x55c9971599a9] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6183
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x55c99715c3b7] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6522
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_iseq_compile_prism_node) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/compile.c:991
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_iseq_new_with_opt+0x124) [0x55c996e369c4] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/iseq.c:986
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_call+0x583) [0x55c997161a43] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:825
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x480e) [0x55c997150d0e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:3173
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x620e) [0x55c99715270e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6322
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa258) [0x55c997156758] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6236
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x55c99715c3b7] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6522
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_iseq_compile_prism_node) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/compile.c:991
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_iseq_new_with_opt+0x124) [0x55c996e369c4] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/iseq.c:986
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x55a3) [0x55c997151aa3] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:825
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x620e) [0x55c99715270e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6322
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa258) [0x55c997156758] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6236
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x55c99715c3b7] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6522
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_iseq_compile_prism_node) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/compile.c:991
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_iseq_new_with_opt+0x124) [0x55c996e369c4] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/iseq.c:986
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x3454) [0x55c99714f954] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:825
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x624d) [0x55c99715274d] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6324
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa258) [0x55c997156758] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6236
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x55c99715c3b7] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6522
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_iseq_compile_prism_node) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/compile.c:991
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_iseq_new_with_opt+0x124) [0x55c996e369c4] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/iseq.c:986
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_class_path+0x0) [0x55c99714de47] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:825
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:4902
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x624d) [0x55c99715274d] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6324
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa258) [0x55c997156758] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6236
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x55c99715c3b7] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6522
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_iseq_compile_prism_node) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/compile.c:991
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(iseqw_s_compile_prism_compile+0xfd) [0x55c996e34e8d] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/iseq.c:1416
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_iseq_new_main_prism+0xa8) [0x55c996e378c8] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/iseq.c:1516
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(load_iseq_eval+0xe3) [0x55c996e3e30f] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:750
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(require_internal) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1281
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_require_string_internal+0x2c) [0x55c996e3e616] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1380
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_require_string) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1373
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_f_require) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1015
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_cfp_consistent_p+0x0) [0x55c996fadefc] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:3490
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_call_cfunc_with_frame_) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:3492
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_call_cfunc_with_frame) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:3518
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_sendish+0xa0) [0x55c996fcc571] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:5581
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_exec_core) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/insns.def:834
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_vm_exec+0x18e) [0x55c996fbc85e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm.c:2486
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(load_iseq_eval+0x3c) [0x55c996e3e21a] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:774
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(require_internal) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1281
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_require_string_internal+0x2c) [0x55c996e3e616] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1380
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_require_string) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1373
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_f_require) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/load.c:1015
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_cfp_consistent_p+0x0) [0x55c996fadefc] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:3490
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_call_cfunc_with_frame_) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:3492
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_call_cfunc_with_frame) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:3518
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_sendish+0xa0) [0x55c996fcc571] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm_insnhelper.c:5581
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(vm_exec_core) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/insns.def:834
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_vm_exec+0x18e) [0x55c996fbc85e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/vm.c:2486
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(Init_builtin_prelude+0x0) [0x55c996e0a1a7] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/inits.c:107
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_call_builtin_inits) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/inits.c:109
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(ruby_init_prelude+0x0) [0x55c996f1ea51] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby.c:1790
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(ruby_opt_init) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby.c:1791
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(ruby_opt_init+0x13) [0x55c996f20303] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby.c:1749
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(process_options) /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby.c:2431
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(ruby_process_options+0x14c) [0x55c996f214cc] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby.c:3014
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(ruby_options+0xd3) [0x55c996dc9f93] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/eval.c:121
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_main+0x19) [0x55c996dc4c4f] ./main.c:39
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(main) ./main.c:58
| /lib/x86_64-linux-gnu/libc.so.6(__libc_start_call_main+0x80) [0x7f30fc029d90] ../sysdeps/nptl/libc_start_call_main.h:58
| /lib/x86_64-linux-gnu/libc.so.6(call_init+0x0) [0x7f30fc029e40] ../csu/libc-start.c:392
| /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main_impl) ../csu/libc-start.c:379
| /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main) (null):0
| [0x55c996dc4ca5]
| 
| -- Other runtime information -----------------------------------------------
| 
| * Loaded script: -e
| 
| * Loaded features:
| 
|     0 enumerator.so
|     1 thread.rb
|     2 fiber.so
|     3 rational.so
|     4 complex.so
|     5 ruby2_keywords.rb
|     6 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
|     7 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
|     8 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
|     9 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/closure.rb
|    10 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/function.rb
|    11 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/version.rb
|    12 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle.rb
|    13 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/value.rb
|    14 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/pack.rb
|    15 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/struct.rb
|    16 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/cparser.rb
|    17 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/common/fiddle/import.rb
|    18 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/c_pointer.rb
|    19 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/c_type.rb
|    20 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/assembler.rb
|    21 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/block.rb
|    22 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/branch_stub.rb
|    23 /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/code_block.rb
| 
| * Process memory map:
| 
| 55c996d73000-55c996db6000 r--p 00000000 103:02 4355518                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 55c996db6000-55c9971ca000 r-xp 00043000 103:02 4355518                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 55c9971ca000-55c997358000 r--p 00457000 103:02 4355518                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 55c997358000-55c99736f000 r--p 005e4000 103:02 4355518                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 55c99736f000-55c997370000 rw-p 005fb000 103:02 4355518                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 55c997370000-55c997385000 rw-p 00000000 00:00 0 
| 55c99853d000-55c998863000 rw-p 00000000 00:00 0                          [heap]
| 7f30dea00000-7f30dec1e000 r--s 00000000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7f30dee00000-7f30e19e7000 r--s 00000000 103:02 4355518                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 7f30e1a80000-7f30e1b00000 rw-p 00000000 00:00 0 
| 7f30e1b0f000-7f30e1b10000 ---p 00000000 00:00 0 
| 7f30e1b10000-7f30e1b51000 rw-p 00000000 00:00 0 
| 7f30e1b51000-7f30e1b52000 ---p 00000000 00:00 0 
| 7f30e1b52000-7f30e1b93000 rw-p 00000000 00:00 0 
| 7f30e1b93000-7f30e1b94000 ---p 00000000 00:00 0 
| 7f30e1b94000-7f30e1bd5000 rw-p 00000000 00:00 0 
| 7f30e1bd5000-7f30e1bd6000 ---p 00000000 00:00 0 
| 7f30e1bd6000-7f30e1c17000 rw-p 00000000 00:00 0 
| 7f30e1c17000-7f30e1c18000 ---p 00000000 00:00 0 
| 7f30e1c18000-7f30e1c59000 rw-p 00000000 00:00 0 
| 7f30e1c59000-7f30e1c5a000 ---p 00000000 00:00 0 
| 7f30e1c5a000-7f30e1c9b000 rw-p 00000000 00:00 0 
| 7f30e1c9b000-7f30e1c9c000 ---p 00000000 00:00 0 
| 7f30e1c9c000-7f30e1cdd000 rw-p 00000000 00:00 0 
| 7f30e1cdd000-7f30e1cde000 ---p 00000000 00:00 0 
| 7f30e1cde000-7f30e1d1f000 rw-p 00000000 00:00 0 
| 7f30e1d1f000-7f30e1d20000 ---p 00000000 00:00 0 
| 7f30e1d20000-7f30e1d61000 rw-p 00000000 00:00 0 
| 7f30e1d61000-7f30e1d62000 ---p 00000000 00:00 0 
| 7f30e1d62000-7f30e1da3000 rw-p 00000000 00:00 0 
| 7f30e1da3000-7f30e1da4000 ---p 00000000 00:00 0 
| 7f30e1da4000-7f30e1de5000 rw-p 00000000 00:00 0 
| 7f30e1de5000-7f30e1de6000 ---p 00000000 00:00 0 
| 7f30e1de6000-7f30e1e27000 rw-p 00000000 00:00 0 
| 7f30e1e27000-7f30e1e28000 ---p 00000000 00:00 0 
| 7f30e1e28000-7f30e1e69000 rw-p 00000000 00:00 0 
| 7f30e1e69000-7f30e1e6a000 ---p 00000000 00:00 0 
| 7f30e1e6a000-7f30e1eab000 rw-p 00000000 00:00 0 
| 7f30e1eab000-7f30e1eac000 ---p 00000000 00:00 0 
| 7f30e1eac000-7f30e1eed000 rw-p 00000000 00:00 0 
| 7f30e1eed000-7f30e1eee000 ---p 00000000 00:00 0 
| 7f30e1eee000-7f30e1f2f000 rw-p 00000000 00:00 0 
| 7f30e1f2f000-7f30e1f30000 ---p 00000000 00:00 0 
| 7f30e1f30000-7f30e1f71000 rw-p 00000000 00:00 0 
| 7f30e1f71000-7f30e1f72000 ---p 00000000 00:00 0 
| 7f30e1f72000-7f30e1fb3000 rw-p 00000000 00:00 0 
| 7f30e1fb3000-7f30e1fb4000 ---p 00000000 00:00 0 
| 7f30e1fb4000-7f30e1ff5000 rw-p 00000000 00:00 0 
| 7f30e1ff5000-7f30e1ff6000 ---p 00000000 00:00 0 
| 7f30e1ff6000-7f30e2037000 rw-p 00000000 00:00 0 
| 7f30e2037000-7f30e2038000 ---p 00000000 00:00 0 
| 7f30e2038000-7f30e2079000 rw-p 00000000 00:00 0 
| 7f30e2079000-7f30e207a000 ---p 00000000 00:00 0 
| 7f30e207a000-7f30e20bb000 rw-p 00000000 00:00 0 
| 7f30e20bb000-7f30e20bc000 ---p 00000000 00:00 0 
| 7f30e20bc000-7f30e20fd000 rw-p 00000000 00:00 0 
| 7f30e20fd000-7f30e20fe000 ---p 00000000 00:00 0 
| 7f30e20fe000-7f30e213f000 rw-p 00000000 00:00 0 
| 7f30e213f000-7f30e2140000 ---p 00000000 00:00 0 
| 7f30e2140000-7f30e2181000 rw-p 00000000 00:00 0 
| 7f30e2181000-7f30e2182000 ---p 00000000 00:00 0 
| 7f30e2182000-7f30e21c3000 rw-p 00000000 00:00 0 
| 7f30e21c3000-7f30e21c4000 ---p 00000000 00:00 0 
| 7f30e21c4000-7f30e2205000 rw-p 00000000 00:00 0 
| 7f30e2205000-7f30e2206000 ---p 00000000 00:00 0 
| 7f30e2206000-7f30e2247000 rw-p 00000000 00:00 0 
| 7f30e2247000-7f30e2248000 ---p 00000000 00:00 0 
| 7f30e2248000-7f30e2289000 rw-p 00000000 00:00 0 
| 7f30e2289000-7f30e228a000 ---p 00000000 00:00 0 
| 7f30e228a000-7f30e22cb000 rw-p 00000000 00:00 0 
| 7f30e22cb000-7f30e22cc000 ---p 00000000 00:00 0 
| 7f30e22cc000-7f30e230d000 rw-p 00000000 00:00 0 
| 7f30e230d000-7f30e230e000 ---p 00000000 00:00 0 
| 7f30e230e000-7f30e234f000 rw-p 00000000 00:00 0 
| 7f30e234f000-7f30e2350000 ---p 00000000 00:00 0 
| 7f30e2350000-7f30e2b90000 rw-p 00000000 00:00 0 
| 7f30e2b92000-7f30e2b94000 r--p 00000000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7f30e2b94000-7f30e2b9b000 r-xp 00002000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7f30e2b9b000-7f30e2b9c000 r--p 00009000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7f30e2b9c000-7f30e2b9d000 ---p 0000a000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7f30e2b9d000-7f30e2b9e000 r--p 0000a000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7f30e2b9e000-7f30e2b9f000 rw-p 0000b000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7f30e2b9f000-7f30fc000000 rw-p 00000000 00:00 0 
| 7f30fc000000-7f30fc028000 r--p 00000000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7f30fc028000-7f30fc1bd000 r-xp 00028000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7f30fc1bd000-7f30fc215000 r--p 001bd000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7f30fc215000-7f30fc219000 r--p 00214000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7f30fc219000-7f30fc21b000 rw-p 00218000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7f30fc21b000-7f30fc228000 rw-p 00000000 00:00 0 
| 7f30fc22f000-7f30fc233000 r--p 00000000 103:02 4334092                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7f30fc233000-7f30fc23b000 r-xp 00004000 103:02 4334092                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7f30fc23b000-7f30fc23e000 r--p 0000c000 103:02 4334092                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7f30fc23e000-7f30fc23f000 r--p 0000e000 103:02 4334092                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7f30fc23f000-7f30fc240000 rw-p 0000f000 103:02 4334092                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7f30fc240000-7f30fc260000 rw-p 00000000 00:00 0 
| 7f30fc263000-7f30fc369000 rw-p 00000000 00:00 0 
| 7f30fc369000-7f30fc36c000 r--p 00000000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7f30fc36c000-7f30fc383000 r-xp 00003000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7f30fc383000-7f30fc387000 r--p 0001a000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7f30fc387000-7f30fc388000 r--p 0001d000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7f30fc388000-7f30fc389000 rw-p 0001e000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7f30fc389000-7f30fc397000 r--p 00000000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7f30fc397000-7f30fc413000 r-xp 0000e000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7f30fc413000-7f30fc46e000 r--p 0008a000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7f30fc46e000-7f30fc46f000 r--p 000e4000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7f30fc46f000-7f30fc470000 rw-p 000e5000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7f30fc470000-7f30fc472000 r--p 00000000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7f30fc472000-7f30fc486000 r-xp 00002000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7f30fc486000-7f30fc49f000 r--p 00016000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7f30fc49f000-7f30fc4a0000 ---p 0002f000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7f30fc4a0000-7f30fc4a1000 r--p 0002f000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7f30fc4a1000-7f30fc4a2000 rw-p 00030000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7f30fc4a2000-7f30fc4aa000 rw-p 00000000 00:00 0 
| 7f30fc4aa000-7f30fc4b4000 r--p 00000000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7f30fc4b4000-7f30fc513000 r-xp 0000a000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7f30fc513000-7f30fc52a000 r--p 00069000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7f30fc52a000-7f30fc52b000 r--p 0007f000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7f30fc52b000-7f30fc52c000 rw-p 00080000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7f30fc52c000-7f30fc52e000 r--p 00000000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7f30fc52e000-7f30fc53f000 r-xp 00002000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7f30fc53f000-7f30fc545000 r--p 00013000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7f30fc545000-7f30fc546000 ---p 00019000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7f30fc546000-7f30fc547000 r--p 00019000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7f30fc547000-7f30fc548000 rw-p 0001a000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7f30fc550000-7f30fc553000 r--p 00000000 103:02 4337405                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/context.rb
| 7f30fc553000-7f30fc554000 r--p 00000000 103:02 4355657                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7f30fc554000-7f30fc555000 r-xp 00001000 103:02 4355657                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7f30fc555000-7f30fc556000 r--p 00002000 103:02 4355657                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7f30fc556000-7f30fc557000 r--p 00002000 103:02 4355657                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7f30fc557000-7f30fc558000 rw-p 00003000 103:02 4355657                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7f30fc558000-7f30fc559000 r--p 00000000 103:02 4355532                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7f30fc559000-7f30fc55a000 r-xp 00001000 103:02 4355532                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7f30fc55a000-7f30fc55b000 r--p 00002000 103:02 4355532                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7f30fc55b000-7f30fc55c000 r--p 00002000 103:02 4355532                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7f30fc55c000-7f30fc55d000 rw-p 00003000 103:02 4355532                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7f30fc55d000-7f30fc55f000 rw-p 00000000 00:00 0 
| 7f30fc55f000-7f30fc561000 r--p 00000000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7f30fc561000-7f30fc58b000 r-xp 00002000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7f30fc58b000-7f30fc596000 r--p 0002c000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7f30fc597000-7f30fc599000 r--p 00037000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7f30fc599000-7f30fc59b000 rw-p 00039000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7ffe98684000-7ffe98e83000 rw-p 00000000 00:00 0                          [stack]
| 7ffe98fd3000-7ffe98fd7000 r--p 00000000 00:00 0                          [vvar]
| 7ffe98fd7000-7ffe98fd9000 r-xp 00000000 00:00 0                          [vdso]
| ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0                  [vsyscall]
| 
| 
.

1. [1/2] Assertion for "stdout"
   | <["hi"]> expected but was
   | <[]>.

  3) Failure:
TestGc#test_gc_parameter_init_slots [/home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/test/ruby/test_gc.rb:477]:
{:slot_size=>160, :heap_allocatable_pages=>1, :heap_eden_pages=>21, :heap_eden_slots=>8585, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>24, :total_freed_pages=>3, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>0, :total_allocated_objects=>16209, :total_freed_objects=>8341}.
Expected 8993 to be >= 10000.

  4) Failure:
TestGc#test_thrashing_for_young_objects [/home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/test/ruby/test_gc.rb:676]:
before_stats: {:count=>26, :time=>52, :marking_time=>35, :sweeping_time=>17, :heap_allocated_pages=>154, :heap_sorted_length=>302, :heap_allocatable_pages=>148, :heap_available_slots=>212638, :heap_live_slots=>155136, :heap_free_slots=>57502, :heap_final_slots=>0, :heap_marked_slots=>129539, :heap_eden_pages=>154, :heap_tomb_pages=>0, :total_allocated_pages=>160, :total_freed_pages=>6, :total_allocated_objects=>1360556, :total_freed_objects=>1205420, :malloc_increase_bytes=>2120, :malloc_increase_bytes_limit=>16777216, :minor_gc_count=>21, :major_gc_count=>5, :compact_count=>0, :read_barrier_faults=>0, :total_moved_objects=>0, :remembered_wb_unprotected_objects=>0, :remembered_wb_unprotected_objects_limit=>1230, :old_objects=>129529, :old_objects_limit=>246138, :oldmalloc_increase_bytes=>2120, :oldmalloc_increase_bytes_limit=>19350882}
before_stat_heap: {0=>{:slot_size=>40, :heap_allocatable_pages=>0, :heap_eden_pages=>119, :heap_eden_slots=>194847, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>120, :total_freed_pages=>1, :force_major_gc_count=>1, :force_incremental_marking_finish_count=>1, :total_allocated_objects=>1322409, :total_freed_objects=>1172478}, 1=>{:slot_size=>80, :heap_allocatable_pages=>1, :heap_eden_pages=>11, :heap_eden_slots=>9004, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>12, :total_freed_pages=>1, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>1, :total_allocated_objects=>21492, :total_freed_objects=>18263}, 2=>{:slot_size=>160, :heap_allocatable_pages=>1, :heap_eden_pages=>20, :heap_eden_slots=>8175, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>24, :total_freed_pages=>4, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>0, :total_allocated_objects=>16643, :total_freed_objects=>14610}, 3=>{:slot_size=>320, :heap_allocatable_pages=>48, :heap_eden_pages=>2, :heap_eden_slots=>408, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>2, :total_freed_pages=>0, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>0, :total_allocated_objects=>59, :total_freed_objects=>51}, 4=>{:slot_size=>640, :heap_allocatable_pages=>98, :heap_eden_pages=>2, :heap_eden_slots=>204, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>2, :total_freed_pages=>0, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>0, :total_allocated_objects=>23, :total_freed_objects=>18}}
after_stats: {:count=>41, :time=>67, :marking_time=>37, :sweeping_time=>30, :heap_allocated_pages=>154, :heap_sorted_length=>302, :heap_allocatable_pages=>148, :heap_available_slots=>212638, :heap_live_slots=>129720, :heap_free_slots=>82918, :heap_final_slots=>0, :heap_marked_slots=>129659, :heap_eden_pages=>154, :heap_tomb_pages=>0, :total_allocated_pages=>160, :total_freed_pages=>6, :total_allocated_objects=>2364906, :total_freed_objects=>2235186, :malloc_increase_bytes=>1912, :malloc_increase_bytes_limit=>16777216, :minor_gc_count=>36, :major_gc_count=>5, :compact_count=>0, :read_barrier_faults=>0, :total_moved_objects=>0, :remembered_wb_unprotected_objects=>0, :remembered_wb_unprotected_objects_limit=>1230, :old_objects=>129646, :old_objects_limit=>246138, :oldmalloc_increase_bytes=>6504, :oldmalloc_increase_bytes_limit=>19350882}
after_stat_heap: {0=>{:slot_size=>40, :heap_allocatable_pages=>0, :heap_eden_pages=>119, :heap_eden_slots=>194847, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>120, :total_freed_pages=>1, :force_major_gc_count=>1, :force_incremental_marking_finish_count=>1, :total_allocated_objects=>2326463, :total_freed_objects=>2201981}, 1=>{:slot_size=>80, :heap_allocatable_pages=>1, :heap_eden_pages=>11, :heap_eden_slots=>9004, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>12, :total_freed_pages=>1, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>1, :total_allocated_objects=>21563, :total_freed_objects=>18321}, 2=>{:slot_size=>160, :heap_allocatable_pages=>1, :heap_eden_pages=>20, :heap_eden_slots=>8175, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>24, :total_freed_pages=>4, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>0, :total_allocated_objects=>16862, :total_freed_objects=>14815}, 3=>{:slot_size=>320, :heap_allocatable_pages=>48, :heap_eden_pages=>2, :heap_eden_slots=>408, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>2, :total_freed_pages=>0, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>0, :total_allocated_objects=>59, :total_freed_objects=>51}, 4=>{:slot_size=>640, :heap_allocatable_pages=>98, :heap_eden_pages=>2, :heap_eden_slots=>204, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>2, :total_freed_pages=>0, :force_major_gc_count=>0, :force_incremental_marking_finish_count=>0, :total_allocated_objects=>23, :total_freed_objects=>18}}.
<0> expected but was
<6>.

  5) Failure:
TestYJIT#test_compile_opt_getconstant_path [/home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/test/ruby/test_yjit.rb:495]:
Expected to compile instructions opt_getconstant_path but didn't.
iseq:
== disasm: #<ISeq:block in <main>@-e:2 (2,15)-(12,1)>
0000 definemethod                           :get_foo, get_foo         (   3)[LiBc]
0003 putobject                              123                       (   7)[Li]
0005 putspecialobject                       3
0007 setconstant                            :FOO
0009 putself                                                          (   9)[Li]
0010 opt_send_without_block                 <calldata!mid:get_foo, argc:0, FCALL|VCALL|ARGS_SIMPLE>
0012 pop
0013 putself                                                          (  10)[Li]
0014 opt_send_without_block                 <calldata!mid:get_foo, argc:0, FCALL|VCALL|ARGS_SIMPLE>
0016 leave                                                            (  12)[Br]

== disasm: #<ISeq:get_foo@-e:3 (3,2)-(5,3)>
0000 opt_getconstant_path                   <ic:0 FOO>                (   4)[LiCa]
0002 leave                                                            (   5)[Re]


  6) Failure:
TestYJIT#test_build_large_struct [/home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/test/ruby/test_yjit.rb:916]:
Expected to compile instructions opt_send_without_block but didn't.
iseq:
== disasm: #<ISeq:block in <main>@-e:2 (2,15)-(12,1)>
0000 putobject                              Object                    (   3)[LiBc]
0002 opt_getconstant_path                   <ic:0 Struct>
0004 putobject                              :a
0006 putobject                              :b
0008 putobject                              :c
0010 putobject                              :d
0012 putobject                              :e
0014 putobject                              :f
0016 putobject                              :g
0018 putobject                              :h
0020 opt_send_without_block                 <calldata!mid:new, argc:8, ARGS_SIMPLE>
0022 swap
0023 setconstant                            :Foo
0025 definemethod                           :build_foo, build_foo     (   5)[Li]
0028 putself                                                          (   9)[Li]
0029 opt_send_without_block                 <calldata!mid:build_foo, argc:0, FCALL|VCALL|ARGS_SIMPLE>
0031 pop
0032 putself                                                          (  10)[Li]
0033 opt_send_without_block                 <calldata!mid:build_foo, argc:0, FCALL|VCALL|ARGS_SIMPLE>
0035 leave                                                            (  12)[Br]

== disasm: #<ISeq:build_foo@-e:5 (5,0)-(7,3)>
0000 opt_getconstant_path                   <ic:0 ::Foo>              (   6)[LiCa]
0002 putobject                              :a
0004 putobject                              :b
0006 putobject                              :c
0008 putobject                              :d
0010 putobject                              :e
0012 putobject                              :f
0014 putobject                              :g
0016 putobject                              :h
0018 opt_send_without_block                 <calldata!mid:new, argc:8, ARGS_SIMPLE>
0020 leave                                                            (   7)[Re]


Finished tests in 1252.960242s, 21.1938 tests/s, 5177.2050 assertions/s.
26555 tests, 6486832 assertions, 6 failures, 0 errors, 120 skips

ruby -v: ruby 3.4.0dev (2024-01-07T12:49:47Z master bca1493815) +RJIT [x86_64-linux]
make: *** [uncommon.mk:945: yes-test-all] エラー 6