comparison mx/sanitycheck.py @ 9171:ff622b1b2c94

fix compile the world bench in mx
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 17 Apr 2013 10:13:53 +0200
parents 380857cb7117
children 626bc0fac6d9
comparison
equal deleted inserted replaced
9170:1d584a42941f 9171:ff622b1b2c94
254 args.append('-G:-Inline') 254 args.append('-G:-Inline')
255 if mode >= CTWMode.NoComplex: 255 if mode >= CTWMode.NoComplex:
256 if not vm.endswith('-nograal'): 256 if not vm.endswith('-nograal'):
257 args += ['-G:-OptLoopTransform', '-G:-OptTailDuplication', '-G:-FullUnroll', '-G:-MemoryAwareScheduling'] 257 args += ['-G:-OptLoopTransform', '-G:-OptTailDuplication', '-G:-FullUnroll', '-G:-MemoryAwareScheduling']
258 258
259 return Test("CompileTheWorld-" + mode, args, successREs=[time], scoreMatchers=[scoreMatcher], benchmarkCompilationRate=False) 259 return Test("CompileTheWorld-" + modeString, args, successREs=[time], scoreMatchers=[scoreMatcher], benchmarkCompilationRate=False)
260 260
261 261
262 class Tee: 262 class Tee:
263 def __init__(self): 263 def __init__(self):
264 self.output = StringIO.StringIO() 264 self.output = StringIO.StringIO()