Home
last modified time | relevance | path

Searched refs:try_stmt (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Domp-oacc-kernels-decompose.cc795 gimple *try_stmt = gimple_build_try (body, cleanup, GIMPLE_TRY_FINALLY); in make_data_region_try_statement() local
797 return try_stmt; in make_data_region_try_statement()
895 gimple *try_stmt = make_data_region_try_statement (loc, body); in maybe_build_inner_data_region() local
896 gimple_omp_set_body (inner_data_region, try_stmt); in maybe_build_inner_data_region()
1248 gimple *try_stmt = gsi_stmt (gsi); in decompose_kernels_region_body() local
1249 inner_cleanup = gimple_try_cleanup (try_stmt); in decompose_kernels_region_body()
1250 gimple *try_body = gimple_try_eval (try_stmt); in decompose_kernels_region_body()
1550 gimple *try_stmt = make_data_region_try_statement (loc, body); in omp_oacc_kernels_decompose_1() local
1551 gimple_omp_set_body (data_region, try_stmt); in omp_oacc_kernels_decompose_1()
H A Dtree-eh.cc1038 gtry *try_stmt = gimple_build_try (finally, in honor_protect_cleanup_actions() local
1041 finally = lower_eh_must_not_throw (outer_state, try_stmt); in honor_protect_cleanup_actions()
2092 gtry *try_stmt = as_a <gtry *> (stmt); in lower_eh_constructs_2() local
2093 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY) in lower_eh_constructs_2()
2094 replace = lower_try_finally (state, try_stmt); in lower_eh_constructs_2()
2097 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt)); in lower_eh_constructs_2()
2100 replace = gimple_try_eval (try_stmt); in lower_eh_constructs_2()
2107 replace = lower_catch (state, try_stmt); in lower_eh_constructs_2()
2110 replace = lower_eh_filter (state, try_stmt); in lower_eh_constructs_2()
2113 replace = lower_eh_must_not_throw (state, try_stmt); in lower_eh_constructs_2()
[all …]
H A Dgimple.h4400 gtry *try_stmt = as_a <gtry *> (gs);
4401 return &try_stmt->eval;
4420 gtry *try_stmt = as_a <gtry *> (gs);
4421 return &try_stmt->cleanup;
4452 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4454 try_stmt->eval = eval;
4462 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4464 try_stmt->cleanup = cleanup;
H A Dgimple.cc1976 gtry *try_stmt = as_a <gtry *> (stmt); in gimple_copy() local
1978 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt)); in gimple_copy()
1980 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt)); in gimple_copy()
H A Dgimplify.cc2230 gtry *try_stmt = as_a <gtry *> (stmt); in last_stmt_in_scope() local
2231 stmt = gimple_seq_last_nondebug_stmt (gimple_try_eval (try_stmt)); in last_stmt_in_scope()
2236 && gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY) in last_stmt_in_scope()
2238 stmt = gimple_seq_last_nondebug_stmt (gimple_try_cleanup (try_stmt)); in last_stmt_in_scope()
H A DChangeLog.gimple-classes3225 locals "eh_mnt" and "try_stmt" with stronger types.
3234 "try_stmt", using it for type-safety.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Domp-grid.c631 else if (gtry *try_stmt = dyn_cast <gtry *> (stmt)) in grid_dist_follows_tiling_pattern() local
633 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_CATCH) in grid_dist_follows_tiling_pattern()
640 dump_printf_loc (MSG_NOTE, try_stmt, in grid_dist_follows_tiling_pattern()
646 if (!grid_dist_follows_tiling_pattern (gimple_try_eval (try_stmt), in grid_dist_follows_tiling_pattern()
649 if (!grid_dist_follows_tiling_pattern (gimple_try_cleanup (try_stmt), in grid_dist_follows_tiling_pattern()
H A Dtree-eh.c1043 gtry *try_stmt = gimple_build_try (finally, in honor_protect_cleanup_actions() local
1046 finally = lower_eh_must_not_throw (outer_state, try_stmt); in honor_protect_cleanup_actions()
2100 gtry *try_stmt = as_a <gtry *> (stmt); in lower_eh_constructs_2() local
2101 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY) in lower_eh_constructs_2()
2102 replace = lower_try_finally (state, try_stmt); in lower_eh_constructs_2()
2105 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt)); in lower_eh_constructs_2()
2108 replace = gimple_try_eval (try_stmt); in lower_eh_constructs_2()
2115 replace = lower_catch (state, try_stmt); in lower_eh_constructs_2()
2118 replace = lower_eh_filter (state, try_stmt); in lower_eh_constructs_2()
2121 replace = lower_eh_must_not_throw (state, try_stmt); in lower_eh_constructs_2()
[all …]
H A Dgimple.h4309 gtry *try_stmt = as_a <gtry *> (gs);
4310 return &try_stmt->eval;
4329 gtry *try_stmt = as_a <gtry *> (gs);
4330 return &try_stmt->cleanup;
4361 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4363 try_stmt->eval = eval;
4371 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4373 try_stmt->cleanup = cleanup;
H A Dgimple.c1897 gtry *try_stmt = as_a <gtry *> (stmt); in gimple_copy() local
1899 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt)); in gimple_copy()
1901 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt)); in gimple_copy()
H A Dgimplify.c2023 gtry *try_stmt = as_a <gtry *> (stmt); in last_stmt_in_scope() local
2024 stmt = gimple_seq_last_nondebug_stmt (gimple_try_eval (try_stmt)); in last_stmt_in_scope()
2029 && gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY) in last_stmt_in_scope()
2031 stmt = gimple_seq_last_nondebug_stmt (gimple_try_cleanup (try_stmt)); in last_stmt_in_scope()