Home
last modified time | relevance | path

Searched refs:body (Results 1 – 3 of 3) sorted by relevance

/scripts/gcc-plugins/
Dstackleak_plugin.c213 rtx body; in stackleak_cleanup_execute() local
226 body = PATTERN(insn); in stackleak_cleanup_execute()
228 if (GET_CODE(body) == PARALLEL) in stackleak_cleanup_execute()
229 body = XVECEXP(body, 0, 0); in stackleak_cleanup_execute()
231 if (GET_CODE(body) != CALL) in stackleak_cleanup_execute()
239 body = XEXP(body, 0); in stackleak_cleanup_execute()
240 if (GET_CODE(body) != MEM) in stackleak_cleanup_execute()
243 body = XEXP(body, 0); in stackleak_cleanup_execute()
244 if (GET_CODE(body) != SYMBOL_REF) in stackleak_cleanup_execute()
247 if (SYMBOL_REF_DECL(body) != track_function_decl) in stackleak_cleanup_execute()
Darm_ssp_per_task_plugin.c15 rtx body; in arm_pertask_ssp_rtl_execute() local
23 body = PATTERN(insn); in arm_pertask_ssp_rtl_execute()
24 if (GET_CODE(body) != SET || in arm_pertask_ssp_rtl_execute()
25 GET_CODE(SET_SRC(body)) != SYMBOL_REF) in arm_pertask_ssp_rtl_execute()
27 sym = XSTR(SET_SRC(body), 0); in arm_pertask_ssp_rtl_execute()
45 SET_SRC(body) = gen_rtx_PLUS(Pmode, masked_sp, in arm_pertask_ssp_rtl_execute()
/scripts/genksyms/
Dparse.y45 struct string_list **body, in record_compound() argument
48 struct string_list *b = *body, *i = *ident, *r; in record_compound()
53 remove_list(body, ident); in record_compound()
57 r->next = (*keyw)->next; *body = r; (*keyw)->next = NULL; in record_compound()