comparison mx.graal/mx_graal.py @ 22324:1199fd261ff2

Move bootstrap from jvmci gate to graal gate.
author Roland Schatz <roland.schatz@oracle.com>
date Mon, 27 Jul 2015 13:52:14 +0200
parents b1ed20090527
children fb528be6e4e6
comparison
equal deleted inserted replaced
22323:07d0349fd18a 22324:1199fd261ff2
218 # Run ctw against rt.jar on server-hosted-jvmci 218 # Run ctw against rt.jar on server-hosted-jvmci
219 with VM('server', 'product'): 219 with VM('server', 'product'):
220 with Task('CTW:hosted-product', tasks) as t: 220 with Task('CTW:hosted-product', tasks) as t:
221 if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-InlineDuringParsing', '-G:-CompileTheWorldVerbose']) 221 if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-InlineDuringParsing', '-G:-CompileTheWorldVerbose'])
222 222
223 # Build the other VM flavors 223 with VM('jvmci', 'fastdebug'):
224 with Task('BootstrapWithSystemAssertions:fastdebug', tasks) as t:
225 if t: vm(['-esa', '-XX:-TieredCompilation', '-version'])
226
227 with VM('jvmci', 'fastdebug'):
228 with Task('BootstrapWithSystemAssertionsNoCoop:fastdebug', tasks) as t:
229 if t: vm(['-esa', '-XX:-TieredCompilation', '-XX:-UseCompressedOops', '-version'])
230
231 with VM('jvmci', 'product'):
232 with Task('BootstrapWithGCVerification:product', tasks) as t:
233 if t:
234 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
235 vm(['-XX:-TieredCompilation', '-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
236
237 with VM('jvmci', 'product'):
238 with Task('BootstrapWithG1GCVerification:product', tasks) as t:
239 if t:
240 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
241 vm(['-XX:-TieredCompilation', '-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC', '-XX:+UseG1GC', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
242
224 with VM('jvmci', 'fastdebug'): 243 with VM('jvmci', 'fastdebug'):
225 with Task('BootstrapEconomyWithSystemAssertions:fastdebug', tasks) as t: 244 with Task('BootstrapEconomyWithSystemAssertions:fastdebug', tasks) as t:
226 if t: vm(['-esa', '-XX:-TieredCompilation', '-G:CompilerConfiguration=economy', '-version']) 245 if t: vm(['-esa', '-XX:-TieredCompilation', '-G:CompilerConfiguration=economy', '-version'])
227 246
228 with VM('jvmci', 'fastdebug'): 247 with VM('jvmci', 'fastdebug'):