2018-10-20 08:47:26 +00:00
require 'rbconfig'
2018-02-22 15:11:12 +00:00
module JITSupport
JIT_TIMEOUT = 600 # 10min for each...
JIT_SUCCESS_PREFIX = 'JIT success \(\d+\.\dms\)'
2020-03-30 22:27:01 -07:00
JIT_RECOMPILE_PREFIX = 'JIT recompile'
2019-09-26 12:53:41 +09:00
JIT_COMPACTION_PREFIX = 'JIT compaction \(\d+\.\dms\)'
2018-10-19 14:26:29 +00:00
UNSUPPORTED_COMPILERS = [
2020-03-04 12:31:11 +09:00
%r[ \ A.*/bin/intel64/icc \ b ] ,
2018-12-27 14:53:02 +00:00
%r[ \ A/opt/developerstudio \ d+ \ . \ d+/bin/cc \ z ] ,
2018-02-22 15:11:12 +00:00
]
2020-04-20 22:46:53 +09:00
# debian-riscv64: "gcc: internal compiler error: Segmentation fault signal terminated program cc1" https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian-riscv64/ruby-master/log/20200420T083601Z.fail.html.gz
2020-03-06 20:19:56 -08:00
# freebsd12: cc1 internal failure https://rubyci.org/logs/rubyci.s3.amazonaws.com/freebsd12/ruby-master/log/20200306T103003Z.fail.html.gz
# rhel8: one or more PCH files were found, but they were invalid https://rubyci.org/logs/rubyci.s3.amazonaws.com/rhel8/ruby-master/log/20200306T153003Z.fail.html.gz
2020-05-12 17:47:27 +09:00
# centos8: ditto https://rubyci.org/logs/rubyci.s3.amazonaws.com/centos8/ruby-master/log/20200512T003004Z.fail.html.gz
2020-03-06 20:19:56 -08:00
PENDING_RUBYCI_NICKNAMES = %w[
2020-04-20 22:46:53 +09:00
debian - riscv64
2020-03-06 20:19:56 -08:00
freebsd12
rhel8
2020-05-12 17:47:27 +09:00
centos8
2020-03-06 20:19:56 -08:00
]
2018-02-22 15:11:12 +00:00
2018-05-27 05:47:43 +00:00
module_function
2021-12-13 16:08:01 -08:00
# Run Ruby script with --mjit-wait (Synchronous JIT compilation).
2018-08-09 09:58:07 +00:00
# Returns [stdout, stderr]
def eval_with_jit ( env = nil , script , ** opts )
stdout , stderr = nil , nil
# retry 3 times while cc1 error happens.
3 . times do | i |
stdout , stderr , status = eval_with_jit_without_retry ( env , script , ** opts )
assert_equal ( true , status . success? , " Failed to run script with JIT: \n #{ code_block ( script ) } \n stdout: \n #{ code_block ( stdout ) } \n stderr: \n #{ code_block ( stderr ) } " )
break unless retried_stderr? ( stderr )
end
[ stdout , stderr ]
end
def eval_with_jit_without_retry ( env = nil , script , verbose : 0 , min_calls : 5 , save_temps : false , max_cache : 1000 , wait : true , timeout : JIT_TIMEOUT )
2018-07-27 05:52:01 +00:00
args = [
2021-12-13 16:08:01 -08:00
'--disable-gems' , " --mjit-verbose= #{ verbose } " ,
" --mjit-min-calls= #{ min_calls } " , " --mjit-max-cache= #{ max_cache } " ,
2018-07-27 05:52:01 +00:00
]
2021-07-15 13:06:39 -07:00
args << '--disable-yjit'
2021-12-13 16:08:01 -08:00
args << '--mjit-wait' if wait
args << '--mjit-save-temps' if save_temps
args << '--mjit-debug' if defined? ( @mjit_debug ) && @mjit_debug
2018-05-27 05:47:43 +00:00
args << '-e' << script
2018-07-31 12:43:06 +00:00
base_env = { 'MJIT_SEARCH_BUILD_DIR' = > 'true' } # workaround to skip requiring `make install` for `make test-all`
2018-11-07 02:49:26 +00:00
if preloadenv = RbConfig :: CONFIG [ 'PRELOADENV' ] and ! preloadenv . empty?
so = " mjit_build_dir. #{ RbConfig :: CONFIG [ 'SOEXT' ] } "
base_env [ preloadenv ] = File . realpath ( so ) rescue nil
end
2018-07-31 12:43:06 +00:00
args . unshift ( env ? base_env . merge! ( env ) : base_env )
2018-05-27 05:47:43 +00:00
EnvUtil . invoke_ruby ( args ,
'' , true , true , timeout : timeout ,
)
end
2018-10-19 14:26:29 +00:00
def supported?
return @supported if defined? ( @supported )
2020-05-03 00:41:27 -07:00
@supported = RbConfig :: CONFIG [ " MJIT_SUPPORT " ] != 'no' && UNSUPPORTED_COMPILERS . all? do | regexp |
2019-12-04 22:16:07 -08:00
! regexp . match? ( RbConfig :: CONFIG [ 'MJIT_CC' ] )
2020-05-03 16:15:45 -07:00
end && ! appveyor_pdb_corrupted? && ! PENDING_RUBYCI_NICKNAMES . include? ( ENV [ 'RUBYCI_NICKNAME' ] )
2018-10-19 14:26:29 +00:00
end
2021-12-27 22:22:09 -08:00
def yjit_supported?
# e.g. x86_64-linux, x64-mswin64_140, x64-mingw32, x64-mingw-ucrt
RUBY_PLATFORM . match? ( / ^(x86_64|x64)- / )
end
2020-05-03 00:41:27 -07:00
# AppVeyor's Visual Studio 2013 / 2015 are known to spuriously generate broken pch / pdb, like:
2020-04-13 23:08:24 -07:00
# error C2859: c:\projects\ruby\x64-mswin_120\include\ruby-2.8.0\x64-mswin64_120\rb_mjit_header-2.8.0.pdb
# is not the pdb file that was used when this precompiled header was created, recreate the precompiled header.
# https://ci.appveyor.com/project/ruby/ruby/builds/32159878/job/l2p38snw8yxxpp8h
#
# Until we figure out why, this allows us to skip testing JIT when it happens.
2020-05-03 00:41:27 -07:00
def appveyor_pdb_corrupted?
2020-04-13 23:48:39 -07:00
return false unless ENV . key? ( 'APPVEYOR' )
2020-04-18 18:39:32 -07:00
stdout , _stderr , _status = eval_with_jit_without_retry ( 'proc {}.call' , verbose : 2 , min_calls : 1 )
2020-05-03 00:41:27 -07:00
stdout . include? ( '.pdb is not the pdb file that was used when this precompiled header was created, recreate the precompiled header.' )
2020-04-13 23:08:24 -07:00
end
2018-04-28 09:22:07 +00:00
def remove_mjit_logs ( stderr )
2021-12-13 23:07:46 -08:00
if defined? ( RubyVM :: MJIT ) && RubyVM :: MJIT . enabled? # utility for -DFORCE_MJIT_ENABLE
2018-04-28 09:22:07 +00:00
stderr . gsub ( / ^MJIT warning: Skipped to compile unsupported instruction: \ w+ \ n /m , '' )
else
stderr
end
end
2018-08-09 09:58:07 +00:00
def code_block ( code )
2019-01-10 14:55:24 +00:00
%Q[ """ \n #{ code } \n """ \n \n ]
2018-08-09 09:58:07 +00:00
end
# We're retrying cc1 not found error on gcc, which should be solved in the future but ignored for now.
def retried_stderr? ( stderr )
RbConfig :: CONFIG [ 'CC' ] . start_with? ( 'gcc' ) &&
stderr . include? ( " error trying to exec 'cc1': execvp: No such file or directory " )
end
2022-07-10 23:01:09 -07:00
def mjit_force_enabled?
" #{ RbConfig :: CONFIG [ 'CFLAGS' ] } #{ RbConfig :: CONFIG [ 'CPPFLAGS' ] } " . match? ( / ( \ A| \ s)-D ?MJIT_FORCE_ENABLE \ b / )
end
2018-02-22 15:11:12 +00:00
end