05.03.2013, 01:25, "Juan Jose Garcia-Ripoll" <juanjose.garciarip...@gmail.com>:
> On Mon, Mar 4, 2013 at 5:30 PM, Christian Schafmeister 
> <chris.sc...@verizon.net> wrote:
>> I've created a new implementation of Common Lisp that has a core written in 
>> C++ completely from scratch but hosts the ECL Common Lisp source code.
>
> Sounds like a lot of work.
>
>> It hosts all of the ECL Common Lisp code in the ecl/src/lsp and ecl/src/clos 
>> directories of the ECL source tree.
>> I do not use any part of the ECL CL->C compiler or the byte code compiler.
>> I've implemented my own CL interpreter and CL->LLVM-IR->native code compiler.
>
> I do not understand why you reimplemented the interpreter, but the LLVM 
> thingy looks interesting.


Hello.

I often think about porting Common Lisp to new platforms. Especially I am 
interested
in CL implementation able to compile to Javascript compiler which can work in 
browser.

In theory CL core consists of 25 special operators + build-in data types. 
Everything else
is a library. So when porting to a new platform, theoretically, all we need to 
reimplement
is a compiler understanding 25 operators + some build-in functions representing 
datatypes
(make-array, aref, cons, etc) and some basic reader, allowing to read the 
source code of the library.

How close this theoretical view to practice? We now have several open-source CL 
implementations.
If one wants to create a Javascript port, what else he must be prepared to 
solve?

How convenient basis the ECL codebase would be for such a port?

Best regards,
- Anton

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list

Reply via email to