I've read somewhere that the current machine model is not quite fit for functional programming. So what is the limitations of the current machine model? Has a more suitable machine model been developed?
Kara
6,23616 gold badges54 silver badges58 bronze badges
asked Oct 19, 2010 at 13:39
user168237user168237
2 Answers 2
Landin's SECD machine was one of the first designed to evaluate lambda calculus expressions. Ager et al. cover other abstract and virtual machines designed to do same in their paper "A Functional Correspondence between Evaluators and Abstract Machines".
answered Oct 19, 2010 at 15:42
Comments
Yes, it was developed. Here's an article on Lisp Machine.
Paul Rubel
27.4k7 gold badges64 silver badges85 bronze badges
answered Oct 19, 2010 at 13:56
1 Comment
outis
Lisp machines were optimized to run Lisp programs, but weren't machine models. Furthermore, from what I understand, they were still sequential. A suitable machine model for (pure) functional programming shouldn't be sequential.