これらは, クラスファイルの verify 処理用のクラス (See: here for details).
クラスファイルの verify 処理に関する機能を納めた名前空間(AllStatic クラス). (See: here for details)
((cite: hotspot/src/share/vm/classfile/verifier.hpp))
// The verifier class
class Verifier : AllStatic {
このクラスの Verifier::verify() メソッドが verify 処理のエントリポイントになっている.
See: here for details
Verifier クラス内で使用される補助クラス.
type checking verifier (= Java SE 6 以降の新しい verifier. StackMapTable attribute を利用する) の処理で使用される一時オブジェクト(StackObjクラス).
((cite: hotspot/src/share/vm/classfile/verifier.hpp))
// A new instance of this class is created for each class being verified
class ClassVerifier : public StackObj {
Verifier::verify() 内で(のみ)使用されている.
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.