Home
last modified time | relevance | path

Searched refs:void_type_node (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-gimplify.cc165 append_to_statement_list (build1 (LABEL_EXPR, void_type_node, label), in finish_bc_block()
254 t = build1_loc (start_locus, GOTO_EXPR, void_type_node, in genericize_c_loop()
262 tree top = build1 (LABEL_EXPR, void_type_node, in genericize_c_loop()
268 exit = build1 (GOTO_EXPR, void_type_node, LABEL_EXPR_LABEL (top)); in genericize_c_loop()
279 entry = build1 (LABEL_EXPR, void_type_node, in genericize_c_loop()
281 t = build1_loc (start_locus, GOTO_EXPR, void_type_node, in genericize_c_loop()
285 t = build1_loc (start_locus, GOTO_EXPR, void_type_node, in genericize_c_loop()
290 t = build1 (GOTO_EXPR, void_type_node, get_bc_label (bc_break)); in genericize_c_loop()
292 COND_EXPR, void_type_node, cond, exit, t); in genericize_c_loop()
312 tree d = build0 (DEBUG_BEGIN_STMT, void_type_node); in genericize_c_loop()
[all …]
H A Dc-ubsan.cc135 x = fold_build3 (COND_EXPR, void_type_node, x, xt, void_node); in ubsan_instrument_division()
138 t = fold_build3 (COND_EXPR, void_type_node, t, tt, x ? x : void_node); in ubsan_instrument_division()
267 else_t = fold_build3 (COND_EXPR, void_type_node, else_t, in ubsan_instrument_shift()
271 t = fold_build3 (COND_EXPR, void_type_node, t, tt, else_t); in ubsan_instrument_shift()
300 t = fold_build3 (COND_EXPR, void_type_node, t, tt, void_node); in ubsan_instrument_vla()
389 void_type_node, 3, zero_with_type, in ubsan_instrument_bounds()
497 = build_call_expr_internal_loc (loc, IFN_UBSAN_NULL, void_type_node, in ubsan_maybe_instrument_reference_or_call()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/brig/brigfrontend/
H A Dbrig-function-handler.cc94 tree bind_expr = build3 (BIND_EXPR, void_type_node, NULL, stmt_list, NULL); in operator ()()
100 = build_qualified_type (build_pointer_type (void_type_node), in operator ()()
111 (build_qualified_type (void_type_node, in operator ()()
130 build_function_type_list (void_type_node, in operator ()()
138 = build_decl (UNKNOWN_LOCATION, RESULT_DECL, NULL_TREE, void_type_node); in operator ()()
183 tree ret_type = void_type_node; in operator ()()
216 void_type_node); in operator ()()
229 void_type_node); in operator ()()
369 if (ret_value != NULL_TREE && TREE_TYPE (ret_value) != void_type_node) in operator ()()
397 if (ret_value != NULL_TREE && TREE_TYPE (ret_value) != void_type_node) in operator ()()
H A Dbrig-branch-inst-handler.cc109 tree ret_val_type = void_type_node; in operator ()()
183 = build1 (GOTO_EXPR, void_type_node, TREE_VEC_ELT (cases, 0)); in operator ()()
195 = build1 (GOTO_EXPR, void_type_node, TREE_VEC_ELT (cases, c)); in operator ()()
203 tree target_goto = build1 (GOTO_EXPR, void_type_node, operands[1]); in operator ()()
206 = build3 (COND_EXPR, void_type_node, condition, target_goto, NULL_TREE); in operator ()()
H A Dbrig-function.cc110 name_identifier, void_type_node); in label()
475 void_type_node, uint32_type_node, in add_wi_loop()
508 tree target_goto = build1 (GOTO_EXPR, void_type_node, loop_body_label); in add_wi_loop()
510 = build3 (COND_EXPR, void_type_node, condition, target_goto, NULL_TREE); in add_wi_loop()
659 = build_qualified_type (build_pointer_type (void_type_node), in emit_launcher_and_metadata()
666 build_function_type_list (void_type_node, restrict_void_ptr, in emit_launcher_and_metadata()
693 = build_decl (UNKNOWN_LOCATION, RESULT_DECL, NULL_TREE, void_type_node); in emit_launcher_and_metadata()
703 tree bind_expr = build3 (BIND_EXPR, void_type_node, NULL, stmt_list, NULL); in emit_launcher_and_metadata()
733 4, void_type_node, in emit_launcher_and_metadata()
740 4, void_type_node, in emit_launcher_and_metadata()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dexcept.c56 tmp = build_function_type_list (void_type_node, NULL_TREE); in init_exception_processing()
65 tmp = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE); in init_exception_processing()
296 = declare_library_fn ("__cxa_end_catch", void_type_node, in do_end_catch()
322 tree type = body ? TREE_TYPE (body) : void_type_node; in build_must_not_throw_expr()
590 void_type_node, ptr_type_node, in do_free_exception()
618 cleanup = build2 (MUST_NOT_THROW_EXPR, void_type_node, cleanup, in wrap_cleanups_r()
639 exp = build_min (THROW_EXPR, void_type_node, exp); in build_throw()
669 tmp = build_function_type_list (void_type_node, in build_throw()
684 fntype = build_function_type_list (void_type_node, in build_throw()
689 else if (!verify_library_fn (throw_fn, name, void_type_node, in build_throw()
[all …]
H A Dcp-gimplify.c100 append_to_statement_list (build1 (LABEL_EXPR, void_type_node, label), in finish_bc_block()
128 *stmt_p = build2 (TRY_CATCH_EXPR, void_type_node, body, cleanup); in genericize_try_block()
140 *stmt_p = build2 (CATCH_EXPR, void_type_node, type, body); in genericize_catch_block()
152 t = build2 (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE); in build_gimple_eh_filter_tree()
155 t = build2 (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t); in build_gimple_eh_filter_tree()
237 stmt = build3 (COND_EXPR, void_type_node, cond, then_, else_); in genericize_if_stmt()
273 debug_begin = build0 (DEBUG_BEGIN_STMT, void_type_node); in genericize_cp_loop()
282 exit = build1_loc (cloc, GOTO_EXPR, void_type_node, in genericize_cp_loop()
284 exit = fold_build3_loc (cloc, COND_EXPR, void_type_node, cond, in genericize_cp_loop()
300 tree d = build0 (DEBUG_BEGIN_STMT, void_type_node); in genericize_cp_loop()
[all …]
H A Dinit.c826 if (init == void_type_node) in perform_member_init()
1486 COND_EXPR, void_type_node, in expand_cleanup_for_base()
1812 if (init && init != void_type_node in build_aggr_init()
1922 TREE_TYPE (init) = void_type_node; in expand_default_init()
1960 complete = fold_build_cleanup_point_expr (void_type_node, complete); in expand_default_init()
1965 base = fold_build_cleanup_point_expr (void_type_node, base); in expand_default_init()
2055 init = void_type_node; in expand_aggr_init_1()
2060 if (init == void_type_node) in expand_aggr_init_1()
3696 init_expr = build2 (TRY_CATCH_EXPR, void_type_node, in build_new_1()
3724 = build3 (COND_EXPR, void_type_node, sentry, in build_new_1()
[all …]
H A Dcoroutines.cc1035 if (same_type_p (susp_return_type, void_type_node)) in build_co_await()
1302 expr = build2_loc (kw, CO_RETURN_EXPR, void_type_node, in finish_co_return_stmt()
1378 expr = build2_loc (kw, CO_RETURN_EXPR, void_type_node, expr, co_ret_call); in finish_co_return_stmt()
1496 tree t = build1 (CONVERT_EXPR, void_type_node, expr); in coro_build_cvt_void_expr_stmt()
1506 tree lab = build_decl (loc, LABEL_DECL, NULL_TREE, void_type_node); in create_anon_label_with_ctx()
1692 tree go_on = build1_loc (loc, GOTO_EXPR, void_type_node, resume_label); in expand_one_await_expression()
1693 r = build3_loc (loc, COND_EXPR, void_type_node, suspend, go_on, in expand_one_await_expression()
1701 r = build1 (CONVERT_EXPR, void_type_node, r); in expand_one_await_expression()
1729 r = build_call_expr_internal_loc (loc, IFN_CO_SUSPN, void_type_node, 1, in expand_one_await_expression()
1736 r = build1_loc (loc, GOTO_EXPR, void_type_node, resume_label); in expand_one_await_expression()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dexcept.cc55 tmp = build_function_type_list (void_type_node, NULL_TREE); in init_exception_processing()
64 tmp = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE); in init_exception_processing()
254 = declare_library_fn ("__cxa_end_catch", void_type_node, in do_end_catch()
280 tree type = body ? TREE_TYPE (body) : void_type_node; in build_must_not_throw_expr()
567 void_type_node, ptr_type_node, in do_free_exception()
595 cleanup = build2 (MUST_NOT_THROW_EXPR, void_type_node, cleanup, in wrap_cleanups_r()
616 exp = build_min (THROW_EXPR, void_type_node, exp); in build_throw()
645 tree tmp = build_function_type_list (void_type_node, in build_throw()
656 void_type_node, 3, args); in build_throw()
661 void_type_node, 3, args); in build_throw()
[all …]
H A Dinit.cc1020 if (init == void_type_node) in perform_member_init()
1712 COND_EXPR, void_type_node, in expand_cleanup_for_base()
2153 TREE_TYPE (init) = void_type_node; in expand_default_init()
2191 complete = fold_build_cleanup_point_expr (void_type_node, complete); in expand_default_init()
2196 base = fold_build_cleanup_point_expr (void_type_node, base); in expand_default_init()
2292 init = void_type_node; in expand_aggr_init_1()
2297 if (init == void_type_node) in expand_aggr_init_1()
2352 return (init && init != void_type_node in is_copy_initialization()
3793 = build3 (COND_EXPR, void_type_node, sentry, in build_new_1()
3800 = build2 (COMPOUND_EXPR, void_type_node, begin, in build_new_1()
[all …]
H A Dcoroutines.cc1062 if (same_type_p (susp_return_type, void_type_node)) in build_co_await()
1332 expr = build2_loc (kw, CO_RETURN_EXPR, void_type_node, in finish_co_return_stmt()
1394 expr = build2_loc (kw, CO_RETURN_EXPR, void_type_node, expr, co_ret_call); in finish_co_return_stmt()
1512 tree t = build1 (CONVERT_EXPR, void_type_node, expr); in coro_build_cvt_void_expr_stmt()
1545 tree lab = build_decl (loc, LABEL_DECL, NULL_TREE, void_type_node); in create_anon_label_with_ctx()
1731 tree go_on = build1_loc (loc, GOTO_EXPR, void_type_node, resume_label); in expand_one_await_expression()
1732 r = build3_loc (loc, COND_EXPR, void_type_node, suspend, go_on, in expand_one_await_expression()
1740 r = build1 (CONVERT_EXPR, void_type_node, r); in expand_one_await_expression()
1768 r = build_call_expr_internal_loc (loc, IFN_CO_SUSPN, void_type_node, 1, in expand_one_await_expression()
1775 r = build1_loc (loc, GOTO_EXPR, void_type_node, resume_label); in expand_one_await_expression()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dtrans-decl.c291 LABEL_DECL, label_id, void_type_node); in gfc_build_label_decl()
2407 type = void_type_node; in build_function_decl()
2432 type = void_type_node; in build_function_decl()
2839 || TREE_VALUE (hidden_typelist) == void_type_node); in create_function_arglist()
3001 != void_type_node) in build_entry_thunks()
3017 void_type_node, tmp, DECL_SAVED_TREE (thunk_fndecl), in build_entry_thunks()
3330 void_type_node, 6, gfc_charlen_type_node, pchar1_type_node, in gfc_build_intrinsic_function_decls()
3364 void_type_node, 4, build_pointer_type (gfc_charlen_type_node), in gfc_build_intrinsic_function_decls()
3370 void_type_node, -4, build_pointer_type (gfc_charlen_type_node), in gfc_build_intrinsic_function_decls()
3376 void_type_node, 3, pchar1_type_node, gfc_charlen_type_node, in gfc_build_intrinsic_function_decls()
[all …]
H A Dtrans-io.c332 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
336 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
340 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
344 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
348 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_charlen_type_node); in gfc_build_io_library_fndecls()
352 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_charlen_type_node); in gfc_build_io_library_fndecls()
356 void_type_node, 4, dt_parm_type, pvoid_type_node, in gfc_build_io_library_fndecls()
362 void_type_node, 4, dt_parm_type, pvoid_type_node, in gfc_build_io_library_fndecls()
367 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
371 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
[all …]
H A Dtrans.c166 tmp = fold_build2_loc (loc, MODIFY_EXPR, void_type_node, lhs, in gfc_add_modify_loc()
609 tmp = fold_build3_loc (gfc_get_location (where), COND_EXPR, void_type_node, in gfc_trans_runtime_check()
666 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_call_malloc()
751 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_allocate_using_malloc()
807 tmp = build5_loc (input_location, ASM_EXPR, void_type_node, in gfc_allocate_using_caf_lib()
931 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_allocate_allocatable()
970 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, null_mem, in gfc_allocate_allocatable()
1182 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp, in gfc_add_comp_finalizer_call()
1290 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_add_finalizer_call()
1426 error = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_deallocate_with_status()
[all …]
H A Dtrans-openmp.c552 then_b = build3_loc (input_location, COND_EXPR, void_type_node, in gfc_walk_alloc_comps()
682 void_type_node, cond, then_b, in gfc_omp_clause_default_ctor()
769 gfc_add_expr_to_block (&cond_block, fold_convert (void_type_node, call)); in gfc_omp_clause_copy_ctor()
792 void_type_node, cond, then_b, else_b)); in gfc_omp_clause_copy_ctor()
847 tem = build3_loc (input_location, COND_EXPR, void_type_node, cond, in gfc_omp_clause_assign_op()
924 void_type_node, in gfc_omp_clause_assign_op()
941 void_type_node, unshare_expr (cond), in gfc_omp_clause_assign_op()
951 gfc_add_expr_to_block (&cond_block, fold_convert (void_type_node, call)); in gfc_omp_clause_assign_op()
985 void_type_node, cond, in gfc_omp_clause_assign_op()
1187 tem = build3_loc (input_location, COND_EXPR, void_type_node, cond, in gfc_omp_clause_dtor()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-decl.cc288 LABEL_DECL, label_id, void_type_node); in gfc_build_label_decl()
2431 type = void_type_node; in build_function_decl()
2456 type = void_type_node; in build_function_decl()
2873 || TREE_VALUE (hidden_typelist) == void_type_node); in create_function_arglist()
3035 != void_type_node) in build_entry_thunks()
3051 void_type_node, tmp, DECL_SAVED_TREE (thunk_fndecl), in build_entry_thunks()
3375 void_type_node, 6, gfc_charlen_type_node, pchar1_type_node, in gfc_build_intrinsic_function_decls()
3409 void_type_node, 4, build_pointer_type (gfc_charlen_type_node), in gfc_build_intrinsic_function_decls()
3415 void_type_node, -4, build_pointer_type (gfc_charlen_type_node), in gfc_build_intrinsic_function_decls()
3421 void_type_node, 3, pchar1_type_node, gfc_charlen_type_node, in gfc_build_intrinsic_function_decls()
[all …]
H A Dtrans-io.cc332 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
336 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
340 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
344 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
348 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_charlen_type_node); in gfc_build_io_library_fndecls()
352 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_charlen_type_node); in gfc_build_io_library_fndecls()
356 void_type_node, 4, dt_parm_type, pvoid_type_node, in gfc_build_io_library_fndecls()
362 void_type_node, 4, dt_parm_type, pvoid_type_node, in gfc_build_io_library_fndecls()
367 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
371 void_type_node, 3, dt_parm_type, pvoid_type_node, gfc_int4_type_node); in gfc_build_io_library_fndecls()
[all …]
H A Dtrans.cc210 tmp = fold_build2_loc (loc, MODIFY_EXPR, void_type_node, lhs, in gfc_add_modify_loc()
682 tmp = fold_build3_loc (gfc_get_location (where), COND_EXPR, void_type_node, in gfc_trans_runtime_check()
739 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_call_malloc()
824 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_allocate_using_malloc()
880 tmp = build5_loc (input_location, ASM_EXPR, void_type_node, in gfc_allocate_using_caf_lib()
1004 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_allocate_allocatable()
1043 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, null_mem, in gfc_allocate_allocatable()
1255 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp, in gfc_add_comp_finalizer_call()
1363 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_add_finalizer_call()
1499 error = fold_build3_loc (input_location, COND_EXPR, void_type_node, in gfc_deallocate_with_status()
[all …]
H A Dtrans-openmp.cc641 then_b = build3_loc (input_location, COND_EXPR, void_type_node, in gfc_walk_alloc_comps()
786 void_type_node, cond, then_b, in gfc_omp_clause_default_ctor()
883 void_type_node, cond, in gfc_omp_clause_copy_ctor()
885 fold_build2_loc (input_location, MODIFY_EXPR, void_type_node, in gfc_omp_clause_copy_ctor()
954 gfc_add_expr_to_block (&cond_block, fold_convert (void_type_node, call)); in gfc_omp_clause_copy_ctor()
977 void_type_node, cond, then_b, else_b)); in gfc_omp_clause_copy_ctor()
1032 tem = build3_loc (input_location, COND_EXPR, void_type_node, cond, in gfc_omp_clause_assign_op()
1109 void_type_node, in gfc_omp_clause_assign_op()
1126 void_type_node, unshare_expr (cond), in gfc_omp_clause_assign_op()
1136 gfc_add_expr_to_block (&cond_block, fold_convert (void_type_node, call)); in gfc_omp_clause_assign_op()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dtoir.cc229 TREE_TYPE (t) = void_type_node; in add_stmt()
299 tree bind = build3 (BIND_EXPR, void_type_node, in end_scope()
355 add_stmt (build1 (LABEL_EXPR, void_type_node, label)); in do_label()
362 add_stmt (fold_build1 (GOTO_EXPR, void_type_node, label)); in do_jump()
448 name, void_type_node); in lookup_label()
482 NULL_TREE, void_type_node); in lookup_bc_label()
646 build1 (GOTO_EXPR, void_type_node, lbreak))); in visit()
650 add_stmt (build1 (LOOP_EXPR, void_type_node, body)); in visit()
671 build1 (GOTO_EXPR, void_type_node, in visit()
690 add_stmt (build1 (LOOP_EXPR, void_type_node, body)); in visit()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dtoir.cc228 TREE_TYPE (t) = void_type_node; in add_stmt()
298 tree bind = build3 (BIND_EXPR, void_type_node, in end_scope()
354 add_stmt (build1 (LABEL_EXPR, void_type_node, label)); in do_label()
361 add_stmt (fold_build1 (GOTO_EXPR, void_type_node, label)); in do_jump()
459 name, void_type_node); in lookup_label()
493 NULL_TREE, void_type_node); in lookup_bc_label()
657 build1 (GOTO_EXPR, void_type_node, lbreak))); in visit()
661 add_stmt (build1 (LOOP_EXPR, void_type_node, body)); in visit()
682 build1 (GOTO_EXPR, void_type_node, in visit()
701 add_stmt (build1 (LOOP_EXPR, void_type_node, body)); in visit()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-ubsan.c111 t = fold_build3 (COND_EXPR, void_type_node, t, tt, void_node); in ubsan_instrument_division()
240 else_t = fold_build3 (COND_EXPR, void_type_node, else_t, in ubsan_instrument_shift()
244 t = fold_build3 (COND_EXPR, void_type_node, t, tt, else_t); in ubsan_instrument_shift()
273 t = fold_build3 (COND_EXPR, void_type_node, t, tt, void_node); in ubsan_instrument_vla()
362 void_type_node, 3, zero_with_type, in ubsan_instrument_bounds()
470 = build_call_expr_internal_loc (loc, IFN_UBSAN_NULL, void_type_node, in ubsan_maybe_instrument_reference_or_call()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/loongarch/
H A Dloongarch-builtins.cc196 #define LARCH_ATYPE_VOID void_type_node
398 *hold = build2 (COMPOUND_EXPR, void_type_node, hold_all, set_fcsr_hold_call); in loongarch_atomic_assign_expand_fenv()
407 *update = build2 (COMPOUND_EXPR, void_type_node, *update, in loongarch_atomic_assign_expand_fenv()
414 *update = build2 (COMPOUND_EXPR, void_type_node, *update, in loongarch_atomic_assign_expand_fenv()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dasan.cc797 void_type_node, untagged_addr, tag, new_size); in handle_builtin_alloca()
3374 tree BT_FN_VOID = build_function_type_list (void_type_node, NULL_TREE); in initialize_sanitizer_builtins()
3376 = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE); in initialize_sanitizer_builtins()
3378 = build_function_type_list (void_type_node, const_ptr_type_node, NULL_TREE); in initialize_sanitizer_builtins()
3380 = build_function_type_list (void_type_node, ptr_type_node, in initialize_sanitizer_builtins()
3383 = build_function_type_list (void_type_node, ptr_type_node, in initialize_sanitizer_builtins()
3386 = build_function_type_list (void_type_node, ptr_type_node, in initialize_sanitizer_builtins()
3389 = build_function_type_list (void_type_node, integer_type_node, NULL_TREE); in initialize_sanitizer_builtins()
3395 = build_function_type_list (void_type_node, unsigned_char_type_node, in initialize_sanitizer_builtins()
3398 = build_function_type_list (void_type_node, uint16_type_node, in initialize_sanitizer_builtins()
[all …]

12345678910>>...15