http://qs321.pair.com?node_id=1159173


in reply to Re^4: "goto" memory leak
in thread "goto" memory leak

I'm more than happy with renaming the problem to "goto creates spurious scopes".

goto doesn't create any scopes. As I've already stated, the memory is being used when my is executed since that causes it push an instruction on the stack.

Ok, but again we could argue over the definition of the word "needed". "Needed" by the program writer or "needed" by an implementation that keeps scopes around that are not accessible to the program writer anymore?

The instruction is needed because it's virtually impossible to tell that the scope will never exit.

Even in the simplest cases, it would be extremely expensive to check, especially since this check would have to be performed at run-time.

Replies are listed 'Best First'.
Re^6: "goto" memory leak
by jethro (Monsignor) on Mar 31, 2016 at 13:15 UTC

    Very true, it is impossible to check for scope exit. But would it be possible to check somehow (with a flag attached to the variable for example) whether the my variable already has a "destroy" POST routine on the stack or not?

      That would require extra memory for each PAD entry, and would require extra time to exit a scope, just to avoid some rare degenerate case where someone uses bad coding practices. That would be a bad tradeoff.