comparison mx.graal/mx_graal.py @ 22095:1ccd66f5890c

Disable inline during parsing in CTW gate.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 21 Jun 2015 02:19:15 +0200
parents 56c50504d60d
children 42ab3ffc9315
comparison
equal deleted inserted replaced
22094:595eccce0ae1 22095:1ccd66f5890c
1338 with Task('UnitTestsSSA:hosted-product', tasks) as t: 1338 with Task('UnitTestsSSA:hosted-product', tasks) as t:
1339 if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+SSA_LIR']) 1339 if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+SSA_LIR'])
1340 # Run ctw against rt.jar on server-hosted-jvmci 1340 # Run ctw against rt.jar on server-hosted-jvmci
1341 with VM('server', 'product'): 1341 with VM('server', 'product'):
1342 with Task('CTW:hosted-product', tasks) as t: 1342 with Task('CTW:hosted-product', tasks) as t:
1343 if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-CompileTheWorldVerbose']) 1343 if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-InlineDuringParsing', '-G:-CompileTheWorldVerbose'])
1344 1344
1345 # Build the other VM flavors 1345 # Build the other VM flavors
1346 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t: 1346 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t:
1347 if t: buildvms(['--vms', 'jvmci,server', '--builds', 'fastdebug,product', '--check-distributions']) 1347 if t: buildvms(['--vms', 'jvmci,server', '--builds', 'fastdebug,product', '--check-distributions'])
1348 1348