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',
|
|
|
|
]
|
|
|
|
|
|
|
|
module_function
|
2018-04-27 03:39:00 -04:00
|
|
|
def eval_with_jit(env = nil, script, verbose: 0, min_calls: 5, save_temps: false, timeout: JIT_TIMEOUT)
|
|
|
|
args = ['--disable-gems', '--jit-wait', "--jit-verbose=#{verbose}", "--jit-min-calls=#{min_calls}"]
|
|
|
|
args << '--jit-save-temps' if save_temps
|
|
|
|
args << '-e' << script
|
|
|
|
args.unshift(env) if env
|
|
|
|
EnvUtil.invoke_ruby(args,
|
2018-02-22 10:11:12 -05:00
|
|
|
'', true, true, timeout: timeout,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def supported?
|
|
|
|
# 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
|
|
|
|
_, err = JITSupport.eval_with_jit('proc {}.call', verbose: 1, min_calls: 1, timeout: 10)
|
|
|
|
rescue Timeout::Error
|
|
|
|
$stderr.puts "TestJIT: #jit_supported? check timed out"
|
|
|
|
false
|
|
|
|
else
|
|
|
|
err.match?(JIT_SUCCESS_PREFIX)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|