Home | History | Annotate | Download | only in gcc

Lines Matching defs:antic_occr

270   struct gcse_occr *antic_occr;
709 /* The occurrences recorded in antic_occr are exactly those that
712 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
1134 struct gcse_occr *antic_occr, *avail_occr;
1170 cur_expr->antic_occr = NULL;
1181 antic_occr = cur_expr->antic_occr;
1183 if (antic_occr
1184 && BLOCK_FOR_INSN (antic_occr->insn) != BLOCK_FOR_INSN (insn))
1185 antic_occr = NULL;
1187 if (antic_occr)
1195 antic_occr = GOBNEW (struct gcse_occr);
1197 antic_occr->insn = insn;
1198 antic_occr->next = cur_expr->antic_occr;
1199 antic_occr->deleted_p = 0;
1200 cur_expr->antic_occr = antic_occr;
2147 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
2330 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
2481 /* We only need to search antic_occr since we require ANTLOC != 0. */
2482 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
3160 occr = find_occr_in_bb (expr->antic_occr, bb);
3192 occr = find_occr_in_bb (expr->antic_occr, dominated);