HomeSort by: relevance | last modified time | path
    Searched refs:try_stmt (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
omp-oacc-kernels-decompose.cc 796 gimple *try_stmt = gimple_build_try (body, cleanup, GIMPLE_TRY_FINALLY); local
798 return try_stmt;
896 gimple *try_stmt = make_data_region_try_statement (loc, body); local
897 gimple_omp_set_body (inner_data_region, try_stmt);
1249 gimple *try_stmt = gsi_stmt (gsi); local
1250 inner_cleanup = gimple_try_cleanup (try_stmt);
1251 gimple *try_body = gimple_try_eval (try_stmt);
1552 gimple *try_stmt = make_data_region_try_statement (loc, body); local
1553 gimple_omp_set_body (data_region, try_stmt);
tree-eh.cc 1040 gtry *try_stmt = gimple_build_try (finally, local
1043 finally = lower_eh_must_not_throw (outer_state, try_stmt);
2094 gtry *try_stmt = as_a <gtry *> (stmt); local
2095 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2096 replace = lower_try_finally (state, try_stmt);
2099 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt));
2102 replace = gimple_try_eval (try_stmt);
2109 replace = lower_catch (state, try_stmt);
2112 replace = lower_eh_filter (state, try_stmt);
2115 replace = lower_eh_must_not_throw (state, try_stmt);
    [all...]
gimple.h 4464 gtry *try_stmt = as_a <gtry *> (gs);
4465 return &try_stmt->eval;
4484 gtry *try_stmt = as_a <gtry *> (gs);
4485 return &try_stmt->cleanup;
4513 GIMPLE_TRY TRY_STMT. */
4516 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4518 try_stmt->eval = eval;
4523 body for GIMPLE_TRY TRY_STMT. */
4526 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4528 try_stmt->cleanup = cleanup
    [all...]
gimple.cc 2043 gtry *try_stmt = as_a <gtry *> (stmt);
2045 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt));
2047 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt));
gimplify.cc 2463 gtry *try_stmt = as_a <gtry *> (stmt);
2464 stmt = gimple_seq_last_nondebug_stmt (gimple_try_eval (try_stmt));
2469 && gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2471 stmt = gimple_seq_last_nondebug_stmt (gimple_try_cleanup (try_stmt));
2461 gtry *try_stmt = as_a <gtry *> (stmt); local
  /src/external/gpl3/gcc.old/dist/gcc/
omp-oacc-kernels-decompose.cc 795 gimple *try_stmt = gimple_build_try (body, cleanup, GIMPLE_TRY_FINALLY); local
797 return try_stmt;
895 gimple *try_stmt = make_data_region_try_statement (loc, body); local
896 gimple_omp_set_body (inner_data_region, try_stmt);
1248 gimple *try_stmt = gsi_stmt (gsi); local
1249 inner_cleanup = gimple_try_cleanup (try_stmt);
1250 gimple *try_body = gimple_try_eval (try_stmt);
1550 gimple *try_stmt = make_data_region_try_statement (loc, body); local
1551 gimple_omp_set_body (data_region, try_stmt);
tree-eh.cc 1039 gtry *try_stmt = gimple_build_try (finally, local
1042 finally = lower_eh_must_not_throw (outer_state, try_stmt);
2093 gtry *try_stmt = as_a <gtry *> (stmt); local
2094 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2095 replace = lower_try_finally (state, try_stmt);
2098 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt));
2101 replace = gimple_try_eval (try_stmt);
2108 replace = lower_catch (state, try_stmt);
2111 replace = lower_eh_filter (state, try_stmt);
2114 replace = lower_eh_must_not_throw (state, try_stmt);
    [all...]
gimple.h 4400 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;
4449 GIMPLE_TRY TRY_STMT. */
4452 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4454 try_stmt->eval = eval;
4459 body for GIMPLE_TRY TRY_STMT. */
4462 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4464 try_stmt->cleanup = cleanup
    [all...]
gimple.cc 1976 gtry *try_stmt = as_a <gtry *> (stmt);
1978 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt));
1980 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt));
gimplify.cc 2232 gtry *try_stmt = as_a <gtry *> (stmt);
2233 stmt = gimple_seq_last_nondebug_stmt (gimple_try_eval (try_stmt));
2238 && gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2240 stmt = gimple_seq_last_nondebug_stmt (gimple_try_cleanup (try_stmt));
2230 gtry *try_stmt = as_a <gtry *> (stmt); local

Completed in 44 milliseconds