Searched refs:pushop (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/usr.bin/perl/ |
H A D | builtin.c | 454 OP *parent = entersubop, *pushop, *argop; in ck_builtin_func1() local 456 pushop = cUNOPx(entersubop)->op_first; in ck_builtin_func1() 457 if (!OpHAS_SIBLING(pushop)) { in ck_builtin_func1() 458 pushop = cUNOPx(pushop)->op_first; in ck_builtin_func1() 461 argop = OpSIBLING(pushop); in ck_builtin_func1() 466 (void)op_sibling_splice(parent, pushop, 1, NULL); in ck_builtin_func1()
|
H A D | universal.c | 1387 OP *pushop, *argop; in optimize_out_native_convert_function() local 1400 pushop = cUNOPx(entersubop)->op_first; in optimize_out_native_convert_function() 1401 if (! OpHAS_SIBLING(pushop)) { in optimize_out_native_convert_function() 1402 parent = pushop; in optimize_out_native_convert_function() 1403 pushop = cUNOPx(pushop)->op_first; in optimize_out_native_convert_function() 1405 argop = OpSIBLING(pushop); in optimize_out_native_convert_function() 1417 (void)op_sibling_splice(parent, pushop, 1, NULL); in optimize_out_native_convert_function()
|
H A D | op.c | 5672 OP* const pushop = type == OP_LIST ? newOP(OP_PUSHMARK, 0) : NULL; in Perl_newLISTOP() local 5692 if (pushop) { in Perl_newLISTOP() 5693 OpMORESIB_set(pushop, first); in Perl_newLISTOP() 5694 listop->op_first = pushop; in Perl_newLISTOP() 5697 listop->op_last = pushop; in Perl_newLISTOP() 8577 OP *pushop = cUNOPx(cBINOPo->op_last)->op_first; in Perl_newASSIGNOP() local 8578 assert(OpSIBLING(pushop) == left); in Perl_newASSIGNOP() 8580 op_sibling_splice(cBINOPo->op_last, pushop, 1, NULL); in Perl_newASSIGNOP()
|
/openbsd/gnu/usr.bin/perl/ext/XS-APItest/ |
H A D | APItest.xs | 610 parent = pushop; in THX_ck_entersub_multi_sum() 611 pushop = cUNOPx(pushop)->op_first; in THX_ck_entersub_multi_sum() 757 parent = pushop; in THX_ck_entersub_establish_cleanup() 758 pushop = cUNOPx(pushop)->op_first; in THX_ck_entersub_establish_cleanup() 761 argop = OpSIBLING(pushop); in THX_ck_entersub_establish_cleanup() 779 parent = pushop; in THX_ck_entersub_postinc() 780 pushop = cUNOPx(pushop)->op_first; in THX_ck_entersub_postinc() 782 argop = OpSIBLING(pushop); in THX_ck_entersub_postinc() 792 OP *pushop, *argop; in THX_ck_entersub_pad_scalar() local 797 if(!OpHAS_SIBLING(pushop)) in THX_ck_entersub_pad_scalar() [all …]
|