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