Home | History | Annotate | Download | only in gcc

Lines Matching defs:gsi1

565   gimple_stmt_iterator gsi1, gsi2;
600 gsi1 = gsi_start_nondebug_bb (bb1);
602 gsi_advance_fw_nondebug_nonlocal (&gsi1);
604 while (!(gsi_end_p (gsi1) || gsi_end_p (gsi2)))
606 s1 = gsi_stmt (gsi1);
612 gsi_next_nondebug (&gsi1);
614 gsi_advance_fw_nondebug_nonlocal (&gsi1);
1298 gimple_stmt_iterator gsi1 = gsi_last_nondebug_bb (bb1);
1303 gsi_advance_bw_nondebug_nonlocal (&gsi1, &vuse1, &vuse_escaped);
1306 while (!gsi_end_p (gsi1) && !gsi_end_p (gsi2))
1308 gimple *stmt1 = gsi_stmt (gsi1);
1321 gsi_prev_nondebug (&gsi1);
1323 gsi_advance_bw_nondebug_nonlocal (&gsi1, &vuse1, &vuse_escaped);
1327 while (!gsi_end_p (gsi1) && gimple_code (gsi_stmt (gsi1)) == GIMPLE_LABEL)
1329 tree label = gimple_label_label (as_a <glabel *> (gsi_stmt (gsi1)));
1332 gsi_prev (&gsi1);
1341 if (!(gsi_end_p (gsi1) && gsi_end_p (gsi2)))
1615 gimple_stmt_iterator gsi1 = gsi_start_bb (bb1);
1616 if (!gsi_end_p (gsi1) && gimple_code (gsi_stmt (gsi1)) == GIMPLE_LABEL)
1619 while (!gsi_end_p (gsi1)
1620 && gimple_code (gsi_stmt (gsi1)) == GIMPLE_LABEL)
1622 tree label = gimple_label_label (as_a <glabel *> (gsi_stmt (gsi1)));
1625 gsi_next (&gsi1);
1627 gsi_move_before (&gsi1, &gsi2);