Home | History | Annotate | Download | only in gcc

Lines Matching refs:cond_stmt

3501 maybe_optimize_guarding_check (vec<gimple *> &mul_stmts, gimple *cond_stmt,
3504 basic_block bb = gimple_bb (cond_stmt);
3513 if (gimple_code (cond_stmt) == GIMPLE_COND)
3518 if (gimple_cond_code (cond_stmt) == NE_EXPR)
3560 while (gsi_stmt (gsi) != cond_stmt)
3583 if (gimple_code (cond_stmt) == GIMPLE_COND)
3598 tree lhs = gimple_assign_lhs (cond_stmt);
3604 if (gimple_assign_rhs_code (cond_stmt) == COND_EXPR)
3630 if (gimple_assign_rhs_code (cond_stmt) == COND_EXPR)
3632 tree cond = gimple_assign_rhs1 (cond_stmt);
3636 gimple_assign_rhs3 (cond_stmt), 0))
3640 gimple_assign_rhs2 (cond_stmt), 0))
3643 else if (gimple_assign_rhs_code (cond_stmt) == NE_EXPR)
3907 gimple *cond_stmt = NULL;
3944 cond_stmt = use_stmt;
4176 *gsi = gsi_for_stmt (cond_stmt);
4283 gcond *cond_stmt = as_a <gcond *> (use_stmt);
4284 gimple_cond_set_lhs (cond_stmt, ovf);
4285 gimple_cond_set_rhs (cond_stmt, build_int_cst (type, 0));
4286 gimple_cond_set_code (cond_stmt, ovf_use == 1 ? NE_EXPR : EQ_EXPR);