comparison src/share/vm/graal/graalCompiler.cpp @ 14875:56704532e1cd

disable bootstrap in tiered mode
author Bernhard Urban <bernhard.urban@jku.at>
date Fri, 28 Mar 2014 12:01:52 +0100
parents 3e9a960f0da1
children 1415a62ac8b2
comparison
equal deleted inserted replaced
14874:7dfc0e9fd45a 14875:56704532e1cd
96 } 96 }
97 VMToCompiler::finalizeOptions(CITime || CITimeEach); 97 VMToCompiler::finalizeOptions(CITime || CITimeEach);
98 98
99 if (UseCompiler) { 99 if (UseCompiler) {
100 _external_deopt_i2c_entry = create_external_deopt_i2c(); 100 _external_deopt_i2c_entry = create_external_deopt_i2c();
101 bool bootstrap = COMPILERGRAAL_PRESENT(BootstrapGraal) NOT_COMPILERGRAAL(false); 101 bool bootstrap = COMPILERGRAAL_PRESENT(TieredCompilation ? false : BootstrapGraal) NOT_COMPILERGRAAL(false);
102 VMToCompiler::startCompiler(bootstrap); 102 VMToCompiler::startCompiler(bootstrap);
103 _initialized = true; 103 _initialized = true;
104 CompilationPolicy::completed_vm_startup(); 104 CompilationPolicy::completed_vm_startup();
105 if (bootstrap) { 105 if (bootstrap) {
106 // Avoid -Xcomp and -Xbatch problems by turning on interpreter and background compilation for bootstrapping. 106 // Avoid -Xcomp and -Xbatch problems by turning on interpreter and background compilation for bootstrapping.