Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^5: Perl 5 Optimizing Compiler

by chromatic (Archbishop)
on Aug 14, 2012 at 17:52 UTC ( [id://987427]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Perl 5 Optimizing Compiler
in thread Perl 5 Optimizing Compiler

What stops perl from using alloca, where possible, today?

Some combination of the need to box everything into SVs, non-linear control flow, and lack of escape analysis.

you want C stack allocated SVs?

It'd be nice to have something slimmer and simpler than a SV.

are you referring to RISC cpus with dozens of registers and keeping entire structs split across registers?

The AMD64 architecture (or whatever it's called) has plenty more registers than the preceding 32-bit x86 architecture, but even keeping a couple of commonly used parameters in registers throughout a function is going to be cheaper than copying them in and out of memory.

I believe that rewriting Parrot's op dispatcher in assembly to keep the program counter and interpreter in registers would offer a sizable improvement in op dispatch (not that that's anything close to Parrot's bottleneck).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://987427]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-16 05:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found