hotspot/src/share/vm/compiler/compileBroker.hpp
static AbstractCompiler* compiler(int comp_level) {
{- -------------------------------------------
(1) 引数で要求されている JIT コンパイルレベルに応じた
コンパイラオブジェクトをリターンする.
---------------------------------------- -}
if (is_c2_compile(comp_level)) return _compilers[1]; // C2
if (is_c1_compile(comp_level)) return _compilers[0]; // C1
return NULL;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.