Re: How does perl compile functions

2003-11-22 Thread R. Joseph Newton
Dan Anderson wrote: > I'm curious how perl "compiles" functions internally. When the actual C > code (or ASM equivalent or bytecode or whatever Perl uses) for a > function is run, is there overhead to the function? Are functions > inlined? Does perl lazy compile functions? (i.e. functions neve

RE: How does perl compile functions

2003-11-20 Thread Hanson, Rob
M To: Perl Beginners Subject: How does perl compile functions I'm curious how perl "compiles" functions internally. When the actual C code (or ASM equivalent or bytecode or whatever Perl uses) for a function is run, is there overhead to the function? Are functions inlined? Do

Re: How does perl compile functions

2003-11-20 Thread david
Dan Anderson wrote: > I'm curious how perl "compiles" functions internally. When the actual C > code (or ASM equivalent or bytecode or whatever Perl uses) for a > function is run, is there overhead to the function? Are functions what do you mean by "overhead to the function"? > inlined? if yo

RE: How does perl compile functions

2003-11-20 Thread Bob Showalter
Dan Anderson wrote: > I'm curious how perl "compiles" functions internally. When > the actual C > code (or ASM equivalent or bytecode or whatever Perl uses) for a > function is run, is there overhead to the function? Are functions > inlined? perldoc perlguts exaplains a lot of that stuff. > D

How does perl compile functions

2003-11-20 Thread Dan Anderson
I'm curious how perl "compiles" functions internally. When the actual C code (or ASM equivalent or bytecode or whatever Perl uses) for a function is run, is there overhead to the function? Are functions inlined? Does perl lazy compile functions? (i.e. functions never used are never compiled and