In doing some optimization of my mod_perl code, I've identified a few places where very short subroutines are getting called often. I'd like to try inlining these subs and see how that impacts performance... is there a way to do this so Perl picks up the code during its initial compilation? It would be great if I could define these short bits of code as macros, then just insert them for inlining where required.