Parrot Developer's Guide: PIR

Parrot Developer's Guide: PIR

by Allison Randal, Andrew Whitworth, The Parrot Team

Parrot is a language-neutral virtual machine for dynamic languages such as Ruby, Python, PHP, and Perl. It hosts a powerful suite of compiler tools tailored to dynamic languages and a next generation regular expression engine. Its architecture is fundamentally different than virtual machines such as the JVM or CLR, with optimizations for dynamic languages, the use of registers instead of stacks, and pervasive continuations used for all flow control. This book covers Parrot Intermediate Representation (PIR), Parrot’s native low-level language. PIR is fundamentally an assembly language, but it has some higher-level features such as operator syntax, syntactic sugar for subroutine and method calls, automatic register allocation, and more friendly conditional syntax. Parrot libraries – including most of Parrot’s compiler tools – are often written in PIR. Even so, PIR is more rigid and “close to the machine” than higher-level languages, which makes it a good window into the inner workings.

Electronic Version

The Parrot Developer’s Guide is no longer in print, but you can download the PDF for free. The book is released under the Artistic License 2.0 (the same license as Parrot).