Lines Matching refs:sancov_fndecl
26 tree sancov_fndecl; variable
51 gcall = as_a_gcall(gimple_build_call(sancov_fndecl, 0)); in sancov_execute()
70 sancov_fndecl = build_fn_decl("__sanitizer_cov_trace_pc", BT_FN_VOID); in sancov_start_unit()
72 DECL_ASSEMBLER_NAME(sancov_fndecl); in sancov_start_unit()
73 TREE_PUBLIC(sancov_fndecl) = 1; in sancov_start_unit()
74 DECL_EXTERNAL(sancov_fndecl) = 1; in sancov_start_unit()
75 DECL_ARTIFICIAL(sancov_fndecl) = 1; in sancov_start_unit()
76 DECL_PRESERVE_P(sancov_fndecl) = 1; in sancov_start_unit()
77 DECL_UNINLINABLE(sancov_fndecl) = 1; in sancov_start_unit()
78 TREE_USED(sancov_fndecl) = 1; in sancov_start_unit()
81 decl_attributes(&sancov_fndecl, nothrow_attr, 0); in sancov_start_unit()
82 gcc_assert(TREE_NOTHROW(sancov_fndecl)); in sancov_start_unit()
84 decl_attributes(&sancov_fndecl, leaf_attr, 0); in sancov_start_unit()
97 .base = &sancov_fndecl, in plugin_init()
99 .stride = sizeof(sancov_fndecl), in plugin_init()