diff mx.jvmci/mx_jvmci.py @ 22166:2d03fccbbfa9

Merge with basic-graal
author Doug Simon <doug.simon@oracle.com>
date Wed, 08 Jul 2015 15:18:07 +0200
parents mx.graal/mx_graal.py@102c41a0516c mx.graal/mx_graal.py@616739e61fb6
children 22b37f37be0a
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Wed Jul 08 15:11:28 2015 +0200
+++ b/mx.jvmci/mx_jvmci.py	Wed Jul 08 15:18:07 2015 +0200
@@ -1233,10 +1233,10 @@
         with Task('UnitTests:hosted-product', tasks) as t:
             if t: unittest(['--enable-timing', '--verbose', '--fail-fast'])
 
-    # Run unit tests on server-hosted-jvmci with -G:+SSA_LIR
+    # Run unit tests on server-hosted-jvmci with -G:-SSA_LIR
     with VM('server', 'product'):
-        with Task('UnitTestsSSA:hosted-product', tasks) as t:
-            if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+SSA_LIR'])
+        with Task('UnitTestsNonSSA:hosted-product', tasks) as t:
+            if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:-SSA_LIR'])
     # Run ctw against rt.jar on server-hosted-jvmci
     with VM('server', 'product'):
         with Task('CTW:hosted-product', tasks) as t:
@@ -1281,10 +1281,10 @@
                 vm(['-XX:-TieredCompilation', '-G:RegisterPressure=' + registers, '-esa', '-version'])
 
     with VM('jvmci', 'product'):
-        with Task('BootstrapSSAWithRegisterPressure:product', tasks) as t:
+        with Task('BootstrapNonSSAWithRegisterPressure:product', tasks) as t:
             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:+SSA_LIR', '-G:RegisterPressure=' + registers, '-esa', '-version'])
+                vm(['-XX:-TieredCompilation', '-G:-SSA_LIR', '-G:RegisterPressure=' + registers, '-esa', '-version'])
 
     with VM('jvmci', 'product'):
         with Task('BootstrapWithImmutableCode:product', tasks) as t: