Lines Matching defs:active

649 	struct basic_block *src = ep->active;
651 ep->active = NULL;
656 struct basic_block *src = ep->active;
664 ep->active = NULL;
670 struct basic_block *bb = ep->active;
682 ep->active = NULL;
687 if (!bb_terminated(ep->active))
690 ep->active = bb;
721 /* Add a label to the currently active block, return new active block */
730 bb = ep->active;
741 struct basic_block *bb = ep->active;
971 if (!ep->active)
987 struct basic_block *bb = ep->active;
1028 if (!ep->active)
1125 if (!ep->active)
1658 if (!expr_false || !ep->active)
1665 phi1 = alloc_phi(ep->active, src1, expr->ctype);
1670 phi2 = alloc_phi(ep->active, src2, expr->ctype);
1685 if (!cond || !expr_true || !expr_false || !ep->active)
1695 phi1 = alloc_phi(ep->active, src1, expr->ctype);
1700 phi2 = alloc_phi(ep->active, src2, expr->ctype);
1725 if (!ep->active || !expr->left || !expr->right)
1746 phi2 = alloc_phi(ep->active, src2, ctype);
1781 if (!expr || !valid_type(expr->ctype) || !bb_reachable(ep->active))
2005 phi = alloc_phi(ep->active, src, ctype);
2018 struct basic_block *active = ep->active;
2019 if (active && !bb_terminated(active)) { // missing return
2053 bb = ep->active;
2217 struct basic_block *active;
2219 active = ep->active;
2220 if (active && !is_void_type(ret)) {
2232 struct basic_block *active, *default_case;
2240 active = ep->active;
2241 if (!active) {
2242 active = alloc_basic_block(ep, stmt->pos);
2243 set_activeblock(ep, active);
2275 add_bb(&bb_case->parents, active);
2276 add_bb(&active->children, bb_case);
2290 add_bb(&default_case->parents, active);
2291 add_bb(&active->children, default_case);
2351 bb = ep->active;
2397 struct basic_block *active;
2400 active = ep->active;
2401 if (!bb_reachable(active))
2428 add_bb(&bb_computed->parents, ep->active);
2429 add_bb(&active->children, bb_computed);