stem/CS/Compilers.md
andy be05b7905d vault backup: 2023-05-22 17:32:00
Affected files:
.obsidian/community-plugins.json
.obsidian/graph.json
.obsidian/plugins/table-editor-obsidian/data.json
.obsidian/plugins/table-editor-obsidian/main.js
.obsidian/plugins/table-editor-obsidian/manifest.json
.obsidian/plugins/table-editor-obsidian/styles.css
.obsidian/workspace.json
Charities.md
Health/BWS.md
History/Britain.md
Lab/DNS.md
Lab/Deleted Packages.md
Lab/Ebook Laundering.md
Lab/Home.md
Lab/Mac.md
Lab/Photo Migration.md
Languages/Arabic.md
Money/Assets/Derivative.md
Money/Assets/Financial Instruments.md
Money/Assets/Security.md
Money/Econ.md
Money/Equity.md
Money/Giving.md
Money/Markets/Commodity.md
Money/Markets/Markets.md
Money/Markets/Types.md
STEM/AI/Literature.md
STEM/AI/Properties.md
STEM/CS/ABI.md
STEM/CS/Code Types.md
STEM/CS/Compilers.md
STEM/CS/Language Binding.md
STEM/CS/Languages/dotNet.md
STEM/CS/Quantum.md
STEM/CS/Resources.md
STEM/CS/Turing Machines.md
STEM/Maths/Algebra.md
STEM/Semiconductors/Equations.md
STEM/Signal Proc/Convolution.md
STEM/Signal Proc/Fourier Transform.md
STEM/Speech/Literature.md
STEM/img/ai-io.png
STEM/img/ai-nested-subjects.png
STEM/img/cli-infrastructure.png
Tattoo/Plans.md
Tattoo/img/chest.png
2023-05-22 17:32:00 +01:00

819 B

JIT

Just-in-Time

  • Compilation during execution
    • At run time
  • Bytecode translation to machine code for execution
  • Combination of AOT compilation and interpretation
    • Speed of compiled code
    • Flexibility of interpretation
    • Overhead of an interpreter
    • Overhead of compiling
      • As well as interpreting
  • Dynamic compilation
  • Adaptive optimization
    • Dynamic recompilation
    • Microarchitecture-specific speedups

AOT

Ahead-of-Time

  • Compile higher-level language or intermediate representation to machine code
    • Runs natively
  • Machine-optimized code

GCC

  • Standard compiler for GNU projects and Linux
  • Parse source code to produce abstract syntax tree

LLVM

  • Compiler infrastructure
  • Develop language front ends for ISAs
  • Apple sponsored