comparison mx/commands.py @ 10965:050eba23554e

Add gate run with G1 and heap verification enabled
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Sun, 04 Aug 2013 02:36:40 +0200
parents eeb80dcd60d8
children e36f7e4af7bf
comparison
equal deleted inserted replaced
10955:769ad79b8e0c 10965:050eba23554e
952 952
953 _vmbuild = 'product' 953 _vmbuild = 'product'
954 t = Task('BootstrapWithGCVerification:product') 954 t = Task('BootstrapWithGCVerification:product')
955 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version']) 955 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'])
956 tasks.append(t.stop()) 956 tasks.append(t.stop())
957
958 _vmbuild = 'product'
959 t = Task('BootstrapWithG1GCVerification:product')
960 vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC','-XX:+UseG1GC','-XX:+UseNewCode','-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'])
961 tasks.append(t.stop())
957 962
958 _vmbuild = 'product' 963 _vmbuild = 'product'
959 t = Task('BootstrapWithRegisterPressure:product') 964 t = Task('BootstrapWithRegisterPressure:product')
960 vm(['-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version']) 965 vm(['-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version'])
961 tasks.append(t.stop()) 966 tasks.append(t.stop())