/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | tree-vect-generic.c | 1643 tree new_rhs; in expand_vector_scalar_condition() local 1649 new_rhs = expand_vector_parallel (gsi, do_cond, type, rhs2, rhs3, in expand_vector_scalar_condition() 1652 new_rhs = expand_vector_piecewise (gsi, do_cond, type, compute_type, in expand_vector_scalar_condition() 1654 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (new_rhs))) in expand_vector_scalar_condition() 1655 new_rhs = gimplify_build1 (gsi, VIEW_CONVERT_EXPR, TREE_TYPE (lhs), in expand_vector_scalar_condition() 1656 new_rhs); in expand_vector_scalar_condition() 1661 gimple_assign_set_rhs_from_tree (gsi, new_rhs); in expand_vector_scalar_condition() 1729 tree new_rhs, compute_type = TREE_TYPE (arg_type); in expand_vector_conversion() local 1776 new_rhs = expand_vector_piecewise (gsi, do_vec_conversion, in expand_vector_conversion() 1779 g = gimple_build_assign (lhs, new_rhs); in expand_vector_conversion() [all …]
|
H A D | gimple-ssa-backprop.c | 667 note_replacement (gimple *stmt, tree old_rhs, tree new_rhs) in note_replacement() argument 672 print_generic_expr (dump_file, new_rhs); in note_replacement() 724 tree new_rhs = strip_sign_op_1 (rhs); in strip_sign_op() local 725 if (!new_rhs) in strip_sign_op() 727 while (tree next = strip_sign_op_1 (new_rhs)) in strip_sign_op() 728 new_rhs = next; in strip_sign_op() 729 return new_rhs; in strip_sign_op()
|
H A D | tree-ssa-forwprop.c | 894 tree new_offset, new_base, saved, new_rhs; in forward_propagate_addr_expr_1() local 914 new_rhs = unshare_expr (TREE_OPERAND (def_rhs, 0)); in forward_propagate_addr_expr_1() 915 *rhsp = new_rhs; in forward_propagate_addr_expr_1() 916 TREE_THIS_VOLATILE (new_rhs) = TREE_THIS_VOLATILE (rhs); in forward_propagate_addr_expr_1() 917 TREE_SIDE_EFFECTS (new_rhs) = TREE_SIDE_EFFECTS (rhs); in forward_propagate_addr_expr_1() 946 tree new_rhs = build1_loc (gimple_location (use_stmt), in forward_propagate_addr_expr_1() local 953 gimple_assign_set_rhs_from_tree (use_stmt_gsi, new_rhs); in forward_propagate_addr_expr_1() 2884 tree new_rhs = build1 (gimple_assign_rhs_code (use_stmt), in execute() local 2889 new_rhs); in execute() 2948 tree new_rhs = fold_build3 (BIT_FIELD_REF, in execute() local [all …]
|
H A D | tree-ssa-ccp.c | 2343 tree new_rhs = unshare_expr (val); in fold_stmt() local 2346 TREE_TYPE (new_rhs))) in fold_stmt() 2347 new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs); in fold_stmt() 2348 res = update_call_from_tree (gsi, new_rhs); in fold_stmt() 2364 tree new_rhs = fold_builtin_alloca_with_align (stmt); in fold_stmt() local 2365 if (new_rhs) in fold_stmt() 2367 bool res = update_call_from_tree (gsi, new_rhs); in fold_stmt() 2368 tree var = TREE_OPERAND (TREE_OPERAND (new_rhs, 0),0); in fold_stmt()
|
H A D | tree-ssa-phiopt.c | 725 tree new_rhs; in two_value_replacement() local 727 new_rhs = gimplify_build2 (&gsi, PLUS_EXPR, type, lhs, arg); in two_value_replacement() 729 new_rhs = gimplify_build2 (&gsi, MINUS_EXPR, type, arg, lhs); in two_value_replacement() 731 new_rhs = gimplify_build1 (&gsi, NOP_EXPR, TREE_TYPE (arg0), new_rhs); in two_value_replacement() 733 replace_phi_edge_with_variable (cond_bb, e1, phi, new_rhs); in two_value_replacement()
|
H A D | tree-ssa-dom.c | 1728 tree new_rhs in record_equivalences_from_stmt() local 1738 print_generic_expr (dump_file, new_rhs); in record_equivalences_from_stmt() 1742 set_ssa_name_value (lhs, new_rhs); in record_equivalences_from_stmt()
|
H A D | tree-ssa-math-opts.c | 3658 tree new_rhs; in convert_to_divmod() local 3663 new_rhs = fold_build1 (REALPART_EXPR, TREE_TYPE (op1), res); in convert_to_divmod() 3667 new_rhs = fold_build1 (IMAGPART_EXPR, TREE_TYPE (op1), res); in convert_to_divmod() 3675 gimple_assign_set_rhs_from_tree (&gsi, new_rhs); in convert_to_divmod()
|
H A D | ipa-param-manipulation.c | 1478 tree new_rhs = fold_build1_loc (gimple_location (stmt), in modify_assignment() local 1481 tree tmp = force_gimple_operand (new_rhs, extra_stmts, true, in modify_assignment()
|
H A D | gimple-fold.c | 5158 tree new_rhs = fold_gimple_assign (gsi); in fold_stmt_1() local 5159 if (new_rhs in fold_stmt_1() 5161 TREE_TYPE (new_rhs))) in fold_stmt_1() 5162 new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs); in fold_stmt_1() 5163 if (new_rhs in fold_stmt_1() 5165 || get_gimple_rhs_num_ops (TREE_CODE (new_rhs)) < old_num_ops)) in fold_stmt_1() 5167 gimple_assign_set_rhs_from_tree (gsi, new_rhs); in fold_stmt_1()
|
H A D | tree-vect-patterns.c | 648 vect_split_statement (stmt_vec_info stmt2_info, tree new_rhs, in vect_split_statement() argument 666 gimple_assign_set_rhs1 (stmt2_info->stmt, new_rhs); in vect_split_statement() 710 gassign *new_stmt2 = gimple_build_assign (new_lhs, NOP_EXPR, new_rhs); in vect_split_statement()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | tree-vect-generic.cc | 1796 tree new_rhs; in expand_vector_scalar_condition() local 1802 new_rhs = expand_vector_parallel (gsi, do_cond, type, rhs2, rhs3, in expand_vector_scalar_condition() 1805 new_rhs = expand_vector_piecewise (gsi, do_cond, type, compute_type, in expand_vector_scalar_condition() 1807 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (new_rhs))) in expand_vector_scalar_condition() 1808 new_rhs = gimplify_build1 (gsi, VIEW_CONVERT_EXPR, TREE_TYPE (lhs), in expand_vector_scalar_condition() 1809 new_rhs); in expand_vector_scalar_condition() 1814 gimple_assign_set_rhs_from_tree (gsi, new_rhs); in expand_vector_scalar_condition() 1882 tree new_rhs, compute_type = TREE_TYPE (arg_type); in expand_vector_conversion() local 1926 new_rhs = expand_vector_piecewise (gsi, do_vec_conversion, in expand_vector_conversion() 1929 g = gimple_build_assign (lhs, new_rhs); in expand_vector_conversion() [all …]
|
H A D | gimple-ssa-backprop.cc | 667 note_replacement (gimple *stmt, tree old_rhs, tree new_rhs) in note_replacement() argument 672 print_generic_expr (dump_file, new_rhs); in note_replacement() 723 tree new_rhs = strip_sign_op_1 (rhs); in strip_sign_op() local 724 if (!new_rhs) in strip_sign_op() 726 while (tree next = strip_sign_op_1 (new_rhs)) in strip_sign_op() 727 new_rhs = next; in strip_sign_op() 728 return new_rhs; in strip_sign_op()
|
H A D | tree-ssa-forwprop.cc | 896 tree new_offset, new_base, saved, new_rhs; in forward_propagate_addr_expr_1() local 916 new_rhs = unshare_expr (TREE_OPERAND (def_rhs, 0)); in forward_propagate_addr_expr_1() 917 *rhsp = new_rhs; in forward_propagate_addr_expr_1() 918 TREE_THIS_VOLATILE (new_rhs) = TREE_THIS_VOLATILE (rhs); in forward_propagate_addr_expr_1() 919 TREE_SIDE_EFFECTS (new_rhs) = TREE_SIDE_EFFECTS (rhs); in forward_propagate_addr_expr_1() 948 tree new_rhs = build1_loc (gimple_location (use_stmt), in forward_propagate_addr_expr_1() local 955 gimple_assign_set_rhs_from_tree (use_stmt_gsi, new_rhs); in forward_propagate_addr_expr_1() 3275 tree new_rhs = unshare_expr (load_rhs); in optimize_vector_load() local 3287 new_rhs = fold_build3 (BIT_FIELD_REF, in optimize_vector_load() 3289 new_rhs, in optimize_vector_load() [all …]
|
H A D | tree-ssa-ccp.cc | 2722 tree new_rhs = unshare_expr (val); in fold_stmt() local 2724 TREE_TYPE (new_rhs))) in fold_stmt() 2725 new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs); in fold_stmt() 2726 gimplify_and_update_call_from_tree (gsi, new_rhs); in fold_stmt() 2741 tree new_rhs = fold_builtin_alloca_with_align (stmt); in fold_stmt() local 2742 if (new_rhs) in fold_stmt() 2744 gimplify_and_update_call_from_tree (gsi, new_rhs); in fold_stmt() 2745 tree var = TREE_OPERAND (TREE_OPERAND (new_rhs, 0),0); in fold_stmt()
|
H A D | tree-ssa-phiopt.cc | 806 tree new_rhs; in two_value_replacement() local 808 new_rhs = gimple_build (&stmts, PLUS_EXPR, type, lhs, arg); in two_value_replacement() 810 new_rhs = gimple_build (&stmts, MINUS_EXPR, type, arg, lhs); in two_value_replacement() 811 new_rhs = gimple_convert (&stmts, TREE_TYPE (arg0), new_rhs); in two_value_replacement() 815 replace_phi_edge_with_variable (cond_bb, e1, phi, new_rhs); in two_value_replacement()
|
H A D | tree-ssa-dom.cc | 1763 tree new_rhs in record_equivalences_from_stmt() local 1773 print_generic_expr (dump_file, new_rhs); in record_equivalences_from_stmt() 1777 set_ssa_name_value (lhs, new_rhs); in record_equivalences_from_stmt()
|
H A D | tree-ssa-math-opts.cc | 4540 tree new_rhs; in convert_to_divmod() local 4545 new_rhs = fold_build1 (REALPART_EXPR, TREE_TYPE (op1), res); in convert_to_divmod() 4549 new_rhs = fold_build1 (IMAGPART_EXPR, TREE_TYPE (op1), res); in convert_to_divmod() 4557 gimple_assign_set_rhs_from_tree (&gsi, new_rhs); in convert_to_divmod()
|
H A D | ipa-param-manipulation.cc | 1854 tree new_rhs = fold_build1_loc (gimple_location (stmt), in modify_assignment() local 1857 tree tmp = force_gimple_operand (new_rhs, extra_stmts, true, in modify_assignment()
|
H A D | gimple-fold.cc | 6282 tree new_rhs = fold_gimple_assign (gsi); in fold_stmt_1() local 6283 if (new_rhs in fold_stmt_1() 6285 TREE_TYPE (new_rhs))) in fold_stmt_1() 6286 new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs); in fold_stmt_1() 6287 if (new_rhs in fold_stmt_1() 6289 || get_gimple_rhs_num_ops (TREE_CODE (new_rhs)) < old_num_ops)) in fold_stmt_1() 6291 gimple_assign_set_rhs_from_tree (gsi, new_rhs); in fold_stmt_1()
|
H A D | tree-vect-patterns.cc | 689 vect_split_statement (vec_info *vinfo, stmt_vec_info stmt2_info, tree new_rhs, in vect_split_statement() argument 706 gimple_assign_set_rhs1 (stmt2_info->stmt, new_rhs); in vect_split_statement() 750 gassign *new_stmt2 = gimple_build_assign (new_lhs, NOP_EXPR, new_rhs); in vect_split_statement()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
H A D | constraint-manager.cc | 1436 equiv_class_id new_rhs = map_ec_to_m.get_dst_for_src (c->m_rhs); in clean_merger_input() local 1437 if (new_rhs.null_p ()) in clean_merger_input() 1441 new_rhs)); in clean_merger_input()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/riscv/ |
H A D | riscv.c | 2206 HOST_WIDE_INT new_rhs; in riscv_emit_int_compare() local 2212 new_rhs = rhs + (increment ? 1 : -1); in riscv_emit_int_compare() 2213 if (riscv_integer_cost (new_rhs) < riscv_integer_cost (rhs) in riscv_emit_int_compare() 2214 && (rhs < 0) == (new_rhs < 0)) in riscv_emit_int_compare() 2216 *op1 = GEN_INT (new_rhs); in riscv_emit_int_compare()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/riscv/ |
H A D | riscv.cc | 2561 HOST_WIDE_INT new_rhs; in riscv_emit_int_compare() local 2567 new_rhs = rhs + (increment ? 1 : -1); in riscv_emit_int_compare() 2568 if (riscv_integer_cost (new_rhs) < riscv_integer_cost (rhs) in riscv_emit_int_compare() 2569 && (rhs < 0) == (new_rhs < 0)) in riscv_emit_int_compare() 2571 *op1 = GEN_INT (new_rhs); in riscv_emit_int_compare()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/loongarch/ |
H A D | loongarch.cc | 3751 HOST_WIDE_INT new_rhs; in loongarch_emit_int_compare() local 3757 new_rhs = rhs + (increment ? 1 : -1); in loongarch_emit_int_compare() 3758 if (loongarch_integer_cost (new_rhs) in loongarch_emit_int_compare() 3760 && (rhs < 0) == (new_rhs < 0)) in loongarch_emit_int_compare() 3762 *op1 = GEN_INT (new_rhs); in loongarch_emit_int_compare()
|
/netbsd-src/external/mpl/dhcp/dist/common/ |
H A D | parse.c | 4491 new_rhs: 4629 goto new_rhs; 4775 goto new_rhs;
|