Matches in DBpedia 2014 for { <http://dbpedia.org/resource/Defunctionalization> ?p ?o. }
Showing items 1 to 17 of
17
with 100 items per page.
- Defunctionalization abstract "In programming languages, defunctionalization refers to a compile-time transformation which eliminates higher-order functions, replacing them by a single first-order apply function. The technique was first described by John C. Reynolds in his 1972 paper, "Definitional Interpreters for Higher-Order Programming Languages". Reynolds' observation was that a given program contains only finitely many function abstractions, so that each can be assigned (and replaced by) a unique identifier. Every function application within the program is then replaced by a call to the apply function with the function identifier as the first argument. The apply function's only job is to dispatch on this first argument, and then perform the instructions denoted by the function identifier on the remaining arguments.One complication to this basic idea is that function abstractions may reference escaping variables. In such situations, defunctionalization must be preceded by closure conversion (lambda lifting), so that any free variables of a function abstraction are passed as extra arguments to apply. In addition, if closures are supported as first-class values, it becomes necessary to represent these captured bindings by creating data structures.Instead of having a single apply function dispatch on all function abstractions in a program, various kinds of control flow analysis (including simple distinctions based on arity or type signature) can be employed to determine which function(s) may be called at each function application site, and a specialized apply function may be referenced instead. Alternately, the target language may support indirect calls through function pointers, which may be more efficient and extensible than a dispatch-based approach.Besides its use as a compilation technique for higher-order functional languages, defunctionalization has been studied (particularly by Olivier Danvy and collaborators) as a way of mechanically transforming interpreters into abstract machines. Defunctionalization is also related to the technique from object-oriented programming of representing functions by function objects (as an alternative to closures).".
- Defunctionalization wikiPageExternalLink Defunctionalization_%28Programming_Languages%29.
- Defunctionalization wikiPageExternalLink BRICS-RS-01-23.pdf.
- Defunctionalization wikiPageExternalLink BRICS-RS-07-7.pdf.
- Defunctionalization wikiPageExternalLink HOSC-11-4-pp363-397.pdf.
- Defunctionalization wikiPageExternalLink 22_danvy-nielsen_ppdp-2001.pdf.
- Defunctionalization wikiPageID "24504713".
- Defunctionalization wikiPageRevisionID "604151191".
- Defunctionalization hasPhotoCollection Defunctionalization.
- Defunctionalization subject Category:Implementation_of_functional_programming_languages.
- Defunctionalization comment "In programming languages, defunctionalization refers to a compile-time transformation which eliminates higher-order functions, replacing them by a single first-order apply function. The technique was first described by John C. Reynolds in his 1972 paper, "Definitional Interpreters for Higher-Order Programming Languages". Reynolds' observation was that a given program contains only finitely many function abstractions, so that each can be assigned (and replaced by) a unique identifier.".
- Defunctionalization label "Defunctionalization".
- Defunctionalization sameAs m.080mmdy.
- Defunctionalization sameAs Q5251733.
- Defunctionalization sameAs Q5251733.
- Defunctionalization wasDerivedFrom Defunctionalization?oldid=604151191.
- Defunctionalization isPrimaryTopicOf Defunctionalization.