Lines Matching refs:catch_stmt
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. */
4218 gimple_catch_handler (const gcatch *catch_stmt)
4220 return *gimple_catch_handler_ptr (const_cast <gcatch *> (catch_stmt));
4224 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
4227 gimple_catch_set_types (gcatch *catch_stmt, tree t)
4229 catch_stmt->types = t;
4233 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
4236 gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
4238 catch_stmt->handler = handler;