Home | History | Annotate | Download | only in gcc

Lines Matching refs:eh_seq

315 static gimple_seq eh_seq;
574 replace_goto_queue_stmt_list (&eh_seq, tf);
873 emit_post_landing_pad (&eh_seq, region);
883 gimple_seq_add_seq (&eh_seq, cleanup);
1046 emit_post_landing_pad (&eh_seq, tf->region);
1047 gimple_seq_add_seq (&eh_seq, finally);
1049 emit_resx (&eh_seq, tf->region);
1103 emit_post_landing_pad (&eh_seq, tf->region);
1104 gimple_seq_add_seq (&eh_seq, finally);
1114 emit_post_landing_pad (&eh_seq, tf->region);
1118 gimple_seq_add_stmt (&eh_seq, x);
1171 emit_post_landing_pad (&eh_seq, tf->region);
1172 gimple_seq_add_seq (&eh_seq, finally);
1173 emit_resx (&eh_seq, tf->region);
1273 emit_post_landing_pad (&eh_seq, tf->region);
1274 gimple_seq_add_seq (&eh_seq, seq);
1275 emit_resx (&eh_seq, tf->region);
1444 emit_post_landing_pad (&eh_seq, tf->region);
1445 gimple_seq_add_seq (&eh_seq, finally);
1446 emit_resx (&eh_seq, tf->region);
1453 emit_post_landing_pad (&eh_seq, tf->region);
1457 gimple_seq_add_stmt (&eh_seq, x);
1461 gimple_seq_add_stmt (&eh_seq, x);
1470 gimple_seq_add_stmt (&eh_seq, x);
1471 emit_resx (&eh_seq, tf->region);
1684 old_eh_seq = eh_seq;
1685 eh_seq = NULL;
1742 /* If there was an old (aka outer) eh_seq, append the current eh_seq.
1743 If there was no old eh_seq, then the append is trivially already done. */
1746 if (eh_seq == NULL)
1747 eh_seq = old_eh_seq;
1750 gimple_seq new_eh_seq = eh_seq;
1751 eh_seq = old_eh_seq;
1752 gimple_seq_add_seq (&eh_seq, new_eh_seq);
1797 /* Add eh_seq from lowering EH in the cleanup sequence after the cleanup
1800 gimple_seq old_eh_seq = eh_seq;
1801 eh_seq = NULL;
1845 gimple_seq new_eh_seq = eh_seq;
1846 eh_seq = old_eh_seq;
1848 gimple_seq_add_seq (&eh_seq, new_eh_seq);
2206 gimple_seq_add_seq (&bodyp, eh_seq);
2208 /* We assume that since BODYP already existed, adding EH_SEQ to it
2215 eh_seq = NULL;