Home
last modified time | relevance | path

Searched refs:eh_else_stmt (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dgimple-low.cc305 geh_else *eh_else_stmt = as_a <geh_else *> (stmt); in lower_stmt() local
306 lower_sequence (gimple_eh_else_n_body_ptr (eh_else_stmt), data); in lower_stmt()
307 lower_sequence (gimple_eh_else_e_body_ptr (eh_else_stmt), data); in lower_stmt()
665 geh_else *eh_else_stmt = as_a <geh_else *> (stmt); in gimple_stmt_may_fallthru() local
666 return (gimple_seq_may_fallthru (gimple_eh_else_n_body (eh_else_stmt)) in gimple_stmt_may_fallthru()
668 eh_else_stmt))); in gimple_stmt_may_fallthru()
Dgimple-walk.cc652 geh_else *eh_else_stmt = as_a <geh_else *> (stmt); in walk_gimple_stmt() local
653 ret = walk_gimple_seq_mod (gimple_eh_else_n_body_ptr (eh_else_stmt), in walk_gimple_stmt()
657 ret = walk_gimple_seq_mod (gimple_eh_else_e_body_ptr (eh_else_stmt), in walk_gimple_stmt()
Dgimple.h4324 gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
4326 return &eh_else_stmt->n_body;
4330 gimple_eh_else_n_body (const geh_else *eh_else_stmt)
4332 return *gimple_eh_else_n_body_ptr (const_cast <geh_else *> (eh_else_stmt));
4336 gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
4338 return &eh_else_stmt->e_body;
4342 gimple_eh_else_e_body (const geh_else *eh_else_stmt)
4344 return *gimple_eh_else_e_body_ptr (const_cast <geh_else *> (eh_else_stmt));
4348 gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
4350 eh_else_stmt->n_body = seq;
[all …]
Dtree-eh.cc272 geh_else *eh_else_stmt = as_a <geh_else *> (stmt); in collect_finally_tree() local
273 collect_finally_tree_1 (gimple_eh_else_n_body (eh_else_stmt), region); in collect_finally_tree()
274 collect_finally_tree_1 (gimple_eh_else_e_body (eh_else_stmt), region); in collect_finally_tree()
538 geh_else *eh_else_stmt = as_a <geh_else *> (stmt); in replace_goto_queue_1() local
539 replace_goto_queue_stmt_list (gimple_eh_else_n_body_ptr (eh_else_stmt), in replace_goto_queue_1()
541 replace_goto_queue_stmt_list (gimple_eh_else_e_body_ptr (eh_else_stmt), in replace_goto_queue_1()
3260 geh_else *eh_else_stmt = as_a <geh_else *> (one); in refactor_eh_r() local
3261 refactor_eh_r (gimple_eh_else_n_body (eh_else_stmt)); in refactor_eh_r()
3262 refactor_eh_r (gimple_eh_else_e_body (eh_else_stmt)); in refactor_eh_r()
Dgimple.cc1965 geh_else *eh_else_stmt = as_a <geh_else *> (stmt); in gimple_copy() local
1967 new_seq = gimple_seq_copy (gimple_eh_else_n_body (eh_else_stmt)); in gimple_copy()
1969 new_seq = gimple_seq_copy (gimple_eh_else_e_body (eh_else_stmt)); in gimple_copy()