C++ Interpreter 用のクラス (#ifdef CC_INTERP 時にしか定義されない).
CppInterpreter を生成するための InterpreterGenerator クラス (AbstractInterpreterGenerator クラスのサブクラスの1つ). このクラスによって CppInterpreter クラス用のマシン語コード片が生成される (See: here for details).
(なお, コメントでは "template interpreter" と書かれているが typo のような...)
    ((cite: hotspot/src/share/vm/interpreter/cppInterpreterGenerator.hpp))
    // This file contains the platform-independent parts
    // of the template interpreter generator.
    #ifdef CC_INTERP
    class CppInterpreterGenerator: public AbstractInterpreterGenerator {
実際に使用されるのはサブクラスの InterpreterGenerator クラス.
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.