Home
last modified time | relevance | path

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

/scripts/gcc-plugins/
Dstackleak_plugin.c286 rtx body; in remove_stack_tracking_gcall() local
299 body = PATTERN(insn); in remove_stack_tracking_gcall()
301 if (GET_CODE(body) == PARALLEL) in remove_stack_tracking_gcall()
302 body = XVECEXP(body, 0, 0); in remove_stack_tracking_gcall()
304 if (GET_CODE(body) != CALL) in remove_stack_tracking_gcall()
312 body = XEXP(body, 0); in remove_stack_tracking_gcall()
313 if (GET_CODE(body) != MEM) in remove_stack_tracking_gcall()
316 body = XEXP(body, 0); in remove_stack_tracking_gcall()
317 if (GET_CODE(body) != SYMBOL_REF) in remove_stack_tracking_gcall()
320 if (SYMBOL_REF_DECL(body) != track_function_decl) in remove_stack_tracking_gcall()
[all …]
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()