虚無庵

徒然なるままに

今日の ruby build 2024-01-09

今日のビルド

38bc107f0ba75f93717cf62ed1fe3d85f315d9d3 までを pull ってきてビルド。

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:216:43: note: in expansion of macro ‘FIX2LONG’
  216 |             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
  Files:        942

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

  Total:      17382 (3342 undocumented)
   80.77% documented

  Elapsed: 29.2s

一応 PR は作ってみたけど、型キャストでの対応は何か違う気はしている。

今日のテスト

make test-all を実行。

Finished tests in 881.148331s, 30.1368 tests/s, 7176.9721 assertions/s.
26555 tests, 6323977 assertions, 0 failures, 0 errors, 105 skips

ruby -v: ruby 3.4.0dev (2024-01-09T09:47:15Z master 38bc107f0b) [x86_64-linux]

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

38bc107f0ba75f93717cf62ed1fe3d85f315d9d3 までを pull ってきてビルド。

ruby_parser.c: In function ‘rb_parser_config_initialize’:
ruby_parser.c:782:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  782 |     config->compile_warn    = rb_compile_warn;
      |                             ^
ruby_parser.c:783:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  783 |     config->compile_warning = rb_compile_warning;
      |                             ^
ruby_parser.c:784:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  784 |     config->bug             = rb_bug;
      |                             ^
ruby_parser.c:785:29: warning: assignment left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
  785 |     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
  Files:        942

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

  Total:      17382 (3342 undocumented)
   80.77% documented

  Elapsed: 33.5s

今日のテスト(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. [ 1/11] Assertion for ":foo"
   | expected: /key :foo is duplicated/
   | actual: "".

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

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

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

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

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

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

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

9. [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: "".

  2) Failure:
TestSyntax#test_keyword_duplicated [/home/jinroq/dev/sandbox/my-ruby-build/build-up-ruby-repo/test/ruby/test_syntax.rb:334]:
expected: /duplicated/
actual: "".

Finished tests in 981.218929s, 27.0633 tests/s, 6446.2902 assertions/s.
26555 tests, 6325222 assertions, 2 failures, 0 errors, 105 skips

ruby -v: ruby 3.4.0dev (2024-01-09T09:47:15Z master 38bc107f0b) [x86_64-linux]
make: *** [uncommon.mk:945: yes-test-all] エラー 2

S.H. さんが修正してくれたので、近々コケなくなると思う。

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

38bc107f0ba75f93717cf62ed1fe3d85f315d9d3 までを pull ってきてビルド。

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:216:43: note: in expansion of macro ‘FIX2LONG’
  216 |             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

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

make test-all を実行。

Finished tests in 888.534397s, 29.8863 tests/s, 7114.2119 assertions/s.
26555 tests, 6321222 assertions, 0 failures, 0 errors, 105 skips

ruby -v: ruby 3.4.0dev (2024-01-09T09:47:15Z master 38bc107f0b) [x86_64-linux]

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

38bc107f0ba75f93717cf62ed1fe3d85f315d9d3 までを pull ってきてビルド。

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:216:43: note: in expansion of macro ‘FIX2LONG’
  216 |             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

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

make test-all を実行。

  1) Failure:
TestRubyOptions#test_parser_flag [/home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/test/ruby/test_rubyoptions.rb:293]:
pid 68746 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-09T09:47:15Z master 38bc107f0b) +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:0020e0 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) [0x561f992a5801] /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) [0x561f9946af96] /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) [0x561f9908e895] /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) [0x561f9908e16c] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:790
| /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:1995
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_pattern_match+0x148) [0x561f9942a458] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:1409
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_pattern+0x65b) [0x561f9942796b] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:1606
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(ADD_ELEM+0x0) [0x561f9941a180] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:3387
| /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:3388
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x8b93) [0x561f9941f1e3] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:4630
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x624d) [0x561f9941c89d] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6329
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xd4c9) [0x561f99423b19] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6188
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x561f99426527] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6527
| /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) [0x561f991009d4] /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) [0x561f9942bbb3] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:828
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x480e) [0x561f9941ae5e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:3176
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x620e) [0x561f9941c85e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6327
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa278) [0x561f994208c8] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6241
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x561f99426527] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6527
| /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) [0x561f991009d4] /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) [0x561f9941bbf3] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:828
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x620e) [0x561f9941c85e] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6327
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa278) [0x561f994208c8] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6241
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x561f99426527] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6527
| /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) [0x561f991009d4] /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) [0x561f99419aa4] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:828
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x624d) [0x561f9941c89d] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6329
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa278) [0x561f994208c8] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6241
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x561f99426527] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6527
| /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) [0x561f991009d4] /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) [0x561f99417f97] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:828
| /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:4907
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0x624d) [0x561f9941c89d] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6329
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(pm_compile_node+0xa278) [0x561f994208c8] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6241
| /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby(rb_translate_prism+0xce) [0x561f99426527] /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/prism_compile.c:6527
| /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) [0x561f990fee9d] /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) [0x561f991018d8] /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) [0x561f9910831f] /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) [0x561f99108626] /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) [0x561f99277ddc] /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) [0x561f99296451] /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) [0x561f9928673e] /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) [0x561f9910822a] /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) [0x561f99108626] /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) [0x561f99277ddc] /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) [0x561f99296451] /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) [0x561f9928673e] /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) [0x561f990d41b7] /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) [0x561f991e8a01] /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) [0x561f991ea2b3] /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) [0x561f991eb47c] /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) [0x561f99093fa3] /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) [0x561f9908ec5f] ./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) [0x7fab5c229d90] ../sysdeps/nptl/libc_start_call_main.h:58
| /lib/x86_64-linux-gnu/libc.so.6(call_init+0x0) [0x7fab5c229e40] ../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
| [0x561f9908ecb5]
| 
| -- 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:
| 
| 561f9903d000-561f99080000 r--p 00000000 103:02 4355528                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 561f99080000-561f99494000 r-xp 00043000 103:02 4355528                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 561f99494000-561f99623000 r--p 00457000 103:02 4355528                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 561f99623000-561f9963a000 r--p 005e5000 103:02 4355528                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 561f9963a000-561f9963b000 rw-p 005fc000 103:02 4355528                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 561f9963b000-561f99650000 rw-p 00000000 00:00 0 
| 561f9a4ea000-561f9a810000 rw-p 00000000 00:00 0                          [heap]
| 7fab3ec00000-7fab3ee1e000 r--s 00000000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7fab3f000000-7fab41be7000 r--s 00000000 103:02 4355528                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/ruby
| 7fab41cf0000-7fab41d70000 rw-p 00000000 00:00 0 
| 7fab41d7f000-7fab41d80000 ---p 00000000 00:00 0 
| 7fab41d80000-7fab41dc1000 rw-p 00000000 00:00 0 
| 7fab41dc1000-7fab41dc2000 ---p 00000000 00:00 0 
| 7fab41dc2000-7fab41e03000 rw-p 00000000 00:00 0 
| 7fab41e03000-7fab41e04000 ---p 00000000 00:00 0 
| 7fab41e04000-7fab41e45000 rw-p 00000000 00:00 0 
| 7fab41e45000-7fab41e46000 ---p 00000000 00:00 0 
| 7fab41e46000-7fab41e87000 rw-p 00000000 00:00 0 
| 7fab41e87000-7fab41e88000 ---p 00000000 00:00 0 
| 7fab41e88000-7fab41ec9000 rw-p 00000000 00:00 0 
| 7fab41ec9000-7fab41eca000 ---p 00000000 00:00 0 
| 7fab41eca000-7fab41f0b000 rw-p 00000000 00:00 0 
| 7fab41f0b000-7fab41f0c000 ---p 00000000 00:00 0 
| 7fab41f0c000-7fab41f4d000 rw-p 00000000 00:00 0 
| 7fab41f4d000-7fab41f4e000 ---p 00000000 00:00 0 
| 7fab41f4e000-7fab41f8f000 rw-p 00000000 00:00 0 
| 7fab41f8f000-7fab41f90000 ---p 00000000 00:00 0 
| 7fab41f90000-7fab41fd1000 rw-p 00000000 00:00 0 
| 7fab41fd1000-7fab41fd2000 ---p 00000000 00:00 0 
| 7fab41fd2000-7fab42013000 rw-p 00000000 00:00 0 
| 7fab42013000-7fab42014000 ---p 00000000 00:00 0 
| 7fab42014000-7fab42055000 rw-p 00000000 00:00 0 
| 7fab42055000-7fab42056000 ---p 00000000 00:00 0 
| 7fab42056000-7fab42097000 rw-p 00000000 00:00 0 
| 7fab42097000-7fab42098000 ---p 00000000 00:00 0 
| 7fab42098000-7fab420d9000 rw-p 00000000 00:00 0 
| 7fab420d9000-7fab420da000 ---p 00000000 00:00 0 
| 7fab420da000-7fab4211b000 rw-p 00000000 00:00 0 
| 7fab4211b000-7fab4211c000 ---p 00000000 00:00 0 
| 7fab4211c000-7fab4215d000 rw-p 00000000 00:00 0 
| 7fab4215d000-7fab4215e000 ---p 00000000 00:00 0 
| 7fab4215e000-7fab4219f000 rw-p 00000000 00:00 0 
| 7fab4219f000-7fab421a0000 ---p 00000000 00:00 0 
| 7fab421a0000-7fab421e1000 rw-p 00000000 00:00 0 
| 7fab421e1000-7fab421e2000 ---p 00000000 00:00 0 
| 7fab421e2000-7fab42223000 rw-p 00000000 00:00 0 
| 7fab42223000-7fab42224000 ---p 00000000 00:00 0 
| 7fab42224000-7fab42265000 rw-p 00000000 00:00 0 
| 7fab42265000-7fab42266000 ---p 00000000 00:00 0 
| 7fab42266000-7fab422a7000 rw-p 00000000 00:00 0 
| 7fab422a7000-7fab422a8000 ---p 00000000 00:00 0 
| 7fab422a8000-7fab422e9000 rw-p 00000000 00:00 0 
| 7fab422e9000-7fab422ea000 ---p 00000000 00:00 0 
| 7fab422ea000-7fab4232b000 rw-p 00000000 00:00 0 
| 7fab4232b000-7fab4232c000 ---p 00000000 00:00 0 
| 7fab4232c000-7fab4236d000 rw-p 00000000 00:00 0 
| 7fab4236d000-7fab4236e000 ---p 00000000 00:00 0 
| 7fab4236e000-7fab423af000 rw-p 00000000 00:00 0 
| 7fab423af000-7fab423b0000 ---p 00000000 00:00 0 
| 7fab423b0000-7fab423f1000 rw-p 00000000 00:00 0 
| 7fab423f1000-7fab423f2000 ---p 00000000 00:00 0 
| 7fab423f2000-7fab42433000 rw-p 00000000 00:00 0 
| 7fab42433000-7fab42434000 ---p 00000000 00:00 0 
| 7fab42434000-7fab42475000 rw-p 00000000 00:00 0 
| 7fab42475000-7fab42476000 ---p 00000000 00:00 0 
| 7fab42476000-7fab424b7000 rw-p 00000000 00:00 0 
| 7fab424b7000-7fab424b8000 ---p 00000000 00:00 0 
| 7fab424b8000-7fab424f9000 rw-p 00000000 00:00 0 
| 7fab424f9000-7fab424fa000 ---p 00000000 00:00 0 
| 7fab424fa000-7fab4253b000 rw-p 00000000 00:00 0 
| 7fab4253b000-7fab4253c000 ---p 00000000 00:00 0 
| 7fab4253c000-7fab4257d000 rw-p 00000000 00:00 0 
| 7fab4257d000-7fab4257e000 ---p 00000000 00:00 0 
| 7fab4257e000-7fab425bf000 rw-p 00000000 00:00 0 
| 7fab425bf000-7fab425c0000 ---p 00000000 00:00 0 
| 7fab425c0000-7fab5c200000 rw-p 00000000 00:00 0 
| 7fab5c200000-7fab5c228000 r--p 00000000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7fab5c228000-7fab5c3bd000 r-xp 00028000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7fab5c3bd000-7fab5c415000 r--p 001bd000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7fab5c415000-7fab5c419000 r--p 00214000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7fab5c419000-7fab5c41b000 rw-p 00218000 103:02 2099295                   /usr/lib/x86_64-linux-gnu/libc.so.6
| 7fab5c41b000-7fab5c428000 rw-p 00000000 00:00 0 
| 7fab5c42f000-7fab5c433000 r--p 00000000 103:02 4334126                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7fab5c433000-7fab5c43b000 r-xp 00004000 103:02 4334126                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7fab5c43b000-7fab5c43e000 r--p 0000c000 103:02 4334126                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7fab5c43e000-7fab5c43f000 r--p 0000e000 103:02 4334126                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7fab5c43f000-7fab5c440000 rw-p 0000f000 103:02 4334126                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/fiddle.so
| 7fab5c440000-7fab5c450000 rw-p 00000000 00:00 0 
| 7fab5c452000-7fab5c454000 r--p 00000000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7fab5c454000-7fab5c45b000 r-xp 00002000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7fab5c45b000-7fab5c45c000 r--p 00009000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7fab5c45c000-7fab5c45d000 ---p 0000a000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7fab5c45d000-7fab5c45e000 r--p 0000a000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7fab5c45e000-7fab5c45f000 rw-p 0000b000 103:02 2103588                   /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
| 7fab5c45f000-7fab5c4d0000 rw-p 00000000 00:00 0 
| 7fab5c4db000-7fab5c5e1000 rw-p 00000000 00:00 0 
| 7fab5c5e1000-7fab5c5e4000 r--p 00000000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7fab5c5e4000-7fab5c5fb000 r-xp 00003000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7fab5c5fb000-7fab5c5ff000 r--p 0001a000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7fab5c5ff000-7fab5c600000 r--p 0001d000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7fab5c600000-7fab5c601000 rw-p 0001e000 103:02 2100975                   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
| 7fab5c601000-7fab5c60f000 r--p 00000000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7fab5c60f000-7fab5c68b000 r-xp 0000e000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7fab5c68b000-7fab5c6e6000 r--p 0008a000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7fab5c6e6000-7fab5c6e7000 r--p 000e4000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7fab5c6e7000-7fab5c6e8000 rw-p 000e5000 103:02 2099304                   /usr/lib/x86_64-linux-gnu/libm.so.6
| 7fab5c6e8000-7fab5c6ea000 r--p 00000000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7fab5c6ea000-7fab5c6fe000 r-xp 00002000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7fab5c6fe000-7fab5c717000 r--p 00016000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7fab5c717000-7fab5c718000 ---p 0002f000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7fab5c718000-7fab5c719000 r--p 0002f000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7fab5c719000-7fab5c71a000 rw-p 00030000 103:02 2103432                   /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
| 7fab5c71a000-7fab5c722000 rw-p 00000000 00:00 0 
| 7fab5c722000-7fab5c72c000 r--p 00000000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7fab5c72c000-7fab5c78b000 r-xp 0000a000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7fab5c78b000-7fab5c7a2000 r--p 00069000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7fab5c7a2000-7fab5c7a3000 r--p 0007f000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7fab5c7a3000-7fab5c7a4000 rw-p 00080000 103:02 2103712                   /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
| 7fab5c7a4000-7fab5c7a6000 r--p 00000000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7fab5c7a6000-7fab5c7b7000 r-xp 00002000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7fab5c7b7000-7fab5c7bd000 r--p 00013000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7fab5c7bd000-7fab5c7be000 ---p 00019000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7fab5c7be000-7fab5c7bf000 r--p 00019000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7fab5c7bf000-7fab5c7c0000 rw-p 0001a000 103:02 2097340                   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
| 7fab5c7c8000-7fab5c7cb000 r--p 00000000 103:02 4337405                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/lib/ruby_vm/rjit/context.rb
| 7fab5c7cb000-7fab5c7cc000 r--p 00000000 103:02 4355664                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7fab5c7cc000-7fab5c7cd000 r-xp 00001000 103:02 4355664                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7fab5c7cd000-7fab5c7ce000 r--p 00002000 103:02 4355664                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7fab5c7ce000-7fab5c7cf000 r--p 00002000 103:02 4355664                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7fab5c7cf000-7fab5c7d0000 rw-p 00003000 103:02 4355664                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/trans/transdb.so
| 7fab5c7d0000-7fab5c7d1000 r--p 00000000 103:02 4355547                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7fab5c7d1000-7fab5c7d2000 r-xp 00001000 103:02 4355547                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7fab5c7d2000-7fab5c7d3000 r--p 00002000 103:02 4355547                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7fab5c7d3000-7fab5c7d4000 r--p 00002000 103:02 4355547                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7fab5c7d4000-7fab5c7d5000 rw-p 00003000 103:02 4355547                   /home/jinroq/dev/sandbox/my-ruby-build/build-rjit-ruby-repo/.ext/x86_64-linux/enc/encdb.so
| 7fab5c7d5000-7fab5c7d7000 rw-p 00000000 00:00 0 
| 7fab5c7d7000-7fab5c7d9000 r--p 00000000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7fab5c7d9000-7fab5c803000 r-xp 00002000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7fab5c803000-7fab5c80e000 r--p 0002c000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7fab5c80f000-7fab5c811000 r--p 00037000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7fab5c811000-7fab5c813000 rw-p 00039000 103:02 2099288                   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
| 7ffda7c27000-7ffda8426000 rw-p 00000000 00:00 0                          [stack]
| 7ffda84e2000-7ffda84e6000 r--p 00000000 00:00 0                          [vvar]
| 7ffda84e6000-7ffda84e8000 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
   | <[]>.

  2) 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>.

  3) 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]


  4) 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]


  5) 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=>8586, :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=>16337, :total_freed_objects=>8476}.
Expected 8994 to be >= 10000.

  6) 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=>27, :time=>48, :marking_time=>31, :sweeping_time=>16, :heap_allocated_pages=>153, :heap_sorted_length=>301, :heap_allocatable_pages=>148, :heap_available_slots=>211001, :heap_live_slots=>173137, :heap_free_slots=>37864, :heap_final_slots=>0, :heap_marked_slots=>129261, :heap_eden_pages=>153, :heap_tomb_pages=>0, :total_allocated_pages=>158, :total_freed_pages=>5, :total_allocated_objects=>1360438, :total_freed_objects=>1187301, :malloc_increase_bytes=>2120, :malloc_increase_bytes_limit=>16777216, :minor_gc_count=>22, :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=>1214, :old_objects=>129251, :old_objects_limit=>242834, :oldmalloc_increase_bytes=>2120, :oldmalloc_increase_bytes_limit=>19350882}
before_stat_heap: {0=>{:slot_size=>40, :heap_allocatable_pages=>0, :heap_eden_pages=>118, :heap_eden_slots=>193211, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>118, :total_freed_pages=>0, :force_major_gc_count=>1, :force_incremental_marking_finish_count=>1, :total_allocated_objects=>1322170, :total_freed_objects=>1154239}, 1=>{:slot_size=>80, :heap_allocatable_pages=>1, :heap_eden_pages=>11, :heap_eden_slots=>9003, :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=>21486, :total_freed_objects=>18257}, 2=>{:slot_size=>160, :heap_allocatable_pages=>1, :heap_eden_pages=>20, :heap_eden_slots=>8176, :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=>16770, :total_freed_objects=>14736}, 3=>{:slot_size=>320, :heap_allocatable_pages=>48, :heap_eden_pages=>2, :heap_eden_slots=>407, :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=>1, :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=>43, :time=>63, :marking_time=>33, :sweeping_time=>30, :heap_allocated_pages=>153, :heap_sorted_length=>301, :heap_allocatable_pages=>148, :heap_available_slots=>211001, :heap_live_slots=>129442, :heap_free_slots=>81559, :heap_final_slots=>0, :heap_marked_slots=>129381, :heap_eden_pages=>153, :heap_tomb_pages=>0, :total_allocated_pages=>158, :total_freed_pages=>5, :total_allocated_objects=>2364788, :total_freed_objects=>2235346, :malloc_increase_bytes=>1912, :malloc_increase_bytes_limit=>16777216, :minor_gc_count=>38, :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=>1214, :old_objects=>129368, :old_objects_limit=>242834, :oldmalloc_increase_bytes=>6504, :oldmalloc_increase_bytes_limit=>19350882}
after_stat_heap: {0=>{:slot_size=>40, :heap_allocatable_pages=>0, :heap_eden_pages=>118, :heap_eden_slots=>193211, :heap_tomb_pages=>0, :heap_tomb_slots=>0, :total_allocated_pages=>118, :total_freed_pages=>0, :force_major_gc_count=>1, :force_incremental_marking_finish_count=>1, :total_allocated_objects=>2326224, :total_freed_objects=>2202021}, 1=>{:slot_size=>80, :heap_allocatable_pages=>1, :heap_eden_pages=>11, :heap_eden_slots=>9003, :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=>21557, :total_freed_objects=>18315}, 2=>{:slot_size=>160, :heap_allocatable_pages=>1, :heap_eden_pages=>20, :heap_eden_slots=>8176, :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=>16989, :total_freed_objects=>14941}, 3=>{:slot_size=>320, :heap_allocatable_pages=>48, :heap_eden_pages=>2, :heap_eden_slots=>407, :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=>1, :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
<5>.

Finished tests in 1248.384708s, 21.2715 tests/s, 5191.6368 assertions/s.
26555 tests, 6481160 assertions, 6 failures, 0 errors, 120 skips

ruby -v: ruby 3.4.0dev (2024-01-09T09:47:15Z master 38bc107f0b) +RJIT [x86_64-linux]
make: *** [uncommon.mk:945: yes-test-all] エラー 6