views:

58

answers:

2

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?

A: 

Yes, it was developed. Here's an article on Lisp Machine.

Boris Pavlović
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.
outis
+2  A: 

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".

outis