Home
last modified time | relevance | path

Searched refs:boolean_type_node (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-ubsan.c58 t = fold_build2 (EQ_EXPR, boolean_type_node, in ubsan_instrument_division()
63 t = fold_build2 (EQ_EXPR, boolean_type_node, in ubsan_instrument_division()
76 tt = fold_build2 (EQ_EXPR, boolean_type_node, unshare_expr (op1), in ubsan_instrument_division()
78 x = fold_build2 (EQ_EXPR, boolean_type_node, op0, in ubsan_instrument_division()
80 x = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, x, tt); in ubsan_instrument_division()
81 t = fold_build2 (TRUTH_OR_EXPR, boolean_type_node, t, x); in ubsan_instrument_division()
136 t = fold_build2 (GT_EXPR, boolean_type_node, t, uprecm1); in ubsan_instrument_shift()
158 tt = fold_build2 (NE_EXPR, boolean_type_node, tt, in ubsan_instrument_shift()
172 tt = fold_build2 (GT_EXPR, boolean_type_node, tt, in ubsan_instrument_shift()
174 x = fold_build2 (LT_EXPR, boolean_type_node, unshare_expr (op0), in ubsan_instrument_shift()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-ubsan.cc58 t = fold_build2 (EQ_EXPR, boolean_type_node, in ubsan_instrument_division()
63 t = fold_build2 (EQ_EXPR, boolean_type_node, in ubsan_instrument_division()
75 tt = fold_build2 (EQ_EXPR, boolean_type_node, unshare_expr (op1), in ubsan_instrument_division()
77 x = fold_build2 (EQ_EXPR, boolean_type_node, op0, in ubsan_instrument_division()
79 x = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, x, tt); in ubsan_instrument_division()
90 t = fold_build2 (TRUTH_OR_EXPR, boolean_type_node, t, x); in ubsan_instrument_division()
163 t = fold_build2 (GT_EXPR, boolean_type_node, t, uprecm1); in ubsan_instrument_shift()
185 tt = fold_build2 (NE_EXPR, boolean_type_node, tt, in ubsan_instrument_shift()
199 tt = fold_build2 (GT_EXPR, boolean_type_node, tt, in ubsan_instrument_shift()
201 x = fold_build2 (LT_EXPR, boolean_type_node, unshare_expr (op0), in ubsan_instrument_shift()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-loop-niter.cc1069 cond = fold_build2 (GE_EXPR, boolean_type_node, iv->base, final); in number_of_iterations_ne()
1075 t = fold_build2 (GE_EXPR, boolean_type_node, t, iv->base); in number_of_iterations_ne()
1079 relaxed_cond = fold_build2 (GT_EXPR, boolean_type_node, t, in number_of_iterations_ne()
1086 cond = fold_build2 (LE_EXPR, boolean_type_node, iv->base, final); in number_of_iterations_ne()
1092 t = fold_build2 (LE_EXPR, boolean_type_node, t, iv->base); in number_of_iterations_ne()
1096 relaxed_cond = fold_build2 (LT_EXPR, boolean_type_node, t, in number_of_iterations_ne()
1131 assumption = fold_build2 (EQ_EXPR, boolean_type_node, in number_of_iterations_ne()
1134 niter->assumptions = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in number_of_iterations_ne()
1212 assumption = fold_build2 (LE_EXPR, boolean_type_node, in number_of_iterations_lt_to_ne()
1220 noloop = fold_build2 (GT_EXPR, boolean_type_node, in number_of_iterations_lt_to_ne()
[all …]
H A Dtree-ssa-ifcombine.cc435 boolean_type_node, t2, t); in ifcombine_ifandif()
520 t = fold_build2 (result_inv ? NE_EXPR : EQ_EXPR, boolean_type_node, t, in ifcombine_ifandif()
569 if (!(t = maybe_fold_and_comparisons (boolean_type_node, inner_cond_code, in ifcombine_ifandif()
590 boolean_type_node, in ifcombine_ifandif()
595 boolean_type_node, in ifcombine_ifandif()
599 TRUTH_AND_EXPR, boolean_type_node, t1, t2); in ifcombine_ifandif()
H A Dtree-vect-loop-manip.cc2863 guard_cond = fold_build2 (EQ_EXPR, boolean_type_node, in vect_do_peeling()
2964 guard_cond = fold_build2 (LT_EXPR, boolean_type_node, nitersm1, t); in vect_do_peeling()
3021 guard_cond = fold_build2 (EQ_EXPR, boolean_type_node, in vect_do_peeling()
3166 *cond_expr = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in vect_create_cond_for_niters_checks()
3179 *cond_expr = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in chain_cond_expr()
3295 part_cond_expr = fold_build2 (EQ_EXPR, boolean_type_node, in vect_create_cond_for_align_checks()
3316 tree part_cond_expr = fold_build2 (NE_EXPR, boolean_type_node, in vect_create_cond_for_unequal_addrs()
3342 tree part_cond_expr = fold_build2 (GE_EXPR, boolean_type_node, expr, in vect_create_cond_for_lower_bounds()
3435 cond_expr = fold_build2 (GE_EXPR, boolean_type_node, scalar_loop_iters, in vect_loop_versioning()
3440 tree expr = fold_build2 (GE_EXPR, boolean_type_node, scalar_loop_iters, in vect_loop_versioning()
[all …]
H A Dtree-ssa-loop-manip.cc1062 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in determine_exit_conditions()
1070 assum = fold_build2 (GE_EXPR, boolean_type_node, in determine_exit_conditions()
1074 assum = fold_build2 (LE_EXPR, boolean_type_node, in determine_exit_conditions()
1077 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
1080 assum = fold_build2 (cmp, boolean_type_node, base, bound); in determine_exit_conditions()
1081 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
H A Dtree-ssa-dom.cc288 tree cond = build2 (EQ_EXPR, boolean_type_node, in derive_equivalences()
318 tree cond = build2 (code, boolean_type_node, in derive_equivalences()
366 tree cond = build2 (code, boolean_type_node, in derive_equivalences()
541 tree cond = build2 (code, boolean_type_node, op0, op1); in record_edge_info()
565 tree cond = build2 (code, boolean_type_node, op0, op1); in record_edge_info()
1644 expr_type = boolean_type_node; in eliminate_redundant_computations()
2306 gimple_cond_code (stmt), boolean_type_node, in optimize_stmt()
H A Domp-expand.cc1852 t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts()
1880 && ((t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts()
2633 tree tem = fold_build2 (LT_EXPR, boolean_type_node, t, in expand_omp_for_init_vars()
3266 t = fold_build2 (fd->loops[i].cond_code, boolean_type_node, v, t); in extract_omp_for_update_vars()
3412 t1 = fold_build2_loc (loc, GE_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
3415 t1 = fold_build2_loc (loc, LT_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
3418 t2 = fold_build2_loc (loc, LT_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
3421 t2 = fold_build2_loc (loc, GE_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
3423 t = fold_build2_loc (loc, LT_EXPR, boolean_type_node, in expand_omp_ordered_sink()
3434 t = fold_build3_loc (loc, COND_EXPR, boolean_type_node, in expand_omp_ordered_sink()
[all …]
H A Dgimple-builder.cc40 ? boolean_type_node in get_expr_type()
H A Dvalue-range.cc2473 r0 = range_zero (boolean_type_node); in range_tests_misc()
2474 ASSERT_TRUE (r0 == int_range<1> (build_zero_cst (boolean_type_node), in range_tests_misc()
2475 build_zero_cst (boolean_type_node))); in range_tests_misc()
2477 ASSERT_TRUE (r0 == int_range<1> (build_one_cst (boolean_type_node), in range_tests_misc()
2478 build_one_cst (boolean_type_node))); in range_tests_misc()
2520 ASSERT_TRUE (wi::max_value (TYPE_PRECISION (boolean_type_node), in range_tests_misc()
2521 TYPE_SIGN (boolean_type_node)) in range_tests_misc()
2522 == wi::uhwi (1, TYPE_PRECISION (boolean_type_node))); in range_tests_misc()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-loop-niter.c1041 cond = fold_build2 (GE_EXPR, boolean_type_node, iv->base, final); in number_of_iterations_ne()
1047 t = fold_build2 (GE_EXPR, boolean_type_node, t, iv->base); in number_of_iterations_ne()
1055 relaxed_cond = fold_build2 (GT_EXPR, boolean_type_node, in number_of_iterations_ne()
1062 cond = fold_build2 (LE_EXPR, boolean_type_node, iv->base, final); in number_of_iterations_ne()
1068 t = fold_build2 (LE_EXPR, boolean_type_node, t, iv->base); in number_of_iterations_ne()
1076 relaxed_cond = fold_build2 (LT_EXPR, boolean_type_node, in number_of_iterations_ne()
1119 assumption = fold_build2 (EQ_EXPR, boolean_type_node, in number_of_iterations_ne()
1122 niter->assumptions = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in number_of_iterations_ne()
1200 assumption = fold_build2 (LE_EXPR, boolean_type_node, in number_of_iterations_lt_to_ne()
1208 noloop = fold_build2 (GT_EXPR, boolean_type_node, in number_of_iterations_lt_to_ne()
[all …]
H A Dtree-ssa-ifcombine.c429 boolean_type_node, t2, t); in ifcombine_ifandif()
508 t = fold_build2 (result_inv ? NE_EXPR : EQ_EXPR, boolean_type_node, t, in ifcombine_ifandif()
557 if (!(t = maybe_fold_and_comparisons (boolean_type_node, inner_cond_code, in ifcombine_ifandif()
577 boolean_type_node, in ifcombine_ifandif()
582 boolean_type_node, in ifcombine_ifandif()
586 TRUTH_AND_EXPR, boolean_type_node, t1, t2); in ifcombine_ifandif()
H A Dtree-vect-loop-manip.c2739 guard_cond = fold_build2 (EQ_EXPR, boolean_type_node, in vect_do_peeling()
2840 guard_cond = fold_build2 (LT_EXPR, boolean_type_node, nitersm1, t); in vect_do_peeling()
2897 guard_cond = fold_build2 (EQ_EXPR, boolean_type_node, in vect_do_peeling()
3029 *cond_expr = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in vect_create_cond_for_niters_checks()
3042 *cond_expr = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in chain_cond_expr()
3155 part_cond_expr = fold_build2 (EQ_EXPR, boolean_type_node, in vect_create_cond_for_align_checks()
3175 tree part_cond_expr = fold_build2 (NE_EXPR, boolean_type_node, in vect_create_cond_for_unequal_addrs()
3200 tree part_cond_expr = fold_build2 (GE_EXPR, boolean_type_node, expr, in vect_create_cond_for_lower_bounds()
3293 cond_expr = fold_build2 (GE_EXPR, boolean_type_node, scalar_loop_iters, in vect_loop_versioning()
3298 tree expr = fold_build2 (GE_EXPR, boolean_type_node, scalar_loop_iters, in vect_loop_versioning()
[all …]
H A Domp-expand.c1801 t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts()
1818 && ((t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts()
2084 t = fold_build2 (fd->loops[i].cond_code, boolean_type_node, v, t); in extract_omp_for_update_vars()
2229 t1 = fold_build2_loc (loc, GE_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
2232 t1 = fold_build2_loc (loc, LT_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
2235 t2 = fold_build2_loc (loc, LT_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
2238 t2 = fold_build2_loc (loc, GE_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
2240 t = fold_build2_loc (loc, LT_EXPR, boolean_type_node, in expand_omp_ordered_sink()
2251 t = fold_build3_loc (loc, COND_EXPR, boolean_type_node, in expand_omp_ordered_sink()
2257 t = fold_build2_loc (loc, GE_EXPR, boolean_type_node, a, in expand_omp_ordered_sink()
[all …]
H A Dtree-ssa-loop-manip.c1062 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in determine_exit_conditions()
1070 assum = fold_build2 (GE_EXPR, boolean_type_node, in determine_exit_conditions()
1074 assum = fold_build2 (LE_EXPR, boolean_type_node, in determine_exit_conditions()
1077 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
1080 assum = fold_build2 (cmp, boolean_type_node, base, bound); in determine_exit_conditions()
1081 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
H A Dtree-ssa-dom.c288 tree cond = build2 (EQ_EXPR, boolean_type_node, in derive_equivalences()
318 tree cond = build2 (code, boolean_type_node, in derive_equivalences()
366 tree cond = build2 (code, boolean_type_node, in derive_equivalences()
541 tree cond = build2 (code, boolean_type_node, op0, op1); in record_edge_info()
565 tree cond = build2 (code, boolean_type_node, op0, op1); in record_edge_info()
1609 expr_type = boolean_type_node; in eliminate_redundant_computations()
2200 gimple_cond_code (stmt), boolean_type_node, in optimize_stmt()
H A Dgimple-builder.c40 ? boolean_type_node in get_expr_type()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm-mve-builtins.cc97 if (eltype == boolean_type_node) in register_builtin_types()
142 if (scalar_types[type] == boolean_type_node in register_builtin_tuple_types()
H A Darm-mve-builtins.def25 DEF_MVE_TYPE (mve_pred16_t, boolean_type_node)
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dcoroutines.cc1064 else if (same_type_p (susp_return_type, boolean_type_node)) in build_co_await()
1688 ready_cond = cp_convert (boolean_type_node, ready_cond, in expand_one_await_expression()
1694 = build1_loc (loc, CLEANUP_POINT_EXPR, boolean_type_node, ready_cond); in expand_one_await_expression()
1728 suspend = build1_loc (loc, TRUTH_NOT_EXPR, boolean_type_node, suspend); in expand_one_await_expression()
1730 = build1_loc (loc, CLEANUP_POINT_EXPR, boolean_type_node, suspend); in expand_one_await_expression()
2955 boolean_type_node); in handle_nested_conditionals()
2964 tree set_flag = build2 (INIT_EXPR, boolean_type_node, in handle_nested_conditionals()
2967 = build2 (COMPOUND_EXPR, boolean_type_node, n->init, set_flag); in handle_nested_conditionals()
3299 cond = build1 (TRUTH_NOT_EXPR, boolean_type_node, cond); in expand_one_truth_if()
3301 = build3_loc (sloc, COND_EXPR, boolean_type_node, in expand_one_truth_if()
[all …]
H A Dexcept.cc291 conv = perform_implicit_conversion_flags (boolean_type_node, cond, in build_must_not_throw_expr()
1162 return build_min (NOEXCEPT_EXPR, boolean_type_node, expr); in finish_noexcept_expr()
1306 current_retval_sentinel = create_temporary_var (boolean_type_node); in maybe_set_retval_sentinel()
1311 return build2 (MODIFY_EXPR, boolean_type_node, in maybe_set_retval_sentinel()
1368 tree clear = build2 (MODIFY_EXPR, boolean_type_node, in maybe_splice_retval_cleanup()
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-decl.cc2714 boolean_type_node); in create_function_arglist()
2719 DECL_ARG_TYPE (tmp) = boolean_type_node; in create_function_arglist()
3730 void_type_node, 2, integer_type_node, boolean_type_node); in gfc_build_builtin_function_decls()
3737 boolean_type_node); in gfc_build_builtin_function_decls()
3743 void_type_node, 2, integer_type_node, boolean_type_node); in gfc_build_builtin_function_decls()
3750 boolean_type_node); in gfc_build_builtin_function_decls()
3879 boolean_type_node, pint_type); in gfc_build_builtin_function_decls()
3886 boolean_type_node, pint_type, pvoid_type_node); in gfc_build_builtin_function_decls()
3893 integer_type_node, boolean_type_node, integer_type_node); in gfc_build_builtin_function_decls()
3900 boolean_type_node, boolean_type_node, pint_type, integer_type_node); in gfc_build_builtin_function_decls()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dcoroutines.cc1037 else if (same_type_p (susp_return_type, boolean_type_node)) in build_co_await()
1649 ready_cond = cp_convert (boolean_type_node, ready_cond, in expand_one_await_expression()
1655 = build1_loc (loc, CLEANUP_POINT_EXPR, boolean_type_node, ready_cond); in expand_one_await_expression()
1689 suspend = build1_loc (loc, TRUTH_NOT_EXPR, boolean_type_node, suspend); in expand_one_await_expression()
1691 = build1_loc (loc, CLEANUP_POINT_EXPR, boolean_type_node, suspend); in expand_one_await_expression()
3106 boolean_type_node); in handle_nested_conditionals()
3115 tree set_flag = build2 (INIT_EXPR, boolean_type_node, in handle_nested_conditionals()
3118 = build2 (COMPOUND_EXPR, boolean_type_node, n->init, set_flag); in handle_nested_conditionals()
3450 cond = build1 (TRUTH_NOT_EXPR, boolean_type_node, cond); in expand_one_truth_if()
3452 = build3_loc (sloc, COND_EXPR, boolean_type_node, in expand_one_truth_if()
[all …]
H A Dexcept.c333 conv = perform_implicit_conversion_flags (boolean_type_node, cond, in build_must_not_throw_expr()
1214 return build_min (NOEXCEPT_EXPR, boolean_type_node, expr); in finish_noexcept_expr()
1356 current_retval_sentinel = create_temporary_var (boolean_type_node); in maybe_set_retval_sentinel()
1361 return build2 (MODIFY_EXPR, boolean_type_node, in maybe_set_retval_sentinel()
/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/
H A Dsvalue.cc864 = fold_binary (op, boolean_type_node, lhs_const, rhs_const); in eval_condition()
1565 tree iter_gt_base = fold_binary (GT_EXPR, boolean_type_node, in get_direction()
1570 tree iter_lt_base = fold_binary (LT_EXPR, boolean_type_node, in get_direction()
1606 tree base_op_rhs = fold_binary (op, boolean_type_node, in eval_condition_without_cm()
1620 tree base_op_rhs = fold_binary (op, boolean_type_node, in eval_condition_without_cm()
1633 tree base_le_rhs = fold_binary (LE_EXPR, boolean_type_node, in eval_condition_without_cm()
1646 tree base_le_rhs = fold_binary (LE_EXPR, boolean_type_node, in eval_condition_without_cm()

12345678910>>...12