Escape Analysis - CI/CD用語集の定義
Escape analysis は、割り当てられたオブジェクトが生成スコープの外から参照され得るかどうかを判断するコンパイラ解析です。escape しないオブジェクトはスタックに割り当てたり、完全に除去したりでき、heap 割り当てと GC への負荷を削減します。
関連ガイド
Inlining - CI/CD Glossary DefinitionInlining replaces a function call with the function’s body, removing call overhead and unlocking further opti…
Constant Folding - CI/CD Glossary DefinitionConstant folding evaluates expressions with known values at compile time, so the binary ships the precomputed…
Optimization Level - CI/CD Glossary DefinitionAn optimization level (-O0 to -O3, -Os) tells the compiler how aggressively to optimize, trading compile time…