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

  /src/external/gpl3/gcc/dist/gcc/
gimple.h 4250 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4253 gimple_catch_types (const gcatch *catch_stmt)
4255 return catch_stmt->types;
4259 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4262 gimple_catch_types_ptr (gcatch *catch_stmt)
4264 return &catch_stmt->types;
4269 the handler of GIMPLE_CATCH statement CATCH_STMT. */
4272 gimple_catch_handler_ptr (gcatch *catch_stmt)
4274 return &catch_stmt->handler;
4279 GIMPLE_CATCH statement CATCH_STMT. *
    [all...]
tree-eh.cc 1811 gcatch *catch_stmt; local
1814 catch_stmt = as_a <gcatch *> (gsi_stmt (gsi));
1816 catch_loc = gimple_location (catch_stmt);
1817 c = gen_eh_region_catch (try_region, gimple_catch_types (catch_stmt));
1819 handler = gimple_catch_handler (catch_stmt);
gimple.cc 2009 gcatch *catch_stmt = as_a <gcatch *> (stmt);
2011 new_seq = gimple_seq_copy (gimple_catch_handler (catch_stmt));
2013 t = unshare_expr (gimple_catch_types (catch_stmt));
tree-inline.cc 1595 gcatch *catch_stmt = as_a <gcatch *> (stmt); local
1596 s1 = remap_gimple_seq (gimple_catch_handler (catch_stmt), id);
1597 copy = gimple_build_catch (gimple_catch_types (catch_stmt), s1);
  /src/external/gpl3/gcc.old/dist/gcc/
gimple.h 4186 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4189 gimple_catch_types (const gcatch *catch_stmt)
4191 return catch_stmt->types;
4195 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4198 gimple_catch_types_ptr (gcatch *catch_stmt)
4200 return &catch_stmt->types;
4205 the handler of GIMPLE_CATCH statement CATCH_STMT. */
4208 gimple_catch_handler_ptr (gcatch *catch_stmt)
4210 return &catch_stmt->handler;
4215 GIMPLE_CATCH statement CATCH_STMT. *
    [all...]
tree-eh.cc 1810 gcatch *catch_stmt; local
1813 catch_stmt = as_a <gcatch *> (gsi_stmt (gsi));
1815 catch_loc = gimple_location (catch_stmt);
1816 c = gen_eh_region_catch (try_region, gimple_catch_types (catch_stmt));
1818 handler = gimple_catch_handler (catch_stmt);
gimple.cc 1942 gcatch *catch_stmt = as_a <gcatch *> (stmt);
1944 new_seq = gimple_seq_copy (gimple_catch_handler (catch_stmt));
1946 t = unshare_expr (gimple_catch_types (catch_stmt));
tree-inline.cc 1597 gcatch *catch_stmt = as_a <gcatch *> (stmt); local
1598 s1 = remap_gimple_seq (gimple_catch_handler (catch_stmt), id);
1599 copy = gimple_build_catch (gimple_catch_types (catch_stmt), s1);

Completed in 32 milliseconds