Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

sub calls and memory use

by Anonymous Monk
on Nov 16, 2019 at 05:18 UTC ( [id://11108774]=perlquestion: print w/replies, xml ) Need Help??

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Memory stays fixed:
$|++; while () { print '.'; select undef,undef,undef,0.01; }
Memory use grows:
$|++; re(); sub re { print '.'; select undef,undef,undef,0.01; re() }
What's going on?

Replies are listed 'Best First'.
Re: sub calls and memory use
by Corion (Patriarch) on Nov 16, 2019 at 07:15 UTC

    The call stack grows.

    Perl does not implement "tail call optimization" automatically.

    If you want this, you need to do it manually, by using goto:

    $|++; re(); sub re { print '.'; select undef,undef,undef,0.01; goto &re; }

    or

    use 5.016; $|++; re(); sub re { print '.'; select undef,undef,undef,0.01; goto __SUB__; }
      Addendum: NB: like this any extra return will now jump directly to the first call, because of the bypassing of the call stack.

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

      update

      Reworded

      What if you need to pass an arg to the sub? Even empty parens with goto cause memory growth. I got around it by changing a global var instead of passing args but is there a more proper way? Thanx

        See goto. You pass arguments in @_, as always.

        Of course, when calling any function, the call stack still grows since the return address needs to be stored on the call stack. This is independent of any function parameters (or none) passed to the next recursive invocation.

        Update: As the replies below also point out, I answered too quickly. I thought you were still calling the function but with empty parameters. If you're using goto to transfer control to the function, there should be no memory growth, as the replies also say.

A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://11108774]
Approved by haukex
Front-paged by haukex
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-19 06:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found