hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp
StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) {
{- -------------------------------------------
(1) 以下のどちらかを呼び出して初期化処理を行う.
* all 引数が true の場合: StubGenerator::generate_all()
* all 引数が false の場合: StubGenerator::generate_initial()
---------------------------------------- -}
if (all) {
generate_all();
} else {
generate_initial();
}
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.