http://www.perlmonks.org?node_id=803981


in reply to Re^7: Does @{ } copy arrays?
in thread Does @{ } copy arrays?

Can you provide the decoder ring for things like "sKRM*/1"?

-QM
--
Quantum Mechanics: The dreams stuff is made of

Replies are listed 'Best First'.
Re^9: Does @{ } copy arrays?
by ikegami (Patriarch) on Oct 29, 2009 at 16:47 UTC

    B::Concise lists what opcode flag each letter represents. "M"odifiable is the relevant one here.


    Interesting tidbit:

    As an optimisation, lvalue subs weren't making arylen as Modifiable.

    $ perl -MO=Concise,-exec,f -e'sub f :lvalue { $#a }' 2>&1 | grep av2ar +ylen 4 <1> av2arylen sK/1

    My patch relied on that flag, so it was buggy. The second patch I mentioned made lvalue subs mark arylen as Modifiable.

      OK, I think I understand most of those examples.

      Except foo($#a) has me scratching my head. It's marked modifiable, but it's not a reference (at least not obvious to me). Maybe this is the older, darker magic of the aliasing involved with @_ in subs? (Personally, I avoid coding in such an implicit way, preferring to catch the passed arguments explicitly.)

      I went back an read most of the thread, and, while much of the discussion was over my head, it seems that those in the know are trying to fix it appropriately (or have already done so).

      Thanks to all for a mind-expanding discussion.

      -QM
      --
      Quantum Mechanics: The dreams stuff is made of

        Params are passed by reference. The elements of @_ are aliased to the arguments passed.
        >perl -le"sub f { $_[0]=456; } $x=123; f($x); print $x;" 456
        >perl -le"sub f { $_[0]=3; } $#a=2; f($#a); print $#a;" 3

        it seems that those in the know are trying to fix it appropriately (or have already done so).

        I wrote a fix. It was reviewed by Rafael who fixed a big in it and committed it.