GraalVM Native Image のソースコードを雑に読んだ (3)
前回の続き。今回は残りのステージ ([5/8] Inlining methods, [6/8] Compiling methods, [7/8] Laying out methods, [8/8] Creating image) を取り上げる。 環境 OS: Linux (WSL 2 + Ubuntu 24.04.1) GraalVM: 24.2.0-dev (320d02ebb867) JDK: 21.0.2 (jvmci-23.1-b33) 5. Inlining methods In this stage, trivial method inlining is performed. The progress indicator visualizes the number of inlining iterations. 該当する処理は以下の箇所。前回の [4/8] Parsing methods 同様 finish メソッドの中。 ...