Perl 6 and Parrot VM presentation slides

2005-05-23 Thread rocko
I am curious if there are any recent slides and notes for recent talks about Perl 6, language, how it will work, and the same for Parrot. I've caught a few old slides from almost a year ago for a few things, but not much. I am preparing a little presentation over here, and I'm trying to determine

Re: Perl 6 and Parrot VM presentation slides

2005-05-24 Thread rocko
Post them anyways. We have a Frenchman in my group that would normally be able to translate. However, he is on vacation (holiday?) in France and might not be back in time for the presentation. I'll take the slides anyway and see what magic I can attempt. I know somebody I suspect grew up in Que

Re: Perl 6 and Parrot VM presentation slides

2005-05-24 Thread rocko
Quoting Jens Rieks <[EMAIL PROTECTED]>: On Tuesday 24 May 2005 07:13, [EMAIL PROTECTED] wrote: I am curious if there are any recent slides and notes for recent talks about Perl 6, language, how it will work, and the same for Parrot. I've caught a few old slides from almost a year ago for a few

In need of somebody who wrote a jit_emit.h implementation

2005-07-20 Thread rocko
I've been slowing banging away at an x86_64 code generator. I'm just trying to get the basics down for now, generating NOP's; but even that's nontrivial. While compiling my code additions into Parrot, I've been running into this and that. This function is redefined a million times, while that on

Where's the no-op?

2005-07-30 Thread rocko
I think I might have gotten my x86-64 code generator up in the most minimal sense possible. I managed to build parrot in such a way that it used my own JIT implementation. I implemented Parrot_noop along with Parrot_jit_normal_op. My plan was to test some noop's first before opening up to all be

I wish to understand the JIT machine code generator

2005-04-12 Thread rocko
I have been trying to examine the i386 code generator to see how feasible it would be to create an AMD64 code generator. Unfortunately, the code is uncommented, and I haven't yet found any documentation to explain how it works on Parrot. So far I've determined there's relevant stuff in jit/i386.

Re: I wish to understand the JIT machine code generator

2005-04-13 Thread rocko
Quoting Leopold Toetsch <[EMAIL PROTECTED]>: [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have been trying to examine the i386 code generator to see how feasible it would be to create an AMD64 code generator. Unfortunately, the code is uncommented, and I haven't yet found any documentation to exp

Building an incomplete code generator into Parrot

2005-04-23 Thread rocko
Well I started the AMD64 code generator. I don't have much available yet -- just enough for what seems to be necessary to run anything at all. Parrot_jit_begin makes calls to MOV instructions that are implemented, and I have a NOP implemented. Is this the bare minimum? I was hoping for some ins