comparison mx/commands.py @ 12358:c2407e223244

Merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 11 Oct 2013 17:53:29 +0200
parents fbe1ee508936
children e800bf0c230c
comparison
equal deleted inserted replaced
12357:36b1f3224948 12358:c2407e223244
949 vm(['-esa', '-version']) 949 vm(['-esa', '-version'])
950 tasks.append(t.stop()) 950 tasks.append(t.stop())
951 951
952 with VM('graal', 'product'): 952 with VM('graal', 'product'):
953 t = Task('BootstrapWithGCVerification:product') 953 t = Task('BootstrapWithGCVerification:product')
954 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version']) 954 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
955 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
955 tasks.append(t.stop()) 956 tasks.append(t.stop())
956 957
957 with VM('graal', 'product'): 958 with VM('graal', 'product'):
958 t = Task('BootstrapWithG1GCVerification:product') 959 t = Task('BootstrapWithG1GCVerification:product')
959 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC', '-XX:+UseG1GC', '-XX:+UseNewCode', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version']) 960 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
961 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC', '-XX:+UseG1GC', '-XX:+UseNewCode', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
960 tasks.append(t.stop()) 962 tasks.append(t.stop())
961 963
962 with VM('graal', 'product'): 964 with VM('graal', 'product'):
963 t = Task('BootstrapWithRegisterPressure:product') 965 t = Task('BootstrapWithRegisterPressure:product')
964 vm(['-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version']) 966 vm(['-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version'])