# HG changeset patch # User Stefan Anzinger # Date 1429196453 -7200 # Node ID 0a4bbeae6e3148663013e20256c87ee60e600989 # Parent 1b6783efebc801520eae10e7b558bebdb7d53fba [SPARC] Configure registers right for register pressure in gate run diff -r 1b6783efebc8 -r 0a4bbeae6e31 mx/mx_graal.py --- a/mx/mx_graal.py Thu Apr 16 16:21:09 2015 +0200 +++ b/mx/mx_graal.py Thu Apr 16 17:00:53 2015 +0200 @@ -1543,7 +1543,9 @@ with VM('graal', 'product'): with Task('BootstrapWithRegisterPressure:product', tasks) as t: - if t: vm(['-XX:-TieredCompilation', '-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version']) + if t: + registers = 'o0,o1,o2,o3,f8,f9,d32,d34' if platform.processor() == 'sparc' else 'rbx,r11,r10,r14,xmm3,xmm11,xmm14' + vm(['-XX:-TieredCompilation', '-G:RegisterPressure=' + registers, '-esa', '-version']) with VM('graal', 'product'): with Task('BootstrapWithImmutableCode:product', tasks) as t: