comparison mx/mx_graal.py @ 19760:287f7c223d58

Add compiler configuration "economy".
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 10 Mar 2015 21:02:12 +0100
parents 3f7cd3c36734
children fe0bc94a147a
comparison
equal deleted inserted replaced
19755:223e1d7b15b7 19760:287f7c223d58
1494 buildvms(['--vms', 'graal,server', '--builds', 'fastdebug,product']) 1494 buildvms(['--vms', 'graal,server', '--builds', 'fastdebug,product'])
1495 1495
1496 with VM('graal', 'fastdebug'): 1496 with VM('graal', 'fastdebug'):
1497 with Task('BootstrapWithSystemAssertions:fastdebug', tasks): 1497 with Task('BootstrapWithSystemAssertions:fastdebug', tasks):
1498 vm(['-esa', '-XX:-TieredCompilation', '-version']) 1498 vm(['-esa', '-XX:-TieredCompilation', '-version'])
1499
1500 with VM('graal', 'fastdebug'):
1501 with Task('BootstrapEconomyWithSystemAssertions:fastdebug', tasks):
1502 vm(['-esa', '-XX:-TieredCompilation -G:CompilerConfiguration=economy', '-version'])
1499 1503
1500 with VM('graal', 'fastdebug'): 1504 with VM('graal', 'fastdebug'):
1501 with Task('BootstrapWithSystemAssertionsNoCoop:fastdebug', tasks): 1505 with Task('BootstrapWithSystemAssertionsNoCoop:fastdebug', tasks):
1502 vm(['-esa', '-XX:-TieredCompilation', '-XX:-UseCompressedOops', '-version']) 1506 vm(['-esa', '-XX:-TieredCompilation', '-XX:-UseCompressedOops', '-version'])
1503 1507