Help for this page

Select Code to Download


  1. or download this
    1: OP_PADSV
       op_targ   = 1
    ...
    5: OP_ADD
       op_ppaddr = Perl_pp_add
       op_next   = 6
    
  2. or download this
    OP * Perl_pp_padsv {
        *PL_stack_sp++ = PL_curpad[PL_op->op_targ];
    ...
        *PL_stack_sp++ = s3;
        return PL_op->op_next;
    }
    
  3. or download this
    Perl_runops_standard {
        PL_op = ...;
    ...
            PL_op = PL_op->op_ppaddr();
        }
    }
    
  4. or download this
        PL_op = Perl_pp_padsv(PL_op);
        PL_op = Perl_pp_padsv(PL_op);
        PL_op = Perl_pp_const(PL_op);
        PL_op = Perl_pp_multiply(PL_op);
        PL_op = Perl_pp_add(PL_op);