Lines Matching refs:logop
3521 LOGOP *logop; in S_new_logop() local
3609 NewOp(1101, logop, 1, LOGOP); in S_new_logop()
3611 logop->op_type = (OPCODE)type; in S_new_logop()
3612 logop->op_ppaddr = PL_ppaddr[type]; in S_new_logop()
3613 logop->op_first = first; in S_new_logop()
3614 logop->op_flags = (U8)(flags | OPf_KIDS); in S_new_logop()
3615 logop->op_other = LINKLIST(other); in S_new_logop()
3616 logop->op_private = (U8)(1 | (flags >> 8)); in S_new_logop()
3619 logop->op_next = LINKLIST(first); in S_new_logop()
3620 first->op_next = (OP*)logop; in S_new_logop()
3623 CHECKOP(type,logop); in S_new_logop()
3625 o = newUNOP(OP_NULL, 0, (OP*)logop); in S_new_logop()
3634 LOGOP *logop; in Perl_newCONDOP() local
3660 NewOp(1101, logop, 1, LOGOP); in Perl_newCONDOP()
3661 logop->op_type = OP_COND_EXPR; in Perl_newCONDOP()
3662 logop->op_ppaddr = PL_ppaddr[OP_COND_EXPR]; in Perl_newCONDOP()
3663 logop->op_first = first; in Perl_newCONDOP()
3664 logop->op_flags = (U8)(flags | OPf_KIDS); in Perl_newCONDOP()
3665 logop->op_private = (U8)(1 | (flags >> 8)); in Perl_newCONDOP()
3666 logop->op_other = LINKLIST(trueop); in Perl_newCONDOP()
3667 logop->op_next = LINKLIST(falseop); in Perl_newCONDOP()
3670 logop); in Perl_newCONDOP()
3674 first->op_next = (OP*)logop; in Perl_newCONDOP()
3678 o = newUNOP(OP_NULL, 0, (OP*)logop); in Perl_newCONDOP()