Home
last modified time | relevance | path

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

/Linux-v4.19/scripts/gcc-plugins/
Dsancov_plugin.c44 gcall *gcall; in sancov_execute() local
51 gcall = as_a_gcall(gimple_build_call(sancov_fndecl, 0)); in sancov_execute()
52 gimple_set_location(gcall, gimple_location(stmt)); in sancov_execute()
53 gsi_insert_before(&gsi, gcall, GSI_SAME_STMT); in sancov_execute()
Dgcc-common.h452 typedef union gimple_statement_d gcall; typedef
479 static inline gcall *as_a_gcall(gimple stmt) in as_a_gcall()
484 static inline const gcall *as_a_const_gcall(const_gimple stmt) in as_a_const_gcall()
585 typedef struct gimple_statement_call gcall; typedef
612 static inline gcall *as_a_gcall(gimple stmt) in as_a_gcall()
614 return as_a<gcall>(stmt); in as_a_gcall()
617 static inline const gcall *as_a_const_gcall(const_gimple stmt) in as_a_const_gcall()
619 return as_a<const gcall>(stmt); in as_a_const_gcall()
880 static inline gcall *as_a_gcall(gimple stmt) in as_a_gcall()
882 return as_a<gcall *>(stmt); in as_a_gcall()
[all …]
Dlatent_entropy_plugin.c394 gcall *call; in handle_tail_calls()