これらは, C2 JIT Compiler 用のクラス. より具体的に言うと, マシン語を出力する処理(Compile::Output()の処理)で使用される補助クラス.
Compile クラス内で使用される補助クラス.
低レベル中間語に対して命令レベルのスケジューリングを行う.
(なお, このクラスは StackObjクラスではないが現状では局所変数としてのみ生成されている)
((cite: hotspot/src/share/vm/opto/output.hpp))
//------------------------------Scheduling----------------------------------
// This class contains all the information necessary to implement instruction
// scheduling and bundling.
class Scheduling {
Compile::ScheduleAndBundle() 内で(のみ)使用されている. そして, この関数は現在は以下のパスで(のみ)呼び出されている.
Compile::Output() -> Compile::ScheduleAndBundle()
See: here for details
Compile クラス内で使用される補助クラス.
safepoint ではない箇所のメタ情報を DebugInformationRecorder に記録するためのクラス.
(なお, このクラスは StackObjクラスではないが現状では局所変数としてのみ生成されている)
((cite: hotspot/src/share/vm/opto/output.cpp))
// A simplified version of Process_OopMap_Node, to handle non-safepoints.
class NonSafepointEmitter {
Compile::Fill_buffer() 内で(のみ)使用されている. そして, この関数は現在は以下のパスで(のみ)呼び出されている.
Compile::Output() -> Compile::Fill_buffer()
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.