<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 17, 2013 at 9:55 PM, Anton Vodonosov <span dir="ltr"><<a href="mailto:avodonosov@yandex.ru" target="_blank">avodonosov@yandex.ru</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div id=":xh">In theory CL core consists of 25 special operators + build-in data types. Everything else<br>
is a library. So when porting to a new platform, theoretically, all we need to reimplement<br>
is a compiler understanding 25 operators + some build-in functions representing datatypes<br>
(make-array, aref, cons, etc) and some basic reader, allowing to read the source code of the library.<br></div></blockquote><div><br></div><div style>That is indeed the theory. In practice much of the library deals with operating system stuff: memory allocation, files, etc. That forces a low level implementation of several core structures. Moreover, several functions are critical for performance and are also hard-coded to make bootstrapping faster.</div>

<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div id=":xh">
How close this theoretical view to practice? We now have several open-source CL implementations.<br>
If one wants to create a Javascript port, what else he must be prepared to solve?<br></div></blockquote></div><br>ECL is pretty well isolated: the C library works like the lisp API and offers a number of functions that one may start with. Many of those functions could _nowadays_ be ported back to Common Lisp, using the fact that the compiler is more efficient. But there are critical things, such as the filesystem, running processes, or I/O operations, that would be hard to implement from scratch.<br>

<br clear="all"><div style>Perhaps Christian could comment, given that he is using the ECL Common Lisp base to implement a LLVM-based Common Lisp implementation</div><div style><br></div><div style>Juanjo</div><div><br></div>

-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br><a href="http://juanjose.garciaripoll.googlepages.com" target="_blank">http://juanjose.garciaripoll.googlepages.com</a>
</div></div>