Partial evaluation explained
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:
where
, the
static data, is the part of the input data known at compile time.
The partial evaluator transforms
\langleprog,Istatic\rangle
into
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 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:
- Specializing an interpreter for given source code, yielding an executable.
- Specializing the specializer for the interpreter (as applied in #1), yielding a compiler.
- 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 and in English in 1983.[2]
See also
References
General references
- Y. . Futamura . Partial Evaluation of Computation Process—An Approach to a Compiler-Compiler . Higher-Order and Symbolic Computation . 12 . 4. 381–391 . 1999 . 10.1023/A:1010095604496 . 10.1.1.10.2747 . 12673078 .
- Book: Consel . Charles . Olivier Danvy . Danvy . Olivier . Tutorial Notes on Partial Evaluation . POPL '93: Proceedings of the 20th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages . Association for Computing Machinery . 1993 . 0897915607 . 493–501 . 10.1145/158511.158707 . 10.1.1.114.7330. 698339 .
External links
Notes and References
- http://fi.ftmr.info/ Yoshihiko Futamura's website
- Book: Futamura, Y. . Partial computation of programs . RIMS Symposia on Software Science and Engineering . Springer . Lecture Notes in Computer Science . 147 . 1983 . 3-540-11980-9 . 1–35. 10.1007/3-540-11980-9_13 . 2433/103401.