JIT Compilation - CI/CD用語集の定義
JIT(Just-In-Time)コンパイルは、プログラムの実行中に bytecode をネイティブコードへ変換し、頻繁に実行される経路をその場で最適化します。ウォームアップのコストと引き換えに、高い定常状態の速度を得ます。
関連ガイド
Ahead-of-Time Compilation - CI/CD Glossary DefinitionAhead-of-time compilation turns source or bytecode into native code before run, giving fast, predictable star…
Transpiler - CI/CD Glossary DefinitionA transpiler translates source from one high-level language to another - TypeScript to JavaScript, modern JS…
Runtime vs Build-Time - CI/CD Glossary DefinitionRuntime vs build-time distinguishes work done while compiling or packaging from work done when the program ru…