A-normal form
http://dbpedia.org/resource/A-normal_form an entity of type: Thing
In computer science, A-normal form (abbreviated ANF) is an intermediate representation of programs in . In ANF, all arguments to a function must be trivial (constants or variables). That is, evaluation of each argument must halt immediately. This article deals with the basic definition expressed in terms of the λ-calculus with weak reduction and let-expressions, where the restriction is enforced by
rdf:langString
rdf:langString
A-normal form
xsd:integer
6853706
xsd:integer
1121147927
rdf:langString
In computer science, A-normal form (abbreviated ANF) is an intermediate representation of programs in . In ANF, all arguments to a function must be trivial (constants or variables). That is, evaluation of each argument must halt immediately. ANF is introduced by Sabry and Felleisen in 1992 as a simpler alternative to continuation-passing style (CPS). Some of the advantages of using CPS as an intermediate representation are that optimizations are easier to perform on programs in CPS than in the source language, and that it is also easier for compilers to generate machine code for programs in CPS. Flanagan et al. showed how compilers could use ANF to achieve those same benefits with one source-level transformation; in contrast, for realistic compilers the CPS transformation typically involves additional phases, for example, to simplify CPS terms. This article deals with the basic definition expressed in terms of the λ-calculus with weak reduction and let-expressions, where the restriction is enforced by 1.
* allowing only constants, λ-terms, and variables, to serve as arguments of function applications, and 2.
* requiring that the result of a non-trivial expression be captured by a let-bound variable or returned from a function.
xsd:nonNegativeInteger
3128