Partial evaluation: Difference between revisions

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
imported>Opencooper
 
imported>Ivanktw
Futamura projections: mention pypy and graalvm as examples
 
Line 30: Line 30:
| pages=721–728
| pages=721–728
| year=1971}}</ref> and in English in 1983.<ref>{{cite book |first=Y. |last=Futamura |chapter=Partial computation of programs |chapter-url= |title=RIMS Symposia on Software Science and Engineering |publisher=Springer |series=Lecture Notes in Computer Science |volume=147 |date=1983 |isbn=3-540-11980-9 |pages= 1–35|doi=10.1007/3-540-11980-9_13 |hdl=2433/103401}}</ref>
| year=1971}}</ref> and in English in 1983.<ref>{{cite book |first=Y. |last=Futamura |chapter=Partial computation of programs |chapter-url= |title=RIMS Symposia on Software Science and Engineering |publisher=Springer |series=Lecture Notes in Computer Science |volume=147 |date=1983 |isbn=3-540-11980-9 |pages= 1–35|doi=10.1007/3-540-11980-9_13 |hdl=2433/103401}}</ref>
[[PyPy]]'s RPython and [[GraalVM]]'s Truffle framework are examples of real-world [[Just-in-time compilation|JIT]] compilers that implement Futamura's first projection.


==See also==
==See also==
* [[Compile-time function execution]]
* [[Compile-time function execution]]
* [[Memoization]]
* [[Memoization]]
* [[Meta-tracing]]
* [[Partial application]]
* [[Partial application]]
* [[Run-time algorithm specialisation]]
* [[Run-time algorithm specialisation]]
* [[Smn theorem|s<sub>mn</sub> theorem]]
* [[smn theorem]]
* [[Strength reduction]]
* [[Strength reduction]]
* [[Template metaprogramming]]
* [[Template metaprogramming]]

Latest revision as of 10:00, 16 November 2025

Template:Short description Script error: No such module "Distinguish". Template:More footnotes Script error: No such module "Sidebar".

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 prog is seen as a mapping of input data into output data:

prog:Istatic×IdynamicO,

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

The partial evaluator transforms prog,Istatic into prog*:IdynamicO by precomputing all static input at compile time. prog* is called the "residual program" and should run more efficiently than the original program. The act of partial evaluation is said to "residualize" prog to prog*.

Futamura projections

A particularly interesting example of the use of partial evaluation, first described in the 1970s by Yoshihiko Futamura,[1] is when prog 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 prog*, 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 prog* 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

Template:Reflist

General references

Template:Refbegin

  • Script error: No such module "Citation/CS1".
  • Script error: No such module "citation/CS1".

Template:Refend

External links

Template:Refbegin

Template:Refend

Template:Compiler optimizations

  1. Yoshihiko Futamura's website.
  2. Script error: No such module "citation/CS1".
  3. Script error: No such module "citation/CS1".