- Source: Copy-and-patch
- Apache HTTP Server
- Minecraft
- Daftar episode Oggy and the Cockroaches
- Avril Lavigne
- Polusi plastik
- Pita perekat
- Daftar film terlaris
- Webull
- Apple Inc.
- Brad Pitt
- Copy-and-patch
- Patch (computing)
- JSON Patch
- Monkey patch
- Just-in-time compilation
- Patch Tuesday
- Copy protection
- Sony BMG copy protection rootkit scandal
- Purple prose
- Colors (motorcycling)
In computing, copy-and-patch compilation is a simple compiler technique intended for just-in-time compilation (JIT compilation) that uses pattern matching to match pre-generated templates to parts of an abstract syntax tree (AST) or bytecode stream, and emit corresponding pre-written machine code fragments that are then patched to insert memory addresses, register addresses, constants and other parameters to produce executable code. Code not matched by templates can be either be interpreted in the normal way, or code created to directly call interpreter code.
Compilation
While copy-and-patch is a "quick-and-dirty" approach to compilation that is orders of magnitude slower than more rigorous techniques, it often yields code that can in many cases approach the performance of unoptimized code produced by those techniques.
Copy-and-patch was first described by Fredrik Kjolstad and Haoran Xu in a 2021 paper.
As of 2023, Xu was working on an implementation for Lua that generates templates automatically, based on high-level language descriptions of the interpreter primitives.
As of 2024, a bytecode-based copy-and-patch implementation was used for the Python 3.13 JIT compiler.
See also
Compile and go system
Tracing just-in-time compilation