comparison mx/sanitycheck.py @ 9173:626bc0fac6d9

Add BootstrapGraal when using compile the work with a graal-enabled vm
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 17 Apr 2013 15:34:10 +0200
parents ff622b1b2c94
children 4e6df9021a59
comparison
equal deleted inserted replaced
9172:bc5c5336008b 9173:626bc0fac6d9
244 rtjar = join(jre, 'lib', 'rt.jar') 244 rtjar = join(jre, 'lib', 'rt.jar')
245 245
246 246
247 args = ['-XX:+CompileTheWorld', '-Xbootclasspath/p:' + rtjar] 247 args = ['-XX:+CompileTheWorld', '-Xbootclasspath/p:' + rtjar]
248 if not vm.endswith('-nograal'): 248 if not vm.endswith('-nograal'):
249 args.append('-G:-Debug') 249 args += ['-XX:+BootstrapGraal', '-G:-Debug']
250 if mode >= CTWMode.NoInline: 250 if mode >= CTWMode.NoInline:
251 if vm.endswith('-nograal'): 251 if vm.endswith('-nograal'):
252 args.append('-XX:-Inline') 252 args.append('-XX:-Inline')
253 else: 253 else:
254 args.append('-G:-Inline') 254 args.append('-G:-Inline')