1 /* Expand the basic unary and binary arithmetic operations, for GNU compiler.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
25 #include "diagnostic-core.h"
27 /* Include insn-config.h before expr.h so that HAVE_conditional_move
28 is properly defined. */
29 #include "insn-config.h"
32 #include "tree-hasher.h"
33 #include "stor-layout.h"
34 #include "stringpool.h"
42 #include "hard-reg-set.h"
47 #include "insn-codes.h"
54 #include "dominance.h"
56 #include "basic-block.h"
59 struct target_optabs default_target_optabs
;
60 struct target_libfuncs default_target_libfuncs
;
61 struct target_optabs
*this_fn_optabs
= &default_target_optabs
;
63 struct target_optabs
*this_target_optabs
= &default_target_optabs
;
64 struct target_libfuncs
*this_target_libfuncs
= &default_target_libfuncs
;
67 #define libfunc_hash \
68 (this_target_libfuncs->x_libfunc_hash)
70 static void prepare_float_lib_cmp (rtx
, rtx
, enum rtx_code
, rtx
*,
72 static rtx
expand_unop_direct (machine_mode
, optab
, rtx
, rtx
, int);
73 static void emit_libcall_block_1 (rtx_insn
*, rtx
, rtx
, rtx
, bool);
75 /* Debug facility for use in GDB. */
76 void debug_optab_libfuncs (void);
78 /* Prefixes for the current version of decimal floating point (BID vs. DPD) */
79 #if ENABLE_DECIMAL_BID_FORMAT
80 #define DECIMAL_PREFIX "bid_"
82 #define DECIMAL_PREFIX "dpd_"
85 /* Used for libfunc_hash. */
88 libfunc_hasher::hash (libfunc_entry
*e
)
90 return ((e
->mode1
+ e
->mode2
* NUM_MACHINE_MODES
) ^ e
->op
);
93 /* Used for libfunc_hash. */
96 libfunc_hasher::equal (libfunc_entry
*e1
, libfunc_entry
*e2
)
98 return e1
->op
== e2
->op
&& e1
->mode1
== e2
->mode1
&& e1
->mode2
== e2
->mode2
;
101 /* Return libfunc corresponding operation defined by OPTAB converting
102 from MODE2 to MODE1. Trigger lazy initialization if needed, return NULL
103 if no libfunc is available. */
105 convert_optab_libfunc (convert_optab optab
, machine_mode mode1
,
108 struct libfunc_entry e
;
109 struct libfunc_entry
**slot
;
111 /* ??? This ought to be an assert, but not all of the places
112 that we expand optabs know about the optabs that got moved
114 if (!(optab
>= FIRST_CONV_OPTAB
&& optab
<= LAST_CONVLIB_OPTAB
))
120 slot
= libfunc_hash
->find_slot (&e
, NO_INSERT
);
123 const struct convert_optab_libcall_d
*d
124 = &convlib_def
[optab
- FIRST_CONV_OPTAB
];
126 if (d
->libcall_gen
== NULL
)
129 d
->libcall_gen (optab
, d
->libcall_basename
, mode1
, mode2
);
130 slot
= libfunc_hash
->find_slot (&e
, NO_INSERT
);
134 return (*slot
)->libfunc
;
137 /* Return libfunc corresponding operation defined by OPTAB in MODE.
138 Trigger lazy initialization if needed, return NULL if no libfunc is
141 optab_libfunc (optab optab
, machine_mode mode
)
143 struct libfunc_entry e
;
144 struct libfunc_entry
**slot
;
146 /* ??? This ought to be an assert, but not all of the places
147 that we expand optabs know about the optabs that got moved
149 if (!(optab
>= FIRST_NORM_OPTAB
&& optab
<= LAST_NORMLIB_OPTAB
))
155 slot
= libfunc_hash
->find_slot (&e
, NO_INSERT
);
158 const struct optab_libcall_d
*d
159 = &normlib_def
[optab
- FIRST_NORM_OPTAB
];
161 if (d
->libcall_gen
== NULL
)
164 d
->libcall_gen (optab
, d
->libcall_basename
, d
->libcall_suffix
, mode
);
165 slot
= libfunc_hash
->find_slot (&e
, NO_INSERT
);
169 return (*slot
)->libfunc
;
173 /* Add a REG_EQUAL note to the last insn in INSNS. TARGET is being set to
174 the result of operation CODE applied to OP0 (and OP1 if it is a binary
177 If the last insn does not set TARGET, don't do anything, but return 1.
179 If the last insn or a previous insn sets TARGET and TARGET is one of OP0
180 or OP1, don't add the REG_EQUAL note but return 0. Our caller can then
181 try again, ensuring that TARGET is not one of the operands. */
184 add_equal_note (rtx_insn
*insns
, rtx target
, enum rtx_code code
, rtx op0
, rtx op1
)
190 gcc_assert (insns
&& INSN_P (insns
) && NEXT_INSN (insns
));
192 if (GET_RTX_CLASS (code
) != RTX_COMM_ARITH
193 && GET_RTX_CLASS (code
) != RTX_BIN_ARITH
194 && GET_RTX_CLASS (code
) != RTX_COMM_COMPARE
195 && GET_RTX_CLASS (code
) != RTX_COMPARE
196 && GET_RTX_CLASS (code
) != RTX_UNARY
)
199 if (GET_CODE (target
) == ZERO_EXTRACT
)
202 for (last_insn
= insns
;
203 NEXT_INSN (last_insn
) != NULL_RTX
;
204 last_insn
= NEXT_INSN (last_insn
))
207 /* If TARGET is in OP0 or OP1, punt. We'd end up with a note referencing
208 a value changing in the insn, so the note would be invalid for CSE. */
209 if (reg_overlap_mentioned_p (target
, op0
)
210 || (op1
&& reg_overlap_mentioned_p (target
, op1
)))
213 && (rtx_equal_p (target
, op0
)
214 || (op1
&& rtx_equal_p (target
, op1
))))
216 /* For MEM target, with MEM = MEM op X, prefer no REG_EQUAL note
217 over expanding it as temp = MEM op X, MEM = temp. If the target
218 supports MEM = MEM op X instructions, it is sometimes too hard
219 to reconstruct that form later, especially if X is also a memory,
220 and due to multiple occurrences of addresses the address might
221 be forced into register unnecessarily.
222 Note that not emitting the REG_EQUIV note might inhibit
223 CSE in some cases. */
224 set
= single_set (last_insn
);
226 && GET_CODE (SET_SRC (set
)) == code
227 && MEM_P (SET_DEST (set
))
228 && (rtx_equal_p (SET_DEST (set
), XEXP (SET_SRC (set
), 0))
229 || (op1
&& rtx_equal_p (SET_DEST (set
),
230 XEXP (SET_SRC (set
), 1)))))
236 set
= set_for_reg_notes (last_insn
);
240 if (! rtx_equal_p (SET_DEST (set
), target
)
241 /* For a STRICT_LOW_PART, the REG_NOTE applies to what is inside it. */
242 && (GET_CODE (SET_DEST (set
)) != STRICT_LOW_PART
243 || ! rtx_equal_p (XEXP (SET_DEST (set
), 0), target
)))
246 if (GET_RTX_CLASS (code
) == RTX_UNARY
)
256 if (GET_MODE (op0
) != VOIDmode
&& GET_MODE (target
) != GET_MODE (op0
))
258 note
= gen_rtx_fmt_e (code
, GET_MODE (op0
), copy_rtx (op0
));
259 if (GET_MODE_SIZE (GET_MODE (op0
))
260 > GET_MODE_SIZE (GET_MODE (target
)))
261 note
= simplify_gen_unary (TRUNCATE
, GET_MODE (target
),
262 note
, GET_MODE (op0
));
264 note
= simplify_gen_unary (ZERO_EXTEND
, GET_MODE (target
),
265 note
, GET_MODE (op0
));
270 note
= gen_rtx_fmt_e (code
, GET_MODE (target
), copy_rtx (op0
));
274 note
= gen_rtx_fmt_ee (code
, GET_MODE (target
), copy_rtx (op0
), copy_rtx (op1
));
276 set_unique_reg_note (last_insn
, REG_EQUAL
, note
);
281 /* Given two input operands, OP0 and OP1, determine what the correct from_mode
282 for a widening operation would be. In most cases this would be OP0, but if
283 that's a constant it'll be VOIDmode, which isn't useful. */
286 widened_mode (machine_mode to_mode
, rtx op0
, rtx op1
)
288 machine_mode m0
= GET_MODE (op0
);
289 machine_mode m1
= GET_MODE (op1
);
292 if (m0
== VOIDmode
&& m1
== VOIDmode
)
294 else if (m0
== VOIDmode
|| GET_MODE_SIZE (m0
) < GET_MODE_SIZE (m1
))
299 if (GET_MODE_SIZE (result
) > GET_MODE_SIZE (to_mode
))
305 /* Like optab_handler, but for widening_operations that have a
306 TO_MODE and a FROM_MODE. */
309 widening_optab_handler (optab op
, machine_mode to_mode
,
310 machine_mode from_mode
)
312 unsigned scode
= (op
<< 16) | to_mode
;
313 if (to_mode
!= from_mode
&& from_mode
!= VOIDmode
)
315 /* ??? Why does find_widening_optab_handler_and_mode attempt to
316 widen things that can't be widened? E.g. add_optab... */
317 if (op
> LAST_CONV_OPTAB
)
318 return CODE_FOR_nothing
;
319 scode
|= from_mode
<< 8;
321 return raw_optab_handler (scode
);
324 /* Find a widening optab even if it doesn't widen as much as we want.
325 E.g. if from_mode is HImode, and to_mode is DImode, and there is no
326 direct HI->SI insn, then return SI->DI, if that exists.
327 If PERMIT_NON_WIDENING is non-zero then this can be used with
328 non-widening optabs also. */
331 find_widening_optab_handler_and_mode (optab op
, machine_mode to_mode
,
332 machine_mode from_mode
,
333 int permit_non_widening
,
334 machine_mode
*found_mode
)
336 for (; (permit_non_widening
|| from_mode
!= to_mode
)
337 && GET_MODE_SIZE (from_mode
) <= GET_MODE_SIZE (to_mode
)
338 && from_mode
!= VOIDmode
;
339 from_mode
= GET_MODE_WIDER_MODE (from_mode
))
341 enum insn_code handler
= widening_optab_handler (op
, to_mode
,
344 if (handler
!= CODE_FOR_nothing
)
347 *found_mode
= from_mode
;
352 return CODE_FOR_nothing
;
355 /* Widen OP to MODE and return the rtx for the widened operand. UNSIGNEDP
356 says whether OP is signed or unsigned. NO_EXTEND is nonzero if we need
357 not actually do a sign-extend or zero-extend, but can leave the
358 higher-order bits of the result rtx undefined, for example, in the case
359 of logical operations, but not right shifts. */
362 widen_operand (rtx op
, machine_mode mode
, machine_mode oldmode
,
363 int unsignedp
, int no_extend
)
367 /* If we don't have to extend and this is a constant, return it. */
368 if (no_extend
&& GET_MODE (op
) == VOIDmode
)
371 /* If we must extend do so. If OP is a SUBREG for a promoted object, also
372 extend since it will be more efficient to do so unless the signedness of
373 a promoted object differs from our extension. */
375 || (GET_CODE (op
) == SUBREG
&& SUBREG_PROMOTED_VAR_P (op
)
376 && SUBREG_CHECK_PROMOTED_SIGN (op
, unsignedp
)))
377 return convert_modes (mode
, oldmode
, op
, unsignedp
);
379 /* If MODE is no wider than a single word, we return a lowpart or paradoxical
381 if (GET_MODE_SIZE (mode
) <= UNITS_PER_WORD
)
382 return gen_lowpart (mode
, force_reg (GET_MODE (op
), op
));
384 /* Otherwise, get an object of MODE, clobber it, and set the low-order
387 result
= gen_reg_rtx (mode
);
388 emit_clobber (result
);
389 emit_move_insn (gen_lowpart (GET_MODE (op
), result
), op
);
393 /* Return the optab used for computing the operation given by the tree code,
394 CODE and the tree EXP. This function is not always usable (for example, it
395 cannot give complete results for multiplication or division) but probably
396 ought to be relied on more widely throughout the expander. */
398 optab_for_tree_code (enum tree_code code
, const_tree type
,
399 enum optab_subtype subtype
)
411 return one_cmpl_optab
;
416 case MULT_HIGHPART_EXPR
:
417 return TYPE_UNSIGNED (type
) ? umul_highpart_optab
: smul_highpart_optab
;
423 return TYPE_UNSIGNED (type
) ? umod_optab
: smod_optab
;
431 if (TYPE_SATURATING (type
))
432 return TYPE_UNSIGNED (type
) ? usdiv_optab
: ssdiv_optab
;
433 return TYPE_UNSIGNED (type
) ? udiv_optab
: sdiv_optab
;
436 if (TREE_CODE (type
) == VECTOR_TYPE
)
438 if (subtype
== optab_vector
)
439 return TYPE_SATURATING (type
) ? unknown_optab
: vashl_optab
;
441 gcc_assert (subtype
== optab_scalar
);
443 if (TYPE_SATURATING (type
))
444 return TYPE_UNSIGNED (type
) ? usashl_optab
: ssashl_optab
;
448 if (TREE_CODE (type
) == VECTOR_TYPE
)
450 if (subtype
== optab_vector
)
451 return TYPE_UNSIGNED (type
) ? vlshr_optab
: vashr_optab
;
453 gcc_assert (subtype
== optab_scalar
);
455 return TYPE_UNSIGNED (type
) ? lshr_optab
: ashr_optab
;
458 if (TREE_CODE (type
) == VECTOR_TYPE
)
460 if (subtype
== optab_vector
)
463 gcc_assert (subtype
== optab_scalar
);
468 if (TREE_CODE (type
) == VECTOR_TYPE
)
470 if (subtype
== optab_vector
)
473 gcc_assert (subtype
== optab_scalar
);
478 return TYPE_UNSIGNED (type
) ? umax_optab
: smax_optab
;
481 return TYPE_UNSIGNED (type
) ? umin_optab
: smin_optab
;
483 case REALIGN_LOAD_EXPR
:
484 return vec_realign_load_optab
;
487 return TYPE_UNSIGNED (type
) ? usum_widen_optab
: ssum_widen_optab
;
490 return TYPE_UNSIGNED (type
) ? udot_prod_optab
: sdot_prod_optab
;
493 return TYPE_UNSIGNED (type
) ? usad_optab
: ssad_optab
;
495 case WIDEN_MULT_PLUS_EXPR
:
496 return (TYPE_UNSIGNED (type
)
497 ? (TYPE_SATURATING (type
)
498 ? usmadd_widen_optab
: umadd_widen_optab
)
499 : (TYPE_SATURATING (type
)
500 ? ssmadd_widen_optab
: smadd_widen_optab
));
502 case WIDEN_MULT_MINUS_EXPR
:
503 return (TYPE_UNSIGNED (type
)
504 ? (TYPE_SATURATING (type
)
505 ? usmsub_widen_optab
: umsub_widen_optab
)
506 : (TYPE_SATURATING (type
)
507 ? ssmsub_widen_optab
: smsub_widen_optab
));
513 return TYPE_UNSIGNED (type
)
514 ? reduc_umax_scal_optab
: reduc_smax_scal_optab
;
517 return TYPE_UNSIGNED (type
)
518 ? reduc_umin_scal_optab
: reduc_smin_scal_optab
;
520 case REDUC_PLUS_EXPR
:
521 return reduc_plus_scal_optab
;
523 case VEC_WIDEN_MULT_HI_EXPR
:
524 return TYPE_UNSIGNED (type
) ?
525 vec_widen_umult_hi_optab
: vec_widen_smult_hi_optab
;
527 case VEC_WIDEN_MULT_LO_EXPR
:
528 return TYPE_UNSIGNED (type
) ?
529 vec_widen_umult_lo_optab
: vec_widen_smult_lo_optab
;
531 case VEC_WIDEN_MULT_EVEN_EXPR
:
532 return TYPE_UNSIGNED (type
) ?
533 vec_widen_umult_even_optab
: vec_widen_smult_even_optab
;
535 case VEC_WIDEN_MULT_ODD_EXPR
:
536 return TYPE_UNSIGNED (type
) ?
537 vec_widen_umult_odd_optab
: vec_widen_smult_odd_optab
;
539 case VEC_WIDEN_LSHIFT_HI_EXPR
:
540 return TYPE_UNSIGNED (type
) ?
541 vec_widen_ushiftl_hi_optab
: vec_widen_sshiftl_hi_optab
;
543 case VEC_WIDEN_LSHIFT_LO_EXPR
:
544 return TYPE_UNSIGNED (type
) ?
545 vec_widen_ushiftl_lo_optab
: vec_widen_sshiftl_lo_optab
;
547 case VEC_UNPACK_HI_EXPR
:
548 return TYPE_UNSIGNED (type
) ?
549 vec_unpacku_hi_optab
: vec_unpacks_hi_optab
;
551 case VEC_UNPACK_LO_EXPR
:
552 return TYPE_UNSIGNED (type
) ?
553 vec_unpacku_lo_optab
: vec_unpacks_lo_optab
;
555 case VEC_UNPACK_FLOAT_HI_EXPR
:
556 /* The signedness is determined from input operand. */
557 return TYPE_UNSIGNED (type
) ?
558 vec_unpacku_float_hi_optab
: vec_unpacks_float_hi_optab
;
560 case VEC_UNPACK_FLOAT_LO_EXPR
:
561 /* The signedness is determined from input operand. */
562 return TYPE_UNSIGNED (type
) ?
563 vec_unpacku_float_lo_optab
: vec_unpacks_float_lo_optab
;
565 case VEC_PACK_TRUNC_EXPR
:
566 return vec_pack_trunc_optab
;
568 case VEC_PACK_SAT_EXPR
:
569 return TYPE_UNSIGNED (type
) ? vec_pack_usat_optab
: vec_pack_ssat_optab
;
571 case VEC_PACK_FIX_TRUNC_EXPR
:
572 /* The signedness is determined from output operand. */
573 return TYPE_UNSIGNED (type
) ?
574 vec_pack_ufix_trunc_optab
: vec_pack_sfix_trunc_optab
;
580 trapv
= INTEGRAL_TYPE_P (type
) && TYPE_OVERFLOW_TRAPS (type
);
583 case POINTER_PLUS_EXPR
:
585 if (TYPE_SATURATING (type
))
586 return TYPE_UNSIGNED (type
) ? usadd_optab
: ssadd_optab
;
587 return trapv
? addv_optab
: add_optab
;
590 if (TYPE_SATURATING (type
))
591 return TYPE_UNSIGNED (type
) ? ussub_optab
: sssub_optab
;
592 return trapv
? subv_optab
: sub_optab
;
595 if (TYPE_SATURATING (type
))
596 return TYPE_UNSIGNED (type
) ? usmul_optab
: ssmul_optab
;
597 return trapv
? smulv_optab
: smul_optab
;
600 if (TYPE_SATURATING (type
))
601 return TYPE_UNSIGNED (type
) ? usneg_optab
: ssneg_optab
;
602 return trapv
? negv_optab
: neg_optab
;
605 return trapv
? absv_optab
: abs_optab
;
608 return unknown_optab
;
612 /* Given optab UNOPTAB that reduces a vector to a scalar, find instead the old
613 optab that produces a vector with the reduction result in one element,
614 for a tree with type TYPE. */
617 scalar_reduc_to_vector (optab unoptab
, const_tree type
)
621 case reduc_plus_scal_optab
:
622 return TYPE_UNSIGNED (type
) ? reduc_uplus_optab
: reduc_splus_optab
;
624 case reduc_smin_scal_optab
: return reduc_smin_optab
;
625 case reduc_umin_scal_optab
: return reduc_umin_optab
;
626 case reduc_smax_scal_optab
: return reduc_smax_optab
;
627 case reduc_umax_scal_optab
: return reduc_umax_optab
;
628 default: return unknown_optab
;
632 /* Expand vector widening operations.
634 There are two different classes of operations handled here:
635 1) Operations whose result is wider than all the arguments to the operation.
636 Examples: VEC_UNPACK_HI/LO_EXPR, VEC_WIDEN_MULT_HI/LO_EXPR
637 In this case OP0 and optionally OP1 would be initialized,
638 but WIDE_OP wouldn't (not relevant for this case).
639 2) Operations whose result is of the same size as the last argument to the
640 operation, but wider than all the other arguments to the operation.
641 Examples: WIDEN_SUM_EXPR, VEC_DOT_PROD_EXPR.
642 In the case WIDE_OP, OP0 and optionally OP1 would be initialized.
644 E.g, when called to expand the following operations, this is how
645 the arguments will be initialized:
647 widening-sum 2 oprnd0 - oprnd1
648 widening-dot-product 3 oprnd0 oprnd1 oprnd2
649 widening-mult 2 oprnd0 oprnd1 -
650 type-promotion (vec-unpack) 1 oprnd0 - - */
653 expand_widen_pattern_expr (sepops ops
, rtx op0
, rtx op1
, rtx wide_op
,
654 rtx target
, int unsignedp
)
656 struct expand_operand eops
[4];
657 tree oprnd0
, oprnd1
, oprnd2
;
658 machine_mode wmode
= VOIDmode
, tmode0
, tmode1
= VOIDmode
;
659 optab widen_pattern_optab
;
660 enum insn_code icode
;
661 int nops
= TREE_CODE_LENGTH (ops
->code
);
665 tmode0
= TYPE_MODE (TREE_TYPE (oprnd0
));
666 widen_pattern_optab
=
667 optab_for_tree_code (ops
->code
, TREE_TYPE (oprnd0
), optab_default
);
668 if (ops
->code
== WIDEN_MULT_PLUS_EXPR
669 || ops
->code
== WIDEN_MULT_MINUS_EXPR
)
670 icode
= find_widening_optab_handler (widen_pattern_optab
,
671 TYPE_MODE (TREE_TYPE (ops
->op2
)),
674 icode
= optab_handler (widen_pattern_optab
, tmode0
);
675 gcc_assert (icode
!= CODE_FOR_nothing
);
680 tmode1
= TYPE_MODE (TREE_TYPE (oprnd1
));
683 /* The last operand is of a wider mode than the rest of the operands. */
688 gcc_assert (tmode1
== tmode0
);
691 wmode
= TYPE_MODE (TREE_TYPE (oprnd2
));
695 create_output_operand (&eops
[op
++], target
, TYPE_MODE (ops
->type
));
696 create_convert_operand_from (&eops
[op
++], op0
, tmode0
, unsignedp
);
698 create_convert_operand_from (&eops
[op
++], op1
, tmode1
, unsignedp
);
700 create_convert_operand_from (&eops
[op
++], wide_op
, wmode
, unsignedp
);
701 expand_insn (icode
, op
, eops
);
702 return eops
[0].value
;
705 /* Generate code to perform an operation specified by TERNARY_OPTAB
706 on operands OP0, OP1 and OP2, with result having machine-mode MODE.
708 UNSIGNEDP is for the case where we have to widen the operands
709 to perform the operation. It says to use zero-extension.
711 If TARGET is nonzero, the value
712 is generated there, if it is convenient to do so.
713 In all cases an rtx is returned for the locus of the value;
714 this may or may not be TARGET. */
717 expand_ternary_op (machine_mode mode
, optab ternary_optab
, rtx op0
,
718 rtx op1
, rtx op2
, rtx target
, int unsignedp
)
720 struct expand_operand ops
[4];
721 enum insn_code icode
= optab_handler (ternary_optab
, mode
);
723 gcc_assert (optab_handler (ternary_optab
, mode
) != CODE_FOR_nothing
);
725 create_output_operand (&ops
[0], target
, mode
);
726 create_convert_operand_from (&ops
[1], op0
, mode
, unsignedp
);
727 create_convert_operand_from (&ops
[2], op1
, mode
, unsignedp
);
728 create_convert_operand_from (&ops
[3], op2
, mode
, unsignedp
);
729 expand_insn (icode
, 4, ops
);
734 /* Like expand_binop, but return a constant rtx if the result can be
735 calculated at compile time. The arguments and return value are
736 otherwise the same as for expand_binop. */
739 simplify_expand_binop (machine_mode mode
, optab binoptab
,
740 rtx op0
, rtx op1
, rtx target
, int unsignedp
,
741 enum optab_methods methods
)
743 if (CONSTANT_P (op0
) && CONSTANT_P (op1
))
745 rtx x
= simplify_binary_operation (optab_to_code (binoptab
),
751 return expand_binop (mode
, binoptab
, op0
, op1
, target
, unsignedp
, methods
);
754 /* Like simplify_expand_binop, but always put the result in TARGET.
755 Return true if the expansion succeeded. */
758 force_expand_binop (machine_mode mode
, optab binoptab
,
759 rtx op0
, rtx op1
, rtx target
, int unsignedp
,
760 enum optab_methods methods
)
762 rtx x
= simplify_expand_binop (mode
, binoptab
, op0
, op1
,
763 target
, unsignedp
, methods
);
767 emit_move_insn (target
, x
);
771 /* Create a new vector value in VMODE with all elements set to OP. The
772 mode of OP must be the element mode of VMODE. If OP is a constant,
773 then the return value will be a constant. */
776 expand_vector_broadcast (machine_mode vmode
, rtx op
)
778 enum insn_code icode
;
783 gcc_checking_assert (VECTOR_MODE_P (vmode
));
785 n
= GET_MODE_NUNITS (vmode
);
786 vec
= rtvec_alloc (n
);
787 for (i
= 0; i
< n
; ++i
)
788 RTVEC_ELT (vec
, i
) = op
;
791 return gen_rtx_CONST_VECTOR (vmode
, vec
);
793 /* ??? If the target doesn't have a vec_init, then we have no easy way
794 of performing this operation. Most of this sort of generic support
795 is hidden away in the vector lowering support in gimple. */
796 icode
= optab_handler (vec_init_optab
, vmode
);
797 if (icode
== CODE_FOR_nothing
)
800 ret
= gen_reg_rtx (vmode
);
801 emit_insn (GEN_FCN (icode
) (ret
, gen_rtx_PARALLEL (vmode
, vec
)));
806 /* This subroutine of expand_doubleword_shift handles the cases in which
807 the effective shift value is >= BITS_PER_WORD. The arguments and return
808 value are the same as for the parent routine, except that SUPERWORD_OP1
809 is the shift count to use when shifting OUTOF_INPUT into INTO_TARGET.
810 INTO_TARGET may be null if the caller has decided to calculate it. */
813 expand_superword_shift (optab binoptab
, rtx outof_input
, rtx superword_op1
,
814 rtx outof_target
, rtx into_target
,
815 int unsignedp
, enum optab_methods methods
)
817 if (into_target
!= 0)
818 if (!force_expand_binop (word_mode
, binoptab
, outof_input
, superword_op1
,
819 into_target
, unsignedp
, methods
))
822 if (outof_target
!= 0)
824 /* For a signed right shift, we must fill OUTOF_TARGET with copies
825 of the sign bit, otherwise we must fill it with zeros. */
826 if (binoptab
!= ashr_optab
)
827 emit_move_insn (outof_target
, CONST0_RTX (word_mode
));
829 if (!force_expand_binop (word_mode
, binoptab
,
830 outof_input
, GEN_INT (BITS_PER_WORD
- 1),
831 outof_target
, unsignedp
, methods
))
837 /* This subroutine of expand_doubleword_shift handles the cases in which
838 the effective shift value is < BITS_PER_WORD. The arguments and return
839 value are the same as for the parent routine. */
842 expand_subword_shift (machine_mode op1_mode
, optab binoptab
,
843 rtx outof_input
, rtx into_input
, rtx op1
,
844 rtx outof_target
, rtx into_target
,
845 int unsignedp
, enum optab_methods methods
,
846 unsigned HOST_WIDE_INT shift_mask
)
848 optab reverse_unsigned_shift
, unsigned_shift
;
851 reverse_unsigned_shift
= (binoptab
== ashl_optab
? lshr_optab
: ashl_optab
);
852 unsigned_shift
= (binoptab
== ashl_optab
? ashl_optab
: lshr_optab
);
854 /* The low OP1 bits of INTO_TARGET come from the high bits of OUTOF_INPUT.
855 We therefore need to shift OUTOF_INPUT by (BITS_PER_WORD - OP1) bits in
856 the opposite direction to BINOPTAB. */
857 if (CONSTANT_P (op1
) || shift_mask
>= BITS_PER_WORD
)
859 carries
= outof_input
;
860 tmp
= immed_wide_int_const (wi::shwi (BITS_PER_WORD
,
861 op1_mode
), op1_mode
);
862 tmp
= simplify_expand_binop (op1_mode
, sub_optab
, tmp
, op1
,
867 /* We must avoid shifting by BITS_PER_WORD bits since that is either
868 the same as a zero shift (if shift_mask == BITS_PER_WORD - 1) or
869 has unknown behavior. Do a single shift first, then shift by the
870 remainder. It's OK to use ~OP1 as the remainder if shift counts
871 are truncated to the mode size. */
872 carries
= expand_binop (word_mode
, reverse_unsigned_shift
,
873 outof_input
, const1_rtx
, 0, unsignedp
, methods
);
874 if (shift_mask
== BITS_PER_WORD
- 1)
876 tmp
= immed_wide_int_const
877 (wi::minus_one (GET_MODE_PRECISION (op1_mode
)), op1_mode
);
878 tmp
= simplify_expand_binop (op1_mode
, xor_optab
, op1
, tmp
,
883 tmp
= immed_wide_int_const (wi::shwi (BITS_PER_WORD
- 1,
884 op1_mode
), op1_mode
);
885 tmp
= simplify_expand_binop (op1_mode
, sub_optab
, tmp
, op1
,
889 if (tmp
== 0 || carries
== 0)
891 carries
= expand_binop (word_mode
, reverse_unsigned_shift
,
892 carries
, tmp
, 0, unsignedp
, methods
);
896 /* Shift INTO_INPUT logically by OP1. This is the last use of INTO_INPUT
897 so the result can go directly into INTO_TARGET if convenient. */
898 tmp
= expand_binop (word_mode
, unsigned_shift
, into_input
, op1
,
899 into_target
, unsignedp
, methods
);
903 /* Now OR in the bits carried over from OUTOF_INPUT. */
904 if (!force_expand_binop (word_mode
, ior_optab
, tmp
, carries
,
905 into_target
, unsignedp
, methods
))
908 /* Use a standard word_mode shift for the out-of half. */
909 if (outof_target
!= 0)
910 if (!force_expand_binop (word_mode
, binoptab
, outof_input
, op1
,
911 outof_target
, unsignedp
, methods
))
918 #ifdef HAVE_conditional_move
919 /* Try implementing expand_doubleword_shift using conditional moves.
920 The shift is by < BITS_PER_WORD if (CMP_CODE CMP1 CMP2) is true,
921 otherwise it is by >= BITS_PER_WORD. SUBWORD_OP1 and SUPERWORD_OP1
922 are the shift counts to use in the former and latter case. All other
923 arguments are the same as the parent routine. */
926 expand_doubleword_shift_condmove (machine_mode op1_mode
, optab binoptab
,
927 enum rtx_code cmp_code
, rtx cmp1
, rtx cmp2
,
928 rtx outof_input
, rtx into_input
,
929 rtx subword_op1
, rtx superword_op1
,
930 rtx outof_target
, rtx into_target
,
931 int unsignedp
, enum optab_methods methods
,
932 unsigned HOST_WIDE_INT shift_mask
)
934 rtx outof_superword
, into_superword
;
936 /* Put the superword version of the output into OUTOF_SUPERWORD and
938 outof_superword
= outof_target
!= 0 ? gen_reg_rtx (word_mode
) : 0;
939 if (outof_target
!= 0 && subword_op1
== superword_op1
)
941 /* The value INTO_TARGET >> SUBWORD_OP1, which we later store in
942 OUTOF_TARGET, is the same as the value of INTO_SUPERWORD. */
943 into_superword
= outof_target
;
944 if (!expand_superword_shift (binoptab
, outof_input
, superword_op1
,
945 outof_superword
, 0, unsignedp
, methods
))
950 into_superword
= gen_reg_rtx (word_mode
);
951 if (!expand_superword_shift (binoptab
, outof_input
, superword_op1
,
952 outof_superword
, into_superword
,
957 /* Put the subword version directly in OUTOF_TARGET and INTO_TARGET. */
958 if (!expand_subword_shift (op1_mode
, binoptab
,
959 outof_input
, into_input
, subword_op1
,
960 outof_target
, into_target
,
961 unsignedp
, methods
, shift_mask
))
964 /* Select between them. Do the INTO half first because INTO_SUPERWORD
965 might be the current value of OUTOF_TARGET. */
966 if (!emit_conditional_move (into_target
, cmp_code
, cmp1
, cmp2
, op1_mode
,
967 into_target
, into_superword
, word_mode
, false))
970 if (outof_target
!= 0)
971 if (!emit_conditional_move (outof_target
, cmp_code
, cmp1
, cmp2
, op1_mode
,
972 outof_target
, outof_superword
,
980 /* Expand a doubleword shift (ashl, ashr or lshr) using word-mode shifts.
981 OUTOF_INPUT and INTO_INPUT are the two word-sized halves of the first
982 input operand; the shift moves bits in the direction OUTOF_INPUT->
983 INTO_TARGET. OUTOF_TARGET and INTO_TARGET are the equivalent words
984 of the target. OP1 is the shift count and OP1_MODE is its mode.
985 If OP1 is constant, it will have been truncated as appropriate
986 and is known to be nonzero.
988 If SHIFT_MASK is zero, the result of word shifts is undefined when the
989 shift count is outside the range [0, BITS_PER_WORD). This routine must
990 avoid generating such shifts for OP1s in the range [0, BITS_PER_WORD * 2).
992 If SHIFT_MASK is nonzero, all word-mode shift counts are effectively
993 masked by it and shifts in the range [BITS_PER_WORD, SHIFT_MASK) will
994 fill with zeros or sign bits as appropriate.
996 If SHIFT_MASK is BITS_PER_WORD - 1, this routine will synthesize
997 a doubleword shift whose equivalent mask is BITS_PER_WORD * 2 - 1.
998 Doing this preserves semantics required by SHIFT_COUNT_TRUNCATED.
999 In all other cases, shifts by values outside [0, BITS_PER_UNIT * 2)
1002 BINOPTAB, UNSIGNEDP and METHODS are as for expand_binop. This function
1003 may not use INTO_INPUT after modifying INTO_TARGET, and similarly for
1004 OUTOF_INPUT and OUTOF_TARGET. OUTOF_TARGET can be null if the parent
1005 function wants to calculate it itself.
1007 Return true if the shift could be successfully synthesized. */
1010 expand_doubleword_shift (machine_mode op1_mode
, optab binoptab
,
1011 rtx outof_input
, rtx into_input
, rtx op1
,
1012 rtx outof_target
, rtx into_target
,
1013 int unsignedp
, enum optab_methods methods
,
1014 unsigned HOST_WIDE_INT shift_mask
)
1016 rtx superword_op1
, tmp
, cmp1
, cmp2
;
1017 enum rtx_code cmp_code
;
1019 /* See if word-mode shifts by BITS_PER_WORD...BITS_PER_WORD * 2 - 1 will
1020 fill the result with sign or zero bits as appropriate. If so, the value
1021 of OUTOF_TARGET will always be (SHIFT OUTOF_INPUT OP1). Recursively call
1022 this routine to calculate INTO_TARGET (which depends on both OUTOF_INPUT
1023 and INTO_INPUT), then emit code to set up OUTOF_TARGET.
1025 This isn't worthwhile for constant shifts since the optimizers will
1026 cope better with in-range shift counts. */
1027 if (shift_mask
>= BITS_PER_WORD
1028 && outof_target
!= 0
1029 && !CONSTANT_P (op1
))
1031 if (!expand_doubleword_shift (op1_mode
, binoptab
,
1032 outof_input
, into_input
, op1
,
1034 unsignedp
, methods
, shift_mask
))
1036 if (!force_expand_binop (word_mode
, binoptab
, outof_input
, op1
,
1037 outof_target
, unsignedp
, methods
))
1042 /* Set CMP_CODE, CMP1 and CMP2 so that the rtx (CMP_CODE CMP1 CMP2)
1043 is true when the effective shift value is less than BITS_PER_WORD.
1044 Set SUPERWORD_OP1 to the shift count that should be used to shift
1045 OUTOF_INPUT into INTO_TARGET when the condition is false. */
1046 tmp
= immed_wide_int_const (wi::shwi (BITS_PER_WORD
, op1_mode
), op1_mode
);
1047 if (!CONSTANT_P (op1
) && shift_mask
== BITS_PER_WORD
- 1)
1049 /* Set CMP1 to OP1 & BITS_PER_WORD. The result is zero iff OP1
1050 is a subword shift count. */
1051 cmp1
= simplify_expand_binop (op1_mode
, and_optab
, op1
, tmp
,
1053 cmp2
= CONST0_RTX (op1_mode
);
1055 superword_op1
= op1
;
1059 /* Set CMP1 to OP1 - BITS_PER_WORD. */
1060 cmp1
= simplify_expand_binop (op1_mode
, sub_optab
, op1
, tmp
,
1062 cmp2
= CONST0_RTX (op1_mode
);
1064 superword_op1
= cmp1
;
1069 /* If we can compute the condition at compile time, pick the
1070 appropriate subroutine. */
1071 tmp
= simplify_relational_operation (cmp_code
, SImode
, op1_mode
, cmp1
, cmp2
);
1072 if (tmp
!= 0 && CONST_INT_P (tmp
))
1074 if (tmp
== const0_rtx
)
1075 return expand_superword_shift (binoptab
, outof_input
, superword_op1
,
1076 outof_target
, into_target
,
1077 unsignedp
, methods
);
1079 return expand_subword_shift (op1_mode
, binoptab
,
1080 outof_input
, into_input
, op1
,
1081 outof_target
, into_target
,
1082 unsignedp
, methods
, shift_mask
);
1085 #ifdef HAVE_conditional_move
1086 /* Try using conditional moves to generate straight-line code. */
1088 rtx_insn
*start
= get_last_insn ();
1089 if (expand_doubleword_shift_condmove (op1_mode
, binoptab
,
1090 cmp_code
, cmp1
, cmp2
,
1091 outof_input
, into_input
,
1093 outof_target
, into_target
,
1094 unsignedp
, methods
, shift_mask
))
1096 delete_insns_since (start
);
1100 /* As a last resort, use branches to select the correct alternative. */
1101 rtx_code_label
*subword_label
= gen_label_rtx ();
1102 rtx_code_label
*done_label
= gen_label_rtx ();
1105 do_compare_rtx_and_jump (cmp1
, cmp2
, cmp_code
, false, op1_mode
,
1106 0, 0, subword_label
, -1);
1109 if (!expand_superword_shift (binoptab
, outof_input
, superword_op1
,
1110 outof_target
, into_target
,
1111 unsignedp
, methods
))
1114 emit_jump_insn (gen_jump (done_label
));
1116 emit_label (subword_label
);
1118 if (!expand_subword_shift (op1_mode
, binoptab
,
1119 outof_input
, into_input
, op1
,
1120 outof_target
, into_target
,
1121 unsignedp
, methods
, shift_mask
))
1124 emit_label (done_label
);
1128 /* Subroutine of expand_binop. Perform a double word multiplication of
1129 operands OP0 and OP1 both of mode MODE, which is exactly twice as wide
1130 as the target's word_mode. This function return NULL_RTX if anything
1131 goes wrong, in which case it may have already emitted instructions
1132 which need to be deleted.
1134 If we want to multiply two two-word values and have normal and widening
1135 multiplies of single-word values, we can do this with three smaller
1138 The multiplication proceeds as follows:
1139 _______________________
1140 [__op0_high_|__op0_low__]
1141 _______________________
1142 * [__op1_high_|__op1_low__]
1143 _______________________________________________
1144 _______________________
1145 (1) [__op0_low__*__op1_low__]
1146 _______________________
1147 (2a) [__op0_low__*__op1_high_]
1148 _______________________
1149 (2b) [__op0_high_*__op1_low__]
1150 _______________________
1151 (3) [__op0_high_*__op1_high_]
1154 This gives a 4-word result. Since we are only interested in the
1155 lower 2 words, partial result (3) and the upper words of (2a) and
1156 (2b) don't need to be calculated. Hence (2a) and (2b) can be
1157 calculated using non-widening multiplication.
1159 (1), however, needs to be calculated with an unsigned widening
1160 multiplication. If this operation is not directly supported we
1161 try using a signed widening multiplication and adjust the result.
1162 This adjustment works as follows:
1164 If both operands are positive then no adjustment is needed.
1166 If the operands have different signs, for example op0_low < 0 and
1167 op1_low >= 0, the instruction treats the most significant bit of
1168 op0_low as a sign bit instead of a bit with significance
1169 2**(BITS_PER_WORD-1), i.e. the instruction multiplies op1_low
1170 with 2**BITS_PER_WORD - op0_low, and two's complements the
1171 result. Conclusion: We need to add op1_low * 2**BITS_PER_WORD to
1174 Similarly, if both operands are negative, we need to add
1175 (op0_low + op1_low) * 2**BITS_PER_WORD.
1177 We use a trick to adjust quickly. We logically shift op0_low right
1178 (op1_low) BITS_PER_WORD-1 steps to get 0 or 1, and add this to
1179 op0_high (op1_high) before it is used to calculate 2b (2a). If no
1180 logical shift exists, we do an arithmetic right shift and subtract
1184 expand_doubleword_mult (machine_mode mode
, rtx op0
, rtx op1
, rtx target
,
1185 bool umulp
, enum optab_methods methods
)
1187 int low
= (WORDS_BIG_ENDIAN
? 1 : 0);
1188 int high
= (WORDS_BIG_ENDIAN
? 0 : 1);
1189 rtx wordm1
= umulp
? NULL_RTX
: GEN_INT (BITS_PER_WORD
- 1);
1190 rtx product
, adjust
, product_high
, temp
;
1192 rtx op0_high
= operand_subword_force (op0
, high
, mode
);
1193 rtx op0_low
= operand_subword_force (op0
, low
, mode
);
1194 rtx op1_high
= operand_subword_force (op1
, high
, mode
);
1195 rtx op1_low
= operand_subword_force (op1
, low
, mode
);
1197 /* If we're using an unsigned multiply to directly compute the product
1198 of the low-order words of the operands and perform any required
1199 adjustments of the operands, we begin by trying two more multiplications
1200 and then computing the appropriate sum.
1202 We have checked above that the required addition is provided.
1203 Full-word addition will normally always succeed, especially if
1204 it is provided at all, so we don't worry about its failure. The
1205 multiplication may well fail, however, so we do handle that. */
1209 /* ??? This could be done with emit_store_flag where available. */
1210 temp
= expand_binop (word_mode
, lshr_optab
, op0_low
, wordm1
,
1211 NULL_RTX
, 1, methods
);
1213 op0_high
= expand_binop (word_mode
, add_optab
, op0_high
, temp
,
1214 NULL_RTX
, 0, OPTAB_DIRECT
);
1217 temp
= expand_binop (word_mode
, ashr_optab
, op0_low
, wordm1
,
1218 NULL_RTX
, 0, methods
);
1221 op0_high
= expand_binop (word_mode
, sub_optab
, op0_high
, temp
,
1222 NULL_RTX
, 0, OPTAB_DIRECT
);
1229 adjust
= expand_binop (word_mode
, smul_optab
, op0_high
, op1_low
,
1230 NULL_RTX
, 0, OPTAB_DIRECT
);
1234 /* OP0_HIGH should now be dead. */
1238 /* ??? This could be done with emit_store_flag where available. */
1239 temp
= expand_binop (word_mode
, lshr_optab
, op1_low
, wordm1
,
1240 NULL_RTX
, 1, methods
);
1242 op1_high
= expand_binop (word_mode
, add_optab
, op1_high
, temp
,
1243 NULL_RTX
, 0, OPTAB_DIRECT
);
1246 temp
= expand_binop (word_mode
, ashr_optab
, op1_low
, wordm1
,
1247 NULL_RTX
, 0, methods
);
1250 op1_high
= expand_binop (word_mode
, sub_optab
, op1_high
, temp
,
1251 NULL_RTX
, 0, OPTAB_DIRECT
);
1258 temp
= expand_binop (word_mode
, smul_optab
, op1_high
, op0_low
,
1259 NULL_RTX
, 0, OPTAB_DIRECT
);
1263 /* OP1_HIGH should now be dead. */
1265 adjust
= expand_binop (word_mode
, add_optab
, adjust
, temp
,
1266 NULL_RTX
, 0, OPTAB_DIRECT
);
1268 if (target
&& !REG_P (target
))
1272 product
= expand_binop (mode
, umul_widen_optab
, op0_low
, op1_low
,
1273 target
, 1, OPTAB_DIRECT
);
1275 product
= expand_binop (mode
, smul_widen_optab
, op0_low
, op1_low
,
1276 target
, 1, OPTAB_DIRECT
);
1281 product_high
= operand_subword (product
, high
, 1, mode
);
1282 adjust
= expand_binop (word_mode
, add_optab
, product_high
, adjust
,
1283 NULL_RTX
, 0, OPTAB_DIRECT
);
1284 emit_move_insn (product_high
, adjust
);
1288 /* Wrapper around expand_binop which takes an rtx code to specify
1289 the operation to perform, not an optab pointer. All other
1290 arguments are the same. */
1292 expand_simple_binop (machine_mode mode
, enum rtx_code code
, rtx op0
,
1293 rtx op1
, rtx target
, int unsignedp
,
1294 enum optab_methods methods
)
1296 optab binop
= code_to_optab (code
);
1299 return expand_binop (mode
, binop
, op0
, op1
, target
, unsignedp
, methods
);
1302 /* Return whether OP0 and OP1 should be swapped when expanding a commutative
1303 binop. Order them according to commutative_operand_precedence and, if
1304 possible, try to put TARGET or a pseudo first. */
1306 swap_commutative_operands_with_target (rtx target
, rtx op0
, rtx op1
)
1308 int op0_prec
= commutative_operand_precedence (op0
);
1309 int op1_prec
= commutative_operand_precedence (op1
);
1311 if (op0_prec
< op1_prec
)
1314 if (op0_prec
> op1_prec
)
1317 /* With equal precedence, both orders are ok, but it is better if the
1318 first operand is TARGET, or if both TARGET and OP0 are pseudos. */
1319 if (target
== 0 || REG_P (target
))
1320 return (REG_P (op1
) && !REG_P (op0
)) || target
== op1
;
1322 return rtx_equal_p (op1
, target
);
1325 /* Return true if BINOPTAB implements a shift operation. */
1328 shift_optab_p (optab binoptab
)
1330 switch (optab_to_code (binoptab
))
1346 /* Return true if BINOPTAB implements a commutative binary operation. */
1349 commutative_optab_p (optab binoptab
)
1351 return (GET_RTX_CLASS (optab_to_code (binoptab
)) == RTX_COMM_ARITH
1352 || binoptab
== smul_widen_optab
1353 || binoptab
== umul_widen_optab
1354 || binoptab
== smul_highpart_optab
1355 || binoptab
== umul_highpart_optab
);
1358 /* X is to be used in mode MODE as operand OPN to BINOPTAB. If we're
1359 optimizing, and if the operand is a constant that costs more than
1360 1 instruction, force the constant into a register and return that
1361 register. Return X otherwise. UNSIGNEDP says whether X is unsigned. */
1364 avoid_expensive_constant (machine_mode mode
, optab binoptab
,
1365 int opn
, rtx x
, bool unsignedp
)
1367 bool speed
= optimize_insn_for_speed_p ();
1369 if (mode
!= VOIDmode
1372 && (rtx_cost (x
, optab_to_code (binoptab
), opn
, speed
)
1373 > set_src_cost (x
, speed
)))
1375 if (CONST_INT_P (x
))
1377 HOST_WIDE_INT intval
= trunc_int_for_mode (INTVAL (x
), mode
);
1378 if (intval
!= INTVAL (x
))
1379 x
= GEN_INT (intval
);
1382 x
= convert_modes (mode
, VOIDmode
, x
, unsignedp
);
1383 x
= force_reg (mode
, x
);
1388 /* Helper function for expand_binop: handle the case where there
1389 is an insn that directly implements the indicated operation.
1390 Returns null if this is not possible. */
1392 expand_binop_directly (machine_mode mode
, optab binoptab
,
1394 rtx target
, int unsignedp
, enum optab_methods methods
,
1397 machine_mode from_mode
= widened_mode (mode
, op0
, op1
);
1398 enum insn_code icode
= find_widening_optab_handler (binoptab
, mode
,
1400 machine_mode xmode0
= insn_data
[(int) icode
].operand
[1].mode
;
1401 machine_mode xmode1
= insn_data
[(int) icode
].operand
[2].mode
;
1402 machine_mode mode0
, mode1
, tmp_mode
;
1403 struct expand_operand ops
[3];
1406 rtx xop0
= op0
, xop1
= op1
;
1409 /* If it is a commutative operator and the modes would match
1410 if we would swap the operands, we can save the conversions. */
1411 commutative_p
= commutative_optab_p (binoptab
);
1413 && GET_MODE (xop0
) != xmode0
&& GET_MODE (xop1
) != xmode1
1414 && GET_MODE (xop0
) == xmode1
&& GET_MODE (xop1
) == xmode1
)
1421 /* If we are optimizing, force expensive constants into a register. */
1422 xop0
= avoid_expensive_constant (xmode0
, binoptab
, 0, xop0
, unsignedp
);
1423 if (!shift_optab_p (binoptab
))
1424 xop1
= avoid_expensive_constant (xmode1
, binoptab
, 1, xop1
, unsignedp
);
1426 /* In case the insn wants input operands in modes different from
1427 those of the actual operands, convert the operands. It would
1428 seem that we don't need to convert CONST_INTs, but we do, so
1429 that they're properly zero-extended, sign-extended or truncated
1432 mode0
= GET_MODE (xop0
) != VOIDmode
? GET_MODE (xop0
) : mode
;
1433 if (xmode0
!= VOIDmode
&& xmode0
!= mode0
)
1435 xop0
= convert_modes (xmode0
, mode0
, xop0
, unsignedp
);
1439 mode1
= GET_MODE (xop1
) != VOIDmode
? GET_MODE (xop1
) : mode
;
1440 if (xmode1
!= VOIDmode
&& xmode1
!= mode1
)
1442 xop1
= convert_modes (xmode1
, mode1
, xop1
, unsignedp
);
1446 /* If operation is commutative,
1447 try to make the first operand a register.
1448 Even better, try to make it the same as the target.
1449 Also try to make the last operand a constant. */
1451 && swap_commutative_operands_with_target (target
, xop0
, xop1
))
1458 /* Now, if insn's predicates don't allow our operands, put them into
1461 if (binoptab
== vec_pack_trunc_optab
1462 || binoptab
== vec_pack_usat_optab
1463 || binoptab
== vec_pack_ssat_optab
1464 || binoptab
== vec_pack_ufix_trunc_optab
1465 || binoptab
== vec_pack_sfix_trunc_optab
)
1467 /* The mode of the result is different then the mode of the
1469 tmp_mode
= insn_data
[(int) icode
].operand
[0].mode
;
1470 if (GET_MODE_NUNITS (tmp_mode
) != 2 * GET_MODE_NUNITS (mode
))
1472 delete_insns_since (last
);
1479 create_output_operand (&ops
[0], target
, tmp_mode
);
1480 create_input_operand (&ops
[1], xop0
, mode0
);
1481 create_input_operand (&ops
[2], xop1
, mode1
);
1482 pat
= maybe_gen_insn (icode
, 3, ops
);
1485 /* If PAT is composed of more than one insn, try to add an appropriate
1486 REG_EQUAL note to it. If we can't because TEMP conflicts with an
1487 operand, call expand_binop again, this time without a target. */
1488 if (INSN_P (pat
) && NEXT_INSN (as_a
<rtx_insn
*> (pat
)) != NULL_RTX
1489 && ! add_equal_note (as_a
<rtx_insn
*> (pat
), ops
[0].value
,
1490 optab_to_code (binoptab
),
1491 ops
[1].value
, ops
[2].value
))
1493 delete_insns_since (last
);
1494 return expand_binop (mode
, binoptab
, op0
, op1
, NULL_RTX
,
1495 unsignedp
, methods
);
1499 return ops
[0].value
;
1501 delete_insns_since (last
);
1505 /* Generate code to perform an operation specified by BINOPTAB
1506 on operands OP0 and OP1, with result having machine-mode MODE.
1508 UNSIGNEDP is for the case where we have to widen the operands
1509 to perform the operation. It says to use zero-extension.
1511 If TARGET is nonzero, the value
1512 is generated there, if it is convenient to do so.
1513 In all cases an rtx is returned for the locus of the value;
1514 this may or may not be TARGET. */
1517 expand_binop (machine_mode mode
, optab binoptab
, rtx op0
, rtx op1
,
1518 rtx target
, int unsignedp
, enum optab_methods methods
)
1520 enum optab_methods next_methods
1521 = (methods
== OPTAB_LIB
|| methods
== OPTAB_LIB_WIDEN
1522 ? OPTAB_WIDEN
: methods
);
1523 enum mode_class mclass
;
1524 machine_mode wider_mode
;
1527 rtx_insn
*entry_last
= get_last_insn ();
1530 mclass
= GET_MODE_CLASS (mode
);
1532 /* If subtracting an integer constant, convert this into an addition of
1533 the negated constant. */
1535 if (binoptab
== sub_optab
&& CONST_INT_P (op1
))
1537 op1
= negate_rtx (mode
, op1
);
1538 binoptab
= add_optab
;
1541 /* Record where to delete back to if we backtrack. */
1542 last
= get_last_insn ();
1544 /* If we can do it with a three-operand insn, do so. */
1546 if (methods
!= OPTAB_MUST_WIDEN
1547 && find_widening_optab_handler (binoptab
, mode
,
1548 widened_mode (mode
, op0
, op1
), 1)
1549 != CODE_FOR_nothing
)
1551 temp
= expand_binop_directly (mode
, binoptab
, op0
, op1
, target
,
1552 unsignedp
, methods
, last
);
1557 /* If we were trying to rotate, and that didn't work, try rotating
1558 the other direction before falling back to shifts and bitwise-or. */
1559 if (((binoptab
== rotl_optab
1560 && optab_handler (rotr_optab
, mode
) != CODE_FOR_nothing
)
1561 || (binoptab
== rotr_optab
1562 && optab_handler (rotl_optab
, mode
) != CODE_FOR_nothing
))
1563 && mclass
== MODE_INT
)
1565 optab otheroptab
= (binoptab
== rotl_optab
? rotr_optab
: rotl_optab
);
1567 unsigned int bits
= GET_MODE_PRECISION (mode
);
1569 if (CONST_INT_P (op1
))
1570 newop1
= GEN_INT (bits
- INTVAL (op1
));
1571 else if (targetm
.shift_truncation_mask (mode
) == bits
- 1)
1572 newop1
= negate_rtx (GET_MODE (op1
), op1
);
1574 newop1
= expand_binop (GET_MODE (op1
), sub_optab
,
1575 gen_int_mode (bits
, GET_MODE (op1
)), op1
,
1576 NULL_RTX
, unsignedp
, OPTAB_DIRECT
);
1578 temp
= expand_binop_directly (mode
, otheroptab
, op0
, newop1
,
1579 target
, unsignedp
, methods
, last
);
1584 /* If this is a multiply, see if we can do a widening operation that
1585 takes operands of this mode and makes a wider mode. */
1587 if (binoptab
== smul_optab
1588 && GET_MODE_2XWIDER_MODE (mode
) != VOIDmode
1589 && (widening_optab_handler ((unsignedp
? umul_widen_optab
1590 : smul_widen_optab
),
1591 GET_MODE_2XWIDER_MODE (mode
), mode
)
1592 != CODE_FOR_nothing
))
1594 temp
= expand_binop (GET_MODE_2XWIDER_MODE (mode
),
1595 unsignedp
? umul_widen_optab
: smul_widen_optab
,
1596 op0
, op1
, NULL_RTX
, unsignedp
, OPTAB_DIRECT
);
1600 if (GET_MODE_CLASS (mode
) == MODE_INT
1601 && TRULY_NOOP_TRUNCATION_MODES_P (mode
, GET_MODE (temp
)))
1602 return gen_lowpart (mode
, temp
);
1604 return convert_to_mode (mode
, temp
, unsignedp
);
1608 /* If this is a vector shift by a scalar, see if we can do a vector
1609 shift by a vector. If so, broadcast the scalar into a vector. */
1610 if (mclass
== MODE_VECTOR_INT
)
1612 optab otheroptab
= unknown_optab
;
1614 if (binoptab
== ashl_optab
)
1615 otheroptab
= vashl_optab
;
1616 else if (binoptab
== ashr_optab
)
1617 otheroptab
= vashr_optab
;
1618 else if (binoptab
== lshr_optab
)
1619 otheroptab
= vlshr_optab
;
1620 else if (binoptab
== rotl_optab
)
1621 otheroptab
= vrotl_optab
;
1622 else if (binoptab
== rotr_optab
)
1623 otheroptab
= vrotr_optab
;
1625 if (otheroptab
&& optab_handler (otheroptab
, mode
) != CODE_FOR_nothing
)
1627 rtx vop1
= expand_vector_broadcast (mode
, op1
);
1630 temp
= expand_binop_directly (mode
, otheroptab
, op0
, vop1
,
1631 target
, unsignedp
, methods
, last
);
1638 /* Look for a wider mode of the same class for which we think we
1639 can open-code the operation. Check for a widening multiply at the
1640 wider mode as well. */
1642 if (CLASS_HAS_WIDER_MODES_P (mclass
)
1643 && methods
!= OPTAB_DIRECT
&& methods
!= OPTAB_LIB
)
1644 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
1645 wider_mode
!= VOIDmode
;
1646 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
1648 if (optab_handler (binoptab
, wider_mode
) != CODE_FOR_nothing
1649 || (binoptab
== smul_optab
1650 && GET_MODE_WIDER_MODE (wider_mode
) != VOIDmode
1651 && (find_widening_optab_handler ((unsignedp
1653 : smul_widen_optab
),
1654 GET_MODE_WIDER_MODE (wider_mode
),
1656 != CODE_FOR_nothing
)))
1658 rtx xop0
= op0
, xop1
= op1
;
1661 /* For certain integer operations, we need not actually extend
1662 the narrow operands, as long as we will truncate
1663 the results to the same narrowness. */
1665 if ((binoptab
== ior_optab
|| binoptab
== and_optab
1666 || binoptab
== xor_optab
1667 || binoptab
== add_optab
|| binoptab
== sub_optab
1668 || binoptab
== smul_optab
|| binoptab
== ashl_optab
)
1669 && mclass
== MODE_INT
)
1672 xop0
= avoid_expensive_constant (mode
, binoptab
, 0,
1674 if (binoptab
!= ashl_optab
)
1675 xop1
= avoid_expensive_constant (mode
, binoptab
, 1,
1679 xop0
= widen_operand (xop0
, wider_mode
, mode
, unsignedp
, no_extend
);
1681 /* The second operand of a shift must always be extended. */
1682 xop1
= widen_operand (xop1
, wider_mode
, mode
, unsignedp
,
1683 no_extend
&& binoptab
!= ashl_optab
);
1685 temp
= expand_binop (wider_mode
, binoptab
, xop0
, xop1
, NULL_RTX
,
1686 unsignedp
, OPTAB_DIRECT
);
1689 if (mclass
!= MODE_INT
1690 || !TRULY_NOOP_TRUNCATION_MODES_P (mode
, wider_mode
))
1693 target
= gen_reg_rtx (mode
);
1694 convert_move (target
, temp
, 0);
1698 return gen_lowpart (mode
, temp
);
1701 delete_insns_since (last
);
1705 /* If operation is commutative,
1706 try to make the first operand a register.
1707 Even better, try to make it the same as the target.
1708 Also try to make the last operand a constant. */
1709 if (commutative_optab_p (binoptab
)
1710 && swap_commutative_operands_with_target (target
, op0
, op1
))
1717 /* These can be done a word at a time. */
1718 if ((binoptab
== and_optab
|| binoptab
== ior_optab
|| binoptab
== xor_optab
)
1719 && mclass
== MODE_INT
1720 && GET_MODE_SIZE (mode
) > UNITS_PER_WORD
1721 && optab_handler (binoptab
, word_mode
) != CODE_FOR_nothing
)
1726 /* If TARGET is the same as one of the operands, the REG_EQUAL note
1727 won't be accurate, so use a new target. */
1731 || !valid_multiword_target_p (target
))
1732 target
= gen_reg_rtx (mode
);
1736 /* Do the actual arithmetic. */
1737 for (i
= 0; i
< GET_MODE_BITSIZE (mode
) / BITS_PER_WORD
; i
++)
1739 rtx target_piece
= operand_subword (target
, i
, 1, mode
);
1740 rtx x
= expand_binop (word_mode
, binoptab
,
1741 operand_subword_force (op0
, i
, mode
),
1742 operand_subword_force (op1
, i
, mode
),
1743 target_piece
, unsignedp
, next_methods
);
1748 if (target_piece
!= x
)
1749 emit_move_insn (target_piece
, x
);
1752 insns
= get_insns ();
1755 if (i
== GET_MODE_BITSIZE (mode
) / BITS_PER_WORD
)
1762 /* Synthesize double word shifts from single word shifts. */
1763 if ((binoptab
== lshr_optab
|| binoptab
== ashl_optab
1764 || binoptab
== ashr_optab
)
1765 && mclass
== MODE_INT
1766 && (CONST_INT_P (op1
) || optimize_insn_for_speed_p ())
1767 && GET_MODE_SIZE (mode
) == 2 * UNITS_PER_WORD
1768 && GET_MODE_PRECISION (mode
) == GET_MODE_BITSIZE (mode
)
1769 && optab_handler (binoptab
, word_mode
) != CODE_FOR_nothing
1770 && optab_handler (ashl_optab
, word_mode
) != CODE_FOR_nothing
1771 && optab_handler (lshr_optab
, word_mode
) != CODE_FOR_nothing
)
1773 unsigned HOST_WIDE_INT shift_mask
, double_shift_mask
;
1774 machine_mode op1_mode
;
1776 double_shift_mask
= targetm
.shift_truncation_mask (mode
);
1777 shift_mask
= targetm
.shift_truncation_mask (word_mode
);
1778 op1_mode
= GET_MODE (op1
) != VOIDmode
? GET_MODE (op1
) : word_mode
;
1780 /* Apply the truncation to constant shifts. */
1781 if (double_shift_mask
> 0 && CONST_INT_P (op1
))
1782 op1
= GEN_INT (INTVAL (op1
) & double_shift_mask
);
1784 if (op1
== CONST0_RTX (op1_mode
))
1787 /* Make sure that this is a combination that expand_doubleword_shift
1788 can handle. See the comments there for details. */
1789 if (double_shift_mask
== 0
1790 || (shift_mask
== BITS_PER_WORD
- 1
1791 && double_shift_mask
== BITS_PER_WORD
* 2 - 1))
1794 rtx into_target
, outof_target
;
1795 rtx into_input
, outof_input
;
1796 int left_shift
, outof_word
;
1798 /* If TARGET is the same as one of the operands, the REG_EQUAL note
1799 won't be accurate, so use a new target. */
1803 || !valid_multiword_target_p (target
))
1804 target
= gen_reg_rtx (mode
);
1808 /* OUTOF_* is the word we are shifting bits away from, and
1809 INTO_* is the word that we are shifting bits towards, thus
1810 they differ depending on the direction of the shift and
1811 WORDS_BIG_ENDIAN. */
1813 left_shift
= binoptab
== ashl_optab
;
1814 outof_word
= left_shift
^ ! WORDS_BIG_ENDIAN
;
1816 outof_target
= operand_subword (target
, outof_word
, 1, mode
);
1817 into_target
= operand_subword (target
, 1 - outof_word
, 1, mode
);
1819 outof_input
= operand_subword_force (op0
, outof_word
, mode
);
1820 into_input
= operand_subword_force (op0
, 1 - outof_word
, mode
);
1822 if (expand_doubleword_shift (op1_mode
, binoptab
,
1823 outof_input
, into_input
, op1
,
1824 outof_target
, into_target
,
1825 unsignedp
, next_methods
, shift_mask
))
1827 insns
= get_insns ();
1837 /* Synthesize double word rotates from single word shifts. */
1838 if ((binoptab
== rotl_optab
|| binoptab
== rotr_optab
)
1839 && mclass
== MODE_INT
1840 && CONST_INT_P (op1
)
1841 && GET_MODE_PRECISION (mode
) == 2 * BITS_PER_WORD
1842 && optab_handler (ashl_optab
, word_mode
) != CODE_FOR_nothing
1843 && optab_handler (lshr_optab
, word_mode
) != CODE_FOR_nothing
)
1846 rtx into_target
, outof_target
;
1847 rtx into_input
, outof_input
;
1849 int shift_count
, left_shift
, outof_word
;
1851 /* If TARGET is the same as one of the operands, the REG_EQUAL note
1852 won't be accurate, so use a new target. Do this also if target is not
1853 a REG, first because having a register instead may open optimization
1854 opportunities, and second because if target and op0 happen to be MEMs
1855 designating the same location, we would risk clobbering it too early
1856 in the code sequence we generate below. */
1861 || !valid_multiword_target_p (target
))
1862 target
= gen_reg_rtx (mode
);
1866 shift_count
= INTVAL (op1
);
1868 /* OUTOF_* is the word we are shifting bits away from, and
1869 INTO_* is the word that we are shifting bits towards, thus
1870 they differ depending on the direction of the shift and
1871 WORDS_BIG_ENDIAN. */
1873 left_shift
= (binoptab
== rotl_optab
);
1874 outof_word
= left_shift
^ ! WORDS_BIG_ENDIAN
;
1876 outof_target
= operand_subword (target
, outof_word
, 1, mode
);
1877 into_target
= operand_subword (target
, 1 - outof_word
, 1, mode
);
1879 outof_input
= operand_subword_force (op0
, outof_word
, mode
);
1880 into_input
= operand_subword_force (op0
, 1 - outof_word
, mode
);
1882 if (shift_count
== BITS_PER_WORD
)
1884 /* This is just a word swap. */
1885 emit_move_insn (outof_target
, into_input
);
1886 emit_move_insn (into_target
, outof_input
);
1891 rtx into_temp1
, into_temp2
, outof_temp1
, outof_temp2
;
1892 rtx first_shift_count
, second_shift_count
;
1893 optab reverse_unsigned_shift
, unsigned_shift
;
1895 reverse_unsigned_shift
= (left_shift
^ (shift_count
< BITS_PER_WORD
)
1896 ? lshr_optab
: ashl_optab
);
1898 unsigned_shift
= (left_shift
^ (shift_count
< BITS_PER_WORD
)
1899 ? ashl_optab
: lshr_optab
);
1901 if (shift_count
> BITS_PER_WORD
)
1903 first_shift_count
= GEN_INT (shift_count
- BITS_PER_WORD
);
1904 second_shift_count
= GEN_INT (2 * BITS_PER_WORD
- shift_count
);
1908 first_shift_count
= GEN_INT (BITS_PER_WORD
- shift_count
);
1909 second_shift_count
= GEN_INT (shift_count
);
1912 into_temp1
= expand_binop (word_mode
, unsigned_shift
,
1913 outof_input
, first_shift_count
,
1914 NULL_RTX
, unsignedp
, next_methods
);
1915 into_temp2
= expand_binop (word_mode
, reverse_unsigned_shift
,
1916 into_input
, second_shift_count
,
1917 NULL_RTX
, unsignedp
, next_methods
);
1919 if (into_temp1
!= 0 && into_temp2
!= 0)
1920 inter
= expand_binop (word_mode
, ior_optab
, into_temp1
, into_temp2
,
1921 into_target
, unsignedp
, next_methods
);
1925 if (inter
!= 0 && inter
!= into_target
)
1926 emit_move_insn (into_target
, inter
);
1928 outof_temp1
= expand_binop (word_mode
, unsigned_shift
,
1929 into_input
, first_shift_count
,
1930 NULL_RTX
, unsignedp
, next_methods
);
1931 outof_temp2
= expand_binop (word_mode
, reverse_unsigned_shift
,
1932 outof_input
, second_shift_count
,
1933 NULL_RTX
, unsignedp
, next_methods
);
1935 if (inter
!= 0 && outof_temp1
!= 0 && outof_temp2
!= 0)
1936 inter
= expand_binop (word_mode
, ior_optab
,
1937 outof_temp1
, outof_temp2
,
1938 outof_target
, unsignedp
, next_methods
);
1940 if (inter
!= 0 && inter
!= outof_target
)
1941 emit_move_insn (outof_target
, inter
);
1944 insns
= get_insns ();
1954 /* These can be done a word at a time by propagating carries. */
1955 if ((binoptab
== add_optab
|| binoptab
== sub_optab
)
1956 && mclass
== MODE_INT
1957 && GET_MODE_SIZE (mode
) >= 2 * UNITS_PER_WORD
1958 && optab_handler (binoptab
, word_mode
) != CODE_FOR_nothing
)
1961 optab otheroptab
= binoptab
== add_optab
? sub_optab
: add_optab
;
1962 const unsigned int nwords
= GET_MODE_BITSIZE (mode
) / BITS_PER_WORD
;
1963 rtx carry_in
= NULL_RTX
, carry_out
= NULL_RTX
;
1964 rtx xop0
, xop1
, xtarget
;
1966 /* We can handle either a 1 or -1 value for the carry. If STORE_FLAG
1967 value is one of those, use it. Otherwise, use 1 since it is the
1968 one easiest to get. */
1969 #if STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1
1970 int normalizep
= STORE_FLAG_VALUE
;
1975 /* Prepare the operands. */
1976 xop0
= force_reg (mode
, op0
);
1977 xop1
= force_reg (mode
, op1
);
1979 xtarget
= gen_reg_rtx (mode
);
1981 if (target
== 0 || !REG_P (target
) || !valid_multiword_target_p (target
))
1984 /* Indicate for flow that the entire target reg is being set. */
1986 emit_clobber (xtarget
);
1988 /* Do the actual arithmetic. */
1989 for (i
= 0; i
< nwords
; i
++)
1991 int index
= (WORDS_BIG_ENDIAN
? nwords
- i
- 1 : i
);
1992 rtx target_piece
= operand_subword (xtarget
, index
, 1, mode
);
1993 rtx op0_piece
= operand_subword_force (xop0
, index
, mode
);
1994 rtx op1_piece
= operand_subword_force (xop1
, index
, mode
);
1997 /* Main add/subtract of the input operands. */
1998 x
= expand_binop (word_mode
, binoptab
,
1999 op0_piece
, op1_piece
,
2000 target_piece
, unsignedp
, next_methods
);
2006 /* Store carry from main add/subtract. */
2007 carry_out
= gen_reg_rtx (word_mode
);
2008 carry_out
= emit_store_flag_force (carry_out
,
2009 (binoptab
== add_optab
2012 word_mode
, 1, normalizep
);
2019 /* Add/subtract previous carry to main result. */
2020 newx
= expand_binop (word_mode
,
2021 normalizep
== 1 ? binoptab
: otheroptab
,
2023 NULL_RTX
, 1, next_methods
);
2027 /* Get out carry from adding/subtracting carry in. */
2028 rtx carry_tmp
= gen_reg_rtx (word_mode
);
2029 carry_tmp
= emit_store_flag_force (carry_tmp
,
2030 (binoptab
== add_optab
2033 word_mode
, 1, normalizep
);
2035 /* Logical-ior the two poss. carry together. */
2036 carry_out
= expand_binop (word_mode
, ior_optab
,
2037 carry_out
, carry_tmp
,
2038 carry_out
, 0, next_methods
);
2042 emit_move_insn (target_piece
, newx
);
2046 if (x
!= target_piece
)
2047 emit_move_insn (target_piece
, x
);
2050 carry_in
= carry_out
;
2053 if (i
== GET_MODE_BITSIZE (mode
) / (unsigned) BITS_PER_WORD
)
2055 if (optab_handler (mov_optab
, mode
) != CODE_FOR_nothing
2056 || ! rtx_equal_p (target
, xtarget
))
2058 rtx temp
= emit_move_insn (target
, xtarget
);
2060 set_dst_reg_note (temp
, REG_EQUAL
,
2061 gen_rtx_fmt_ee (optab_to_code (binoptab
),
2062 mode
, copy_rtx (xop0
),
2073 delete_insns_since (last
);
2076 /* Attempt to synthesize double word multiplies using a sequence of word
2077 mode multiplications. We first attempt to generate a sequence using a
2078 more efficient unsigned widening multiply, and if that fails we then
2079 try using a signed widening multiply. */
2081 if (binoptab
== smul_optab
2082 && mclass
== MODE_INT
2083 && GET_MODE_SIZE (mode
) == 2 * UNITS_PER_WORD
2084 && optab_handler (smul_optab
, word_mode
) != CODE_FOR_nothing
2085 && optab_handler (add_optab
, word_mode
) != CODE_FOR_nothing
)
2087 rtx product
= NULL_RTX
;
2088 if (widening_optab_handler (umul_widen_optab
, mode
, word_mode
)
2089 != CODE_FOR_nothing
)
2091 product
= expand_doubleword_mult (mode
, op0
, op1
, target
,
2094 delete_insns_since (last
);
2097 if (product
== NULL_RTX
2098 && widening_optab_handler (smul_widen_optab
, mode
, word_mode
)
2099 != CODE_FOR_nothing
)
2101 product
= expand_doubleword_mult (mode
, op0
, op1
, target
,
2104 delete_insns_since (last
);
2107 if (product
!= NULL_RTX
)
2109 if (optab_handler (mov_optab
, mode
) != CODE_FOR_nothing
)
2111 temp
= emit_move_insn (target
? target
: product
, product
);
2112 set_dst_reg_note (temp
,
2114 gen_rtx_fmt_ee (MULT
, mode
,
2117 target
? target
: product
);
2123 /* It can't be open-coded in this mode.
2124 Use a library call if one is available and caller says that's ok. */
2126 libfunc
= optab_libfunc (binoptab
, mode
);
2128 && (methods
== OPTAB_LIB
|| methods
== OPTAB_LIB_WIDEN
))
2132 machine_mode op1_mode
= mode
;
2137 if (shift_optab_p (binoptab
))
2139 op1_mode
= targetm
.libgcc_shift_count_mode ();
2140 /* Specify unsigned here,
2141 since negative shift counts are meaningless. */
2142 op1x
= convert_to_mode (op1_mode
, op1
, 1);
2145 if (GET_MODE (op0
) != VOIDmode
2146 && GET_MODE (op0
) != mode
)
2147 op0
= convert_to_mode (mode
, op0
, unsignedp
);
2149 /* Pass 1 for NO_QUEUE so we don't lose any increments
2150 if the libcall is cse'd or moved. */
2151 value
= emit_library_call_value (libfunc
,
2152 NULL_RTX
, LCT_CONST
, mode
, 2,
2153 op0
, mode
, op1x
, op1_mode
);
2155 insns
= get_insns ();
2158 target
= gen_reg_rtx (mode
);
2159 emit_libcall_block_1 (insns
, target
, value
,
2160 gen_rtx_fmt_ee (optab_to_code (binoptab
),
2162 trapv_binoptab_p (binoptab
));
2167 delete_insns_since (last
);
2169 /* It can't be done in this mode. Can we do it in a wider mode? */
2171 if (! (methods
== OPTAB_WIDEN
|| methods
== OPTAB_LIB_WIDEN
2172 || methods
== OPTAB_MUST_WIDEN
))
2174 /* Caller says, don't even try. */
2175 delete_insns_since (entry_last
);
2179 /* Compute the value of METHODS to pass to recursive calls.
2180 Don't allow widening to be tried recursively. */
2182 methods
= (methods
== OPTAB_LIB_WIDEN
? OPTAB_LIB
: OPTAB_DIRECT
);
2184 /* Look for a wider mode of the same class for which it appears we can do
2187 if (CLASS_HAS_WIDER_MODES_P (mclass
))
2189 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
2190 wider_mode
!= VOIDmode
;
2191 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
2193 if (find_widening_optab_handler (binoptab
, wider_mode
, mode
, 1)
2195 || (methods
== OPTAB_LIB
2196 && optab_libfunc (binoptab
, wider_mode
)))
2198 rtx xop0
= op0
, xop1
= op1
;
2201 /* For certain integer operations, we need not actually extend
2202 the narrow operands, as long as we will truncate
2203 the results to the same narrowness. */
2205 if ((binoptab
== ior_optab
|| binoptab
== and_optab
2206 || binoptab
== xor_optab
2207 || binoptab
== add_optab
|| binoptab
== sub_optab
2208 || binoptab
== smul_optab
|| binoptab
== ashl_optab
)
2209 && mclass
== MODE_INT
)
2212 xop0
= widen_operand (xop0
, wider_mode
, mode
,
2213 unsignedp
, no_extend
);
2215 /* The second operand of a shift must always be extended. */
2216 xop1
= widen_operand (xop1
, wider_mode
, mode
, unsignedp
,
2217 no_extend
&& binoptab
!= ashl_optab
);
2219 temp
= expand_binop (wider_mode
, binoptab
, xop0
, xop1
, NULL_RTX
,
2220 unsignedp
, methods
);
2223 if (mclass
!= MODE_INT
2224 || !TRULY_NOOP_TRUNCATION_MODES_P (mode
, wider_mode
))
2227 target
= gen_reg_rtx (mode
);
2228 convert_move (target
, temp
, 0);
2232 return gen_lowpart (mode
, temp
);
2235 delete_insns_since (last
);
2240 delete_insns_since (entry_last
);
2244 /* Expand a binary operator which has both signed and unsigned forms.
2245 UOPTAB is the optab for unsigned operations, and SOPTAB is for
2248 If we widen unsigned operands, we may use a signed wider operation instead
2249 of an unsigned wider operation, since the result would be the same. */
2252 sign_expand_binop (machine_mode mode
, optab uoptab
, optab soptab
,
2253 rtx op0
, rtx op1
, rtx target
, int unsignedp
,
2254 enum optab_methods methods
)
2257 optab direct_optab
= unsignedp
? uoptab
: soptab
;
2260 /* Do it without widening, if possible. */
2261 temp
= expand_binop (mode
, direct_optab
, op0
, op1
, target
,
2262 unsignedp
, OPTAB_DIRECT
);
2263 if (temp
|| methods
== OPTAB_DIRECT
)
2266 /* Try widening to a signed int. Disable any direct use of any
2267 signed insn in the current mode. */
2268 save_enable
= swap_optab_enable (soptab
, mode
, false);
2270 temp
= expand_binop (mode
, soptab
, op0
, op1
, target
,
2271 unsignedp
, OPTAB_WIDEN
);
2273 /* For unsigned operands, try widening to an unsigned int. */
2274 if (!temp
&& unsignedp
)
2275 temp
= expand_binop (mode
, uoptab
, op0
, op1
, target
,
2276 unsignedp
, OPTAB_WIDEN
);
2277 if (temp
|| methods
== OPTAB_WIDEN
)
2280 /* Use the right width libcall if that exists. */
2281 temp
= expand_binop (mode
, direct_optab
, op0
, op1
, target
,
2282 unsignedp
, OPTAB_LIB
);
2283 if (temp
|| methods
== OPTAB_LIB
)
2286 /* Must widen and use a libcall, use either signed or unsigned. */
2287 temp
= expand_binop (mode
, soptab
, op0
, op1
, target
,
2288 unsignedp
, methods
);
2289 if (!temp
&& unsignedp
)
2290 temp
= expand_binop (mode
, uoptab
, op0
, op1
, target
,
2291 unsignedp
, methods
);
2294 /* Undo the fiddling above. */
2296 swap_optab_enable (soptab
, mode
, true);
2300 /* Generate code to perform an operation specified by UNOPPTAB
2301 on operand OP0, with two results to TARG0 and TARG1.
2302 We assume that the order of the operands for the instruction
2303 is TARG0, TARG1, OP0.
2305 Either TARG0 or TARG1 may be zero, but what that means is that
2306 the result is not actually wanted. We will generate it into
2307 a dummy pseudo-reg and discard it. They may not both be zero.
2309 Returns 1 if this operation can be performed; 0 if not. */
2312 expand_twoval_unop (optab unoptab
, rtx op0
, rtx targ0
, rtx targ1
,
2315 machine_mode mode
= GET_MODE (targ0
? targ0
: targ1
);
2316 enum mode_class mclass
;
2317 machine_mode wider_mode
;
2318 rtx_insn
*entry_last
= get_last_insn ();
2321 mclass
= GET_MODE_CLASS (mode
);
2324 targ0
= gen_reg_rtx (mode
);
2326 targ1
= gen_reg_rtx (mode
);
2328 /* Record where to go back to if we fail. */
2329 last
= get_last_insn ();
2331 if (optab_handler (unoptab
, mode
) != CODE_FOR_nothing
)
2333 struct expand_operand ops
[3];
2334 enum insn_code icode
= optab_handler (unoptab
, mode
);
2336 create_fixed_operand (&ops
[0], targ0
);
2337 create_fixed_operand (&ops
[1], targ1
);
2338 create_convert_operand_from (&ops
[2], op0
, mode
, unsignedp
);
2339 if (maybe_expand_insn (icode
, 3, ops
))
2343 /* It can't be done in this mode. Can we do it in a wider mode? */
2345 if (CLASS_HAS_WIDER_MODES_P (mclass
))
2347 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
2348 wider_mode
!= VOIDmode
;
2349 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
2351 if (optab_handler (unoptab
, wider_mode
) != CODE_FOR_nothing
)
2353 rtx t0
= gen_reg_rtx (wider_mode
);
2354 rtx t1
= gen_reg_rtx (wider_mode
);
2355 rtx cop0
= convert_modes (wider_mode
, mode
, op0
, unsignedp
);
2357 if (expand_twoval_unop (unoptab
, cop0
, t0
, t1
, unsignedp
))
2359 convert_move (targ0
, t0
, unsignedp
);
2360 convert_move (targ1
, t1
, unsignedp
);
2364 delete_insns_since (last
);
2369 delete_insns_since (entry_last
);
2373 /* Generate code to perform an operation specified by BINOPTAB
2374 on operands OP0 and OP1, with two results to TARG1 and TARG2.
2375 We assume that the order of the operands for the instruction
2376 is TARG0, OP0, OP1, TARG1, which would fit a pattern like
2377 [(set TARG0 (operate OP0 OP1)) (set TARG1 (operate ...))].
2379 Either TARG0 or TARG1 may be zero, but what that means is that
2380 the result is not actually wanted. We will generate it into
2381 a dummy pseudo-reg and discard it. They may not both be zero.
2383 Returns 1 if this operation can be performed; 0 if not. */
2386 expand_twoval_binop (optab binoptab
, rtx op0
, rtx op1
, rtx targ0
, rtx targ1
,
2389 machine_mode mode
= GET_MODE (targ0
? targ0
: targ1
);
2390 enum mode_class mclass
;
2391 machine_mode wider_mode
;
2392 rtx_insn
*entry_last
= get_last_insn ();
2395 mclass
= GET_MODE_CLASS (mode
);
2398 targ0
= gen_reg_rtx (mode
);
2400 targ1
= gen_reg_rtx (mode
);
2402 /* Record where to go back to if we fail. */
2403 last
= get_last_insn ();
2405 if (optab_handler (binoptab
, mode
) != CODE_FOR_nothing
)
2407 struct expand_operand ops
[4];
2408 enum insn_code icode
= optab_handler (binoptab
, mode
);
2409 machine_mode mode0
= insn_data
[icode
].operand
[1].mode
;
2410 machine_mode mode1
= insn_data
[icode
].operand
[2].mode
;
2411 rtx xop0
= op0
, xop1
= op1
;
2413 /* If we are optimizing, force expensive constants into a register. */
2414 xop0
= avoid_expensive_constant (mode0
, binoptab
, 0, xop0
, unsignedp
);
2415 xop1
= avoid_expensive_constant (mode1
, binoptab
, 1, xop1
, unsignedp
);
2417 create_fixed_operand (&ops
[0], targ0
);
2418 create_convert_operand_from (&ops
[1], op0
, mode
, unsignedp
);
2419 create_convert_operand_from (&ops
[2], op1
, mode
, unsignedp
);
2420 create_fixed_operand (&ops
[3], targ1
);
2421 if (maybe_expand_insn (icode
, 4, ops
))
2423 delete_insns_since (last
);
2426 /* It can't be done in this mode. Can we do it in a wider mode? */
2428 if (CLASS_HAS_WIDER_MODES_P (mclass
))
2430 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
2431 wider_mode
!= VOIDmode
;
2432 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
2434 if (optab_handler (binoptab
, wider_mode
) != CODE_FOR_nothing
)
2436 rtx t0
= gen_reg_rtx (wider_mode
);
2437 rtx t1
= gen_reg_rtx (wider_mode
);
2438 rtx cop0
= convert_modes (wider_mode
, mode
, op0
, unsignedp
);
2439 rtx cop1
= convert_modes (wider_mode
, mode
, op1
, unsignedp
);
2441 if (expand_twoval_binop (binoptab
, cop0
, cop1
,
2444 convert_move (targ0
, t0
, unsignedp
);
2445 convert_move (targ1
, t1
, unsignedp
);
2449 delete_insns_since (last
);
2454 delete_insns_since (entry_last
);
2458 /* Expand the two-valued library call indicated by BINOPTAB, but
2459 preserve only one of the values. If TARG0 is non-NULL, the first
2460 value is placed into TARG0; otherwise the second value is placed
2461 into TARG1. Exactly one of TARG0 and TARG1 must be non-NULL. The
2462 value stored into TARG0 or TARG1 is equivalent to (CODE OP0 OP1).
2463 This routine assumes that the value returned by the library call is
2464 as if the return value was of an integral mode twice as wide as the
2465 mode of OP0. Returns 1 if the call was successful. */
2468 expand_twoval_binop_libfunc (optab binoptab
, rtx op0
, rtx op1
,
2469 rtx targ0
, rtx targ1
, enum rtx_code code
)
2472 machine_mode libval_mode
;
2477 /* Exactly one of TARG0 or TARG1 should be non-NULL. */
2478 gcc_assert (!targ0
!= !targ1
);
2480 mode
= GET_MODE (op0
);
2481 libfunc
= optab_libfunc (binoptab
, mode
);
2485 /* The value returned by the library function will have twice as
2486 many bits as the nominal MODE. */
2487 libval_mode
= smallest_mode_for_size (2 * GET_MODE_BITSIZE (mode
),
2490 libval
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_CONST
,
2494 /* Get the part of VAL containing the value that we want. */
2495 libval
= simplify_gen_subreg (mode
, libval
, libval_mode
,
2496 targ0
? 0 : GET_MODE_SIZE (mode
));
2497 insns
= get_insns ();
2499 /* Move the into the desired location. */
2500 emit_libcall_block (insns
, targ0
? targ0
: targ1
, libval
,
2501 gen_rtx_fmt_ee (code
, mode
, op0
, op1
));
2507 /* Wrapper around expand_unop which takes an rtx code to specify
2508 the operation to perform, not an optab pointer. All other
2509 arguments are the same. */
2511 expand_simple_unop (machine_mode mode
, enum rtx_code code
, rtx op0
,
2512 rtx target
, int unsignedp
)
2514 optab unop
= code_to_optab (code
);
2517 return expand_unop (mode
, unop
, op0
, target
, unsignedp
);
2523 (clz:wide (zero_extend:wide x)) - ((width wide) - (width narrow)).
2525 A similar operation can be used for clrsb. UNOPTAB says which operation
2526 we are trying to expand. */
2528 widen_leading (machine_mode mode
, rtx op0
, rtx target
, optab unoptab
)
2530 enum mode_class mclass
= GET_MODE_CLASS (mode
);
2531 if (CLASS_HAS_WIDER_MODES_P (mclass
))
2533 machine_mode wider_mode
;
2534 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
2535 wider_mode
!= VOIDmode
;
2536 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
2538 if (optab_handler (unoptab
, wider_mode
) != CODE_FOR_nothing
)
2543 last
= get_last_insn ();
2546 target
= gen_reg_rtx (mode
);
2547 xop0
= widen_operand (op0
, wider_mode
, mode
,
2548 unoptab
!= clrsb_optab
, false);
2549 temp
= expand_unop (wider_mode
, unoptab
, xop0
, NULL_RTX
,
2550 unoptab
!= clrsb_optab
);
2553 (wider_mode
, sub_optab
, temp
,
2554 gen_int_mode (GET_MODE_PRECISION (wider_mode
)
2555 - GET_MODE_PRECISION (mode
),
2557 target
, true, OPTAB_DIRECT
);
2559 delete_insns_since (last
);
2568 /* Try calculating clz of a double-word quantity as two clz's of word-sized
2569 quantities, choosing which based on whether the high word is nonzero. */
2571 expand_doubleword_clz (machine_mode mode
, rtx op0
, rtx target
)
2573 rtx xop0
= force_reg (mode
, op0
);
2574 rtx subhi
= gen_highpart (word_mode
, xop0
);
2575 rtx sublo
= gen_lowpart (word_mode
, xop0
);
2576 rtx_code_label
*hi0_label
= gen_label_rtx ();
2577 rtx_code_label
*after_label
= gen_label_rtx ();
2581 /* If we were not given a target, use a word_mode register, not a
2582 'mode' register. The result will fit, and nobody is expecting
2583 anything bigger (the return type of __builtin_clz* is int). */
2585 target
= gen_reg_rtx (word_mode
);
2587 /* In any case, write to a word_mode scratch in both branches of the
2588 conditional, so we can ensure there is a single move insn setting
2589 'target' to tag a REG_EQUAL note on. */
2590 result
= gen_reg_rtx (word_mode
);
2594 /* If the high word is not equal to zero,
2595 then clz of the full value is clz of the high word. */
2596 emit_cmp_and_jump_insns (subhi
, CONST0_RTX (word_mode
), EQ
, 0,
2597 word_mode
, true, hi0_label
);
2599 temp
= expand_unop_direct (word_mode
, clz_optab
, subhi
, result
, true);
2604 convert_move (result
, temp
, true);
2606 emit_jump_insn (gen_jump (after_label
));
2609 /* Else clz of the full value is clz of the low word plus the number
2610 of bits in the high word. */
2611 emit_label (hi0_label
);
2613 temp
= expand_unop_direct (word_mode
, clz_optab
, sublo
, 0, true);
2616 temp
= expand_binop (word_mode
, add_optab
, temp
,
2617 gen_int_mode (GET_MODE_BITSIZE (word_mode
), word_mode
),
2618 result
, true, OPTAB_DIRECT
);
2622 convert_move (result
, temp
, true);
2624 emit_label (after_label
);
2625 convert_move (target
, result
, true);
2630 add_equal_note (seq
, target
, CLZ
, xop0
, 0);
2642 (lshiftrt:wide (bswap:wide x) ((width wide) - (width narrow))). */
2644 widen_bswap (machine_mode mode
, rtx op0
, rtx target
)
2646 enum mode_class mclass
= GET_MODE_CLASS (mode
);
2647 machine_mode wider_mode
;
2651 if (!CLASS_HAS_WIDER_MODES_P (mclass
))
2654 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
2655 wider_mode
!= VOIDmode
;
2656 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
2657 if (optab_handler (bswap_optab
, wider_mode
) != CODE_FOR_nothing
)
2662 last
= get_last_insn ();
2664 x
= widen_operand (op0
, wider_mode
, mode
, true, true);
2665 x
= expand_unop (wider_mode
, bswap_optab
, x
, NULL_RTX
, true);
2667 gcc_assert (GET_MODE_PRECISION (wider_mode
) == GET_MODE_BITSIZE (wider_mode
)
2668 && GET_MODE_PRECISION (mode
) == GET_MODE_BITSIZE (mode
));
2670 x
= expand_shift (RSHIFT_EXPR
, wider_mode
, x
,
2671 GET_MODE_BITSIZE (wider_mode
)
2672 - GET_MODE_BITSIZE (mode
),
2678 target
= gen_reg_rtx (mode
);
2679 emit_move_insn (target
, gen_lowpart (mode
, x
));
2682 delete_insns_since (last
);
2687 /* Try calculating bswap as two bswaps of two word-sized operands. */
2690 expand_doubleword_bswap (machine_mode mode
, rtx op
, rtx target
)
2694 t1
= expand_unop (word_mode
, bswap_optab
,
2695 operand_subword_force (op
, 0, mode
), NULL_RTX
, true);
2696 t0
= expand_unop (word_mode
, bswap_optab
,
2697 operand_subword_force (op
, 1, mode
), NULL_RTX
, true);
2699 if (target
== 0 || !valid_multiword_target_p (target
))
2700 target
= gen_reg_rtx (mode
);
2702 emit_clobber (target
);
2703 emit_move_insn (operand_subword (target
, 0, 1, mode
), t0
);
2704 emit_move_insn (operand_subword (target
, 1, 1, mode
), t1
);
2709 /* Try calculating (parity x) as (and (popcount x) 1), where
2710 popcount can also be done in a wider mode. */
2712 expand_parity (machine_mode mode
, rtx op0
, rtx target
)
2714 enum mode_class mclass
= GET_MODE_CLASS (mode
);
2715 if (CLASS_HAS_WIDER_MODES_P (mclass
))
2717 machine_mode wider_mode
;
2718 for (wider_mode
= mode
; wider_mode
!= VOIDmode
;
2719 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
2721 if (optab_handler (popcount_optab
, wider_mode
) != CODE_FOR_nothing
)
2726 last
= get_last_insn ();
2729 target
= gen_reg_rtx (mode
);
2730 xop0
= widen_operand (op0
, wider_mode
, mode
, true, false);
2731 temp
= expand_unop (wider_mode
, popcount_optab
, xop0
, NULL_RTX
,
2734 temp
= expand_binop (wider_mode
, and_optab
, temp
, const1_rtx
,
2735 target
, true, OPTAB_DIRECT
);
2737 delete_insns_since (last
);
2746 /* Try calculating ctz(x) as K - clz(x & -x) ,
2747 where K is GET_MODE_PRECISION(mode) - 1.
2749 Both __builtin_ctz and __builtin_clz are undefined at zero, so we
2750 don't have to worry about what the hardware does in that case. (If
2751 the clz instruction produces the usual value at 0, which is K, the
2752 result of this code sequence will be -1; expand_ffs, below, relies
2753 on this. It might be nice to have it be K instead, for consistency
2754 with the (very few) processors that provide a ctz with a defined
2755 value, but that would take one more instruction, and it would be
2756 less convenient for expand_ffs anyway. */
2759 expand_ctz (machine_mode mode
, rtx op0
, rtx target
)
2764 if (optab_handler (clz_optab
, mode
) == CODE_FOR_nothing
)
2769 temp
= expand_unop_direct (mode
, neg_optab
, op0
, NULL_RTX
, true);
2771 temp
= expand_binop (mode
, and_optab
, op0
, temp
, NULL_RTX
,
2772 true, OPTAB_DIRECT
);
2774 temp
= expand_unop_direct (mode
, clz_optab
, temp
, NULL_RTX
, true);
2776 temp
= expand_binop (mode
, sub_optab
,
2777 gen_int_mode (GET_MODE_PRECISION (mode
) - 1, mode
),
2779 true, OPTAB_DIRECT
);
2789 add_equal_note (seq
, temp
, CTZ
, op0
, 0);
2795 /* Try calculating ffs(x) using ctz(x) if we have that instruction, or
2796 else with the sequence used by expand_clz.
2798 The ffs builtin promises to return zero for a zero value and ctz/clz
2799 may have an undefined value in that case. If they do not give us a
2800 convenient value, we have to generate a test and branch. */
2802 expand_ffs (machine_mode mode
, rtx op0
, rtx target
)
2804 HOST_WIDE_INT val
= 0;
2805 bool defined_at_zero
= false;
2809 if (optab_handler (ctz_optab
, mode
) != CODE_FOR_nothing
)
2813 temp
= expand_unop_direct (mode
, ctz_optab
, op0
, 0, true);
2817 defined_at_zero
= (CTZ_DEFINED_VALUE_AT_ZERO (mode
, val
) == 2);
2819 else if (optab_handler (clz_optab
, mode
) != CODE_FOR_nothing
)
2822 temp
= expand_ctz (mode
, op0
, 0);
2826 if (CLZ_DEFINED_VALUE_AT_ZERO (mode
, val
) == 2)
2828 defined_at_zero
= true;
2829 val
= (GET_MODE_PRECISION (mode
) - 1) - val
;
2835 if (defined_at_zero
&& val
== -1)
2836 /* No correction needed at zero. */;
2839 /* We don't try to do anything clever with the situation found
2840 on some processors (eg Alpha) where ctz(0:mode) ==
2841 bitsize(mode). If someone can think of a way to send N to -1
2842 and leave alone all values in the range 0..N-1 (where N is a
2843 power of two), cheaper than this test-and-branch, please add it.
2845 The test-and-branch is done after the operation itself, in case
2846 the operation sets condition codes that can be recycled for this.
2847 (This is true on i386, for instance.) */
2849 rtx_code_label
*nonzero_label
= gen_label_rtx ();
2850 emit_cmp_and_jump_insns (op0
, CONST0_RTX (mode
), NE
, 0,
2851 mode
, true, nonzero_label
);
2853 convert_move (temp
, GEN_INT (-1), false);
2854 emit_label (nonzero_label
);
2857 /* temp now has a value in the range -1..bitsize-1. ffs is supposed
2858 to produce a value in the range 0..bitsize. */
2859 temp
= expand_binop (mode
, add_optab
, temp
, gen_int_mode (1, mode
),
2860 target
, false, OPTAB_DIRECT
);
2867 add_equal_note (seq
, temp
, FFS
, op0
, 0);
2876 /* Extract the OMODE lowpart from VAL, which has IMODE. Under certain
2877 conditions, VAL may already be a SUBREG against which we cannot generate
2878 a further SUBREG. In this case, we expect forcing the value into a
2879 register will work around the situation. */
2882 lowpart_subreg_maybe_copy (machine_mode omode
, rtx val
,
2886 ret
= lowpart_subreg (omode
, val
, imode
);
2889 val
= force_reg (imode
, val
);
2890 ret
= lowpart_subreg (omode
, val
, imode
);
2891 gcc_assert (ret
!= NULL
);
2896 /* Expand a floating point absolute value or negation operation via a
2897 logical operation on the sign bit. */
2900 expand_absneg_bit (enum rtx_code code
, machine_mode mode
,
2901 rtx op0
, rtx target
)
2903 const struct real_format
*fmt
;
2904 int bitpos
, word
, nwords
, i
;
2909 /* The format has to have a simple sign bit. */
2910 fmt
= REAL_MODE_FORMAT (mode
);
2914 bitpos
= fmt
->signbit_rw
;
2918 /* Don't create negative zeros if the format doesn't support them. */
2919 if (code
== NEG
&& !fmt
->has_signed_zero
)
2922 if (GET_MODE_SIZE (mode
) <= UNITS_PER_WORD
)
2924 imode
= int_mode_for_mode (mode
);
2925 if (imode
== BLKmode
)
2934 if (FLOAT_WORDS_BIG_ENDIAN
)
2935 word
= (GET_MODE_BITSIZE (mode
) - bitpos
) / BITS_PER_WORD
;
2937 word
= bitpos
/ BITS_PER_WORD
;
2938 bitpos
= bitpos
% BITS_PER_WORD
;
2939 nwords
= (GET_MODE_BITSIZE (mode
) + BITS_PER_WORD
- 1) / BITS_PER_WORD
;
2942 wide_int mask
= wi::set_bit_in_zero (bitpos
, GET_MODE_PRECISION (imode
));
2948 || (nwords
> 1 && !valid_multiword_target_p (target
)))
2949 target
= gen_reg_rtx (mode
);
2955 for (i
= 0; i
< nwords
; ++i
)
2957 rtx targ_piece
= operand_subword (target
, i
, 1, mode
);
2958 rtx op0_piece
= operand_subword_force (op0
, i
, mode
);
2962 temp
= expand_binop (imode
, code
== ABS
? and_optab
: xor_optab
,
2964 immed_wide_int_const (mask
, imode
),
2965 targ_piece
, 1, OPTAB_LIB_WIDEN
);
2966 if (temp
!= targ_piece
)
2967 emit_move_insn (targ_piece
, temp
);
2970 emit_move_insn (targ_piece
, op0_piece
);
2973 insns
= get_insns ();
2980 temp
= expand_binop (imode
, code
== ABS
? and_optab
: xor_optab
,
2981 gen_lowpart (imode
, op0
),
2982 immed_wide_int_const (mask
, imode
),
2983 gen_lowpart (imode
, target
), 1, OPTAB_LIB_WIDEN
);
2984 target
= lowpart_subreg_maybe_copy (mode
, temp
, imode
);
2986 set_dst_reg_note (get_last_insn (), REG_EQUAL
,
2987 gen_rtx_fmt_e (code
, mode
, copy_rtx (op0
)),
2994 /* As expand_unop, but will fail rather than attempt the operation in a
2995 different mode or with a libcall. */
2997 expand_unop_direct (machine_mode mode
, optab unoptab
, rtx op0
, rtx target
,
3000 if (optab_handler (unoptab
, mode
) != CODE_FOR_nothing
)
3002 struct expand_operand ops
[2];
3003 enum insn_code icode
= optab_handler (unoptab
, mode
);
3004 rtx_insn
*last
= get_last_insn ();
3007 create_output_operand (&ops
[0], target
, mode
);
3008 create_convert_operand_from (&ops
[1], op0
, mode
, unsignedp
);
3009 pat
= maybe_gen_insn (icode
, 2, ops
);
3012 if (INSN_P (pat
) && NEXT_INSN (as_a
<rtx_insn
*> (pat
)) != NULL_RTX
3013 && ! add_equal_note (as_a
<rtx_insn
*> (pat
), ops
[0].value
,
3014 optab_to_code (unoptab
),
3015 ops
[1].value
, NULL_RTX
))
3017 delete_insns_since (last
);
3018 return expand_unop (mode
, unoptab
, op0
, NULL_RTX
, unsignedp
);
3023 return ops
[0].value
;
3029 /* Generate code to perform an operation specified by UNOPTAB
3030 on operand OP0, with result having machine-mode MODE.
3032 UNSIGNEDP is for the case where we have to widen the operands
3033 to perform the operation. It says to use zero-extension.
3035 If TARGET is nonzero, the value
3036 is generated there, if it is convenient to do so.
3037 In all cases an rtx is returned for the locus of the value;
3038 this may or may not be TARGET. */
3041 expand_unop (machine_mode mode
, optab unoptab
, rtx op0
, rtx target
,
3044 enum mode_class mclass
= GET_MODE_CLASS (mode
);
3045 machine_mode wider_mode
;
3049 temp
= expand_unop_direct (mode
, unoptab
, op0
, target
, unsignedp
);
3053 /* It can't be done in this mode. Can we open-code it in a wider mode? */
3055 /* Widening (or narrowing) clz needs special treatment. */
3056 if (unoptab
== clz_optab
)
3058 temp
= widen_leading (mode
, op0
, target
, unoptab
);
3062 if (GET_MODE_SIZE (mode
) == 2 * UNITS_PER_WORD
3063 && optab_handler (unoptab
, word_mode
) != CODE_FOR_nothing
)
3065 temp
= expand_doubleword_clz (mode
, op0
, target
);
3073 if (unoptab
== clrsb_optab
)
3075 temp
= widen_leading (mode
, op0
, target
, unoptab
);
3081 /* Widening (or narrowing) bswap needs special treatment. */
3082 if (unoptab
== bswap_optab
)
3084 /* HImode is special because in this mode BSWAP is equivalent to ROTATE
3085 or ROTATERT. First try these directly; if this fails, then try the
3086 obvious pair of shifts with allowed widening, as this will probably
3087 be always more efficient than the other fallback methods. */
3093 if (optab_handler (rotl_optab
, mode
) != CODE_FOR_nothing
)
3095 temp
= expand_binop (mode
, rotl_optab
, op0
, GEN_INT (8), target
,
3096 unsignedp
, OPTAB_DIRECT
);
3101 if (optab_handler (rotr_optab
, mode
) != CODE_FOR_nothing
)
3103 temp
= expand_binop (mode
, rotr_optab
, op0
, GEN_INT (8), target
,
3104 unsignedp
, OPTAB_DIRECT
);
3109 last
= get_last_insn ();
3111 temp1
= expand_binop (mode
, ashl_optab
, op0
, GEN_INT (8), NULL_RTX
,
3112 unsignedp
, OPTAB_WIDEN
);
3113 temp2
= expand_binop (mode
, lshr_optab
, op0
, GEN_INT (8), NULL_RTX
,
3114 unsignedp
, OPTAB_WIDEN
);
3117 temp
= expand_binop (mode
, ior_optab
, temp1
, temp2
, target
,
3118 unsignedp
, OPTAB_WIDEN
);
3123 delete_insns_since (last
);
3126 temp
= widen_bswap (mode
, op0
, target
);
3130 if (GET_MODE_SIZE (mode
) == 2 * UNITS_PER_WORD
3131 && optab_handler (unoptab
, word_mode
) != CODE_FOR_nothing
)
3133 temp
= expand_doubleword_bswap (mode
, op0
, target
);
3141 if (CLASS_HAS_WIDER_MODES_P (mclass
))
3142 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
3143 wider_mode
!= VOIDmode
;
3144 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
3146 if (optab_handler (unoptab
, wider_mode
) != CODE_FOR_nothing
)
3149 rtx_insn
*last
= get_last_insn ();
3151 /* For certain operations, we need not actually extend
3152 the narrow operand, as long as we will truncate the
3153 results to the same narrowness. */
3155 xop0
= widen_operand (xop0
, wider_mode
, mode
, unsignedp
,
3156 (unoptab
== neg_optab
3157 || unoptab
== one_cmpl_optab
)
3158 && mclass
== MODE_INT
);
3160 temp
= expand_unop (wider_mode
, unoptab
, xop0
, NULL_RTX
,
3165 if (mclass
!= MODE_INT
3166 || !TRULY_NOOP_TRUNCATION_MODES_P (mode
, wider_mode
))
3169 target
= gen_reg_rtx (mode
);
3170 convert_move (target
, temp
, 0);
3174 return gen_lowpart (mode
, temp
);
3177 delete_insns_since (last
);
3181 /* These can be done a word at a time. */
3182 if (unoptab
== one_cmpl_optab
3183 && mclass
== MODE_INT
3184 && GET_MODE_SIZE (mode
) > UNITS_PER_WORD
3185 && optab_handler (unoptab
, word_mode
) != CODE_FOR_nothing
)
3190 if (target
== 0 || target
== op0
|| !valid_multiword_target_p (target
))
3191 target
= gen_reg_rtx (mode
);
3195 /* Do the actual arithmetic. */
3196 for (i
= 0; i
< GET_MODE_BITSIZE (mode
) / BITS_PER_WORD
; i
++)
3198 rtx target_piece
= operand_subword (target
, i
, 1, mode
);
3199 rtx x
= expand_unop (word_mode
, unoptab
,
3200 operand_subword_force (op0
, i
, mode
),
3201 target_piece
, unsignedp
);
3203 if (target_piece
!= x
)
3204 emit_move_insn (target_piece
, x
);
3207 insns
= get_insns ();
3214 if (optab_to_code (unoptab
) == NEG
)
3216 /* Try negating floating point values by flipping the sign bit. */
3217 if (SCALAR_FLOAT_MODE_P (mode
))
3219 temp
= expand_absneg_bit (NEG
, mode
, op0
, target
);
3224 /* If there is no negation pattern, and we have no negative zero,
3225 try subtracting from zero. */
3226 if (!HONOR_SIGNED_ZEROS (mode
))
3228 temp
= expand_binop (mode
, (unoptab
== negv_optab
3229 ? subv_optab
: sub_optab
),
3230 CONST0_RTX (mode
), op0
, target
,
3231 unsignedp
, OPTAB_DIRECT
);
3237 /* Try calculating parity (x) as popcount (x) % 2. */
3238 if (unoptab
== parity_optab
)
3240 temp
= expand_parity (mode
, op0
, target
);
3245 /* Try implementing ffs (x) in terms of clz (x). */
3246 if (unoptab
== ffs_optab
)
3248 temp
= expand_ffs (mode
, op0
, target
);
3253 /* Try implementing ctz (x) in terms of clz (x). */
3254 if (unoptab
== ctz_optab
)
3256 temp
= expand_ctz (mode
, op0
, target
);
3262 /* Now try a library call in this mode. */
3263 libfunc
= optab_libfunc (unoptab
, mode
);
3269 machine_mode outmode
= mode
;
3271 /* All of these functions return small values. Thus we choose to
3272 have them return something that isn't a double-word. */
3273 if (unoptab
== ffs_optab
|| unoptab
== clz_optab
|| unoptab
== ctz_optab
3274 || unoptab
== clrsb_optab
|| unoptab
== popcount_optab
3275 || unoptab
== parity_optab
)
3277 = GET_MODE (hard_libcall_value (TYPE_MODE (integer_type_node
),
3278 optab_libfunc (unoptab
, mode
)));
3282 /* Pass 1 for NO_QUEUE so we don't lose any increments
3283 if the libcall is cse'd or moved. */
3284 value
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_CONST
, outmode
,
3286 insns
= get_insns ();
3289 target
= gen_reg_rtx (outmode
);
3290 eq_value
= gen_rtx_fmt_e (optab_to_code (unoptab
), mode
, op0
);
3291 if (GET_MODE_SIZE (outmode
) < GET_MODE_SIZE (mode
))
3292 eq_value
= simplify_gen_unary (TRUNCATE
, outmode
, eq_value
, mode
);
3293 else if (GET_MODE_SIZE (outmode
) > GET_MODE_SIZE (mode
))
3294 eq_value
= simplify_gen_unary (ZERO_EXTEND
, outmode
, eq_value
, mode
);
3295 emit_libcall_block_1 (insns
, target
, value
, eq_value
,
3296 trapv_unoptab_p (unoptab
));
3301 /* It can't be done in this mode. Can we do it in a wider mode? */
3303 if (CLASS_HAS_WIDER_MODES_P (mclass
))
3305 for (wider_mode
= GET_MODE_WIDER_MODE (mode
);
3306 wider_mode
!= VOIDmode
;
3307 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
3309 if (optab_handler (unoptab
, wider_mode
) != CODE_FOR_nothing
3310 || optab_libfunc (unoptab
, wider_mode
))
3313 rtx_insn
*last
= get_last_insn ();
3315 /* For certain operations, we need not actually extend
3316 the narrow operand, as long as we will truncate the
3317 results to the same narrowness. */
3318 xop0
= widen_operand (xop0
, wider_mode
, mode
, unsignedp
,
3319 (unoptab
== neg_optab
3320 || unoptab
== one_cmpl_optab
3321 || unoptab
== bswap_optab
)
3322 && mclass
== MODE_INT
);
3324 temp
= expand_unop (wider_mode
, unoptab
, xop0
, NULL_RTX
,
3327 /* If we are generating clz using wider mode, adjust the
3328 result. Similarly for clrsb. */
3329 if ((unoptab
== clz_optab
|| unoptab
== clrsb_optab
)
3332 (wider_mode
, sub_optab
, temp
,
3333 gen_int_mode (GET_MODE_PRECISION (wider_mode
)
3334 - GET_MODE_PRECISION (mode
),
3336 target
, true, OPTAB_DIRECT
);
3338 /* Likewise for bswap. */
3339 if (unoptab
== bswap_optab
&& temp
!= 0)
3341 gcc_assert (GET_MODE_PRECISION (wider_mode
)
3342 == GET_MODE_BITSIZE (wider_mode
)
3343 && GET_MODE_PRECISION (mode
)
3344 == GET_MODE_BITSIZE (mode
));
3346 temp
= expand_shift (RSHIFT_EXPR
, wider_mode
, temp
,
3347 GET_MODE_BITSIZE (wider_mode
)
3348 - GET_MODE_BITSIZE (mode
),
3354 if (mclass
!= MODE_INT
)
3357 target
= gen_reg_rtx (mode
);
3358 convert_move (target
, temp
, 0);
3362 return gen_lowpart (mode
, temp
);
3365 delete_insns_since (last
);
3370 /* One final attempt at implementing negation via subtraction,
3371 this time allowing widening of the operand. */
3372 if (optab_to_code (unoptab
) == NEG
&& !HONOR_SIGNED_ZEROS (mode
))
3375 temp
= expand_binop (mode
,
3376 unoptab
== negv_optab
? subv_optab
: sub_optab
,
3377 CONST0_RTX (mode
), op0
,
3378 target
, unsignedp
, OPTAB_LIB_WIDEN
);
3386 /* Emit code to compute the absolute value of OP0, with result to
3387 TARGET if convenient. (TARGET may be 0.) The return value says
3388 where the result actually is to be found.
3390 MODE is the mode of the operand; the mode of the result is
3391 different but can be deduced from MODE.
3396 expand_abs_nojump (machine_mode mode
, rtx op0
, rtx target
,
3397 int result_unsignedp
)
3401 if (GET_MODE_CLASS (mode
) != MODE_INT
3403 result_unsignedp
= 1;
3405 /* First try to do it with a special abs instruction. */
3406 temp
= expand_unop (mode
, result_unsignedp
? abs_optab
: absv_optab
,
3411 /* For floating point modes, try clearing the sign bit. */
3412 if (SCALAR_FLOAT_MODE_P (mode
))
3414 temp
= expand_absneg_bit (ABS
, mode
, op0
, target
);
3419 /* If we have a MAX insn, we can do this as MAX (x, -x). */
3420 if (optab_handler (smax_optab
, mode
) != CODE_FOR_nothing
3421 && !HONOR_SIGNED_ZEROS (mode
))
3423 rtx_insn
*last
= get_last_insn ();
3425 temp
= expand_unop (mode
, result_unsignedp
? neg_optab
: negv_optab
,
3428 temp
= expand_binop (mode
, smax_optab
, op0
, temp
, target
, 0,
3434 delete_insns_since (last
);
3437 /* If this machine has expensive jumps, we can do integer absolute
3438 value of X as (((signed) x >> (W-1)) ^ x) - ((signed) x >> (W-1)),
3439 where W is the width of MODE. */
3441 if (GET_MODE_CLASS (mode
) == MODE_INT
3442 && BRANCH_COST (optimize_insn_for_speed_p (),
3445 rtx extended
= expand_shift (RSHIFT_EXPR
, mode
, op0
,
3446 GET_MODE_PRECISION (mode
) - 1,
3449 temp
= expand_binop (mode
, xor_optab
, extended
, op0
, target
, 0,
3452 temp
= expand_binop (mode
, result_unsignedp
? sub_optab
: subv_optab
,
3453 temp
, extended
, target
, 0, OPTAB_LIB_WIDEN
);
3463 expand_abs (machine_mode mode
, rtx op0
, rtx target
,
3464 int result_unsignedp
, int safe
)
3467 rtx_code_label
*op1
;
3469 if (GET_MODE_CLASS (mode
) != MODE_INT
3471 result_unsignedp
= 1;
3473 temp
= expand_abs_nojump (mode
, op0
, target
, result_unsignedp
);
3477 /* If that does not win, use conditional jump and negate. */
3479 /* It is safe to use the target if it is the same
3480 as the source if this is also a pseudo register */
3481 if (op0
== target
&& REG_P (op0
)
3482 && REGNO (op0
) >= FIRST_PSEUDO_REGISTER
)
3485 op1
= gen_label_rtx ();
3486 if (target
== 0 || ! safe
3487 || GET_MODE (target
) != mode
3488 || (MEM_P (target
) && MEM_VOLATILE_P (target
))
3490 && REGNO (target
) < FIRST_PSEUDO_REGISTER
))
3491 target
= gen_reg_rtx (mode
);
3493 emit_move_insn (target
, op0
);
3496 do_compare_rtx_and_jump (target
, CONST0_RTX (mode
), GE
, 0, mode
,
3497 NULL_RTX
, NULL_RTX
, op1
, -1);
3499 op0
= expand_unop (mode
, result_unsignedp
? neg_optab
: negv_optab
,
3502 emit_move_insn (target
, op0
);
3508 /* Emit code to compute the one's complement absolute value of OP0
3509 (if (OP0 < 0) OP0 = ~OP0), with result to TARGET if convenient.
3510 (TARGET may be NULL_RTX.) The return value says where the result
3511 actually is to be found.
3513 MODE is the mode of the operand; the mode of the result is
3514 different but can be deduced from MODE. */
3517 expand_one_cmpl_abs_nojump (machine_mode mode
, rtx op0
, rtx target
)
3521 /* Not applicable for floating point modes. */
3522 if (FLOAT_MODE_P (mode
))
3525 /* If we have a MAX insn, we can do this as MAX (x, ~x). */
3526 if (optab_handler (smax_optab
, mode
) != CODE_FOR_nothing
)
3528 rtx_insn
*last
= get_last_insn ();
3530 temp
= expand_unop (mode
, one_cmpl_optab
, op0
, NULL_RTX
, 0);
3532 temp
= expand_binop (mode
, smax_optab
, op0
, temp
, target
, 0,
3538 delete_insns_since (last
);
3541 /* If this machine has expensive jumps, we can do one's complement
3542 absolute value of X as (((signed) x >> (W-1)) ^ x). */
3544 if (GET_MODE_CLASS (mode
) == MODE_INT
3545 && BRANCH_COST (optimize_insn_for_speed_p (),
3548 rtx extended
= expand_shift (RSHIFT_EXPR
, mode
, op0
,
3549 GET_MODE_PRECISION (mode
) - 1,
3552 temp
= expand_binop (mode
, xor_optab
, extended
, op0
, target
, 0,
3562 /* A subroutine of expand_copysign, perform the copysign operation using the
3563 abs and neg primitives advertised to exist on the target. The assumption
3564 is that we have a split register file, and leaving op0 in fp registers,
3565 and not playing with subregs so much, will help the register allocator. */
3568 expand_copysign_absneg (machine_mode mode
, rtx op0
, rtx op1
, rtx target
,
3569 int bitpos
, bool op0_is_abs
)
3572 enum insn_code icode
;
3574 rtx_code_label
*label
;
3579 /* Check if the back end provides an insn that handles signbit for the
3581 icode
= optab_handler (signbit_optab
, mode
);
3582 if (icode
!= CODE_FOR_nothing
)
3584 imode
= insn_data
[(int) icode
].operand
[0].mode
;
3585 sign
= gen_reg_rtx (imode
);
3586 emit_unop_insn (icode
, sign
, op1
, UNKNOWN
);
3590 if (GET_MODE_SIZE (mode
) <= UNITS_PER_WORD
)
3592 imode
= int_mode_for_mode (mode
);
3593 if (imode
== BLKmode
)
3595 op1
= gen_lowpart (imode
, op1
);
3602 if (FLOAT_WORDS_BIG_ENDIAN
)
3603 word
= (GET_MODE_BITSIZE (mode
) - bitpos
) / BITS_PER_WORD
;
3605 word
= bitpos
/ BITS_PER_WORD
;
3606 bitpos
= bitpos
% BITS_PER_WORD
;
3607 op1
= operand_subword_force (op1
, word
, mode
);
3610 wide_int mask
= wi::set_bit_in_zero (bitpos
, GET_MODE_PRECISION (imode
));
3611 sign
= expand_binop (imode
, and_optab
, op1
,
3612 immed_wide_int_const (mask
, imode
),
3613 NULL_RTX
, 1, OPTAB_LIB_WIDEN
);
3618 op0
= expand_unop (mode
, abs_optab
, op0
, target
, 0);
3625 if (target
== NULL_RTX
)
3626 target
= copy_to_reg (op0
);
3628 emit_move_insn (target
, op0
);
3631 label
= gen_label_rtx ();
3632 emit_cmp_and_jump_insns (sign
, const0_rtx
, EQ
, NULL_RTX
, imode
, 1, label
);
3634 if (CONST_DOUBLE_AS_FLOAT_P (op0
))
3635 op0
= simplify_unary_operation (NEG
, mode
, op0
, mode
);
3637 op0
= expand_unop (mode
, neg_optab
, op0
, target
, 0);
3639 emit_move_insn (target
, op0
);
3647 /* A subroutine of expand_copysign, perform the entire copysign operation
3648 with integer bitmasks. BITPOS is the position of the sign bit; OP0_IS_ABS
3649 is true if op0 is known to have its sign bit clear. */
3652 expand_copysign_bit (machine_mode mode
, rtx op0
, rtx op1
, rtx target
,
3653 int bitpos
, bool op0_is_abs
)
3656 int word
, nwords
, i
;
3660 if (GET_MODE_SIZE (mode
) <= UNITS_PER_WORD
)
3662 imode
= int_mode_for_mode (mode
);
3663 if (imode
== BLKmode
)
3672 if (FLOAT_WORDS_BIG_ENDIAN
)
3673 word
= (GET_MODE_BITSIZE (mode
) - bitpos
) / BITS_PER_WORD
;
3675 word
= bitpos
/ BITS_PER_WORD
;
3676 bitpos
= bitpos
% BITS_PER_WORD
;
3677 nwords
= (GET_MODE_BITSIZE (mode
) + BITS_PER_WORD
- 1) / BITS_PER_WORD
;
3680 wide_int mask
= wi::set_bit_in_zero (bitpos
, GET_MODE_PRECISION (imode
));
3685 || (nwords
> 1 && !valid_multiword_target_p (target
)))
3686 target
= gen_reg_rtx (mode
);
3692 for (i
= 0; i
< nwords
; ++i
)
3694 rtx targ_piece
= operand_subword (target
, i
, 1, mode
);
3695 rtx op0_piece
= operand_subword_force (op0
, i
, mode
);
3701 = expand_binop (imode
, and_optab
, op0_piece
,
3702 immed_wide_int_const (~mask
, imode
),
3703 NULL_RTX
, 1, OPTAB_LIB_WIDEN
);
3704 op1
= expand_binop (imode
, and_optab
,
3705 operand_subword_force (op1
, i
, mode
),
3706 immed_wide_int_const (mask
, imode
),
3707 NULL_RTX
, 1, OPTAB_LIB_WIDEN
);
3709 temp
= expand_binop (imode
, ior_optab
, op0_piece
, op1
,
3710 targ_piece
, 1, OPTAB_LIB_WIDEN
);
3711 if (temp
!= targ_piece
)
3712 emit_move_insn (targ_piece
, temp
);
3715 emit_move_insn (targ_piece
, op0_piece
);
3718 insns
= get_insns ();
3725 op1
= expand_binop (imode
, and_optab
, gen_lowpart (imode
, op1
),
3726 immed_wide_int_const (mask
, imode
),
3727 NULL_RTX
, 1, OPTAB_LIB_WIDEN
);
3729 op0
= gen_lowpart (imode
, op0
);
3731 op0
= expand_binop (imode
, and_optab
, op0
,
3732 immed_wide_int_const (~mask
, imode
),
3733 NULL_RTX
, 1, OPTAB_LIB_WIDEN
);
3735 temp
= expand_binop (imode
, ior_optab
, op0
, op1
,
3736 gen_lowpart (imode
, target
), 1, OPTAB_LIB_WIDEN
);
3737 target
= lowpart_subreg_maybe_copy (mode
, temp
, imode
);
3743 /* Expand the C99 copysign operation. OP0 and OP1 must be the same
3744 scalar floating point mode. Return NULL if we do not know how to
3745 expand the operation inline. */
3748 expand_copysign (rtx op0
, rtx op1
, rtx target
)
3750 machine_mode mode
= GET_MODE (op0
);
3751 const struct real_format
*fmt
;
3755 gcc_assert (SCALAR_FLOAT_MODE_P (mode
));
3756 gcc_assert (GET_MODE (op1
) == mode
);
3758 /* First try to do it with a special instruction. */
3759 temp
= expand_binop (mode
, copysign_optab
, op0
, op1
,
3760 target
, 0, OPTAB_DIRECT
);
3764 fmt
= REAL_MODE_FORMAT (mode
);
3765 if (fmt
== NULL
|| !fmt
->has_signed_zero
)
3769 if (CONST_DOUBLE_AS_FLOAT_P (op0
))
3771 if (real_isneg (CONST_DOUBLE_REAL_VALUE (op0
)))
3772 op0
= simplify_unary_operation (ABS
, mode
, op0
, mode
);
3776 if (fmt
->signbit_ro
>= 0
3777 && (CONST_DOUBLE_AS_FLOAT_P (op0
)
3778 || (optab_handler (neg_optab
, mode
) != CODE_FOR_nothing
3779 && optab_handler (abs_optab
, mode
) != CODE_FOR_nothing
)))
3781 temp
= expand_copysign_absneg (mode
, op0
, op1
, target
,
3782 fmt
->signbit_ro
, op0_is_abs
);
3787 if (fmt
->signbit_rw
< 0)
3789 return expand_copysign_bit (mode
, op0
, op1
, target
,
3790 fmt
->signbit_rw
, op0_is_abs
);
3793 /* Generate an instruction whose insn-code is INSN_CODE,
3794 with two operands: an output TARGET and an input OP0.
3795 TARGET *must* be nonzero, and the output is always stored there.
3796 CODE is an rtx code such that (CODE OP0) is an rtx that describes
3797 the value that is stored into TARGET.
3799 Return false if expansion failed. */
3802 maybe_emit_unop_insn (enum insn_code icode
, rtx target
, rtx op0
,
3805 struct expand_operand ops
[2];
3808 create_output_operand (&ops
[0], target
, GET_MODE (target
));
3809 create_input_operand (&ops
[1], op0
, GET_MODE (op0
));
3810 pat
= maybe_gen_insn (icode
, 2, ops
);
3814 if (INSN_P (pat
) && NEXT_INSN (as_a
<rtx_insn
*> (pat
)) != NULL_RTX
3816 add_equal_note (as_a
<rtx_insn
*> (pat
), ops
[0].value
, code
, ops
[1].value
,
3821 if (ops
[0].value
!= target
)
3822 emit_move_insn (target
, ops
[0].value
);
3825 /* Generate an instruction whose insn-code is INSN_CODE,
3826 with two operands: an output TARGET and an input OP0.
3827 TARGET *must* be nonzero, and the output is always stored there.
3828 CODE is an rtx code such that (CODE OP0) is an rtx that describes
3829 the value that is stored into TARGET. */
3832 emit_unop_insn (enum insn_code icode
, rtx target
, rtx op0
, enum rtx_code code
)
3834 bool ok
= maybe_emit_unop_insn (icode
, target
, op0
, code
);
3838 struct no_conflict_data
3841 rtx_insn
*first
, *insn
;
3845 /* Called via note_stores by emit_libcall_block. Set P->must_stay if
3846 the currently examined clobber / store has to stay in the list of
3847 insns that constitute the actual libcall block. */
3849 no_conflict_move_test (rtx dest
, const_rtx set
, void *p0
)
3851 struct no_conflict_data
*p
= (struct no_conflict_data
*) p0
;
3853 /* If this inns directly contributes to setting the target, it must stay. */
3854 if (reg_overlap_mentioned_p (p
->target
, dest
))
3855 p
->must_stay
= true;
3856 /* If we haven't committed to keeping any other insns in the list yet,
3857 there is nothing more to check. */
3858 else if (p
->insn
== p
->first
)
3860 /* If this insn sets / clobbers a register that feeds one of the insns
3861 already in the list, this insn has to stay too. */
3862 else if (reg_overlap_mentioned_p (dest
, PATTERN (p
->first
))
3863 || (CALL_P (p
->first
) && (find_reg_fusage (p
->first
, USE
, dest
)))
3864 || reg_used_between_p (dest
, p
->first
, p
->insn
)
3865 /* Likewise if this insn depends on a register set by a previous
3866 insn in the list, or if it sets a result (presumably a hard
3867 register) that is set or clobbered by a previous insn.
3868 N.B. the modified_*_p (SET_DEST...) tests applied to a MEM
3869 SET_DEST perform the former check on the address, and the latter
3870 check on the MEM. */
3871 || (GET_CODE (set
) == SET
3872 && (modified_in_p (SET_SRC (set
), p
->first
)
3873 || modified_in_p (SET_DEST (set
), p
->first
)
3874 || modified_between_p (SET_SRC (set
), p
->first
, p
->insn
)
3875 || modified_between_p (SET_DEST (set
), p
->first
, p
->insn
))))
3876 p
->must_stay
= true;
3880 /* Emit code to make a call to a constant function or a library call.
3882 INSNS is a list containing all insns emitted in the call.
3883 These insns leave the result in RESULT. Our block is to copy RESULT
3884 to TARGET, which is logically equivalent to EQUIV.
3886 We first emit any insns that set a pseudo on the assumption that these are
3887 loading constants into registers; doing so allows them to be safely cse'ed
3888 between blocks. Then we emit all the other insns in the block, followed by
3889 an insn to move RESULT to TARGET. This last insn will have a REQ_EQUAL
3890 note with an operand of EQUIV. */
3893 emit_libcall_block_1 (rtx_insn
*insns
, rtx target
, rtx result
, rtx equiv
,
3894 bool equiv_may_trap
)
3896 rtx final_dest
= target
;
3897 rtx_insn
*next
, *last
, *insn
;
3899 /* If this is a reg with REG_USERVAR_P set, then it could possibly turn
3900 into a MEM later. Protect the libcall block from this change. */
3901 if (! REG_P (target
) || REG_USERVAR_P (target
))
3902 target
= gen_reg_rtx (GET_MODE (target
));
3904 /* If we're using non-call exceptions, a libcall corresponding to an
3905 operation that may trap may also trap. */
3906 /* ??? See the comment in front of make_reg_eh_region_note. */
3907 if (cfun
->can_throw_non_call_exceptions
3908 && (equiv_may_trap
|| may_trap_p (equiv
)))
3910 for (insn
= insns
; insn
; insn
= NEXT_INSN (insn
))
3913 rtx note
= find_reg_note (insn
, REG_EH_REGION
, NULL_RTX
);
3916 int lp_nr
= INTVAL (XEXP (note
, 0));
3917 if (lp_nr
== 0 || lp_nr
== INT_MIN
)
3918 remove_note (insn
, note
);
3924 /* Look for any CALL_INSNs in this sequence, and attach a REG_EH_REGION
3925 reg note to indicate that this call cannot throw or execute a nonlocal
3926 goto (unless there is already a REG_EH_REGION note, in which case
3928 for (insn
= insns
; insn
; insn
= NEXT_INSN (insn
))
3930 make_reg_eh_region_note_nothrow_nononlocal (insn
);
3933 /* First emit all insns that set pseudos. Remove them from the list as
3934 we go. Avoid insns that set pseudos which were referenced in previous
3935 insns. These can be generated by move_by_pieces, for example,
3936 to update an address. Similarly, avoid insns that reference things
3937 set in previous insns. */
3939 for (insn
= insns
; insn
; insn
= next
)
3941 rtx set
= single_set (insn
);
3943 next
= NEXT_INSN (insn
);
3945 if (set
!= 0 && REG_P (SET_DEST (set
))
3946 && REGNO (SET_DEST (set
)) >= FIRST_PSEUDO_REGISTER
)
3948 struct no_conflict_data data
;
3950 data
.target
= const0_rtx
;
3954 note_stores (PATTERN (insn
), no_conflict_move_test
, &data
);
3955 if (! data
.must_stay
)
3957 if (PREV_INSN (insn
))
3958 SET_NEXT_INSN (PREV_INSN (insn
)) = next
;
3963 SET_PREV_INSN (next
) = PREV_INSN (insn
);
3969 /* Some ports use a loop to copy large arguments onto the stack.
3970 Don't move anything outside such a loop. */
3975 /* Write the remaining insns followed by the final copy. */
3976 for (insn
= insns
; insn
; insn
= next
)
3978 next
= NEXT_INSN (insn
);
3983 last
= emit_move_insn (target
, result
);
3984 set_dst_reg_note (last
, REG_EQUAL
, copy_rtx (equiv
), target
);
3986 if (final_dest
!= target
)
3987 emit_move_insn (final_dest
, target
);
3991 emit_libcall_block (rtx insns
, rtx target
, rtx result
, rtx equiv
)
3993 emit_libcall_block_1 (safe_as_a
<rtx_insn
*> (insns
),
3994 target
, result
, equiv
, false);
3997 /* Nonzero if we can perform a comparison of mode MODE straightforwardly.
3998 PURPOSE describes how this comparison will be used. CODE is the rtx
3999 comparison code we will be using.
4001 ??? Actually, CODE is slightly weaker than that. A target is still
4002 required to implement all of the normal bcc operations, but not
4003 required to implement all (or any) of the unordered bcc operations. */
4006 can_compare_p (enum rtx_code code
, machine_mode mode
,
4007 enum can_compare_purpose purpose
)
4010 test
= gen_rtx_fmt_ee (code
, mode
, const0_rtx
, const0_rtx
);
4013 enum insn_code icode
;
4015 if (purpose
== ccp_jump
4016 && (icode
= optab_handler (cbranch_optab
, mode
)) != CODE_FOR_nothing
4017 && insn_operand_matches (icode
, 0, test
))
4019 if (purpose
== ccp_store_flag
4020 && (icode
= optab_handler (cstore_optab
, mode
)) != CODE_FOR_nothing
4021 && insn_operand_matches (icode
, 1, test
))
4023 if (purpose
== ccp_cmov
4024 && optab_handler (cmov_optab
, mode
) != CODE_FOR_nothing
)
4027 mode
= GET_MODE_WIDER_MODE (mode
);
4028 PUT_MODE (test
, mode
);
4030 while (mode
!= VOIDmode
);
4035 /* This function is called when we are going to emit a compare instruction that
4036 compares the values found in *PX and *PY, using the rtl operator COMPARISON.
4038 *PMODE is the mode of the inputs (in case they are const_int).
4039 *PUNSIGNEDP nonzero says that the operands are unsigned;
4040 this matters if they need to be widened (as given by METHODS).
4042 If they have mode BLKmode, then SIZE specifies the size of both operands.
4044 This function performs all the setup necessary so that the caller only has
4045 to emit a single comparison insn. This setup can involve doing a BLKmode
4046 comparison or emitting a library call to perform the comparison if no insn
4047 is available to handle it.
4048 The values which are passed in through pointers can be modified; the caller
4049 should perform the comparison on the modified values. Constant
4050 comparisons must have already been folded. */
4053 prepare_cmp_insn (rtx x
, rtx y
, enum rtx_code comparison
, rtx size
,
4054 int unsignedp
, enum optab_methods methods
,
4055 rtx
*ptest
, machine_mode
*pmode
)
4057 machine_mode mode
= *pmode
;
4059 machine_mode cmp_mode
;
4060 enum mode_class mclass
;
4062 /* The other methods are not needed. */
4063 gcc_assert (methods
== OPTAB_DIRECT
|| methods
== OPTAB_WIDEN
4064 || methods
== OPTAB_LIB_WIDEN
);
4066 /* If we are optimizing, force expensive constants into a register. */
4067 if (CONSTANT_P (x
) && optimize
4068 && (rtx_cost (x
, COMPARE
, 0, optimize_insn_for_speed_p ())
4069 > COSTS_N_INSNS (1)))
4070 x
= force_reg (mode
, x
);
4072 if (CONSTANT_P (y
) && optimize
4073 && (rtx_cost (y
, COMPARE
, 1, optimize_insn_for_speed_p ())
4074 > COSTS_N_INSNS (1)))
4075 y
= force_reg (mode
, y
);
4078 /* Make sure if we have a canonical comparison. The RTL
4079 documentation states that canonical comparisons are required only
4080 for targets which have cc0. */
4081 gcc_assert (!CONSTANT_P (x
) || CONSTANT_P (y
));
4084 /* Don't let both operands fail to indicate the mode. */
4085 if (GET_MODE (x
) == VOIDmode
&& GET_MODE (y
) == VOIDmode
)
4086 x
= force_reg (mode
, x
);
4087 if (mode
== VOIDmode
)
4088 mode
= GET_MODE (x
) != VOIDmode
? GET_MODE (x
) : GET_MODE (y
);
4090 /* Handle all BLKmode compares. */
4092 if (mode
== BLKmode
)
4094 machine_mode result_mode
;
4095 enum insn_code cmp_code
;
4100 = GEN_INT (MIN (MEM_ALIGN (x
), MEM_ALIGN (y
)) / BITS_PER_UNIT
);
4104 /* Try to use a memory block compare insn - either cmpstr
4105 or cmpmem will do. */
4106 for (cmp_mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
4107 cmp_mode
!= VOIDmode
;
4108 cmp_mode
= GET_MODE_WIDER_MODE (cmp_mode
))
4110 cmp_code
= direct_optab_handler (cmpmem_optab
, cmp_mode
);
4111 if (cmp_code
== CODE_FOR_nothing
)
4112 cmp_code
= direct_optab_handler (cmpstr_optab
, cmp_mode
);
4113 if (cmp_code
== CODE_FOR_nothing
)
4114 cmp_code
= direct_optab_handler (cmpstrn_optab
, cmp_mode
);
4115 if (cmp_code
== CODE_FOR_nothing
)
4118 /* Must make sure the size fits the insn's mode. */
4119 if ((CONST_INT_P (size
)
4120 && INTVAL (size
) >= (1 << GET_MODE_BITSIZE (cmp_mode
)))
4121 || (GET_MODE_BITSIZE (GET_MODE (size
))
4122 > GET_MODE_BITSIZE (cmp_mode
)))
4125 result_mode
= insn_data
[cmp_code
].operand
[0].mode
;
4126 result
= gen_reg_rtx (result_mode
);
4127 size
= convert_to_mode (cmp_mode
, size
, 1);
4128 emit_insn (GEN_FCN (cmp_code
) (result
, x
, y
, size
, opalign
));
4130 *ptest
= gen_rtx_fmt_ee (comparison
, VOIDmode
, result
, const0_rtx
);
4131 *pmode
= result_mode
;
4135 if (methods
!= OPTAB_LIB
&& methods
!= OPTAB_LIB_WIDEN
)
4138 /* Otherwise call a library function, memcmp. */
4139 libfunc
= memcmp_libfunc
;
4140 length_type
= sizetype
;
4141 result_mode
= TYPE_MODE (integer_type_node
);
4142 cmp_mode
= TYPE_MODE (length_type
);
4143 size
= convert_to_mode (TYPE_MODE (length_type
), size
,
4144 TYPE_UNSIGNED (length_type
));
4146 result
= emit_library_call_value (libfunc
, 0, LCT_PURE
,
4154 methods
= OPTAB_LIB_WIDEN
;
4158 /* Don't allow operands to the compare to trap, as that can put the
4159 compare and branch in different basic blocks. */
4160 if (cfun
->can_throw_non_call_exceptions
)
4163 x
= force_reg (mode
, x
);
4165 y
= force_reg (mode
, y
);
4168 if (GET_MODE_CLASS (mode
) == MODE_CC
)
4170 gcc_assert (can_compare_p (comparison
, CCmode
, ccp_jump
));
4171 *ptest
= gen_rtx_fmt_ee (comparison
, VOIDmode
, x
, y
);
4175 mclass
= GET_MODE_CLASS (mode
);
4176 test
= gen_rtx_fmt_ee (comparison
, VOIDmode
, x
, y
);
4180 enum insn_code icode
;
4181 icode
= optab_handler (cbranch_optab
, cmp_mode
);
4182 if (icode
!= CODE_FOR_nothing
4183 && insn_operand_matches (icode
, 0, test
))
4185 rtx_insn
*last
= get_last_insn ();
4186 rtx op0
= prepare_operand (icode
, x
, 1, mode
, cmp_mode
, unsignedp
);
4187 rtx op1
= prepare_operand (icode
, y
, 2, mode
, cmp_mode
, unsignedp
);
4189 && insn_operand_matches (icode
, 1, op0
)
4190 && insn_operand_matches (icode
, 2, op1
))
4192 XEXP (test
, 0) = op0
;
4193 XEXP (test
, 1) = op1
;
4198 delete_insns_since (last
);
4201 if (methods
== OPTAB_DIRECT
|| !CLASS_HAS_WIDER_MODES_P (mclass
))
4203 cmp_mode
= GET_MODE_WIDER_MODE (cmp_mode
);
4205 while (cmp_mode
!= VOIDmode
);
4207 if (methods
!= OPTAB_LIB_WIDEN
)
4210 if (!SCALAR_FLOAT_MODE_P (mode
))
4213 machine_mode ret_mode
;
4215 /* Handle a libcall just for the mode we are using. */
4216 libfunc
= optab_libfunc (cmp_optab
, mode
);
4217 gcc_assert (libfunc
);
4219 /* If we want unsigned, and this mode has a distinct unsigned
4220 comparison routine, use that. */
4223 rtx ulibfunc
= optab_libfunc (ucmp_optab
, mode
);
4228 ret_mode
= targetm
.libgcc_cmp_return_mode ();
4229 result
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_CONST
,
4230 ret_mode
, 2, x
, mode
, y
, mode
);
4232 /* There are two kinds of comparison routines. Biased routines
4233 return 0/1/2, and unbiased routines return -1/0/1. Other parts
4234 of gcc expect that the comparison operation is equivalent
4235 to the modified comparison. For signed comparisons compare the
4236 result against 1 in the biased case, and zero in the unbiased
4237 case. For unsigned comparisons always compare against 1 after
4238 biasing the unbiased result by adding 1. This gives us a way to
4240 The comparisons in the fixed-point helper library are always
4245 if (!TARGET_LIB_INT_CMP_BIASED
&& !ALL_FIXED_POINT_MODE_P (mode
))
4248 x
= plus_constant (ret_mode
, result
, 1);
4254 prepare_cmp_insn (x
, y
, comparison
, NULL_RTX
, unsignedp
, methods
,
4258 prepare_float_lib_cmp (x
, y
, comparison
, ptest
, pmode
);
4266 /* Before emitting an insn with code ICODE, make sure that X, which is going
4267 to be used for operand OPNUM of the insn, is converted from mode MODE to
4268 WIDER_MODE (UNSIGNEDP determines whether it is an unsigned conversion), and
4269 that it is accepted by the operand predicate. Return the new value. */
4272 prepare_operand (enum insn_code icode
, rtx x
, int opnum
, machine_mode mode
,
4273 machine_mode wider_mode
, int unsignedp
)
4275 if (mode
!= wider_mode
)
4276 x
= convert_modes (wider_mode
, mode
, x
, unsignedp
);
4278 if (!insn_operand_matches (icode
, opnum
, x
))
4280 machine_mode op_mode
= insn_data
[(int) icode
].operand
[opnum
].mode
;
4281 if (reload_completed
)
4283 if (GET_MODE (x
) != op_mode
&& GET_MODE (x
) != VOIDmode
)
4285 x
= copy_to_mode_reg (op_mode
, x
);
4291 /* Subroutine of emit_cmp_and_jump_insns; this function is called when we know
4292 we can do the branch. */
4295 emit_cmp_and_jump_insn_1 (rtx test
, machine_mode mode
, rtx label
, int prob
)
4297 machine_mode optab_mode
;
4298 enum mode_class mclass
;
4299 enum insn_code icode
;
4302 mclass
= GET_MODE_CLASS (mode
);
4303 optab_mode
= (mclass
== MODE_CC
) ? CCmode
: mode
;
4304 icode
= optab_handler (cbranch_optab
, optab_mode
);
4306 gcc_assert (icode
!= CODE_FOR_nothing
);
4307 gcc_assert (insn_operand_matches (icode
, 0, test
));
4308 insn
= emit_jump_insn (GEN_FCN (icode
) (test
, XEXP (test
, 0),
4309 XEXP (test
, 1), label
));
4311 && profile_status_for_fn (cfun
) != PROFILE_ABSENT
4314 && any_condjump_p (insn
)
4315 && !find_reg_note (insn
, REG_BR_PROB
, 0))
4316 add_int_reg_note (insn
, REG_BR_PROB
, prob
);
4319 /* Generate code to compare X with Y so that the condition codes are
4320 set and to jump to LABEL if the condition is true. If X is a
4321 constant and Y is not a constant, then the comparison is swapped to
4322 ensure that the comparison RTL has the canonical form.
4324 UNSIGNEDP nonzero says that X and Y are unsigned; this matters if they
4325 need to be widened. UNSIGNEDP is also used to select the proper
4326 branch condition code.
4328 If X and Y have mode BLKmode, then SIZE specifies the size of both X and Y.
4330 MODE is the mode of the inputs (in case they are const_int).
4332 COMPARISON is the rtl operator to compare with (EQ, NE, GT, etc.).
4333 It will be potentially converted into an unsigned variant based on
4334 UNSIGNEDP to select a proper jump instruction.
4336 PROB is the probability of jumping to LABEL. */
4339 emit_cmp_and_jump_insns (rtx x
, rtx y
, enum rtx_code comparison
, rtx size
,
4340 machine_mode mode
, int unsignedp
, rtx label
,
4343 rtx op0
= x
, op1
= y
;
4346 /* Swap operands and condition to ensure canonical RTL. */
4347 if (swap_commutative_operands_p (x
, y
)
4348 && can_compare_p (swap_condition (comparison
), mode
, ccp_jump
))
4351 comparison
= swap_condition (comparison
);
4354 /* If OP0 is still a constant, then both X and Y must be constants
4355 or the opposite comparison is not supported. Force X into a register
4356 to create canonical RTL. */
4357 if (CONSTANT_P (op0
))
4358 op0
= force_reg (mode
, op0
);
4361 comparison
= unsigned_condition (comparison
);
4363 prepare_cmp_insn (op0
, op1
, comparison
, size
, unsignedp
, OPTAB_LIB_WIDEN
,
4365 emit_cmp_and_jump_insn_1 (test
, mode
, label
, prob
);
4369 /* Emit a library call comparison between floating point X and Y.
4370 COMPARISON is the rtl operator to compare with (EQ, NE, GT, etc.). */
4373 prepare_float_lib_cmp (rtx x
, rtx y
, enum rtx_code comparison
,
4374 rtx
*ptest
, machine_mode
*pmode
)
4376 enum rtx_code swapped
= swap_condition (comparison
);
4377 enum rtx_code reversed
= reverse_condition_maybe_unordered (comparison
);
4378 machine_mode orig_mode
= GET_MODE (x
);
4379 machine_mode mode
, cmp_mode
;
4380 rtx true_rtx
, false_rtx
;
4381 rtx value
, target
, equiv
;
4384 bool reversed_p
= false;
4385 cmp_mode
= targetm
.libgcc_cmp_return_mode ();
4387 for (mode
= orig_mode
;
4389 mode
= GET_MODE_WIDER_MODE (mode
))
4391 if (code_to_optab (comparison
)
4392 && (libfunc
= optab_libfunc (code_to_optab (comparison
), mode
)))
4395 if (code_to_optab (swapped
)
4396 && (libfunc
= optab_libfunc (code_to_optab (swapped
), mode
)))
4399 tmp
= x
; x
= y
; y
= tmp
;
4400 comparison
= swapped
;
4404 if (code_to_optab (reversed
)
4405 && (libfunc
= optab_libfunc (code_to_optab (reversed
), mode
)))
4407 comparison
= reversed
;
4413 gcc_assert (mode
!= VOIDmode
);
4415 if (mode
!= orig_mode
)
4417 x
= convert_to_mode (mode
, x
, 0);
4418 y
= convert_to_mode (mode
, y
, 0);
4421 /* Attach a REG_EQUAL note describing the semantics of the libcall to
4422 the RTL. The allows the RTL optimizers to delete the libcall if the
4423 condition can be determined at compile-time. */
4424 if (comparison
== UNORDERED
4425 || FLOAT_LIB_COMPARE_RETURNS_BOOL (mode
, comparison
))
4427 true_rtx
= const_true_rtx
;
4428 false_rtx
= const0_rtx
;
4435 true_rtx
= const0_rtx
;
4436 false_rtx
= const_true_rtx
;
4440 true_rtx
= const_true_rtx
;
4441 false_rtx
= const0_rtx
;
4445 true_rtx
= const1_rtx
;
4446 false_rtx
= const0_rtx
;
4450 true_rtx
= const0_rtx
;
4451 false_rtx
= constm1_rtx
;
4455 true_rtx
= constm1_rtx
;
4456 false_rtx
= const0_rtx
;
4460 true_rtx
= const0_rtx
;
4461 false_rtx
= const1_rtx
;
4469 if (comparison
== UNORDERED
)
4471 rtx temp
= simplify_gen_relational (NE
, cmp_mode
, mode
, x
, x
);
4472 equiv
= simplify_gen_relational (NE
, cmp_mode
, mode
, y
, y
);
4473 equiv
= simplify_gen_ternary (IF_THEN_ELSE
, cmp_mode
, cmp_mode
,
4474 temp
, const_true_rtx
, equiv
);
4478 equiv
= simplify_gen_relational (comparison
, cmp_mode
, mode
, x
, y
);
4479 if (! FLOAT_LIB_COMPARE_RETURNS_BOOL (mode
, comparison
))
4480 equiv
= simplify_gen_ternary (IF_THEN_ELSE
, cmp_mode
, cmp_mode
,
4481 equiv
, true_rtx
, false_rtx
);
4485 value
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_CONST
,
4486 cmp_mode
, 2, x
, mode
, y
, mode
);
4487 insns
= get_insns ();
4490 target
= gen_reg_rtx (cmp_mode
);
4491 emit_libcall_block (insns
, target
, value
, equiv
);
4493 if (comparison
== UNORDERED
4494 || FLOAT_LIB_COMPARE_RETURNS_BOOL (mode
, comparison
)
4496 *ptest
= gen_rtx_fmt_ee (reversed_p
? EQ
: NE
, VOIDmode
, target
, false_rtx
);
4498 *ptest
= gen_rtx_fmt_ee (comparison
, VOIDmode
, target
, const0_rtx
);
4503 /* Generate code to indirectly jump to a location given in the rtx LOC. */
4506 emit_indirect_jump (rtx loc ATTRIBUTE_UNUSED
)
4508 #ifndef HAVE_indirect_jump
4509 sorry ("indirect jumps are not available on this target");
4511 struct expand_operand ops
[1];
4512 create_address_operand (&ops
[0], loc
);
4513 expand_jump_insn (CODE_FOR_indirect_jump
, 1, ops
);
4518 #ifdef HAVE_conditional_move
4520 /* Emit a conditional move instruction if the machine supports one for that
4521 condition and machine mode.
4523 OP0 and OP1 are the operands that should be compared using CODE. CMODE is
4524 the mode to use should they be constants. If it is VOIDmode, they cannot
4527 OP2 should be stored in TARGET if the comparison is true, otherwise OP3
4528 should be stored there. MODE is the mode to use should they be constants.
4529 If it is VOIDmode, they cannot both be constants.
4531 The result is either TARGET (perhaps modified) or NULL_RTX if the operation
4532 is not supported. */
4535 emit_conditional_move (rtx target
, enum rtx_code code
, rtx op0
, rtx op1
,
4536 machine_mode cmode
, rtx op2
, rtx op3
,
4537 machine_mode mode
, int unsignedp
)
4539 rtx tem
, comparison
;
4541 enum insn_code icode
;
4542 enum rtx_code reversed
;
4544 /* If one operand is constant, make it the second one. Only do this
4545 if the other operand is not constant as well. */
4547 if (swap_commutative_operands_p (op0
, op1
))
4552 code
= swap_condition (code
);
4555 /* get_condition will prefer to generate LT and GT even if the old
4556 comparison was against zero, so undo that canonicalization here since
4557 comparisons against zero are cheaper. */
4558 if (code
== LT
&& op1
== const1_rtx
)
4559 code
= LE
, op1
= const0_rtx
;
4560 else if (code
== GT
&& op1
== constm1_rtx
)
4561 code
= GE
, op1
= const0_rtx
;
4563 if (cmode
== VOIDmode
)
4564 cmode
= GET_MODE (op0
);
4566 if (swap_commutative_operands_p (op2
, op3
)
4567 && ((reversed
= reversed_comparison_code_parts (code
, op0
, op1
, NULL
))
4576 if (mode
== VOIDmode
)
4577 mode
= GET_MODE (op2
);
4579 icode
= direct_optab_handler (movcc_optab
, mode
);
4581 if (icode
== CODE_FOR_nothing
)
4585 target
= gen_reg_rtx (mode
);
4587 code
= unsignedp
? unsigned_condition (code
) : code
;
4588 comparison
= simplify_gen_relational (code
, VOIDmode
, cmode
, op0
, op1
);
4590 /* We can get const0_rtx or const_true_rtx in some circumstances. Just
4591 return NULL and let the caller figure out how best to deal with this
4593 if (!COMPARISON_P (comparison
))
4596 saved_pending_stack_adjust save
;
4597 save_pending_stack_adjust (&save
);
4598 last
= get_last_insn ();
4599 do_pending_stack_adjust ();
4600 prepare_cmp_insn (XEXP (comparison
, 0), XEXP (comparison
, 1),
4601 GET_CODE (comparison
), NULL_RTX
, unsignedp
, OPTAB_WIDEN
,
4602 &comparison
, &cmode
);
4605 struct expand_operand ops
[4];
4607 create_output_operand (&ops
[0], target
, mode
);
4608 create_fixed_operand (&ops
[1], comparison
);
4609 create_input_operand (&ops
[2], op2
, mode
);
4610 create_input_operand (&ops
[3], op3
, mode
);
4611 if (maybe_expand_insn (icode
, 4, ops
))
4613 if (ops
[0].value
!= target
)
4614 convert_move (target
, ops
[0].value
, false);
4618 delete_insns_since (last
);
4619 restore_pending_stack_adjust (&save
);
4623 /* Return nonzero if a conditional move of mode MODE is supported.
4625 This function is for combine so it can tell whether an insn that looks
4626 like a conditional move is actually supported by the hardware. If we
4627 guess wrong we lose a bit on optimization, but that's it. */
4628 /* ??? sparc64 supports conditionally moving integers values based on fp
4629 comparisons, and vice versa. How do we handle them? */
4632 can_conditionally_move_p (machine_mode mode
)
4634 if (direct_optab_handler (movcc_optab
, mode
) != CODE_FOR_nothing
)
4640 #endif /* HAVE_conditional_move */
4642 /* Emit a conditional addition instruction if the machine supports one for that
4643 condition and machine mode.
4645 OP0 and OP1 are the operands that should be compared using CODE. CMODE is
4646 the mode to use should they be constants. If it is VOIDmode, they cannot
4649 OP2 should be stored in TARGET if the comparison is false, otherwise OP2+OP3
4650 should be stored there. MODE is the mode to use should they be constants.
4651 If it is VOIDmode, they cannot both be constants.
4653 The result is either TARGET (perhaps modified) or NULL_RTX if the operation
4654 is not supported. */
4657 emit_conditional_add (rtx target
, enum rtx_code code
, rtx op0
, rtx op1
,
4658 machine_mode cmode
, rtx op2
, rtx op3
,
4659 machine_mode mode
, int unsignedp
)
4661 rtx tem
, comparison
;
4663 enum insn_code icode
;
4665 /* If one operand is constant, make it the second one. Only do this
4666 if the other operand is not constant as well. */
4668 if (swap_commutative_operands_p (op0
, op1
))
4673 code
= swap_condition (code
);
4676 /* get_condition will prefer to generate LT and GT even if the old
4677 comparison was against zero, so undo that canonicalization here since
4678 comparisons against zero are cheaper. */
4679 if (code
== LT
&& op1
== const1_rtx
)
4680 code
= LE
, op1
= const0_rtx
;
4681 else if (code
== GT
&& op1
== constm1_rtx
)
4682 code
= GE
, op1
= const0_rtx
;
4684 if (cmode
== VOIDmode
)
4685 cmode
= GET_MODE (op0
);
4687 if (mode
== VOIDmode
)
4688 mode
= GET_MODE (op2
);
4690 icode
= optab_handler (addcc_optab
, mode
);
4692 if (icode
== CODE_FOR_nothing
)
4696 target
= gen_reg_rtx (mode
);
4698 code
= unsignedp
? unsigned_condition (code
) : code
;
4699 comparison
= simplify_gen_relational (code
, VOIDmode
, cmode
, op0
, op1
);
4701 /* We can get const0_rtx or const_true_rtx in some circumstances. Just
4702 return NULL and let the caller figure out how best to deal with this
4704 if (!COMPARISON_P (comparison
))
4707 do_pending_stack_adjust ();
4708 last
= get_last_insn ();
4709 prepare_cmp_insn (XEXP (comparison
, 0), XEXP (comparison
, 1),
4710 GET_CODE (comparison
), NULL_RTX
, unsignedp
, OPTAB_WIDEN
,
4711 &comparison
, &cmode
);
4714 struct expand_operand ops
[4];
4716 create_output_operand (&ops
[0], target
, mode
);
4717 create_fixed_operand (&ops
[1], comparison
);
4718 create_input_operand (&ops
[2], op2
, mode
);
4719 create_input_operand (&ops
[3], op3
, mode
);
4720 if (maybe_expand_insn (icode
, 4, ops
))
4722 if (ops
[0].value
!= target
)
4723 convert_move (target
, ops
[0].value
, false);
4727 delete_insns_since (last
);
4731 /* These functions attempt to generate an insn body, rather than
4732 emitting the insn, but if the gen function already emits them, we
4733 make no attempt to turn them back into naked patterns. */
4735 /* Generate and return an insn body to add Y to X. */
4738 gen_add2_insn (rtx x
, rtx y
)
4740 enum insn_code icode
= optab_handler (add_optab
, GET_MODE (x
));
4742 gcc_assert (insn_operand_matches (icode
, 0, x
));
4743 gcc_assert (insn_operand_matches (icode
, 1, x
));
4744 gcc_assert (insn_operand_matches (icode
, 2, y
));
4746 return GEN_FCN (icode
) (x
, x
, y
);
4749 /* Generate and return an insn body to add r1 and c,
4750 storing the result in r0. */
4753 gen_add3_insn (rtx r0
, rtx r1
, rtx c
)
4755 enum insn_code icode
= optab_handler (add_optab
, GET_MODE (r0
));
4757 if (icode
== CODE_FOR_nothing
4758 || !insn_operand_matches (icode
, 0, r0
)
4759 || !insn_operand_matches (icode
, 1, r1
)
4760 || !insn_operand_matches (icode
, 2, c
))
4763 return GEN_FCN (icode
) (r0
, r1
, c
);
4767 have_add2_insn (rtx x
, rtx y
)
4769 enum insn_code icode
;
4771 gcc_assert (GET_MODE (x
) != VOIDmode
);
4773 icode
= optab_handler (add_optab
, GET_MODE (x
));
4775 if (icode
== CODE_FOR_nothing
)
4778 if (!insn_operand_matches (icode
, 0, x
)
4779 || !insn_operand_matches (icode
, 1, x
)
4780 || !insn_operand_matches (icode
, 2, y
))
4786 /* Generate and return an insn body to add Y to X. */
4789 gen_addptr3_insn (rtx x
, rtx y
, rtx z
)
4791 enum insn_code icode
= optab_handler (addptr3_optab
, GET_MODE (x
));
4793 gcc_assert (insn_operand_matches (icode
, 0, x
));
4794 gcc_assert (insn_operand_matches (icode
, 1, y
));
4795 gcc_assert (insn_operand_matches (icode
, 2, z
));
4797 return GEN_FCN (icode
) (x
, y
, z
);
4800 /* Return true if the target implements an addptr pattern and X, Y,
4801 and Z are valid for the pattern predicates. */
4804 have_addptr3_insn (rtx x
, rtx y
, rtx z
)
4806 enum insn_code icode
;
4808 gcc_assert (GET_MODE (x
) != VOIDmode
);
4810 icode
= optab_handler (addptr3_optab
, GET_MODE (x
));
4812 if (icode
== CODE_FOR_nothing
)
4815 if (!insn_operand_matches (icode
, 0, x
)
4816 || !insn_operand_matches (icode
, 1, y
)
4817 || !insn_operand_matches (icode
, 2, z
))
4823 /* Generate and return an insn body to subtract Y from X. */
4826 gen_sub2_insn (rtx x
, rtx y
)
4828 enum insn_code icode
= optab_handler (sub_optab
, GET_MODE (x
));
4830 gcc_assert (insn_operand_matches (icode
, 0, x
));
4831 gcc_assert (insn_operand_matches (icode
, 1, x
));
4832 gcc_assert (insn_operand_matches (icode
, 2, y
));
4834 return GEN_FCN (icode
) (x
, x
, y
);
4837 /* Generate and return an insn body to subtract r1 and c,
4838 storing the result in r0. */
4841 gen_sub3_insn (rtx r0
, rtx r1
, rtx c
)
4843 enum insn_code icode
= optab_handler (sub_optab
, GET_MODE (r0
));
4845 if (icode
== CODE_FOR_nothing
4846 || !insn_operand_matches (icode
, 0, r0
)
4847 || !insn_operand_matches (icode
, 1, r1
)
4848 || !insn_operand_matches (icode
, 2, c
))
4851 return GEN_FCN (icode
) (r0
, r1
, c
);
4855 have_sub2_insn (rtx x
, rtx y
)
4857 enum insn_code icode
;
4859 gcc_assert (GET_MODE (x
) != VOIDmode
);
4861 icode
= optab_handler (sub_optab
, GET_MODE (x
));
4863 if (icode
== CODE_FOR_nothing
)
4866 if (!insn_operand_matches (icode
, 0, x
)
4867 || !insn_operand_matches (icode
, 1, x
)
4868 || !insn_operand_matches (icode
, 2, y
))
4874 /* Return the insn code used to extend FROM_MODE to TO_MODE.
4875 UNSIGNEDP specifies zero-extension instead of sign-extension. If
4876 no such operation exists, CODE_FOR_nothing will be returned. */
4879 can_extend_p (machine_mode to_mode
, machine_mode from_mode
,
4883 #ifdef HAVE_ptr_extend
4885 return CODE_FOR_ptr_extend
;
4888 tab
= unsignedp
? zext_optab
: sext_optab
;
4889 return convert_optab_handler (tab
, to_mode
, from_mode
);
4892 /* Generate the body of an insn to extend Y (with mode MFROM)
4893 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
4896 gen_extend_insn (rtx x
, rtx y
, machine_mode mto
,
4897 machine_mode mfrom
, int unsignedp
)
4899 enum insn_code icode
= can_extend_p (mto
, mfrom
, unsignedp
);
4900 return GEN_FCN (icode
) (x
, y
);
4903 /* can_fix_p and can_float_p say whether the target machine
4904 can directly convert a given fixed point type to
4905 a given floating point type, or vice versa.
4906 The returned value is the CODE_FOR_... value to use,
4907 or CODE_FOR_nothing if these modes cannot be directly converted.
4909 *TRUNCP_PTR is set to 1 if it is necessary to output
4910 an explicit FTRUNC insn before the fix insn; otherwise 0. */
4912 static enum insn_code
4913 can_fix_p (machine_mode fixmode
, machine_mode fltmode
,
4914 int unsignedp
, int *truncp_ptr
)
4917 enum insn_code icode
;
4919 tab
= unsignedp
? ufixtrunc_optab
: sfixtrunc_optab
;
4920 icode
= convert_optab_handler (tab
, fixmode
, fltmode
);
4921 if (icode
!= CODE_FOR_nothing
)
4927 /* FIXME: This requires a port to define both FIX and FTRUNC pattern
4928 for this to work. We need to rework the fix* and ftrunc* patterns
4929 and documentation. */
4930 tab
= unsignedp
? ufix_optab
: sfix_optab
;
4931 icode
= convert_optab_handler (tab
, fixmode
, fltmode
);
4932 if (icode
!= CODE_FOR_nothing
4933 && optab_handler (ftrunc_optab
, fltmode
) != CODE_FOR_nothing
)
4940 return CODE_FOR_nothing
;
4944 can_float_p (machine_mode fltmode
, machine_mode fixmode
,
4949 tab
= unsignedp
? ufloat_optab
: sfloat_optab
;
4950 return convert_optab_handler (tab
, fltmode
, fixmode
);
4953 /* Function supportable_convert_operation
4955 Check whether an operation represented by the code CODE is a
4956 convert operation that is supported by the target platform in
4957 vector form (i.e., when operating on arguments of type VECTYPE_IN
4958 producing a result of type VECTYPE_OUT).
4960 Convert operations we currently support directly are FIX_TRUNC and FLOAT.
4961 This function checks if these operations are supported
4962 by the target platform either directly (via vector tree-codes), or via
4966 - CODE1 is code of vector operation to be used when
4967 vectorizing the operation, if available.
4968 - DECL is decl of target builtin functions to be used
4969 when vectorizing the operation, if available. In this case,
4970 CODE1 is CALL_EXPR. */
4973 supportable_convert_operation (enum tree_code code
,
4974 tree vectype_out
, tree vectype_in
,
4975 tree
*decl
, enum tree_code
*code1
)
4980 m1
= TYPE_MODE (vectype_out
);
4981 m2
= TYPE_MODE (vectype_in
);
4983 /* First check if we can done conversion directly. */
4984 if ((code
== FIX_TRUNC_EXPR
4985 && can_fix_p (m1
,m2
,TYPE_UNSIGNED (vectype_out
), &truncp
)
4986 != CODE_FOR_nothing
)
4987 || (code
== FLOAT_EXPR
4988 && can_float_p (m1
,m2
,TYPE_UNSIGNED (vectype_in
))
4989 != CODE_FOR_nothing
))
4995 /* Now check for builtin. */
4996 if (targetm
.vectorize
.builtin_conversion
4997 && targetm
.vectorize
.builtin_conversion (code
, vectype_out
, vectype_in
))
5000 *decl
= targetm
.vectorize
.builtin_conversion (code
, vectype_out
, vectype_in
);
5007 /* Generate code to convert FROM to floating point
5008 and store in TO. FROM must be fixed point and not VOIDmode.
5009 UNSIGNEDP nonzero means regard FROM as unsigned.
5010 Normally this is done by correcting the final value
5011 if it is negative. */
5014 expand_float (rtx to
, rtx from
, int unsignedp
)
5016 enum insn_code icode
;
5018 machine_mode fmode
, imode
;
5019 bool can_do_signed
= false;
5021 /* Crash now, because we won't be able to decide which mode to use. */
5022 gcc_assert (GET_MODE (from
) != VOIDmode
);
5024 /* Look for an insn to do the conversion. Do it in the specified
5025 modes if possible; otherwise convert either input, output or both to
5026 wider mode. If the integer mode is wider than the mode of FROM,
5027 we can do the conversion signed even if the input is unsigned. */
5029 for (fmode
= GET_MODE (to
); fmode
!= VOIDmode
;
5030 fmode
= GET_MODE_WIDER_MODE (fmode
))
5031 for (imode
= GET_MODE (from
); imode
!= VOIDmode
;
5032 imode
= GET_MODE_WIDER_MODE (imode
))
5034 int doing_unsigned
= unsignedp
;
5036 if (fmode
!= GET_MODE (to
)
5037 && significand_size (fmode
) < GET_MODE_PRECISION (GET_MODE (from
)))
5040 icode
= can_float_p (fmode
, imode
, unsignedp
);
5041 if (icode
== CODE_FOR_nothing
&& unsignedp
)
5043 enum insn_code scode
= can_float_p (fmode
, imode
, 0);
5044 if (scode
!= CODE_FOR_nothing
)
5045 can_do_signed
= true;
5046 if (imode
!= GET_MODE (from
))
5047 icode
= scode
, doing_unsigned
= 0;
5050 if (icode
!= CODE_FOR_nothing
)
5052 if (imode
!= GET_MODE (from
))
5053 from
= convert_to_mode (imode
, from
, unsignedp
);
5055 if (fmode
!= GET_MODE (to
))
5056 target
= gen_reg_rtx (fmode
);
5058 emit_unop_insn (icode
, target
, from
,
5059 doing_unsigned
? UNSIGNED_FLOAT
: FLOAT
);
5062 convert_move (to
, target
, 0);
5067 /* Unsigned integer, and no way to convert directly. Convert as signed,
5068 then unconditionally adjust the result. */
5069 if (unsignedp
&& can_do_signed
)
5071 rtx_code_label
*label
= gen_label_rtx ();
5073 REAL_VALUE_TYPE offset
;
5075 /* Look for a usable floating mode FMODE wider than the source and at
5076 least as wide as the target. Using FMODE will avoid rounding woes
5077 with unsigned values greater than the signed maximum value. */
5079 for (fmode
= GET_MODE (to
); fmode
!= VOIDmode
;
5080 fmode
= GET_MODE_WIDER_MODE (fmode
))
5081 if (GET_MODE_PRECISION (GET_MODE (from
)) < GET_MODE_BITSIZE (fmode
)
5082 && can_float_p (fmode
, GET_MODE (from
), 0) != CODE_FOR_nothing
)
5085 if (fmode
== VOIDmode
)
5087 /* There is no such mode. Pretend the target is wide enough. */
5088 fmode
= GET_MODE (to
);
5090 /* Avoid double-rounding when TO is narrower than FROM. */
5091 if ((significand_size (fmode
) + 1)
5092 < GET_MODE_PRECISION (GET_MODE (from
)))
5095 rtx_code_label
*neglabel
= gen_label_rtx ();
5097 /* Don't use TARGET if it isn't a register, is a hard register,
5098 or is the wrong mode. */
5100 || REGNO (target
) < FIRST_PSEUDO_REGISTER
5101 || GET_MODE (target
) != fmode
)
5102 target
= gen_reg_rtx (fmode
);
5104 imode
= GET_MODE (from
);
5105 do_pending_stack_adjust ();
5107 /* Test whether the sign bit is set. */
5108 emit_cmp_and_jump_insns (from
, const0_rtx
, LT
, NULL_RTX
, imode
,
5111 /* The sign bit is not set. Convert as signed. */
5112 expand_float (target
, from
, 0);
5113 emit_jump_insn (gen_jump (label
));
5116 /* The sign bit is set.
5117 Convert to a usable (positive signed) value by shifting right
5118 one bit, while remembering if a nonzero bit was shifted
5119 out; i.e., compute (from & 1) | (from >> 1). */
5121 emit_label (neglabel
);
5122 temp
= expand_binop (imode
, and_optab
, from
, const1_rtx
,
5123 NULL_RTX
, 1, OPTAB_LIB_WIDEN
);
5124 temp1
= expand_shift (RSHIFT_EXPR
, imode
, from
, 1, NULL_RTX
, 1);
5125 temp
= expand_binop (imode
, ior_optab
, temp
, temp1
, temp
, 1,
5127 expand_float (target
, temp
, 0);
5129 /* Multiply by 2 to undo the shift above. */
5130 temp
= expand_binop (fmode
, add_optab
, target
, target
,
5131 target
, 0, OPTAB_LIB_WIDEN
);
5133 emit_move_insn (target
, temp
);
5135 do_pending_stack_adjust ();
5141 /* If we are about to do some arithmetic to correct for an
5142 unsigned operand, do it in a pseudo-register. */
5144 if (GET_MODE (to
) != fmode
5145 || !REG_P (to
) || REGNO (to
) < FIRST_PSEUDO_REGISTER
)
5146 target
= gen_reg_rtx (fmode
);
5148 /* Convert as signed integer to floating. */
5149 expand_float (target
, from
, 0);
5151 /* If FROM is negative (and therefore TO is negative),
5152 correct its value by 2**bitwidth. */
5154 do_pending_stack_adjust ();
5155 emit_cmp_and_jump_insns (from
, const0_rtx
, GE
, NULL_RTX
, GET_MODE (from
),
5159 real_2expN (&offset
, GET_MODE_PRECISION (GET_MODE (from
)), fmode
);
5160 temp
= expand_binop (fmode
, add_optab
, target
,
5161 CONST_DOUBLE_FROM_REAL_VALUE (offset
, fmode
),
5162 target
, 0, OPTAB_LIB_WIDEN
);
5164 emit_move_insn (target
, temp
);
5166 do_pending_stack_adjust ();
5171 /* No hardware instruction available; call a library routine. */
5176 convert_optab tab
= unsignedp
? ufloat_optab
: sfloat_optab
;
5178 if (GET_MODE_PRECISION (GET_MODE (from
)) < GET_MODE_PRECISION (SImode
))
5179 from
= convert_to_mode (SImode
, from
, unsignedp
);
5181 libfunc
= convert_optab_libfunc (tab
, GET_MODE (to
), GET_MODE (from
));
5182 gcc_assert (libfunc
);
5186 value
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_CONST
,
5187 GET_MODE (to
), 1, from
,
5189 insns
= get_insns ();
5192 emit_libcall_block (insns
, target
, value
,
5193 gen_rtx_fmt_e (unsignedp
? UNSIGNED_FLOAT
: FLOAT
,
5194 GET_MODE (to
), from
));
5199 /* Copy result to requested destination
5200 if we have been computing in a temp location. */
5204 if (GET_MODE (target
) == GET_MODE (to
))
5205 emit_move_insn (to
, target
);
5207 convert_move (to
, target
, 0);
5211 /* Generate code to convert FROM to fixed point and store in TO. FROM
5212 must be floating point. */
5215 expand_fix (rtx to
, rtx from
, int unsignedp
)
5217 enum insn_code icode
;
5219 machine_mode fmode
, imode
;
5222 /* We first try to find a pair of modes, one real and one integer, at
5223 least as wide as FROM and TO, respectively, in which we can open-code
5224 this conversion. If the integer mode is wider than the mode of TO,
5225 we can do the conversion either signed or unsigned. */
5227 for (fmode
= GET_MODE (from
); fmode
!= VOIDmode
;
5228 fmode
= GET_MODE_WIDER_MODE (fmode
))
5229 for (imode
= GET_MODE (to
); imode
!= VOIDmode
;
5230 imode
= GET_MODE_WIDER_MODE (imode
))
5232 int doing_unsigned
= unsignedp
;
5234 icode
= can_fix_p (imode
, fmode
, unsignedp
, &must_trunc
);
5235 if (icode
== CODE_FOR_nothing
&& imode
!= GET_MODE (to
) && unsignedp
)
5236 icode
= can_fix_p (imode
, fmode
, 0, &must_trunc
), doing_unsigned
= 0;
5238 if (icode
!= CODE_FOR_nothing
)
5240 rtx_insn
*last
= get_last_insn ();
5241 if (fmode
!= GET_MODE (from
))
5242 from
= convert_to_mode (fmode
, from
, 0);
5246 rtx temp
= gen_reg_rtx (GET_MODE (from
));
5247 from
= expand_unop (GET_MODE (from
), ftrunc_optab
, from
,
5251 if (imode
!= GET_MODE (to
))
5252 target
= gen_reg_rtx (imode
);
5254 if (maybe_emit_unop_insn (icode
, target
, from
,
5255 doing_unsigned
? UNSIGNED_FIX
: FIX
))
5258 convert_move (to
, target
, unsignedp
);
5261 delete_insns_since (last
);
5265 /* For an unsigned conversion, there is one more way to do it.
5266 If we have a signed conversion, we generate code that compares
5267 the real value to the largest representable positive number. If if
5268 is smaller, the conversion is done normally. Otherwise, subtract
5269 one plus the highest signed number, convert, and add it back.
5271 We only need to check all real modes, since we know we didn't find
5272 anything with a wider integer mode.
5274 This code used to extend FP value into mode wider than the destination.
5275 This is needed for decimal float modes which cannot accurately
5276 represent one plus the highest signed number of the same size, but
5277 not for binary modes. Consider, for instance conversion from SFmode
5280 The hot path through the code is dealing with inputs smaller than 2^63
5281 and doing just the conversion, so there is no bits to lose.
5283 In the other path we know the value is positive in the range 2^63..2^64-1
5284 inclusive. (as for other input overflow happens and result is undefined)
5285 So we know that the most important bit set in mantissa corresponds to
5286 2^63. The subtraction of 2^63 should not generate any rounding as it
5287 simply clears out that bit. The rest is trivial. */
5289 if (unsignedp
&& GET_MODE_PRECISION (GET_MODE (to
)) <= HOST_BITS_PER_WIDE_INT
)
5290 for (fmode
= GET_MODE (from
); fmode
!= VOIDmode
;
5291 fmode
= GET_MODE_WIDER_MODE (fmode
))
5292 if (CODE_FOR_nothing
!= can_fix_p (GET_MODE (to
), fmode
, 0, &must_trunc
)
5293 && (!DECIMAL_FLOAT_MODE_P (fmode
)
5294 || GET_MODE_BITSIZE (fmode
) > GET_MODE_PRECISION (GET_MODE (to
))))
5297 REAL_VALUE_TYPE offset
;
5299 rtx_code_label
*lab1
, *lab2
;
5302 bitsize
= GET_MODE_PRECISION (GET_MODE (to
));
5303 real_2expN (&offset
, bitsize
- 1, fmode
);
5304 limit
= CONST_DOUBLE_FROM_REAL_VALUE (offset
, fmode
);
5305 lab1
= gen_label_rtx ();
5306 lab2
= gen_label_rtx ();
5308 if (fmode
!= GET_MODE (from
))
5309 from
= convert_to_mode (fmode
, from
, 0);
5311 /* See if we need to do the subtraction. */
5312 do_pending_stack_adjust ();
5313 emit_cmp_and_jump_insns (from
, limit
, GE
, NULL_RTX
, GET_MODE (from
),
5316 /* If not, do the signed "fix" and branch around fixup code. */
5317 expand_fix (to
, from
, 0);
5318 emit_jump_insn (gen_jump (lab2
));
5321 /* Otherwise, subtract 2**(N-1), convert to signed number,
5322 then add 2**(N-1). Do the addition using XOR since this
5323 will often generate better code. */
5325 target
= expand_binop (GET_MODE (from
), sub_optab
, from
, limit
,
5326 NULL_RTX
, 0, OPTAB_LIB_WIDEN
);
5327 expand_fix (to
, target
, 0);
5328 target
= expand_binop (GET_MODE (to
), xor_optab
, to
,
5330 ((HOST_WIDE_INT
) 1 << (bitsize
- 1),
5332 to
, 1, OPTAB_LIB_WIDEN
);
5335 emit_move_insn (to
, target
);
5339 if (optab_handler (mov_optab
, GET_MODE (to
)) != CODE_FOR_nothing
)
5341 /* Make a place for a REG_NOTE and add it. */
5342 insn
= emit_move_insn (to
, to
);
5343 set_dst_reg_note (insn
, REG_EQUAL
,
5344 gen_rtx_fmt_e (UNSIGNED_FIX
, GET_MODE (to
),
5352 /* We can't do it with an insn, so use a library call. But first ensure
5353 that the mode of TO is at least as wide as SImode, since those are the
5354 only library calls we know about. */
5356 if (GET_MODE_PRECISION (GET_MODE (to
)) < GET_MODE_PRECISION (SImode
))
5358 target
= gen_reg_rtx (SImode
);
5360 expand_fix (target
, from
, unsignedp
);
5368 convert_optab tab
= unsignedp
? ufix_optab
: sfix_optab
;
5369 libfunc
= convert_optab_libfunc (tab
, GET_MODE (to
), GET_MODE (from
));
5370 gcc_assert (libfunc
);
5374 value
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_CONST
,
5375 GET_MODE (to
), 1, from
,
5377 insns
= get_insns ();
5380 emit_libcall_block (insns
, target
, value
,
5381 gen_rtx_fmt_e (unsignedp
? UNSIGNED_FIX
: FIX
,
5382 GET_MODE (to
), from
));
5387 if (GET_MODE (to
) == GET_MODE (target
))
5388 emit_move_insn (to
, target
);
5390 convert_move (to
, target
, 0);
5394 /* Generate code to convert FROM or TO a fixed-point.
5395 If UINTP is true, either TO or FROM is an unsigned integer.
5396 If SATP is true, we need to saturate the result. */
5399 expand_fixed_convert (rtx to
, rtx from
, int uintp
, int satp
)
5401 machine_mode to_mode
= GET_MODE (to
);
5402 machine_mode from_mode
= GET_MODE (from
);
5404 enum rtx_code this_code
;
5405 enum insn_code code
;
5410 if (to_mode
== from_mode
)
5412 emit_move_insn (to
, from
);
5418 tab
= satp
? satfractuns_optab
: fractuns_optab
;
5419 this_code
= satp
? UNSIGNED_SAT_FRACT
: UNSIGNED_FRACT_CONVERT
;
5423 tab
= satp
? satfract_optab
: fract_optab
;
5424 this_code
= satp
? SAT_FRACT
: FRACT_CONVERT
;
5426 code
= convert_optab_handler (tab
, to_mode
, from_mode
);
5427 if (code
!= CODE_FOR_nothing
)
5429 emit_unop_insn (code
, to
, from
, this_code
);
5433 libfunc
= convert_optab_libfunc (tab
, to_mode
, from_mode
);
5434 gcc_assert (libfunc
);
5437 value
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_CONST
, to_mode
,
5438 1, from
, from_mode
);
5439 insns
= get_insns ();
5442 emit_libcall_block (insns
, to
, value
,
5443 gen_rtx_fmt_e (optab_to_code (tab
), to_mode
, from
));
5446 /* Generate code to convert FROM to fixed point and store in TO. FROM
5447 must be floating point, TO must be signed. Use the conversion optab
5448 TAB to do the conversion. */
5451 expand_sfix_optab (rtx to
, rtx from
, convert_optab tab
)
5453 enum insn_code icode
;
5455 machine_mode fmode
, imode
;
5457 /* We first try to find a pair of modes, one real and one integer, at
5458 least as wide as FROM and TO, respectively, in which we can open-code
5459 this conversion. If the integer mode is wider than the mode of TO,
5460 we can do the conversion either signed or unsigned. */
5462 for (fmode
= GET_MODE (from
); fmode
!= VOIDmode
;
5463 fmode
= GET_MODE_WIDER_MODE (fmode
))
5464 for (imode
= GET_MODE (to
); imode
!= VOIDmode
;
5465 imode
= GET_MODE_WIDER_MODE (imode
))
5467 icode
= convert_optab_handler (tab
, imode
, fmode
);
5468 if (icode
!= CODE_FOR_nothing
)
5470 rtx_insn
*last
= get_last_insn ();
5471 if (fmode
!= GET_MODE (from
))
5472 from
= convert_to_mode (fmode
, from
, 0);
5474 if (imode
!= GET_MODE (to
))
5475 target
= gen_reg_rtx (imode
);
5477 if (!maybe_emit_unop_insn (icode
, target
, from
, UNKNOWN
))
5479 delete_insns_since (last
);
5483 convert_move (to
, target
, 0);
5491 /* Report whether we have an instruction to perform the operation
5492 specified by CODE on operands of mode MODE. */
5494 have_insn_for (enum rtx_code code
, machine_mode mode
)
5496 return (code_to_optab (code
)
5497 && (optab_handler (code_to_optab (code
), mode
)
5498 != CODE_FOR_nothing
));
5501 /* Initialize the libfunc fields of an entire group of entries in some
5502 optab. Each entry is set equal to a string consisting of a leading
5503 pair of underscores followed by a generic operation name followed by
5504 a mode name (downshifted to lowercase) followed by a single character
5505 representing the number of operands for the given operation (which is
5506 usually one of the characters '2', '3', or '4').
5508 OPTABLE is the table in which libfunc fields are to be initialized.
5509 OPNAME is the generic (string) name of the operation.
5510 SUFFIX is the character which specifies the number of operands for
5511 the given generic operation.
5512 MODE is the mode to generate for.
5516 gen_libfunc (optab optable
, const char *opname
, int suffix
,
5519 unsigned opname_len
= strlen (opname
);
5520 const char *mname
= GET_MODE_NAME (mode
);
5521 unsigned mname_len
= strlen (mname
);
5522 int prefix_len
= targetm
.libfunc_gnu_prefix
? 6 : 2;
5523 int len
= prefix_len
+ opname_len
+ mname_len
+ 1 + 1;
5524 char *libfunc_name
= XALLOCAVEC (char, len
);
5531 if (targetm
.libfunc_gnu_prefix
)
5538 for (q
= opname
; *q
; )
5540 for (q
= mname
; *q
; q
++)
5541 *p
++ = TOLOWER (*q
);
5545 set_optab_libfunc (optable
, mode
,
5546 ggc_alloc_string (libfunc_name
, p
- libfunc_name
));
5549 /* Like gen_libfunc, but verify that integer operation is involved. */
5552 gen_int_libfunc (optab optable
, const char *opname
, char suffix
,
5555 int maxsize
= 2 * BITS_PER_WORD
;
5556 int minsize
= BITS_PER_WORD
;
5558 if (GET_MODE_CLASS (mode
) != MODE_INT
)
5560 if (maxsize
< LONG_LONG_TYPE_SIZE
)
5561 maxsize
= LONG_LONG_TYPE_SIZE
;
5562 if (minsize
> INT_TYPE_SIZE
5563 && (trapv_binoptab_p (optable
)
5564 || trapv_unoptab_p (optable
)))
5565 minsize
= INT_TYPE_SIZE
;
5566 if (GET_MODE_BITSIZE (mode
) < minsize
5567 || GET_MODE_BITSIZE (mode
) > maxsize
)
5569 gen_libfunc (optable
, opname
, suffix
, mode
);
5572 /* Like gen_libfunc, but verify that FP and set decimal prefix if needed. */
5575 gen_fp_libfunc (optab optable
, const char *opname
, char suffix
,
5580 if (GET_MODE_CLASS (mode
) == MODE_FLOAT
)
5581 gen_libfunc (optable
, opname
, suffix
, mode
);
5582 if (DECIMAL_FLOAT_MODE_P (mode
))
5584 dec_opname
= XALLOCAVEC (char, sizeof (DECIMAL_PREFIX
) + strlen (opname
));
5585 /* For BID support, change the name to have either a bid_ or dpd_ prefix
5586 depending on the low level floating format used. */
5587 memcpy (dec_opname
, DECIMAL_PREFIX
, sizeof (DECIMAL_PREFIX
) - 1);
5588 strcpy (dec_opname
+ sizeof (DECIMAL_PREFIX
) - 1, opname
);
5589 gen_libfunc (optable
, dec_opname
, suffix
, mode
);
5593 /* Like gen_libfunc, but verify that fixed-point operation is involved. */
5596 gen_fixed_libfunc (optab optable
, const char *opname
, char suffix
,
5599 if (!ALL_FIXED_POINT_MODE_P (mode
))
5601 gen_libfunc (optable
, opname
, suffix
, mode
);
5604 /* Like gen_libfunc, but verify that signed fixed-point operation is
5608 gen_signed_fixed_libfunc (optab optable
, const char *opname
, char suffix
,
5611 if (!SIGNED_FIXED_POINT_MODE_P (mode
))
5613 gen_libfunc (optable
, opname
, suffix
, mode
);
5616 /* Like gen_libfunc, but verify that unsigned fixed-point operation is
5620 gen_unsigned_fixed_libfunc (optab optable
, const char *opname
, char suffix
,
5623 if (!UNSIGNED_FIXED_POINT_MODE_P (mode
))
5625 gen_libfunc (optable
, opname
, suffix
, mode
);
5628 /* Like gen_libfunc, but verify that FP or INT operation is involved. */
5631 gen_int_fp_libfunc (optab optable
, const char *name
, char suffix
,
5634 if (DECIMAL_FLOAT_MODE_P (mode
) || GET_MODE_CLASS (mode
) == MODE_FLOAT
)
5635 gen_fp_libfunc (optable
, name
, suffix
, mode
);
5636 if (INTEGRAL_MODE_P (mode
))
5637 gen_int_libfunc (optable
, name
, suffix
, mode
);
5640 /* Like gen_libfunc, but verify that FP or INT operation is involved
5641 and add 'v' suffix for integer operation. */
5644 gen_intv_fp_libfunc (optab optable
, const char *name
, char suffix
,
5647 if (DECIMAL_FLOAT_MODE_P (mode
) || GET_MODE_CLASS (mode
) == MODE_FLOAT
)
5648 gen_fp_libfunc (optable
, name
, suffix
, mode
);
5649 if (GET_MODE_CLASS (mode
) == MODE_INT
)
5651 int len
= strlen (name
);
5652 char *v_name
= XALLOCAVEC (char, len
+ 2);
5653 strcpy (v_name
, name
);
5655 v_name
[len
+ 1] = 0;
5656 gen_int_libfunc (optable
, v_name
, suffix
, mode
);
5660 /* Like gen_libfunc, but verify that FP or INT or FIXED operation is
5664 gen_int_fp_fixed_libfunc (optab optable
, const char *name
, char suffix
,
5667 if (DECIMAL_FLOAT_MODE_P (mode
) || GET_MODE_CLASS (mode
) == MODE_FLOAT
)
5668 gen_fp_libfunc (optable
, name
, suffix
, mode
);
5669 if (INTEGRAL_MODE_P (mode
))
5670 gen_int_libfunc (optable
, name
, suffix
, mode
);
5671 if (ALL_FIXED_POINT_MODE_P (mode
))
5672 gen_fixed_libfunc (optable
, name
, suffix
, mode
);
5675 /* Like gen_libfunc, but verify that FP or INT or signed FIXED operation is
5679 gen_int_fp_signed_fixed_libfunc (optab optable
, const char *name
, char suffix
,
5682 if (DECIMAL_FLOAT_MODE_P (mode
) || GET_MODE_CLASS (mode
) == MODE_FLOAT
)
5683 gen_fp_libfunc (optable
, name
, suffix
, mode
);
5684 if (INTEGRAL_MODE_P (mode
))
5685 gen_int_libfunc (optable
, name
, suffix
, mode
);
5686 if (SIGNED_FIXED_POINT_MODE_P (mode
))
5687 gen_signed_fixed_libfunc (optable
, name
, suffix
, mode
);
5690 /* Like gen_libfunc, but verify that INT or FIXED operation is
5694 gen_int_fixed_libfunc (optab optable
, const char *name
, char suffix
,
5697 if (INTEGRAL_MODE_P (mode
))
5698 gen_int_libfunc (optable
, name
, suffix
, mode
);
5699 if (ALL_FIXED_POINT_MODE_P (mode
))
5700 gen_fixed_libfunc (optable
, name
, suffix
, mode
);
5703 /* Like gen_libfunc, but verify that INT or signed FIXED operation is
5707 gen_int_signed_fixed_libfunc (optab optable
, const char *name
, char suffix
,
5710 if (INTEGRAL_MODE_P (mode
))
5711 gen_int_libfunc (optable
, name
, suffix
, mode
);
5712 if (SIGNED_FIXED_POINT_MODE_P (mode
))
5713 gen_signed_fixed_libfunc (optable
, name
, suffix
, mode
);
5716 /* Like gen_libfunc, but verify that INT or unsigned FIXED operation is
5720 gen_int_unsigned_fixed_libfunc (optab optable
, const char *name
, char suffix
,
5723 if (INTEGRAL_MODE_P (mode
))
5724 gen_int_libfunc (optable
, name
, suffix
, mode
);
5725 if (UNSIGNED_FIXED_POINT_MODE_P (mode
))
5726 gen_unsigned_fixed_libfunc (optable
, name
, suffix
, mode
);
5729 /* Initialize the libfunc fields of an entire group of entries of an
5730 inter-mode-class conversion optab. The string formation rules are
5731 similar to the ones for init_libfuncs, above, but instead of having
5732 a mode name and an operand count these functions have two mode names
5733 and no operand count. */
5736 gen_interclass_conv_libfunc (convert_optab tab
,
5741 size_t opname_len
= strlen (opname
);
5742 size_t mname_len
= 0;
5744 const char *fname
, *tname
;
5746 int prefix_len
= targetm
.libfunc_gnu_prefix
? 6 : 2;
5747 char *libfunc_name
, *suffix
;
5748 char *nondec_name
, *dec_name
, *nondec_suffix
, *dec_suffix
;
5751 /* If this is a decimal conversion, add the current BID vs. DPD prefix that
5752 depends on which underlying decimal floating point format is used. */
5753 const size_t dec_len
= sizeof (DECIMAL_PREFIX
) - 1;
5755 mname_len
= strlen (GET_MODE_NAME (tmode
)) + strlen (GET_MODE_NAME (fmode
));
5757 nondec_name
= XALLOCAVEC (char, prefix_len
+ opname_len
+ mname_len
+ 1 + 1);
5758 nondec_name
[0] = '_';
5759 nondec_name
[1] = '_';
5760 if (targetm
.libfunc_gnu_prefix
)
5762 nondec_name
[2] = 'g';
5763 nondec_name
[3] = 'n';
5764 nondec_name
[4] = 'u';
5765 nondec_name
[5] = '_';
5768 memcpy (&nondec_name
[prefix_len
], opname
, opname_len
);
5769 nondec_suffix
= nondec_name
+ opname_len
+ prefix_len
;
5771 dec_name
= XALLOCAVEC (char, 2 + dec_len
+ opname_len
+ mname_len
+ 1 + 1);
5774 memcpy (&dec_name
[2], DECIMAL_PREFIX
, dec_len
);
5775 memcpy (&dec_name
[2+dec_len
], opname
, opname_len
);
5776 dec_suffix
= dec_name
+ dec_len
+ opname_len
+ 2;
5778 fname
= GET_MODE_NAME (fmode
);
5779 tname
= GET_MODE_NAME (tmode
);
5781 if (DECIMAL_FLOAT_MODE_P (fmode
) || DECIMAL_FLOAT_MODE_P (tmode
))
5783 libfunc_name
= dec_name
;
5784 suffix
= dec_suffix
;
5788 libfunc_name
= nondec_name
;
5789 suffix
= nondec_suffix
;
5793 for (q
= fname
; *q
; p
++, q
++)
5795 for (q
= tname
; *q
; p
++, q
++)
5800 set_conv_libfunc (tab
, tmode
, fmode
,
5801 ggc_alloc_string (libfunc_name
, p
- libfunc_name
));
5804 /* Same as gen_interclass_conv_libfunc but verify that we are producing
5805 int->fp conversion. */
5808 gen_int_to_fp_conv_libfunc (convert_optab tab
,
5813 if (GET_MODE_CLASS (fmode
) != MODE_INT
)
5815 if (GET_MODE_CLASS (tmode
) != MODE_FLOAT
&& !DECIMAL_FLOAT_MODE_P (tmode
))
5817 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
5820 /* ufloat_optab is special by using floatun for FP and floatuns decimal fp
5824 gen_ufloat_conv_libfunc (convert_optab tab
,
5825 const char *opname ATTRIBUTE_UNUSED
,
5829 if (DECIMAL_FLOAT_MODE_P (tmode
))
5830 gen_int_to_fp_conv_libfunc (tab
, "floatuns", tmode
, fmode
);
5832 gen_int_to_fp_conv_libfunc (tab
, "floatun", tmode
, fmode
);
5835 /* Same as gen_interclass_conv_libfunc but verify that we are producing
5836 fp->int conversion. */
5839 gen_int_to_fp_nondecimal_conv_libfunc (convert_optab tab
,
5844 if (GET_MODE_CLASS (fmode
) != MODE_INT
)
5846 if (GET_MODE_CLASS (tmode
) != MODE_FLOAT
)
5848 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
5851 /* Same as gen_interclass_conv_libfunc but verify that we are producing
5852 fp->int conversion with no decimal floating point involved. */
5855 gen_fp_to_int_conv_libfunc (convert_optab tab
,
5860 if (GET_MODE_CLASS (fmode
) != MODE_FLOAT
&& !DECIMAL_FLOAT_MODE_P (fmode
))
5862 if (GET_MODE_CLASS (tmode
) != MODE_INT
)
5864 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
5867 /* Initialize the libfunc fields of an of an intra-mode-class conversion optab.
5868 The string formation rules are
5869 similar to the ones for init_libfunc, above. */
5872 gen_intraclass_conv_libfunc (convert_optab tab
, const char *opname
,
5873 machine_mode tmode
, machine_mode fmode
)
5875 size_t opname_len
= strlen (opname
);
5876 size_t mname_len
= 0;
5878 const char *fname
, *tname
;
5880 int prefix_len
= targetm
.libfunc_gnu_prefix
? 6 : 2;
5881 char *nondec_name
, *dec_name
, *nondec_suffix
, *dec_suffix
;
5882 char *libfunc_name
, *suffix
;
5885 /* If this is a decimal conversion, add the current BID vs. DPD prefix that
5886 depends on which underlying decimal floating point format is used. */
5887 const size_t dec_len
= sizeof (DECIMAL_PREFIX
) - 1;
5889 mname_len
= strlen (GET_MODE_NAME (tmode
)) + strlen (GET_MODE_NAME (fmode
));
5891 nondec_name
= XALLOCAVEC (char, 2 + opname_len
+ mname_len
+ 1 + 1);
5892 nondec_name
[0] = '_';
5893 nondec_name
[1] = '_';
5894 if (targetm
.libfunc_gnu_prefix
)
5896 nondec_name
[2] = 'g';
5897 nondec_name
[3] = 'n';
5898 nondec_name
[4] = 'u';
5899 nondec_name
[5] = '_';
5901 memcpy (&nondec_name
[prefix_len
], opname
, opname_len
);
5902 nondec_suffix
= nondec_name
+ opname_len
+ prefix_len
;
5904 dec_name
= XALLOCAVEC (char, 2 + dec_len
+ opname_len
+ mname_len
+ 1 + 1);
5907 memcpy (&dec_name
[2], DECIMAL_PREFIX
, dec_len
);
5908 memcpy (&dec_name
[2 + dec_len
], opname
, opname_len
);
5909 dec_suffix
= dec_name
+ dec_len
+ opname_len
+ 2;
5911 fname
= GET_MODE_NAME (fmode
);
5912 tname
= GET_MODE_NAME (tmode
);
5914 if (DECIMAL_FLOAT_MODE_P (fmode
) || DECIMAL_FLOAT_MODE_P (tmode
))
5916 libfunc_name
= dec_name
;
5917 suffix
= dec_suffix
;
5921 libfunc_name
= nondec_name
;
5922 suffix
= nondec_suffix
;
5926 for (q
= fname
; *q
; p
++, q
++)
5928 for (q
= tname
; *q
; p
++, q
++)
5934 set_conv_libfunc (tab
, tmode
, fmode
,
5935 ggc_alloc_string (libfunc_name
, p
- libfunc_name
));
5938 /* Pick proper libcall for trunc_optab. We need to chose if we do
5939 truncation or extension and interclass or intraclass. */
5942 gen_trunc_conv_libfunc (convert_optab tab
,
5947 if (GET_MODE_CLASS (tmode
) != MODE_FLOAT
&& !DECIMAL_FLOAT_MODE_P (tmode
))
5949 if (GET_MODE_CLASS (fmode
) != MODE_FLOAT
&& !DECIMAL_FLOAT_MODE_P (fmode
))
5954 if ((GET_MODE_CLASS (tmode
) == MODE_FLOAT
&& DECIMAL_FLOAT_MODE_P (fmode
))
5955 || (GET_MODE_CLASS (fmode
) == MODE_FLOAT
&& DECIMAL_FLOAT_MODE_P (tmode
)))
5956 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
5958 if (GET_MODE_PRECISION (fmode
) <= GET_MODE_PRECISION (tmode
))
5961 if ((GET_MODE_CLASS (tmode
) == MODE_FLOAT
5962 && GET_MODE_CLASS (fmode
) == MODE_FLOAT
)
5963 || (DECIMAL_FLOAT_MODE_P (fmode
) && DECIMAL_FLOAT_MODE_P (tmode
)))
5964 gen_intraclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
5967 /* Pick proper libcall for extend_optab. We need to chose if we do
5968 truncation or extension and interclass or intraclass. */
5971 gen_extend_conv_libfunc (convert_optab tab
,
5972 const char *opname ATTRIBUTE_UNUSED
,
5976 if (GET_MODE_CLASS (tmode
) != MODE_FLOAT
&& !DECIMAL_FLOAT_MODE_P (tmode
))
5978 if (GET_MODE_CLASS (fmode
) != MODE_FLOAT
&& !DECIMAL_FLOAT_MODE_P (fmode
))
5983 if ((GET_MODE_CLASS (tmode
) == MODE_FLOAT
&& DECIMAL_FLOAT_MODE_P (fmode
))
5984 || (GET_MODE_CLASS (fmode
) == MODE_FLOAT
&& DECIMAL_FLOAT_MODE_P (tmode
)))
5985 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
5987 if (GET_MODE_PRECISION (fmode
) > GET_MODE_PRECISION (tmode
))
5990 if ((GET_MODE_CLASS (tmode
) == MODE_FLOAT
5991 && GET_MODE_CLASS (fmode
) == MODE_FLOAT
)
5992 || (DECIMAL_FLOAT_MODE_P (fmode
) && DECIMAL_FLOAT_MODE_P (tmode
)))
5993 gen_intraclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
5996 /* Pick proper libcall for fract_optab. We need to chose if we do
5997 interclass or intraclass. */
6000 gen_fract_conv_libfunc (convert_optab tab
,
6007 if (!(ALL_FIXED_POINT_MODE_P (tmode
) || ALL_FIXED_POINT_MODE_P (fmode
)))
6010 if (GET_MODE_CLASS (tmode
) == GET_MODE_CLASS (fmode
))
6011 gen_intraclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
6013 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
6016 /* Pick proper libcall for fractuns_optab. */
6019 gen_fractuns_conv_libfunc (convert_optab tab
,
6026 /* One mode must be a fixed-point mode, and the other must be an integer
6028 if (!((ALL_FIXED_POINT_MODE_P (tmode
) && GET_MODE_CLASS (fmode
) == MODE_INT
)
6029 || (ALL_FIXED_POINT_MODE_P (fmode
)
6030 && GET_MODE_CLASS (tmode
) == MODE_INT
)))
6033 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
6036 /* Pick proper libcall for satfract_optab. We need to chose if we do
6037 interclass or intraclass. */
6040 gen_satfract_conv_libfunc (convert_optab tab
,
6047 /* TMODE must be a fixed-point mode. */
6048 if (!ALL_FIXED_POINT_MODE_P (tmode
))
6051 if (GET_MODE_CLASS (tmode
) == GET_MODE_CLASS (fmode
))
6052 gen_intraclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
6054 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
6057 /* Pick proper libcall for satfractuns_optab. */
6060 gen_satfractuns_conv_libfunc (convert_optab tab
,
6067 /* TMODE must be a fixed-point mode, and FMODE must be an integer mode. */
6068 if (!(ALL_FIXED_POINT_MODE_P (tmode
) && GET_MODE_CLASS (fmode
) == MODE_INT
))
6071 gen_interclass_conv_libfunc (tab
, opname
, tmode
, fmode
);
6074 /* Hashtable callbacks for libfunc_decls. */
6076 struct libfunc_decl_hasher
: ggc_hasher
<tree
>
6081 return IDENTIFIER_HASH_VALUE (DECL_NAME (entry
));
6085 equal (tree decl
, tree name
)
6087 return DECL_NAME (decl
) == name
;
6091 /* A table of previously-created libfuncs, hashed by name. */
6092 static GTY (()) hash_table
<libfunc_decl_hasher
> *libfunc_decls
;
6094 /* Build a decl for a libfunc named NAME. */
6097 build_libfunc_function (const char *name
)
6099 tree decl
= build_decl (UNKNOWN_LOCATION
, FUNCTION_DECL
,
6100 get_identifier (name
),
6101 build_function_type (integer_type_node
, NULL_TREE
));
6102 /* ??? We don't have any type information except for this is
6103 a function. Pretend this is "int foo()". */
6104 DECL_ARTIFICIAL (decl
) = 1;
6105 DECL_EXTERNAL (decl
) = 1;
6106 TREE_PUBLIC (decl
) = 1;
6107 gcc_assert (DECL_ASSEMBLER_NAME (decl
));
6109 /* Zap the nonsensical SYMBOL_REF_DECL for this. What we're left with
6110 are the flags assigned by targetm.encode_section_info. */
6111 SET_SYMBOL_REF_DECL (XEXP (DECL_RTL (decl
), 0), NULL
);
6117 init_one_libfunc (const char *name
)
6122 if (libfunc_decls
== NULL
)
6123 libfunc_decls
= hash_table
<libfunc_decl_hasher
>::create_ggc (37);
6125 /* See if we have already created a libfunc decl for this function. */
6126 id
= get_identifier (name
);
6127 hash
= IDENTIFIER_HASH_VALUE (id
);
6128 tree
*slot
= libfunc_decls
->find_slot_with_hash (id
, hash
, INSERT
);
6132 /* Create a new decl, so that it can be passed to
6133 targetm.encode_section_info. */
6134 decl
= build_libfunc_function (name
);
6137 return XEXP (DECL_RTL (decl
), 0);
6140 /* Adjust the assembler name of libfunc NAME to ASMSPEC. */
6143 set_user_assembler_libfunc (const char *name
, const char *asmspec
)
6148 id
= get_identifier (name
);
6149 hash
= IDENTIFIER_HASH_VALUE (id
);
6150 tree
*slot
= libfunc_decls
->find_slot_with_hash (id
, hash
, NO_INSERT
);
6152 decl
= (tree
) *slot
;
6153 set_user_assembler_name (decl
, asmspec
);
6154 return XEXP (DECL_RTL (decl
), 0);
6157 /* Call this to reset the function entry for one optab (OPTABLE) in mode
6158 MODE to NAME, which should be either 0 or a string constant. */
6160 set_optab_libfunc (optab op
, machine_mode mode
, const char *name
)
6163 struct libfunc_entry e
;
6164 struct libfunc_entry
**slot
;
6171 val
= init_one_libfunc (name
);
6174 slot
= libfunc_hash
->find_slot (&e
, INSERT
);
6176 *slot
= ggc_alloc
<libfunc_entry
> ();
6178 (*slot
)->mode1
= mode
;
6179 (*slot
)->mode2
= VOIDmode
;
6180 (*slot
)->libfunc
= val
;
6183 /* Call this to reset the function entry for one conversion optab
6184 (OPTABLE) from mode FMODE to mode TMODE to NAME, which should be
6185 either 0 or a string constant. */
6187 set_conv_libfunc (convert_optab optab
, machine_mode tmode
,
6188 machine_mode fmode
, const char *name
)
6191 struct libfunc_entry e
;
6192 struct libfunc_entry
**slot
;
6199 val
= init_one_libfunc (name
);
6202 slot
= libfunc_hash
->find_slot (&e
, INSERT
);
6204 *slot
= ggc_alloc
<libfunc_entry
> ();
6205 (*slot
)->op
= optab
;
6206 (*slot
)->mode1
= tmode
;
6207 (*slot
)->mode2
= fmode
;
6208 (*slot
)->libfunc
= val
;
6211 /* Call this to initialize the contents of the optabs
6212 appropriately for the current target machine. */
6218 libfunc_hash
->empty ();
6220 libfunc_hash
= hash_table
<libfunc_hasher
>::create_ggc (10);
6222 /* Fill in the optabs with the insns we support. */
6223 init_all_optabs (this_fn_optabs
);
6225 /* The ffs function operates on `int'. Fall back on it if we do not
6226 have a libgcc2 function for that width. */
6227 if (INT_TYPE_SIZE
< BITS_PER_WORD
)
6228 set_optab_libfunc (ffs_optab
, mode_for_size (INT_TYPE_SIZE
, MODE_INT
, 0),
6231 /* Explicitly initialize the bswap libfuncs since we need them to be
6232 valid for things other than word_mode. */
6233 if (targetm
.libfunc_gnu_prefix
)
6235 set_optab_libfunc (bswap_optab
, SImode
, "__gnu_bswapsi2");
6236 set_optab_libfunc (bswap_optab
, DImode
, "__gnu_bswapdi2");
6240 set_optab_libfunc (bswap_optab
, SImode
, "__bswapsi2");
6241 set_optab_libfunc (bswap_optab
, DImode
, "__bswapdi2");
6244 /* Use cabs for double complex abs, since systems generally have cabs.
6245 Don't define any libcall for float complex, so that cabs will be used. */
6246 if (complex_double_type_node
)
6247 set_optab_libfunc (abs_optab
, TYPE_MODE (complex_double_type_node
),
6250 abort_libfunc
= init_one_libfunc ("abort");
6251 memcpy_libfunc
= init_one_libfunc ("memcpy");
6252 memmove_libfunc
= init_one_libfunc ("memmove");
6253 memcmp_libfunc
= init_one_libfunc ("memcmp");
6254 memset_libfunc
= init_one_libfunc ("memset");
6255 setbits_libfunc
= init_one_libfunc ("__setbits");
6257 #ifndef DONT_USE_BUILTIN_SETJMP
6258 setjmp_libfunc
= init_one_libfunc ("__builtin_setjmp");
6259 longjmp_libfunc
= init_one_libfunc ("__builtin_longjmp");
6261 setjmp_libfunc
= init_one_libfunc ("setjmp");
6262 longjmp_libfunc
= init_one_libfunc ("longjmp");
6264 unwind_sjlj_register_libfunc
= init_one_libfunc ("_Unwind_SjLj_Register");
6265 unwind_sjlj_unregister_libfunc
6266 = init_one_libfunc ("_Unwind_SjLj_Unregister");
6268 /* For function entry/exit instrumentation. */
6269 profile_function_entry_libfunc
6270 = init_one_libfunc ("__cyg_profile_func_enter");
6271 profile_function_exit_libfunc
6272 = init_one_libfunc ("__cyg_profile_func_exit");
6274 gcov_flush_libfunc
= init_one_libfunc ("__gcov_flush");
6276 /* Allow the target to add more libcalls or rename some, etc. */
6277 targetm
.init_libfuncs ();
6280 /* Use the current target and options to initialize
6281 TREE_OPTIMIZATION_OPTABS (OPTNODE). */
6284 init_tree_optimization_optabs (tree optnode
)
6286 /* Quick exit if we have already computed optabs for this target. */
6287 if (TREE_OPTIMIZATION_BASE_OPTABS (optnode
) == this_target_optabs
)
6290 /* Forget any previous information and set up for the current target. */
6291 TREE_OPTIMIZATION_BASE_OPTABS (optnode
) = this_target_optabs
;
6292 struct target_optabs
*tmp_optabs
= (struct target_optabs
*)
6293 TREE_OPTIMIZATION_OPTABS (optnode
);
6295 memset (tmp_optabs
, 0, sizeof (struct target_optabs
));
6297 tmp_optabs
= ggc_alloc
<target_optabs
> ();
6299 /* Generate a new set of optabs into tmp_optabs. */
6300 init_all_optabs (tmp_optabs
);
6302 /* If the optabs changed, record it. */
6303 if (memcmp (tmp_optabs
, this_target_optabs
, sizeof (struct target_optabs
)))
6304 TREE_OPTIMIZATION_OPTABS (optnode
) = tmp_optabs
;
6307 TREE_OPTIMIZATION_OPTABS (optnode
) = NULL
;
6308 ggc_free (tmp_optabs
);
6312 /* A helper function for init_sync_libfuncs. Using the basename BASE,
6313 install libfuncs into TAB for BASE_N for 1 <= N <= MAX. */
6316 init_sync_libfuncs_1 (optab tab
, const char *base
, int max
)
6320 size_t len
= strlen (base
);
6323 gcc_assert (max
<= 8);
6324 gcc_assert (len
+ 3 < sizeof (buf
));
6326 memcpy (buf
, base
, len
);
6329 buf
[len
+ 2] = '\0';
6332 for (i
= 1; i
<= max
; i
*= 2)
6334 buf
[len
+ 1] = '0' + i
;
6335 set_optab_libfunc (tab
, mode
, buf
);
6336 mode
= GET_MODE_2XWIDER_MODE (mode
);
6341 init_sync_libfuncs (int max
)
6343 if (!flag_sync_libcalls
)
6346 init_sync_libfuncs_1 (sync_compare_and_swap_optab
,
6347 "__sync_val_compare_and_swap", max
);
6348 init_sync_libfuncs_1 (sync_lock_test_and_set_optab
,
6349 "__sync_lock_test_and_set", max
);
6351 init_sync_libfuncs_1 (sync_old_add_optab
, "__sync_fetch_and_add", max
);
6352 init_sync_libfuncs_1 (sync_old_sub_optab
, "__sync_fetch_and_sub", max
);
6353 init_sync_libfuncs_1 (sync_old_ior_optab
, "__sync_fetch_and_or", max
);
6354 init_sync_libfuncs_1 (sync_old_and_optab
, "__sync_fetch_and_and", max
);
6355 init_sync_libfuncs_1 (sync_old_xor_optab
, "__sync_fetch_and_xor", max
);
6356 init_sync_libfuncs_1 (sync_old_nand_optab
, "__sync_fetch_and_nand", max
);
6358 init_sync_libfuncs_1 (sync_new_add_optab
, "__sync_add_and_fetch", max
);
6359 init_sync_libfuncs_1 (sync_new_sub_optab
, "__sync_sub_and_fetch", max
);
6360 init_sync_libfuncs_1 (sync_new_ior_optab
, "__sync_or_and_fetch", max
);
6361 init_sync_libfuncs_1 (sync_new_and_optab
, "__sync_and_and_fetch", max
);
6362 init_sync_libfuncs_1 (sync_new_xor_optab
, "__sync_xor_and_fetch", max
);
6363 init_sync_libfuncs_1 (sync_new_nand_optab
, "__sync_nand_and_fetch", max
);
6366 /* Print information about the current contents of the optabs on
6370 debug_optab_libfuncs (void)
6374 /* Dump the arithmetic optabs. */
6375 for (i
= FIRST_NORM_OPTAB
; i
<= LAST_NORMLIB_OPTAB
; ++i
)
6376 for (j
= 0; j
< NUM_MACHINE_MODES
; ++j
)
6378 rtx l
= optab_libfunc ((optab
) i
, (machine_mode
) j
);
6381 gcc_assert (GET_CODE (l
) == SYMBOL_REF
);
6382 fprintf (stderr
, "%s\t%s:\t%s\n",
6383 GET_RTX_NAME (optab_to_code ((optab
) i
)),
6389 /* Dump the conversion optabs. */
6390 for (i
= FIRST_CONV_OPTAB
; i
<= LAST_CONVLIB_OPTAB
; ++i
)
6391 for (j
= 0; j
< NUM_MACHINE_MODES
; ++j
)
6392 for (k
= 0; k
< NUM_MACHINE_MODES
; ++k
)
6394 rtx l
= convert_optab_libfunc ((optab
) i
, (machine_mode
) j
,
6398 gcc_assert (GET_CODE (l
) == SYMBOL_REF
);
6399 fprintf (stderr
, "%s\t%s\t%s:\t%s\n",
6400 GET_RTX_NAME (optab_to_code ((optab
) i
)),
6409 /* Generate insns to trap with code TCODE if OP1 and OP2 satisfy condition
6410 CODE. Return 0 on failure. */
6413 gen_cond_trap (enum rtx_code code
, rtx op1
, rtx op2
, rtx tcode
)
6415 machine_mode mode
= GET_MODE (op1
);
6416 enum insn_code icode
;
6420 if (mode
== VOIDmode
)
6423 icode
= optab_handler (ctrap_optab
, mode
);
6424 if (icode
== CODE_FOR_nothing
)
6427 /* Some targets only accept a zero trap code. */
6428 if (!insn_operand_matches (icode
, 3, tcode
))
6431 do_pending_stack_adjust ();
6433 prepare_cmp_insn (op1
, op2
, code
, NULL_RTX
, false, OPTAB_DIRECT
,
6438 insn
= GEN_FCN (icode
) (trap_rtx
, XEXP (trap_rtx
, 0), XEXP (trap_rtx
, 1),
6441 /* If that failed, then give up. */
6449 insn
= get_insns ();
6454 /* Return rtx code for TCODE. Use UNSIGNEDP to select signed
6455 or unsigned operation code. */
6458 get_rtx_code (enum tree_code tcode
, bool unsignedp
)
6470 code
= unsignedp
? LTU
: LT
;
6473 code
= unsignedp
? LEU
: LE
;
6476 code
= unsignedp
? GTU
: GT
;
6479 code
= unsignedp
? GEU
: GE
;
6482 case UNORDERED_EXPR
:
6521 /* Return comparison rtx for COND. Use UNSIGNEDP to select signed or
6522 unsigned operators. Do not generate compare instruction. */
6525 vector_compare_rtx (enum tree_code tcode
, tree t_op0
, tree t_op1
,
6526 bool unsignedp
, enum insn_code icode
)
6528 struct expand_operand ops
[2];
6529 rtx rtx_op0
, rtx_op1
;
6530 enum rtx_code rcode
= get_rtx_code (tcode
, unsignedp
);
6532 gcc_assert (TREE_CODE_CLASS (tcode
) == tcc_comparison
);
6534 /* Expand operands. */
6535 rtx_op0
= expand_expr (t_op0
, NULL_RTX
, TYPE_MODE (TREE_TYPE (t_op0
)),
6537 rtx_op1
= expand_expr (t_op1
, NULL_RTX
, TYPE_MODE (TREE_TYPE (t_op1
)),
6540 create_input_operand (&ops
[0], rtx_op0
, GET_MODE (rtx_op0
));
6541 create_input_operand (&ops
[1], rtx_op1
, GET_MODE (rtx_op1
));
6542 if (!maybe_legitimize_operands (icode
, 4, 2, ops
))
6544 return gen_rtx_fmt_ee (rcode
, VOIDmode
, ops
[0].value
, ops
[1].value
);
6547 /* Return true if VEC_PERM_EXPR of arbitrary input vectors can be expanded using
6548 SIMD extensions of the CPU. SEL may be NULL, which stands for an unknown
6549 constant. Note that additional permutations representing whole-vector shifts
6550 may also be handled via the vec_shr optab, but only where the second input
6551 vector is entirely constant zeroes; this case is not dealt with here. */
6554 can_vec_perm_p (machine_mode mode
, bool variable
,
6555 const unsigned char *sel
)
6557 machine_mode qimode
;
6559 /* If the target doesn't implement a vector mode for the vector type,
6560 then no operations are supported. */
6561 if (!VECTOR_MODE_P (mode
))
6566 if (direct_optab_handler (vec_perm_const_optab
, mode
) != CODE_FOR_nothing
6568 || targetm
.vectorize
.vec_perm_const_ok
== NULL
6569 || targetm
.vectorize
.vec_perm_const_ok (mode
, sel
)))
6573 if (direct_optab_handler (vec_perm_optab
, mode
) != CODE_FOR_nothing
)
6576 /* We allow fallback to a QI vector mode, and adjust the mask. */
6577 if (GET_MODE_INNER (mode
) == QImode
)
6579 qimode
= mode_for_vector (QImode
, GET_MODE_SIZE (mode
));
6580 if (!VECTOR_MODE_P (qimode
))
6583 /* ??? For completeness, we ought to check the QImode version of
6584 vec_perm_const_optab. But all users of this implicit lowering
6585 feature implement the variable vec_perm_optab. */
6586 if (direct_optab_handler (vec_perm_optab
, qimode
) == CODE_FOR_nothing
)
6589 /* In order to support the lowering of variable permutations,
6590 we need to support shifts and adds. */
6593 if (GET_MODE_UNIT_SIZE (mode
) > 2
6594 && optab_handler (ashl_optab
, mode
) == CODE_FOR_nothing
6595 && optab_handler (vashl_optab
, mode
) == CODE_FOR_nothing
)
6597 if (optab_handler (add_optab
, qimode
) == CODE_FOR_nothing
)
6604 /* Checks if vec_perm mask SEL is a constant equivalent to a shift of the first
6605 vec_perm operand, assuming the second operand is a constant vector of zeroes.
6606 Return the shift distance in bits if so, or NULL_RTX if the vec_perm is not a
6609 shift_amt_for_vec_perm_mask (rtx sel
)
6611 unsigned int i
, first
, nelt
= GET_MODE_NUNITS (GET_MODE (sel
));
6612 unsigned int bitsize
= GET_MODE_BITSIZE (GET_MODE_INNER (GET_MODE (sel
)));
6614 if (GET_CODE (sel
) != CONST_VECTOR
)
6617 first
= INTVAL (CONST_VECTOR_ELT (sel
, 0));
6618 if (first
>= 2*nelt
)
6620 for (i
= 1; i
< nelt
; i
++)
6622 int idx
= INTVAL (CONST_VECTOR_ELT (sel
, i
));
6623 unsigned int expected
= (i
+ first
) & (2 * nelt
- 1);
6624 /* Indices into the second vector are all equivalent. */
6625 if (idx
< 0 || (MIN (nelt
, (unsigned) idx
) != MIN (nelt
, expected
)))
6629 return GEN_INT (first
* bitsize
);
6632 /* A subroutine of expand_vec_perm for expanding one vec_perm insn. */
6635 expand_vec_perm_1 (enum insn_code icode
, rtx target
,
6636 rtx v0
, rtx v1
, rtx sel
)
6638 machine_mode tmode
= GET_MODE (target
);
6639 machine_mode smode
= GET_MODE (sel
);
6640 struct expand_operand ops
[4];
6642 create_output_operand (&ops
[0], target
, tmode
);
6643 create_input_operand (&ops
[3], sel
, smode
);
6645 /* Make an effort to preserve v0 == v1. The target expander is able to
6646 rely on this to determine if we're permuting a single input operand. */
6647 if (rtx_equal_p (v0
, v1
))
6649 if (!insn_operand_matches (icode
, 1, v0
))
6650 v0
= force_reg (tmode
, v0
);
6651 gcc_checking_assert (insn_operand_matches (icode
, 1, v0
));
6652 gcc_checking_assert (insn_operand_matches (icode
, 2, v0
));
6654 create_fixed_operand (&ops
[1], v0
);
6655 create_fixed_operand (&ops
[2], v0
);
6659 create_input_operand (&ops
[1], v0
, tmode
);
6660 /* See if this can be handled with a vec_shr. We only do this if the
6661 second vector is all zeroes. */
6662 enum insn_code shift_code
= optab_handler (vec_shr_optab
, GET_MODE (v0
));
6663 if (v1
== CONST0_RTX (GET_MODE (v1
)) && shift_code
)
6664 if (rtx shift_amt
= shift_amt_for_vec_perm_mask (sel
))
6666 create_convert_operand_from_type (&ops
[2], shift_amt
,
6667 sizetype_tab
[(int) stk_sizetype
]);
6668 if (maybe_expand_insn (shift_code
, 3, ops
))
6669 return ops
[0].value
;
6671 create_input_operand (&ops
[2], v1
, tmode
);
6674 if (maybe_expand_insn (icode
, 4, ops
))
6675 return ops
[0].value
;
6679 /* Generate instructions for vec_perm optab given its mode
6680 and three operands. */
6683 expand_vec_perm (machine_mode mode
, rtx v0
, rtx v1
, rtx sel
, rtx target
)
6685 enum insn_code icode
;
6686 machine_mode qimode
;
6687 unsigned int i
, w
, e
, u
;
6688 rtx tmp
, sel_qi
= NULL
;
6691 if (!target
|| GET_MODE (target
) != mode
)
6692 target
= gen_reg_rtx (mode
);
6694 w
= GET_MODE_SIZE (mode
);
6695 e
= GET_MODE_NUNITS (mode
);
6696 u
= GET_MODE_UNIT_SIZE (mode
);
6698 /* Set QIMODE to a different vector mode with byte elements.
6699 If no such mode, or if MODE already has byte elements, use VOIDmode. */
6701 if (GET_MODE_INNER (mode
) != QImode
)
6703 qimode
= mode_for_vector (QImode
, w
);
6704 if (!VECTOR_MODE_P (qimode
))
6708 /* If the input is a constant, expand it specially. */
6709 gcc_assert (GET_MODE_CLASS (GET_MODE (sel
)) == MODE_VECTOR_INT
);
6710 if (GET_CODE (sel
) == CONST_VECTOR
)
6712 icode
= direct_optab_handler (vec_perm_const_optab
, mode
);
6713 if (icode
!= CODE_FOR_nothing
)
6715 tmp
= expand_vec_perm_1 (icode
, target
, v0
, v1
, sel
);
6720 /* Fall back to a constant byte-based permutation. */
6721 if (qimode
!= VOIDmode
)
6723 vec
= rtvec_alloc (w
);
6724 for (i
= 0; i
< e
; ++i
)
6726 unsigned int j
, this_e
;
6728 this_e
= INTVAL (CONST_VECTOR_ELT (sel
, i
));
6729 this_e
&= 2 * e
- 1;
6732 for (j
= 0; j
< u
; ++j
)
6733 RTVEC_ELT (vec
, i
* u
+ j
) = GEN_INT (this_e
+ j
);
6735 sel_qi
= gen_rtx_CONST_VECTOR (qimode
, vec
);
6737 icode
= direct_optab_handler (vec_perm_const_optab
, qimode
);
6738 if (icode
!= CODE_FOR_nothing
)
6740 tmp
= mode
!= qimode
? gen_reg_rtx (qimode
) : target
;
6741 tmp
= expand_vec_perm_1 (icode
, tmp
, gen_lowpart (qimode
, v0
),
6742 gen_lowpart (qimode
, v1
), sel_qi
);
6744 return gen_lowpart (mode
, tmp
);
6749 /* Otherwise expand as a fully variable permuation. */
6750 icode
= direct_optab_handler (vec_perm_optab
, mode
);
6751 if (icode
!= CODE_FOR_nothing
)
6753 tmp
= expand_vec_perm_1 (icode
, target
, v0
, v1
, sel
);
6758 /* As a special case to aid several targets, lower the element-based
6759 permutation to a byte-based permutation and try again. */
6760 if (qimode
== VOIDmode
)
6762 icode
= direct_optab_handler (vec_perm_optab
, qimode
);
6763 if (icode
== CODE_FOR_nothing
)
6768 /* Multiply each element by its byte size. */
6769 machine_mode selmode
= GET_MODE (sel
);
6771 sel
= expand_simple_binop (selmode
, PLUS
, sel
, sel
,
6772 sel
, 0, OPTAB_DIRECT
);
6774 sel
= expand_simple_binop (selmode
, ASHIFT
, sel
,
6775 GEN_INT (exact_log2 (u
)),
6776 sel
, 0, OPTAB_DIRECT
);
6777 gcc_assert (sel
!= NULL
);
6779 /* Broadcast the low byte each element into each of its bytes. */
6780 vec
= rtvec_alloc (w
);
6781 for (i
= 0; i
< w
; ++i
)
6783 int this_e
= i
/ u
* u
;
6784 if (BYTES_BIG_ENDIAN
)
6786 RTVEC_ELT (vec
, i
) = GEN_INT (this_e
);
6788 tmp
= gen_rtx_CONST_VECTOR (qimode
, vec
);
6789 sel
= gen_lowpart (qimode
, sel
);
6790 sel
= expand_vec_perm (qimode
, sel
, sel
, tmp
, NULL
);
6791 gcc_assert (sel
!= NULL
);
6793 /* Add the byte offset to each byte element. */
6794 /* Note that the definition of the indicies here is memory ordering,
6795 so there should be no difference between big and little endian. */
6796 vec
= rtvec_alloc (w
);
6797 for (i
= 0; i
< w
; ++i
)
6798 RTVEC_ELT (vec
, i
) = GEN_INT (i
% u
);
6799 tmp
= gen_rtx_CONST_VECTOR (qimode
, vec
);
6800 sel_qi
= expand_simple_binop (qimode
, PLUS
, sel
, tmp
,
6801 sel
, 0, OPTAB_DIRECT
);
6802 gcc_assert (sel_qi
!= NULL
);
6805 tmp
= mode
!= qimode
? gen_reg_rtx (qimode
) : target
;
6806 tmp
= expand_vec_perm_1 (icode
, tmp
, gen_lowpart (qimode
, v0
),
6807 gen_lowpart (qimode
, v1
), sel_qi
);
6809 tmp
= gen_lowpart (mode
, tmp
);
6813 /* Return insn code for a conditional operator with a comparison in
6814 mode CMODE, unsigned if UNS is true, resulting in a value of mode VMODE. */
6816 static inline enum insn_code
6817 get_vcond_icode (machine_mode vmode
, machine_mode cmode
, bool uns
)
6819 enum insn_code icode
= CODE_FOR_nothing
;
6821 icode
= convert_optab_handler (vcondu_optab
, vmode
, cmode
);
6823 icode
= convert_optab_handler (vcond_optab
, vmode
, cmode
);
6827 /* Return TRUE iff, appropriate vector insns are available
6828 for vector cond expr with vector type VALUE_TYPE and a comparison
6829 with operand vector types in CMP_OP_TYPE. */
6832 expand_vec_cond_expr_p (tree value_type
, tree cmp_op_type
)
6834 machine_mode value_mode
= TYPE_MODE (value_type
);
6835 machine_mode cmp_op_mode
= TYPE_MODE (cmp_op_type
);
6836 if (GET_MODE_SIZE (value_mode
) != GET_MODE_SIZE (cmp_op_mode
)
6837 || GET_MODE_NUNITS (value_mode
) != GET_MODE_NUNITS (cmp_op_mode
)
6838 || get_vcond_icode (TYPE_MODE (value_type
), TYPE_MODE (cmp_op_type
),
6839 TYPE_UNSIGNED (cmp_op_type
)) == CODE_FOR_nothing
)
6844 /* Generate insns for a VEC_COND_EXPR, given its TYPE and its
6848 expand_vec_cond_expr (tree vec_cond_type
, tree op0
, tree op1
, tree op2
,
6851 struct expand_operand ops
[6];
6852 enum insn_code icode
;
6853 rtx comparison
, rtx_op1
, rtx_op2
;
6854 machine_mode mode
= TYPE_MODE (vec_cond_type
);
6855 machine_mode cmp_op_mode
;
6858 enum tree_code tcode
;
6860 if (COMPARISON_CLASS_P (op0
))
6862 op0a
= TREE_OPERAND (op0
, 0);
6863 op0b
= TREE_OPERAND (op0
, 1);
6864 tcode
= TREE_CODE (op0
);
6869 gcc_assert (!TYPE_UNSIGNED (TREE_TYPE (op0
)));
6871 op0b
= build_zero_cst (TREE_TYPE (op0
));
6874 unsignedp
= TYPE_UNSIGNED (TREE_TYPE (op0a
));
6875 cmp_op_mode
= TYPE_MODE (TREE_TYPE (op0a
));
6878 gcc_assert (GET_MODE_SIZE (mode
) == GET_MODE_SIZE (cmp_op_mode
)
6879 && GET_MODE_NUNITS (mode
) == GET_MODE_NUNITS (cmp_op_mode
));
6881 icode
= get_vcond_icode (mode
, cmp_op_mode
, unsignedp
);
6882 if (icode
== CODE_FOR_nothing
)
6885 comparison
= vector_compare_rtx (tcode
, op0a
, op0b
, unsignedp
, icode
);
6886 rtx_op1
= expand_normal (op1
);
6887 rtx_op2
= expand_normal (op2
);
6889 create_output_operand (&ops
[0], target
, mode
);
6890 create_input_operand (&ops
[1], rtx_op1
, mode
);
6891 create_input_operand (&ops
[2], rtx_op2
, mode
);
6892 create_fixed_operand (&ops
[3], comparison
);
6893 create_fixed_operand (&ops
[4], XEXP (comparison
, 0));
6894 create_fixed_operand (&ops
[5], XEXP (comparison
, 1));
6895 expand_insn (icode
, 6, ops
);
6896 return ops
[0].value
;
6899 /* Return non-zero if a highpart multiply is supported of can be synthisized.
6900 For the benefit of expand_mult_highpart, the return value is 1 for direct,
6901 2 for even/odd widening, and 3 for hi/lo widening. */
6904 can_mult_highpart_p (machine_mode mode
, bool uns_p
)
6910 op
= uns_p
? umul_highpart_optab
: smul_highpart_optab
;
6911 if (optab_handler (op
, mode
) != CODE_FOR_nothing
)
6914 /* If the mode is an integral vector, synth from widening operations. */
6915 if (GET_MODE_CLASS (mode
) != MODE_VECTOR_INT
)
6918 nunits
= GET_MODE_NUNITS (mode
);
6919 sel
= XALLOCAVEC (unsigned char, nunits
);
6921 op
= uns_p
? vec_widen_umult_even_optab
: vec_widen_smult_even_optab
;
6922 if (optab_handler (op
, mode
) != CODE_FOR_nothing
)
6924 op
= uns_p
? vec_widen_umult_odd_optab
: vec_widen_smult_odd_optab
;
6925 if (optab_handler (op
, mode
) != CODE_FOR_nothing
)
6927 for (i
= 0; i
< nunits
; ++i
)
6928 sel
[i
] = !BYTES_BIG_ENDIAN
+ (i
& ~1) + ((i
& 1) ? nunits
: 0);
6929 if (can_vec_perm_p (mode
, false, sel
))
6934 op
= uns_p
? vec_widen_umult_hi_optab
: vec_widen_smult_hi_optab
;
6935 if (optab_handler (op
, mode
) != CODE_FOR_nothing
)
6937 op
= uns_p
? vec_widen_umult_lo_optab
: vec_widen_smult_lo_optab
;
6938 if (optab_handler (op
, mode
) != CODE_FOR_nothing
)
6940 for (i
= 0; i
< nunits
; ++i
)
6941 sel
[i
] = 2 * i
+ (BYTES_BIG_ENDIAN
? 0 : 1);
6942 if (can_vec_perm_p (mode
, false, sel
))
6950 /* Expand a highpart multiply. */
6953 expand_mult_highpart (machine_mode mode
, rtx op0
, rtx op1
,
6954 rtx target
, bool uns_p
)
6956 struct expand_operand eops
[3];
6957 enum insn_code icode
;
6958 int method
, i
, nunits
;
6964 method
= can_mult_highpart_p (mode
, uns_p
);
6970 tab1
= uns_p
? umul_highpart_optab
: smul_highpart_optab
;
6971 return expand_binop (mode
, tab1
, op0
, op1
, target
, uns_p
,
6974 tab1
= uns_p
? vec_widen_umult_even_optab
: vec_widen_smult_even_optab
;
6975 tab2
= uns_p
? vec_widen_umult_odd_optab
: vec_widen_smult_odd_optab
;
6978 tab1
= uns_p
? vec_widen_umult_lo_optab
: vec_widen_smult_lo_optab
;
6979 tab2
= uns_p
? vec_widen_umult_hi_optab
: vec_widen_smult_hi_optab
;
6980 if (BYTES_BIG_ENDIAN
)
6991 icode
= optab_handler (tab1
, mode
);
6992 nunits
= GET_MODE_NUNITS (mode
);
6993 wmode
= insn_data
[icode
].operand
[0].mode
;
6994 gcc_checking_assert (2 * GET_MODE_NUNITS (wmode
) == nunits
);
6995 gcc_checking_assert (GET_MODE_SIZE (wmode
) == GET_MODE_SIZE (mode
));
6997 create_output_operand (&eops
[0], gen_reg_rtx (wmode
), wmode
);
6998 create_input_operand (&eops
[1], op0
, mode
);
6999 create_input_operand (&eops
[2], op1
, mode
);
7000 expand_insn (icode
, 3, eops
);
7001 m1
= gen_lowpart (mode
, eops
[0].value
);
7003 create_output_operand (&eops
[0], gen_reg_rtx (wmode
), wmode
);
7004 create_input_operand (&eops
[1], op0
, mode
);
7005 create_input_operand (&eops
[2], op1
, mode
);
7006 expand_insn (optab_handler (tab2
, mode
), 3, eops
);
7007 m2
= gen_lowpart (mode
, eops
[0].value
);
7009 v
= rtvec_alloc (nunits
);
7012 for (i
= 0; i
< nunits
; ++i
)
7013 RTVEC_ELT (v
, i
) = GEN_INT (!BYTES_BIG_ENDIAN
+ (i
& ~1)
7014 + ((i
& 1) ? nunits
: 0));
7018 for (i
= 0; i
< nunits
; ++i
)
7019 RTVEC_ELT (v
, i
) = GEN_INT (2 * i
+ (BYTES_BIG_ENDIAN
? 0 : 1));
7021 perm
= gen_rtx_CONST_VECTOR (mode
, v
);
7023 return expand_vec_perm (mode
, m1
, m2
, perm
, target
);
7026 /* Return true if target supports vector masked load/store for mode. */
7028 can_vec_mask_load_store_p (machine_mode mode
, bool is_load
)
7030 optab op
= is_load
? maskload_optab
: maskstore_optab
;
7032 unsigned int vector_sizes
;
7034 /* If mode is vector mode, check it directly. */
7035 if (VECTOR_MODE_P (mode
))
7036 return optab_handler (op
, mode
) != CODE_FOR_nothing
;
7038 /* Otherwise, return true if there is some vector mode with
7039 the mask load/store supported. */
7041 /* See if there is any chance the mask load or store might be
7042 vectorized. If not, punt. */
7043 vmode
= targetm
.vectorize
.preferred_simd_mode (mode
);
7044 if (!VECTOR_MODE_P (vmode
))
7047 if (optab_handler (op
, vmode
) != CODE_FOR_nothing
)
7050 vector_sizes
= targetm
.vectorize
.autovectorize_vector_sizes ();
7051 while (vector_sizes
!= 0)
7053 unsigned int cur
= 1 << floor_log2 (vector_sizes
);
7054 vector_sizes
&= ~cur
;
7055 if (cur
<= GET_MODE_SIZE (mode
))
7057 vmode
= mode_for_vector (mode
, cur
/ GET_MODE_SIZE (mode
));
7058 if (VECTOR_MODE_P (vmode
)
7059 && optab_handler (op
, vmode
) != CODE_FOR_nothing
)
7065 /* Return true if there is a compare_and_swap pattern. */
7068 can_compare_and_swap_p (machine_mode mode
, bool allow_libcall
)
7070 enum insn_code icode
;
7072 /* Check for __atomic_compare_and_swap. */
7073 icode
= direct_optab_handler (atomic_compare_and_swap_optab
, mode
);
7074 if (icode
!= CODE_FOR_nothing
)
7077 /* Check for __sync_compare_and_swap. */
7078 icode
= optab_handler (sync_compare_and_swap_optab
, mode
);
7079 if (icode
!= CODE_FOR_nothing
)
7081 if (allow_libcall
&& optab_libfunc (sync_compare_and_swap_optab
, mode
))
7084 /* No inline compare and swap. */
7088 /* Return true if an atomic exchange can be performed. */
7091 can_atomic_exchange_p (machine_mode mode
, bool allow_libcall
)
7093 enum insn_code icode
;
7095 /* Check for __atomic_exchange. */
7096 icode
= direct_optab_handler (atomic_exchange_optab
, mode
);
7097 if (icode
!= CODE_FOR_nothing
)
7100 /* Don't check __sync_test_and_set, as on some platforms that
7101 has reduced functionality. Targets that really do support
7102 a proper exchange should simply be updated to the __atomics. */
7104 return can_compare_and_swap_p (mode
, allow_libcall
);
7108 /* Helper function to find the MODE_CC set in a sync_compare_and_swap
7112 find_cc_set (rtx x
, const_rtx pat
, void *data
)
7114 if (REG_P (x
) && GET_MODE_CLASS (GET_MODE (x
)) == MODE_CC
7115 && GET_CODE (pat
) == SET
)
7117 rtx
*p_cc_reg
= (rtx
*) data
;
7118 gcc_assert (!*p_cc_reg
);
7123 /* This is a helper function for the other atomic operations. This function
7124 emits a loop that contains SEQ that iterates until a compare-and-swap
7125 operation at the end succeeds. MEM is the memory to be modified. SEQ is
7126 a set of instructions that takes a value from OLD_REG as an input and
7127 produces a value in NEW_REG as an output. Before SEQ, OLD_REG will be
7128 set to the current contents of MEM. After SEQ, a compare-and-swap will
7129 attempt to update MEM with NEW_REG. The function returns true when the
7130 loop was generated successfully. */
7133 expand_compare_and_swap_loop (rtx mem
, rtx old_reg
, rtx new_reg
, rtx seq
)
7135 machine_mode mode
= GET_MODE (mem
);
7136 rtx_code_label
*label
;
7137 rtx cmp_reg
, success
, oldval
;
7139 /* The loop we want to generate looks like
7145 (success, cmp_reg) = compare-and-swap(mem, old_reg, new_reg)
7149 Note that we only do the plain load from memory once. Subsequent
7150 iterations use the value loaded by the compare-and-swap pattern. */
7152 label
= gen_label_rtx ();
7153 cmp_reg
= gen_reg_rtx (mode
);
7155 emit_move_insn (cmp_reg
, mem
);
7157 emit_move_insn (old_reg
, cmp_reg
);
7163 if (!expand_atomic_compare_and_swap (&success
, &oldval
, mem
, old_reg
,
7164 new_reg
, false, MEMMODEL_SEQ_CST
,
7168 if (oldval
!= cmp_reg
)
7169 emit_move_insn (cmp_reg
, oldval
);
7171 /* Mark this jump predicted not taken. */
7172 emit_cmp_and_jump_insns (success
, const0_rtx
, EQ
, const0_rtx
,
7173 GET_MODE (success
), 1, label
, 0);
7178 /* This function tries to emit an atomic_exchange intruction. VAL is written
7179 to *MEM using memory model MODEL. The previous contents of *MEM are returned,
7180 using TARGET if possible. */
7183 maybe_emit_atomic_exchange (rtx target
, rtx mem
, rtx val
, enum memmodel model
)
7185 machine_mode mode
= GET_MODE (mem
);
7186 enum insn_code icode
;
7188 /* If the target supports the exchange directly, great. */
7189 icode
= direct_optab_handler (atomic_exchange_optab
, mode
);
7190 if (icode
!= CODE_FOR_nothing
)
7192 struct expand_operand ops
[4];
7194 create_output_operand (&ops
[0], target
, mode
);
7195 create_fixed_operand (&ops
[1], mem
);
7196 create_input_operand (&ops
[2], val
, mode
);
7197 create_integer_operand (&ops
[3], model
);
7198 if (maybe_expand_insn (icode
, 4, ops
))
7199 return ops
[0].value
;
7205 /* This function tries to implement an atomic exchange operation using
7206 __sync_lock_test_and_set. VAL is written to *MEM using memory model MODEL.
7207 The previous contents of *MEM are returned, using TARGET if possible.
7208 Since this instructionn is an acquire barrier only, stronger memory
7209 models may require additional barriers to be emitted. */
7212 maybe_emit_sync_lock_test_and_set (rtx target
, rtx mem
, rtx val
,
7213 enum memmodel model
)
7215 machine_mode mode
= GET_MODE (mem
);
7216 enum insn_code icode
;
7217 rtx_insn
*last_insn
= get_last_insn ();
7219 icode
= optab_handler (sync_lock_test_and_set_optab
, mode
);
7221 /* Legacy sync_lock_test_and_set is an acquire barrier. If the pattern
7222 exists, and the memory model is stronger than acquire, add a release
7223 barrier before the instruction. */
7225 if ((model
& MEMMODEL_MASK
) == MEMMODEL_SEQ_CST
7226 || (model
& MEMMODEL_MASK
) == MEMMODEL_RELEASE
7227 || (model
& MEMMODEL_MASK
) == MEMMODEL_ACQ_REL
)
7228 expand_mem_thread_fence (model
);
7230 if (icode
!= CODE_FOR_nothing
)
7232 struct expand_operand ops
[3];
7233 create_output_operand (&ops
[0], target
, mode
);
7234 create_fixed_operand (&ops
[1], mem
);
7235 create_input_operand (&ops
[2], val
, mode
);
7236 if (maybe_expand_insn (icode
, 3, ops
))
7237 return ops
[0].value
;
7240 /* If an external test-and-set libcall is provided, use that instead of
7241 any external compare-and-swap that we might get from the compare-and-
7242 swap-loop expansion later. */
7243 if (!can_compare_and_swap_p (mode
, false))
7245 rtx libfunc
= optab_libfunc (sync_lock_test_and_set_optab
, mode
);
7246 if (libfunc
!= NULL
)
7250 addr
= convert_memory_address (ptr_mode
, XEXP (mem
, 0));
7251 return emit_library_call_value (libfunc
, NULL_RTX
, LCT_NORMAL
,
7252 mode
, 2, addr
, ptr_mode
,
7257 /* If the test_and_set can't be emitted, eliminate any barrier that might
7258 have been emitted. */
7259 delete_insns_since (last_insn
);
7263 /* This function tries to implement an atomic exchange operation using a
7264 compare_and_swap loop. VAL is written to *MEM. The previous contents of
7265 *MEM are returned, using TARGET if possible. No memory model is required
7266 since a compare_and_swap loop is seq-cst. */
7269 maybe_emit_compare_and_swap_exchange_loop (rtx target
, rtx mem
, rtx val
)
7271 machine_mode mode
= GET_MODE (mem
);
7273 if (can_compare_and_swap_p (mode
, true))
7275 if (!target
|| !register_operand (target
, mode
))
7276 target
= gen_reg_rtx (mode
);
7277 if (expand_compare_and_swap_loop (mem
, target
, val
, NULL_RTX
))
7284 /* This function tries to implement an atomic test-and-set operation
7285 using the atomic_test_and_set instruction pattern. A boolean value
7286 is returned from the operation, using TARGET if possible. */
7288 #ifndef HAVE_atomic_test_and_set
7289 #define HAVE_atomic_test_and_set 0
7290 #define CODE_FOR_atomic_test_and_set CODE_FOR_nothing
7294 maybe_emit_atomic_test_and_set (rtx target
, rtx mem
, enum memmodel model
)
7296 machine_mode pat_bool_mode
;
7297 struct expand_operand ops
[3];
7299 if (!HAVE_atomic_test_and_set
)
7302 /* While we always get QImode from __atomic_test_and_set, we get
7303 other memory modes from __sync_lock_test_and_set. Note that we
7304 use no endian adjustment here. This matches the 4.6 behavior
7305 in the Sparc backend. */
7307 (insn_data
[CODE_FOR_atomic_test_and_set
].operand
[1].mode
== QImode
);
7308 if (GET_MODE (mem
) != QImode
)
7309 mem
= adjust_address_nv (mem
, QImode
, 0);
7311 pat_bool_mode
= insn_data
[CODE_FOR_atomic_test_and_set
].operand
[0].mode
;
7312 create_output_operand (&ops
[0], target
, pat_bool_mode
);
7313 create_fixed_operand (&ops
[1], mem
);
7314 create_integer_operand (&ops
[2], model
);
7316 if (maybe_expand_insn (CODE_FOR_atomic_test_and_set
, 3, ops
))
7317 return ops
[0].value
;
7321 /* This function expands the legacy _sync_lock test_and_set operation which is
7322 generally an atomic exchange. Some limited targets only allow the
7323 constant 1 to be stored. This is an ACQUIRE operation.
7325 TARGET is an optional place to stick the return value.
7326 MEM is where VAL is stored. */
7329 expand_sync_lock_test_and_set (rtx target
, rtx mem
, rtx val
)
7333 /* Try an atomic_exchange first. */
7334 ret
= maybe_emit_atomic_exchange (target
, mem
, val
, MEMMODEL_ACQUIRE
);
7338 ret
= maybe_emit_sync_lock_test_and_set (target
, mem
, val
, MEMMODEL_ACQUIRE
);
7342 ret
= maybe_emit_compare_and_swap_exchange_loop (target
, mem
, val
);
7346 /* If there are no other options, try atomic_test_and_set if the value
7347 being stored is 1. */
7348 if (val
== const1_rtx
)
7349 ret
= maybe_emit_atomic_test_and_set (target
, mem
, MEMMODEL_ACQUIRE
);
7354 /* This function expands the atomic test_and_set operation:
7355 atomically store a boolean TRUE into MEM and return the previous value.
7357 MEMMODEL is the memory model variant to use.
7358 TARGET is an optional place to stick the return value. */
7361 expand_atomic_test_and_set (rtx target
, rtx mem
, enum memmodel model
)
7363 machine_mode mode
= GET_MODE (mem
);
7364 rtx ret
, trueval
, subtarget
;
7366 ret
= maybe_emit_atomic_test_and_set (target
, mem
, model
);
7370 /* Be binary compatible with non-default settings of trueval, and different
7371 cpu revisions. E.g. one revision may have atomic-test-and-set, but
7372 another only has atomic-exchange. */
7373 if (targetm
.atomic_test_and_set_trueval
== 1)
7375 trueval
= const1_rtx
;
7376 subtarget
= target
? target
: gen_reg_rtx (mode
);
7380 trueval
= gen_int_mode (targetm
.atomic_test_and_set_trueval
, mode
);
7381 subtarget
= gen_reg_rtx (mode
);
7384 /* Try the atomic-exchange optab... */
7385 ret
= maybe_emit_atomic_exchange (subtarget
, mem
, trueval
, model
);
7387 /* ... then an atomic-compare-and-swap loop ... */
7389 ret
= maybe_emit_compare_and_swap_exchange_loop (subtarget
, mem
, trueval
);
7391 /* ... before trying the vaguely defined legacy lock_test_and_set. */
7393 ret
= maybe_emit_sync_lock_test_and_set (subtarget
, mem
, trueval
, model
);
7395 /* Recall that the legacy lock_test_and_set optab was allowed to do magic
7396 things with the value 1. Thus we try again without trueval. */
7397 if (!ret
&& targetm
.atomic_test_and_set_trueval
!= 1)
7398 ret
= maybe_emit_sync_lock_test_and_set (subtarget
, mem
, const1_rtx
, model
);
7400 /* Failing all else, assume a single threaded environment and simply
7401 perform the operation. */
7404 /* If the result is ignored skip the move to target. */
7405 if (subtarget
!= const0_rtx
)
7406 emit_move_insn (subtarget
, mem
);
7408 emit_move_insn (mem
, trueval
);
7412 /* Recall that have to return a boolean value; rectify if trueval
7413 is not exactly one. */
7414 if (targetm
.atomic_test_and_set_trueval
!= 1)
7415 ret
= emit_store_flag_force (target
, NE
, ret
, const0_rtx
, mode
, 0, 1);
7420 /* This function expands the atomic exchange operation:
7421 atomically store VAL in MEM and return the previous value in MEM.
7423 MEMMODEL is the memory model variant to use.
7424 TARGET is an optional place to stick the return value. */
7427 expand_atomic_exchange (rtx target
, rtx mem
, rtx val
, enum memmodel model
)
7431 ret
= maybe_emit_atomic_exchange (target
, mem
, val
, model
);
7433 /* Next try a compare-and-swap loop for the exchange. */
7435 ret
= maybe_emit_compare_and_swap_exchange_loop (target
, mem
, val
);
7440 /* This function expands the atomic compare exchange operation:
7442 *PTARGET_BOOL is an optional place to store the boolean success/failure.
7443 *PTARGET_OVAL is an optional place to store the old value from memory.
7444 Both target parameters may be NULL to indicate that we do not care about
7445 that return value. Both target parameters are updated on success to
7446 the actual location of the corresponding result.
7448 MEMMODEL is the memory model variant to use.
7450 The return value of the function is true for success. */
7453 expand_atomic_compare_and_swap (rtx
*ptarget_bool
, rtx
*ptarget_oval
,
7454 rtx mem
, rtx expected
, rtx desired
,
7455 bool is_weak
, enum memmodel succ_model
,
7456 enum memmodel fail_model
)
7458 machine_mode mode
= GET_MODE (mem
);
7459 struct expand_operand ops
[8];
7460 enum insn_code icode
;
7461 rtx target_oval
, target_bool
= NULL_RTX
;
7464 /* Load expected into a register for the compare and swap. */
7465 if (MEM_P (expected
))
7466 expected
= copy_to_reg (expected
);
7468 /* Make sure we always have some place to put the return oldval.
7469 Further, make sure that place is distinct from the input expected,
7470 just in case we need that path down below. */
7471 if (ptarget_oval
== NULL
7472 || (target_oval
= *ptarget_oval
) == NULL
7473 || reg_overlap_mentioned_p (expected
, target_oval
))
7474 target_oval
= gen_reg_rtx (mode
);
7476 icode
= direct_optab_handler (atomic_compare_and_swap_optab
, mode
);
7477 if (icode
!= CODE_FOR_nothing
)
7479 machine_mode bool_mode
= insn_data
[icode
].operand
[0].mode
;
7481 /* Make sure we always have a place for the bool operand. */
7482 if (ptarget_bool
== NULL
7483 || (target_bool
= *ptarget_bool
) == NULL
7484 || GET_MODE (target_bool
) != bool_mode
)
7485 target_bool
= gen_reg_rtx (bool_mode
);
7487 /* Emit the compare_and_swap. */
7488 create_output_operand (&ops
[0], target_bool
, bool_mode
);
7489 create_output_operand (&ops
[1], target_oval
, mode
);
7490 create_fixed_operand (&ops
[2], mem
);
7491 create_input_operand (&ops
[3], expected
, mode
);
7492 create_input_operand (&ops
[4], desired
, mode
);
7493 create_integer_operand (&ops
[5], is_weak
);
7494 create_integer_operand (&ops
[6], succ_model
);
7495 create_integer_operand (&ops
[7], fail_model
);
7496 if (maybe_expand_insn (icode
, 8, ops
))
7498 /* Return success/failure. */
7499 target_bool
= ops
[0].value
;
7500 target_oval
= ops
[1].value
;
7505 /* Otherwise fall back to the original __sync_val_compare_and_swap
7506 which is always seq-cst. */
7507 icode
= optab_handler (sync_compare_and_swap_optab
, mode
);
7508 if (icode
!= CODE_FOR_nothing
)
7512 create_output_operand (&ops
[0], target_oval
, mode
);
7513 create_fixed_operand (&ops
[1], mem
);
7514 create_input_operand (&ops
[2], expected
, mode
);
7515 create_input_operand (&ops
[3], desired
, mode
);
7516 if (!maybe_expand_insn (icode
, 4, ops
))
7519 target_oval
= ops
[0].value
;
7521 /* If the caller isn't interested in the boolean return value,
7522 skip the computation of it. */
7523 if (ptarget_bool
== NULL
)
7526 /* Otherwise, work out if the compare-and-swap succeeded. */
7528 if (have_insn_for (COMPARE
, CCmode
))
7529 note_stores (PATTERN (get_last_insn ()), find_cc_set
, &cc_reg
);
7532 target_bool
= emit_store_flag_force (target_bool
, EQ
, cc_reg
,
7533 const0_rtx
, VOIDmode
, 0, 1);
7536 goto success_bool_from_val
;
7539 /* Also check for library support for __sync_val_compare_and_swap. */
7540 libfunc
= optab_libfunc (sync_compare_and_swap_optab
, mode
);
7541 if (libfunc
!= NULL
)
7543 rtx addr
= convert_memory_address (ptr_mode
, XEXP (mem
, 0));
7544 target_oval
= emit_library_call_value (libfunc
, NULL_RTX
, LCT_NORMAL
,
7545 mode
, 3, addr
, ptr_mode
,
7546 expected
, mode
, desired
, mode
);
7548 /* Compute the boolean return value only if requested. */
7550 goto success_bool_from_val
;
7558 success_bool_from_val
:
7559 target_bool
= emit_store_flag_force (target_bool
, EQ
, target_oval
,
7560 expected
, VOIDmode
, 1, 1);
7562 /* Make sure that the oval output winds up where the caller asked. */
7564 *ptarget_oval
= target_oval
;
7566 *ptarget_bool
= target_bool
;
7570 /* Generate asm volatile("" : : : "memory") as the memory barrier. */
7573 expand_asm_memory_barrier (void)
7577 asm_op
= gen_rtx_ASM_OPERANDS (VOIDmode
, empty_string
, empty_string
, 0,
7578 rtvec_alloc (0), rtvec_alloc (0),
7579 rtvec_alloc (0), UNKNOWN_LOCATION
);
7580 MEM_VOLATILE_P (asm_op
) = 1;
7582 clob
= gen_rtx_SCRATCH (VOIDmode
);
7583 clob
= gen_rtx_MEM (BLKmode
, clob
);
7584 clob
= gen_rtx_CLOBBER (VOIDmode
, clob
);
7586 emit_insn (gen_rtx_PARALLEL (VOIDmode
, gen_rtvec (2, asm_op
, clob
)));
7589 /* This routine will either emit the mem_thread_fence pattern or issue a
7590 sync_synchronize to generate a fence for memory model MEMMODEL. */
7592 #ifndef HAVE_mem_thread_fence
7593 # define HAVE_mem_thread_fence 0
7594 # define gen_mem_thread_fence(x) (gcc_unreachable (), NULL_RTX)
7596 #ifndef HAVE_memory_barrier
7597 # define HAVE_memory_barrier 0
7598 # define gen_memory_barrier() (gcc_unreachable (), NULL_RTX)
7602 expand_mem_thread_fence (enum memmodel model
)
7604 if (HAVE_mem_thread_fence
)
7605 emit_insn (gen_mem_thread_fence (GEN_INT (model
)));
7606 else if ((model
& MEMMODEL_MASK
) != MEMMODEL_RELAXED
)
7608 if (HAVE_memory_barrier
)
7609 emit_insn (gen_memory_barrier ());
7610 else if (synchronize_libfunc
!= NULL_RTX
)
7611 emit_library_call (synchronize_libfunc
, LCT_NORMAL
, VOIDmode
, 0);
7613 expand_asm_memory_barrier ();
7617 /* This routine will either emit the mem_signal_fence pattern or issue a
7618 sync_synchronize to generate a fence for memory model MEMMODEL. */
7620 #ifndef HAVE_mem_signal_fence
7621 # define HAVE_mem_signal_fence 0
7622 # define gen_mem_signal_fence(x) (gcc_unreachable (), NULL_RTX)
7626 expand_mem_signal_fence (enum memmodel model
)
7628 if (HAVE_mem_signal_fence
)
7629 emit_insn (gen_mem_signal_fence (GEN_INT (model
)));
7630 else if ((model
& MEMMODEL_MASK
) != MEMMODEL_RELAXED
)
7632 /* By default targets are coherent between a thread and the signal
7633 handler running on the same thread. Thus this really becomes a
7634 compiler barrier, in that stores must not be sunk past
7635 (or raised above) a given point. */
7636 expand_asm_memory_barrier ();
7640 /* This function expands the atomic load operation:
7641 return the atomically loaded value in MEM.
7643 MEMMODEL is the memory model variant to use.
7644 TARGET is an option place to stick the return value. */
7647 expand_atomic_load (rtx target
, rtx mem
, enum memmodel model
)
7649 machine_mode mode
= GET_MODE (mem
);
7650 enum insn_code icode
;
7652 /* If the target supports the load directly, great. */
7653 icode
= direct_optab_handler (atomic_load_optab
, mode
);
7654 if (icode
!= CODE_FOR_nothing
)
7656 struct expand_operand ops
[3];
7658 create_output_operand (&ops
[0], target
, mode
);
7659 create_fixed_operand (&ops
[1], mem
);
7660 create_integer_operand (&ops
[2], model
);
7661 if (maybe_expand_insn (icode
, 3, ops
))
7662 return ops
[0].value
;
7665 /* If the size of the object is greater than word size on this target,
7666 then we assume that a load will not be atomic. */
7667 if (GET_MODE_PRECISION (mode
) > BITS_PER_WORD
)
7669 /* Issue val = compare_and_swap (mem, 0, 0).
7670 This may cause the occasional harmless store of 0 when the value is
7671 already 0, but it seems to be OK according to the standards guys. */
7672 if (expand_atomic_compare_and_swap (NULL
, &target
, mem
, const0_rtx
,
7673 const0_rtx
, false, model
, model
))
7676 /* Otherwise there is no atomic load, leave the library call. */
7680 /* Otherwise assume loads are atomic, and emit the proper barriers. */
7681 if (!target
|| target
== const0_rtx
)
7682 target
= gen_reg_rtx (mode
);
7684 /* For SEQ_CST, emit a barrier before the load. */
7685 if ((model
& MEMMODEL_MASK
) == MEMMODEL_SEQ_CST
)
7686 expand_mem_thread_fence (model
);
7688 emit_move_insn (target
, mem
);
7690 /* Emit the appropriate barrier after the load. */
7691 expand_mem_thread_fence (model
);
7696 /* This function expands the atomic store operation:
7697 Atomically store VAL in MEM.
7698 MEMMODEL is the memory model variant to use.
7699 USE_RELEASE is true if __sync_lock_release can be used as a fall back.
7700 function returns const0_rtx if a pattern was emitted. */
7703 expand_atomic_store (rtx mem
, rtx val
, enum memmodel model
, bool use_release
)
7705 machine_mode mode
= GET_MODE (mem
);
7706 enum insn_code icode
;
7707 struct expand_operand ops
[3];
7709 /* If the target supports the store directly, great. */
7710 icode
= direct_optab_handler (atomic_store_optab
, mode
);
7711 if (icode
!= CODE_FOR_nothing
)
7713 create_fixed_operand (&ops
[0], mem
);
7714 create_input_operand (&ops
[1], val
, mode
);
7715 create_integer_operand (&ops
[2], model
);
7716 if (maybe_expand_insn (icode
, 3, ops
))
7720 /* If using __sync_lock_release is a viable alternative, try it. */
7723 icode
= direct_optab_handler (sync_lock_release_optab
, mode
);
7724 if (icode
!= CODE_FOR_nothing
)
7726 create_fixed_operand (&ops
[0], mem
);
7727 create_input_operand (&ops
[1], const0_rtx
, mode
);
7728 if (maybe_expand_insn (icode
, 2, ops
))
7730 /* lock_release is only a release barrier. */
7731 if ((model
& MEMMODEL_MASK
) == MEMMODEL_SEQ_CST
)
7732 expand_mem_thread_fence (model
);
7738 /* If the size of the object is greater than word size on this target,
7739 a default store will not be atomic, Try a mem_exchange and throw away
7740 the result. If that doesn't work, don't do anything. */
7741 if (GET_MODE_PRECISION (mode
) > BITS_PER_WORD
)
7743 rtx target
= maybe_emit_atomic_exchange (NULL_RTX
, mem
, val
, model
);
7745 target
= maybe_emit_compare_and_swap_exchange_loop (NULL_RTX
, mem
, val
);
7752 /* Otherwise assume stores are atomic, and emit the proper barriers. */
7753 expand_mem_thread_fence (model
);
7755 emit_move_insn (mem
, val
);
7757 /* For SEQ_CST, also emit a barrier after the store. */
7758 if ((model
& MEMMODEL_MASK
) == MEMMODEL_SEQ_CST
)
7759 expand_mem_thread_fence (model
);
7765 /* Structure containing the pointers and values required to process the
7766 various forms of the atomic_fetch_op and atomic_op_fetch builtins. */
7768 struct atomic_op_functions
7770 direct_optab mem_fetch_before
;
7771 direct_optab mem_fetch_after
;
7772 direct_optab mem_no_result
;
7775 direct_optab no_result
;
7776 enum rtx_code reverse_code
;
7780 /* Fill in structure pointed to by OP with the various optab entries for an
7781 operation of type CODE. */
7784 get_atomic_op_for_code (struct atomic_op_functions
*op
, enum rtx_code code
)
7786 gcc_assert (op
!= NULL
);
7788 /* If SWITCHABLE_TARGET is defined, then subtargets can be switched
7789 in the source code during compilation, and the optab entries are not
7790 computable until runtime. Fill in the values at runtime. */
7794 op
->mem_fetch_before
= atomic_fetch_add_optab
;
7795 op
->mem_fetch_after
= atomic_add_fetch_optab
;
7796 op
->mem_no_result
= atomic_add_optab
;
7797 op
->fetch_before
= sync_old_add_optab
;
7798 op
->fetch_after
= sync_new_add_optab
;
7799 op
->no_result
= sync_add_optab
;
7800 op
->reverse_code
= MINUS
;
7803 op
->mem_fetch_before
= atomic_fetch_sub_optab
;
7804 op
->mem_fetch_after
= atomic_sub_fetch_optab
;
7805 op
->mem_no_result
= atomic_sub_optab
;
7806 op
->fetch_before
= sync_old_sub_optab
;
7807 op
->fetch_after
= sync_new_sub_optab
;
7808 op
->no_result
= sync_sub_optab
;
7809 op
->reverse_code
= PLUS
;
7812 op
->mem_fetch_before
= atomic_fetch_xor_optab
;
7813 op
->mem_fetch_after
= atomic_xor_fetch_optab
;
7814 op
->mem_no_result
= atomic_xor_optab
;
7815 op
->fetch_before
= sync_old_xor_optab
;
7816 op
->fetch_after
= sync_new_xor_optab
;
7817 op
->no_result
= sync_xor_optab
;
7818 op
->reverse_code
= XOR
;
7821 op
->mem_fetch_before
= atomic_fetch_and_optab
;
7822 op
->mem_fetch_after
= atomic_and_fetch_optab
;
7823 op
->mem_no_result
= atomic_and_optab
;
7824 op
->fetch_before
= sync_old_and_optab
;
7825 op
->fetch_after
= sync_new_and_optab
;
7826 op
->no_result
= sync_and_optab
;
7827 op
->reverse_code
= UNKNOWN
;
7830 op
->mem_fetch_before
= atomic_fetch_or_optab
;
7831 op
->mem_fetch_after
= atomic_or_fetch_optab
;
7832 op
->mem_no_result
= atomic_or_optab
;
7833 op
->fetch_before
= sync_old_ior_optab
;
7834 op
->fetch_after
= sync_new_ior_optab
;
7835 op
->no_result
= sync_ior_optab
;
7836 op
->reverse_code
= UNKNOWN
;
7839 op
->mem_fetch_before
= atomic_fetch_nand_optab
;
7840 op
->mem_fetch_after
= atomic_nand_fetch_optab
;
7841 op
->mem_no_result
= atomic_nand_optab
;
7842 op
->fetch_before
= sync_old_nand_optab
;
7843 op
->fetch_after
= sync_new_nand_optab
;
7844 op
->no_result
= sync_nand_optab
;
7845 op
->reverse_code
= UNKNOWN
;
7852 /* See if there is a more optimal way to implement the operation "*MEM CODE VAL"
7853 using memory order MODEL. If AFTER is true the operation needs to return
7854 the value of *MEM after the operation, otherwise the previous value.
7855 TARGET is an optional place to place the result. The result is unused if
7857 Return the result if there is a better sequence, otherwise NULL_RTX. */
7860 maybe_optimize_fetch_op (rtx target
, rtx mem
, rtx val
, enum rtx_code code
,
7861 enum memmodel model
, bool after
)
7863 /* If the value is prefetched, or not used, it may be possible to replace
7864 the sequence with a native exchange operation. */
7865 if (!after
|| target
== const0_rtx
)
7867 /* fetch_and (&x, 0, m) can be replaced with exchange (&x, 0, m). */
7868 if (code
== AND
&& val
== const0_rtx
)
7870 if (target
== const0_rtx
)
7871 target
= gen_reg_rtx (GET_MODE (mem
));
7872 return maybe_emit_atomic_exchange (target
, mem
, val
, model
);
7875 /* fetch_or (&x, -1, m) can be replaced with exchange (&x, -1, m). */
7876 if (code
== IOR
&& val
== constm1_rtx
)
7878 if (target
== const0_rtx
)
7879 target
= gen_reg_rtx (GET_MODE (mem
));
7880 return maybe_emit_atomic_exchange (target
, mem
, val
, model
);
7887 /* Try to emit an instruction for a specific operation varaition.
7888 OPTAB contains the OP functions.
7889 TARGET is an optional place to return the result. const0_rtx means unused.
7890 MEM is the memory location to operate on.
7891 VAL is the value to use in the operation.
7892 USE_MEMMODEL is TRUE if the variation with a memory model should be tried.
7893 MODEL is the memory model, if used.
7894 AFTER is true if the returned result is the value after the operation. */
7897 maybe_emit_op (const struct atomic_op_functions
*optab
, rtx target
, rtx mem
,
7898 rtx val
, bool use_memmodel
, enum memmodel model
, bool after
)
7900 machine_mode mode
= GET_MODE (mem
);
7901 struct expand_operand ops
[4];
7902 enum insn_code icode
;
7906 /* Check to see if there is a result returned. */
7907 if (target
== const0_rtx
)
7911 icode
= direct_optab_handler (optab
->mem_no_result
, mode
);
7912 create_integer_operand (&ops
[2], model
);
7917 icode
= direct_optab_handler (optab
->no_result
, mode
);
7921 /* Otherwise, we need to generate a result. */
7926 icode
= direct_optab_handler (after
? optab
->mem_fetch_after
7927 : optab
->mem_fetch_before
, mode
);
7928 create_integer_operand (&ops
[3], model
);
7933 icode
= optab_handler (after
? optab
->fetch_after
7934 : optab
->fetch_before
, mode
);
7937 create_output_operand (&ops
[op_counter
++], target
, mode
);
7939 if (icode
== CODE_FOR_nothing
)
7942 create_fixed_operand (&ops
[op_counter
++], mem
);
7943 /* VAL may have been promoted to a wider mode. Shrink it if so. */
7944 create_convert_operand_to (&ops
[op_counter
++], val
, mode
, true);
7946 if (maybe_expand_insn (icode
, num_ops
, ops
))
7947 return (target
== const0_rtx
? const0_rtx
: ops
[0].value
);
7953 /* This function expands an atomic fetch_OP or OP_fetch operation:
7954 TARGET is an option place to stick the return value. const0_rtx indicates
7955 the result is unused.
7956 atomically fetch MEM, perform the operation with VAL and return it to MEM.
7957 CODE is the operation being performed (OP)
7958 MEMMODEL is the memory model variant to use.
7959 AFTER is true to return the result of the operation (OP_fetch).
7960 AFTER is false to return the value before the operation (fetch_OP).
7962 This function will *only* generate instructions if there is a direct
7963 optab. No compare and swap loops or libcalls will be generated. */
7966 expand_atomic_fetch_op_no_fallback (rtx target
, rtx mem
, rtx val
,
7967 enum rtx_code code
, enum memmodel model
,
7970 machine_mode mode
= GET_MODE (mem
);
7971 struct atomic_op_functions optab
;
7973 bool unused_result
= (target
== const0_rtx
);
7975 get_atomic_op_for_code (&optab
, code
);
7977 /* Check to see if there are any better instructions. */
7978 result
= maybe_optimize_fetch_op (target
, mem
, val
, code
, model
, after
);
7982 /* Check for the case where the result isn't used and try those patterns. */
7985 /* Try the memory model variant first. */
7986 result
= maybe_emit_op (&optab
, target
, mem
, val
, true, model
, true);
7990 /* Next try the old style withuot a memory model. */
7991 result
= maybe_emit_op (&optab
, target
, mem
, val
, false, model
, true);
7995 /* There is no no-result pattern, so try patterns with a result. */
7999 /* Try the __atomic version. */
8000 result
= maybe_emit_op (&optab
, target
, mem
, val
, true, model
, after
);
8004 /* Try the older __sync version. */
8005 result
= maybe_emit_op (&optab
, target
, mem
, val
, false, model
, after
);
8009 /* If the fetch value can be calculated from the other variation of fetch,
8010 try that operation. */
8011 if (after
|| unused_result
|| optab
.reverse_code
!= UNKNOWN
)
8013 /* Try the __atomic version, then the older __sync version. */
8014 result
= maybe_emit_op (&optab
, target
, mem
, val
, true, model
, !after
);
8016 result
= maybe_emit_op (&optab
, target
, mem
, val
, false, model
, !after
);
8020 /* If the result isn't used, no need to do compensation code. */
8024 /* Issue compensation code. Fetch_after == fetch_before OP val.
8025 Fetch_before == after REVERSE_OP val. */
8027 code
= optab
.reverse_code
;
8030 result
= expand_simple_binop (mode
, AND
, result
, val
, NULL_RTX
,
8031 true, OPTAB_LIB_WIDEN
);
8032 result
= expand_simple_unop (mode
, NOT
, result
, target
, true);
8035 result
= expand_simple_binop (mode
, code
, result
, val
, target
,
8036 true, OPTAB_LIB_WIDEN
);
8041 /* No direct opcode can be generated. */
8047 /* This function expands an atomic fetch_OP or OP_fetch operation:
8048 TARGET is an option place to stick the return value. const0_rtx indicates
8049 the result is unused.
8050 atomically fetch MEM, perform the operation with VAL and return it to MEM.
8051 CODE is the operation being performed (OP)
8052 MEMMODEL is the memory model variant to use.
8053 AFTER is true to return the result of the operation (OP_fetch).
8054 AFTER is false to return the value before the operation (fetch_OP). */
8056 expand_atomic_fetch_op (rtx target
, rtx mem
, rtx val
, enum rtx_code code
,
8057 enum memmodel model
, bool after
)
8059 machine_mode mode
= GET_MODE (mem
);
8061 bool unused_result
= (target
== const0_rtx
);
8063 result
= expand_atomic_fetch_op_no_fallback (target
, mem
, val
, code
, model
,
8069 /* Add/sub can be implemented by doing the reverse operation with -(val). */
8070 if (code
== PLUS
|| code
== MINUS
)
8073 enum rtx_code reverse
= (code
== PLUS
? MINUS
: PLUS
);
8076 tmp
= expand_simple_unop (mode
, NEG
, val
, NULL_RTX
, true);
8077 result
= expand_atomic_fetch_op_no_fallback (target
, mem
, tmp
, reverse
,
8081 /* PLUS worked so emit the insns and return. */
8088 /* PLUS did not work, so throw away the negation code and continue. */
8092 /* Try the __sync libcalls only if we can't do compare-and-swap inline. */
8093 if (!can_compare_and_swap_p (mode
, false))
8097 enum rtx_code orig_code
= code
;
8098 struct atomic_op_functions optab
;
8100 get_atomic_op_for_code (&optab
, code
);
8101 libfunc
= optab_libfunc (after
? optab
.fetch_after
8102 : optab
.fetch_before
, mode
);
8104 && (after
|| unused_result
|| optab
.reverse_code
!= UNKNOWN
))
8108 code
= optab
.reverse_code
;
8109 libfunc
= optab_libfunc (after
? optab
.fetch_before
8110 : optab
.fetch_after
, mode
);
8112 if (libfunc
!= NULL
)
8114 rtx addr
= convert_memory_address (ptr_mode
, XEXP (mem
, 0));
8115 result
= emit_library_call_value (libfunc
, NULL
, LCT_NORMAL
, mode
,
8116 2, addr
, ptr_mode
, val
, mode
);
8118 if (!unused_result
&& fixup
)
8119 result
= expand_simple_binop (mode
, code
, result
, val
, target
,
8120 true, OPTAB_LIB_WIDEN
);
8124 /* We need the original code for any further attempts. */
8128 /* If nothing else has succeeded, default to a compare and swap loop. */
8129 if (can_compare_and_swap_p (mode
, true))
8132 rtx t0
= gen_reg_rtx (mode
), t1
;
8136 /* If the result is used, get a register for it. */
8139 if (!target
|| !register_operand (target
, mode
))
8140 target
= gen_reg_rtx (mode
);
8141 /* If fetch_before, copy the value now. */
8143 emit_move_insn (target
, t0
);
8146 target
= const0_rtx
;
8151 t1
= expand_simple_binop (mode
, AND
, t1
, val
, NULL_RTX
,
8152 true, OPTAB_LIB_WIDEN
);
8153 t1
= expand_simple_unop (mode
, code
, t1
, NULL_RTX
, true);
8156 t1
= expand_simple_binop (mode
, code
, t1
, val
, NULL_RTX
, true,
8159 /* For after, copy the value now. */
8160 if (!unused_result
&& after
)
8161 emit_move_insn (target
, t1
);
8162 insn
= get_insns ();
8165 if (t1
!= NULL
&& expand_compare_and_swap_loop (mem
, t0
, t1
, insn
))
8172 /* Return true if OPERAND is suitable for operand number OPNO of
8173 instruction ICODE. */
8176 insn_operand_matches (enum insn_code icode
, unsigned int opno
, rtx operand
)
8178 return (!insn_data
[(int) icode
].operand
[opno
].predicate
8179 || (insn_data
[(int) icode
].operand
[opno
].predicate
8180 (operand
, insn_data
[(int) icode
].operand
[opno
].mode
)));
8183 /* TARGET is a target of a multiword operation that we are going to
8184 implement as a series of word-mode operations. Return true if
8185 TARGET is suitable for this purpose. */
8188 valid_multiword_target_p (rtx target
)
8193 mode
= GET_MODE (target
);
8194 for (i
= 0; i
< GET_MODE_SIZE (mode
); i
+= UNITS_PER_WORD
)
8195 if (!validate_subreg (word_mode
, mode
, target
, i
))
8200 /* Like maybe_legitimize_operand, but do not change the code of the
8201 current rtx value. */
8204 maybe_legitimize_operand_same_code (enum insn_code icode
, unsigned int opno
,
8205 struct expand_operand
*op
)
8207 /* See if the operand matches in its current form. */
8208 if (insn_operand_matches (icode
, opno
, op
->value
))
8211 /* If the operand is a memory whose address has no side effects,
8212 try forcing the address into a non-virtual pseudo register.
8213 The check for side effects is important because copy_to_mode_reg
8214 cannot handle things like auto-modified addresses. */
8215 if (insn_data
[(int) icode
].operand
[opno
].allows_mem
&& MEM_P (op
->value
))
8220 addr
= XEXP (mem
, 0);
8221 if (!(REG_P (addr
) && REGNO (addr
) > LAST_VIRTUAL_REGISTER
)
8222 && !side_effects_p (addr
))
8227 last
= get_last_insn ();
8228 mode
= get_address_mode (mem
);
8229 mem
= replace_equiv_address (mem
, copy_to_mode_reg (mode
, addr
));
8230 if (insn_operand_matches (icode
, opno
, mem
))
8235 delete_insns_since (last
);
8242 /* Try to make OP match operand OPNO of instruction ICODE. Return true
8243 on success, storing the new operand value back in OP. */
8246 maybe_legitimize_operand (enum insn_code icode
, unsigned int opno
,
8247 struct expand_operand
*op
)
8249 machine_mode mode
, imode
;
8250 bool old_volatile_ok
, result
;
8256 old_volatile_ok
= volatile_ok
;
8258 result
= maybe_legitimize_operand_same_code (icode
, opno
, op
);
8259 volatile_ok
= old_volatile_ok
;
8263 gcc_assert (mode
!= VOIDmode
);
8265 && op
->value
!= const0_rtx
8266 && GET_MODE (op
->value
) == mode
8267 && maybe_legitimize_operand_same_code (icode
, opno
, op
))
8270 op
->value
= gen_reg_rtx (mode
);
8275 gcc_assert (mode
!= VOIDmode
);
8276 gcc_assert (GET_MODE (op
->value
) == VOIDmode
8277 || GET_MODE (op
->value
) == mode
);
8278 if (maybe_legitimize_operand_same_code (icode
, opno
, op
))
8281 op
->value
= copy_to_mode_reg (mode
, op
->value
);
8284 case EXPAND_CONVERT_TO
:
8285 gcc_assert (mode
!= VOIDmode
);
8286 op
->value
= convert_to_mode (mode
, op
->value
, op
->unsigned_p
);
8289 case EXPAND_CONVERT_FROM
:
8290 if (GET_MODE (op
->value
) != VOIDmode
)
8291 mode
= GET_MODE (op
->value
);
8293 /* The caller must tell us what mode this value has. */
8294 gcc_assert (mode
!= VOIDmode
);
8296 imode
= insn_data
[(int) icode
].operand
[opno
].mode
;
8297 if (imode
!= VOIDmode
&& imode
!= mode
)
8299 op
->value
= convert_modes (imode
, mode
, op
->value
, op
->unsigned_p
);
8304 case EXPAND_ADDRESS
:
8305 gcc_assert (mode
!= VOIDmode
);
8306 op
->value
= convert_memory_address (mode
, op
->value
);
8309 case EXPAND_INTEGER
:
8310 mode
= insn_data
[(int) icode
].operand
[opno
].mode
;
8311 if (mode
!= VOIDmode
&& const_int_operand (op
->value
, mode
))
8315 return insn_operand_matches (icode
, opno
, op
->value
);
8318 /* Make OP describe an input operand that should have the same value
8319 as VALUE, after any mode conversion that the target might request.
8320 TYPE is the type of VALUE. */
8323 create_convert_operand_from_type (struct expand_operand
*op
,
8324 rtx value
, tree type
)
8326 create_convert_operand_from (op
, value
, TYPE_MODE (type
),
8327 TYPE_UNSIGNED (type
));
8330 /* Try to make operands [OPS, OPS + NOPS) match operands [OPNO, OPNO + NOPS)
8331 of instruction ICODE. Return true on success, leaving the new operand
8332 values in the OPS themselves. Emit no code on failure. */
8335 maybe_legitimize_operands (enum insn_code icode
, unsigned int opno
,
8336 unsigned int nops
, struct expand_operand
*ops
)
8341 last
= get_last_insn ();
8342 for (i
= 0; i
< nops
; i
++)
8343 if (!maybe_legitimize_operand (icode
, opno
+ i
, &ops
[i
]))
8345 delete_insns_since (last
);
8351 /* Try to generate instruction ICODE, using operands [OPS, OPS + NOPS)
8352 as its operands. Return the instruction pattern on success,
8353 and emit any necessary set-up code. Return null and emit no
8357 maybe_gen_insn (enum insn_code icode
, unsigned int nops
,
8358 struct expand_operand
*ops
)
8360 gcc_assert (nops
== (unsigned int) insn_data
[(int) icode
].n_generator_args
);
8361 if (!maybe_legitimize_operands (icode
, 0, nops
, ops
))
8367 return GEN_FCN (icode
) (ops
[0].value
);
8369 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
);
8371 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
, ops
[2].value
);
8373 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
, ops
[2].value
,
8376 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
, ops
[2].value
,
8377 ops
[3].value
, ops
[4].value
);
8379 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
, ops
[2].value
,
8380 ops
[3].value
, ops
[4].value
, ops
[5].value
);
8382 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
, ops
[2].value
,
8383 ops
[3].value
, ops
[4].value
, ops
[5].value
,
8386 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
, ops
[2].value
,
8387 ops
[3].value
, ops
[4].value
, ops
[5].value
,
8388 ops
[6].value
, ops
[7].value
);
8390 return GEN_FCN (icode
) (ops
[0].value
, ops
[1].value
, ops
[2].value
,
8391 ops
[3].value
, ops
[4].value
, ops
[5].value
,
8392 ops
[6].value
, ops
[7].value
, ops
[8].value
);
8397 /* Try to emit instruction ICODE, using operands [OPS, OPS + NOPS)
8398 as its operands. Return true on success and emit no code on failure. */
8401 maybe_expand_insn (enum insn_code icode
, unsigned int nops
,
8402 struct expand_operand
*ops
)
8404 rtx pat
= maybe_gen_insn (icode
, nops
, ops
);
8413 /* Like maybe_expand_insn, but for jumps. */
8416 maybe_expand_jump_insn (enum insn_code icode
, unsigned int nops
,
8417 struct expand_operand
*ops
)
8419 rtx pat
= maybe_gen_insn (icode
, nops
, ops
);
8422 emit_jump_insn (pat
);
8428 /* Emit instruction ICODE, using operands [OPS, OPS + NOPS)
8432 expand_insn (enum insn_code icode
, unsigned int nops
,
8433 struct expand_operand
*ops
)
8435 if (!maybe_expand_insn (icode
, nops
, ops
))
8439 /* Like expand_insn, but for jumps. */
8442 expand_jump_insn (enum insn_code icode
, unsigned int nops
,
8443 struct expand_operand
*ops
)
8445 if (!maybe_expand_jump_insn (icode
, nops
, ops
))
8449 /* Reduce conditional compilation elsewhere. */
8452 #define CODE_FOR_insv CODE_FOR_nothing
8456 #define CODE_FOR_extv CODE_FOR_nothing
8459 #define HAVE_extzv 0
8460 #define CODE_FOR_extzv CODE_FOR_nothing
8463 /* Enumerates the possible types of structure operand to an
8465 enum extraction_type
{ ET_unaligned_mem
, ET_reg
};
8467 /* Check whether insv, extv or extzv pattern ICODE can be used for an
8468 insertion or extraction of type TYPE on a structure of mode MODE.
8469 Return true if so and fill in *INSN accordingly. STRUCT_OP is the
8470 operand number of the structure (the first sign_extract or zero_extract
8471 operand) and FIELD_OP is the operand number of the field (the other
8472 side of the set from the sign_extract or zero_extract). */
8475 get_traditional_extraction_insn (extraction_insn
*insn
,
8476 enum extraction_type type
,
8478 enum insn_code icode
,
8479 int struct_op
, int field_op
)
8481 const struct insn_data_d
*data
= &insn_data
[icode
];
8483 machine_mode struct_mode
= data
->operand
[struct_op
].mode
;
8484 if (struct_mode
== VOIDmode
)
8485 struct_mode
= word_mode
;
8486 if (mode
!= struct_mode
)
8489 machine_mode field_mode
= data
->operand
[field_op
].mode
;
8490 if (field_mode
== VOIDmode
)
8491 field_mode
= word_mode
;
8493 machine_mode pos_mode
= data
->operand
[struct_op
+ 2].mode
;
8494 if (pos_mode
== VOIDmode
)
8495 pos_mode
= word_mode
;
8497 insn
->icode
= icode
;
8498 insn
->field_mode
= field_mode
;
8499 insn
->struct_mode
= (type
== ET_unaligned_mem
? byte_mode
: struct_mode
);
8500 insn
->pos_mode
= pos_mode
;
8504 /* Return true if an optab exists to perform an insertion or extraction
8505 of type TYPE in mode MODE. Describe the instruction in *INSN if so.
8507 REG_OPTAB is the optab to use for register structures and
8508 MISALIGN_OPTAB is the optab to use for misaligned memory structures.
8509 POS_OP is the operand number of the bit position. */
8512 get_optab_extraction_insn (struct extraction_insn
*insn
,
8513 enum extraction_type type
,
8514 machine_mode mode
, direct_optab reg_optab
,
8515 direct_optab misalign_optab
, int pos_op
)
8517 direct_optab optab
= (type
== ET_unaligned_mem
? misalign_optab
: reg_optab
);
8518 enum insn_code icode
= direct_optab_handler (optab
, mode
);
8519 if (icode
== CODE_FOR_nothing
)
8522 const struct insn_data_d
*data
= &insn_data
[icode
];
8524 insn
->icode
= icode
;
8525 insn
->field_mode
= mode
;
8526 insn
->struct_mode
= (type
== ET_unaligned_mem
? BLKmode
: mode
);
8527 insn
->pos_mode
= data
->operand
[pos_op
].mode
;
8528 if (insn
->pos_mode
== VOIDmode
)
8529 insn
->pos_mode
= word_mode
;
8533 /* Return true if an instruction exists to perform an insertion or
8534 extraction (PATTERN says which) of type TYPE in mode MODE.
8535 Describe the instruction in *INSN if so. */
8538 get_extraction_insn (extraction_insn
*insn
,
8539 enum extraction_pattern pattern
,
8540 enum extraction_type type
,
8547 && get_traditional_extraction_insn (insn
, type
, mode
,
8548 CODE_FOR_insv
, 0, 3))
8550 return get_optab_extraction_insn (insn
, type
, mode
, insv_optab
,
8551 insvmisalign_optab
, 2);
8555 && get_traditional_extraction_insn (insn
, type
, mode
,
8556 CODE_FOR_extv
, 1, 0))
8558 return get_optab_extraction_insn (insn
, type
, mode
, extv_optab
,
8559 extvmisalign_optab
, 3);
8563 && get_traditional_extraction_insn (insn
, type
, mode
,
8564 CODE_FOR_extzv
, 1, 0))
8566 return get_optab_extraction_insn (insn
, type
, mode
, extzv_optab
,
8567 extzvmisalign_optab
, 3);
8574 /* Return true if an instruction exists to access a field of mode
8575 FIELDMODE in a structure that has STRUCT_BITS significant bits.
8576 Describe the "best" such instruction in *INSN if so. PATTERN and
8577 TYPE describe the type of insertion or extraction we want to perform.
8579 For an insertion, the number of significant structure bits includes
8580 all bits of the target. For an extraction, it need only include the
8581 most significant bit of the field. Larger widths are acceptable
8585 get_best_extraction_insn (extraction_insn
*insn
,
8586 enum extraction_pattern pattern
,
8587 enum extraction_type type
,
8588 unsigned HOST_WIDE_INT struct_bits
,
8589 machine_mode field_mode
)
8591 machine_mode mode
= smallest_mode_for_size (struct_bits
, MODE_INT
);
8592 while (mode
!= VOIDmode
)
8594 if (get_extraction_insn (insn
, pattern
, type
, mode
))
8596 while (mode
!= VOIDmode
8597 && GET_MODE_SIZE (mode
) <= GET_MODE_SIZE (field_mode
)
8598 && !TRULY_NOOP_TRUNCATION_MODES_P (insn
->field_mode
,
8601 get_extraction_insn (insn
, pattern
, type
, mode
);
8602 mode
= GET_MODE_WIDER_MODE (mode
);
8606 mode
= GET_MODE_WIDER_MODE (mode
);
8611 /* Return true if an instruction exists to access a field of mode
8612 FIELDMODE in a register structure that has STRUCT_BITS significant bits.
8613 Describe the "best" such instruction in *INSN if so. PATTERN describes
8614 the type of insertion or extraction we want to perform.
8616 For an insertion, the number of significant structure bits includes
8617 all bits of the target. For an extraction, it need only include the
8618 most significant bit of the field. Larger widths are acceptable
8622 get_best_reg_extraction_insn (extraction_insn
*insn
,
8623 enum extraction_pattern pattern
,
8624 unsigned HOST_WIDE_INT struct_bits
,
8625 machine_mode field_mode
)
8627 return get_best_extraction_insn (insn
, pattern
, ET_reg
, struct_bits
,
8631 /* Return true if an instruction exists to access a field of BITSIZE
8632 bits starting BITNUM bits into a memory structure. Describe the
8633 "best" such instruction in *INSN if so. PATTERN describes the type
8634 of insertion or extraction we want to perform and FIELDMODE is the
8635 natural mode of the extracted field.
8637 The instructions considered here only access bytes that overlap
8638 the bitfield; they do not touch any surrounding bytes. */
8641 get_best_mem_extraction_insn (extraction_insn
*insn
,
8642 enum extraction_pattern pattern
,
8643 HOST_WIDE_INT bitsize
, HOST_WIDE_INT bitnum
,
8644 machine_mode field_mode
)
8646 unsigned HOST_WIDE_INT struct_bits
= (bitnum
% BITS_PER_UNIT
8648 + BITS_PER_UNIT
- 1);
8649 struct_bits
-= struct_bits
% BITS_PER_UNIT
;
8650 return get_best_extraction_insn (insn
, pattern
, ET_unaligned_mem
,
8651 struct_bits
, field_mode
);
8654 /* Determine whether "1 << x" is relatively cheap in word_mode. */
8657 lshift_cheap_p (bool speed_p
)
8659 /* FIXME: This should be made target dependent via this "this_target"
8660 mechanism, similar to e.g. can_copy_init_p in gcse.c. */
8661 static bool init
[2] = { false, false };
8662 static bool cheap
[2] = { true, true };
8664 /* If the targer has no lshift in word_mode, the operation will most
8665 probably not be cheap. ??? Does GCC even work for such targets? */
8666 if (optab_handler (ashl_optab
, word_mode
) == CODE_FOR_nothing
)
8671 rtx reg
= gen_raw_REG (word_mode
, 10000);
8672 int cost
= set_src_cost (gen_rtx_ASHIFT (word_mode
, const1_rtx
, reg
),
8674 cheap
[speed_p
] = cost
< COSTS_N_INSNS (3);
8675 init
[speed_p
] = true;
8678 return cheap
[speed_p
];
8681 #include "gt-optabs.h"