GraalVM Native Image のソースコードを雑に読んだ (2)
前回の続き。今回は [3/8] Building universe, [4/8] Parsing methods というステージを取り上げる。 環境 OS: Linux (WSL 2 + Ubuntu 24.04.1) GraalVM: 24.2.0-dev (320d02ebb867) JDK: 21.0.2 (jvmci-23.1-b33) 3. Building universe In this stage, a universe with all types, fields, and methods is built, which is then used to create the native binary. 処理は doRun メソッドの以下の try ブロックの中。 ...