Re: Compiling to ParrotVM

2002-12-20 Thread Will Coleda
Sorry to reply to myself, but I realized this is the second time I've mentioned this and never actually let anyone see the code. ^_^ http://www.coleda.com/users/coke/tcl_parrot.zip Be gentle - it was written back in... 0.0.2 days, I think, and I haven't kept up. =-) Will Coleda wrote: I still

Re: Compiling to ParrotVM

2002-12-20 Thread Will Coleda
I still have the single pass (that is, no eval) tcl to pasm parser/compiler that I wrote in perl5. I had only defined a few commands (append, exit, puts, and set, with a broken incr (were missing a PMC method at the time, and a partial if), but the parsing algorithm is already done. I had mean

Re: Compiling to ParrotVM

2002-12-19 Thread Dan Sugalski
At 9:12 AM -0500 12/17/02, David Robins wrote: On Tue, 17 Dec 2002, K Stol wrote: After doing some reading about Parrot, I got very interested. I'd like to write some kind of compiler for my Bacherlor's in Computer Science. I'm thinking of a compiler for Tcl which produces Parrot Assembly code

Re: Compiling to ParrotVM

2002-12-17 Thread Tanton Gibbs
ent: Tuesday, December 17, 2002 8:54 AM Subject: Re: Compiling to ParrotVM > If memory serves me right, K Stol wrote: > > I'm thinking of a compiler for Tcl which produces Parrot Assembly code, > > but the source language (which will be compiled) is not definite yet. > >

Re: Compiling to ParrotVM

2002-12-17 Thread Gopal V
If memory serves me right, K Stol wrote: > I'm thinking of a compiler for Tcl which produces Parrot Assembly code, > but the source language (which will be compiled) is not definite yet. Instead of generating Parrot assembly, you might find it easier to generate imcc code which is a simplified

Re: Compiling to ParrotVM

2002-12-17 Thread David Robins
On Tue, 17 Dec 2002, K Stol wrote: > After doing some reading about Parrot, I got very interested. I'd like to > write some kind of compiler for my Bacherlor's in Computer Science. I'm > thinking of a compiler for Tcl which produces Parrot Assembly code, but > the source language (which will be com

Compiling to ParrotVM

2002-12-17 Thread K Stol
Hi there, After doing some reading about Parrot, I got very interested. I'd like to write some kind of compiler for my Bacherlor's in Computer Science. I'm thinking of a compiler for Tcl which produces Parrot Assembly code, but the source language (which will be compiled) is not definite yet.