中間表現 - CI/CD 用語集の定義
中間表現(IR)は、コンパイラがソースを下ろす言語およびターゲットに中立な形式(例: LLVM IR)で、backend が各ターゲット向けの機械語を出力する前に、解析と最適化を一度だけ実行できるようにします。
関連ガイド
Abstract Syntax Tree - CI/CD Glossary DefinitionAn abstract syntax tree is the structured tree a parser builds from source, capturing its grammar without pun…
Optimization Level - CI/CD Glossary DefinitionAn optimization level (-O0 to -O3, -Os) tells the compiler how aggressively to optimize, trading compile time…
Monomorphization - CI/CD Glossary DefinitionMonomorphization generates a specialized copy of generic code for each concrete type used, trading larger bin…