Searched refs:try_stmt (Results 1 - 3 of 3) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dtree-eh.c1030 gtry *try_stmt; local
1074 try_stmt = gimple_build_try (finally, gimple_seq_alloc_with_stmt (eh_mnt),
1076 finally = lower_eh_must_not_throw (outer_state, try_stmt);
2104 gtry *try_stmt = as_a <gtry *> (stmt); local
2105 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2106 replace = lower_try_finally (state, try_stmt);
2109 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt));
2112 replace = gimple_try_eval (try_stmt);
2119 replace = lower_catch (state, try_stmt);
2122 replace = lower_eh_filter (state, try_stmt);
[all...]
H A Dgimple.h3794 gtry *try_stmt = as_a <gtry *> (gs);
3795 return &try_stmt->eval;
3814 gtry *try_stmt = as_a <gtry *> (gs);
3815 return &try_stmt->cleanup;
3846 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
3848 try_stmt->eval = eval;
3856 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
3858 try_stmt->cleanup = cleanup;
H A Dgimple.c1750 gtry *try_stmt = as_a <gtry *> (stmt); local
1752 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt));
1754 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt));

Completed in 108 milliseconds