The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Jit the perl5 runops loop in proper execution order

DESCRIPTION

WARNING: It does only work yet for simple functions! No branches. Only intel CPU's 32 and 64bit (i386 and amd64) yet. amd64 threaded fails currently.

This perl5 jitter is super-simple. The compiled optree from the perl5 parser is a linked list in memory in non-execution order, with wide-spread jumps, almost in reverse order.

Additionally the calls are indirect.

The jitter properly aligns the run-time calls in linear "exec" order, so that the CPU can prefetch the next (and other) instructions.

The old indirect call far costs about 70 cycles, the new direct call near costs 3-5 cycles and is cached.

Speed up: See http://blogs.perl.org/users/rurban/2010/11/performance-hacks.html

Additional memory costs: 2-10 byte per op

AUTHOR

Reini Urban perl-compiler@googlegroups.com written from scratch.

LICENSE

Copyright (c) 2010 Reini Urban

You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the README file.