Searched refs:cur_try_context (Results 1 - 4 of 4) sorted by relevance

/haiku-buildtools/gcc/gcc/objc/
H A Dobjc-next-runtime-abi-01.c2714 struct objc_try_context *cur_try_context = *ctcp; local
2719 cur_try_context->stack_decl = stack_decl;
2722 cur_try_context->rethrow_decl = rethrow_decl;
2727 SET_EXPR_LOCATION (bind, cur_try_context->try_locus);
2733 SET_EXPR_LOCATION (t, cur_try_context->try_locus);
2738 SET_EXPR_LOCATION (try_fin, cur_try_context->try_locus);
2743 if (cur_try_context->catch_list)
2759 SET_EXPR_LOCATION (catch_seq, cur_try_context->end_try_locus);
2763 SET_EXPR_LOCATION (t, cur_try_context->try_locus);
2765 COND_EXPR_ELSE (t) = cur_try_context
2891 objc_build_exc_ptr(struct objc_try_context **cur_try_context) argument
2913 begin_catch(struct objc_try_context **cur_try_context, tree type, tree decl, tree compound, bool ellipsis ATTRIBUTE_UNUSED) argument
2930 finish_catch(struct objc_try_context **cur_try_context, tree current_catch) argument
2936 finish_try_stmt(struct objc_try_context **cur_try_context) argument
[all...]
H A Dobjc-gnu-runtime-abi-01.c2245 begin_catch (struct objc_try_context **cur_try_context, tree type, argument
2255 (*cur_try_context)->current_catch = t;
2258 t = objc_build_exc_ptr (cur_try_context);
2264 finish_catch (struct objc_try_context **cur_try_context, tree current_catch) argument
2266 append_to_statement_list (current_catch, &((*cur_try_context)->catch_list));
2270 finish_try_stmt (struct objc_try_context **cur_try_context) argument
2272 struct objc_try_context *c = *cur_try_context;
H A Dobjc-next-runtime-abi-02.c3663 static tree begin_catch (struct objc_try_context **cur_try_context, tree type, argument
3674 (*cur_try_context)->current_catch = t;
3677 t = objc_build_exc_ptr (cur_try_context);
3698 finish_catch (struct objc_try_context **cur_try_context, tree curr_catch) argument
3702 location_t loc = (*cur_try_context)->try_locus;
3724 ct = *cur_try_context;
3729 *cur_try_context = ct->outer;
3732 append_to_statement_list (curr_catch, &((*cur_try_context)->catch_list));
3736 finish_try_stmt (struct objc_try_context **cur_try_context) argument
3738 struct objc_try_context *c = *cur_try_context;
[all...]
H A Dobjc-act.c4155 static struct objc_try_context *cur_try_context; variable in typeref:struct:objc_try_context
4164 c->outer = cur_try_context;
4168 cur_try_context = c;
4271 if (cur_try_context->catch_list)
4275 tree_stmt_iterator i = tsi_start (cur_try_context->catch_list);
4294 t = (*runtime.begin_catch) (&cur_try_context, type, decl, compound, ellipsis);
4304 tree c = cur_try_context->current_catch;
4305 cur_try_context->current_catch = NULL;
4306 cur_try_context->end_catch_locus = input_location;
4310 (*runtime.finish_catch) (&cur_try_context,
[all...]

Completed in 198 milliseconds