Template Interpreter 用のクラス (#ifndef CC_INTERP 時にしか定義されない).
TemplateInterpreter を生成するための InterpreterGenerator クラス (AbstractInterpreterGenerator クラスのサブクラスの1つ). このクラスによって TemplateInterpreter クラス用のマシン語コード片が生成される (See: here for details).
((cite: hotspot/src/share/vm/interpreter/templateInterpreterGenerator.hpp))
// This file contains the platform-independent parts
// of the template interpreter generator.
#ifndef CC_INTERP
class TemplateInterpreterGenerator: public AbstractInterpreterGenerator {
実際のメソッド定義は hotspot/src/share/vm/interpreter/templateInterpreter.cpp と cpu/ 下のアーキテクチャ依存部にある.
実際に使用されるのはサブクラスの InterpreterGenerator クラス.
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.