comparison mx/mx_graal.py @ 15862:283c8d31c560

mx: update vm choice helptext
author Bernhard Urban <bernhard.urban@jku.at>
date Fri, 23 May 2014 11:25:01 +0200
parents d1822a8fe26f
children fe608a56e3f7
comparison
equal deleted inserted replaced
15861:dba1a510fe92 15862:283c8d31c560
44 _vmSourcesAvailable = exists(join(_graal_home, 'make')) and exists(join(_graal_home, 'src')) 44 _vmSourcesAvailable = exists(join(_graal_home, 'make')) and exists(join(_graal_home, 'src'))
45 45
46 """ The VMs that can be built and run along with an optional description. Only VMs with a 46 """ The VMs that can be built and run along with an optional description. Only VMs with a
47 description are listed in the dialogue for setting the default VM (see _get_vm()). """ 47 description are listed in the dialogue for setting the default VM (see _get_vm()). """
48 _vmChoices = { 48 _vmChoices = {
49 'graal' : 'All compilation is performed with Graal. This includes bootstrapping Graal itself unless -XX:-BootstrapGraal is used.', 49 'graal' : 'Normal compilation is performed with a tiered system (C1 + Graal), Truffle compilation is performed with Graal.',
50 'server' : 'Normal compilation is performed with the tiered system (i.e., client + server), Truffle compilation is performed with Graal. Use this for optimal Truffle performance.', 50 'server' : 'Normal compilation is performed with a tiered system (C1 + C2), Truffle compilation is performed with Graal. Use this for optimal Truffle performance.',
51 'client' : None, # normal compilation with client compiler, explicit compilation (e.g., by Truffle) with Graal 51 'client' : None, # normal compilation with client compiler, explicit compilation (e.g., by Truffle) with Graal
52 'server-nograal' : None, # all compilation with tiered system (i.e., client + server), Graal omitted 52 'server-nograal' : None, # all compilation with tiered system (i.e., client + server), Graal omitted
53 'client-nograal' : None, # all compilation with client compiler, Graal omitted 53 'client-nograal' : None, # all compilation with client compiler, Graal omitted
54 'original' : None, # default VM copied from bootstrap JDK 54 'original' : None, # default VM copied from bootstrap JDK
55 } 55 }