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


in reply to Re: How to de-reference a coderef? (B tricks)
in thread How to de-reference a coderef?

How do you do this in XS? Given a CV how do you get the name for the corresponding named sub?
  • Comment on Re^2: How to de-reference a coderef? (B tricks)

Replies are listed 'Best First'.
Re^3: How to de-reference a coderef? (B tricks)
by ikegami (Patriarch) on Aug 25, 2011 at 04:29 UTC
    use strict; use warnings; use feature qw( say ); use Inline C => <<'__EOI__'; SV* coderef2name(CV* cv) { const GV * const gv = CvGV(cv); const HV * const stash = GvSTASH(gv); const char * const pkg_name = HvNAME(stash); const char * const func_name = GvNAME(gv); SV * const fqn = newSVpvn("", 0); sv_catpv(fqn, pkg_name); sv_catpv(fqn, "::"); sv_catpv(fqn, func_name); return fqn; // Mortalised by Inline } __EOI__ sub f {} say coderef2name(\&f);
Re^3: How to de-reference a coderef? (B tricks)
by Anonymous Monk on Aug 25, 2011 at 01:14 UTC
    You call coderef2name from XS, that is how you do it