Home
last modified time | relevance | path

Searched refs:simplify_gen_binary (Results 1 – 25 of 40) sorted by relevance

12

/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dloop-iv.c431 iv->base = simplify_gen_binary (PLUS, iv->extend_mode, iv->delta, in iv_subreg()
432 simplify_gen_binary (MULT, iv->extend_mode, in iv_subreg()
434 iv->step = simplify_gen_binary (MULT, iv->extend_mode, iv->step, iv->mult); in iv_subreg()
534 iv0->base = simplify_gen_binary (op, mode, iv0->base, iv1->base); in iv_add()
535 iv0->step = simplify_gen_binary (op, mode, iv0->step, iv1->step); in iv_add()
545 iv0->delta = simplify_gen_binary (op, mode, iv0->delta, iv1->base); in iv_add()
559 iv0->delta = simplify_gen_binary (PLUS, mode, iv0->delta, arg); in iv_add()
579 iv->base = simplify_gen_binary (MULT, mode, iv->base, mby); in iv_mult()
580 iv->step = simplify_gen_binary (MULT, mode, iv->step, mby); in iv_mult()
584 iv->delta = simplify_gen_binary (MULT, mode, iv->delta, mby); in iv_mult()
[all …]
H A Dsimplify-rtx.c167 simplify_gen_binary (enum rtx_code code, enum machine_mode mode, rtx op0, in simplify_gen_binary() function
451 return simplify_gen_binary (code, mode, op0, op1); in simplify_replace_fn_rtx()
623 return simplify_gen_binary (XOR, mode, XEXP (op, 0), temp); in simplify_unary_operation_1()
631 return simplify_gen_binary (XOR, mode, XEXP (op, 0), temp); in simplify_unary_operation_1()
643 return simplify_gen_binary (ROTATE, mode, temp, XEXP (op, 1)); in simplify_unary_operation_1()
726 return simplify_gen_binary (MINUS, mode, XEXP (op, 1), XEXP (op, 0)); in simplify_unary_operation_1()
738 return simplify_gen_binary (MINUS, mode, temp, XEXP (op, 0)); in simplify_unary_operation_1()
743 return simplify_gen_binary (MINUS, mode, temp, XEXP (op, 1)); in simplify_unary_operation_1()
752 return simplify_gen_binary (MULT, mode, XEXP (op, 0), temp); in simplify_unary_operation_1()
762 return simplify_gen_binary (ASHIFT, mode, temp, XEXP (op, 1)); in simplify_unary_operation_1()
[all …]
H A Dcfgexpand.c2956 op0 = gen_rtx_MEM (mode, simplify_gen_binary (PLUS, addrmode, in expand_debug_expr()
3068 return simplify_gen_binary (PLUS, mode, op0, op1); in expand_debug_expr()
3071 return simplify_gen_binary (MINUS, mode, op0, op1); in expand_debug_expr()
3074 return simplify_gen_binary (MULT, mode, op0, op1); in expand_debug_expr()
3080 return simplify_gen_binary (UDIV, mode, op0, op1); in expand_debug_expr()
3082 return simplify_gen_binary (DIV, mode, op0, op1); in expand_debug_expr()
3085 return simplify_gen_binary (unsignedp ? UMOD : MOD, mode, op0, op1); in expand_debug_expr()
3089 return simplify_gen_binary (UDIV, mode, op0, op1); in expand_debug_expr()
3092 rtx div = simplify_gen_binary (DIV, mode, op0, op1); in expand_debug_expr()
3093 rtx mod = simplify_gen_binary (MOD, mode, op0, op1); in expand_debug_expr()
[all …]
H A Dcombine.c3726 rtx tmp = simplify_gen_binary (code, mode, p, r); in try_combine()
4758 simplify_gen_binary (IOR, mode, dest, or_mask)); in find_split_point()
4763 simplify_gen_binary (IOR, mode, in find_split_point()
4764 simplify_gen_binary (AND, mode, in find_split_point()
5540 return simplify_gen_binary (code, mode, other, inner); in combine_simplify_rtx()
5729 rtx tor = simplify_gen_binary (IOR, mode, XEXP (x, 0), XEXP (x, 1)); in combine_simplify_rtx()
5776 return simplify_gen_binary (DIV, mode, tem, XEXP (XEXP (x, 0), 1)); in combine_simplify_rtx()
5864 return simplify_gen_binary (XOR, mode, in combine_simplify_rtx()
6179 return simplify_gen_binary (SMAX, mode, true_rtx, false_rtx); in simplify_if_then_else()
6182 return simplify_gen_binary (SMIN, mode, true_rtx, false_rtx); in simplify_if_then_else()
[all …]
H A Dexplow.c310 x = simplify_gen_binary (GET_CODE (x), GET_MODE (x), op0, op1); in break_out_memory_refs()
1625 = simplify_gen_binary (AND, Pmode, size, GEN_INT (-PROBE_INTERVAL)); in probe_stack_range()
1678 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size); in probe_stack_range()
1768 = simplify_gen_binary (AND, Pmode, size, GEN_INT (-PROBE_INTERVAL)); in anti_adjust_stack_and_probe()
1813 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size); in anti_adjust_stack_and_probe()
H A Dloop-unroll.c1174 simplify_gen_binary (UDIV, desc->mode, old_niter, in unroll_loop_runtime_iterations()
1180 simplify_gen_binary (MINUS, desc->mode, desc->niter_expr, const1_rtx); in unroll_loop_runtime_iterations()
1997 incr = simplify_gen_binary (MULT, mode, in split_iv()
1999 expr = simplify_gen_binary (PLUS, GET_MODE (ivts->base_var), in split_iv()
2197 sum = simplify_gen_binary (PLUS, GET_MODE (ve->reg), var, sum); in combine_var_copies_in_loop_exit()
2202 sum = simplify_gen_binary (MULT, GET_MODE (ve->reg), var, sum); in combine_var_copies_in_loop_exit()
H A Dloop-doloop.c475 count = simplify_gen_binary (PLUS, mode, count, const1_rtx); in doloop_modify()
H A Dtree-ssa-address.c135 *addr = simplify_gen_binary (PLUS, address_mode, base, *addr); in gen_addr_rtx()
H A Drecog.c580 simplify_gen_binary in simplify_while_replacing()
587 simplify_gen_binary in simplify_while_replacing()
H A Dfwprop.c507 tem = simplify_gen_binary (code, mode, op0, op1); in propagate_rtx_1()
H A Dexpr.c4596 op0 = simplify_gen_binary (PLUS, address_mode, op0, off); in expand_assignment()
4682 op0 = simplify_gen_binary (PLUS, address_mode, op0, off); in expand_assignment()
7559 result = simplify_gen_binary (PLUS, tmode, result, tmp); in expand_expr_addr_expr_1()
8093 return simplify_gen_binary (PLUS, mode, op0, op1); in expand_expr_real_2()
8147 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1)); in expand_expr_real_2()
8186 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1)); in expand_expr_real_2()
9471 op0 = simplify_gen_binary (PLUS, address_mode, op0, off); in expand_expr_real_1()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dloop-iv.c432 iv->base = simplify_gen_binary (PLUS, iv->extend_mode, iv->delta, in iv_subreg()
433 simplify_gen_binary (MULT, iv->extend_mode, in iv_subreg()
435 iv->step = simplify_gen_binary (MULT, iv->extend_mode, iv->step, iv->mult); in iv_subreg()
542 iv0->base = simplify_gen_binary (op, mode, iv0->base, iv1->base); in iv_add()
543 iv0->step = simplify_gen_binary (op, mode, iv0->step, iv1->step); in iv_add()
553 iv0->delta = simplify_gen_binary (op, mode, iv0->delta, iv1->base); in iv_add()
567 iv0->delta = simplify_gen_binary (PLUS, mode, iv0->delta, arg); in iv_add()
587 iv->base = simplify_gen_binary (MULT, mode, iv->base, mby); in iv_mult()
588 iv->step = simplify_gen_binary (MULT, mode, iv->step, mby); in iv_mult()
592 iv->delta = simplify_gen_binary (MULT, mode, iv->delta, mby); in iv_mult()
[all …]
H A Dsimplify-rtx.c188 simplify_gen_binary (enum rtx_code code, machine_mode mode, rtx op0, in simplify_gen_binary() function
458 return simplify_gen_binary (code, mode, op0, op1); in simplify_replace_fn_rtx()
673 return simplify_gen_binary (GET_CODE (op), mode, op0, op1); in simplify_truncation()
691 return simplify_gen_binary (ASHIFTRT, mode, in simplify_truncation()
703 return simplify_gen_binary (LSHIFTRT, mode, in simplify_truncation()
715 return simplify_gen_binary (ASHIFT, mode, in simplify_truncation()
739 && (op0 = simplify_gen_binary (LSHIFTRT, mode, op0, shift_op))) in simplify_truncation()
742 return simplify_gen_binary (AND, mode, op0, mask_op); in simplify_truncation()
945 return simplify_gen_binary (PLUS, mode, XEXP (op, 0), in simplify_unary_operation_1()
953 return simplify_gen_binary (XOR, mode, XEXP (op, 0), temp); in simplify_unary_operation_1()
[all …]
H A Dcfgexpand.c4544 op0 = gen_rtx_MEM (mode, simplify_gen_binary (PLUS, addrmode, in expand_debug_expr()
4661 return simplify_gen_binary (PLUS, mode, op0, op1); in expand_debug_expr()
4665 return simplify_gen_binary (MINUS, mode, op0, op1); in expand_debug_expr()
4668 return simplify_gen_binary (MULT, mode, op0, op1); in expand_debug_expr()
4674 return simplify_gen_binary (UDIV, mode, op0, op1); in expand_debug_expr()
4676 return simplify_gen_binary (DIV, mode, op0, op1); in expand_debug_expr()
4679 return simplify_gen_binary (unsignedp ? UMOD : MOD, mode, op0, op1); in expand_debug_expr()
4683 return simplify_gen_binary (UDIV, mode, op0, op1); in expand_debug_expr()
4686 rtx div = simplify_gen_binary (DIV, mode, op0, op1); in expand_debug_expr()
4687 rtx mod = simplify_gen_binary (MOD, mode, op0, op1); in expand_debug_expr()
[all …]
H A Dcombine.c3903 rtx tmp = simplify_gen_binary (code, mode, p, r); in try_combine()
5052 simplify_gen_binary (IOR, inner_mode, dest, or_mask)); in find_split_point()
5057 simplify_gen_binary (IOR, inner_mode, in find_split_point()
5058 simplify_gen_binary (AND, inner_mode, in find_split_point()
5871 return simplify_gen_binary (code, mode, other, inner); in combine_simplify_rtx()
6080 rtx tor = simplify_gen_binary (IOR, mode, XEXP (x, 0), XEXP (x, 1)); in combine_simplify_rtx()
6099 return simplify_gen_binary (ASHIFT, mode, XEXP (x, 0), const1_rtx); in combine_simplify_rtx()
6135 return simplify_gen_binary (DIV, mode, tem, XEXP (XEXP (x, 0), 1)); in combine_simplify_rtx()
6228 return simplify_gen_binary (XOR, int_mode, in combine_simplify_rtx()
6564 return simplify_gen_binary (SMAX, mode, true_rtx, false_rtx); in simplify_if_then_else()
[all …]
H A Dexplow.c279 x = simplify_gen_binary (GET_CODE (x), GET_MODE (x), op0, op1); in break_out_memory_refs()
1741 = simplify_gen_binary (AND, Pmode, size, in probe_stack_range()
1796 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size); in probe_stack_range()
1843 *rounded_size = simplify_gen_binary (AND, Pmode, size, in compute_stack_clash_protection_loop_data()
1856 *residual = simplify_gen_binary (MINUS, Pmode, size, *rounded_size); in compute_stack_clash_protection_loop_data()
2121 = simplify_gen_binary (AND, Pmode, size, in anti_adjust_stack_and_probe()
2167 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size); in anti_adjust_stack_and_probe()
H A Dloop-unroll.c1117 simplify_gen_binary (UDIV, desc->mode, old_niter, in unroll_loop_runtime_iterations()
1130 simplify_gen_binary (MINUS, desc->mode, desc->niter_expr, const1_rtx); in unroll_loop_runtime_iterations()
1744 incr = simplify_gen_binary (MULT, mode, in split_iv()
1747 expr = simplify_gen_binary (PLUS, GET_MODE (ivts->base_var), in split_iv()
1944 sum = simplify_gen_binary (PLUS, GET_MODE (ve->reg), var, sum); in combine_var_copies_in_loop_exit()
1949 sum = simplify_gen_binary (MULT, GET_MODE (ve->reg), var, sum); in combine_var_copies_in_loop_exit()
H A Dloop-invariant.c877 addr_parts[i] = simplify_gen_binary (PLUS, mode, in canonicalize_address()
885 res = simplify_gen_binary (PLUS, mode, res, addr_parts[j]); in canonicalize_address()
889 res = simplify_gen_binary (PLUS, mode, res, addr_parts[i]); in canonicalize_address()
H A Dloop-doloop.c481 count = simplify_gen_binary (PLUS, mode, count, const1_rtx); in doloop_modify()
H A Dexpr.c1845 x_addr = simplify_gen_binary (PLUS, x_addr_mode, x_addr, tmp); in emit_block_move_via_loop()
1849 y_addr = simplify_gen_binary (PLUS, y_addr_mode, y_addr, tmp); in emit_block_move_via_loop()
4257 rtx sub = simplify_gen_binary (MINUS, Pmode, tmp, y); in memory_load_overlap()
4583 addr = simplify_gen_binary (PLUS, Pmode, args_addr, args_so_far); in emit_push_insn()
8054 result = simplify_gen_binary (PLUS, tmode, result, tmp); in expand_expr_addr_expr_1()
8692 return simplify_gen_binary (PLUS, mode, op0, op1); in expand_expr_real_2()
8745 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1)); in expand_expr_real_2()
8761 return simplify_gen_binary (MINUS, mode, op0, op1); in expand_expr_real_2()
8779 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1)); in expand_expr_real_2()
10374 op0 = simplify_gen_binary (PLUS, address_mode, op0, off); in expand_expr_real_1()
[all …]
H A Dalias.c1719 return simplify_gen_binary (PLUS, GET_MODE (x), x0, x1); in canon_rtx()
2268 return simplify_gen_binary (GET_CODE (x), GET_MODE (x), in get_addr()
H A Dtree-ssa-address.c138 *addr = simplify_gen_binary (PLUS, address_mode, base, *addr); in gen_addr_rtx()
H A Dfwprop.c508 tem = simplify_gen_binary (code, mode, op0, op1); in propagate_rtx_1()
H A Drecog.c616 simplify_gen_binary in simplify_while_replacing()
622 simplify_gen_binary in simplify_while_replacing()
H A Dlra-constraints.c3052 new_inner = simplify_gen_binary (PLUS, GET_MODE (new_reg), new_reg, in base_to_reg()
3417 *ad.inner = simplify_gen_binary (PLUS, GET_MODE (new_reg), in process_address_1()
3492 *ad.inner = simplify_gen_binary (PLUS, GET_MODE (new_reg), in process_address_1()
3511 *ad.inner = simplify_gen_binary (PLUS, GET_MODE (new_reg), in process_address_1()

12