comparison mx/commands.py @ 12412:3c11430f62d8

Re-enable G1 verification in gate
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Mon, 14 Oct 2013 23:37:28 +0200
parents e800bf0c230c
children 98caa3872d83
comparison
equal deleted inserted replaced
12411:738023c641c2 12412:3c11430f62d8
953 t = Task('BootstrapWithGCVerification:product') 953 t = Task('BootstrapWithGCVerification:product')
954 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write 954 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
955 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out) 955 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
956 tasks.append(t.stop()) 956 tasks.append(t.stop())
957 957
958 # temporarily disable G1 verification until merge issues are resolved 958 with VM('graal', 'product'):
959 # with VM('graal', 'product'): 959 t = Task('BootstrapWithG1GCVerification:product')
960 # t = Task('BootstrapWithG1GCVerification:product') 960 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
961 # out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write 961 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC', '-XX:+UseG1GC', '-XX:+UseNewCode', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
962 # vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC', '-XX:+UseG1GC', '-XX:+UseNewCode', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out) 962 tasks.append(t.stop())
963 # tasks.append(t.stop())
964 963
965 with VM('graal', 'product'): 964 with VM('graal', 'product'):
966 t = Task('BootstrapWithRegisterPressure:product') 965 t = Task('BootstrapWithRegisterPressure:product')
967 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'])
968 tasks.append(t.stop()) 967 tasks.append(t.stop())