2018-02-22 10:11:12 -05:00
module JITSupport
JIT_TIMEOUT = 600 # 10min for each...
JIT_SUCCESS_PREFIX = 'JIT success \(\d+\.\dms\)'
SUPPORTED_COMPILERS = [
'gcc' ,
'clang' ,
]
2018-05-27 01:47:43 -04:00
def self . check_support
2018-02-22 10:11:12 -05:00
# Experimental. If you want to ensure JIT is working with this test, please set this for now.
if ENV . key? ( 'RUBY_FORCE_TEST_JIT' )
return true
end
# Very pessimistic check. With this check, we can't ensure JIT is working.
begin
2018-08-09 05:58:07 -04:00
_ , err = JITSupport . eval_with_jit_without_retry ( 'proc {}.call' , verbose : 1 , min_calls : 1 , timeout : 10 )
2018-02-22 10:11:12 -05:00
rescue Timeout :: Error
$stderr . puts " TestJIT: # jit_supported? check timed out "
false
else
2018-05-27 03:33:18 -04:00
err . match? ( JIT_SUCCESS_PREFIX ) . tap do | success |
unless success
$stderr . puts " TestJIT.check_support stderr: \n ``` \n #{ err } \n ``` \n "
end
end
2018-02-22 10:11:12 -05:00
end
end
2018-04-28 05:22:07 -04:00
2018-05-27 01:47:43 -04:00
module_function
2018-08-09 05:58:07 -04:00
# Run Ruby script with --jit-wait (Synchronous JIT compilation).
# 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 01:52:01 -04:00
args = [
2018-08-09 05:58:07 -04:00
'--disable-gems' , " --jit-verbose= #{ verbose } " ,
2018-07-27 01:52:01 -04:00
" --jit-min-calls= #{ min_calls } " , " --jit-max-cache= #{ max_cache } " ,
]
2018-08-09 05:58:07 -04:00
args << '--jit-wait' if wait
2018-05-27 01:47:43 -04:00
args << '--jit-save-temps' if save_temps
args << '-e' << script
2018-07-31 08:43:06 -04:00
base_env = { 'MJIT_SEARCH_BUILD_DIR' = > 'true' } # workaround to skip requiring `make install` for `make test-all`
args . unshift ( env ? base_env . merge! ( env ) : base_env )
2018-05-27 01:47:43 -04:00
EnvUtil . invoke_ruby ( args ,
'' , true , true , timeout : timeout ,
)
end
def supported?
return @supported if defined? ( @supported )
@supported = JITSupport . check_support . tap do | supported |
unless supported
2018-06-05 18:32:41 -04:00
warn " JIT tests are skipped since JIT seems not working. Set RUBY_FORCE_TEST_JIT=1 to let it fail. " , uplevel : 1
2018-05-27 01:47:43 -04:00
end
end
end
2018-04-28 05:22:07 -04:00
def remove_mjit_logs ( stderr )
if RubyVM :: MJIT . enabled?
stderr . gsub ( / ^MJIT warning: Skipped to compile unsupported instruction: \ w+ \ n /m , '' )
else
stderr
end
end
2018-08-09 05:58:07 -04:00
def code_block ( code )
" ``` \n #{ code } \n ``` \n \n "
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
2018-02-22 10:11:12 -05:00
end