Partial evaluation

From Wikipedia, the free encyclopedia

Template:Short description Script error: No such module "Distinguish". Template:More footnotes Lua error in package.lua at line 80: module 'Module:Sidebar/configuration' not found.

In computing, partial evaluation is a technique for several different types of program optimization by specialization. The most straightforward application is to produce new programs that run faster than the originals while being guaranteed to behave in the same way.

A computer program πš™πš›πš˜πš is seen as a mapping of input data into output data:

πš™πš›πš˜πš:IstaticΓ—Idynamicβ†’O,

where Istatic, the static data, is the part of the input data known at compile time.

The partial evaluator transforms βŸ¨πš™πš›πš˜πš,Istatic⟩ into πš™πš›πš˜πšβˆ—:Idynamicβ†’O by precomputing all static input at compile time. πš™πš›πš˜πšβˆ— is called the "residual program" and should run more efficiently than the original program. The act of partial evaluation is said to "residualize" πš™πš›πš˜πš to πš™πš›πš˜πšβˆ—.

Futamura projections

A particularly interesting example of the use of partial evaluation, first described in the 1970s by Yoshihiko Futamura,[1] is when πš™πš›πš˜πš is an interpreter for a programming language.

If Istatic is source code designed to run inside that interpreter, then partial evaluation of the interpreter with respect to this data/program produces πš™πš›πš˜πšβˆ—, a version of the interpreter that only runs that source code, is written in the implementation language of the interpreter, does not require the source code to be resupplied, and runs faster than the original combination of the interpreter and the source. In this case πš™πš›πš˜πšβˆ— is effectively a compiled version of Istatic.

This technique is known as the first Futamura projection, of which there are three:

  1. Specializing an interpreter for given source code, yielding an executable.
  2. Specializing the specializer for the interpreter (as applied in #1), yielding a compiler.
  3. Specializing the specializer for itself (as applied in #2), yielding a tool that can convert any interpreter to an equivalent compiler.

They were described by Futamura in Japanese in 1971[2] and in English in 1983.[3]

PyPy's RPython and GraalVM's Truffle framework are examples of real-world JIT compilers that implement Futamura's first projection.

See also

References

Page Template:Reflist/styles.css has no content.

  1. ^ Page Module:Citation/CS1/styles.css has no content."Professor Yoshihiko Futamura". fi.ftmr.info. Retrieved 2026-01-28.
  2. ^ Page Module:Citation/CS1/styles.css has no content."Partial Evaluation of Computation Process --- An approach to a Compiler-Compiler", Transactions of the Institute of Electronics and Communications Engineers of Japan, 54-C: 721–728, 1971
  3. ^ Page Module:Citation/CS1/styles.css has no content.Futamura, Y. (1983). "Partial computation of programs". RIMS Symposia on Software Science and Engineering. Lecture Notes in Computer Science. Vol. 147. Springer. pp. 1–35. doi:10.1007/3-540-11980-9_13. hdl:2433/103401. ISBN 3-540-11980-9.

General references

Page Template:Refbegin/styles.css has no content.

Page Template:Refbegin/styles.css has no content.

Lua error in package.lua at line 80: module 'Module:Navbox/configuration' not found.