comparison mx/mx_graal.py @ 13378:16d99e9d77ad

Options: rename flag (AOTCompilation -> ImmutableCode)
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 18 Dec 2013 11:13:17 +0100
parents e3b0608d6ab8
children 020099961eb4
comparison
equal deleted inserted replaced
13377:40530019af02 13378:16d99e9d77ad
968 t = Task('BootstrapWithRegisterPressure:product') 968 t = Task('BootstrapWithRegisterPressure:product')
969 vm(['-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version']) 969 vm(['-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version'])
970 tasks.append(t.stop()) 970 tasks.append(t.stop())
971 971
972 with VM('graal', 'product'): 972 with VM('graal', 'product'):
973 t = Task('BootstrapWithAOTConfiguration:product') 973 t = Task('BootstrapWithImmutableCode:product')
974 vm(['-G:+AOTCompilation', '-G:+VerifyPhases', '-esa', '-version']) 974 vm(['-G:+ImmutableCode', '-G:+VerifyPhases', '-esa', '-version'])
975 tasks.append(t.stop()) 975 tasks.append(t.stop())
976 976
977 with VM('server', 'product'): # hosted mode 977 with VM('server', 'product'): # hosted mode
978 t = Task('UnitTests:hosted-product') 978 t = Task('UnitTests:hosted-product')
979 unittest([]) 979 unittest([])