1 /* Convert tree expression to rtl instructions, for GNU compiler.
2 Copyright (C) 1988-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/>. */
22 #include "coretypes.h"
27 #include "stringpool.h"
28 #include "stor-layout.h"
33 #include "hard-reg-set.h"
36 #include "insn-config.h"
37 #include "insn-attr.h"
38 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
44 #include "typeclass.h"
46 #include "langhooks.h"
49 #include "tree-iterator.h"
50 #include "basic-block.h"
51 #include "tree-ssa-alias.h"
52 #include "internal-fn.h"
53 #include "gimple-expr.h"
56 #include "gimple-ssa.h"
58 #include "tree-ssanames.h"
60 #include "common/common-target.h"
63 #include "diagnostic.h"
64 #include "tree-ssa-live.h"
65 #include "tree-outof-ssa.h"
66 #include "target-globals.h"
68 #include "tree-ssa-address.h"
69 #include "cfgexpand.h"
72 #ifndef STACK_PUSH_CODE
73 #ifdef STACK_GROWS_DOWNWARD
74 #define STACK_PUSH_CODE PRE_DEC
76 #define STACK_PUSH_CODE PRE_INC
81 /* If this is nonzero, we do not bother generating VOLATILE
82 around volatile memory references, and we are willing to
83 output indirect addresses. If cse is to follow, we reject
84 indirect addresses so a useful potential cse is generated;
85 if it is used only once, instruction combination will produce
86 the same indirect address eventually. */
89 /* This structure is used by move_by_pieces to describe the move to
91 struct move_by_pieces_d
100 int explicit_inc_from
;
101 unsigned HOST_WIDE_INT len
;
102 HOST_WIDE_INT offset
;
106 /* This structure is used by store_by_pieces to describe the clear to
109 struct store_by_pieces_d
115 unsigned HOST_WIDE_INT len
;
116 HOST_WIDE_INT offset
;
117 rtx (*constfun
) (void *, HOST_WIDE_INT
, enum machine_mode
);
122 static void move_by_pieces_1 (insn_gen_fn
, machine_mode
,
123 struct move_by_pieces_d
*);
124 static bool block_move_libcall_safe_for_call_parm (void);
125 static bool emit_block_move_via_movmem (rtx
, rtx
, rtx
, unsigned, unsigned, HOST_WIDE_INT
,
126 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
,
127 unsigned HOST_WIDE_INT
);
128 static tree
emit_block_move_libcall_fn (int);
129 static void emit_block_move_via_loop (rtx
, rtx
, rtx
, unsigned);
130 static rtx
clear_by_pieces_1 (void *, HOST_WIDE_INT
, enum machine_mode
);
131 static void clear_by_pieces (rtx
, unsigned HOST_WIDE_INT
, unsigned int);
132 static void store_by_pieces_1 (struct store_by_pieces_d
*, unsigned int);
133 static void store_by_pieces_2 (insn_gen_fn
, machine_mode
,
134 struct store_by_pieces_d
*);
135 static tree
clear_storage_libcall_fn (int);
136 static rtx
compress_float_constant (rtx
, rtx
);
137 static rtx
get_subtarget (rtx
);
138 static void store_constructor_field (rtx
, unsigned HOST_WIDE_INT
,
139 HOST_WIDE_INT
, enum machine_mode
,
140 tree
, int, alias_set_type
);
141 static void store_constructor (tree
, rtx
, int, HOST_WIDE_INT
);
142 static rtx
store_field (rtx
, HOST_WIDE_INT
, HOST_WIDE_INT
,
143 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
,
144 enum machine_mode
, tree
, alias_set_type
, bool);
146 static unsigned HOST_WIDE_INT
highest_pow2_factor_for_target (const_tree
, const_tree
);
148 static int is_aligning_offset (const_tree
, const_tree
);
149 static void expand_operands (tree
, tree
, rtx
, rtx
*, rtx
*,
150 enum expand_modifier
);
151 static rtx
reduce_to_bit_field_precision (rtx
, rtx
, tree
);
152 static rtx
do_store_flag (sepops
, rtx
, enum machine_mode
);
154 static void emit_single_push_insn (enum machine_mode
, rtx
, tree
);
156 static void do_tablejump (rtx
, enum machine_mode
, rtx
, rtx
, rtx
, int);
157 static rtx
const_vector_from_tree (tree
);
158 static void write_complex_part (rtx
, rtx
, bool);
160 /* This macro is used to determine whether move_by_pieces should be called
161 to perform a structure copy. */
162 #ifndef MOVE_BY_PIECES_P
163 #define MOVE_BY_PIECES_P(SIZE, ALIGN) \
164 (move_by_pieces_ninsns (SIZE, ALIGN, MOVE_MAX_PIECES + 1) \
165 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
168 /* This macro is used to determine whether clear_by_pieces should be
169 called to clear storage. */
170 #ifndef CLEAR_BY_PIECES_P
171 #define CLEAR_BY_PIECES_P(SIZE, ALIGN) \
172 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
173 < (unsigned int) CLEAR_RATIO (optimize_insn_for_speed_p ()))
176 /* This macro is used to determine whether store_by_pieces should be
177 called to "memset" storage with byte values other than zero. */
178 #ifndef SET_BY_PIECES_P
179 #define SET_BY_PIECES_P(SIZE, ALIGN) \
180 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
181 < (unsigned int) SET_RATIO (optimize_insn_for_speed_p ()))
184 /* This macro is used to determine whether store_by_pieces should be
185 called to "memcpy" storage when the source is a constant string. */
186 #ifndef STORE_BY_PIECES_P
187 #define STORE_BY_PIECES_P(SIZE, ALIGN) \
188 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
189 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
192 /* This is run to set up which modes can be used
193 directly in memory and to initialize the block move optab. It is run
194 at the beginning of compilation and when the target is reinitialized. */
197 init_expr_target (void)
200 enum machine_mode mode
;
205 /* Try indexing by frame ptr and try by stack ptr.
206 It is known that on the Convex the stack ptr isn't a valid index.
207 With luck, one or the other is valid on any machine. */
208 mem
= gen_rtx_MEM (VOIDmode
, stack_pointer_rtx
);
209 mem1
= gen_rtx_MEM (VOIDmode
, frame_pointer_rtx
);
211 /* A scratch register we can modify in-place below to avoid
212 useless RTL allocations. */
213 reg
= gen_rtx_REG (VOIDmode
, -1);
215 insn
= rtx_alloc (INSN
);
216 pat
= gen_rtx_SET (VOIDmode
, NULL_RTX
, NULL_RTX
);
217 PATTERN (insn
) = pat
;
219 for (mode
= VOIDmode
; (int) mode
< NUM_MACHINE_MODES
;
220 mode
= (enum machine_mode
) ((int) mode
+ 1))
224 direct_load
[(int) mode
] = direct_store
[(int) mode
] = 0;
225 PUT_MODE (mem
, mode
);
226 PUT_MODE (mem1
, mode
);
227 PUT_MODE (reg
, mode
);
229 /* See if there is some register that can be used in this mode and
230 directly loaded or stored from memory. */
232 if (mode
!= VOIDmode
&& mode
!= BLKmode
)
233 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
234 && (direct_load
[(int) mode
] == 0 || direct_store
[(int) mode
] == 0);
237 if (! HARD_REGNO_MODE_OK (regno
, mode
))
240 SET_REGNO (reg
, regno
);
243 SET_DEST (pat
) = reg
;
244 if (recog (pat
, insn
, &num_clobbers
) >= 0)
245 direct_load
[(int) mode
] = 1;
247 SET_SRC (pat
) = mem1
;
248 SET_DEST (pat
) = reg
;
249 if (recog (pat
, insn
, &num_clobbers
) >= 0)
250 direct_load
[(int) mode
] = 1;
253 SET_DEST (pat
) = mem
;
254 if (recog (pat
, insn
, &num_clobbers
) >= 0)
255 direct_store
[(int) mode
] = 1;
258 SET_DEST (pat
) = mem1
;
259 if (recog (pat
, insn
, &num_clobbers
) >= 0)
260 direct_store
[(int) mode
] = 1;
264 mem
= gen_rtx_MEM (VOIDmode
, gen_rtx_raw_REG (Pmode
, 10000));
266 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); mode
!= VOIDmode
;
267 mode
= GET_MODE_WIDER_MODE (mode
))
269 enum machine_mode srcmode
;
270 for (srcmode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); srcmode
!= mode
;
271 srcmode
= GET_MODE_WIDER_MODE (srcmode
))
275 ic
= can_extend_p (mode
, srcmode
, 0);
276 if (ic
== CODE_FOR_nothing
)
279 PUT_MODE (mem
, srcmode
);
281 if (insn_operand_matches (ic
, 1, mem
))
282 float_extend_from_mem
[mode
][srcmode
] = true;
287 /* This is run at the start of compiling a function. */
292 memset (&crtl
->expr
, 0, sizeof (crtl
->expr
));
295 /* Copy data from FROM to TO, where the machine modes are not the same.
296 Both modes may be integer, or both may be floating, or both may be
298 UNSIGNEDP should be nonzero if FROM is an unsigned type.
299 This causes zero-extension instead of sign-extension. */
302 convert_move (rtx to
, rtx from
, int unsignedp
)
304 enum machine_mode to_mode
= GET_MODE (to
);
305 enum machine_mode from_mode
= GET_MODE (from
);
306 int to_real
= SCALAR_FLOAT_MODE_P (to_mode
);
307 int from_real
= SCALAR_FLOAT_MODE_P (from_mode
);
311 /* rtx code for making an equivalent value. */
312 enum rtx_code equiv_code
= (unsignedp
< 0 ? UNKNOWN
313 : (unsignedp
? ZERO_EXTEND
: SIGN_EXTEND
));
316 gcc_assert (to_real
== from_real
);
317 gcc_assert (to_mode
!= BLKmode
);
318 gcc_assert (from_mode
!= BLKmode
);
320 /* If the source and destination are already the same, then there's
325 /* If FROM is a SUBREG that indicates that we have already done at least
326 the required extension, strip it. We don't handle such SUBREGs as
329 if (GET_CODE (from
) == SUBREG
&& SUBREG_PROMOTED_VAR_P (from
)
330 && (GET_MODE_PRECISION (GET_MODE (SUBREG_REG (from
)))
331 >= GET_MODE_PRECISION (to_mode
))
332 && SUBREG_PROMOTED_UNSIGNED_P (from
) == unsignedp
)
333 from
= gen_lowpart (to_mode
, from
), from_mode
= to_mode
;
335 gcc_assert (GET_CODE (to
) != SUBREG
|| !SUBREG_PROMOTED_VAR_P (to
));
337 if (to_mode
== from_mode
338 || (from_mode
== VOIDmode
&& CONSTANT_P (from
)))
340 emit_move_insn (to
, from
);
344 if (VECTOR_MODE_P (to_mode
) || VECTOR_MODE_P (from_mode
))
346 gcc_assert (GET_MODE_BITSIZE (from_mode
) == GET_MODE_BITSIZE (to_mode
));
348 if (VECTOR_MODE_P (to_mode
))
349 from
= simplify_gen_subreg (to_mode
, from
, GET_MODE (from
), 0);
351 to
= simplify_gen_subreg (from_mode
, to
, GET_MODE (to
), 0);
353 emit_move_insn (to
, from
);
357 if (GET_CODE (to
) == CONCAT
&& GET_CODE (from
) == CONCAT
)
359 convert_move (XEXP (to
, 0), XEXP (from
, 0), unsignedp
);
360 convert_move (XEXP (to
, 1), XEXP (from
, 1), unsignedp
);
369 gcc_assert ((GET_MODE_PRECISION (from_mode
)
370 != GET_MODE_PRECISION (to_mode
))
371 || (DECIMAL_FLOAT_MODE_P (from_mode
)
372 != DECIMAL_FLOAT_MODE_P (to_mode
)));
374 if (GET_MODE_PRECISION (from_mode
) == GET_MODE_PRECISION (to_mode
))
375 /* Conversion between decimal float and binary float, same size. */
376 tab
= DECIMAL_FLOAT_MODE_P (from_mode
) ? trunc_optab
: sext_optab
;
377 else if (GET_MODE_PRECISION (from_mode
) < GET_MODE_PRECISION (to_mode
))
382 /* Try converting directly if the insn is supported. */
384 code
= convert_optab_handler (tab
, to_mode
, from_mode
);
385 if (code
!= CODE_FOR_nothing
)
387 emit_unop_insn (code
, to
, from
,
388 tab
== sext_optab
? FLOAT_EXTEND
: FLOAT_TRUNCATE
);
392 /* Otherwise use a libcall. */
393 libcall
= convert_optab_libfunc (tab
, to_mode
, from_mode
);
395 /* Is this conversion implemented yet? */
396 gcc_assert (libcall
);
399 value
= emit_library_call_value (libcall
, NULL_RTX
, LCT_CONST
, to_mode
,
401 insns
= get_insns ();
403 emit_libcall_block (insns
, to
, value
,
404 tab
== trunc_optab
? gen_rtx_FLOAT_TRUNCATE (to_mode
,
406 : gen_rtx_FLOAT_EXTEND (to_mode
, from
));
410 /* Handle pointer conversion. */ /* SPEE 900220. */
411 /* Targets are expected to provide conversion insns between PxImode and
412 xImode for all MODE_PARTIAL_INT modes they use, but no others. */
413 if (GET_MODE_CLASS (to_mode
) == MODE_PARTIAL_INT
)
415 enum machine_mode full_mode
416 = smallest_mode_for_size (GET_MODE_BITSIZE (to_mode
), MODE_INT
);
418 gcc_assert (convert_optab_handler (trunc_optab
, to_mode
, full_mode
)
419 != CODE_FOR_nothing
);
421 if (full_mode
!= from_mode
)
422 from
= convert_to_mode (full_mode
, from
, unsignedp
);
423 emit_unop_insn (convert_optab_handler (trunc_optab
, to_mode
, full_mode
),
427 if (GET_MODE_CLASS (from_mode
) == MODE_PARTIAL_INT
)
430 enum machine_mode full_mode
431 = smallest_mode_for_size (GET_MODE_BITSIZE (from_mode
), MODE_INT
);
432 convert_optab ctab
= unsignedp
? zext_optab
: sext_optab
;
433 enum insn_code icode
;
435 icode
= convert_optab_handler (ctab
, full_mode
, from_mode
);
436 gcc_assert (icode
!= CODE_FOR_nothing
);
438 if (to_mode
== full_mode
)
440 emit_unop_insn (icode
, to
, from
, UNKNOWN
);
444 new_from
= gen_reg_rtx (full_mode
);
445 emit_unop_insn (icode
, new_from
, from
, UNKNOWN
);
447 /* else proceed to integer conversions below. */
448 from_mode
= full_mode
;
452 /* Make sure both are fixed-point modes or both are not. */
453 gcc_assert (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode
) ==
454 ALL_SCALAR_FIXED_POINT_MODE_P (to_mode
));
455 if (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode
))
457 /* If we widen from_mode to to_mode and they are in the same class,
458 we won't saturate the result.
459 Otherwise, always saturate the result to play safe. */
460 if (GET_MODE_CLASS (from_mode
) == GET_MODE_CLASS (to_mode
)
461 && GET_MODE_SIZE (from_mode
) < GET_MODE_SIZE (to_mode
))
462 expand_fixed_convert (to
, from
, 0, 0);
464 expand_fixed_convert (to
, from
, 0, 1);
468 /* Now both modes are integers. */
470 /* Handle expanding beyond a word. */
471 if (GET_MODE_PRECISION (from_mode
) < GET_MODE_PRECISION (to_mode
)
472 && GET_MODE_PRECISION (to_mode
) > BITS_PER_WORD
)
479 enum machine_mode lowpart_mode
;
480 int nwords
= CEIL (GET_MODE_SIZE (to_mode
), UNITS_PER_WORD
);
482 /* Try converting directly if the insn is supported. */
483 if ((code
= can_extend_p (to_mode
, from_mode
, unsignedp
))
486 /* If FROM is a SUBREG, put it into a register. Do this
487 so that we always generate the same set of insns for
488 better cse'ing; if an intermediate assignment occurred,
489 we won't be doing the operation directly on the SUBREG. */
490 if (optimize
> 0 && GET_CODE (from
) == SUBREG
)
491 from
= force_reg (from_mode
, from
);
492 emit_unop_insn (code
, to
, from
, equiv_code
);
495 /* Next, try converting via full word. */
496 else if (GET_MODE_PRECISION (from_mode
) < BITS_PER_WORD
497 && ((code
= can_extend_p (to_mode
, word_mode
, unsignedp
))
498 != CODE_FOR_nothing
))
500 rtx word_to
= gen_reg_rtx (word_mode
);
503 if (reg_overlap_mentioned_p (to
, from
))
504 from
= force_reg (from_mode
, from
);
507 convert_move (word_to
, from
, unsignedp
);
508 emit_unop_insn (code
, to
, word_to
, equiv_code
);
512 /* No special multiword conversion insn; do it by hand. */
515 /* Since we will turn this into a no conflict block, we must ensure the
516 the source does not overlap the target so force it into an isolated
517 register when maybe so. Likewise for any MEM input, since the
518 conversion sequence might require several references to it and we
519 must ensure we're getting the same value every time. */
521 if (MEM_P (from
) || reg_overlap_mentioned_p (to
, from
))
522 from
= force_reg (from_mode
, from
);
524 /* Get a copy of FROM widened to a word, if necessary. */
525 if (GET_MODE_PRECISION (from_mode
) < BITS_PER_WORD
)
526 lowpart_mode
= word_mode
;
528 lowpart_mode
= from_mode
;
530 lowfrom
= convert_to_mode (lowpart_mode
, from
, unsignedp
);
532 lowpart
= gen_lowpart (lowpart_mode
, to
);
533 emit_move_insn (lowpart
, lowfrom
);
535 /* Compute the value to put in each remaining word. */
537 fill_value
= const0_rtx
;
539 fill_value
= emit_store_flag_force (gen_reg_rtx (word_mode
),
540 LT
, lowfrom
, const0_rtx
,
541 lowpart_mode
, 0, -1);
543 /* Fill the remaining words. */
544 for (i
= GET_MODE_SIZE (lowpart_mode
) / UNITS_PER_WORD
; i
< nwords
; i
++)
546 int index
= (WORDS_BIG_ENDIAN
? nwords
- i
- 1 : i
);
547 rtx subword
= operand_subword (to
, index
, 1, to_mode
);
549 gcc_assert (subword
);
551 if (fill_value
!= subword
)
552 emit_move_insn (subword
, fill_value
);
555 insns
= get_insns ();
562 /* Truncating multi-word to a word or less. */
563 if (GET_MODE_PRECISION (from_mode
) > BITS_PER_WORD
564 && GET_MODE_PRECISION (to_mode
) <= BITS_PER_WORD
)
567 && ! MEM_VOLATILE_P (from
)
568 && direct_load
[(int) to_mode
]
569 && ! mode_dependent_address_p (XEXP (from
, 0),
570 MEM_ADDR_SPACE (from
)))
572 || GET_CODE (from
) == SUBREG
))
573 from
= force_reg (from_mode
, from
);
574 convert_move (to
, gen_lowpart (word_mode
, from
), 0);
578 /* Now follow all the conversions between integers
579 no more than a word long. */
581 /* For truncation, usually we can just refer to FROM in a narrower mode. */
582 if (GET_MODE_BITSIZE (to_mode
) < GET_MODE_BITSIZE (from_mode
)
583 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode
, from_mode
))
586 && ! MEM_VOLATILE_P (from
)
587 && direct_load
[(int) to_mode
]
588 && ! mode_dependent_address_p (XEXP (from
, 0),
589 MEM_ADDR_SPACE (from
)))
591 || GET_CODE (from
) == SUBREG
))
592 from
= force_reg (from_mode
, from
);
593 if (REG_P (from
) && REGNO (from
) < FIRST_PSEUDO_REGISTER
594 && ! HARD_REGNO_MODE_OK (REGNO (from
), to_mode
))
595 from
= copy_to_reg (from
);
596 emit_move_insn (to
, gen_lowpart (to_mode
, from
));
600 /* Handle extension. */
601 if (GET_MODE_PRECISION (to_mode
) > GET_MODE_PRECISION (from_mode
))
603 /* Convert directly if that works. */
604 if ((code
= can_extend_p (to_mode
, from_mode
, unsignedp
))
607 emit_unop_insn (code
, to
, from
, equiv_code
);
612 enum machine_mode intermediate
;
616 /* Search for a mode to convert via. */
617 for (intermediate
= from_mode
; intermediate
!= VOIDmode
;
618 intermediate
= GET_MODE_WIDER_MODE (intermediate
))
619 if (((can_extend_p (to_mode
, intermediate
, unsignedp
)
621 || (GET_MODE_SIZE (to_mode
) < GET_MODE_SIZE (intermediate
)
622 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode
, intermediate
)))
623 && (can_extend_p (intermediate
, from_mode
, unsignedp
)
624 != CODE_FOR_nothing
))
626 convert_move (to
, convert_to_mode (intermediate
, from
,
627 unsignedp
), unsignedp
);
631 /* No suitable intermediate mode.
632 Generate what we need with shifts. */
633 shift_amount
= (GET_MODE_PRECISION (to_mode
)
634 - GET_MODE_PRECISION (from_mode
));
635 from
= gen_lowpart (to_mode
, force_reg (from_mode
, from
));
636 tmp
= expand_shift (LSHIFT_EXPR
, to_mode
, from
, shift_amount
,
638 tmp
= expand_shift (RSHIFT_EXPR
, to_mode
, tmp
, shift_amount
,
641 emit_move_insn (to
, tmp
);
646 /* Support special truncate insns for certain modes. */
647 if (convert_optab_handler (trunc_optab
, to_mode
,
648 from_mode
) != CODE_FOR_nothing
)
650 emit_unop_insn (convert_optab_handler (trunc_optab
, to_mode
, from_mode
),
655 /* Handle truncation of volatile memrefs, and so on;
656 the things that couldn't be truncated directly,
657 and for which there was no special instruction.
659 ??? Code above formerly short-circuited this, for most integer
660 mode pairs, with a force_reg in from_mode followed by a recursive
661 call to this routine. Appears always to have been wrong. */
662 if (GET_MODE_PRECISION (to_mode
) < GET_MODE_PRECISION (from_mode
))
664 rtx temp
= force_reg (to_mode
, gen_lowpart (to_mode
, from
));
665 emit_move_insn (to
, temp
);
669 /* Mode combination is not recognized. */
673 /* Return an rtx for a value that would result
674 from converting X to mode MODE.
675 Both X and MODE may be floating, or both integer.
676 UNSIGNEDP is nonzero if X is an unsigned value.
677 This can be done by referring to a part of X in place
678 or by copying to a new temporary with conversion. */
681 convert_to_mode (enum machine_mode mode
, rtx x
, int unsignedp
)
683 return convert_modes (mode
, VOIDmode
, x
, unsignedp
);
686 /* Return an rtx for a value that would result
687 from converting X from mode OLDMODE to mode MODE.
688 Both modes may be floating, or both integer.
689 UNSIGNEDP is nonzero if X is an unsigned value.
691 This can be done by referring to a part of X in place
692 or by copying to a new temporary with conversion.
694 You can give VOIDmode for OLDMODE, if you are sure X has a nonvoid mode. */
697 convert_modes (enum machine_mode mode
, enum machine_mode oldmode
, rtx x
, int unsignedp
)
701 /* If FROM is a SUBREG that indicates that we have already done at least
702 the required extension, strip it. */
704 if (GET_CODE (x
) == SUBREG
&& SUBREG_PROMOTED_VAR_P (x
)
705 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x
))) >= GET_MODE_SIZE (mode
)
706 && SUBREG_PROMOTED_UNSIGNED_P (x
) == unsignedp
)
707 x
= gen_lowpart (mode
, SUBREG_REG (x
));
709 if (GET_MODE (x
) != VOIDmode
)
710 oldmode
= GET_MODE (x
);
715 if (CONST_SCALAR_INT_P (x
) && GET_MODE_CLASS (mode
) == MODE_INT
)
717 /* If the caller did not tell us the old mode, then there is not
718 much to do with respect to canonicalization. We have to
719 assume that all the bits are significant. */
720 if (GET_MODE_CLASS (oldmode
) != MODE_INT
)
721 oldmode
= MAX_MODE_INT
;
722 wide_int w
= wide_int::from (std::make_pair (x
, oldmode
),
723 GET_MODE_PRECISION (mode
),
724 unsignedp
? UNSIGNED
: SIGNED
);
725 return immed_wide_int_const (w
, mode
);
728 /* We can do this with a gen_lowpart if both desired and current modes
729 are integer, and this is either a constant integer, a register, or a
731 if (GET_MODE_CLASS (mode
) == MODE_INT
732 && GET_MODE_CLASS (oldmode
) == MODE_INT
733 && GET_MODE_PRECISION (mode
) <= GET_MODE_PRECISION (oldmode
)
734 && ((MEM_P (x
) && !MEM_VOLATILE_P (x
) && direct_load
[(int) mode
])
736 && (!HARD_REGISTER_P (x
)
737 || HARD_REGNO_MODE_OK (REGNO (x
), mode
))
738 && TRULY_NOOP_TRUNCATION_MODES_P (mode
, GET_MODE (x
)))))
740 return gen_lowpart (mode
, x
);
742 /* Converting from integer constant into mode is always equivalent to an
744 if (VECTOR_MODE_P (mode
) && GET_MODE (x
) == VOIDmode
)
746 gcc_assert (GET_MODE_BITSIZE (mode
) == GET_MODE_BITSIZE (oldmode
));
747 return simplify_gen_subreg (mode
, x
, oldmode
, 0);
750 temp
= gen_reg_rtx (mode
);
751 convert_move (temp
, x
, unsignedp
);
755 /* Return the largest alignment we can use for doing a move (or store)
756 of MAX_PIECES. ALIGN is the largest alignment we could use. */
759 alignment_for_piecewise_move (unsigned int max_pieces
, unsigned int align
)
761 enum machine_mode tmode
;
763 tmode
= mode_for_size (max_pieces
* BITS_PER_UNIT
, MODE_INT
, 1);
764 if (align
>= GET_MODE_ALIGNMENT (tmode
))
765 align
= GET_MODE_ALIGNMENT (tmode
);
768 enum machine_mode tmode
, xmode
;
770 for (tmode
= GET_CLASS_NARROWEST_MODE (MODE_INT
), xmode
= tmode
;
772 xmode
= tmode
, tmode
= GET_MODE_WIDER_MODE (tmode
))
773 if (GET_MODE_SIZE (tmode
) > max_pieces
774 || SLOW_UNALIGNED_ACCESS (tmode
, align
))
777 align
= MAX (align
, GET_MODE_ALIGNMENT (xmode
));
783 /* Return the widest integer mode no wider than SIZE. If no such mode
784 can be found, return VOIDmode. */
786 static enum machine_mode
787 widest_int_mode_for_size (unsigned int size
)
789 enum machine_mode tmode
, mode
= VOIDmode
;
791 for (tmode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
792 tmode
!= VOIDmode
; tmode
= GET_MODE_WIDER_MODE (tmode
))
793 if (GET_MODE_SIZE (tmode
) < size
)
799 /* STORE_MAX_PIECES is the number of bytes at a time that we can
800 store efficiently. Due to internal GCC limitations, this is
801 MOVE_MAX_PIECES limited by the number of bytes GCC can represent
802 for an immediate constant. */
804 #define STORE_MAX_PIECES MIN (MOVE_MAX_PIECES, 2 * sizeof (HOST_WIDE_INT))
806 /* Determine whether the LEN bytes can be moved by using several move
807 instructions. Return nonzero if a call to move_by_pieces should
811 can_move_by_pieces (unsigned HOST_WIDE_INT len ATTRIBUTE_UNUSED
,
812 unsigned int align ATTRIBUTE_UNUSED
)
814 return MOVE_BY_PIECES_P (len
, align
);
817 /* Generate several move instructions to copy LEN bytes from block FROM to
818 block TO. (These are MEM rtx's with BLKmode).
820 If PUSH_ROUNDING is defined and TO is NULL, emit_single_push_insn is
821 used to push FROM to the stack.
823 ALIGN is maximum stack alignment we can assume.
825 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
826 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
830 move_by_pieces (rtx to
, rtx from
, unsigned HOST_WIDE_INT len
,
831 unsigned int align
, int endp
)
833 struct move_by_pieces_d data
;
834 enum machine_mode to_addr_mode
;
835 enum machine_mode from_addr_mode
= get_address_mode (from
);
836 rtx to_addr
, from_addr
= XEXP (from
, 0);
837 unsigned int max_size
= MOVE_MAX_PIECES
+ 1;
838 enum insn_code icode
;
840 align
= MIN (to
? MEM_ALIGN (to
) : align
, MEM_ALIGN (from
));
843 data
.from_addr
= from_addr
;
846 to_addr_mode
= get_address_mode (to
);
847 to_addr
= XEXP (to
, 0);
850 = (GET_CODE (to_addr
) == PRE_INC
|| GET_CODE (to_addr
) == PRE_DEC
851 || GET_CODE (to_addr
) == POST_INC
|| GET_CODE (to_addr
) == POST_DEC
);
853 = (GET_CODE (to_addr
) == PRE_DEC
|| GET_CODE (to_addr
) == POST_DEC
);
857 to_addr_mode
= VOIDmode
;
861 #ifdef STACK_GROWS_DOWNWARD
867 data
.to_addr
= to_addr
;
870 = (GET_CODE (from_addr
) == PRE_INC
|| GET_CODE (from_addr
) == PRE_DEC
871 || GET_CODE (from_addr
) == POST_INC
872 || GET_CODE (from_addr
) == POST_DEC
);
874 data
.explicit_inc_from
= 0;
875 data
.explicit_inc_to
= 0;
876 if (data
.reverse
) data
.offset
= len
;
879 /* If copying requires more than two move insns,
880 copy addresses to registers (to make displacements shorter)
881 and use post-increment if available. */
882 if (!(data
.autinc_from
&& data
.autinc_to
)
883 && move_by_pieces_ninsns (len
, align
, max_size
) > 2)
885 /* Find the mode of the largest move...
886 MODE might not be used depending on the definitions of the
887 USE_* macros below. */
888 enum machine_mode mode ATTRIBUTE_UNUSED
889 = widest_int_mode_for_size (max_size
);
891 if (USE_LOAD_PRE_DECREMENT (mode
) && data
.reverse
&& ! data
.autinc_from
)
893 data
.from_addr
= copy_to_mode_reg (from_addr_mode
,
894 plus_constant (from_addr_mode
,
896 data
.autinc_from
= 1;
897 data
.explicit_inc_from
= -1;
899 if (USE_LOAD_POST_INCREMENT (mode
) && ! data
.autinc_from
)
901 data
.from_addr
= copy_to_mode_reg (from_addr_mode
, from_addr
);
902 data
.autinc_from
= 1;
903 data
.explicit_inc_from
= 1;
905 if (!data
.autinc_from
&& CONSTANT_P (from_addr
))
906 data
.from_addr
= copy_to_mode_reg (from_addr_mode
, from_addr
);
907 if (USE_STORE_PRE_DECREMENT (mode
) && data
.reverse
&& ! data
.autinc_to
)
909 data
.to_addr
= copy_to_mode_reg (to_addr_mode
,
910 plus_constant (to_addr_mode
,
913 data
.explicit_inc_to
= -1;
915 if (USE_STORE_POST_INCREMENT (mode
) && ! data
.reverse
&& ! data
.autinc_to
)
917 data
.to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
919 data
.explicit_inc_to
= 1;
921 if (!data
.autinc_to
&& CONSTANT_P (to_addr
))
922 data
.to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
925 align
= alignment_for_piecewise_move (MOVE_MAX_PIECES
, align
);
927 /* First move what we can in the largest integer mode, then go to
928 successively smaller modes. */
930 while (max_size
> 1 && data
.len
> 0)
932 enum machine_mode mode
= widest_int_mode_for_size (max_size
);
934 if (mode
== VOIDmode
)
937 icode
= optab_handler (mov_optab
, mode
);
938 if (icode
!= CODE_FOR_nothing
&& align
>= GET_MODE_ALIGNMENT (mode
))
939 move_by_pieces_1 (GEN_FCN (icode
), mode
, &data
);
941 max_size
= GET_MODE_SIZE (mode
);
944 /* The code above should have handled everything. */
945 gcc_assert (!data
.len
);
951 gcc_assert (!data
.reverse
);
956 if (HAVE_POST_INCREMENT
&& data
.explicit_inc_to
> 0)
957 emit_insn (gen_add2_insn (data
.to_addr
, constm1_rtx
));
959 data
.to_addr
= copy_to_mode_reg (to_addr_mode
,
960 plus_constant (to_addr_mode
,
964 to1
= adjust_automodify_address (data
.to
, QImode
, data
.to_addr
,
971 to1
= adjust_address (data
.to
, QImode
, data
.offset
);
979 /* Return number of insns required to move L bytes by pieces.
980 ALIGN (in bits) is maximum alignment we can assume. */
982 unsigned HOST_WIDE_INT
983 move_by_pieces_ninsns (unsigned HOST_WIDE_INT l
, unsigned int align
,
984 unsigned int max_size
)
986 unsigned HOST_WIDE_INT n_insns
= 0;
988 align
= alignment_for_piecewise_move (MOVE_MAX_PIECES
, align
);
990 while (max_size
> 1 && l
> 0)
992 enum machine_mode mode
;
993 enum insn_code icode
;
995 mode
= widest_int_mode_for_size (max_size
);
997 if (mode
== VOIDmode
)
1000 icode
= optab_handler (mov_optab
, mode
);
1001 if (icode
!= CODE_FOR_nothing
&& align
>= GET_MODE_ALIGNMENT (mode
))
1002 n_insns
+= l
/ GET_MODE_SIZE (mode
), l
%= GET_MODE_SIZE (mode
);
1004 max_size
= GET_MODE_SIZE (mode
);
1011 /* Subroutine of move_by_pieces. Move as many bytes as appropriate
1012 with move instructions for mode MODE. GENFUN is the gen_... function
1013 to make a move insn for that mode. DATA has all the other info. */
1016 move_by_pieces_1 (insn_gen_fn genfun
, machine_mode mode
,
1017 struct move_by_pieces_d
*data
)
1019 unsigned int size
= GET_MODE_SIZE (mode
);
1020 rtx to1
= NULL_RTX
, from1
;
1022 while (data
->len
>= size
)
1025 data
->offset
-= size
;
1029 if (data
->autinc_to
)
1030 to1
= adjust_automodify_address (data
->to
, mode
, data
->to_addr
,
1033 to1
= adjust_address (data
->to
, mode
, data
->offset
);
1036 if (data
->autinc_from
)
1037 from1
= adjust_automodify_address (data
->from
, mode
, data
->from_addr
,
1040 from1
= adjust_address (data
->from
, mode
, data
->offset
);
1042 if (HAVE_PRE_DECREMENT
&& data
->explicit_inc_to
< 0)
1043 emit_insn (gen_add2_insn (data
->to_addr
,
1044 gen_int_mode (-(HOST_WIDE_INT
) size
,
1045 GET_MODE (data
->to_addr
))));
1046 if (HAVE_PRE_DECREMENT
&& data
->explicit_inc_from
< 0)
1047 emit_insn (gen_add2_insn (data
->from_addr
,
1048 gen_int_mode (-(HOST_WIDE_INT
) size
,
1049 GET_MODE (data
->from_addr
))));
1052 emit_insn ((*genfun
) (to1
, from1
));
1055 #ifdef PUSH_ROUNDING
1056 emit_single_push_insn (mode
, from1
, NULL
);
1062 if (HAVE_POST_INCREMENT
&& data
->explicit_inc_to
> 0)
1063 emit_insn (gen_add2_insn (data
->to_addr
,
1065 GET_MODE (data
->to_addr
))));
1066 if (HAVE_POST_INCREMENT
&& data
->explicit_inc_from
> 0)
1067 emit_insn (gen_add2_insn (data
->from_addr
,
1069 GET_MODE (data
->from_addr
))));
1071 if (! data
->reverse
)
1072 data
->offset
+= size
;
1078 /* Emit code to move a block Y to a block X. This may be done with
1079 string-move instructions, with multiple scalar move instructions,
1080 or with a library call.
1082 Both X and Y must be MEM rtx's (perhaps inside VOLATILE) with mode BLKmode.
1083 SIZE is an rtx that says how long they are.
1084 ALIGN is the maximum alignment we can assume they have.
1085 METHOD describes what kind of copy this is, and what mechanisms may be used.
1086 MIN_SIZE is the minimal size of block to move
1087 MAX_SIZE is the maximal size of block to move, if it can not be represented
1088 in unsigned HOST_WIDE_INT, than it is mask of all ones.
1090 Return the address of the new block, if memcpy is called and returns it,
1094 emit_block_move_hints (rtx x
, rtx y
, rtx size
, enum block_op_methods method
,
1095 unsigned int expected_align
, HOST_WIDE_INT expected_size
,
1096 unsigned HOST_WIDE_INT min_size
,
1097 unsigned HOST_WIDE_INT max_size
,
1098 unsigned HOST_WIDE_INT probable_max_size
)
1105 if (CONST_INT_P (size
)
1106 && INTVAL (size
) == 0)
1111 case BLOCK_OP_NORMAL
:
1112 case BLOCK_OP_TAILCALL
:
1113 may_use_call
= true;
1116 case BLOCK_OP_CALL_PARM
:
1117 may_use_call
= block_move_libcall_safe_for_call_parm ();
1119 /* Make inhibit_defer_pop nonzero around the library call
1120 to force it to pop the arguments right away. */
1124 case BLOCK_OP_NO_LIBCALL
:
1125 may_use_call
= false;
1132 gcc_assert (MEM_P (x
) && MEM_P (y
));
1133 align
= MIN (MEM_ALIGN (x
), MEM_ALIGN (y
));
1134 gcc_assert (align
>= BITS_PER_UNIT
);
1136 /* Make sure we've got BLKmode addresses; store_one_arg can decide that
1137 block copy is more efficient for other large modes, e.g. DCmode. */
1138 x
= adjust_address (x
, BLKmode
, 0);
1139 y
= adjust_address (y
, BLKmode
, 0);
1141 /* Set MEM_SIZE as appropriate for this block copy. The main place this
1142 can be incorrect is coming from __builtin_memcpy. */
1143 if (CONST_INT_P (size
))
1145 x
= shallow_copy_rtx (x
);
1146 y
= shallow_copy_rtx (y
);
1147 set_mem_size (x
, INTVAL (size
));
1148 set_mem_size (y
, INTVAL (size
));
1151 if (CONST_INT_P (size
) && MOVE_BY_PIECES_P (INTVAL (size
), align
))
1152 move_by_pieces (x
, y
, INTVAL (size
), align
, 0);
1153 else if (emit_block_move_via_movmem (x
, y
, size
, align
,
1154 expected_align
, expected_size
,
1155 min_size
, max_size
, probable_max_size
))
1157 else if (may_use_call
1158 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (x
))
1159 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (y
)))
1161 /* Since x and y are passed to a libcall, mark the corresponding
1162 tree EXPR as addressable. */
1163 tree y_expr
= MEM_EXPR (y
);
1164 tree x_expr
= MEM_EXPR (x
);
1166 mark_addressable (y_expr
);
1168 mark_addressable (x_expr
);
1169 retval
= emit_block_move_via_libcall (x
, y
, size
,
1170 method
== BLOCK_OP_TAILCALL
);
1174 emit_block_move_via_loop (x
, y
, size
, align
);
1176 if (method
== BLOCK_OP_CALL_PARM
)
1183 emit_block_move (rtx x
, rtx y
, rtx size
, enum block_op_methods method
)
1185 unsigned HOST_WIDE_INT max
, min
= 0;
1186 if (GET_CODE (size
) == CONST_INT
)
1187 min
= max
= UINTVAL (size
);
1189 max
= GET_MODE_MASK (GET_MODE (size
));
1190 return emit_block_move_hints (x
, y
, size
, method
, 0, -1,
1194 /* A subroutine of emit_block_move. Returns true if calling the
1195 block move libcall will not clobber any parameters which may have
1196 already been placed on the stack. */
1199 block_move_libcall_safe_for_call_parm (void)
1201 #if defined (REG_PARM_STACK_SPACE)
1205 /* If arguments are pushed on the stack, then they're safe. */
1209 /* If registers go on the stack anyway, any argument is sure to clobber
1210 an outgoing argument. */
1211 #if defined (REG_PARM_STACK_SPACE)
1212 fn
= emit_block_move_libcall_fn (false);
1213 /* Avoid set but not used warning if *REG_PARM_STACK_SPACE doesn't
1214 depend on its argument. */
1216 if (OUTGOING_REG_PARM_STACK_SPACE ((!fn
? NULL_TREE
: TREE_TYPE (fn
)))
1217 && REG_PARM_STACK_SPACE (fn
) != 0)
1221 /* If any argument goes in memory, then it might clobber an outgoing
1224 CUMULATIVE_ARGS args_so_far_v
;
1225 cumulative_args_t args_so_far
;
1228 fn
= emit_block_move_libcall_fn (false);
1229 INIT_CUMULATIVE_ARGS (args_so_far_v
, TREE_TYPE (fn
), NULL_RTX
, 0, 3);
1230 args_so_far
= pack_cumulative_args (&args_so_far_v
);
1232 arg
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
1233 for ( ; arg
!= void_list_node
; arg
= TREE_CHAIN (arg
))
1235 enum machine_mode mode
= TYPE_MODE (TREE_VALUE (arg
));
1236 rtx tmp
= targetm
.calls
.function_arg (args_so_far
, mode
,
1238 if (!tmp
|| !REG_P (tmp
))
1240 if (targetm
.calls
.arg_partial_bytes (args_so_far
, mode
, NULL
, 1))
1242 targetm
.calls
.function_arg_advance (args_so_far
, mode
,
1249 /* A subroutine of emit_block_move. Expand a movmem pattern;
1250 return true if successful. */
1253 emit_block_move_via_movmem (rtx x
, rtx y
, rtx size
, unsigned int align
,
1254 unsigned int expected_align
, HOST_WIDE_INT expected_size
,
1255 unsigned HOST_WIDE_INT min_size
,
1256 unsigned HOST_WIDE_INT max_size
,
1257 unsigned HOST_WIDE_INT probable_max_size
)
1259 int save_volatile_ok
= volatile_ok
;
1260 enum machine_mode mode
;
1262 if (expected_align
< align
)
1263 expected_align
= align
;
1264 if (expected_size
!= -1)
1266 if ((unsigned HOST_WIDE_INT
)expected_size
> probable_max_size
)
1267 expected_size
= probable_max_size
;
1268 if ((unsigned HOST_WIDE_INT
)expected_size
< min_size
)
1269 expected_size
= min_size
;
1272 /* Since this is a move insn, we don't care about volatility. */
1275 /* Try the most limited insn first, because there's no point
1276 including more than one in the machine description unless
1277 the more limited one has some advantage. */
1279 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
); mode
!= VOIDmode
;
1280 mode
= GET_MODE_WIDER_MODE (mode
))
1282 enum insn_code code
= direct_optab_handler (movmem_optab
, mode
);
1284 if (code
!= CODE_FOR_nothing
1285 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
1286 here because if SIZE is less than the mode mask, as it is
1287 returned by the macro, it will definitely be less than the
1288 actual mode mask. Since SIZE is within the Pmode address
1289 space, we limit MODE to Pmode. */
1290 && ((CONST_INT_P (size
)
1291 && ((unsigned HOST_WIDE_INT
) INTVAL (size
)
1292 <= (GET_MODE_MASK (mode
) >> 1)))
1293 || max_size
<= (GET_MODE_MASK (mode
) >> 1)
1294 || GET_MODE_BITSIZE (mode
) >= GET_MODE_BITSIZE (Pmode
)))
1296 struct expand_operand ops
[9];
1299 /* ??? When called via emit_block_move_for_call, it'd be
1300 nice if there were some way to inform the backend, so
1301 that it doesn't fail the expansion because it thinks
1302 emitting the libcall would be more efficient. */
1303 nops
= insn_data
[(int) code
].n_generator_args
;
1304 gcc_assert (nops
== 4 || nops
== 6 || nops
== 8 || nops
== 9);
1306 create_fixed_operand (&ops
[0], x
);
1307 create_fixed_operand (&ops
[1], y
);
1308 /* The check above guarantees that this size conversion is valid. */
1309 create_convert_operand_to (&ops
[2], size
, mode
, true);
1310 create_integer_operand (&ops
[3], align
/ BITS_PER_UNIT
);
1313 create_integer_operand (&ops
[4], expected_align
/ BITS_PER_UNIT
);
1314 create_integer_operand (&ops
[5], expected_size
);
1318 create_integer_operand (&ops
[6], min_size
);
1319 /* If we can not represent the maximal size,
1320 make parameter NULL. */
1321 if ((HOST_WIDE_INT
) max_size
!= -1)
1322 create_integer_operand (&ops
[7], max_size
);
1324 create_fixed_operand (&ops
[7], NULL
);
1328 /* If we can not represent the maximal size,
1329 make parameter NULL. */
1330 if ((HOST_WIDE_INT
) probable_max_size
!= -1)
1331 create_integer_operand (&ops
[8], probable_max_size
);
1333 create_fixed_operand (&ops
[8], NULL
);
1335 if (maybe_expand_insn (code
, nops
, ops
))
1337 volatile_ok
= save_volatile_ok
;
1343 volatile_ok
= save_volatile_ok
;
1347 /* A subroutine of emit_block_move. Expand a call to memcpy.
1348 Return the return value from memcpy, 0 otherwise. */
1351 emit_block_move_via_libcall (rtx dst
, rtx src
, rtx size
, bool tailcall
)
1353 rtx dst_addr
, src_addr
;
1354 tree call_expr
, fn
, src_tree
, dst_tree
, size_tree
;
1355 enum machine_mode size_mode
;
1358 /* Emit code to copy the addresses of DST and SRC and SIZE into new
1359 pseudos. We can then place those new pseudos into a VAR_DECL and
1362 dst_addr
= copy_addr_to_reg (XEXP (dst
, 0));
1363 src_addr
= copy_addr_to_reg (XEXP (src
, 0));
1365 dst_addr
= convert_memory_address (ptr_mode
, dst_addr
);
1366 src_addr
= convert_memory_address (ptr_mode
, src_addr
);
1368 dst_tree
= make_tree (ptr_type_node
, dst_addr
);
1369 src_tree
= make_tree (ptr_type_node
, src_addr
);
1371 size_mode
= TYPE_MODE (sizetype
);
1373 size
= convert_to_mode (size_mode
, size
, 1);
1374 size
= copy_to_mode_reg (size_mode
, size
);
1376 /* It is incorrect to use the libcall calling conventions to call
1377 memcpy in this context. This could be a user call to memcpy and
1378 the user may wish to examine the return value from memcpy. For
1379 targets where libcalls and normal calls have different conventions
1380 for returning pointers, we could end up generating incorrect code. */
1382 size_tree
= make_tree (sizetype
, size
);
1384 fn
= emit_block_move_libcall_fn (true);
1385 call_expr
= build_call_expr (fn
, 3, dst_tree
, src_tree
, size_tree
);
1386 CALL_EXPR_TAILCALL (call_expr
) = tailcall
;
1388 retval
= expand_normal (call_expr
);
1393 /* A subroutine of emit_block_move_via_libcall. Create the tree node
1394 for the function we use for block copies. */
1396 static GTY(()) tree block_move_fn
;
1399 init_block_move_fn (const char *asmspec
)
1403 tree args
, fn
, attrs
, attr_args
;
1405 fn
= get_identifier ("memcpy");
1406 args
= build_function_type_list (ptr_type_node
, ptr_type_node
,
1407 const_ptr_type_node
, sizetype
,
1410 fn
= build_decl (UNKNOWN_LOCATION
, FUNCTION_DECL
, fn
, args
);
1411 DECL_EXTERNAL (fn
) = 1;
1412 TREE_PUBLIC (fn
) = 1;
1413 DECL_ARTIFICIAL (fn
) = 1;
1414 TREE_NOTHROW (fn
) = 1;
1415 DECL_VISIBILITY (fn
) = VISIBILITY_DEFAULT
;
1416 DECL_VISIBILITY_SPECIFIED (fn
) = 1;
1418 attr_args
= build_tree_list (NULL_TREE
, build_string (1, "1"));
1419 attrs
= tree_cons (get_identifier ("fn spec"), attr_args
, NULL
);
1421 decl_attributes (&fn
, attrs
, ATTR_FLAG_BUILT_IN
);
1427 set_user_assembler_name (block_move_fn
, asmspec
);
1431 emit_block_move_libcall_fn (int for_call
)
1433 static bool emitted_extern
;
1436 init_block_move_fn (NULL
);
1438 if (for_call
&& !emitted_extern
)
1440 emitted_extern
= true;
1441 make_decl_rtl (block_move_fn
);
1444 return block_move_fn
;
1447 /* A subroutine of emit_block_move. Copy the data via an explicit
1448 loop. This is used only when libcalls are forbidden. */
1449 /* ??? It'd be nice to copy in hunks larger than QImode. */
1452 emit_block_move_via_loop (rtx x
, rtx y
, rtx size
,
1453 unsigned int align ATTRIBUTE_UNUSED
)
1455 rtx cmp_label
, top_label
, iter
, x_addr
, y_addr
, tmp
;
1456 enum machine_mode x_addr_mode
= get_address_mode (x
);
1457 enum machine_mode y_addr_mode
= get_address_mode (y
);
1458 enum machine_mode iter_mode
;
1460 iter_mode
= GET_MODE (size
);
1461 if (iter_mode
== VOIDmode
)
1462 iter_mode
= word_mode
;
1464 top_label
= gen_label_rtx ();
1465 cmp_label
= gen_label_rtx ();
1466 iter
= gen_reg_rtx (iter_mode
);
1468 emit_move_insn (iter
, const0_rtx
);
1470 x_addr
= force_operand (XEXP (x
, 0), NULL_RTX
);
1471 y_addr
= force_operand (XEXP (y
, 0), NULL_RTX
);
1472 do_pending_stack_adjust ();
1474 emit_jump (cmp_label
);
1475 emit_label (top_label
);
1477 tmp
= convert_modes (x_addr_mode
, iter_mode
, iter
, true);
1478 x_addr
= simplify_gen_binary (PLUS
, x_addr_mode
, x_addr
, tmp
);
1480 if (x_addr_mode
!= y_addr_mode
)
1481 tmp
= convert_modes (y_addr_mode
, iter_mode
, iter
, true);
1482 y_addr
= simplify_gen_binary (PLUS
, y_addr_mode
, y_addr
, tmp
);
1484 x
= change_address (x
, QImode
, x_addr
);
1485 y
= change_address (y
, QImode
, y_addr
);
1487 emit_move_insn (x
, y
);
1489 tmp
= expand_simple_binop (iter_mode
, PLUS
, iter
, const1_rtx
, iter
,
1490 true, OPTAB_LIB_WIDEN
);
1492 emit_move_insn (iter
, tmp
);
1494 emit_label (cmp_label
);
1496 emit_cmp_and_jump_insns (iter
, size
, LT
, NULL_RTX
, iter_mode
,
1497 true, top_label
, REG_BR_PROB_BASE
* 90 / 100);
1500 /* Copy all or part of a value X into registers starting at REGNO.
1501 The number of registers to be filled is NREGS. */
1504 move_block_to_reg (int regno
, rtx x
, int nregs
, enum machine_mode mode
)
1507 #ifdef HAVE_load_multiple
1515 if (CONSTANT_P (x
) && !targetm
.legitimate_constant_p (mode
, x
))
1516 x
= validize_mem (force_const_mem (mode
, x
));
1518 /* See if the machine can do this with a load multiple insn. */
1519 #ifdef HAVE_load_multiple
1520 if (HAVE_load_multiple
)
1522 last
= get_last_insn ();
1523 pat
= gen_load_multiple (gen_rtx_REG (word_mode
, regno
), x
,
1531 delete_insns_since (last
);
1535 for (i
= 0; i
< nregs
; i
++)
1536 emit_move_insn (gen_rtx_REG (word_mode
, regno
+ i
),
1537 operand_subword_force (x
, i
, mode
));
1540 /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
1541 The number of registers to be filled is NREGS. */
1544 move_block_from_reg (int regno
, rtx x
, int nregs
)
1551 /* See if the machine can do this with a store multiple insn. */
1552 #ifdef HAVE_store_multiple
1553 if (HAVE_store_multiple
)
1555 rtx last
= get_last_insn ();
1556 rtx pat
= gen_store_multiple (x
, gen_rtx_REG (word_mode
, regno
),
1564 delete_insns_since (last
);
1568 for (i
= 0; i
< nregs
; i
++)
1570 rtx tem
= operand_subword (x
, i
, 1, BLKmode
);
1574 emit_move_insn (tem
, gen_rtx_REG (word_mode
, regno
+ i
));
1578 /* Generate a PARALLEL rtx for a new non-consecutive group of registers from
1579 ORIG, where ORIG is a non-consecutive group of registers represented by
1580 a PARALLEL. The clone is identical to the original except in that the
1581 original set of registers is replaced by a new set of pseudo registers.
1582 The new set has the same modes as the original set. */
1585 gen_group_rtx (rtx orig
)
1590 gcc_assert (GET_CODE (orig
) == PARALLEL
);
1592 length
= XVECLEN (orig
, 0);
1593 tmps
= XALLOCAVEC (rtx
, length
);
1595 /* Skip a NULL entry in first slot. */
1596 i
= XEXP (XVECEXP (orig
, 0, 0), 0) ? 0 : 1;
1601 for (; i
< length
; i
++)
1603 enum machine_mode mode
= GET_MODE (XEXP (XVECEXP (orig
, 0, i
), 0));
1604 rtx offset
= XEXP (XVECEXP (orig
, 0, i
), 1);
1606 tmps
[i
] = gen_rtx_EXPR_LIST (VOIDmode
, gen_reg_rtx (mode
), offset
);
1609 return gen_rtx_PARALLEL (GET_MODE (orig
), gen_rtvec_v (length
, tmps
));
1612 /* A subroutine of emit_group_load. Arguments as for emit_group_load,
1613 except that values are placed in TMPS[i], and must later be moved
1614 into corresponding XEXP (XVECEXP (DST, 0, i), 0) element. */
1617 emit_group_load_1 (rtx
*tmps
, rtx dst
, rtx orig_src
, tree type
, int ssize
)
1621 enum machine_mode m
= GET_MODE (orig_src
);
1623 gcc_assert (GET_CODE (dst
) == PARALLEL
);
1626 && !SCALAR_INT_MODE_P (m
)
1627 && !MEM_P (orig_src
)
1628 && GET_CODE (orig_src
) != CONCAT
)
1630 enum machine_mode imode
= int_mode_for_mode (GET_MODE (orig_src
));
1631 if (imode
== BLKmode
)
1632 src
= assign_stack_temp (GET_MODE (orig_src
), ssize
);
1634 src
= gen_reg_rtx (imode
);
1635 if (imode
!= BLKmode
)
1636 src
= gen_lowpart (GET_MODE (orig_src
), src
);
1637 emit_move_insn (src
, orig_src
);
1638 /* ...and back again. */
1639 if (imode
!= BLKmode
)
1640 src
= gen_lowpart (imode
, src
);
1641 emit_group_load_1 (tmps
, dst
, src
, type
, ssize
);
1645 /* Check for a NULL entry, used to indicate that the parameter goes
1646 both on the stack and in registers. */
1647 if (XEXP (XVECEXP (dst
, 0, 0), 0))
1652 /* Process the pieces. */
1653 for (i
= start
; i
< XVECLEN (dst
, 0); i
++)
1655 enum machine_mode mode
= GET_MODE (XEXP (XVECEXP (dst
, 0, i
), 0));
1656 HOST_WIDE_INT bytepos
= INTVAL (XEXP (XVECEXP (dst
, 0, i
), 1));
1657 unsigned int bytelen
= GET_MODE_SIZE (mode
);
1660 /* Handle trailing fragments that run over the size of the struct. */
1661 if (ssize
>= 0 && bytepos
+ (HOST_WIDE_INT
) bytelen
> ssize
)
1663 /* Arrange to shift the fragment to where it belongs.
1664 extract_bit_field loads to the lsb of the reg. */
1666 #ifdef BLOCK_REG_PADDING
1667 BLOCK_REG_PADDING (GET_MODE (orig_src
), type
, i
== start
)
1668 == (BYTES_BIG_ENDIAN
? upward
: downward
)
1673 shift
= (bytelen
- (ssize
- bytepos
)) * BITS_PER_UNIT
;
1674 bytelen
= ssize
- bytepos
;
1675 gcc_assert (bytelen
> 0);
1678 /* If we won't be loading directly from memory, protect the real source
1679 from strange tricks we might play; but make sure that the source can
1680 be loaded directly into the destination. */
1682 if (!MEM_P (orig_src
)
1683 && (!CONSTANT_P (orig_src
)
1684 || (GET_MODE (orig_src
) != mode
1685 && GET_MODE (orig_src
) != VOIDmode
)))
1687 if (GET_MODE (orig_src
) == VOIDmode
)
1688 src
= gen_reg_rtx (mode
);
1690 src
= gen_reg_rtx (GET_MODE (orig_src
));
1692 emit_move_insn (src
, orig_src
);
1695 /* Optimize the access just a bit. */
1697 && (! SLOW_UNALIGNED_ACCESS (mode
, MEM_ALIGN (src
))
1698 || MEM_ALIGN (src
) >= GET_MODE_ALIGNMENT (mode
))
1699 && bytepos
* BITS_PER_UNIT
% GET_MODE_ALIGNMENT (mode
) == 0
1700 && bytelen
== GET_MODE_SIZE (mode
))
1702 tmps
[i
] = gen_reg_rtx (mode
);
1703 emit_move_insn (tmps
[i
], adjust_address (src
, mode
, bytepos
));
1705 else if (COMPLEX_MODE_P (mode
)
1706 && GET_MODE (src
) == mode
1707 && bytelen
== GET_MODE_SIZE (mode
))
1708 /* Let emit_move_complex do the bulk of the work. */
1710 else if (GET_CODE (src
) == CONCAT
)
1712 unsigned int slen
= GET_MODE_SIZE (GET_MODE (src
));
1713 unsigned int slen0
= GET_MODE_SIZE (GET_MODE (XEXP (src
, 0)));
1715 if ((bytepos
== 0 && bytelen
== slen0
)
1716 || (bytepos
!= 0 && bytepos
+ bytelen
<= slen
))
1718 /* The following assumes that the concatenated objects all
1719 have the same size. In this case, a simple calculation
1720 can be used to determine the object and the bit field
1722 tmps
[i
] = XEXP (src
, bytepos
/ slen0
);
1723 if (! CONSTANT_P (tmps
[i
])
1724 && (!REG_P (tmps
[i
]) || GET_MODE (tmps
[i
]) != mode
))
1725 tmps
[i
] = extract_bit_field (tmps
[i
], bytelen
* BITS_PER_UNIT
,
1726 (bytepos
% slen0
) * BITS_PER_UNIT
,
1727 1, NULL_RTX
, mode
, mode
);
1733 gcc_assert (!bytepos
);
1734 mem
= assign_stack_temp (GET_MODE (src
), slen
);
1735 emit_move_insn (mem
, src
);
1736 tmps
[i
] = extract_bit_field (mem
, bytelen
* BITS_PER_UNIT
,
1737 0, 1, NULL_RTX
, mode
, mode
);
1740 /* FIXME: A SIMD parallel will eventually lead to a subreg of a
1741 SIMD register, which is currently broken. While we get GCC
1742 to emit proper RTL for these cases, let's dump to memory. */
1743 else if (VECTOR_MODE_P (GET_MODE (dst
))
1746 int slen
= GET_MODE_SIZE (GET_MODE (src
));
1749 mem
= assign_stack_temp (GET_MODE (src
), slen
);
1750 emit_move_insn (mem
, src
);
1751 tmps
[i
] = adjust_address (mem
, mode
, (int) bytepos
);
1753 else if (CONSTANT_P (src
) && GET_MODE (dst
) != BLKmode
1754 && XVECLEN (dst
, 0) > 1)
1755 tmps
[i
] = simplify_gen_subreg (mode
, src
, GET_MODE (dst
), bytepos
);
1756 else if (CONSTANT_P (src
))
1758 HOST_WIDE_INT len
= (HOST_WIDE_INT
) bytelen
;
1766 /* TODO: const_wide_int can have sizes other than this... */
1767 gcc_assert (2 * len
== ssize
);
1768 split_double (src
, &first
, &second
);
1775 else if (REG_P (src
) && GET_MODE (src
) == mode
)
1778 tmps
[i
] = extract_bit_field (src
, bytelen
* BITS_PER_UNIT
,
1779 bytepos
* BITS_PER_UNIT
, 1, NULL_RTX
,
1783 tmps
[i
] = expand_shift (LSHIFT_EXPR
, mode
, tmps
[i
],
1788 /* Emit code to move a block SRC of type TYPE to a block DST,
1789 where DST is non-consecutive registers represented by a PARALLEL.
1790 SSIZE represents the total size of block ORIG_SRC in bytes, or -1
1794 emit_group_load (rtx dst
, rtx src
, tree type
, int ssize
)
1799 tmps
= XALLOCAVEC (rtx
, XVECLEN (dst
, 0));
1800 emit_group_load_1 (tmps
, dst
, src
, type
, ssize
);
1802 /* Copy the extracted pieces into the proper (probable) hard regs. */
1803 for (i
= 0; i
< XVECLEN (dst
, 0); i
++)
1805 rtx d
= XEXP (XVECEXP (dst
, 0, i
), 0);
1808 emit_move_insn (d
, tmps
[i
]);
1812 /* Similar, but load SRC into new pseudos in a format that looks like
1813 PARALLEL. This can later be fed to emit_group_move to get things
1814 in the right place. */
1817 emit_group_load_into_temps (rtx parallel
, rtx src
, tree type
, int ssize
)
1822 vec
= rtvec_alloc (XVECLEN (parallel
, 0));
1823 emit_group_load_1 (&RTVEC_ELT (vec
, 0), parallel
, src
, type
, ssize
);
1825 /* Convert the vector to look just like the original PARALLEL, except
1826 with the computed values. */
1827 for (i
= 0; i
< XVECLEN (parallel
, 0); i
++)
1829 rtx e
= XVECEXP (parallel
, 0, i
);
1830 rtx d
= XEXP (e
, 0);
1834 d
= force_reg (GET_MODE (d
), RTVEC_ELT (vec
, i
));
1835 e
= alloc_EXPR_LIST (REG_NOTE_KIND (e
), d
, XEXP (e
, 1));
1837 RTVEC_ELT (vec
, i
) = e
;
1840 return gen_rtx_PARALLEL (GET_MODE (parallel
), vec
);
1843 /* Emit code to move a block SRC to block DST, where SRC and DST are
1844 non-consecutive groups of registers, each represented by a PARALLEL. */
1847 emit_group_move (rtx dst
, rtx src
)
1851 gcc_assert (GET_CODE (src
) == PARALLEL
1852 && GET_CODE (dst
) == PARALLEL
1853 && XVECLEN (src
, 0) == XVECLEN (dst
, 0));
1855 /* Skip first entry if NULL. */
1856 for (i
= XEXP (XVECEXP (src
, 0, 0), 0) ? 0 : 1; i
< XVECLEN (src
, 0); i
++)
1857 emit_move_insn (XEXP (XVECEXP (dst
, 0, i
), 0),
1858 XEXP (XVECEXP (src
, 0, i
), 0));
1861 /* Move a group of registers represented by a PARALLEL into pseudos. */
1864 emit_group_move_into_temps (rtx src
)
1866 rtvec vec
= rtvec_alloc (XVECLEN (src
, 0));
1869 for (i
= 0; i
< XVECLEN (src
, 0); i
++)
1871 rtx e
= XVECEXP (src
, 0, i
);
1872 rtx d
= XEXP (e
, 0);
1875 e
= alloc_EXPR_LIST (REG_NOTE_KIND (e
), copy_to_reg (d
), XEXP (e
, 1));
1876 RTVEC_ELT (vec
, i
) = e
;
1879 return gen_rtx_PARALLEL (GET_MODE (src
), vec
);
1882 /* Emit code to move a block SRC to a block ORIG_DST of type TYPE,
1883 where SRC is non-consecutive registers represented by a PARALLEL.
1884 SSIZE represents the total size of block ORIG_DST, or -1 if not
1888 emit_group_store (rtx orig_dst
, rtx src
, tree type ATTRIBUTE_UNUSED
, int ssize
)
1891 int start
, finish
, i
;
1892 enum machine_mode m
= GET_MODE (orig_dst
);
1894 gcc_assert (GET_CODE (src
) == PARALLEL
);
1896 if (!SCALAR_INT_MODE_P (m
)
1897 && !MEM_P (orig_dst
) && GET_CODE (orig_dst
) != CONCAT
)
1899 enum machine_mode imode
= int_mode_for_mode (GET_MODE (orig_dst
));
1900 if (imode
== BLKmode
)
1901 dst
= assign_stack_temp (GET_MODE (orig_dst
), ssize
);
1903 dst
= gen_reg_rtx (imode
);
1904 emit_group_store (dst
, src
, type
, ssize
);
1905 if (imode
!= BLKmode
)
1906 dst
= gen_lowpart (GET_MODE (orig_dst
), dst
);
1907 emit_move_insn (orig_dst
, dst
);
1911 /* Check for a NULL entry, used to indicate that the parameter goes
1912 both on the stack and in registers. */
1913 if (XEXP (XVECEXP (src
, 0, 0), 0))
1917 finish
= XVECLEN (src
, 0);
1919 tmps
= XALLOCAVEC (rtx
, finish
);
1921 /* Copy the (probable) hard regs into pseudos. */
1922 for (i
= start
; i
< finish
; i
++)
1924 rtx reg
= XEXP (XVECEXP (src
, 0, i
), 0);
1925 if (!REG_P (reg
) || REGNO (reg
) < FIRST_PSEUDO_REGISTER
)
1927 tmps
[i
] = gen_reg_rtx (GET_MODE (reg
));
1928 emit_move_insn (tmps
[i
], reg
);
1934 /* If we won't be storing directly into memory, protect the real destination
1935 from strange tricks we might play. */
1937 if (GET_CODE (dst
) == PARALLEL
)
1941 /* We can get a PARALLEL dst if there is a conditional expression in
1942 a return statement. In that case, the dst and src are the same,
1943 so no action is necessary. */
1944 if (rtx_equal_p (dst
, src
))
1947 /* It is unclear if we can ever reach here, but we may as well handle
1948 it. Allocate a temporary, and split this into a store/load to/from
1950 temp
= assign_stack_temp (GET_MODE (dst
), ssize
);
1951 emit_group_store (temp
, src
, type
, ssize
);
1952 emit_group_load (dst
, temp
, type
, ssize
);
1955 else if (!MEM_P (dst
) && GET_CODE (dst
) != CONCAT
)
1957 enum machine_mode outer
= GET_MODE (dst
);
1958 enum machine_mode inner
;
1959 HOST_WIDE_INT bytepos
;
1963 if (!REG_P (dst
) || REGNO (dst
) < FIRST_PSEUDO_REGISTER
)
1964 dst
= gen_reg_rtx (outer
);
1966 /* Make life a bit easier for combine. */
1967 /* If the first element of the vector is the low part
1968 of the destination mode, use a paradoxical subreg to
1969 initialize the destination. */
1972 inner
= GET_MODE (tmps
[start
]);
1973 bytepos
= subreg_lowpart_offset (inner
, outer
);
1974 if (INTVAL (XEXP (XVECEXP (src
, 0, start
), 1)) == bytepos
)
1976 temp
= simplify_gen_subreg (outer
, tmps
[start
],
1980 emit_move_insn (dst
, temp
);
1987 /* If the first element wasn't the low part, try the last. */
1989 && start
< finish
- 1)
1991 inner
= GET_MODE (tmps
[finish
- 1]);
1992 bytepos
= subreg_lowpart_offset (inner
, outer
);
1993 if (INTVAL (XEXP (XVECEXP (src
, 0, finish
- 1), 1)) == bytepos
)
1995 temp
= simplify_gen_subreg (outer
, tmps
[finish
- 1],
1999 emit_move_insn (dst
, temp
);
2006 /* Otherwise, simply initialize the result to zero. */
2008 emit_move_insn (dst
, CONST0_RTX (outer
));
2011 /* Process the pieces. */
2012 for (i
= start
; i
< finish
; i
++)
2014 HOST_WIDE_INT bytepos
= INTVAL (XEXP (XVECEXP (src
, 0, i
), 1));
2015 enum machine_mode mode
= GET_MODE (tmps
[i
]);
2016 unsigned int bytelen
= GET_MODE_SIZE (mode
);
2017 unsigned int adj_bytelen
;
2020 /* Handle trailing fragments that run over the size of the struct. */
2021 if (ssize
>= 0 && bytepos
+ (HOST_WIDE_INT
) bytelen
> ssize
)
2022 adj_bytelen
= ssize
- bytepos
;
2024 adj_bytelen
= bytelen
;
2026 if (GET_CODE (dst
) == CONCAT
)
2028 if (bytepos
+ adj_bytelen
2029 <= GET_MODE_SIZE (GET_MODE (XEXP (dst
, 0))))
2030 dest
= XEXP (dst
, 0);
2031 else if (bytepos
>= GET_MODE_SIZE (GET_MODE (XEXP (dst
, 0))))
2033 bytepos
-= GET_MODE_SIZE (GET_MODE (XEXP (dst
, 0)));
2034 dest
= XEXP (dst
, 1);
2038 enum machine_mode dest_mode
= GET_MODE (dest
);
2039 enum machine_mode tmp_mode
= GET_MODE (tmps
[i
]);
2041 gcc_assert (bytepos
== 0 && XVECLEN (src
, 0));
2043 if (GET_MODE_ALIGNMENT (dest_mode
)
2044 >= GET_MODE_ALIGNMENT (tmp_mode
))
2046 dest
= assign_stack_temp (dest_mode
,
2047 GET_MODE_SIZE (dest_mode
));
2048 emit_move_insn (adjust_address (dest
,
2056 dest
= assign_stack_temp (tmp_mode
,
2057 GET_MODE_SIZE (tmp_mode
));
2058 emit_move_insn (dest
, tmps
[i
]);
2059 dst
= adjust_address (dest
, dest_mode
, bytepos
);
2065 /* Handle trailing fragments that run over the size of the struct. */
2066 if (ssize
>= 0 && bytepos
+ (HOST_WIDE_INT
) bytelen
> ssize
)
2068 /* store_bit_field always takes its value from the lsb.
2069 Move the fragment to the lsb if it's not already there. */
2071 #ifdef BLOCK_REG_PADDING
2072 BLOCK_REG_PADDING (GET_MODE (orig_dst
), type
, i
== start
)
2073 == (BYTES_BIG_ENDIAN
? upward
: downward
)
2079 int shift
= (bytelen
- (ssize
- bytepos
)) * BITS_PER_UNIT
;
2080 tmps
[i
] = expand_shift (RSHIFT_EXPR
, mode
, tmps
[i
],
2084 /* Make sure not to write past the end of the struct. */
2085 store_bit_field (dest
,
2086 adj_bytelen
* BITS_PER_UNIT
, bytepos
* BITS_PER_UNIT
,
2087 bytepos
* BITS_PER_UNIT
, ssize
* BITS_PER_UNIT
- 1,
2091 /* Optimize the access just a bit. */
2092 else if (MEM_P (dest
)
2093 && (!SLOW_UNALIGNED_ACCESS (mode
, MEM_ALIGN (dest
))
2094 || MEM_ALIGN (dest
) >= GET_MODE_ALIGNMENT (mode
))
2095 && bytepos
* BITS_PER_UNIT
% GET_MODE_ALIGNMENT (mode
) == 0
2096 && bytelen
== GET_MODE_SIZE (mode
))
2097 emit_move_insn (adjust_address (dest
, mode
, bytepos
), tmps
[i
]);
2100 store_bit_field (dest
, bytelen
* BITS_PER_UNIT
, bytepos
* BITS_PER_UNIT
,
2101 0, 0, mode
, tmps
[i
]);
2104 /* Copy from the pseudo into the (probable) hard reg. */
2105 if (orig_dst
!= dst
)
2106 emit_move_insn (orig_dst
, dst
);
2109 /* Return a form of X that does not use a PARALLEL. TYPE is the type
2110 of the value stored in X. */
2113 maybe_emit_group_store (rtx x
, tree type
)
2115 enum machine_mode mode
= TYPE_MODE (type
);
2116 gcc_checking_assert (GET_MODE (x
) == VOIDmode
|| GET_MODE (x
) == mode
);
2117 if (GET_CODE (x
) == PARALLEL
)
2119 rtx result
= gen_reg_rtx (mode
);
2120 emit_group_store (result
, x
, type
, int_size_in_bytes (type
));
2126 /* Copy a BLKmode object of TYPE out of a register SRCREG into TARGET.
2128 This is used on targets that return BLKmode values in registers. */
2131 copy_blkmode_from_reg (rtx target
, rtx srcreg
, tree type
)
2133 unsigned HOST_WIDE_INT bytes
= int_size_in_bytes (type
);
2134 rtx src
= NULL
, dst
= NULL
;
2135 unsigned HOST_WIDE_INT bitsize
= MIN (TYPE_ALIGN (type
), BITS_PER_WORD
);
2136 unsigned HOST_WIDE_INT bitpos
, xbitpos
, padding_correction
= 0;
2137 enum machine_mode mode
= GET_MODE (srcreg
);
2138 enum machine_mode tmode
= GET_MODE (target
);
2139 enum machine_mode copy_mode
;
2141 /* BLKmode registers created in the back-end shouldn't have survived. */
2142 gcc_assert (mode
!= BLKmode
);
2144 /* If the structure doesn't take up a whole number of words, see whether
2145 SRCREG is padded on the left or on the right. If it's on the left,
2146 set PADDING_CORRECTION to the number of bits to skip.
2148 In most ABIs, the structure will be returned at the least end of
2149 the register, which translates to right padding on little-endian
2150 targets and left padding on big-endian targets. The opposite
2151 holds if the structure is returned at the most significant
2152 end of the register. */
2153 if (bytes
% UNITS_PER_WORD
!= 0
2154 && (targetm
.calls
.return_in_msb (type
)
2156 : BYTES_BIG_ENDIAN
))
2158 = (BITS_PER_WORD
- ((bytes
% UNITS_PER_WORD
) * BITS_PER_UNIT
));
2160 /* We can use a single move if we have an exact mode for the size. */
2161 else if (MEM_P (target
)
2162 && (!SLOW_UNALIGNED_ACCESS (mode
, MEM_ALIGN (target
))
2163 || MEM_ALIGN (target
) >= GET_MODE_ALIGNMENT (mode
))
2164 && bytes
== GET_MODE_SIZE (mode
))
2166 emit_move_insn (adjust_address (target
, mode
, 0), srcreg
);
2170 /* And if we additionally have the same mode for a register. */
2171 else if (REG_P (target
)
2172 && GET_MODE (target
) == mode
2173 && bytes
== GET_MODE_SIZE (mode
))
2175 emit_move_insn (target
, srcreg
);
2179 /* This code assumes srcreg is at least a full word. If it isn't, copy it
2180 into a new pseudo which is a full word. */
2181 if (GET_MODE_SIZE (mode
) < UNITS_PER_WORD
)
2183 srcreg
= convert_to_mode (word_mode
, srcreg
, TYPE_UNSIGNED (type
));
2187 /* Copy the structure BITSIZE bits at a time. If the target lives in
2188 memory, take care of not reading/writing past its end by selecting
2189 a copy mode suited to BITSIZE. This should always be possible given
2192 If the target lives in register, make sure not to select a copy mode
2193 larger than the mode of the register.
2195 We could probably emit more efficient code for machines which do not use
2196 strict alignment, but it doesn't seem worth the effort at the current
2199 copy_mode
= word_mode
;
2202 enum machine_mode mem_mode
= mode_for_size (bitsize
, MODE_INT
, 1);
2203 if (mem_mode
!= BLKmode
)
2204 copy_mode
= mem_mode
;
2206 else if (REG_P (target
) && GET_MODE_BITSIZE (tmode
) < BITS_PER_WORD
)
2209 for (bitpos
= 0, xbitpos
= padding_correction
;
2210 bitpos
< bytes
* BITS_PER_UNIT
;
2211 bitpos
+= bitsize
, xbitpos
+= bitsize
)
2213 /* We need a new source operand each time xbitpos is on a
2214 word boundary and when xbitpos == padding_correction
2215 (the first time through). */
2216 if (xbitpos
% BITS_PER_WORD
== 0 || xbitpos
== padding_correction
)
2217 src
= operand_subword_force (srcreg
, xbitpos
/ BITS_PER_WORD
, mode
);
2219 /* We need a new destination operand each time bitpos is on
2221 if (REG_P (target
) && GET_MODE_BITSIZE (tmode
) < BITS_PER_WORD
)
2223 else if (bitpos
% BITS_PER_WORD
== 0)
2224 dst
= operand_subword (target
, bitpos
/ BITS_PER_WORD
, 1, tmode
);
2226 /* Use xbitpos for the source extraction (right justified) and
2227 bitpos for the destination store (left justified). */
2228 store_bit_field (dst
, bitsize
, bitpos
% BITS_PER_WORD
, 0, 0, copy_mode
,
2229 extract_bit_field (src
, bitsize
,
2230 xbitpos
% BITS_PER_WORD
, 1,
2231 NULL_RTX
, copy_mode
, copy_mode
));
2235 /* Copy BLKmode value SRC into a register of mode MODE. Return the
2236 register if it contains any data, otherwise return null.
2238 This is used on targets that return BLKmode values in registers. */
2241 copy_blkmode_to_reg (enum machine_mode mode
, tree src
)
2244 unsigned HOST_WIDE_INT bitpos
, xbitpos
, padding_correction
= 0, bytes
;
2245 unsigned int bitsize
;
2246 rtx
*dst_words
, dst
, x
, src_word
= NULL_RTX
, dst_word
= NULL_RTX
;
2247 enum machine_mode dst_mode
;
2249 gcc_assert (TYPE_MODE (TREE_TYPE (src
)) == BLKmode
);
2251 x
= expand_normal (src
);
2253 bytes
= int_size_in_bytes (TREE_TYPE (src
));
2257 /* If the structure doesn't take up a whole number of words, see
2258 whether the register value should be padded on the left or on
2259 the right. Set PADDING_CORRECTION to the number of padding
2260 bits needed on the left side.
2262 In most ABIs, the structure will be returned at the least end of
2263 the register, which translates to right padding on little-endian
2264 targets and left padding on big-endian targets. The opposite
2265 holds if the structure is returned at the most significant
2266 end of the register. */
2267 if (bytes
% UNITS_PER_WORD
!= 0
2268 && (targetm
.calls
.return_in_msb (TREE_TYPE (src
))
2270 : BYTES_BIG_ENDIAN
))
2271 padding_correction
= (BITS_PER_WORD
- ((bytes
% UNITS_PER_WORD
)
2274 n_regs
= (bytes
+ UNITS_PER_WORD
- 1) / UNITS_PER_WORD
;
2275 dst_words
= XALLOCAVEC (rtx
, n_regs
);
2276 bitsize
= MIN (TYPE_ALIGN (TREE_TYPE (src
)), BITS_PER_WORD
);
2278 /* Copy the structure BITSIZE bits at a time. */
2279 for (bitpos
= 0, xbitpos
= padding_correction
;
2280 bitpos
< bytes
* BITS_PER_UNIT
;
2281 bitpos
+= bitsize
, xbitpos
+= bitsize
)
2283 /* We need a new destination pseudo each time xbitpos is
2284 on a word boundary and when xbitpos == padding_correction
2285 (the first time through). */
2286 if (xbitpos
% BITS_PER_WORD
== 0
2287 || xbitpos
== padding_correction
)
2289 /* Generate an appropriate register. */
2290 dst_word
= gen_reg_rtx (word_mode
);
2291 dst_words
[xbitpos
/ BITS_PER_WORD
] = dst_word
;
2293 /* Clear the destination before we move anything into it. */
2294 emit_move_insn (dst_word
, CONST0_RTX (word_mode
));
2297 /* We need a new source operand each time bitpos is on a word
2299 if (bitpos
% BITS_PER_WORD
== 0)
2300 src_word
= operand_subword_force (x
, bitpos
/ BITS_PER_WORD
, BLKmode
);
2302 /* Use bitpos for the source extraction (left justified) and
2303 xbitpos for the destination store (right justified). */
2304 store_bit_field (dst_word
, bitsize
, xbitpos
% BITS_PER_WORD
,
2306 extract_bit_field (src_word
, bitsize
,
2307 bitpos
% BITS_PER_WORD
, 1,
2308 NULL_RTX
, word_mode
, word_mode
));
2311 if (mode
== BLKmode
)
2313 /* Find the smallest integer mode large enough to hold the
2314 entire structure. */
2315 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
2317 mode
= GET_MODE_WIDER_MODE (mode
))
2318 /* Have we found a large enough mode? */
2319 if (GET_MODE_SIZE (mode
) >= bytes
)
2322 /* A suitable mode should have been found. */
2323 gcc_assert (mode
!= VOIDmode
);
2326 if (GET_MODE_SIZE (mode
) < GET_MODE_SIZE (word_mode
))
2327 dst_mode
= word_mode
;
2330 dst
= gen_reg_rtx (dst_mode
);
2332 for (i
= 0; i
< n_regs
; i
++)
2333 emit_move_insn (operand_subword (dst
, i
, 0, dst_mode
), dst_words
[i
]);
2335 if (mode
!= dst_mode
)
2336 dst
= gen_lowpart (mode
, dst
);
2341 /* Add a USE expression for REG to the (possibly empty) list pointed
2342 to by CALL_FUSAGE. REG must denote a hard register. */
2345 use_reg_mode (rtx
*call_fusage
, rtx reg
, enum machine_mode mode
)
2347 gcc_assert (REG_P (reg
) && REGNO (reg
) < FIRST_PSEUDO_REGISTER
);
2350 = gen_rtx_EXPR_LIST (mode
, gen_rtx_USE (VOIDmode
, reg
), *call_fusage
);
2353 /* Add a CLOBBER expression for REG to the (possibly empty) list pointed
2354 to by CALL_FUSAGE. REG must denote a hard register. */
2357 clobber_reg_mode (rtx
*call_fusage
, rtx reg
, enum machine_mode mode
)
2359 gcc_assert (REG_P (reg
) && REGNO (reg
) < FIRST_PSEUDO_REGISTER
);
2362 = gen_rtx_EXPR_LIST (mode
, gen_rtx_CLOBBER (VOIDmode
, reg
), *call_fusage
);
2365 /* Add USE expressions to *CALL_FUSAGE for each of NREGS consecutive regs,
2366 starting at REGNO. All of these registers must be hard registers. */
2369 use_regs (rtx
*call_fusage
, int regno
, int nregs
)
2373 gcc_assert (regno
+ nregs
<= FIRST_PSEUDO_REGISTER
);
2375 for (i
= 0; i
< nregs
; i
++)
2376 use_reg (call_fusage
, regno_reg_rtx
[regno
+ i
]);
2379 /* Add USE expressions to *CALL_FUSAGE for each REG contained in the
2380 PARALLEL REGS. This is for calls that pass values in multiple
2381 non-contiguous locations. The Irix 6 ABI has examples of this. */
2384 use_group_regs (rtx
*call_fusage
, rtx regs
)
2388 for (i
= 0; i
< XVECLEN (regs
, 0); i
++)
2390 rtx reg
= XEXP (XVECEXP (regs
, 0, i
), 0);
2392 /* A NULL entry means the parameter goes both on the stack and in
2393 registers. This can also be a MEM for targets that pass values
2394 partially on the stack and partially in registers. */
2395 if (reg
!= 0 && REG_P (reg
))
2396 use_reg (call_fusage
, reg
);
2400 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2401 assigment and the code of the expresion on the RHS is CODE. Return
2405 get_def_for_expr (tree name
, enum tree_code code
)
2409 if (TREE_CODE (name
) != SSA_NAME
)
2412 def_stmt
= get_gimple_for_ssa_name (name
);
2414 || gimple_assign_rhs_code (def_stmt
) != code
)
2420 #ifdef HAVE_conditional_move
2421 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2422 assigment and the class of the expresion on the RHS is CLASS. Return
2426 get_def_for_expr_class (tree name
, enum tree_code_class tclass
)
2430 if (TREE_CODE (name
) != SSA_NAME
)
2433 def_stmt
= get_gimple_for_ssa_name (name
);
2435 || TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt
)) != tclass
)
2443 /* Determine whether the LEN bytes generated by CONSTFUN can be
2444 stored to memory using several move instructions. CONSTFUNDATA is
2445 a pointer which will be passed as argument in every CONSTFUN call.
2446 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2447 a memset operation and false if it's a copy of a constant string.
2448 Return nonzero if a call to store_by_pieces should succeed. */
2451 can_store_by_pieces (unsigned HOST_WIDE_INT len
,
2452 rtx (*constfun
) (void *, HOST_WIDE_INT
, enum machine_mode
),
2453 void *constfundata
, unsigned int align
, bool memsetp
)
2455 unsigned HOST_WIDE_INT l
;
2456 unsigned int max_size
;
2457 HOST_WIDE_INT offset
= 0;
2458 enum machine_mode mode
;
2459 enum insn_code icode
;
2461 /* cst is set but not used if LEGITIMATE_CONSTANT doesn't use it. */
2462 rtx cst ATTRIBUTE_UNUSED
;
2468 ? SET_BY_PIECES_P (len
, align
)
2469 : STORE_BY_PIECES_P (len
, align
)))
2472 align
= alignment_for_piecewise_move (STORE_MAX_PIECES
, align
);
2474 /* We would first store what we can in the largest integer mode, then go to
2475 successively smaller modes. */
2478 reverse
<= (HAVE_PRE_DECREMENT
|| HAVE_POST_DECREMENT
);
2482 max_size
= STORE_MAX_PIECES
+ 1;
2483 while (max_size
> 1 && l
> 0)
2485 mode
= widest_int_mode_for_size (max_size
);
2487 if (mode
== VOIDmode
)
2490 icode
= optab_handler (mov_optab
, mode
);
2491 if (icode
!= CODE_FOR_nothing
2492 && align
>= GET_MODE_ALIGNMENT (mode
))
2494 unsigned int size
= GET_MODE_SIZE (mode
);
2501 cst
= (*constfun
) (constfundata
, offset
, mode
);
2502 if (!targetm
.legitimate_constant_p (mode
, cst
))
2512 max_size
= GET_MODE_SIZE (mode
);
2515 /* The code above should have handled everything. */
2522 /* Generate several move instructions to store LEN bytes generated by
2523 CONSTFUN to block TO. (A MEM rtx with BLKmode). CONSTFUNDATA is a
2524 pointer which will be passed as argument in every CONSTFUN call.
2525 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2526 a memset operation and false if it's a copy of a constant string.
2527 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
2528 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
2532 store_by_pieces (rtx to
, unsigned HOST_WIDE_INT len
,
2533 rtx (*constfun
) (void *, HOST_WIDE_INT
, enum machine_mode
),
2534 void *constfundata
, unsigned int align
, bool memsetp
, int endp
)
2536 enum machine_mode to_addr_mode
= get_address_mode (to
);
2537 struct store_by_pieces_d data
;
2541 gcc_assert (endp
!= 2);
2546 ? SET_BY_PIECES_P (len
, align
)
2547 : STORE_BY_PIECES_P (len
, align
));
2548 data
.constfun
= constfun
;
2549 data
.constfundata
= constfundata
;
2552 store_by_pieces_1 (&data
, align
);
2557 gcc_assert (!data
.reverse
);
2562 if (HAVE_POST_INCREMENT
&& data
.explicit_inc_to
> 0)
2563 emit_insn (gen_add2_insn (data
.to_addr
, constm1_rtx
));
2565 data
.to_addr
= copy_to_mode_reg (to_addr_mode
,
2566 plus_constant (to_addr_mode
,
2570 to1
= adjust_automodify_address (data
.to
, QImode
, data
.to_addr
,
2577 to1
= adjust_address (data
.to
, QImode
, data
.offset
);
2585 /* Generate several move instructions to clear LEN bytes of block TO. (A MEM
2586 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2589 clear_by_pieces (rtx to
, unsigned HOST_WIDE_INT len
, unsigned int align
)
2591 struct store_by_pieces_d data
;
2596 data
.constfun
= clear_by_pieces_1
;
2597 data
.constfundata
= NULL
;
2600 store_by_pieces_1 (&data
, align
);
2603 /* Callback routine for clear_by_pieces.
2604 Return const0_rtx unconditionally. */
2607 clear_by_pieces_1 (void *data ATTRIBUTE_UNUSED
,
2608 HOST_WIDE_INT offset ATTRIBUTE_UNUSED
,
2609 enum machine_mode mode ATTRIBUTE_UNUSED
)
2614 /* Subroutine of clear_by_pieces and store_by_pieces.
2615 Generate several move instructions to store LEN bytes of block TO. (A MEM
2616 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2619 store_by_pieces_1 (struct store_by_pieces_d
*data ATTRIBUTE_UNUSED
,
2620 unsigned int align ATTRIBUTE_UNUSED
)
2622 enum machine_mode to_addr_mode
= get_address_mode (data
->to
);
2623 rtx to_addr
= XEXP (data
->to
, 0);
2624 unsigned int max_size
= STORE_MAX_PIECES
+ 1;
2625 enum insn_code icode
;
2628 data
->to_addr
= to_addr
;
2630 = (GET_CODE (to_addr
) == PRE_INC
|| GET_CODE (to_addr
) == PRE_DEC
2631 || GET_CODE (to_addr
) == POST_INC
|| GET_CODE (to_addr
) == POST_DEC
);
2633 data
->explicit_inc_to
= 0;
2635 = (GET_CODE (to_addr
) == PRE_DEC
|| GET_CODE (to_addr
) == POST_DEC
);
2637 data
->offset
= data
->len
;
2639 /* If storing requires more than two move insns,
2640 copy addresses to registers (to make displacements shorter)
2641 and use post-increment if available. */
2642 if (!data
->autinc_to
2643 && move_by_pieces_ninsns (data
->len
, align
, max_size
) > 2)
2645 /* Determine the main mode we'll be using.
2646 MODE might not be used depending on the definitions of the
2647 USE_* macros below. */
2648 enum machine_mode mode ATTRIBUTE_UNUSED
2649 = widest_int_mode_for_size (max_size
);
2651 if (USE_STORE_PRE_DECREMENT (mode
) && data
->reverse
&& ! data
->autinc_to
)
2653 data
->to_addr
= copy_to_mode_reg (to_addr_mode
,
2654 plus_constant (to_addr_mode
,
2657 data
->autinc_to
= 1;
2658 data
->explicit_inc_to
= -1;
2661 if (USE_STORE_POST_INCREMENT (mode
) && ! data
->reverse
2662 && ! data
->autinc_to
)
2664 data
->to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
2665 data
->autinc_to
= 1;
2666 data
->explicit_inc_to
= 1;
2669 if ( !data
->autinc_to
&& CONSTANT_P (to_addr
))
2670 data
->to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
2673 align
= alignment_for_piecewise_move (STORE_MAX_PIECES
, align
);
2675 /* First store what we can in the largest integer mode, then go to
2676 successively smaller modes. */
2678 while (max_size
> 1 && data
->len
> 0)
2680 enum machine_mode mode
= widest_int_mode_for_size (max_size
);
2682 if (mode
== VOIDmode
)
2685 icode
= optab_handler (mov_optab
, mode
);
2686 if (icode
!= CODE_FOR_nothing
&& align
>= GET_MODE_ALIGNMENT (mode
))
2687 store_by_pieces_2 (GEN_FCN (icode
), mode
, data
);
2689 max_size
= GET_MODE_SIZE (mode
);
2692 /* The code above should have handled everything. */
2693 gcc_assert (!data
->len
);
2696 /* Subroutine of store_by_pieces_1. Store as many bytes as appropriate
2697 with move instructions for mode MODE. GENFUN is the gen_... function
2698 to make a move insn for that mode. DATA has all the other info. */
2701 store_by_pieces_2 (insn_gen_fn genfun
, machine_mode mode
,
2702 struct store_by_pieces_d
*data
)
2704 unsigned int size
= GET_MODE_SIZE (mode
);
2707 while (data
->len
>= size
)
2710 data
->offset
-= size
;
2712 if (data
->autinc_to
)
2713 to1
= adjust_automodify_address (data
->to
, mode
, data
->to_addr
,
2716 to1
= adjust_address (data
->to
, mode
, data
->offset
);
2718 if (HAVE_PRE_DECREMENT
&& data
->explicit_inc_to
< 0)
2719 emit_insn (gen_add2_insn (data
->to_addr
,
2720 gen_int_mode (-(HOST_WIDE_INT
) size
,
2721 GET_MODE (data
->to_addr
))));
2723 cst
= (*data
->constfun
) (data
->constfundata
, data
->offset
, mode
);
2724 emit_insn ((*genfun
) (to1
, cst
));
2726 if (HAVE_POST_INCREMENT
&& data
->explicit_inc_to
> 0)
2727 emit_insn (gen_add2_insn (data
->to_addr
,
2729 GET_MODE (data
->to_addr
))));
2731 if (! data
->reverse
)
2732 data
->offset
+= size
;
2738 /* Write zeros through the storage of OBJECT. If OBJECT has BLKmode, SIZE is
2739 its length in bytes. */
2742 clear_storage_hints (rtx object
, rtx size
, enum block_op_methods method
,
2743 unsigned int expected_align
, HOST_WIDE_INT expected_size
,
2744 unsigned HOST_WIDE_INT min_size
,
2745 unsigned HOST_WIDE_INT max_size
,
2746 unsigned HOST_WIDE_INT probable_max_size
)
2748 enum machine_mode mode
= GET_MODE (object
);
2751 gcc_assert (method
== BLOCK_OP_NORMAL
|| method
== BLOCK_OP_TAILCALL
);
2753 /* If OBJECT is not BLKmode and SIZE is the same size as its mode,
2754 just move a zero. Otherwise, do this a piece at a time. */
2756 && CONST_INT_P (size
)
2757 && INTVAL (size
) == (HOST_WIDE_INT
) GET_MODE_SIZE (mode
))
2759 rtx zero
= CONST0_RTX (mode
);
2762 emit_move_insn (object
, zero
);
2766 if (COMPLEX_MODE_P (mode
))
2768 zero
= CONST0_RTX (GET_MODE_INNER (mode
));
2771 write_complex_part (object
, zero
, 0);
2772 write_complex_part (object
, zero
, 1);
2778 if (size
== const0_rtx
)
2781 align
= MEM_ALIGN (object
);
2783 if (CONST_INT_P (size
)
2784 && CLEAR_BY_PIECES_P (INTVAL (size
), align
))
2785 clear_by_pieces (object
, INTVAL (size
), align
);
2786 else if (set_storage_via_setmem (object
, size
, const0_rtx
, align
,
2787 expected_align
, expected_size
,
2788 min_size
, max_size
, probable_max_size
))
2790 else if (ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (object
)))
2791 return set_storage_via_libcall (object
, size
, const0_rtx
,
2792 method
== BLOCK_OP_TAILCALL
);
2800 clear_storage (rtx object
, rtx size
, enum block_op_methods method
)
2802 unsigned HOST_WIDE_INT max
, min
= 0;
2803 if (GET_CODE (size
) == CONST_INT
)
2804 min
= max
= UINTVAL (size
);
2806 max
= GET_MODE_MASK (GET_MODE (size
));
2807 return clear_storage_hints (object
, size
, method
, 0, -1, min
, max
, max
);
2811 /* A subroutine of clear_storage. Expand a call to memset.
2812 Return the return value of memset, 0 otherwise. */
2815 set_storage_via_libcall (rtx object
, rtx size
, rtx val
, bool tailcall
)
2817 tree call_expr
, fn
, object_tree
, size_tree
, val_tree
;
2818 enum machine_mode size_mode
;
2821 /* Emit code to copy OBJECT and SIZE into new pseudos. We can then
2822 place those into new pseudos into a VAR_DECL and use them later. */
2824 object
= copy_addr_to_reg (XEXP (object
, 0));
2826 size_mode
= TYPE_MODE (sizetype
);
2827 size
= convert_to_mode (size_mode
, size
, 1);
2828 size
= copy_to_mode_reg (size_mode
, size
);
2830 /* It is incorrect to use the libcall calling conventions to call
2831 memset in this context. This could be a user call to memset and
2832 the user may wish to examine the return value from memset. For
2833 targets where libcalls and normal calls have different conventions
2834 for returning pointers, we could end up generating incorrect code. */
2836 object_tree
= make_tree (ptr_type_node
, object
);
2837 if (!CONST_INT_P (val
))
2838 val
= convert_to_mode (TYPE_MODE (integer_type_node
), val
, 1);
2839 size_tree
= make_tree (sizetype
, size
);
2840 val_tree
= make_tree (integer_type_node
, val
);
2842 fn
= clear_storage_libcall_fn (true);
2843 call_expr
= build_call_expr (fn
, 3, object_tree
, val_tree
, size_tree
);
2844 CALL_EXPR_TAILCALL (call_expr
) = tailcall
;
2846 retval
= expand_normal (call_expr
);
2851 /* A subroutine of set_storage_via_libcall. Create the tree node
2852 for the function we use for block clears. */
2854 tree block_clear_fn
;
2857 init_block_clear_fn (const char *asmspec
)
2859 if (!block_clear_fn
)
2863 fn
= get_identifier ("memset");
2864 args
= build_function_type_list (ptr_type_node
, ptr_type_node
,
2865 integer_type_node
, sizetype
,
2868 fn
= build_decl (UNKNOWN_LOCATION
, FUNCTION_DECL
, fn
, args
);
2869 DECL_EXTERNAL (fn
) = 1;
2870 TREE_PUBLIC (fn
) = 1;
2871 DECL_ARTIFICIAL (fn
) = 1;
2872 TREE_NOTHROW (fn
) = 1;
2873 DECL_VISIBILITY (fn
) = VISIBILITY_DEFAULT
;
2874 DECL_VISIBILITY_SPECIFIED (fn
) = 1;
2876 block_clear_fn
= fn
;
2880 set_user_assembler_name (block_clear_fn
, asmspec
);
2884 clear_storage_libcall_fn (int for_call
)
2886 static bool emitted_extern
;
2888 if (!block_clear_fn
)
2889 init_block_clear_fn (NULL
);
2891 if (for_call
&& !emitted_extern
)
2893 emitted_extern
= true;
2894 make_decl_rtl (block_clear_fn
);
2897 return block_clear_fn
;
2900 /* Expand a setmem pattern; return true if successful. */
2903 set_storage_via_setmem (rtx object
, rtx size
, rtx val
, unsigned int align
,
2904 unsigned int expected_align
, HOST_WIDE_INT expected_size
,
2905 unsigned HOST_WIDE_INT min_size
,
2906 unsigned HOST_WIDE_INT max_size
,
2907 unsigned HOST_WIDE_INT probable_max_size
)
2909 /* Try the most limited insn first, because there's no point
2910 including more than one in the machine description unless
2911 the more limited one has some advantage. */
2913 enum machine_mode mode
;
2915 if (expected_align
< align
)
2916 expected_align
= align
;
2917 if (expected_size
!= -1)
2919 if ((unsigned HOST_WIDE_INT
)expected_size
> max_size
)
2920 expected_size
= max_size
;
2921 if ((unsigned HOST_WIDE_INT
)expected_size
< min_size
)
2922 expected_size
= min_size
;
2925 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
); mode
!= VOIDmode
;
2926 mode
= GET_MODE_WIDER_MODE (mode
))
2928 enum insn_code code
= direct_optab_handler (setmem_optab
, mode
);
2930 if (code
!= CODE_FOR_nothing
2931 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
2932 here because if SIZE is less than the mode mask, as it is
2933 returned by the macro, it will definitely be less than the
2934 actual mode mask. Since SIZE is within the Pmode address
2935 space, we limit MODE to Pmode. */
2936 && ((CONST_INT_P (size
)
2937 && ((unsigned HOST_WIDE_INT
) INTVAL (size
)
2938 <= (GET_MODE_MASK (mode
) >> 1)))
2939 || max_size
<= (GET_MODE_MASK (mode
) >> 1)
2940 || GET_MODE_BITSIZE (mode
) >= GET_MODE_BITSIZE (Pmode
)))
2942 struct expand_operand ops
[9];
2945 nops
= insn_data
[(int) code
].n_generator_args
;
2946 gcc_assert (nops
== 4 || nops
== 6 || nops
== 8 || nops
== 9);
2948 create_fixed_operand (&ops
[0], object
);
2949 /* The check above guarantees that this size conversion is valid. */
2950 create_convert_operand_to (&ops
[1], size
, mode
, true);
2951 create_convert_operand_from (&ops
[2], val
, byte_mode
, true);
2952 create_integer_operand (&ops
[3], align
/ BITS_PER_UNIT
);
2955 create_integer_operand (&ops
[4], expected_align
/ BITS_PER_UNIT
);
2956 create_integer_operand (&ops
[5], expected_size
);
2960 create_integer_operand (&ops
[6], min_size
);
2961 /* If we can not represent the maximal size,
2962 make parameter NULL. */
2963 if ((HOST_WIDE_INT
) max_size
!= -1)
2964 create_integer_operand (&ops
[7], max_size
);
2966 create_fixed_operand (&ops
[7], NULL
);
2970 /* If we can not represent the maximal size,
2971 make parameter NULL. */
2972 if ((HOST_WIDE_INT
) probable_max_size
!= -1)
2973 create_integer_operand (&ops
[8], probable_max_size
);
2975 create_fixed_operand (&ops
[8], NULL
);
2977 if (maybe_expand_insn (code
, nops
, ops
))
2986 /* Write to one of the components of the complex value CPLX. Write VAL to
2987 the real part if IMAG_P is false, and the imaginary part if its true. */
2990 write_complex_part (rtx cplx
, rtx val
, bool imag_p
)
2992 enum machine_mode cmode
;
2993 enum machine_mode imode
;
2996 if (GET_CODE (cplx
) == CONCAT
)
2998 emit_move_insn (XEXP (cplx
, imag_p
), val
);
3002 cmode
= GET_MODE (cplx
);
3003 imode
= GET_MODE_INNER (cmode
);
3004 ibitsize
= GET_MODE_BITSIZE (imode
);
3006 /* For MEMs simplify_gen_subreg may generate an invalid new address
3007 because, e.g., the original address is considered mode-dependent
3008 by the target, which restricts simplify_subreg from invoking
3009 adjust_address_nv. Instead of preparing fallback support for an
3010 invalid address, we call adjust_address_nv directly. */
3013 emit_move_insn (adjust_address_nv (cplx
, imode
,
3014 imag_p
? GET_MODE_SIZE (imode
) : 0),
3019 /* If the sub-object is at least word sized, then we know that subregging
3020 will work. This special case is important, since store_bit_field
3021 wants to operate on integer modes, and there's rarely an OImode to
3022 correspond to TCmode. */
3023 if (ibitsize
>= BITS_PER_WORD
3024 /* For hard regs we have exact predicates. Assume we can split
3025 the original object if it spans an even number of hard regs.
3026 This special case is important for SCmode on 64-bit platforms
3027 where the natural size of floating-point regs is 32-bit. */
3029 && REGNO (cplx
) < FIRST_PSEUDO_REGISTER
3030 && hard_regno_nregs
[REGNO (cplx
)][cmode
] % 2 == 0))
3032 rtx part
= simplify_gen_subreg (imode
, cplx
, cmode
,
3033 imag_p
? GET_MODE_SIZE (imode
) : 0);
3036 emit_move_insn (part
, val
);
3040 /* simplify_gen_subreg may fail for sub-word MEMs. */
3041 gcc_assert (MEM_P (cplx
) && ibitsize
< BITS_PER_WORD
);
3044 store_bit_field (cplx
, ibitsize
, imag_p
? ibitsize
: 0, 0, 0, imode
, val
);
3047 /* Extract one of the components of the complex value CPLX. Extract the
3048 real part if IMAG_P is false, and the imaginary part if it's true. */
3051 read_complex_part (rtx cplx
, bool imag_p
)
3053 enum machine_mode cmode
, imode
;
3056 if (GET_CODE (cplx
) == CONCAT
)
3057 return XEXP (cplx
, imag_p
);
3059 cmode
= GET_MODE (cplx
);
3060 imode
= GET_MODE_INNER (cmode
);
3061 ibitsize
= GET_MODE_BITSIZE (imode
);
3063 /* Special case reads from complex constants that got spilled to memory. */
3064 if (MEM_P (cplx
) && GET_CODE (XEXP (cplx
, 0)) == SYMBOL_REF
)
3066 tree decl
= SYMBOL_REF_DECL (XEXP (cplx
, 0));
3067 if (decl
&& TREE_CODE (decl
) == COMPLEX_CST
)
3069 tree part
= imag_p
? TREE_IMAGPART (decl
) : TREE_REALPART (decl
);
3070 if (CONSTANT_CLASS_P (part
))
3071 return expand_expr (part
, NULL_RTX
, imode
, EXPAND_NORMAL
);
3075 /* For MEMs simplify_gen_subreg may generate an invalid new address
3076 because, e.g., the original address is considered mode-dependent
3077 by the target, which restricts simplify_subreg from invoking
3078 adjust_address_nv. Instead of preparing fallback support for an
3079 invalid address, we call adjust_address_nv directly. */
3081 return adjust_address_nv (cplx
, imode
,
3082 imag_p
? GET_MODE_SIZE (imode
) : 0);
3084 /* If the sub-object is at least word sized, then we know that subregging
3085 will work. This special case is important, since extract_bit_field
3086 wants to operate on integer modes, and there's rarely an OImode to
3087 correspond to TCmode. */
3088 if (ibitsize
>= BITS_PER_WORD
3089 /* For hard regs we have exact predicates. Assume we can split
3090 the original object if it spans an even number of hard regs.
3091 This special case is important for SCmode on 64-bit platforms
3092 where the natural size of floating-point regs is 32-bit. */
3094 && REGNO (cplx
) < FIRST_PSEUDO_REGISTER
3095 && hard_regno_nregs
[REGNO (cplx
)][cmode
] % 2 == 0))
3097 rtx ret
= simplify_gen_subreg (imode
, cplx
, cmode
,
3098 imag_p
? GET_MODE_SIZE (imode
) : 0);
3102 /* simplify_gen_subreg may fail for sub-word MEMs. */
3103 gcc_assert (MEM_P (cplx
) && ibitsize
< BITS_PER_WORD
);
3106 return extract_bit_field (cplx
, ibitsize
, imag_p
? ibitsize
: 0,
3107 true, NULL_RTX
, imode
, imode
);
3110 /* A subroutine of emit_move_insn_1. Yet another lowpart generator.
3111 NEW_MODE and OLD_MODE are the same size. Return NULL if X cannot be
3112 represented in NEW_MODE. If FORCE is true, this will never happen, as
3113 we'll force-create a SUBREG if needed. */
3116 emit_move_change_mode (enum machine_mode new_mode
,
3117 enum machine_mode old_mode
, rtx x
, bool force
)
3121 if (push_operand (x
, GET_MODE (x
)))
3123 ret
= gen_rtx_MEM (new_mode
, XEXP (x
, 0));
3124 MEM_COPY_ATTRIBUTES (ret
, x
);
3128 /* We don't have to worry about changing the address since the
3129 size in bytes is supposed to be the same. */
3130 if (reload_in_progress
)
3132 /* Copy the MEM to change the mode and move any
3133 substitutions from the old MEM to the new one. */
3134 ret
= adjust_address_nv (x
, new_mode
, 0);
3135 copy_replacements (x
, ret
);
3138 ret
= adjust_address (x
, new_mode
, 0);
3142 /* Note that we do want simplify_subreg's behavior of validating
3143 that the new mode is ok for a hard register. If we were to use
3144 simplify_gen_subreg, we would create the subreg, but would
3145 probably run into the target not being able to implement it. */
3146 /* Except, of course, when FORCE is true, when this is exactly what
3147 we want. Which is needed for CCmodes on some targets. */
3149 ret
= simplify_gen_subreg (new_mode
, x
, old_mode
, 0);
3151 ret
= simplify_subreg (new_mode
, x
, old_mode
, 0);
3157 /* A subroutine of emit_move_insn_1. Generate a move from Y into X using
3158 an integer mode of the same size as MODE. Returns the instruction
3159 emitted, or NULL if such a move could not be generated. */
3162 emit_move_via_integer (enum machine_mode mode
, rtx x
, rtx y
, bool force
)
3164 enum machine_mode imode
;
3165 enum insn_code code
;
3167 /* There must exist a mode of the exact size we require. */
3168 imode
= int_mode_for_mode (mode
);
3169 if (imode
== BLKmode
)
3172 /* The target must support moves in this mode. */
3173 code
= optab_handler (mov_optab
, imode
);
3174 if (code
== CODE_FOR_nothing
)
3177 x
= emit_move_change_mode (imode
, mode
, x
, force
);
3180 y
= emit_move_change_mode (imode
, mode
, y
, force
);
3183 return emit_insn (GEN_FCN (code
) (x
, y
));
3186 /* A subroutine of emit_move_insn_1. X is a push_operand in MODE.
3187 Return an equivalent MEM that does not use an auto-increment. */
3190 emit_move_resolve_push (enum machine_mode mode
, rtx x
)
3192 enum rtx_code code
= GET_CODE (XEXP (x
, 0));
3193 HOST_WIDE_INT adjust
;
3196 adjust
= GET_MODE_SIZE (mode
);
3197 #ifdef PUSH_ROUNDING
3198 adjust
= PUSH_ROUNDING (adjust
);
3200 if (code
== PRE_DEC
|| code
== POST_DEC
)
3202 else if (code
== PRE_MODIFY
|| code
== POST_MODIFY
)
3204 rtx expr
= XEXP (XEXP (x
, 0), 1);
3207 gcc_assert (GET_CODE (expr
) == PLUS
|| GET_CODE (expr
) == MINUS
);
3208 gcc_assert (CONST_INT_P (XEXP (expr
, 1)));
3209 val
= INTVAL (XEXP (expr
, 1));
3210 if (GET_CODE (expr
) == MINUS
)
3212 gcc_assert (adjust
== val
|| adjust
== -val
);
3216 /* Do not use anti_adjust_stack, since we don't want to update
3217 stack_pointer_delta. */
3218 temp
= expand_simple_binop (Pmode
, PLUS
, stack_pointer_rtx
,
3219 gen_int_mode (adjust
, Pmode
), stack_pointer_rtx
,
3220 0, OPTAB_LIB_WIDEN
);
3221 if (temp
!= stack_pointer_rtx
)
3222 emit_move_insn (stack_pointer_rtx
, temp
);
3229 temp
= stack_pointer_rtx
;
3234 temp
= plus_constant (Pmode
, stack_pointer_rtx
, -adjust
);
3240 return replace_equiv_address (x
, temp
);
3243 /* A subroutine of emit_move_complex. Generate a move from Y into X.
3244 X is known to satisfy push_operand, and MODE is known to be complex.
3245 Returns the last instruction emitted. */
3248 emit_move_complex_push (enum machine_mode mode
, rtx x
, rtx y
)
3250 enum machine_mode submode
= GET_MODE_INNER (mode
);
3253 #ifdef PUSH_ROUNDING
3254 unsigned int submodesize
= GET_MODE_SIZE (submode
);
3256 /* In case we output to the stack, but the size is smaller than the
3257 machine can push exactly, we need to use move instructions. */
3258 if (PUSH_ROUNDING (submodesize
) != submodesize
)
3260 x
= emit_move_resolve_push (mode
, x
);
3261 return emit_move_insn (x
, y
);
3265 /* Note that the real part always precedes the imag part in memory
3266 regardless of machine's endianness. */
3267 switch (GET_CODE (XEXP (x
, 0)))
3281 emit_move_insn (gen_rtx_MEM (submode
, XEXP (x
, 0)),
3282 read_complex_part (y
, imag_first
));
3283 return emit_move_insn (gen_rtx_MEM (submode
, XEXP (x
, 0)),
3284 read_complex_part (y
, !imag_first
));
3287 /* A subroutine of emit_move_complex. Perform the move from Y to X
3288 via two moves of the parts. Returns the last instruction emitted. */
3291 emit_move_complex_parts (rtx x
, rtx y
)
3293 /* Show the output dies here. This is necessary for SUBREGs
3294 of pseudos since we cannot track their lifetimes correctly;
3295 hard regs shouldn't appear here except as return values. */
3296 if (!reload_completed
&& !reload_in_progress
3297 && REG_P (x
) && !reg_overlap_mentioned_p (x
, y
))
3300 write_complex_part (x
, read_complex_part (y
, false), false);
3301 write_complex_part (x
, read_complex_part (y
, true), true);
3303 return get_last_insn ();
3306 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3307 MODE is known to be complex. Returns the last instruction emitted. */
3310 emit_move_complex (enum machine_mode mode
, rtx x
, rtx y
)
3314 /* Need to take special care for pushes, to maintain proper ordering
3315 of the data, and possibly extra padding. */
3316 if (push_operand (x
, mode
))
3317 return emit_move_complex_push (mode
, x
, y
);
3319 /* See if we can coerce the target into moving both values at once, except
3320 for floating point where we favor moving as parts if this is easy. */
3321 if (GET_MODE_CLASS (mode
) == MODE_COMPLEX_FLOAT
3322 && optab_handler (mov_optab
, GET_MODE_INNER (mode
)) != CODE_FOR_nothing
3324 && HARD_REGISTER_P (x
)
3325 && hard_regno_nregs
[REGNO (x
)][mode
] == 1)
3327 && HARD_REGISTER_P (y
)
3328 && hard_regno_nregs
[REGNO (y
)][mode
] == 1))
3330 /* Not possible if the values are inherently not adjacent. */
3331 else if (GET_CODE (x
) == CONCAT
|| GET_CODE (y
) == CONCAT
)
3333 /* Is possible if both are registers (or subregs of registers). */
3334 else if (register_operand (x
, mode
) && register_operand (y
, mode
))
3336 /* If one of the operands is a memory, and alignment constraints
3337 are friendly enough, we may be able to do combined memory operations.
3338 We do not attempt this if Y is a constant because that combination is
3339 usually better with the by-parts thing below. */
3340 else if ((MEM_P (x
) ? !CONSTANT_P (y
) : MEM_P (y
))
3341 && (!STRICT_ALIGNMENT
3342 || get_mode_alignment (mode
) == BIGGEST_ALIGNMENT
))
3351 /* For memory to memory moves, optimal behavior can be had with the
3352 existing block move logic. */
3353 if (MEM_P (x
) && MEM_P (y
))
3355 emit_block_move (x
, y
, GEN_INT (GET_MODE_SIZE (mode
)),
3356 BLOCK_OP_NO_LIBCALL
);
3357 return get_last_insn ();
3360 ret
= emit_move_via_integer (mode
, x
, y
, true);
3365 return emit_move_complex_parts (x
, y
);
3368 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3369 MODE is known to be MODE_CC. Returns the last instruction emitted. */
3372 emit_move_ccmode (enum machine_mode mode
, rtx x
, rtx y
)
3376 /* Assume all MODE_CC modes are equivalent; if we have movcc, use it. */
3379 enum insn_code code
= optab_handler (mov_optab
, CCmode
);
3380 if (code
!= CODE_FOR_nothing
)
3382 x
= emit_move_change_mode (CCmode
, mode
, x
, true);
3383 y
= emit_move_change_mode (CCmode
, mode
, y
, true);
3384 return emit_insn (GEN_FCN (code
) (x
, y
));
3388 /* Otherwise, find the MODE_INT mode of the same width. */
3389 ret
= emit_move_via_integer (mode
, x
, y
, false);
3390 gcc_assert (ret
!= NULL
);
3394 /* Return true if word I of OP lies entirely in the
3395 undefined bits of a paradoxical subreg. */
3398 undefined_operand_subword_p (const_rtx op
, int i
)
3400 enum machine_mode innermode
, innermostmode
;
3402 if (GET_CODE (op
) != SUBREG
)
3404 innermode
= GET_MODE (op
);
3405 innermostmode
= GET_MODE (SUBREG_REG (op
));
3406 offset
= i
* UNITS_PER_WORD
+ SUBREG_BYTE (op
);
3407 /* The SUBREG_BYTE represents offset, as if the value were stored in
3408 memory, except for a paradoxical subreg where we define
3409 SUBREG_BYTE to be 0; undo this exception as in
3411 if (SUBREG_BYTE (op
) == 0
3412 && GET_MODE_SIZE (innermostmode
) < GET_MODE_SIZE (innermode
))
3414 int difference
= (GET_MODE_SIZE (innermostmode
) - GET_MODE_SIZE (innermode
));
3415 if (WORDS_BIG_ENDIAN
)
3416 offset
+= (difference
/ UNITS_PER_WORD
) * UNITS_PER_WORD
;
3417 if (BYTES_BIG_ENDIAN
)
3418 offset
+= difference
% UNITS_PER_WORD
;
3420 if (offset
>= GET_MODE_SIZE (innermostmode
)
3421 || offset
<= -GET_MODE_SIZE (word_mode
))
3426 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3427 MODE is any multi-word or full-word mode that lacks a move_insn
3428 pattern. Note that you will get better code if you define such
3429 patterns, even if they must turn into multiple assembler instructions. */
3432 emit_move_multi_word (enum machine_mode mode
, rtx x
, rtx y
)
3439 gcc_assert (GET_MODE_SIZE (mode
) >= UNITS_PER_WORD
);
3441 /* If X is a push on the stack, do the push now and replace
3442 X with a reference to the stack pointer. */
3443 if (push_operand (x
, mode
))
3444 x
= emit_move_resolve_push (mode
, x
);
3446 /* If we are in reload, see if either operand is a MEM whose address
3447 is scheduled for replacement. */
3448 if (reload_in_progress
&& MEM_P (x
)
3449 && (inner
= find_replacement (&XEXP (x
, 0))) != XEXP (x
, 0))
3450 x
= replace_equiv_address_nv (x
, inner
);
3451 if (reload_in_progress
&& MEM_P (y
)
3452 && (inner
= find_replacement (&XEXP (y
, 0))) != XEXP (y
, 0))
3453 y
= replace_equiv_address_nv (y
, inner
);
3457 need_clobber
= false;
3459 i
< (GET_MODE_SIZE (mode
) + (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
;
3462 rtx xpart
= operand_subword (x
, i
, 1, mode
);
3465 /* Do not generate code for a move if it would come entirely
3466 from the undefined bits of a paradoxical subreg. */
3467 if (undefined_operand_subword_p (y
, i
))
3470 ypart
= operand_subword (y
, i
, 1, mode
);
3472 /* If we can't get a part of Y, put Y into memory if it is a
3473 constant. Otherwise, force it into a register. Then we must
3474 be able to get a part of Y. */
3475 if (ypart
== 0 && CONSTANT_P (y
))
3477 y
= use_anchored_address (force_const_mem (mode
, y
));
3478 ypart
= operand_subword (y
, i
, 1, mode
);
3480 else if (ypart
== 0)
3481 ypart
= operand_subword_force (y
, i
, mode
);
3483 gcc_assert (xpart
&& ypart
);
3485 need_clobber
|= (GET_CODE (xpart
) == SUBREG
);
3487 last_insn
= emit_move_insn (xpart
, ypart
);
3493 /* Show the output dies here. This is necessary for SUBREGs
3494 of pseudos since we cannot track their lifetimes correctly;
3495 hard regs shouldn't appear here except as return values.
3496 We never want to emit such a clobber after reload. */
3498 && ! (reload_in_progress
|| reload_completed
)
3499 && need_clobber
!= 0)
3507 /* Low level part of emit_move_insn.
3508 Called just like emit_move_insn, but assumes X and Y
3509 are basically valid. */
3512 emit_move_insn_1 (rtx x
, rtx y
)
3514 enum machine_mode mode
= GET_MODE (x
);
3515 enum insn_code code
;
3517 gcc_assert ((unsigned int) mode
< (unsigned int) MAX_MACHINE_MODE
);
3519 code
= optab_handler (mov_optab
, mode
);
3520 if (code
!= CODE_FOR_nothing
)
3521 return emit_insn (GEN_FCN (code
) (x
, y
));
3523 /* Expand complex moves by moving real part and imag part. */
3524 if (COMPLEX_MODE_P (mode
))
3525 return emit_move_complex (mode
, x
, y
);
3527 if (GET_MODE_CLASS (mode
) == MODE_DECIMAL_FLOAT
3528 || ALL_FIXED_POINT_MODE_P (mode
))
3530 rtx result
= emit_move_via_integer (mode
, x
, y
, true);
3532 /* If we can't find an integer mode, use multi words. */
3536 return emit_move_multi_word (mode
, x
, y
);
3539 if (GET_MODE_CLASS (mode
) == MODE_CC
)
3540 return emit_move_ccmode (mode
, x
, y
);
3542 /* Try using a move pattern for the corresponding integer mode. This is
3543 only safe when simplify_subreg can convert MODE constants into integer
3544 constants. At present, it can only do this reliably if the value
3545 fits within a HOST_WIDE_INT. */
3546 if (!CONSTANT_P (y
) || GET_MODE_BITSIZE (mode
) <= HOST_BITS_PER_WIDE_INT
)
3548 rtx ret
= emit_move_via_integer (mode
, x
, y
, lra_in_progress
);
3552 if (! lra_in_progress
|| recog (PATTERN (ret
), ret
, 0) >= 0)
3557 return emit_move_multi_word (mode
, x
, y
);
3560 /* Generate code to copy Y into X.
3561 Both Y and X must have the same mode, except that
3562 Y can be a constant with VOIDmode.
3563 This mode cannot be BLKmode; use emit_block_move for that.
3565 Return the last instruction emitted. */
3568 emit_move_insn (rtx x
, rtx y
)
3570 enum machine_mode mode
= GET_MODE (x
);
3571 rtx y_cst
= NULL_RTX
;
3574 gcc_assert (mode
!= BLKmode
3575 && (GET_MODE (y
) == mode
|| GET_MODE (y
) == VOIDmode
));
3580 && SCALAR_FLOAT_MODE_P (GET_MODE (x
))
3581 && (last_insn
= compress_float_constant (x
, y
)))
3586 if (!targetm
.legitimate_constant_p (mode
, y
))
3588 y
= force_const_mem (mode
, y
);
3590 /* If the target's cannot_force_const_mem prevented the spill,
3591 assume that the target's move expanders will also take care
3592 of the non-legitimate constant. */
3596 y
= use_anchored_address (y
);
3600 /* If X or Y are memory references, verify that their addresses are valid
3603 && (! memory_address_addr_space_p (GET_MODE (x
), XEXP (x
, 0),
3605 && ! push_operand (x
, GET_MODE (x
))))
3606 x
= validize_mem (x
);
3609 && ! memory_address_addr_space_p (GET_MODE (y
), XEXP (y
, 0),
3610 MEM_ADDR_SPACE (y
)))
3611 y
= validize_mem (y
);
3613 gcc_assert (mode
!= BLKmode
);
3615 last_insn
= emit_move_insn_1 (x
, y
);
3617 if (y_cst
&& REG_P (x
)
3618 && (set
= single_set (last_insn
)) != NULL_RTX
3619 && SET_DEST (set
) == x
3620 && ! rtx_equal_p (y_cst
, SET_SRC (set
)))
3621 set_unique_reg_note (last_insn
, REG_EQUAL
, copy_rtx (y_cst
));
3626 /* If Y is representable exactly in a narrower mode, and the target can
3627 perform the extension directly from constant or memory, then emit the
3628 move as an extension. */
3631 compress_float_constant (rtx x
, rtx y
)
3633 enum machine_mode dstmode
= GET_MODE (x
);
3634 enum machine_mode orig_srcmode
= GET_MODE (y
);
3635 enum machine_mode srcmode
;
3637 int oldcost
, newcost
;
3638 bool speed
= optimize_insn_for_speed_p ();
3640 REAL_VALUE_FROM_CONST_DOUBLE (r
, y
);
3642 if (targetm
.legitimate_constant_p (dstmode
, y
))
3643 oldcost
= set_src_cost (y
, speed
);
3645 oldcost
= set_src_cost (force_const_mem (dstmode
, y
), speed
);
3647 for (srcmode
= GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_srcmode
));
3648 srcmode
!= orig_srcmode
;
3649 srcmode
= GET_MODE_WIDER_MODE (srcmode
))
3652 rtx trunc_y
, last_insn
;
3654 /* Skip if the target can't extend this way. */
3655 ic
= can_extend_p (dstmode
, srcmode
, 0);
3656 if (ic
== CODE_FOR_nothing
)
3659 /* Skip if the narrowed value isn't exact. */
3660 if (! exact_real_truncate (srcmode
, &r
))
3663 trunc_y
= CONST_DOUBLE_FROM_REAL_VALUE (r
, srcmode
);
3665 if (targetm
.legitimate_constant_p (srcmode
, trunc_y
))
3667 /* Skip if the target needs extra instructions to perform
3669 if (!insn_operand_matches (ic
, 1, trunc_y
))
3671 /* This is valid, but may not be cheaper than the original. */
3672 newcost
= set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode
, trunc_y
),
3674 if (oldcost
< newcost
)
3677 else if (float_extend_from_mem
[dstmode
][srcmode
])
3679 trunc_y
= force_const_mem (srcmode
, trunc_y
);
3680 /* This is valid, but may not be cheaper than the original. */
3681 newcost
= set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode
, trunc_y
),
3683 if (oldcost
< newcost
)
3685 trunc_y
= validize_mem (trunc_y
);
3690 /* For CSE's benefit, force the compressed constant pool entry
3691 into a new pseudo. This constant may be used in different modes,
3692 and if not, combine will put things back together for us. */
3693 trunc_y
= force_reg (srcmode
, trunc_y
);
3695 /* If x is a hard register, perform the extension into a pseudo,
3696 so that e.g. stack realignment code is aware of it. */
3698 if (REG_P (x
) && HARD_REGISTER_P (x
))
3699 target
= gen_reg_rtx (dstmode
);
3701 emit_unop_insn (ic
, target
, trunc_y
, UNKNOWN
);
3702 last_insn
= get_last_insn ();
3705 set_unique_reg_note (last_insn
, REG_EQUAL
, y
);
3708 return emit_move_insn (x
, target
);
3715 /* Pushing data onto the stack. */
3717 /* Push a block of length SIZE (perhaps variable)
3718 and return an rtx to address the beginning of the block.
3719 The value may be virtual_outgoing_args_rtx.
3721 EXTRA is the number of bytes of padding to push in addition to SIZE.
3722 BELOW nonzero means this padding comes at low addresses;
3723 otherwise, the padding comes at high addresses. */
3726 push_block (rtx size
, int extra
, int below
)
3730 size
= convert_modes (Pmode
, ptr_mode
, size
, 1);
3731 if (CONSTANT_P (size
))
3732 anti_adjust_stack (plus_constant (Pmode
, size
, extra
));
3733 else if (REG_P (size
) && extra
== 0)
3734 anti_adjust_stack (size
);
3737 temp
= copy_to_mode_reg (Pmode
, size
);
3739 temp
= expand_binop (Pmode
, add_optab
, temp
,
3740 gen_int_mode (extra
, Pmode
),
3741 temp
, 0, OPTAB_LIB_WIDEN
);
3742 anti_adjust_stack (temp
);
3745 #ifndef STACK_GROWS_DOWNWARD
3751 temp
= virtual_outgoing_args_rtx
;
3752 if (extra
!= 0 && below
)
3753 temp
= plus_constant (Pmode
, temp
, extra
);
3757 if (CONST_INT_P (size
))
3758 temp
= plus_constant (Pmode
, virtual_outgoing_args_rtx
,
3759 -INTVAL (size
) - (below
? 0 : extra
));
3760 else if (extra
!= 0 && !below
)
3761 temp
= gen_rtx_PLUS (Pmode
, virtual_outgoing_args_rtx
,
3762 negate_rtx (Pmode
, plus_constant (Pmode
, size
,
3765 temp
= gen_rtx_PLUS (Pmode
, virtual_outgoing_args_rtx
,
3766 negate_rtx (Pmode
, size
));
3769 return memory_address (GET_CLASS_NARROWEST_MODE (MODE_INT
), temp
);
3772 /* A utility routine that returns the base of an auto-inc memory, or NULL. */
3775 mem_autoinc_base (rtx mem
)
3779 rtx addr
= XEXP (mem
, 0);
3780 if (GET_RTX_CLASS (GET_CODE (addr
)) == RTX_AUTOINC
)
3781 return XEXP (addr
, 0);
3786 /* A utility routine used here, in reload, and in try_split. The insns
3787 after PREV up to and including LAST are known to adjust the stack,
3788 with a final value of END_ARGS_SIZE. Iterate backward from LAST
3789 placing notes as appropriate. PREV may be NULL, indicating the
3790 entire insn sequence prior to LAST should be scanned.
3792 The set of allowed stack pointer modifications is small:
3793 (1) One or more auto-inc style memory references (aka pushes),
3794 (2) One or more addition/subtraction with the SP as destination,
3795 (3) A single move insn with the SP as destination,
3796 (4) A call_pop insn,
3797 (5) Noreturn call insns if !ACCUMULATE_OUTGOING_ARGS.
3799 Insns in the sequence that do not modify the SP are ignored,
3800 except for noreturn calls.
3802 The return value is the amount of adjustment that can be trivially
3803 verified, via immediate operand or auto-inc. If the adjustment
3804 cannot be trivially extracted, the return value is INT_MIN. */
3807 find_args_size_adjust (rtx insn
)
3812 pat
= PATTERN (insn
);
3815 /* Look for a call_pop pattern. */
3818 /* We have to allow non-call_pop patterns for the case
3819 of emit_single_push_insn of a TLS address. */
3820 if (GET_CODE (pat
) != PARALLEL
)
3823 /* All call_pop have a stack pointer adjust in the parallel.
3824 The call itself is always first, and the stack adjust is
3825 usually last, so search from the end. */
3826 for (i
= XVECLEN (pat
, 0) - 1; i
> 0; --i
)
3828 set
= XVECEXP (pat
, 0, i
);
3829 if (GET_CODE (set
) != SET
)
3831 dest
= SET_DEST (set
);
3832 if (dest
== stack_pointer_rtx
)
3835 /* We'd better have found the stack pointer adjust. */
3838 /* Fall through to process the extracted SET and DEST
3839 as if it was a standalone insn. */
3841 else if (GET_CODE (pat
) == SET
)
3843 else if ((set
= single_set (insn
)) != NULL
)
3845 else if (GET_CODE (pat
) == PARALLEL
)
3847 /* ??? Some older ports use a parallel with a stack adjust
3848 and a store for a PUSH_ROUNDING pattern, rather than a
3849 PRE/POST_MODIFY rtx. Don't force them to update yet... */
3850 /* ??? See h8300 and m68k, pushqi1. */
3851 for (i
= XVECLEN (pat
, 0) - 1; i
>= 0; --i
)
3853 set
= XVECEXP (pat
, 0, i
);
3854 if (GET_CODE (set
) != SET
)
3856 dest
= SET_DEST (set
);
3857 if (dest
== stack_pointer_rtx
)
3860 /* We do not expect an auto-inc of the sp in the parallel. */
3861 gcc_checking_assert (mem_autoinc_base (dest
) != stack_pointer_rtx
);
3862 gcc_checking_assert (mem_autoinc_base (SET_SRC (set
))
3863 != stack_pointer_rtx
);
3871 dest
= SET_DEST (set
);
3873 /* Look for direct modifications of the stack pointer. */
3874 if (REG_P (dest
) && REGNO (dest
) == STACK_POINTER_REGNUM
)
3876 /* Look for a trivial adjustment, otherwise assume nothing. */
3877 /* Note that the SPU restore_stack_block pattern refers to
3878 the stack pointer in V4SImode. Consider that non-trivial. */
3879 if (SCALAR_INT_MODE_P (GET_MODE (dest
))
3880 && GET_CODE (SET_SRC (set
)) == PLUS
3881 && XEXP (SET_SRC (set
), 0) == stack_pointer_rtx
3882 && CONST_INT_P (XEXP (SET_SRC (set
), 1)))
3883 return INTVAL (XEXP (SET_SRC (set
), 1));
3884 /* ??? Reload can generate no-op moves, which will be cleaned
3885 up later. Recognize it and continue searching. */
3886 else if (rtx_equal_p (dest
, SET_SRC (set
)))
3889 return HOST_WIDE_INT_MIN
;
3895 /* Otherwise only think about autoinc patterns. */
3896 if (mem_autoinc_base (dest
) == stack_pointer_rtx
)
3899 gcc_checking_assert (mem_autoinc_base (SET_SRC (set
))
3900 != stack_pointer_rtx
);
3902 else if (mem_autoinc_base (SET_SRC (set
)) == stack_pointer_rtx
)
3903 mem
= SET_SRC (set
);
3907 addr
= XEXP (mem
, 0);
3908 switch (GET_CODE (addr
))
3912 return GET_MODE_SIZE (GET_MODE (mem
));
3915 return -GET_MODE_SIZE (GET_MODE (mem
));
3918 addr
= XEXP (addr
, 1);
3919 gcc_assert (GET_CODE (addr
) == PLUS
);
3920 gcc_assert (XEXP (addr
, 0) == stack_pointer_rtx
);
3921 gcc_assert (CONST_INT_P (XEXP (addr
, 1)));
3922 return INTVAL (XEXP (addr
, 1));
3930 fixup_args_size_notes (rtx prev
, rtx last
, int end_args_size
)
3932 int args_size
= end_args_size
;
3933 bool saw_unknown
= false;
3936 for (insn
= last
; insn
!= prev
; insn
= PREV_INSN (insn
))
3938 HOST_WIDE_INT this_delta
;
3940 if (!NONDEBUG_INSN_P (insn
))
3943 this_delta
= find_args_size_adjust (insn
);
3944 if (this_delta
== 0)
3947 || ACCUMULATE_OUTGOING_ARGS
3948 || find_reg_note (insn
, REG_NORETURN
, NULL_RTX
) == NULL_RTX
)
3952 gcc_assert (!saw_unknown
);
3953 if (this_delta
== HOST_WIDE_INT_MIN
)
3956 add_reg_note (insn
, REG_ARGS_SIZE
, GEN_INT (args_size
));
3957 #ifdef STACK_GROWS_DOWNWARD
3958 this_delta
= -(unsigned HOST_WIDE_INT
) this_delta
;
3960 args_size
-= this_delta
;
3963 return saw_unknown
? INT_MIN
: args_size
;
3966 #ifdef PUSH_ROUNDING
3967 /* Emit single push insn. */
3970 emit_single_push_insn_1 (enum machine_mode mode
, rtx x
, tree type
)
3973 unsigned rounded_size
= PUSH_ROUNDING (GET_MODE_SIZE (mode
));
3975 enum insn_code icode
;
3977 stack_pointer_delta
+= PUSH_ROUNDING (GET_MODE_SIZE (mode
));
3978 /* If there is push pattern, use it. Otherwise try old way of throwing
3979 MEM representing push operation to move expander. */
3980 icode
= optab_handler (push_optab
, mode
);
3981 if (icode
!= CODE_FOR_nothing
)
3983 struct expand_operand ops
[1];
3985 create_input_operand (&ops
[0], x
, mode
);
3986 if (maybe_expand_insn (icode
, 1, ops
))
3989 if (GET_MODE_SIZE (mode
) == rounded_size
)
3990 dest_addr
= gen_rtx_fmt_e (STACK_PUSH_CODE
, Pmode
, stack_pointer_rtx
);
3991 /* If we are to pad downward, adjust the stack pointer first and
3992 then store X into the stack location using an offset. This is
3993 because emit_move_insn does not know how to pad; it does not have
3995 else if (FUNCTION_ARG_PADDING (mode
, type
) == downward
)
3997 unsigned padding_size
= rounded_size
- GET_MODE_SIZE (mode
);
3998 HOST_WIDE_INT offset
;
4000 emit_move_insn (stack_pointer_rtx
,
4001 expand_binop (Pmode
,
4002 #ifdef STACK_GROWS_DOWNWARD
4008 gen_int_mode (rounded_size
, Pmode
),
4009 NULL_RTX
, 0, OPTAB_LIB_WIDEN
));
4011 offset
= (HOST_WIDE_INT
) padding_size
;
4012 #ifdef STACK_GROWS_DOWNWARD
4013 if (STACK_PUSH_CODE
== POST_DEC
)
4014 /* We have already decremented the stack pointer, so get the
4016 offset
+= (HOST_WIDE_INT
) rounded_size
;
4018 if (STACK_PUSH_CODE
== POST_INC
)
4019 /* We have already incremented the stack pointer, so get the
4021 offset
-= (HOST_WIDE_INT
) rounded_size
;
4023 dest_addr
= gen_rtx_PLUS (Pmode
, stack_pointer_rtx
,
4024 gen_int_mode (offset
, Pmode
));
4028 #ifdef STACK_GROWS_DOWNWARD
4029 /* ??? This seems wrong if STACK_PUSH_CODE == POST_DEC. */
4030 dest_addr
= gen_rtx_PLUS (Pmode
, stack_pointer_rtx
,
4031 gen_int_mode (-(HOST_WIDE_INT
) rounded_size
,
4034 /* ??? This seems wrong if STACK_PUSH_CODE == POST_INC. */
4035 dest_addr
= gen_rtx_PLUS (Pmode
, stack_pointer_rtx
,
4036 gen_int_mode (rounded_size
, Pmode
));
4038 dest_addr
= gen_rtx_PRE_MODIFY (Pmode
, stack_pointer_rtx
, dest_addr
);
4041 dest
= gen_rtx_MEM (mode
, dest_addr
);
4045 set_mem_attributes (dest
, type
, 1);
4047 if (cfun
->tail_call_marked
)
4048 /* Function incoming arguments may overlap with sibling call
4049 outgoing arguments and we cannot allow reordering of reads
4050 from function arguments with stores to outgoing arguments
4051 of sibling calls. */
4052 set_mem_alias_set (dest
, 0);
4054 emit_move_insn (dest
, x
);
4057 /* Emit and annotate a single push insn. */
4060 emit_single_push_insn (enum machine_mode mode
, rtx x
, tree type
)
4062 int delta
, old_delta
= stack_pointer_delta
;
4063 rtx prev
= get_last_insn ();
4066 emit_single_push_insn_1 (mode
, x
, type
);
4068 last
= get_last_insn ();
4070 /* Notice the common case where we emitted exactly one insn. */
4071 if (PREV_INSN (last
) == prev
)
4073 add_reg_note (last
, REG_ARGS_SIZE
, GEN_INT (stack_pointer_delta
));
4077 delta
= fixup_args_size_notes (prev
, last
, stack_pointer_delta
);
4078 gcc_assert (delta
== INT_MIN
|| delta
== old_delta
);
4082 /* Generate code to push X onto the stack, assuming it has mode MODE and
4084 MODE is redundant except when X is a CONST_INT (since they don't
4086 SIZE is an rtx for the size of data to be copied (in bytes),
4087 needed only if X is BLKmode.
4089 ALIGN (in bits) is maximum alignment we can assume.
4091 If PARTIAL and REG are both nonzero, then copy that many of the first
4092 bytes of X into registers starting with REG, and push the rest of X.
4093 The amount of space pushed is decreased by PARTIAL bytes.
4094 REG must be a hard register in this case.
4095 If REG is zero but PARTIAL is not, take any all others actions for an
4096 argument partially in registers, but do not actually load any
4099 EXTRA is the amount in bytes of extra space to leave next to this arg.
4100 This is ignored if an argument block has already been allocated.
4102 On a machine that lacks real push insns, ARGS_ADDR is the address of
4103 the bottom of the argument block for this call. We use indexing off there
4104 to store the arg. On machines with push insns, ARGS_ADDR is 0 when a
4105 argument block has not been preallocated.
4107 ARGS_SO_FAR is the size of args previously pushed for this call.
4109 REG_PARM_STACK_SPACE is nonzero if functions require stack space
4110 for arguments passed in registers. If nonzero, it will be the number
4111 of bytes required. */
4114 emit_push_insn (rtx x
, enum machine_mode mode
, tree type
, rtx size
,
4115 unsigned int align
, int partial
, rtx reg
, int extra
,
4116 rtx args_addr
, rtx args_so_far
, int reg_parm_stack_space
,
4120 enum direction stack_direction
4121 #ifdef STACK_GROWS_DOWNWARD
4127 /* Decide where to pad the argument: `downward' for below,
4128 `upward' for above, or `none' for don't pad it.
4129 Default is below for small data on big-endian machines; else above. */
4130 enum direction where_pad
= FUNCTION_ARG_PADDING (mode
, type
);
4132 /* Invert direction if stack is post-decrement.
4134 if (STACK_PUSH_CODE
== POST_DEC
)
4135 if (where_pad
!= none
)
4136 where_pad
= (where_pad
== downward
? upward
: downward
);
4141 || (STRICT_ALIGNMENT
&& align
< GET_MODE_ALIGNMENT (mode
)))
4143 /* Copy a block into the stack, entirely or partially. */
4150 offset
= partial
% (PARM_BOUNDARY
/ BITS_PER_UNIT
);
4151 used
= partial
- offset
;
4153 if (mode
!= BLKmode
)
4155 /* A value is to be stored in an insufficiently aligned
4156 stack slot; copy via a suitably aligned slot if
4158 size
= GEN_INT (GET_MODE_SIZE (mode
));
4159 if (!MEM_P (xinner
))
4161 temp
= assign_temp (type
, 1, 1);
4162 emit_move_insn (temp
, xinner
);
4169 /* USED is now the # of bytes we need not copy to the stack
4170 because registers will take care of them. */
4173 xinner
= adjust_address (xinner
, BLKmode
, used
);
4175 /* If the partial register-part of the arg counts in its stack size,
4176 skip the part of stack space corresponding to the registers.
4177 Otherwise, start copying to the beginning of the stack space,
4178 by setting SKIP to 0. */
4179 skip
= (reg_parm_stack_space
== 0) ? 0 : used
;
4181 #ifdef PUSH_ROUNDING
4182 /* Do it with several push insns if that doesn't take lots of insns
4183 and if there is no difficulty with push insns that skip bytes
4184 on the stack for alignment purposes. */
4187 && CONST_INT_P (size
)
4189 && MEM_ALIGN (xinner
) >= align
4190 && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size
) - used
, align
))
4191 /* Here we avoid the case of a structure whose weak alignment
4192 forces many pushes of a small amount of data,
4193 and such small pushes do rounding that causes trouble. */
4194 && ((! SLOW_UNALIGNED_ACCESS (word_mode
, align
))
4195 || align
>= BIGGEST_ALIGNMENT
4196 || (PUSH_ROUNDING (align
/ BITS_PER_UNIT
)
4197 == (align
/ BITS_PER_UNIT
)))
4198 && (HOST_WIDE_INT
) PUSH_ROUNDING (INTVAL (size
)) == INTVAL (size
))
4200 /* Push padding now if padding above and stack grows down,
4201 or if padding below and stack grows up.
4202 But if space already allocated, this has already been done. */
4203 if (extra
&& args_addr
== 0
4204 && where_pad
!= none
&& where_pad
!= stack_direction
)
4205 anti_adjust_stack (GEN_INT (extra
));
4207 move_by_pieces (NULL
, xinner
, INTVAL (size
) - used
, align
, 0);
4210 #endif /* PUSH_ROUNDING */
4214 /* Otherwise make space on the stack and copy the data
4215 to the address of that space. */
4217 /* Deduct words put into registers from the size we must copy. */
4220 if (CONST_INT_P (size
))
4221 size
= GEN_INT (INTVAL (size
) - used
);
4223 size
= expand_binop (GET_MODE (size
), sub_optab
, size
,
4224 gen_int_mode (used
, GET_MODE (size
)),
4225 NULL_RTX
, 0, OPTAB_LIB_WIDEN
);
4228 /* Get the address of the stack space.
4229 In this case, we do not deal with EXTRA separately.
4230 A single stack adjust will do. */
4233 temp
= push_block (size
, extra
, where_pad
== downward
);
4236 else if (CONST_INT_P (args_so_far
))
4237 temp
= memory_address (BLKmode
,
4238 plus_constant (Pmode
, args_addr
,
4239 skip
+ INTVAL (args_so_far
)));
4241 temp
= memory_address (BLKmode
,
4242 plus_constant (Pmode
,
4243 gen_rtx_PLUS (Pmode
,
4248 if (!ACCUMULATE_OUTGOING_ARGS
)
4250 /* If the source is referenced relative to the stack pointer,
4251 copy it to another register to stabilize it. We do not need
4252 to do this if we know that we won't be changing sp. */
4254 if (reg_mentioned_p (virtual_stack_dynamic_rtx
, temp
)
4255 || reg_mentioned_p (virtual_outgoing_args_rtx
, temp
))
4256 temp
= copy_to_reg (temp
);
4259 target
= gen_rtx_MEM (BLKmode
, temp
);
4261 /* We do *not* set_mem_attributes here, because incoming arguments
4262 may overlap with sibling call outgoing arguments and we cannot
4263 allow reordering of reads from function arguments with stores
4264 to outgoing arguments of sibling calls. We do, however, want
4265 to record the alignment of the stack slot. */
4266 /* ALIGN may well be better aligned than TYPE, e.g. due to
4267 PARM_BOUNDARY. Assume the caller isn't lying. */
4268 set_mem_align (target
, align
);
4270 emit_block_move (target
, xinner
, size
, BLOCK_OP_CALL_PARM
);
4273 else if (partial
> 0)
4275 /* Scalar partly in registers. */
4277 int size
= GET_MODE_SIZE (mode
) / UNITS_PER_WORD
;
4280 /* # bytes of start of argument
4281 that we must make space for but need not store. */
4282 int offset
= partial
% (PARM_BOUNDARY
/ BITS_PER_UNIT
);
4283 int args_offset
= INTVAL (args_so_far
);
4286 /* Push padding now if padding above and stack grows down,
4287 or if padding below and stack grows up.
4288 But if space already allocated, this has already been done. */
4289 if (extra
&& args_addr
== 0
4290 && where_pad
!= none
&& where_pad
!= stack_direction
)
4291 anti_adjust_stack (GEN_INT (extra
));
4293 /* If we make space by pushing it, we might as well push
4294 the real data. Otherwise, we can leave OFFSET nonzero
4295 and leave the space uninitialized. */
4299 /* Now NOT_STACK gets the number of words that we don't need to
4300 allocate on the stack. Convert OFFSET to words too. */
4301 not_stack
= (partial
- offset
) / UNITS_PER_WORD
;
4302 offset
/= UNITS_PER_WORD
;
4304 /* If the partial register-part of the arg counts in its stack size,
4305 skip the part of stack space corresponding to the registers.
4306 Otherwise, start copying to the beginning of the stack space,
4307 by setting SKIP to 0. */
4308 skip
= (reg_parm_stack_space
== 0) ? 0 : not_stack
;
4310 if (CONSTANT_P (x
) && !targetm
.legitimate_constant_p (mode
, x
))
4311 x
= validize_mem (force_const_mem (mode
, x
));
4313 /* If X is a hard register in a non-integer mode, copy it into a pseudo;
4314 SUBREGs of such registers are not allowed. */
4315 if ((REG_P (x
) && REGNO (x
) < FIRST_PSEUDO_REGISTER
4316 && GET_MODE_CLASS (GET_MODE (x
)) != MODE_INT
))
4317 x
= copy_to_reg (x
);
4319 /* Loop over all the words allocated on the stack for this arg. */
4320 /* We can do it by words, because any scalar bigger than a word
4321 has a size a multiple of a word. */
4322 for (i
= size
- 1; i
>= not_stack
; i
--)
4323 if (i
>= not_stack
+ offset
)
4324 emit_push_insn (operand_subword_force (x
, i
, mode
),
4325 word_mode
, NULL_TREE
, NULL_RTX
, align
, 0, NULL_RTX
,
4327 GEN_INT (args_offset
+ ((i
- not_stack
+ skip
)
4329 reg_parm_stack_space
, alignment_pad
);
4336 /* Push padding now if padding above and stack grows down,
4337 or if padding below and stack grows up.
4338 But if space already allocated, this has already been done. */
4339 if (extra
&& args_addr
== 0
4340 && where_pad
!= none
&& where_pad
!= stack_direction
)
4341 anti_adjust_stack (GEN_INT (extra
));
4343 #ifdef PUSH_ROUNDING
4344 if (args_addr
== 0 && PUSH_ARGS
)
4345 emit_single_push_insn (mode
, x
, type
);
4349 if (CONST_INT_P (args_so_far
))
4351 = memory_address (mode
,
4352 plus_constant (Pmode
, args_addr
,
4353 INTVAL (args_so_far
)));
4355 addr
= memory_address (mode
, gen_rtx_PLUS (Pmode
, args_addr
,
4357 dest
= gen_rtx_MEM (mode
, addr
);
4359 /* We do *not* set_mem_attributes here, because incoming arguments
4360 may overlap with sibling call outgoing arguments and we cannot
4361 allow reordering of reads from function arguments with stores
4362 to outgoing arguments of sibling calls. We do, however, want
4363 to record the alignment of the stack slot. */
4364 /* ALIGN may well be better aligned than TYPE, e.g. due to
4365 PARM_BOUNDARY. Assume the caller isn't lying. */
4366 set_mem_align (dest
, align
);
4368 emit_move_insn (dest
, x
);
4372 /* If part should go in registers, copy that part
4373 into the appropriate registers. Do this now, at the end,
4374 since mem-to-mem copies above may do function calls. */
4375 if (partial
> 0 && reg
!= 0)
4377 /* Handle calls that pass values in multiple non-contiguous locations.
4378 The Irix 6 ABI has examples of this. */
4379 if (GET_CODE (reg
) == PARALLEL
)
4380 emit_group_load (reg
, x
, type
, -1);
4383 gcc_assert (partial
% UNITS_PER_WORD
== 0);
4384 move_block_to_reg (REGNO (reg
), x
, partial
/ UNITS_PER_WORD
, mode
);
4388 if (extra
&& args_addr
== 0 && where_pad
== stack_direction
)
4389 anti_adjust_stack (GEN_INT (extra
));
4391 if (alignment_pad
&& args_addr
== 0)
4392 anti_adjust_stack (alignment_pad
);
4395 /* Return X if X can be used as a subtarget in a sequence of arithmetic
4399 get_subtarget (rtx x
)
4403 /* Only registers can be subtargets. */
4405 /* Don't use hard regs to avoid extending their life. */
4406 || REGNO (x
) < FIRST_PSEUDO_REGISTER
4410 /* A subroutine of expand_assignment. Optimize FIELD op= VAL, where
4411 FIELD is a bitfield. Returns true if the optimization was successful,
4412 and there's nothing else to do. */
4415 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize
,
4416 unsigned HOST_WIDE_INT bitpos
,
4417 unsigned HOST_WIDE_INT bitregion_start
,
4418 unsigned HOST_WIDE_INT bitregion_end
,
4419 enum machine_mode mode1
, rtx str_rtx
,
4422 enum machine_mode str_mode
= GET_MODE (str_rtx
);
4423 unsigned int str_bitsize
= GET_MODE_BITSIZE (str_mode
);
4428 enum tree_code code
;
4430 if (mode1
!= VOIDmode
4431 || bitsize
>= BITS_PER_WORD
4432 || str_bitsize
> BITS_PER_WORD
4433 || TREE_SIDE_EFFECTS (to
)
4434 || TREE_THIS_VOLATILE (to
))
4438 if (TREE_CODE (src
) != SSA_NAME
)
4440 if (TREE_CODE (TREE_TYPE (src
)) != INTEGER_TYPE
)
4443 srcstmt
= get_gimple_for_ssa_name (src
);
4445 || TREE_CODE_CLASS (gimple_assign_rhs_code (srcstmt
)) != tcc_binary
)
4448 code
= gimple_assign_rhs_code (srcstmt
);
4450 op0
= gimple_assign_rhs1 (srcstmt
);
4452 /* If OP0 is an SSA_NAME, then we want to walk the use-def chain
4453 to find its initialization. Hopefully the initialization will
4454 be from a bitfield load. */
4455 if (TREE_CODE (op0
) == SSA_NAME
)
4457 gimple op0stmt
= get_gimple_for_ssa_name (op0
);
4459 /* We want to eventually have OP0 be the same as TO, which
4460 should be a bitfield. */
4462 || !is_gimple_assign (op0stmt
)
4463 || gimple_assign_rhs_code (op0stmt
) != TREE_CODE (to
))
4465 op0
= gimple_assign_rhs1 (op0stmt
);
4468 op1
= gimple_assign_rhs2 (srcstmt
);
4470 if (!operand_equal_p (to
, op0
, 0))
4473 if (MEM_P (str_rtx
))
4475 unsigned HOST_WIDE_INT offset1
;
4477 if (str_bitsize
== 0 || str_bitsize
> BITS_PER_WORD
)
4478 str_mode
= word_mode
;
4479 str_mode
= get_best_mode (bitsize
, bitpos
,
4480 bitregion_start
, bitregion_end
,
4481 MEM_ALIGN (str_rtx
), str_mode
, 0);
4482 if (str_mode
== VOIDmode
)
4484 str_bitsize
= GET_MODE_BITSIZE (str_mode
);
4487 bitpos
%= str_bitsize
;
4488 offset1
= (offset1
- bitpos
) / BITS_PER_UNIT
;
4489 str_rtx
= adjust_address (str_rtx
, str_mode
, offset1
);
4491 else if (!REG_P (str_rtx
) && GET_CODE (str_rtx
) != SUBREG
)
4494 /* If the bit field covers the whole REG/MEM, store_field
4495 will likely generate better code. */
4496 if (bitsize
>= str_bitsize
)
4499 /* We can't handle fields split across multiple entities. */
4500 if (bitpos
+ bitsize
> str_bitsize
)
4503 if (BYTES_BIG_ENDIAN
)
4504 bitpos
= str_bitsize
- bitpos
- bitsize
;
4510 /* For now, just optimize the case of the topmost bitfield
4511 where we don't need to do any masking and also
4512 1 bit bitfields where xor can be used.
4513 We might win by one instruction for the other bitfields
4514 too if insv/extv instructions aren't used, so that
4515 can be added later. */
4516 if (bitpos
+ bitsize
!= str_bitsize
4517 && (bitsize
!= 1 || TREE_CODE (op1
) != INTEGER_CST
))
4520 value
= expand_expr (op1
, NULL_RTX
, str_mode
, EXPAND_NORMAL
);
4521 value
= convert_modes (str_mode
,
4522 TYPE_MODE (TREE_TYPE (op1
)), value
,
4523 TYPE_UNSIGNED (TREE_TYPE (op1
)));
4525 /* We may be accessing data outside the field, which means
4526 we can alias adjacent data. */
4527 if (MEM_P (str_rtx
))
4529 str_rtx
= shallow_copy_rtx (str_rtx
);
4530 set_mem_alias_set (str_rtx
, 0);
4531 set_mem_expr (str_rtx
, 0);
4534 binop
= code
== PLUS_EXPR
? add_optab
: sub_optab
;
4535 if (bitsize
== 1 && bitpos
+ bitsize
!= str_bitsize
)
4537 value
= expand_and (str_mode
, value
, const1_rtx
, NULL
);
4540 value
= expand_shift (LSHIFT_EXPR
, str_mode
, value
, bitpos
, NULL_RTX
, 1);
4541 result
= expand_binop (str_mode
, binop
, str_rtx
,
4542 value
, str_rtx
, 1, OPTAB_WIDEN
);
4543 if (result
!= str_rtx
)
4544 emit_move_insn (str_rtx
, result
);
4549 if (TREE_CODE (op1
) != INTEGER_CST
)
4551 value
= expand_expr (op1
, NULL_RTX
, str_mode
, EXPAND_NORMAL
);
4552 value
= convert_modes (str_mode
,
4553 TYPE_MODE (TREE_TYPE (op1
)), value
,
4554 TYPE_UNSIGNED (TREE_TYPE (op1
)));
4556 /* We may be accessing data outside the field, which means
4557 we can alias adjacent data. */
4558 if (MEM_P (str_rtx
))
4560 str_rtx
= shallow_copy_rtx (str_rtx
);
4561 set_mem_alias_set (str_rtx
, 0);
4562 set_mem_expr (str_rtx
, 0);
4565 binop
= code
== BIT_IOR_EXPR
? ior_optab
: xor_optab
;
4566 if (bitpos
+ bitsize
!= str_bitsize
)
4568 rtx mask
= gen_int_mode (((unsigned HOST_WIDE_INT
) 1 << bitsize
) - 1,
4570 value
= expand_and (str_mode
, value
, mask
, NULL_RTX
);
4572 value
= expand_shift (LSHIFT_EXPR
, str_mode
, value
, bitpos
, NULL_RTX
, 1);
4573 result
= expand_binop (str_mode
, binop
, str_rtx
,
4574 value
, str_rtx
, 1, OPTAB_WIDEN
);
4575 if (result
!= str_rtx
)
4576 emit_move_insn (str_rtx
, result
);
4586 /* In the C++ memory model, consecutive bit fields in a structure are
4587 considered one memory location.
4589 Given a COMPONENT_REF EXP at position (BITPOS, OFFSET), this function
4590 returns the bit range of consecutive bits in which this COMPONENT_REF
4591 belongs. The values are returned in *BITSTART and *BITEND. *BITPOS
4592 and *OFFSET may be adjusted in the process.
4594 If the access does not need to be restricted, 0 is returned in both
4595 *BITSTART and *BITEND. */
4598 get_bit_range (unsigned HOST_WIDE_INT
*bitstart
,
4599 unsigned HOST_WIDE_INT
*bitend
,
4601 HOST_WIDE_INT
*bitpos
,
4604 HOST_WIDE_INT bitoffset
;
4607 gcc_assert (TREE_CODE (exp
) == COMPONENT_REF
);
4609 field
= TREE_OPERAND (exp
, 1);
4610 repr
= DECL_BIT_FIELD_REPRESENTATIVE (field
);
4611 /* If we do not have a DECL_BIT_FIELD_REPRESENTATIVE there is no
4612 need to limit the range we can access. */
4615 *bitstart
= *bitend
= 0;
4619 /* If we have a DECL_BIT_FIELD_REPRESENTATIVE but the enclosing record is
4620 part of a larger bit field, then the representative does not serve any
4621 useful purpose. This can occur in Ada. */
4622 if (handled_component_p (TREE_OPERAND (exp
, 0)))
4624 enum machine_mode rmode
;
4625 HOST_WIDE_INT rbitsize
, rbitpos
;
4629 get_inner_reference (TREE_OPERAND (exp
, 0), &rbitsize
, &rbitpos
,
4630 &roffset
, &rmode
, &unsignedp
, &volatilep
, false);
4631 if ((rbitpos
% BITS_PER_UNIT
) != 0)
4633 *bitstart
= *bitend
= 0;
4638 /* Compute the adjustment to bitpos from the offset of the field
4639 relative to the representative. DECL_FIELD_OFFSET of field and
4640 repr are the same by construction if they are not constants,
4641 see finish_bitfield_layout. */
4642 if (tree_fits_uhwi_p (DECL_FIELD_OFFSET (field
))
4643 && tree_fits_uhwi_p (DECL_FIELD_OFFSET (repr
)))
4644 bitoffset
= (tree_to_uhwi (DECL_FIELD_OFFSET (field
))
4645 - tree_to_uhwi (DECL_FIELD_OFFSET (repr
))) * BITS_PER_UNIT
;
4648 bitoffset
+= (tree_to_uhwi (DECL_FIELD_BIT_OFFSET (field
))
4649 - tree_to_uhwi (DECL_FIELD_BIT_OFFSET (repr
)));
4651 /* If the adjustment is larger than bitpos, we would have a negative bit
4652 position for the lower bound and this may wreak havoc later. Adjust
4653 offset and bitpos to make the lower bound non-negative in that case. */
4654 if (bitoffset
> *bitpos
)
4656 HOST_WIDE_INT adjust
= bitoffset
- *bitpos
;
4657 gcc_assert ((adjust
% BITS_PER_UNIT
) == 0);
4660 if (*offset
== NULL_TREE
)
4661 *offset
= size_int (-adjust
/ BITS_PER_UNIT
);
4664 = size_binop (MINUS_EXPR
, *offset
, size_int (adjust
/ BITS_PER_UNIT
));
4668 *bitstart
= *bitpos
- bitoffset
;
4670 *bitend
= *bitstart
+ tree_to_uhwi (DECL_SIZE (repr
)) - 1;
4673 /* Returns true if ADDR is an ADDR_EXPR of a DECL that does not reside
4674 in memory and has non-BLKmode. DECL_RTL must not be a MEM; if
4675 DECL_RTL was not set yet, return NORTL. */
4678 addr_expr_of_non_mem_decl_p_1 (tree addr
, bool nortl
)
4680 if (TREE_CODE (addr
) != ADDR_EXPR
)
4683 tree base
= TREE_OPERAND (addr
, 0);
4686 || TREE_ADDRESSABLE (base
)
4687 || DECL_MODE (base
) == BLKmode
)
4690 if (!DECL_RTL_SET_P (base
))
4693 return (!MEM_P (DECL_RTL (base
)));
4696 /* Returns true if the MEM_REF REF refers to an object that does not
4697 reside in memory and has non-BLKmode. */
4700 mem_ref_refers_to_non_mem_p (tree ref
)
4702 tree base
= TREE_OPERAND (ref
, 0);
4703 return addr_expr_of_non_mem_decl_p_1 (base
, false);
4706 /* Expand an assignment that stores the value of FROM into TO. If NONTEMPORAL
4707 is true, try generating a nontemporal store. */
4710 expand_assignment (tree to
, tree from
, bool nontemporal
)
4714 enum machine_mode mode
;
4716 enum insn_code icode
;
4718 /* Don't crash if the lhs of the assignment was erroneous. */
4719 if (TREE_CODE (to
) == ERROR_MARK
)
4721 expand_normal (from
);
4725 /* Optimize away no-op moves without side-effects. */
4726 if (operand_equal_p (to
, from
, 0))
4729 /* Handle misaligned stores. */
4730 mode
= TYPE_MODE (TREE_TYPE (to
));
4731 if ((TREE_CODE (to
) == MEM_REF
4732 || TREE_CODE (to
) == TARGET_MEM_REF
)
4734 && !mem_ref_refers_to_non_mem_p (to
)
4735 && ((align
= get_object_alignment (to
))
4736 < GET_MODE_ALIGNMENT (mode
))
4737 && (((icode
= optab_handler (movmisalign_optab
, mode
))
4738 != CODE_FOR_nothing
)
4739 || SLOW_UNALIGNED_ACCESS (mode
, align
)))
4743 reg
= expand_expr (from
, NULL_RTX
, VOIDmode
, EXPAND_NORMAL
);
4744 reg
= force_not_mem (reg
);
4745 mem
= expand_expr (to
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4747 if (icode
!= CODE_FOR_nothing
)
4749 struct expand_operand ops
[2];
4751 create_fixed_operand (&ops
[0], mem
);
4752 create_input_operand (&ops
[1], reg
, mode
);
4753 /* The movmisalign<mode> pattern cannot fail, else the assignment
4754 would silently be omitted. */
4755 expand_insn (icode
, 2, ops
);
4758 store_bit_field (mem
, GET_MODE_BITSIZE (mode
), 0, 0, 0, mode
, reg
);
4762 /* Assignment of a structure component needs special treatment
4763 if the structure component's rtx is not simply a MEM.
4764 Assignment of an array element at a constant index, and assignment of
4765 an array element in an unaligned packed structure field, has the same
4766 problem. Same for (partially) storing into a non-memory object. */
4767 if (handled_component_p (to
)
4768 || (TREE_CODE (to
) == MEM_REF
4769 && mem_ref_refers_to_non_mem_p (to
))
4770 || TREE_CODE (TREE_TYPE (to
)) == ARRAY_TYPE
)
4772 enum machine_mode mode1
;
4773 HOST_WIDE_INT bitsize
, bitpos
;
4774 unsigned HOST_WIDE_INT bitregion_start
= 0;
4775 unsigned HOST_WIDE_INT bitregion_end
= 0;
4782 tem
= get_inner_reference (to
, &bitsize
, &bitpos
, &offset
, &mode1
,
4783 &unsignedp
, &volatilep
, true);
4785 /* Make sure bitpos is not negative, it can wreak havoc later. */
4788 gcc_assert (offset
== NULL_TREE
);
4789 offset
= size_int (bitpos
>> (BITS_PER_UNIT
== 8
4790 ? 3 : exact_log2 (BITS_PER_UNIT
)));
4791 bitpos
&= BITS_PER_UNIT
- 1;
4794 if (TREE_CODE (to
) == COMPONENT_REF
4795 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (to
, 1)))
4796 get_bit_range (&bitregion_start
, &bitregion_end
, to
, &bitpos
, &offset
);
4797 /* The C++ memory model naturally applies to byte-aligned fields.
4798 However, if we do not have a DECL_BIT_FIELD_TYPE but BITPOS or
4799 BITSIZE are not byte-aligned, there is no need to limit the range
4800 we can access. This can occur with packed structures in Ada. */
4801 else if (bitsize
> 0
4802 && bitsize
% BITS_PER_UNIT
== 0
4803 && bitpos
% BITS_PER_UNIT
== 0)
4805 bitregion_start
= bitpos
;
4806 bitregion_end
= bitpos
+ bitsize
- 1;
4809 to_rtx
= expand_expr (tem
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4811 /* If the field has a mode, we want to access it in the
4812 field's mode, not the computed mode.
4813 If a MEM has VOIDmode (external with incomplete type),
4814 use BLKmode for it instead. */
4817 if (mode1
!= VOIDmode
)
4818 to_rtx
= adjust_address (to_rtx
, mode1
, 0);
4819 else if (GET_MODE (to_rtx
) == VOIDmode
)
4820 to_rtx
= adjust_address (to_rtx
, BLKmode
, 0);
4825 enum machine_mode address_mode
;
4828 if (!MEM_P (to_rtx
))
4830 /* We can get constant negative offsets into arrays with broken
4831 user code. Translate this to a trap instead of ICEing. */
4832 gcc_assert (TREE_CODE (offset
) == INTEGER_CST
);
4833 expand_builtin_trap ();
4834 to_rtx
= gen_rtx_MEM (BLKmode
, const0_rtx
);
4837 offset_rtx
= expand_expr (offset
, NULL_RTX
, VOIDmode
, EXPAND_SUM
);
4838 address_mode
= get_address_mode (to_rtx
);
4839 if (GET_MODE (offset_rtx
) != address_mode
)
4840 offset_rtx
= convert_to_mode (address_mode
, offset_rtx
, 0);
4842 /* If we have an expression in OFFSET_RTX and a non-zero
4843 byte offset in BITPOS, adding the byte offset before the
4844 OFFSET_RTX results in better intermediate code, which makes
4845 later rtl optimization passes perform better.
4847 We prefer intermediate code like this:
4849 r124:DI=r123:DI+0x18
4854 r124:DI=r123:DI+0x10
4855 [r124:DI+0x8]=r121:DI
4857 This is only done for aligned data values, as these can
4858 be expected to result in single move instructions. */
4859 if (mode1
!= VOIDmode
4862 && (bitpos
% bitsize
) == 0
4863 && (bitsize
% GET_MODE_ALIGNMENT (mode1
)) == 0
4864 && MEM_ALIGN (to_rtx
) >= GET_MODE_ALIGNMENT (mode1
))
4866 to_rtx
= adjust_address (to_rtx
, mode1
, bitpos
/ BITS_PER_UNIT
);
4867 bitregion_start
= 0;
4868 if (bitregion_end
>= (unsigned HOST_WIDE_INT
) bitpos
)
4869 bitregion_end
-= bitpos
;
4873 to_rtx
= offset_address (to_rtx
, offset_rtx
,
4874 highest_pow2_factor_for_target (to
,
4878 /* No action is needed if the target is not a memory and the field
4879 lies completely outside that target. This can occur if the source
4880 code contains an out-of-bounds access to a small array. */
4882 && GET_MODE (to_rtx
) != BLKmode
4883 && (unsigned HOST_WIDE_INT
) bitpos
4884 >= GET_MODE_PRECISION (GET_MODE (to_rtx
)))
4886 expand_normal (from
);
4889 /* Handle expand_expr of a complex value returning a CONCAT. */
4890 else if (GET_CODE (to_rtx
) == CONCAT
)
4892 unsigned short mode_bitsize
= GET_MODE_BITSIZE (GET_MODE (to_rtx
));
4893 if (COMPLEX_MODE_P (TYPE_MODE (TREE_TYPE (from
)))
4895 && bitsize
== mode_bitsize
)
4896 result
= store_expr (from
, to_rtx
, false, nontemporal
);
4897 else if (bitsize
== mode_bitsize
/ 2
4898 && (bitpos
== 0 || bitpos
== mode_bitsize
/ 2))
4899 result
= store_expr (from
, XEXP (to_rtx
, bitpos
!= 0), false,
4901 else if (bitpos
+ bitsize
<= mode_bitsize
/ 2)
4902 result
= store_field (XEXP (to_rtx
, 0), bitsize
, bitpos
,
4903 bitregion_start
, bitregion_end
,
4905 get_alias_set (to
), nontemporal
);
4906 else if (bitpos
>= mode_bitsize
/ 2)
4907 result
= store_field (XEXP (to_rtx
, 1), bitsize
,
4908 bitpos
- mode_bitsize
/ 2,
4909 bitregion_start
, bitregion_end
,
4911 get_alias_set (to
), nontemporal
);
4912 else if (bitpos
== 0 && bitsize
== mode_bitsize
)
4915 result
= expand_normal (from
);
4916 from_rtx
= simplify_gen_subreg (GET_MODE (to_rtx
), result
,
4917 TYPE_MODE (TREE_TYPE (from
)), 0);
4918 emit_move_insn (XEXP (to_rtx
, 0),
4919 read_complex_part (from_rtx
, false));
4920 emit_move_insn (XEXP (to_rtx
, 1),
4921 read_complex_part (from_rtx
, true));
4925 rtx temp
= assign_stack_temp (GET_MODE (to_rtx
),
4926 GET_MODE_SIZE (GET_MODE (to_rtx
)));
4927 write_complex_part (temp
, XEXP (to_rtx
, 0), false);
4928 write_complex_part (temp
, XEXP (to_rtx
, 1), true);
4929 result
= store_field (temp
, bitsize
, bitpos
,
4930 bitregion_start
, bitregion_end
,
4932 get_alias_set (to
), nontemporal
);
4933 emit_move_insn (XEXP (to_rtx
, 0), read_complex_part (temp
, false));
4934 emit_move_insn (XEXP (to_rtx
, 1), read_complex_part (temp
, true));
4941 /* If the field is at offset zero, we could have been given the
4942 DECL_RTX of the parent struct. Don't munge it. */
4943 to_rtx
= shallow_copy_rtx (to_rtx
);
4944 set_mem_attributes_minus_bitpos (to_rtx
, to
, 0, bitpos
);
4946 MEM_VOLATILE_P (to_rtx
) = 1;
4949 if (optimize_bitfield_assignment_op (bitsize
, bitpos
,
4950 bitregion_start
, bitregion_end
,
4955 result
= store_field (to_rtx
, bitsize
, bitpos
,
4956 bitregion_start
, bitregion_end
,
4958 get_alias_set (to
), nontemporal
);
4962 preserve_temp_slots (result
);
4967 /* If the rhs is a function call and its value is not an aggregate,
4968 call the function before we start to compute the lhs.
4969 This is needed for correct code for cases such as
4970 val = setjmp (buf) on machines where reference to val
4971 requires loading up part of an address in a separate insn.
4973 Don't do this if TO is a VAR_DECL or PARM_DECL whose DECL_RTL is REG
4974 since it might be a promoted variable where the zero- or sign- extension
4975 needs to be done. Handling this in the normal way is safe because no
4976 computation is done before the call. The same is true for SSA names. */
4977 if (TREE_CODE (from
) == CALL_EXPR
&& ! aggregate_value_p (from
, from
)
4978 && COMPLETE_TYPE_P (TREE_TYPE (from
))
4979 && TREE_CODE (TYPE_SIZE (TREE_TYPE (from
))) == INTEGER_CST
4980 && ! (((TREE_CODE (to
) == VAR_DECL
4981 || TREE_CODE (to
) == PARM_DECL
4982 || TREE_CODE (to
) == RESULT_DECL
)
4983 && REG_P (DECL_RTL (to
)))
4984 || TREE_CODE (to
) == SSA_NAME
))
4989 value
= expand_normal (from
);
4991 to_rtx
= expand_expr (to
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4993 /* Handle calls that return values in multiple non-contiguous locations.
4994 The Irix 6 ABI has examples of this. */
4995 if (GET_CODE (to_rtx
) == PARALLEL
)
4997 if (GET_CODE (value
) == PARALLEL
)
4998 emit_group_move (to_rtx
, value
);
5000 emit_group_load (to_rtx
, value
, TREE_TYPE (from
),
5001 int_size_in_bytes (TREE_TYPE (from
)));
5003 else if (GET_CODE (value
) == PARALLEL
)
5004 emit_group_store (to_rtx
, value
, TREE_TYPE (from
),
5005 int_size_in_bytes (TREE_TYPE (from
)));
5006 else if (GET_MODE (to_rtx
) == BLKmode
)
5008 /* Handle calls that return BLKmode values in registers. */
5010 copy_blkmode_from_reg (to_rtx
, value
, TREE_TYPE (from
));
5012 emit_block_move (to_rtx
, value
, expr_size (from
), BLOCK_OP_NORMAL
);
5016 if (POINTER_TYPE_P (TREE_TYPE (to
)))
5017 value
= convert_memory_address_addr_space
5018 (GET_MODE (to_rtx
), value
,
5019 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (to
))));
5021 emit_move_insn (to_rtx
, value
);
5023 preserve_temp_slots (to_rtx
);
5028 /* Ordinary treatment. Expand TO to get a REG or MEM rtx. */
5029 to_rtx
= expand_expr (to
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
5031 /* Don't move directly into a return register. */
5032 if (TREE_CODE (to
) == RESULT_DECL
5033 && (REG_P (to_rtx
) || GET_CODE (to_rtx
) == PARALLEL
))
5039 /* If the source is itself a return value, it still is in a pseudo at
5040 this point so we can move it back to the return register directly. */
5042 && TYPE_MODE (TREE_TYPE (from
)) == BLKmode
5043 && TREE_CODE (from
) != CALL_EXPR
)
5044 temp
= copy_blkmode_to_reg (GET_MODE (to_rtx
), from
);
5046 temp
= expand_expr (from
, NULL_RTX
, GET_MODE (to_rtx
), EXPAND_NORMAL
);
5048 /* Handle calls that return values in multiple non-contiguous locations.
5049 The Irix 6 ABI has examples of this. */
5050 if (GET_CODE (to_rtx
) == PARALLEL
)
5052 if (GET_CODE (temp
) == PARALLEL
)
5053 emit_group_move (to_rtx
, temp
);
5055 emit_group_load (to_rtx
, temp
, TREE_TYPE (from
),
5056 int_size_in_bytes (TREE_TYPE (from
)));
5059 emit_move_insn (to_rtx
, temp
);
5061 preserve_temp_slots (to_rtx
);
5066 /* In case we are returning the contents of an object which overlaps
5067 the place the value is being stored, use a safe function when copying
5068 a value through a pointer into a structure value return block. */
5069 if (TREE_CODE (to
) == RESULT_DECL
5070 && TREE_CODE (from
) == INDIRECT_REF
5071 && ADDR_SPACE_GENERIC_P
5072 (TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (from
, 0)))))
5073 && refs_may_alias_p (to
, from
)
5074 && cfun
->returns_struct
5075 && !cfun
->returns_pcc_struct
)
5080 size
= expr_size (from
);
5081 from_rtx
= expand_normal (from
);
5083 emit_library_call (memmove_libfunc
, LCT_NORMAL
,
5084 VOIDmode
, 3, XEXP (to_rtx
, 0), Pmode
,
5085 XEXP (from_rtx
, 0), Pmode
,
5086 convert_to_mode (TYPE_MODE (sizetype
),
5087 size
, TYPE_UNSIGNED (sizetype
)),
5088 TYPE_MODE (sizetype
));
5090 preserve_temp_slots (to_rtx
);
5095 /* Compute FROM and store the value in the rtx we got. */
5098 result
= store_expr (from
, to_rtx
, 0, nontemporal
);
5099 preserve_temp_slots (result
);
5104 /* Emits nontemporal store insn that moves FROM to TO. Returns true if this
5105 succeeded, false otherwise. */
5108 emit_storent_insn (rtx to
, rtx from
)
5110 struct expand_operand ops
[2];
5111 enum machine_mode mode
= GET_MODE (to
);
5112 enum insn_code code
= optab_handler (storent_optab
, mode
);
5114 if (code
== CODE_FOR_nothing
)
5117 create_fixed_operand (&ops
[0], to
);
5118 create_input_operand (&ops
[1], from
, mode
);
5119 return maybe_expand_insn (code
, 2, ops
);
5122 /* Generate code for computing expression EXP,
5123 and storing the value into TARGET.
5125 If the mode is BLKmode then we may return TARGET itself.
5126 It turns out that in BLKmode it doesn't cause a problem.
5127 because C has no operators that could combine two different
5128 assignments into the same BLKmode object with different values
5129 with no sequence point. Will other languages need this to
5132 If CALL_PARAM_P is nonzero, this is a store into a call param on the
5133 stack, and block moves may need to be treated specially.
5135 If NONTEMPORAL is true, try using a nontemporal store instruction. */
5138 store_expr (tree exp
, rtx target
, int call_param_p
, bool nontemporal
)
5141 rtx alt_rtl
= NULL_RTX
;
5142 location_t loc
= curr_insn_location ();
5144 if (VOID_TYPE_P (TREE_TYPE (exp
)))
5146 /* C++ can generate ?: expressions with a throw expression in one
5147 branch and an rvalue in the other. Here, we resolve attempts to
5148 store the throw expression's nonexistent result. */
5149 gcc_assert (!call_param_p
);
5150 expand_expr (exp
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
5153 if (TREE_CODE (exp
) == COMPOUND_EXPR
)
5155 /* Perform first part of compound expression, then assign from second
5157 expand_expr (TREE_OPERAND (exp
, 0), const0_rtx
, VOIDmode
,
5158 call_param_p
? EXPAND_STACK_PARM
: EXPAND_NORMAL
);
5159 return store_expr (TREE_OPERAND (exp
, 1), target
, call_param_p
,
5162 else if (TREE_CODE (exp
) == COND_EXPR
&& GET_MODE (target
) == BLKmode
)
5164 /* For conditional expression, get safe form of the target. Then
5165 test the condition, doing the appropriate assignment on either
5166 side. This avoids the creation of unnecessary temporaries.
5167 For non-BLKmode, it is more efficient not to do this. */
5169 rtx lab1
= gen_label_rtx (), lab2
= gen_label_rtx ();
5171 do_pending_stack_adjust ();
5173 jumpifnot (TREE_OPERAND (exp
, 0), lab1
, -1);
5174 store_expr (TREE_OPERAND (exp
, 1), target
, call_param_p
,
5176 emit_jump_insn (gen_jump (lab2
));
5179 store_expr (TREE_OPERAND (exp
, 2), target
, call_param_p
,
5186 else if (GET_CODE (target
) == SUBREG
&& SUBREG_PROMOTED_VAR_P (target
))
5187 /* If this is a scalar in a register that is stored in a wider mode
5188 than the declared mode, compute the result into its declared mode
5189 and then convert to the wider mode. Our value is the computed
5192 rtx inner_target
= 0;
5194 /* We can do the conversion inside EXP, which will often result
5195 in some optimizations. Do the conversion in two steps: first
5196 change the signedness, if needed, then the extend. But don't
5197 do this if the type of EXP is a subtype of something else
5198 since then the conversion might involve more than just
5199 converting modes. */
5200 if (INTEGRAL_TYPE_P (TREE_TYPE (exp
))
5201 && TREE_TYPE (TREE_TYPE (exp
)) == 0
5202 && GET_MODE_PRECISION (GET_MODE (target
))
5203 == TYPE_PRECISION (TREE_TYPE (exp
)))
5205 if (TYPE_UNSIGNED (TREE_TYPE (exp
))
5206 != SUBREG_PROMOTED_UNSIGNED_P (target
))
5208 /* Some types, e.g. Fortran's logical*4, won't have a signed
5209 version, so use the mode instead. */
5211 = (signed_or_unsigned_type_for
5212 (SUBREG_PROMOTED_UNSIGNED_P (target
), TREE_TYPE (exp
)));
5214 ntype
= lang_hooks
.types
.type_for_mode
5215 (TYPE_MODE (TREE_TYPE (exp
)),
5216 SUBREG_PROMOTED_UNSIGNED_P (target
));
5218 exp
= fold_convert_loc (loc
, ntype
, exp
);
5221 exp
= fold_convert_loc (loc
, lang_hooks
.types
.type_for_mode
5222 (GET_MODE (SUBREG_REG (target
)),
5223 SUBREG_PROMOTED_UNSIGNED_P (target
)),
5226 inner_target
= SUBREG_REG (target
);
5229 temp
= expand_expr (exp
, inner_target
, VOIDmode
,
5230 call_param_p
? EXPAND_STACK_PARM
: EXPAND_NORMAL
);
5232 /* If TEMP is a VOIDmode constant, use convert_modes to make
5233 sure that we properly convert it. */
5234 if (CONSTANT_P (temp
) && GET_MODE (temp
) == VOIDmode
)
5236 temp
= convert_modes (GET_MODE (target
), TYPE_MODE (TREE_TYPE (exp
)),
5237 temp
, SUBREG_PROMOTED_UNSIGNED_P (target
));
5238 temp
= convert_modes (GET_MODE (SUBREG_REG (target
)),
5239 GET_MODE (target
), temp
,
5240 SUBREG_PROMOTED_UNSIGNED_P (target
));
5243 convert_move (SUBREG_REG (target
), temp
,
5244 SUBREG_PROMOTED_UNSIGNED_P (target
));
5248 else if ((TREE_CODE (exp
) == STRING_CST
5249 || (TREE_CODE (exp
) == MEM_REF
5250 && TREE_CODE (TREE_OPERAND (exp
, 0)) == ADDR_EXPR
5251 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0))
5253 && integer_zerop (TREE_OPERAND (exp
, 1))))
5254 && !nontemporal
&& !call_param_p
5257 /* Optimize initialization of an array with a STRING_CST. */
5258 HOST_WIDE_INT exp_len
, str_copy_len
;
5260 tree str
= TREE_CODE (exp
) == STRING_CST
5261 ? exp
: TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
5263 exp_len
= int_expr_size (exp
);
5267 if (TREE_STRING_LENGTH (str
) <= 0)
5270 str_copy_len
= strlen (TREE_STRING_POINTER (str
));
5271 if (str_copy_len
< TREE_STRING_LENGTH (str
) - 1)
5274 str_copy_len
= TREE_STRING_LENGTH (str
);
5275 if ((STORE_MAX_PIECES
& (STORE_MAX_PIECES
- 1)) == 0
5276 && TREE_STRING_POINTER (str
)[TREE_STRING_LENGTH (str
) - 1] == '\0')
5278 str_copy_len
+= STORE_MAX_PIECES
- 1;
5279 str_copy_len
&= ~(STORE_MAX_PIECES
- 1);
5281 str_copy_len
= MIN (str_copy_len
, exp_len
);
5282 if (!can_store_by_pieces (str_copy_len
, builtin_strncpy_read_str
,
5283 CONST_CAST (char *, TREE_STRING_POINTER (str
)),
5284 MEM_ALIGN (target
), false))
5289 dest_mem
= store_by_pieces (dest_mem
,
5290 str_copy_len
, builtin_strncpy_read_str
,
5292 TREE_STRING_POINTER (str
)),
5293 MEM_ALIGN (target
), false,
5294 exp_len
> str_copy_len
? 1 : 0);
5295 if (exp_len
> str_copy_len
)
5296 clear_storage (adjust_address (dest_mem
, BLKmode
, 0),
5297 GEN_INT (exp_len
- str_copy_len
),
5306 /* If we want to use a nontemporal store, force the value to
5308 tmp_target
= nontemporal
? NULL_RTX
: target
;
5309 temp
= expand_expr_real (exp
, tmp_target
, GET_MODE (target
),
5311 ? EXPAND_STACK_PARM
: EXPAND_NORMAL
),
5315 /* If TEMP is a VOIDmode constant and the mode of the type of EXP is not
5316 the same as that of TARGET, adjust the constant. This is needed, for
5317 example, in case it is a CONST_DOUBLE or CONST_WIDE_INT and we want
5318 only a word-sized value. */
5319 if (CONSTANT_P (temp
) && GET_MODE (temp
) == VOIDmode
5320 && TREE_CODE (exp
) != ERROR_MARK
5321 && GET_MODE (target
) != TYPE_MODE (TREE_TYPE (exp
)))
5322 temp
= convert_modes (GET_MODE (target
), TYPE_MODE (TREE_TYPE (exp
)),
5323 temp
, TYPE_UNSIGNED (TREE_TYPE (exp
)));
5325 /* If value was not generated in the target, store it there.
5326 Convert the value to TARGET's type first if necessary and emit the
5327 pending incrementations that have been queued when expanding EXP.
5328 Note that we cannot emit the whole queue blindly because this will
5329 effectively disable the POST_INC optimization later.
5331 If TEMP and TARGET compare equal according to rtx_equal_p, but
5332 one or both of them are volatile memory refs, we have to distinguish
5334 - expand_expr has used TARGET. In this case, we must not generate
5335 another copy. This can be detected by TARGET being equal according
5337 - expand_expr has not used TARGET - that means that the source just
5338 happens to have the same RTX form. Since temp will have been created
5339 by expand_expr, it will compare unequal according to == .
5340 We must generate a copy in this case, to reach the correct number
5341 of volatile memory references. */
5343 if ((! rtx_equal_p (temp
, target
)
5344 || (temp
!= target
&& (side_effects_p (temp
)
5345 || side_effects_p (target
))))
5346 && TREE_CODE (exp
) != ERROR_MARK
5347 /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET,
5348 but TARGET is not valid memory reference, TEMP will differ
5349 from TARGET although it is really the same location. */
5351 && rtx_equal_p (alt_rtl
, target
)
5352 && !side_effects_p (alt_rtl
)
5353 && !side_effects_p (target
))
5354 /* If there's nothing to copy, don't bother. Don't call
5355 expr_size unless necessary, because some front-ends (C++)
5356 expr_size-hook must not be given objects that are not
5357 supposed to be bit-copied or bit-initialized. */
5358 && expr_size (exp
) != const0_rtx
)
5360 if (GET_MODE (temp
) != GET_MODE (target
) && GET_MODE (temp
) != VOIDmode
)
5362 if (GET_MODE (target
) == BLKmode
)
5364 /* Handle calls that return BLKmode values in registers. */
5365 if (REG_P (temp
) && TREE_CODE (exp
) == CALL_EXPR
)
5366 copy_blkmode_from_reg (target
, temp
, TREE_TYPE (exp
));
5368 store_bit_field (target
,
5369 INTVAL (expr_size (exp
)) * BITS_PER_UNIT
,
5370 0, 0, 0, GET_MODE (temp
), temp
);
5373 convert_move (target
, temp
, TYPE_UNSIGNED (TREE_TYPE (exp
)));
5376 else if (GET_MODE (temp
) == BLKmode
&& TREE_CODE (exp
) == STRING_CST
)
5378 /* Handle copying a string constant into an array. The string
5379 constant may be shorter than the array. So copy just the string's
5380 actual length, and clear the rest. First get the size of the data
5381 type of the string, which is actually the size of the target. */
5382 rtx size
= expr_size (exp
);
5384 if (CONST_INT_P (size
)
5385 && INTVAL (size
) < TREE_STRING_LENGTH (exp
))
5386 emit_block_move (target
, temp
, size
,
5388 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
5391 enum machine_mode pointer_mode
5392 = targetm
.addr_space
.pointer_mode (MEM_ADDR_SPACE (target
));
5393 enum machine_mode address_mode
= get_address_mode (target
);
5395 /* Compute the size of the data to copy from the string. */
5397 = size_binop_loc (loc
, MIN_EXPR
,
5398 make_tree (sizetype
, size
),
5399 size_int (TREE_STRING_LENGTH (exp
)));
5401 = expand_expr (copy_size
, NULL_RTX
, VOIDmode
,
5403 ? EXPAND_STACK_PARM
: EXPAND_NORMAL
));
5406 /* Copy that much. */
5407 copy_size_rtx
= convert_to_mode (pointer_mode
, copy_size_rtx
,
5408 TYPE_UNSIGNED (sizetype
));
5409 emit_block_move (target
, temp
, copy_size_rtx
,
5411 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
5413 /* Figure out how much is left in TARGET that we have to clear.
5414 Do all calculations in pointer_mode. */
5415 if (CONST_INT_P (copy_size_rtx
))
5417 size
= plus_constant (address_mode
, size
,
5418 -INTVAL (copy_size_rtx
));
5419 target
= adjust_address (target
, BLKmode
,
5420 INTVAL (copy_size_rtx
));
5424 size
= expand_binop (TYPE_MODE (sizetype
), sub_optab
, size
,
5425 copy_size_rtx
, NULL_RTX
, 0,
5428 if (GET_MODE (copy_size_rtx
) != address_mode
)
5429 copy_size_rtx
= convert_to_mode (address_mode
,
5431 TYPE_UNSIGNED (sizetype
));
5433 target
= offset_address (target
, copy_size_rtx
,
5434 highest_pow2_factor (copy_size
));
5435 label
= gen_label_rtx ();
5436 emit_cmp_and_jump_insns (size
, const0_rtx
, LT
, NULL_RTX
,
5437 GET_MODE (size
), 0, label
);
5440 if (size
!= const0_rtx
)
5441 clear_storage (target
, size
, BLOCK_OP_NORMAL
);
5447 /* Handle calls that return values in multiple non-contiguous locations.
5448 The Irix 6 ABI has examples of this. */
5449 else if (GET_CODE (target
) == PARALLEL
)
5451 if (GET_CODE (temp
) == PARALLEL
)
5452 emit_group_move (target
, temp
);
5454 emit_group_load (target
, temp
, TREE_TYPE (exp
),
5455 int_size_in_bytes (TREE_TYPE (exp
)));
5457 else if (GET_CODE (temp
) == PARALLEL
)
5458 emit_group_store (target
, temp
, TREE_TYPE (exp
),
5459 int_size_in_bytes (TREE_TYPE (exp
)));
5460 else if (GET_MODE (temp
) == BLKmode
)
5461 emit_block_move (target
, temp
, expr_size (exp
),
5463 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
5464 /* If we emit a nontemporal store, there is nothing else to do. */
5465 else if (nontemporal
&& emit_storent_insn (target
, temp
))
5469 temp
= force_operand (temp
, target
);
5471 emit_move_insn (target
, temp
);
5478 /* Return true if field F of structure TYPE is a flexible array. */
5481 flexible_array_member_p (const_tree f
, const_tree type
)
5486 return (DECL_CHAIN (f
) == NULL
5487 && TREE_CODE (tf
) == ARRAY_TYPE
5489 && TYPE_MIN_VALUE (TYPE_DOMAIN (tf
))
5490 && integer_zerop (TYPE_MIN_VALUE (TYPE_DOMAIN (tf
)))
5491 && !TYPE_MAX_VALUE (TYPE_DOMAIN (tf
))
5492 && int_size_in_bytes (type
) >= 0);
5495 /* If FOR_CTOR_P, return the number of top-level elements that a constructor
5496 must have in order for it to completely initialize a value of type TYPE.
5497 Return -1 if the number isn't known.
5499 If !FOR_CTOR_P, return an estimate of the number of scalars in TYPE. */
5501 static HOST_WIDE_INT
5502 count_type_elements (const_tree type
, bool for_ctor_p
)
5504 switch (TREE_CODE (type
))
5510 nelts
= array_type_nelts (type
);
5511 if (nelts
&& tree_fits_uhwi_p (nelts
))
5513 unsigned HOST_WIDE_INT n
;
5515 n
= tree_to_uhwi (nelts
) + 1;
5516 if (n
== 0 || for_ctor_p
)
5519 return n
* count_type_elements (TREE_TYPE (type
), false);
5521 return for_ctor_p
? -1 : 1;
5526 unsigned HOST_WIDE_INT n
;
5530 for (f
= TYPE_FIELDS (type
); f
; f
= DECL_CHAIN (f
))
5531 if (TREE_CODE (f
) == FIELD_DECL
)
5534 n
+= count_type_elements (TREE_TYPE (f
), false);
5535 else if (!flexible_array_member_p (f
, type
))
5536 /* Don't count flexible arrays, which are not supposed
5537 to be initialized. */
5545 case QUAL_UNION_TYPE
:
5550 gcc_assert (!for_ctor_p
);
5551 /* Estimate the number of scalars in each field and pick the
5552 maximum. Other estimates would do instead; the idea is simply
5553 to make sure that the estimate is not sensitive to the ordering
5556 for (f
= TYPE_FIELDS (type
); f
; f
= DECL_CHAIN (f
))
5557 if (TREE_CODE (f
) == FIELD_DECL
)
5559 m
= count_type_elements (TREE_TYPE (f
), false);
5560 /* If the field doesn't span the whole union, add an extra
5561 scalar for the rest. */
5562 if (simple_cst_equal (TYPE_SIZE (TREE_TYPE (f
)),
5563 TYPE_SIZE (type
)) != 1)
5575 return TYPE_VECTOR_SUBPARTS (type
);
5579 case FIXED_POINT_TYPE
:
5584 case REFERENCE_TYPE
:
5600 /* Helper for categorize_ctor_elements. Identical interface. */
5603 categorize_ctor_elements_1 (const_tree ctor
, HOST_WIDE_INT
*p_nz_elts
,
5604 HOST_WIDE_INT
*p_init_elts
, bool *p_complete
)
5606 unsigned HOST_WIDE_INT idx
;
5607 HOST_WIDE_INT nz_elts
, init_elts
, num_fields
;
5608 tree value
, purpose
, elt_type
;
5610 /* Whether CTOR is a valid constant initializer, in accordance with what
5611 initializer_constant_valid_p does. If inferred from the constructor
5612 elements, true until proven otherwise. */
5613 bool const_from_elts_p
= constructor_static_from_elts_p (ctor
);
5614 bool const_p
= const_from_elts_p
? true : TREE_STATIC (ctor
);
5619 elt_type
= NULL_TREE
;
5621 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor
), idx
, purpose
, value
)
5623 HOST_WIDE_INT mult
= 1;
5625 if (purpose
&& TREE_CODE (purpose
) == RANGE_EXPR
)
5627 tree lo_index
= TREE_OPERAND (purpose
, 0);
5628 tree hi_index
= TREE_OPERAND (purpose
, 1);
5630 if (tree_fits_uhwi_p (lo_index
) && tree_fits_uhwi_p (hi_index
))
5631 mult
= (tree_to_uhwi (hi_index
)
5632 - tree_to_uhwi (lo_index
) + 1);
5635 elt_type
= TREE_TYPE (value
);
5637 switch (TREE_CODE (value
))
5641 HOST_WIDE_INT nz
= 0, ic
= 0;
5643 bool const_elt_p
= categorize_ctor_elements_1 (value
, &nz
, &ic
,
5646 nz_elts
+= mult
* nz
;
5647 init_elts
+= mult
* ic
;
5649 if (const_from_elts_p
&& const_p
)
5650 const_p
= const_elt_p
;
5657 if (!initializer_zerop (value
))
5663 nz_elts
+= mult
* TREE_STRING_LENGTH (value
);
5664 init_elts
+= mult
* TREE_STRING_LENGTH (value
);
5668 if (!initializer_zerop (TREE_REALPART (value
)))
5670 if (!initializer_zerop (TREE_IMAGPART (value
)))
5678 for (i
= 0; i
< VECTOR_CST_NELTS (value
); ++i
)
5680 tree v
= VECTOR_CST_ELT (value
, i
);
5681 if (!initializer_zerop (v
))
5690 HOST_WIDE_INT tc
= count_type_elements (elt_type
, false);
5691 nz_elts
+= mult
* tc
;
5692 init_elts
+= mult
* tc
;
5694 if (const_from_elts_p
&& const_p
)
5695 const_p
= initializer_constant_valid_p (value
, elt_type
)
5702 if (*p_complete
&& !complete_ctor_at_level_p (TREE_TYPE (ctor
),
5703 num_fields
, elt_type
))
5704 *p_complete
= false;
5706 *p_nz_elts
+= nz_elts
;
5707 *p_init_elts
+= init_elts
;
5712 /* Examine CTOR to discover:
5713 * how many scalar fields are set to nonzero values,
5714 and place it in *P_NZ_ELTS;
5715 * how many scalar fields in total are in CTOR,
5716 and place it in *P_ELT_COUNT.
5717 * whether the constructor is complete -- in the sense that every
5718 meaningful byte is explicitly given a value --
5719 and place it in *P_COMPLETE.
5721 Return whether or not CTOR is a valid static constant initializer, the same
5722 as "initializer_constant_valid_p (CTOR, TREE_TYPE (CTOR)) != 0". */
5725 categorize_ctor_elements (const_tree ctor
, HOST_WIDE_INT
*p_nz_elts
,
5726 HOST_WIDE_INT
*p_init_elts
, bool *p_complete
)
5732 return categorize_ctor_elements_1 (ctor
, p_nz_elts
, p_init_elts
, p_complete
);
5735 /* TYPE is initialized by a constructor with NUM_ELTS elements, the last
5736 of which had type LAST_TYPE. Each element was itself a complete
5737 initializer, in the sense that every meaningful byte was explicitly
5738 given a value. Return true if the same is true for the constructor
5742 complete_ctor_at_level_p (const_tree type
, HOST_WIDE_INT num_elts
,
5743 const_tree last_type
)
5745 if (TREE_CODE (type
) == UNION_TYPE
5746 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
5751 gcc_assert (num_elts
== 1 && last_type
);
5753 /* ??? We could look at each element of the union, and find the
5754 largest element. Which would avoid comparing the size of the
5755 initialized element against any tail padding in the union.
5756 Doesn't seem worth the effort... */
5757 return simple_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (last_type
)) == 1;
5760 return count_type_elements (type
, true) == num_elts
;
5763 /* Return 1 if EXP contains mostly (3/4) zeros. */
5766 mostly_zeros_p (const_tree exp
)
5768 if (TREE_CODE (exp
) == CONSTRUCTOR
)
5770 HOST_WIDE_INT nz_elts
, init_elts
;
5773 categorize_ctor_elements (exp
, &nz_elts
, &init_elts
, &complete_p
);
5774 return !complete_p
|| nz_elts
< init_elts
/ 4;
5777 return initializer_zerop (exp
);
5780 /* Return 1 if EXP contains all zeros. */
5783 all_zeros_p (const_tree exp
)
5785 if (TREE_CODE (exp
) == CONSTRUCTOR
)
5787 HOST_WIDE_INT nz_elts
, init_elts
;
5790 categorize_ctor_elements (exp
, &nz_elts
, &init_elts
, &complete_p
);
5791 return nz_elts
== 0;
5794 return initializer_zerop (exp
);
5797 /* Helper function for store_constructor.
5798 TARGET, BITSIZE, BITPOS, MODE, EXP are as for store_field.
5799 CLEARED is as for store_constructor.
5800 ALIAS_SET is the alias set to use for any stores.
5802 This provides a recursive shortcut back to store_constructor when it isn't
5803 necessary to go through store_field. This is so that we can pass through
5804 the cleared field to let store_constructor know that we may not have to
5805 clear a substructure if the outer structure has already been cleared. */
5808 store_constructor_field (rtx target
, unsigned HOST_WIDE_INT bitsize
,
5809 HOST_WIDE_INT bitpos
, enum machine_mode mode
,
5810 tree exp
, int cleared
, alias_set_type alias_set
)
5812 if (TREE_CODE (exp
) == CONSTRUCTOR
5813 /* We can only call store_constructor recursively if the size and
5814 bit position are on a byte boundary. */
5815 && bitpos
% BITS_PER_UNIT
== 0
5816 && (bitsize
> 0 && bitsize
% BITS_PER_UNIT
== 0)
5817 /* If we have a nonzero bitpos for a register target, then we just
5818 let store_field do the bitfield handling. This is unlikely to
5819 generate unnecessary clear instructions anyways. */
5820 && (bitpos
== 0 || MEM_P (target
)))
5824 = adjust_address (target
,
5825 GET_MODE (target
) == BLKmode
5827 % GET_MODE_ALIGNMENT (GET_MODE (target
)))
5828 ? BLKmode
: VOIDmode
, bitpos
/ BITS_PER_UNIT
);
5831 /* Update the alias set, if required. */
5832 if (MEM_P (target
) && ! MEM_KEEP_ALIAS_SET_P (target
)
5833 && MEM_ALIAS_SET (target
) != 0)
5835 target
= copy_rtx (target
);
5836 set_mem_alias_set (target
, alias_set
);
5839 store_constructor (exp
, target
, cleared
, bitsize
/ BITS_PER_UNIT
);
5842 store_field (target
, bitsize
, bitpos
, 0, 0, mode
, exp
, alias_set
, false);
5846 /* Returns the number of FIELD_DECLs in TYPE. */
5849 fields_length (const_tree type
)
5851 tree t
= TYPE_FIELDS (type
);
5854 for (; t
; t
= DECL_CHAIN (t
))
5855 if (TREE_CODE (t
) == FIELD_DECL
)
5862 /* Store the value of constructor EXP into the rtx TARGET.
5863 TARGET is either a REG or a MEM; we know it cannot conflict, since
5864 safe_from_p has been called.
5865 CLEARED is true if TARGET is known to have been zero'd.
5866 SIZE is the number of bytes of TARGET we are allowed to modify: this
5867 may not be the same as the size of EXP if we are assigning to a field
5868 which has been packed to exclude padding bits. */
5871 store_constructor (tree exp
, rtx target
, int cleared
, HOST_WIDE_INT size
)
5873 tree type
= TREE_TYPE (exp
);
5874 #ifdef WORD_REGISTER_OPERATIONS
5875 HOST_WIDE_INT exp_size
= int_size_in_bytes (type
);
5878 switch (TREE_CODE (type
))
5882 case QUAL_UNION_TYPE
:
5884 unsigned HOST_WIDE_INT idx
;
5887 /* If size is zero or the target is already cleared, do nothing. */
5888 if (size
== 0 || cleared
)
5890 /* We either clear the aggregate or indicate the value is dead. */
5891 else if ((TREE_CODE (type
) == UNION_TYPE
5892 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
5893 && ! CONSTRUCTOR_ELTS (exp
))
5894 /* If the constructor is empty, clear the union. */
5896 clear_storage (target
, expr_size (exp
), BLOCK_OP_NORMAL
);
5900 /* If we are building a static constructor into a register,
5901 set the initial value as zero so we can fold the value into
5902 a constant. But if more than one register is involved,
5903 this probably loses. */
5904 else if (REG_P (target
) && TREE_STATIC (exp
)
5905 && GET_MODE_SIZE (GET_MODE (target
)) <= UNITS_PER_WORD
)
5907 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
5911 /* If the constructor has fewer fields than the structure or
5912 if we are initializing the structure to mostly zeros, clear
5913 the whole structure first. Don't do this if TARGET is a
5914 register whose mode size isn't equal to SIZE since
5915 clear_storage can't handle this case. */
5917 && (((int)vec_safe_length (CONSTRUCTOR_ELTS (exp
))
5918 != fields_length (type
))
5919 || mostly_zeros_p (exp
))
5921 || ((HOST_WIDE_INT
) GET_MODE_SIZE (GET_MODE (target
))
5924 clear_storage (target
, GEN_INT (size
), BLOCK_OP_NORMAL
);
5928 if (REG_P (target
) && !cleared
)
5929 emit_clobber (target
);
5931 /* Store each element of the constructor into the
5932 corresponding field of TARGET. */
5933 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp
), idx
, field
, value
)
5935 enum machine_mode mode
;
5936 HOST_WIDE_INT bitsize
;
5937 HOST_WIDE_INT bitpos
= 0;
5939 rtx to_rtx
= target
;
5941 /* Just ignore missing fields. We cleared the whole
5942 structure, above, if any fields are missing. */
5946 if (cleared
&& initializer_zerop (value
))
5949 if (tree_fits_uhwi_p (DECL_SIZE (field
)))
5950 bitsize
= tree_to_uhwi (DECL_SIZE (field
));
5954 mode
= DECL_MODE (field
);
5955 if (DECL_BIT_FIELD (field
))
5958 offset
= DECL_FIELD_OFFSET (field
);
5959 if (tree_fits_shwi_p (offset
)
5960 && tree_fits_shwi_p (bit_position (field
)))
5962 bitpos
= int_bit_position (field
);
5966 bitpos
= tree_to_shwi (DECL_FIELD_BIT_OFFSET (field
));
5970 enum machine_mode address_mode
;
5974 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (offset
,
5975 make_tree (TREE_TYPE (exp
),
5978 offset_rtx
= expand_normal (offset
);
5979 gcc_assert (MEM_P (to_rtx
));
5981 address_mode
= get_address_mode (to_rtx
);
5982 if (GET_MODE (offset_rtx
) != address_mode
)
5983 offset_rtx
= convert_to_mode (address_mode
, offset_rtx
, 0);
5985 to_rtx
= offset_address (to_rtx
, offset_rtx
,
5986 highest_pow2_factor (offset
));
5989 #ifdef WORD_REGISTER_OPERATIONS
5990 /* If this initializes a field that is smaller than a
5991 word, at the start of a word, try to widen it to a full
5992 word. This special case allows us to output C++ member
5993 function initializations in a form that the optimizers
5996 && bitsize
< BITS_PER_WORD
5997 && bitpos
% BITS_PER_WORD
== 0
5998 && GET_MODE_CLASS (mode
) == MODE_INT
5999 && TREE_CODE (value
) == INTEGER_CST
6001 && bitpos
+ BITS_PER_WORD
<= exp_size
* BITS_PER_UNIT
)
6003 tree type
= TREE_TYPE (value
);
6005 if (TYPE_PRECISION (type
) < BITS_PER_WORD
)
6007 type
= lang_hooks
.types
.type_for_mode
6008 (word_mode
, TYPE_UNSIGNED (type
));
6009 value
= fold_convert (type
, value
);
6012 if (BYTES_BIG_ENDIAN
)
6014 = fold_build2 (LSHIFT_EXPR
, type
, value
,
6015 build_int_cst (type
,
6016 BITS_PER_WORD
- bitsize
));
6017 bitsize
= BITS_PER_WORD
;
6022 if (MEM_P (to_rtx
) && !MEM_KEEP_ALIAS_SET_P (to_rtx
)
6023 && DECL_NONADDRESSABLE_P (field
))
6025 to_rtx
= copy_rtx (to_rtx
);
6026 MEM_KEEP_ALIAS_SET_P (to_rtx
) = 1;
6029 store_constructor_field (to_rtx
, bitsize
, bitpos
, mode
,
6031 get_alias_set (TREE_TYPE (field
)));
6038 unsigned HOST_WIDE_INT i
;
6041 tree elttype
= TREE_TYPE (type
);
6043 HOST_WIDE_INT minelt
= 0;
6044 HOST_WIDE_INT maxelt
= 0;
6046 domain
= TYPE_DOMAIN (type
);
6047 const_bounds_p
= (TYPE_MIN_VALUE (domain
)
6048 && TYPE_MAX_VALUE (domain
)
6049 && tree_fits_shwi_p (TYPE_MIN_VALUE (domain
))
6050 && tree_fits_shwi_p (TYPE_MAX_VALUE (domain
)));
6052 /* If we have constant bounds for the range of the type, get them. */
6055 minelt
= tree_to_shwi (TYPE_MIN_VALUE (domain
));
6056 maxelt
= tree_to_shwi (TYPE_MAX_VALUE (domain
));
6059 /* If the constructor has fewer elements than the array, clear
6060 the whole array first. Similarly if this is static
6061 constructor of a non-BLKmode object. */
6064 else if (REG_P (target
) && TREE_STATIC (exp
))
6068 unsigned HOST_WIDE_INT idx
;
6070 HOST_WIDE_INT count
= 0, zero_count
= 0;
6071 need_to_clear
= ! const_bounds_p
;
6073 /* This loop is a more accurate version of the loop in
6074 mostly_zeros_p (it handles RANGE_EXPR in an index). It
6075 is also needed to check for missing elements. */
6076 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp
), idx
, index
, value
)
6078 HOST_WIDE_INT this_node_count
;
6083 if (index
!= NULL_TREE
&& TREE_CODE (index
) == RANGE_EXPR
)
6085 tree lo_index
= TREE_OPERAND (index
, 0);
6086 tree hi_index
= TREE_OPERAND (index
, 1);
6088 if (! tree_fits_uhwi_p (lo_index
)
6089 || ! tree_fits_uhwi_p (hi_index
))
6095 this_node_count
= (tree_to_uhwi (hi_index
)
6096 - tree_to_uhwi (lo_index
) + 1);
6099 this_node_count
= 1;
6101 count
+= this_node_count
;
6102 if (mostly_zeros_p (value
))
6103 zero_count
+= this_node_count
;
6106 /* Clear the entire array first if there are any missing
6107 elements, or if the incidence of zero elements is >=
6110 && (count
< maxelt
- minelt
+ 1
6111 || 4 * zero_count
>= 3 * count
))
6115 if (need_to_clear
&& size
> 0)
6118 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
6120 clear_storage (target
, GEN_INT (size
), BLOCK_OP_NORMAL
);
6124 if (!cleared
&& REG_P (target
))
6125 /* Inform later passes that the old value is dead. */
6126 emit_clobber (target
);
6128 /* Store each element of the constructor into the
6129 corresponding element of TARGET, determined by counting the
6131 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp
), i
, index
, value
)
6133 enum machine_mode mode
;
6134 HOST_WIDE_INT bitsize
;
6135 HOST_WIDE_INT bitpos
;
6136 rtx xtarget
= target
;
6138 if (cleared
&& initializer_zerop (value
))
6141 mode
= TYPE_MODE (elttype
);
6142 if (mode
== BLKmode
)
6143 bitsize
= (tree_fits_uhwi_p (TYPE_SIZE (elttype
))
6144 ? tree_to_uhwi (TYPE_SIZE (elttype
))
6147 bitsize
= GET_MODE_BITSIZE (mode
);
6149 if (index
!= NULL_TREE
&& TREE_CODE (index
) == RANGE_EXPR
)
6151 tree lo_index
= TREE_OPERAND (index
, 0);
6152 tree hi_index
= TREE_OPERAND (index
, 1);
6153 rtx index_r
, pos_rtx
;
6154 HOST_WIDE_INT lo
, hi
, count
;
6157 /* If the range is constant and "small", unroll the loop. */
6159 && tree_fits_shwi_p (lo_index
)
6160 && tree_fits_shwi_p (hi_index
)
6161 && (lo
= tree_to_shwi (lo_index
),
6162 hi
= tree_to_shwi (hi_index
),
6163 count
= hi
- lo
+ 1,
6166 || (tree_fits_uhwi_p (TYPE_SIZE (elttype
))
6167 && (tree_to_uhwi (TYPE_SIZE (elttype
)) * count
6170 lo
-= minelt
; hi
-= minelt
;
6171 for (; lo
<= hi
; lo
++)
6173 bitpos
= lo
* tree_to_shwi (TYPE_SIZE (elttype
));
6176 && !MEM_KEEP_ALIAS_SET_P (target
)
6177 && TREE_CODE (type
) == ARRAY_TYPE
6178 && TYPE_NONALIASED_COMPONENT (type
))
6180 target
= copy_rtx (target
);
6181 MEM_KEEP_ALIAS_SET_P (target
) = 1;
6184 store_constructor_field
6185 (target
, bitsize
, bitpos
, mode
, value
, cleared
,
6186 get_alias_set (elttype
));
6191 rtx loop_start
= gen_label_rtx ();
6192 rtx loop_end
= gen_label_rtx ();
6195 expand_normal (hi_index
);
6197 index
= build_decl (EXPR_LOCATION (exp
),
6198 VAR_DECL
, NULL_TREE
, domain
);
6199 index_r
= gen_reg_rtx (promote_decl_mode (index
, NULL
));
6200 SET_DECL_RTL (index
, index_r
);
6201 store_expr (lo_index
, index_r
, 0, false);
6203 /* Build the head of the loop. */
6204 do_pending_stack_adjust ();
6205 emit_label (loop_start
);
6207 /* Assign value to element index. */
6209 fold_convert (ssizetype
,
6210 fold_build2 (MINUS_EXPR
,
6213 TYPE_MIN_VALUE (domain
)));
6216 size_binop (MULT_EXPR
, position
,
6217 fold_convert (ssizetype
,
6218 TYPE_SIZE_UNIT (elttype
)));
6220 pos_rtx
= expand_normal (position
);
6221 xtarget
= offset_address (target
, pos_rtx
,
6222 highest_pow2_factor (position
));
6223 xtarget
= adjust_address (xtarget
, mode
, 0);
6224 if (TREE_CODE (value
) == CONSTRUCTOR
)
6225 store_constructor (value
, xtarget
, cleared
,
6226 bitsize
/ BITS_PER_UNIT
);
6228 store_expr (value
, xtarget
, 0, false);
6230 /* Generate a conditional jump to exit the loop. */
6231 exit_cond
= build2 (LT_EXPR
, integer_type_node
,
6233 jumpif (exit_cond
, loop_end
, -1);
6235 /* Update the loop counter, and jump to the head of
6237 expand_assignment (index
,
6238 build2 (PLUS_EXPR
, TREE_TYPE (index
),
6239 index
, integer_one_node
),
6242 emit_jump (loop_start
);
6244 /* Build the end of the loop. */
6245 emit_label (loop_end
);
6248 else if ((index
!= 0 && ! tree_fits_shwi_p (index
))
6249 || ! tree_fits_uhwi_p (TYPE_SIZE (elttype
)))
6254 index
= ssize_int (1);
6257 index
= fold_convert (ssizetype
,
6258 fold_build2 (MINUS_EXPR
,
6261 TYPE_MIN_VALUE (domain
)));
6264 size_binop (MULT_EXPR
, index
,
6265 fold_convert (ssizetype
,
6266 TYPE_SIZE_UNIT (elttype
)));
6267 xtarget
= offset_address (target
,
6268 expand_normal (position
),
6269 highest_pow2_factor (position
));
6270 xtarget
= adjust_address (xtarget
, mode
, 0);
6271 store_expr (value
, xtarget
, 0, false);
6276 bitpos
= ((tree_to_shwi (index
) - minelt
)
6277 * tree_to_uhwi (TYPE_SIZE (elttype
)));
6279 bitpos
= (i
* tree_to_uhwi (TYPE_SIZE (elttype
)));
6281 if (MEM_P (target
) && !MEM_KEEP_ALIAS_SET_P (target
)
6282 && TREE_CODE (type
) == ARRAY_TYPE
6283 && TYPE_NONALIASED_COMPONENT (type
))
6285 target
= copy_rtx (target
);
6286 MEM_KEEP_ALIAS_SET_P (target
) = 1;
6288 store_constructor_field (target
, bitsize
, bitpos
, mode
, value
,
6289 cleared
, get_alias_set (elttype
));
6297 unsigned HOST_WIDE_INT idx
;
6298 constructor_elt
*ce
;
6301 int icode
= CODE_FOR_nothing
;
6302 tree elttype
= TREE_TYPE (type
);
6303 int elt_size
= tree_to_uhwi (TYPE_SIZE (elttype
));
6304 enum machine_mode eltmode
= TYPE_MODE (elttype
);
6305 HOST_WIDE_INT bitsize
;
6306 HOST_WIDE_INT bitpos
;
6307 rtvec vector
= NULL
;
6309 alias_set_type alias
;
6311 gcc_assert (eltmode
!= BLKmode
);
6313 n_elts
= TYPE_VECTOR_SUBPARTS (type
);
6314 if (REG_P (target
) && VECTOR_MODE_P (GET_MODE (target
)))
6316 enum machine_mode mode
= GET_MODE (target
);
6318 icode
= (int) optab_handler (vec_init_optab
, mode
);
6319 /* Don't use vec_init<mode> if some elements have VECTOR_TYPE. */
6320 if (icode
!= CODE_FOR_nothing
)
6324 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
6325 if (TREE_CODE (TREE_TYPE (value
)) == VECTOR_TYPE
)
6327 icode
= CODE_FOR_nothing
;
6331 if (icode
!= CODE_FOR_nothing
)
6335 vector
= rtvec_alloc (n_elts
);
6336 for (i
= 0; i
< n_elts
; i
++)
6337 RTVEC_ELT (vector
, i
) = CONST0_RTX (GET_MODE_INNER (mode
));
6341 /* If the constructor has fewer elements than the vector,
6342 clear the whole array first. Similarly if this is static
6343 constructor of a non-BLKmode object. */
6346 else if (REG_P (target
) && TREE_STATIC (exp
))
6350 unsigned HOST_WIDE_INT count
= 0, zero_count
= 0;
6353 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
6355 int n_elts_here
= tree_to_uhwi
6356 (int_const_binop (TRUNC_DIV_EXPR
,
6357 TYPE_SIZE (TREE_TYPE (value
)),
6358 TYPE_SIZE (elttype
)));
6360 count
+= n_elts_here
;
6361 if (mostly_zeros_p (value
))
6362 zero_count
+= n_elts_here
;
6365 /* Clear the entire vector first if there are any missing elements,
6366 or if the incidence of zero elements is >= 75%. */
6367 need_to_clear
= (count
< n_elts
|| 4 * zero_count
>= 3 * count
);
6370 if (need_to_clear
&& size
> 0 && !vector
)
6373 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
6375 clear_storage (target
, GEN_INT (size
), BLOCK_OP_NORMAL
);
6379 /* Inform later passes that the old value is dead. */
6380 if (!cleared
&& !vector
&& REG_P (target
))
6381 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
6384 alias
= MEM_ALIAS_SET (target
);
6386 alias
= get_alias_set (elttype
);
6388 /* Store each element of the constructor into the corresponding
6389 element of TARGET, determined by counting the elements. */
6390 for (idx
= 0, i
= 0;
6391 vec_safe_iterate (CONSTRUCTOR_ELTS (exp
), idx
, &ce
);
6392 idx
++, i
+= bitsize
/ elt_size
)
6394 HOST_WIDE_INT eltpos
;
6395 tree value
= ce
->value
;
6397 bitsize
= tree_to_uhwi (TYPE_SIZE (TREE_TYPE (value
)));
6398 if (cleared
&& initializer_zerop (value
))
6402 eltpos
= tree_to_uhwi (ce
->index
);
6408 /* vec_init<mode> should not be used if there are VECTOR_TYPE
6410 gcc_assert (TREE_CODE (TREE_TYPE (value
)) != VECTOR_TYPE
);
6411 RTVEC_ELT (vector
, eltpos
)
6412 = expand_normal (value
);
6416 enum machine_mode value_mode
=
6417 TREE_CODE (TREE_TYPE (value
)) == VECTOR_TYPE
6418 ? TYPE_MODE (TREE_TYPE (value
))
6420 bitpos
= eltpos
* elt_size
;
6421 store_constructor_field (target
, bitsize
, bitpos
, value_mode
,
6422 value
, cleared
, alias
);
6427 emit_insn (GEN_FCN (icode
)
6429 gen_rtx_PARALLEL (GET_MODE (target
), vector
)));
6438 /* Store the value of EXP (an expression tree)
6439 into a subfield of TARGET which has mode MODE and occupies
6440 BITSIZE bits, starting BITPOS bits from the start of TARGET.
6441 If MODE is VOIDmode, it means that we are storing into a bit-field.
6443 BITREGION_START is bitpos of the first bitfield in this region.
6444 BITREGION_END is the bitpos of the ending bitfield in this region.
6445 These two fields are 0, if the C++ memory model does not apply,
6446 or we are not interested in keeping track of bitfield regions.
6448 Always return const0_rtx unless we have something particular to
6451 ALIAS_SET is the alias set for the destination. This value will
6452 (in general) be different from that for TARGET, since TARGET is a
6453 reference to the containing structure.
6455 If NONTEMPORAL is true, try generating a nontemporal store. */
6458 store_field (rtx target
, HOST_WIDE_INT bitsize
, HOST_WIDE_INT bitpos
,
6459 unsigned HOST_WIDE_INT bitregion_start
,
6460 unsigned HOST_WIDE_INT bitregion_end
,
6461 enum machine_mode mode
, tree exp
,
6462 alias_set_type alias_set
, bool nontemporal
)
6464 if (TREE_CODE (exp
) == ERROR_MARK
)
6467 /* If we have nothing to store, do nothing unless the expression has
6470 return expand_expr (exp
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
6472 if (GET_CODE (target
) == CONCAT
)
6474 /* We're storing into a struct containing a single __complex. */
6476 gcc_assert (!bitpos
);
6477 return store_expr (exp
, target
, 0, nontemporal
);
6480 /* If the structure is in a register or if the component
6481 is a bit field, we cannot use addressing to access it.
6482 Use bit-field techniques or SUBREG to store in it. */
6484 if (mode
== VOIDmode
6485 || (mode
!= BLKmode
&& ! direct_store
[(int) mode
]
6486 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_INT
6487 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_FLOAT
)
6489 || GET_CODE (target
) == SUBREG
6490 /* If the field isn't aligned enough to store as an ordinary memref,
6491 store it as a bit field. */
6493 && ((((MEM_ALIGN (target
) < GET_MODE_ALIGNMENT (mode
))
6494 || bitpos
% GET_MODE_ALIGNMENT (mode
))
6495 && SLOW_UNALIGNED_ACCESS (mode
, MEM_ALIGN (target
)))
6496 || (bitpos
% BITS_PER_UNIT
!= 0)))
6497 || (bitsize
>= 0 && mode
!= BLKmode
6498 && GET_MODE_BITSIZE (mode
) > bitsize
)
6499 /* If the RHS and field are a constant size and the size of the
6500 RHS isn't the same size as the bitfield, we must use bitfield
6503 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp
))) == INTEGER_CST
6504 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp
)), bitsize
) != 0)
6505 /* If we are expanding a MEM_REF of a non-BLKmode non-addressable
6506 decl we must use bitfield operations. */
6508 && TREE_CODE (exp
) == MEM_REF
6509 && TREE_CODE (TREE_OPERAND (exp
, 0)) == ADDR_EXPR
6510 && DECL_P (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0))
6511 && !TREE_ADDRESSABLE (TREE_OPERAND (TREE_OPERAND (exp
, 0),0 ))
6512 && DECL_MODE (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0)) != BLKmode
))
6517 /* If EXP is a NOP_EXPR of precision less than its mode, then that
6518 implies a mask operation. If the precision is the same size as
6519 the field we're storing into, that mask is redundant. This is
6520 particularly common with bit field assignments generated by the
6522 nop_def
= get_def_for_expr (exp
, NOP_EXPR
);
6525 tree type
= TREE_TYPE (exp
);
6526 if (INTEGRAL_TYPE_P (type
)
6527 && TYPE_PRECISION (type
) < GET_MODE_BITSIZE (TYPE_MODE (type
))
6528 && bitsize
== TYPE_PRECISION (type
))
6530 tree op
= gimple_assign_rhs1 (nop_def
);
6531 type
= TREE_TYPE (op
);
6532 if (INTEGRAL_TYPE_P (type
) && TYPE_PRECISION (type
) >= bitsize
)
6537 temp
= expand_normal (exp
);
6539 /* If BITSIZE is narrower than the size of the type of EXP
6540 we will be narrowing TEMP. Normally, what's wanted are the
6541 low-order bits. However, if EXP's type is a record and this is
6542 big-endian machine, we want the upper BITSIZE bits. */
6543 if (BYTES_BIG_ENDIAN
&& GET_MODE_CLASS (GET_MODE (temp
)) == MODE_INT
6544 && bitsize
< (HOST_WIDE_INT
) GET_MODE_BITSIZE (GET_MODE (temp
))
6545 && TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
6546 temp
= expand_shift (RSHIFT_EXPR
, GET_MODE (temp
), temp
,
6547 GET_MODE_BITSIZE (GET_MODE (temp
)) - bitsize
,
6550 /* Unless MODE is VOIDmode or BLKmode, convert TEMP to MODE. */
6551 if (mode
!= VOIDmode
&& mode
!= BLKmode
6552 && mode
!= TYPE_MODE (TREE_TYPE (exp
)))
6553 temp
= convert_modes (mode
, TYPE_MODE (TREE_TYPE (exp
)), temp
, 1);
6555 /* If the modes of TEMP and TARGET are both BLKmode, both
6556 must be in memory and BITPOS must be aligned on a byte
6557 boundary. If so, we simply do a block copy. Likewise
6558 for a BLKmode-like TARGET. */
6559 if (GET_MODE (temp
) == BLKmode
6560 && (GET_MODE (target
) == BLKmode
6562 && GET_MODE_CLASS (GET_MODE (target
)) == MODE_INT
6563 && (bitpos
% BITS_PER_UNIT
) == 0
6564 && (bitsize
% BITS_PER_UNIT
) == 0)))
6566 gcc_assert (MEM_P (target
) && MEM_P (temp
)
6567 && (bitpos
% BITS_PER_UNIT
) == 0);
6569 target
= adjust_address (target
, VOIDmode
, bitpos
/ BITS_PER_UNIT
);
6570 emit_block_move (target
, temp
,
6571 GEN_INT ((bitsize
+ BITS_PER_UNIT
- 1)
6578 /* Handle calls that return values in multiple non-contiguous locations.
6579 The Irix 6 ABI has examples of this. */
6580 if (GET_CODE (temp
) == PARALLEL
)
6582 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (exp
));
6584 if (mode
== BLKmode
)
6585 mode
= smallest_mode_for_size (size
* BITS_PER_UNIT
, MODE_INT
);
6586 temp_target
= gen_reg_rtx (mode
);
6587 emit_group_store (temp_target
, temp
, TREE_TYPE (exp
), size
);
6590 else if (mode
== BLKmode
)
6592 /* Handle calls that return BLKmode values in registers. */
6593 if (REG_P (temp
) && TREE_CODE (exp
) == CALL_EXPR
)
6595 rtx temp_target
= gen_reg_rtx (GET_MODE (temp
));
6596 copy_blkmode_from_reg (temp_target
, temp
, TREE_TYPE (exp
));
6601 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (exp
));
6603 mode
= smallest_mode_for_size (size
* BITS_PER_UNIT
, MODE_INT
);
6604 temp_target
= gen_reg_rtx (mode
);
6606 = extract_bit_field (temp
, size
* BITS_PER_UNIT
, 0, 1,
6607 temp_target
, mode
, mode
);
6612 /* Store the value in the bitfield. */
6613 store_bit_field (target
, bitsize
, bitpos
,
6614 bitregion_start
, bitregion_end
,
6621 /* Now build a reference to just the desired component. */
6622 rtx to_rtx
= adjust_address (target
, mode
, bitpos
/ BITS_PER_UNIT
);
6624 if (to_rtx
== target
)
6625 to_rtx
= copy_rtx (to_rtx
);
6627 if (!MEM_KEEP_ALIAS_SET_P (to_rtx
) && MEM_ALIAS_SET (to_rtx
) != 0)
6628 set_mem_alias_set (to_rtx
, alias_set
);
6630 return store_expr (exp
, to_rtx
, 0, nontemporal
);
6634 /* Given an expression EXP that may be a COMPONENT_REF, a BIT_FIELD_REF,
6635 an ARRAY_REF, or an ARRAY_RANGE_REF, look for nested operations of these
6636 codes and find the ultimate containing object, which we return.
6638 We set *PBITSIZE to the size in bits that we want, *PBITPOS to the
6639 bit position, and *PUNSIGNEDP to the signedness of the field.
6640 If the position of the field is variable, we store a tree
6641 giving the variable offset (in units) in *POFFSET.
6642 This offset is in addition to the bit position.
6643 If the position is not variable, we store 0 in *POFFSET.
6645 If any of the extraction expressions is volatile,
6646 we store 1 in *PVOLATILEP. Otherwise we don't change that.
6648 If the field is a non-BLKmode bit-field, *PMODE is set to VOIDmode.
6649 Otherwise, it is a mode that can be used to access the field.
6651 If the field describes a variable-sized object, *PMODE is set to
6652 BLKmode and *PBITSIZE is set to -1. An access cannot be made in
6653 this case, but the address of the object can be found.
6655 If KEEP_ALIGNING is true and the target is STRICT_ALIGNMENT, we don't
6656 look through nodes that serve as markers of a greater alignment than
6657 the one that can be deduced from the expression. These nodes make it
6658 possible for front-ends to prevent temporaries from being created by
6659 the middle-end on alignment considerations. For that purpose, the
6660 normal operating mode at high-level is to always pass FALSE so that
6661 the ultimate containing object is really returned; moreover, the
6662 associated predicate handled_component_p will always return TRUE
6663 on these nodes, thus indicating that they are essentially handled
6664 by get_inner_reference. TRUE should only be passed when the caller
6665 is scanning the expression in order to build another representation
6666 and specifically knows how to handle these nodes; as such, this is
6667 the normal operating mode in the RTL expanders. */
6670 get_inner_reference (tree exp
, HOST_WIDE_INT
*pbitsize
,
6671 HOST_WIDE_INT
*pbitpos
, tree
*poffset
,
6672 enum machine_mode
*pmode
, int *punsignedp
,
6673 int *pvolatilep
, bool keep_aligning
)
6676 enum machine_mode mode
= VOIDmode
;
6677 bool blkmode_bitfield
= false;
6678 tree offset
= size_zero_node
;
6679 offset_int bit_offset
= 0;
6681 /* First get the mode, signedness, and size. We do this from just the
6682 outermost expression. */
6684 if (TREE_CODE (exp
) == COMPONENT_REF
)
6686 tree field
= TREE_OPERAND (exp
, 1);
6687 size_tree
= DECL_SIZE (field
);
6688 if (flag_strict_volatile_bitfields
> 0
6689 && TREE_THIS_VOLATILE (exp
)
6690 && DECL_BIT_FIELD_TYPE (field
)
6691 && DECL_MODE (field
) != BLKmode
)
6692 /* Volatile bitfields should be accessed in the mode of the
6693 field's type, not the mode computed based on the bit
6695 mode
= TYPE_MODE (DECL_BIT_FIELD_TYPE (field
));
6696 else if (!DECL_BIT_FIELD (field
))
6697 mode
= DECL_MODE (field
);
6698 else if (DECL_MODE (field
) == BLKmode
)
6699 blkmode_bitfield
= true;
6701 *punsignedp
= DECL_UNSIGNED (field
);
6703 else if (TREE_CODE (exp
) == BIT_FIELD_REF
)
6705 size_tree
= TREE_OPERAND (exp
, 1);
6706 *punsignedp
= (! INTEGRAL_TYPE_P (TREE_TYPE (exp
))
6707 || TYPE_UNSIGNED (TREE_TYPE (exp
)));
6709 /* For vector types, with the correct size of access, use the mode of
6711 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp
, 0))) == VECTOR_TYPE
6712 && TREE_TYPE (exp
) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0)))
6713 && tree_int_cst_equal (size_tree
, TYPE_SIZE (TREE_TYPE (exp
))))
6714 mode
= TYPE_MODE (TREE_TYPE (exp
));
6718 mode
= TYPE_MODE (TREE_TYPE (exp
));
6719 *punsignedp
= TYPE_UNSIGNED (TREE_TYPE (exp
));
6721 if (mode
== BLKmode
)
6722 size_tree
= TYPE_SIZE (TREE_TYPE (exp
));
6724 *pbitsize
= GET_MODE_BITSIZE (mode
);
6729 if (! tree_fits_uhwi_p (size_tree
))
6730 mode
= BLKmode
, *pbitsize
= -1;
6732 *pbitsize
= tree_to_uhwi (size_tree
);
6735 /* Compute cumulative bit-offset for nested component-refs and array-refs,
6736 and find the ultimate containing object. */
6739 switch (TREE_CODE (exp
))
6742 bit_offset
+= wi::to_offset (TREE_OPERAND (exp
, 2));
6747 tree field
= TREE_OPERAND (exp
, 1);
6748 tree this_offset
= component_ref_field_offset (exp
);
6750 /* If this field hasn't been filled in yet, don't go past it.
6751 This should only happen when folding expressions made during
6752 type construction. */
6753 if (this_offset
== 0)
6756 offset
= size_binop (PLUS_EXPR
, offset
, this_offset
);
6757 bit_offset
+= wi::to_offset (DECL_FIELD_BIT_OFFSET (field
));
6759 /* ??? Right now we don't do anything with DECL_OFFSET_ALIGN. */
6764 case ARRAY_RANGE_REF
:
6766 tree index
= TREE_OPERAND (exp
, 1);
6767 tree low_bound
= array_ref_low_bound (exp
);
6768 tree unit_size
= array_ref_element_size (exp
);
6770 /* We assume all arrays have sizes that are a multiple of a byte.
6771 First subtract the lower bound, if any, in the type of the
6772 index, then convert to sizetype and multiply by the size of
6773 the array element. */
6774 if (! integer_zerop (low_bound
))
6775 index
= fold_build2 (MINUS_EXPR
, TREE_TYPE (index
),
6778 offset
= size_binop (PLUS_EXPR
, offset
,
6779 size_binop (MULT_EXPR
,
6780 fold_convert (sizetype
, index
),
6789 bit_offset
+= *pbitsize
;
6792 case VIEW_CONVERT_EXPR
:
6793 if (keep_aligning
&& STRICT_ALIGNMENT
6794 && (TYPE_ALIGN (TREE_TYPE (exp
))
6795 > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp
, 0))))
6796 && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp
, 0)))
6797 < BIGGEST_ALIGNMENT
)
6798 && (TYPE_ALIGN_OK (TREE_TYPE (exp
))
6799 || TYPE_ALIGN_OK (TREE_TYPE (TREE_OPERAND (exp
, 0)))))
6804 /* Hand back the decl for MEM[&decl, off]. */
6805 if (TREE_CODE (TREE_OPERAND (exp
, 0)) == ADDR_EXPR
)
6807 tree off
= TREE_OPERAND (exp
, 1);
6808 if (!integer_zerop (off
))
6810 offset_int boff
, coff
= mem_ref_offset (exp
);
6811 boff
= wi::lshift (coff
, LOG2_BITS_PER_UNIT
);
6814 exp
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
6822 /* If any reference in the chain is volatile, the effect is volatile. */
6823 if (TREE_THIS_VOLATILE (exp
))
6826 exp
= TREE_OPERAND (exp
, 0);
6830 /* If OFFSET is constant, see if we can return the whole thing as a
6831 constant bit position. Make sure to handle overflow during
6833 if (TREE_CODE (offset
) == INTEGER_CST
)
6835 offset_int tem
= wi::sext (wi::to_offset (offset
),
6836 TYPE_PRECISION (sizetype
));
6837 tem
= wi::lshift (tem
, LOG2_BITS_PER_UNIT
);
6839 if (wi::fits_shwi_p (tem
))
6841 *pbitpos
= tem
.to_shwi ();
6842 *poffset
= offset
= NULL_TREE
;
6846 /* Otherwise, split it up. */
6849 /* Avoid returning a negative bitpos as this may wreak havoc later. */
6850 if (wi::neg_p (bit_offset
))
6852 offset_int mask
= wi::mask
<offset_int
> (LOG2_BITS_PER_UNIT
, false);
6853 offset_int tem
= bit_offset
.and_not (mask
);
6854 /* TEM is the bitpos rounded to BITS_PER_UNIT towards -Inf.
6855 Subtract it to BIT_OFFSET and add it (scaled) to OFFSET. */
6857 tem
= wi::arshift (tem
, LOG2_BITS_PER_UNIT
);
6858 offset
= size_binop (PLUS_EXPR
, offset
,
6859 wide_int_to_tree (sizetype
, tem
));
6862 *pbitpos
= bit_offset
.to_shwi ();
6866 /* We can use BLKmode for a byte-aligned BLKmode bitfield. */
6867 if (mode
== VOIDmode
6869 && (*pbitpos
% BITS_PER_UNIT
) == 0
6870 && (*pbitsize
% BITS_PER_UNIT
) == 0)
6878 /* Return a tree of sizetype representing the size, in bytes, of the element
6879 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6882 array_ref_element_size (tree exp
)
6884 tree aligned_size
= TREE_OPERAND (exp
, 3);
6885 tree elmt_type
= TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0)));
6886 location_t loc
= EXPR_LOCATION (exp
);
6888 /* If a size was specified in the ARRAY_REF, it's the size measured
6889 in alignment units of the element type. So multiply by that value. */
6892 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6893 sizetype from another type of the same width and signedness. */
6894 if (TREE_TYPE (aligned_size
) != sizetype
)
6895 aligned_size
= fold_convert_loc (loc
, sizetype
, aligned_size
);
6896 return size_binop_loc (loc
, MULT_EXPR
, aligned_size
,
6897 size_int (TYPE_ALIGN_UNIT (elmt_type
)));
6900 /* Otherwise, take the size from that of the element type. Substitute
6901 any PLACEHOLDER_EXPR that we have. */
6903 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type
), exp
);
6906 /* Return a tree representing the lower bound of the array mentioned in
6907 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6910 array_ref_low_bound (tree exp
)
6912 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
6914 /* If a lower bound is specified in EXP, use it. */
6915 if (TREE_OPERAND (exp
, 2))
6916 return TREE_OPERAND (exp
, 2);
6918 /* Otherwise, if there is a domain type and it has a lower bound, use it,
6919 substituting for a PLACEHOLDER_EXPR as needed. */
6920 if (domain_type
&& TYPE_MIN_VALUE (domain_type
))
6921 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type
), exp
);
6923 /* Otherwise, return a zero of the appropriate type. */
6924 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp
, 1)), 0);
6927 /* Returns true if REF is an array reference to an array at the end of
6928 a structure. If this is the case, the array may be allocated larger
6929 than its upper bound implies. */
6932 array_at_struct_end_p (tree ref
)
6934 if (TREE_CODE (ref
) != ARRAY_REF
6935 && TREE_CODE (ref
) != ARRAY_RANGE_REF
)
6938 while (handled_component_p (ref
))
6940 /* If the reference chain contains a component reference to a
6941 non-union type and there follows another field the reference
6942 is not at the end of a structure. */
6943 if (TREE_CODE (ref
) == COMPONENT_REF
6944 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref
, 0))) == RECORD_TYPE
)
6946 tree nextf
= DECL_CHAIN (TREE_OPERAND (ref
, 1));
6947 while (nextf
&& TREE_CODE (nextf
) != FIELD_DECL
)
6948 nextf
= DECL_CHAIN (nextf
);
6953 ref
= TREE_OPERAND (ref
, 0);
6956 /* If the reference is based on a declared entity, the size of the array
6957 is constrained by its given domain. */
6964 /* Return a tree representing the upper bound of the array mentioned in
6965 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6968 array_ref_up_bound (tree exp
)
6970 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
6972 /* If there is a domain type and it has an upper bound, use it, substituting
6973 for a PLACEHOLDER_EXPR as needed. */
6974 if (domain_type
&& TYPE_MAX_VALUE (domain_type
))
6975 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type
), exp
);
6977 /* Otherwise fail. */
6981 /* Return a tree representing the offset, in bytes, of the field referenced
6982 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
6985 component_ref_field_offset (tree exp
)
6987 tree aligned_offset
= TREE_OPERAND (exp
, 2);
6988 tree field
= TREE_OPERAND (exp
, 1);
6989 location_t loc
= EXPR_LOCATION (exp
);
6991 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
6992 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
6996 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6997 sizetype from another type of the same width and signedness. */
6998 if (TREE_TYPE (aligned_offset
) != sizetype
)
6999 aligned_offset
= fold_convert_loc (loc
, sizetype
, aligned_offset
);
7000 return size_binop_loc (loc
, MULT_EXPR
, aligned_offset
,
7001 size_int (DECL_OFFSET_ALIGN (field
)
7005 /* Otherwise, take the offset from that of the field. Substitute
7006 any PLACEHOLDER_EXPR that we have. */
7008 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field
), exp
);
7011 /* Alignment in bits the TARGET of an assignment may be assumed to have. */
7013 static unsigned HOST_WIDE_INT
7014 target_align (const_tree target
)
7016 /* We might have a chain of nested references with intermediate misaligning
7017 bitfields components, so need to recurse to find out. */
7019 unsigned HOST_WIDE_INT this_align
, outer_align
;
7021 switch (TREE_CODE (target
))
7027 this_align
= DECL_ALIGN (TREE_OPERAND (target
, 1));
7028 outer_align
= target_align (TREE_OPERAND (target
, 0));
7029 return MIN (this_align
, outer_align
);
7032 case ARRAY_RANGE_REF
:
7033 this_align
= TYPE_ALIGN (TREE_TYPE (target
));
7034 outer_align
= target_align (TREE_OPERAND (target
, 0));
7035 return MIN (this_align
, outer_align
);
7038 case NON_LVALUE_EXPR
:
7039 case VIEW_CONVERT_EXPR
:
7040 this_align
= TYPE_ALIGN (TREE_TYPE (target
));
7041 outer_align
= target_align (TREE_OPERAND (target
, 0));
7042 return MAX (this_align
, outer_align
);
7045 return TYPE_ALIGN (TREE_TYPE (target
));
7050 /* Given an rtx VALUE that may contain additions and multiplications, return
7051 an equivalent value that just refers to a register, memory, or constant.
7052 This is done by generating instructions to perform the arithmetic and
7053 returning a pseudo-register containing the value.
7055 The returned value may be a REG, SUBREG, MEM or constant. */
7058 force_operand (rtx value
, rtx target
)
7061 /* Use subtarget as the target for operand 0 of a binary operation. */
7062 rtx subtarget
= get_subtarget (target
);
7063 enum rtx_code code
= GET_CODE (value
);
7065 /* Check for subreg applied to an expression produced by loop optimizer. */
7067 && !REG_P (SUBREG_REG (value
))
7068 && !MEM_P (SUBREG_REG (value
)))
7071 = simplify_gen_subreg (GET_MODE (value
),
7072 force_reg (GET_MODE (SUBREG_REG (value
)),
7073 force_operand (SUBREG_REG (value
),
7075 GET_MODE (SUBREG_REG (value
)),
7076 SUBREG_BYTE (value
));
7077 code
= GET_CODE (value
);
7080 /* Check for a PIC address load. */
7081 if ((code
== PLUS
|| code
== MINUS
)
7082 && XEXP (value
, 0) == pic_offset_table_rtx
7083 && (GET_CODE (XEXP (value
, 1)) == SYMBOL_REF
7084 || GET_CODE (XEXP (value
, 1)) == LABEL_REF
7085 || GET_CODE (XEXP (value
, 1)) == CONST
))
7088 subtarget
= gen_reg_rtx (GET_MODE (value
));
7089 emit_move_insn (subtarget
, value
);
7093 if (ARITHMETIC_P (value
))
7095 op2
= XEXP (value
, 1);
7096 if (!CONSTANT_P (op2
) && !(REG_P (op2
) && op2
!= subtarget
))
7098 if (code
== MINUS
&& CONST_INT_P (op2
))
7101 op2
= negate_rtx (GET_MODE (value
), op2
);
7104 /* Check for an addition with OP2 a constant integer and our first
7105 operand a PLUS of a virtual register and something else. In that
7106 case, we want to emit the sum of the virtual register and the
7107 constant first and then add the other value. This allows virtual
7108 register instantiation to simply modify the constant rather than
7109 creating another one around this addition. */
7110 if (code
== PLUS
&& CONST_INT_P (op2
)
7111 && GET_CODE (XEXP (value
, 0)) == PLUS
7112 && REG_P (XEXP (XEXP (value
, 0), 0))
7113 && REGNO (XEXP (XEXP (value
, 0), 0)) >= FIRST_VIRTUAL_REGISTER
7114 && REGNO (XEXP (XEXP (value
, 0), 0)) <= LAST_VIRTUAL_REGISTER
)
7116 rtx temp
= expand_simple_binop (GET_MODE (value
), code
,
7117 XEXP (XEXP (value
, 0), 0), op2
,
7118 subtarget
, 0, OPTAB_LIB_WIDEN
);
7119 return expand_simple_binop (GET_MODE (value
), code
, temp
,
7120 force_operand (XEXP (XEXP (value
,
7122 target
, 0, OPTAB_LIB_WIDEN
);
7125 op1
= force_operand (XEXP (value
, 0), subtarget
);
7126 op2
= force_operand (op2
, NULL_RTX
);
7130 return expand_mult (GET_MODE (value
), op1
, op2
, target
, 1);
7132 if (!INTEGRAL_MODE_P (GET_MODE (value
)))
7133 return expand_simple_binop (GET_MODE (value
), code
, op1
, op2
,
7134 target
, 1, OPTAB_LIB_WIDEN
);
7136 return expand_divmod (0,
7137 FLOAT_MODE_P (GET_MODE (value
))
7138 ? RDIV_EXPR
: TRUNC_DIV_EXPR
,
7139 GET_MODE (value
), op1
, op2
, target
, 0);
7141 return expand_divmod (1, TRUNC_MOD_EXPR
, GET_MODE (value
), op1
, op2
,
7144 return expand_divmod (0, TRUNC_DIV_EXPR
, GET_MODE (value
), op1
, op2
,
7147 return expand_divmod (1, TRUNC_MOD_EXPR
, GET_MODE (value
), op1
, op2
,
7150 return expand_simple_binop (GET_MODE (value
), code
, op1
, op2
,
7151 target
, 0, OPTAB_LIB_WIDEN
);
7153 return expand_simple_binop (GET_MODE (value
), code
, op1
, op2
,
7154 target
, 1, OPTAB_LIB_WIDEN
);
7157 if (UNARY_P (value
))
7160 target
= gen_reg_rtx (GET_MODE (value
));
7161 op1
= force_operand (XEXP (value
, 0), NULL_RTX
);
7168 case FLOAT_TRUNCATE
:
7169 convert_move (target
, op1
, code
== ZERO_EXTEND
);
7174 expand_fix (target
, op1
, code
== UNSIGNED_FIX
);
7178 case UNSIGNED_FLOAT
:
7179 expand_float (target
, op1
, code
== UNSIGNED_FLOAT
);
7183 return expand_simple_unop (GET_MODE (value
), code
, op1
, target
, 0);
7187 #ifdef INSN_SCHEDULING
7188 /* On machines that have insn scheduling, we want all memory reference to be
7189 explicit, so we need to deal with such paradoxical SUBREGs. */
7190 if (paradoxical_subreg_p (value
) && MEM_P (SUBREG_REG (value
)))
7192 = simplify_gen_subreg (GET_MODE (value
),
7193 force_reg (GET_MODE (SUBREG_REG (value
)),
7194 force_operand (SUBREG_REG (value
),
7196 GET_MODE (SUBREG_REG (value
)),
7197 SUBREG_BYTE (value
));
7203 /* Subroutine of expand_expr: return nonzero iff there is no way that
7204 EXP can reference X, which is being modified. TOP_P is nonzero if this
7205 call is going to be used to determine whether we need a temporary
7206 for EXP, as opposed to a recursive call to this function.
7208 It is always safe for this routine to return zero since it merely
7209 searches for optimization opportunities. */
7212 safe_from_p (const_rtx x
, tree exp
, int top_p
)
7218 /* If EXP has varying size, we MUST use a target since we currently
7219 have no way of allocating temporaries of variable size
7220 (except for arrays that have TYPE_ARRAY_MAX_SIZE set).
7221 So we assume here that something at a higher level has prevented a
7222 clash. This is somewhat bogus, but the best we can do. Only
7223 do this when X is BLKmode and when we are at the top level. */
7224 || (top_p
&& TREE_TYPE (exp
) != 0 && COMPLETE_TYPE_P (TREE_TYPE (exp
))
7225 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp
))) != INTEGER_CST
7226 && (TREE_CODE (TREE_TYPE (exp
)) != ARRAY_TYPE
7227 || TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp
)) == NULL_TREE
7228 || TREE_CODE (TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp
)))
7230 && GET_MODE (x
) == BLKmode
)
7231 /* If X is in the outgoing argument area, it is always safe. */
7233 && (XEXP (x
, 0) == virtual_outgoing_args_rtx
7234 || (GET_CODE (XEXP (x
, 0)) == PLUS
7235 && XEXP (XEXP (x
, 0), 0) == virtual_outgoing_args_rtx
))))
7238 /* If this is a subreg of a hard register, declare it unsafe, otherwise,
7239 find the underlying pseudo. */
7240 if (GET_CODE (x
) == SUBREG
)
7243 if (REG_P (x
) && REGNO (x
) < FIRST_PSEUDO_REGISTER
)
7247 /* Now look at our tree code and possibly recurse. */
7248 switch (TREE_CODE_CLASS (TREE_CODE (exp
)))
7250 case tcc_declaration
:
7251 exp_rtl
= DECL_RTL_IF_SET (exp
);
7257 case tcc_exceptional
:
7258 if (TREE_CODE (exp
) == TREE_LIST
)
7262 if (TREE_VALUE (exp
) && !safe_from_p (x
, TREE_VALUE (exp
), 0))
7264 exp
= TREE_CHAIN (exp
);
7267 if (TREE_CODE (exp
) != TREE_LIST
)
7268 return safe_from_p (x
, exp
, 0);
7271 else if (TREE_CODE (exp
) == CONSTRUCTOR
)
7273 constructor_elt
*ce
;
7274 unsigned HOST_WIDE_INT idx
;
7276 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (exp
), idx
, ce
)
7277 if ((ce
->index
!= NULL_TREE
&& !safe_from_p (x
, ce
->index
, 0))
7278 || !safe_from_p (x
, ce
->value
, 0))
7282 else if (TREE_CODE (exp
) == ERROR_MARK
)
7283 return 1; /* An already-visited SAVE_EXPR? */
7288 /* The only case we look at here is the DECL_INITIAL inside a
7290 return (TREE_CODE (exp
) != DECL_EXPR
7291 || TREE_CODE (DECL_EXPR_DECL (exp
)) != VAR_DECL
7292 || !DECL_INITIAL (DECL_EXPR_DECL (exp
))
7293 || safe_from_p (x
, DECL_INITIAL (DECL_EXPR_DECL (exp
)), 0));
7296 case tcc_comparison
:
7297 if (!safe_from_p (x
, TREE_OPERAND (exp
, 1), 0))
7302 return safe_from_p (x
, TREE_OPERAND (exp
, 0), 0);
7304 case tcc_expression
:
7307 /* Now do code-specific tests. EXP_RTL is set to any rtx we find in
7308 the expression. If it is set, we conflict iff we are that rtx or
7309 both are in memory. Otherwise, we check all operands of the
7310 expression recursively. */
7312 switch (TREE_CODE (exp
))
7315 /* If the operand is static or we are static, we can't conflict.
7316 Likewise if we don't conflict with the operand at all. */
7317 if (staticp (TREE_OPERAND (exp
, 0))
7318 || TREE_STATIC (exp
)
7319 || safe_from_p (x
, TREE_OPERAND (exp
, 0), 0))
7322 /* Otherwise, the only way this can conflict is if we are taking
7323 the address of a DECL a that address if part of X, which is
7325 exp
= TREE_OPERAND (exp
, 0);
7328 if (!DECL_RTL_SET_P (exp
)
7329 || !MEM_P (DECL_RTL (exp
)))
7332 exp_rtl
= XEXP (DECL_RTL (exp
), 0);
7338 && alias_sets_conflict_p (MEM_ALIAS_SET (x
),
7339 get_alias_set (exp
)))
7344 /* Assume that the call will clobber all hard registers and
7346 if ((REG_P (x
) && REGNO (x
) < FIRST_PSEUDO_REGISTER
)
7351 case WITH_CLEANUP_EXPR
:
7352 case CLEANUP_POINT_EXPR
:
7353 /* Lowered by gimplify.c. */
7357 return safe_from_p (x
, TREE_OPERAND (exp
, 0), 0);
7363 /* If we have an rtx, we do not need to scan our operands. */
7367 nops
= TREE_OPERAND_LENGTH (exp
);
7368 for (i
= 0; i
< nops
; i
++)
7369 if (TREE_OPERAND (exp
, i
) != 0
7370 && ! safe_from_p (x
, TREE_OPERAND (exp
, i
), 0))
7376 /* Should never get a type here. */
7380 /* If we have an rtl, find any enclosed object. Then see if we conflict
7384 if (GET_CODE (exp_rtl
) == SUBREG
)
7386 exp_rtl
= SUBREG_REG (exp_rtl
);
7388 && REGNO (exp_rtl
) < FIRST_PSEUDO_REGISTER
)
7392 /* If the rtl is X, then it is not safe. Otherwise, it is unless both
7393 are memory and they conflict. */
7394 return ! (rtx_equal_p (x
, exp_rtl
)
7395 || (MEM_P (x
) && MEM_P (exp_rtl
)
7396 && true_dependence (exp_rtl
, VOIDmode
, x
)));
7399 /* If we reach here, it is safe. */
7404 /* Return the highest power of two that EXP is known to be a multiple of.
7405 This is used in updating alignment of MEMs in array references. */
7407 unsigned HOST_WIDE_INT
7408 highest_pow2_factor (const_tree exp
)
7410 unsigned HOST_WIDE_INT ret
;
7411 int trailing_zeros
= tree_ctz (exp
);
7412 if (trailing_zeros
>= HOST_BITS_PER_WIDE_INT
)
7413 return BIGGEST_ALIGNMENT
;
7414 ret
= (unsigned HOST_WIDE_INT
) 1 << trailing_zeros
;
7415 if (ret
> BIGGEST_ALIGNMENT
)
7416 return BIGGEST_ALIGNMENT
;
7420 /* Similar, except that the alignment requirements of TARGET are
7421 taken into account. Assume it is at least as aligned as its
7422 type, unless it is a COMPONENT_REF in which case the layout of
7423 the structure gives the alignment. */
7425 static unsigned HOST_WIDE_INT
7426 highest_pow2_factor_for_target (const_tree target
, const_tree exp
)
7428 unsigned HOST_WIDE_INT talign
= target_align (target
) / BITS_PER_UNIT
;
7429 unsigned HOST_WIDE_INT factor
= highest_pow2_factor (exp
);
7431 return MAX (factor
, talign
);
7434 #ifdef HAVE_conditional_move
7435 /* Convert the tree comparison code TCODE to the rtl one where the
7436 signedness is UNSIGNEDP. */
7438 static enum rtx_code
7439 convert_tree_comp_to_rtx (enum tree_code tcode
, int unsignedp
)
7451 code
= unsignedp
? LTU
: LT
;
7454 code
= unsignedp
? LEU
: LE
;
7457 code
= unsignedp
? GTU
: GT
;
7460 code
= unsignedp
? GEU
: GE
;
7462 case UNORDERED_EXPR
:
7494 /* Subroutine of expand_expr. Expand the two operands of a binary
7495 expression EXP0 and EXP1 placing the results in OP0 and OP1.
7496 The value may be stored in TARGET if TARGET is nonzero. The
7497 MODIFIER argument is as documented by expand_expr. */
7500 expand_operands (tree exp0
, tree exp1
, rtx target
, rtx
*op0
, rtx
*op1
,
7501 enum expand_modifier modifier
)
7503 if (! safe_from_p (target
, exp1
, 1))
7505 if (operand_equal_p (exp0
, exp1
, 0))
7507 *op0
= expand_expr (exp0
, target
, VOIDmode
, modifier
);
7508 *op1
= copy_rtx (*op0
);
7512 /* If we need to preserve evaluation order, copy exp0 into its own
7513 temporary variable so that it can't be clobbered by exp1. */
7514 if (flag_evaluation_order
&& TREE_SIDE_EFFECTS (exp1
))
7515 exp0
= save_expr (exp0
);
7516 *op0
= expand_expr (exp0
, target
, VOIDmode
, modifier
);
7517 *op1
= expand_expr (exp1
, NULL_RTX
, VOIDmode
, modifier
);
7522 /* Return a MEM that contains constant EXP. DEFER is as for
7523 output_constant_def and MODIFIER is as for expand_expr. */
7526 expand_expr_constant (tree exp
, int defer
, enum expand_modifier modifier
)
7530 mem
= output_constant_def (exp
, defer
);
7531 if (modifier
!= EXPAND_INITIALIZER
)
7532 mem
= use_anchored_address (mem
);
7536 /* A subroutine of expand_expr_addr_expr. Evaluate the address of EXP.
7537 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7540 expand_expr_addr_expr_1 (tree exp
, rtx target
, enum machine_mode tmode
,
7541 enum expand_modifier modifier
, addr_space_t as
)
7543 rtx result
, subtarget
;
7545 HOST_WIDE_INT bitsize
, bitpos
;
7546 int volatilep
, unsignedp
;
7547 enum machine_mode mode1
;
7549 /* If we are taking the address of a constant and are at the top level,
7550 we have to use output_constant_def since we can't call force_const_mem
7552 /* ??? This should be considered a front-end bug. We should not be
7553 generating ADDR_EXPR of something that isn't an LVALUE. The only
7554 exception here is STRING_CST. */
7555 if (CONSTANT_CLASS_P (exp
))
7557 result
= XEXP (expand_expr_constant (exp
, 0, modifier
), 0);
7558 if (modifier
< EXPAND_SUM
)
7559 result
= force_operand (result
, target
);
7563 /* Everything must be something allowed by is_gimple_addressable. */
7564 switch (TREE_CODE (exp
))
7567 /* This case will happen via recursion for &a->b. */
7568 return expand_expr (TREE_OPERAND (exp
, 0), target
, tmode
, modifier
);
7572 tree tem
= TREE_OPERAND (exp
, 0);
7573 if (!integer_zerop (TREE_OPERAND (exp
, 1)))
7574 tem
= fold_build_pointer_plus (tem
, TREE_OPERAND (exp
, 1));
7575 return expand_expr (tem
, target
, tmode
, modifier
);
7579 /* Expand the initializer like constants above. */
7580 result
= XEXP (expand_expr_constant (DECL_INITIAL (exp
),
7582 if (modifier
< EXPAND_SUM
)
7583 result
= force_operand (result
, target
);
7587 /* The real part of the complex number is always first, therefore
7588 the address is the same as the address of the parent object. */
7591 inner
= TREE_OPERAND (exp
, 0);
7595 /* The imaginary part of the complex number is always second.
7596 The expression is therefore always offset by the size of the
7599 bitpos
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp
)));
7600 inner
= TREE_OPERAND (exp
, 0);
7603 case COMPOUND_LITERAL_EXPR
:
7604 /* Allow COMPOUND_LITERAL_EXPR in initializers, if e.g.
7605 rtl_for_decl_init is called on DECL_INITIAL with
7606 COMPOUNT_LITERAL_EXPRs in it, they aren't gimplified. */
7607 if (modifier
== EXPAND_INITIALIZER
7608 && COMPOUND_LITERAL_EXPR_DECL (exp
))
7609 return expand_expr_addr_expr_1 (COMPOUND_LITERAL_EXPR_DECL (exp
),
7610 target
, tmode
, modifier
, as
);
7613 /* If the object is a DECL, then expand it for its rtl. Don't bypass
7614 expand_expr, as that can have various side effects; LABEL_DECLs for
7615 example, may not have their DECL_RTL set yet. Expand the rtl of
7616 CONSTRUCTORs too, which should yield a memory reference for the
7617 constructor's contents. Assume language specific tree nodes can
7618 be expanded in some interesting way. */
7619 gcc_assert (TREE_CODE (exp
) < LAST_AND_UNUSED_TREE_CODE
);
7621 || TREE_CODE (exp
) == CONSTRUCTOR
7622 || TREE_CODE (exp
) == COMPOUND_LITERAL_EXPR
)
7624 result
= expand_expr (exp
, target
, tmode
,
7625 modifier
== EXPAND_INITIALIZER
7626 ? EXPAND_INITIALIZER
: EXPAND_CONST_ADDRESS
);
7628 /* If the DECL isn't in memory, then the DECL wasn't properly
7629 marked TREE_ADDRESSABLE, which will be either a front-end
7630 or a tree optimizer bug. */
7632 if (TREE_ADDRESSABLE (exp
)
7634 && ! targetm
.calls
.allocate_stack_slots_for_args ())
7636 error ("local frame unavailable (naked function?)");
7640 gcc_assert (MEM_P (result
));
7641 result
= XEXP (result
, 0);
7643 /* ??? Is this needed anymore? */
7645 TREE_USED (exp
) = 1;
7647 if (modifier
!= EXPAND_INITIALIZER
7648 && modifier
!= EXPAND_CONST_ADDRESS
7649 && modifier
!= EXPAND_SUM
)
7650 result
= force_operand (result
, target
);
7654 /* Pass FALSE as the last argument to get_inner_reference although
7655 we are expanding to RTL. The rationale is that we know how to
7656 handle "aligning nodes" here: we can just bypass them because
7657 they won't change the final object whose address will be returned
7658 (they actually exist only for that purpose). */
7659 inner
= get_inner_reference (exp
, &bitsize
, &bitpos
, &offset
,
7660 &mode1
, &unsignedp
, &volatilep
, false);
7664 /* We must have made progress. */
7665 gcc_assert (inner
!= exp
);
7667 subtarget
= offset
|| bitpos
? NULL_RTX
: target
;
7668 /* For VIEW_CONVERT_EXPR, where the outer alignment is bigger than
7669 inner alignment, force the inner to be sufficiently aligned. */
7670 if (CONSTANT_CLASS_P (inner
)
7671 && TYPE_ALIGN (TREE_TYPE (inner
)) < TYPE_ALIGN (TREE_TYPE (exp
)))
7673 inner
= copy_node (inner
);
7674 TREE_TYPE (inner
) = copy_node (TREE_TYPE (inner
));
7675 TYPE_ALIGN (TREE_TYPE (inner
)) = TYPE_ALIGN (TREE_TYPE (exp
));
7676 TYPE_USER_ALIGN (TREE_TYPE (inner
)) = 1;
7678 result
= expand_expr_addr_expr_1 (inner
, subtarget
, tmode
, modifier
, as
);
7684 if (modifier
!= EXPAND_NORMAL
)
7685 result
= force_operand (result
, NULL
);
7686 tmp
= expand_expr (offset
, NULL_RTX
, tmode
,
7687 modifier
== EXPAND_INITIALIZER
7688 ? EXPAND_INITIALIZER
: EXPAND_NORMAL
);
7690 /* expand_expr is allowed to return an object in a mode other
7691 than TMODE. If it did, we need to convert. */
7692 if (GET_MODE (tmp
) != VOIDmode
&& tmode
!= GET_MODE (tmp
))
7693 tmp
= convert_modes (tmode
, GET_MODE (tmp
),
7694 tmp
, TYPE_UNSIGNED (TREE_TYPE (offset
)));
7695 result
= convert_memory_address_addr_space (tmode
, result
, as
);
7696 tmp
= convert_memory_address_addr_space (tmode
, tmp
, as
);
7698 if (modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
)
7699 result
= simplify_gen_binary (PLUS
, tmode
, result
, tmp
);
7702 subtarget
= bitpos
? NULL_RTX
: target
;
7703 result
= expand_simple_binop (tmode
, PLUS
, result
, tmp
, subtarget
,
7704 1, OPTAB_LIB_WIDEN
);
7710 /* Someone beforehand should have rejected taking the address
7711 of such an object. */
7712 gcc_assert ((bitpos
% BITS_PER_UNIT
) == 0);
7714 result
= convert_memory_address_addr_space (tmode
, result
, as
);
7715 result
= plus_constant (tmode
, result
, bitpos
/ BITS_PER_UNIT
);
7716 if (modifier
< EXPAND_SUM
)
7717 result
= force_operand (result
, target
);
7723 /* A subroutine of expand_expr. Evaluate EXP, which is an ADDR_EXPR.
7724 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7727 expand_expr_addr_expr (tree exp
, rtx target
, enum machine_mode tmode
,
7728 enum expand_modifier modifier
)
7730 addr_space_t as
= ADDR_SPACE_GENERIC
;
7731 enum machine_mode address_mode
= Pmode
;
7732 enum machine_mode pointer_mode
= ptr_mode
;
7733 enum machine_mode rmode
;
7736 /* Target mode of VOIDmode says "whatever's natural". */
7737 if (tmode
== VOIDmode
)
7738 tmode
= TYPE_MODE (TREE_TYPE (exp
));
7740 if (POINTER_TYPE_P (TREE_TYPE (exp
)))
7742 as
= TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)));
7743 address_mode
= targetm
.addr_space
.address_mode (as
);
7744 pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7747 /* We can get called with some Weird Things if the user does silliness
7748 like "(short) &a". In that case, convert_memory_address won't do
7749 the right thing, so ignore the given target mode. */
7750 if (tmode
!= address_mode
&& tmode
!= pointer_mode
)
7751 tmode
= address_mode
;
7753 result
= expand_expr_addr_expr_1 (TREE_OPERAND (exp
, 0), target
,
7754 tmode
, modifier
, as
);
7756 /* Despite expand_expr claims concerning ignoring TMODE when not
7757 strictly convenient, stuff breaks if we don't honor it. Note
7758 that combined with the above, we only do this for pointer modes. */
7759 rmode
= GET_MODE (result
);
7760 if (rmode
== VOIDmode
)
7763 result
= convert_memory_address_addr_space (tmode
, result
, as
);
7768 /* Generate code for computing CONSTRUCTOR EXP.
7769 An rtx for the computed value is returned. If AVOID_TEMP_MEM
7770 is TRUE, instead of creating a temporary variable in memory
7771 NULL is returned and the caller needs to handle it differently. */
7774 expand_constructor (tree exp
, rtx target
, enum expand_modifier modifier
,
7775 bool avoid_temp_mem
)
7777 tree type
= TREE_TYPE (exp
);
7778 enum machine_mode mode
= TYPE_MODE (type
);
7780 /* Try to avoid creating a temporary at all. This is possible
7781 if all of the initializer is zero.
7782 FIXME: try to handle all [0..255] initializers we can handle
7784 if (TREE_STATIC (exp
)
7785 && !TREE_ADDRESSABLE (exp
)
7786 && target
!= 0 && mode
== BLKmode
7787 && all_zeros_p (exp
))
7789 clear_storage (target
, expr_size (exp
), BLOCK_OP_NORMAL
);
7793 /* All elts simple constants => refer to a constant in memory. But
7794 if this is a non-BLKmode mode, let it store a field at a time
7795 since that should make a CONST_INT, CONST_WIDE_INT or
7796 CONST_DOUBLE when we fold. Likewise, if we have a target we can
7797 use, it is best to store directly into the target unless the type
7798 is large enough that memcpy will be used. If we are making an
7799 initializer and all operands are constant, put it in memory as
7802 FIXME: Avoid trying to fill vector constructors piece-meal.
7803 Output them with output_constant_def below unless we're sure
7804 they're zeros. This should go away when vector initializers
7805 are treated like VECTOR_CST instead of arrays. */
7806 if ((TREE_STATIC (exp
)
7807 && ((mode
== BLKmode
7808 && ! (target
!= 0 && safe_from_p (target
, exp
, 1)))
7809 || TREE_ADDRESSABLE (exp
)
7810 || (tree_fits_uhwi_p (TYPE_SIZE_UNIT (type
))
7811 && (! MOVE_BY_PIECES_P
7812 (tree_to_uhwi (TYPE_SIZE_UNIT (type
)),
7814 && ! mostly_zeros_p (exp
))))
7815 || ((modifier
== EXPAND_INITIALIZER
|| modifier
== EXPAND_CONST_ADDRESS
)
7816 && TREE_CONSTANT (exp
)))
7823 constructor
= expand_expr_constant (exp
, 1, modifier
);
7825 if (modifier
!= EXPAND_CONST_ADDRESS
7826 && modifier
!= EXPAND_INITIALIZER
7827 && modifier
!= EXPAND_SUM
)
7828 constructor
= validize_mem (constructor
);
7833 /* Handle calls that pass values in multiple non-contiguous
7834 locations. The Irix 6 ABI has examples of this. */
7835 if (target
== 0 || ! safe_from_p (target
, exp
, 1)
7836 || GET_CODE (target
) == PARALLEL
|| modifier
== EXPAND_STACK_PARM
)
7841 target
= assign_temp (type
, TREE_ADDRESSABLE (exp
), 1);
7844 store_constructor (exp
, target
, 0, int_expr_size (exp
));
7849 /* expand_expr: generate code for computing expression EXP.
7850 An rtx for the computed value is returned. The value is never null.
7851 In the case of a void EXP, const0_rtx is returned.
7853 The value may be stored in TARGET if TARGET is nonzero.
7854 TARGET is just a suggestion; callers must assume that
7855 the rtx returned may not be the same as TARGET.
7857 If TARGET is CONST0_RTX, it means that the value will be ignored.
7859 If TMODE is not VOIDmode, it suggests generating the
7860 result in mode TMODE. But this is done only when convenient.
7861 Otherwise, TMODE is ignored and the value generated in its natural mode.
7862 TMODE is just a suggestion; callers must assume that
7863 the rtx returned may not have mode TMODE.
7865 Note that TARGET may have neither TMODE nor MODE. In that case, it
7866 probably will not be used.
7868 If MODIFIER is EXPAND_SUM then when EXP is an addition
7869 we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
7870 or a nest of (PLUS ...) and (MINUS ...) where the terms are
7871 products as above, or REG or MEM, or constant.
7872 Ordinarily in such cases we would output mul or add instructions
7873 and then return a pseudo reg containing the sum.
7875 EXPAND_INITIALIZER is much like EXPAND_SUM except that
7876 it also marks a label as absolutely required (it can't be dead).
7877 It also makes a ZERO_EXTEND or SIGN_EXTEND instead of emitting extend insns.
7878 This is used for outputting expressions used in initializers.
7880 EXPAND_CONST_ADDRESS says that it is okay to return a MEM
7881 with a constant address even if that address is not normally legitimate.
7882 EXPAND_INITIALIZER and EXPAND_SUM also have this effect.
7884 EXPAND_STACK_PARM is used when expanding to a TARGET on the stack for
7885 a call parameter. Such targets require special care as we haven't yet
7886 marked TARGET so that it's safe from being trashed by libcalls. We
7887 don't want to use TARGET for anything but the final result;
7888 Intermediate values must go elsewhere. Additionally, calls to
7889 emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
7891 If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
7892 address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
7893 DECL_RTL of the VAR_DECL. *ALT_RTL is also set if EXP is a
7894 COMPOUND_EXPR whose second argument is such a VAR_DECL, and so on
7897 If INNER_REFERENCE_P is true, we are expanding an inner reference.
7898 In this case, we don't adjust a returned MEM rtx that wouldn't be
7899 sufficiently aligned for its mode; instead, it's up to the caller
7900 to deal with it afterwards. This is used to make sure that unaligned
7901 base objects for which out-of-bounds accesses are supported, for
7902 example record types with trailing arrays, aren't realigned behind
7903 the back of the caller.
7904 The normal operating mode is to pass FALSE for this parameter. */
7907 expand_expr_real (tree exp
, rtx target
, enum machine_mode tmode
,
7908 enum expand_modifier modifier
, rtx
*alt_rtl
,
7909 bool inner_reference_p
)
7913 /* Handle ERROR_MARK before anybody tries to access its type. */
7914 if (TREE_CODE (exp
) == ERROR_MARK
7915 || (TREE_CODE (TREE_TYPE (exp
)) == ERROR_MARK
))
7917 ret
= CONST0_RTX (tmode
);
7918 return ret
? ret
: const0_rtx
;
7921 ret
= expand_expr_real_1 (exp
, target
, tmode
, modifier
, alt_rtl
,
7926 /* Try to expand the conditional expression which is represented by
7927 TREEOP0 ? TREEOP1 : TREEOP2 using conditonal moves. If succeseds
7928 return the rtl reg which repsents the result. Otherwise return
7932 expand_cond_expr_using_cmove (tree treeop0 ATTRIBUTE_UNUSED
,
7933 tree treeop1 ATTRIBUTE_UNUSED
,
7934 tree treeop2 ATTRIBUTE_UNUSED
)
7936 #ifdef HAVE_conditional_move
7938 rtx op00
, op01
, op1
, op2
;
7939 enum rtx_code comparison_code
;
7940 enum machine_mode comparison_mode
;
7943 tree type
= TREE_TYPE (treeop1
);
7944 int unsignedp
= TYPE_UNSIGNED (type
);
7945 enum machine_mode mode
= TYPE_MODE (type
);
7946 enum machine_mode orig_mode
= mode
;
7948 /* If we cannot do a conditional move on the mode, try doing it
7949 with the promoted mode. */
7950 if (!can_conditionally_move_p (mode
))
7952 mode
= promote_mode (type
, mode
, &unsignedp
);
7953 if (!can_conditionally_move_p (mode
))
7955 temp
= assign_temp (type
, 0, 0); /* Use promoted mode for temp. */
7958 temp
= assign_temp (type
, 0, 1);
7961 expand_operands (treeop1
, treeop2
,
7962 temp
, &op1
, &op2
, EXPAND_NORMAL
);
7964 if (TREE_CODE (treeop0
) == SSA_NAME
7965 && (srcstmt
= get_def_for_expr_class (treeop0
, tcc_comparison
)))
7967 tree type
= TREE_TYPE (gimple_assign_rhs1 (srcstmt
));
7968 enum tree_code cmpcode
= gimple_assign_rhs_code (srcstmt
);
7969 op00
= expand_normal (gimple_assign_rhs1 (srcstmt
));
7970 op01
= expand_normal (gimple_assign_rhs2 (srcstmt
));
7971 comparison_mode
= TYPE_MODE (type
);
7972 unsignedp
= TYPE_UNSIGNED (type
);
7973 comparison_code
= convert_tree_comp_to_rtx (cmpcode
, unsignedp
);
7975 else if (TREE_CODE_CLASS (TREE_CODE (treeop0
)) == tcc_comparison
)
7977 tree type
= TREE_TYPE (TREE_OPERAND (treeop0
, 0));
7978 enum tree_code cmpcode
= TREE_CODE (treeop0
);
7979 op00
= expand_normal (TREE_OPERAND (treeop0
, 0));
7980 op01
= expand_normal (TREE_OPERAND (treeop0
, 1));
7981 unsignedp
= TYPE_UNSIGNED (type
);
7982 comparison_mode
= TYPE_MODE (type
);
7983 comparison_code
= convert_tree_comp_to_rtx (cmpcode
, unsignedp
);
7987 op00
= expand_normal (treeop0
);
7989 comparison_code
= NE
;
7990 comparison_mode
= TYPE_MODE (TREE_TYPE (treeop0
));
7993 if (GET_MODE (op1
) != mode
)
7994 op1
= gen_lowpart (mode
, op1
);
7996 if (GET_MODE (op2
) != mode
)
7997 op2
= gen_lowpart (mode
, op2
);
7999 /* Try to emit the conditional move. */
8000 insn
= emit_conditional_move (temp
, comparison_code
,
8001 op00
, op01
, comparison_mode
,
8005 /* If we could do the conditional move, emit the sequence,
8009 rtx seq
= get_insns ();
8012 return convert_modes (orig_mode
, mode
, temp
, 0);
8015 /* Otherwise discard the sequence and fall back to code with
8023 expand_expr_real_2 (sepops ops
, rtx target
, enum machine_mode tmode
,
8024 enum expand_modifier modifier
)
8026 rtx op0
, op1
, op2
, temp
;
8029 enum machine_mode mode
;
8030 enum tree_code code
= ops
->code
;
8032 rtx subtarget
, original_target
;
8034 bool reduce_bit_field
;
8035 location_t loc
= ops
->location
;
8036 tree treeop0
, treeop1
, treeop2
;
8037 #define REDUCE_BIT_FIELD(expr) (reduce_bit_field \
8038 ? reduce_to_bit_field_precision ((expr), \
8044 mode
= TYPE_MODE (type
);
8045 unsignedp
= TYPE_UNSIGNED (type
);
8051 /* We should be called only on simple (binary or unary) expressions,
8052 exactly those that are valid in gimple expressions that aren't
8053 GIMPLE_SINGLE_RHS (or invalid). */
8054 gcc_assert (get_gimple_rhs_class (code
) == GIMPLE_UNARY_RHS
8055 || get_gimple_rhs_class (code
) == GIMPLE_BINARY_RHS
8056 || get_gimple_rhs_class (code
) == GIMPLE_TERNARY_RHS
);
8058 ignore
= (target
== const0_rtx
8059 || ((CONVERT_EXPR_CODE_P (code
)
8060 || code
== COND_EXPR
|| code
== VIEW_CONVERT_EXPR
)
8061 && TREE_CODE (type
) == VOID_TYPE
));
8063 /* We should be called only if we need the result. */
8064 gcc_assert (!ignore
);
8066 /* An operation in what may be a bit-field type needs the
8067 result to be reduced to the precision of the bit-field type,
8068 which is narrower than that of the type's mode. */
8069 reduce_bit_field
= (INTEGRAL_TYPE_P (type
)
8070 && GET_MODE_PRECISION (mode
) > TYPE_PRECISION (type
));
8072 if (reduce_bit_field
&& modifier
== EXPAND_STACK_PARM
)
8075 /* Use subtarget as the target for operand 0 of a binary operation. */
8076 subtarget
= get_subtarget (target
);
8077 original_target
= target
;
8081 case NON_LVALUE_EXPR
:
8084 if (treeop0
== error_mark_node
)
8087 if (TREE_CODE (type
) == UNION_TYPE
)
8089 tree valtype
= TREE_TYPE (treeop0
);
8091 /* If both input and output are BLKmode, this conversion isn't doing
8092 anything except possibly changing memory attribute. */
8093 if (mode
== BLKmode
&& TYPE_MODE (valtype
) == BLKmode
)
8095 rtx result
= expand_expr (treeop0
, target
, tmode
,
8098 result
= copy_rtx (result
);
8099 set_mem_attributes (result
, type
, 0);
8105 if (TYPE_MODE (type
) != BLKmode
)
8106 target
= gen_reg_rtx (TYPE_MODE (type
));
8108 target
= assign_temp (type
, 1, 1);
8112 /* Store data into beginning of memory target. */
8113 store_expr (treeop0
,
8114 adjust_address (target
, TYPE_MODE (valtype
), 0),
8115 modifier
== EXPAND_STACK_PARM
,
8120 gcc_assert (REG_P (target
));
8122 /* Store this field into a union of the proper type. */
8123 store_field (target
,
8124 MIN ((int_size_in_bytes (TREE_TYPE
8127 (HOST_WIDE_INT
) GET_MODE_BITSIZE (mode
)),
8128 0, 0, 0, TYPE_MODE (valtype
), treeop0
, 0, false);
8131 /* Return the entire union. */
8135 if (mode
== TYPE_MODE (TREE_TYPE (treeop0
)))
8137 op0
= expand_expr (treeop0
, target
, VOIDmode
,
8140 /* If the signedness of the conversion differs and OP0 is
8141 a promoted SUBREG, clear that indication since we now
8142 have to do the proper extension. */
8143 if (TYPE_UNSIGNED (TREE_TYPE (treeop0
)) != unsignedp
8144 && GET_CODE (op0
) == SUBREG
)
8145 SUBREG_PROMOTED_VAR_P (op0
) = 0;
8147 return REDUCE_BIT_FIELD (op0
);
8150 op0
= expand_expr (treeop0
, NULL_RTX
, mode
,
8151 modifier
== EXPAND_SUM
? EXPAND_NORMAL
: modifier
);
8152 if (GET_MODE (op0
) == mode
)
8155 /* If OP0 is a constant, just convert it into the proper mode. */
8156 else if (CONSTANT_P (op0
))
8158 tree inner_type
= TREE_TYPE (treeop0
);
8159 enum machine_mode inner_mode
= GET_MODE (op0
);
8161 if (inner_mode
== VOIDmode
)
8162 inner_mode
= TYPE_MODE (inner_type
);
8164 if (modifier
== EXPAND_INITIALIZER
)
8165 op0
= simplify_gen_subreg (mode
, op0
, inner_mode
,
8166 subreg_lowpart_offset (mode
,
8169 op0
= convert_modes (mode
, inner_mode
, op0
,
8170 TYPE_UNSIGNED (inner_type
));
8173 else if (modifier
== EXPAND_INITIALIZER
)
8174 op0
= gen_rtx_fmt_e (unsignedp
? ZERO_EXTEND
: SIGN_EXTEND
, mode
, op0
);
8176 else if (target
== 0)
8177 op0
= convert_to_mode (mode
, op0
,
8178 TYPE_UNSIGNED (TREE_TYPE
8182 convert_move (target
, op0
,
8183 TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
8187 return REDUCE_BIT_FIELD (op0
);
8189 case ADDR_SPACE_CONVERT_EXPR
:
8191 tree treeop0_type
= TREE_TYPE (treeop0
);
8193 addr_space_t as_from
;
8195 gcc_assert (POINTER_TYPE_P (type
));
8196 gcc_assert (POINTER_TYPE_P (treeop0_type
));
8198 as_to
= TYPE_ADDR_SPACE (TREE_TYPE (type
));
8199 as_from
= TYPE_ADDR_SPACE (TREE_TYPE (treeop0_type
));
8201 /* Conversions between pointers to the same address space should
8202 have been implemented via CONVERT_EXPR / NOP_EXPR. */
8203 gcc_assert (as_to
!= as_from
);
8205 /* Ask target code to handle conversion between pointers
8206 to overlapping address spaces. */
8207 if (targetm
.addr_space
.subset_p (as_to
, as_from
)
8208 || targetm
.addr_space
.subset_p (as_from
, as_to
))
8210 op0
= expand_expr (treeop0
, NULL_RTX
, VOIDmode
, modifier
);
8211 op0
= targetm
.addr_space
.convert (op0
, treeop0_type
, type
);
8216 /* For disjoint address spaces, converting anything but
8217 a null pointer invokes undefined behaviour. We simply
8218 always return a null pointer here. */
8219 return CONST0_RTX (mode
);
8222 case POINTER_PLUS_EXPR
:
8223 /* Even though the sizetype mode and the pointer's mode can be different
8224 expand is able to handle this correctly and get the correct result out
8225 of the PLUS_EXPR code. */
8226 /* Make sure to sign-extend the sizetype offset in a POINTER_PLUS_EXPR
8227 if sizetype precision is smaller than pointer precision. */
8228 if (TYPE_PRECISION (sizetype
) < TYPE_PRECISION (type
))
8229 treeop1
= fold_convert_loc (loc
, type
,
8230 fold_convert_loc (loc
, ssizetype
,
8232 /* If sizetype precision is larger than pointer precision, truncate the
8233 offset to have matching modes. */
8234 else if (TYPE_PRECISION (sizetype
) > TYPE_PRECISION (type
))
8235 treeop1
= fold_convert_loc (loc
, type
, treeop1
);
8238 /* If we are adding a constant, a VAR_DECL that is sp, fp, or ap, and
8239 something else, make sure we add the register to the constant and
8240 then to the other thing. This case can occur during strength
8241 reduction and doing it this way will produce better code if the
8242 frame pointer or argument pointer is eliminated.
8244 fold-const.c will ensure that the constant is always in the inner
8245 PLUS_EXPR, so the only case we need to do anything about is if
8246 sp, ap, or fp is our second argument, in which case we must swap
8247 the innermost first argument and our second argument. */
8249 if (TREE_CODE (treeop0
) == PLUS_EXPR
8250 && TREE_CODE (TREE_OPERAND (treeop0
, 1)) == INTEGER_CST
8251 && TREE_CODE (treeop1
) == VAR_DECL
8252 && (DECL_RTL (treeop1
) == frame_pointer_rtx
8253 || DECL_RTL (treeop1
) == stack_pointer_rtx
8254 || DECL_RTL (treeop1
) == arg_pointer_rtx
))
8259 /* If the result is to be ptr_mode and we are adding an integer to
8260 something, we might be forming a constant. So try to use
8261 plus_constant. If it produces a sum and we can't accept it,
8262 use force_operand. This allows P = &ARR[const] to generate
8263 efficient code on machines where a SYMBOL_REF is not a valid
8266 If this is an EXPAND_SUM call, always return the sum. */
8267 if (modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
8268 || (mode
== ptr_mode
&& (unsignedp
|| ! flag_trapv
)))
8270 if (modifier
== EXPAND_STACK_PARM
)
8272 if (TREE_CODE (treeop0
) == INTEGER_CST
8273 && GET_MODE_PRECISION (mode
) <= HOST_BITS_PER_WIDE_INT
8274 && TREE_CONSTANT (treeop1
))
8278 enum machine_mode wmode
= TYPE_MODE (TREE_TYPE (treeop1
));
8280 op1
= expand_expr (treeop1
, subtarget
, VOIDmode
,
8282 /* Use wi::shwi to ensure that the constant is
8283 truncated according to the mode of OP1, then sign extended
8284 to a HOST_WIDE_INT. Using the constant directly can result
8285 in non-canonical RTL in a 64x32 cross compile. */
8286 wc
= TREE_INT_CST_LOW (treeop0
);
8288 immed_wide_int_const (wi::shwi (wc
, wmode
), wmode
);
8289 op1
= plus_constant (mode
, op1
, INTVAL (constant_part
));
8290 if (modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8291 op1
= force_operand (op1
, target
);
8292 return REDUCE_BIT_FIELD (op1
);
8295 else if (TREE_CODE (treeop1
) == INTEGER_CST
8296 && GET_MODE_PRECISION (mode
) <= HOST_BITS_PER_WIDE_INT
8297 && TREE_CONSTANT (treeop0
))
8301 enum machine_mode wmode
= TYPE_MODE (TREE_TYPE (treeop0
));
8303 op0
= expand_expr (treeop0
, subtarget
, VOIDmode
,
8304 (modifier
== EXPAND_INITIALIZER
8305 ? EXPAND_INITIALIZER
: EXPAND_SUM
));
8306 if (! CONSTANT_P (op0
))
8308 op1
= expand_expr (treeop1
, NULL_RTX
,
8309 VOIDmode
, modifier
);
8310 /* Return a PLUS if modifier says it's OK. */
8311 if (modifier
== EXPAND_SUM
8312 || modifier
== EXPAND_INITIALIZER
)
8313 return simplify_gen_binary (PLUS
, mode
, op0
, op1
);
8316 /* Use wi::shwi to ensure that the constant is
8317 truncated according to the mode of OP1, then sign extended
8318 to a HOST_WIDE_INT. Using the constant directly can result
8319 in non-canonical RTL in a 64x32 cross compile. */
8320 wc
= TREE_INT_CST_LOW (treeop1
);
8322 = immed_wide_int_const (wi::shwi (wc
, wmode
), wmode
);
8323 op0
= plus_constant (mode
, op0
, INTVAL (constant_part
));
8324 if (modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8325 op0
= force_operand (op0
, target
);
8326 return REDUCE_BIT_FIELD (op0
);
8330 /* Use TER to expand pointer addition of a negated value
8331 as pointer subtraction. */
8332 if ((POINTER_TYPE_P (TREE_TYPE (treeop0
))
8333 || (TREE_CODE (TREE_TYPE (treeop0
)) == VECTOR_TYPE
8334 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (treeop0
)))))
8335 && TREE_CODE (treeop1
) == SSA_NAME
8336 && TYPE_MODE (TREE_TYPE (treeop0
))
8337 == TYPE_MODE (TREE_TYPE (treeop1
)))
8339 gimple def
= get_def_for_expr (treeop1
, NEGATE_EXPR
);
8342 treeop1
= gimple_assign_rhs1 (def
);
8348 /* No sense saving up arithmetic to be done
8349 if it's all in the wrong mode to form part of an address.
8350 And force_operand won't know whether to sign-extend or
8352 if ((modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8353 || mode
!= ptr_mode
)
8355 expand_operands (treeop0
, treeop1
,
8356 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8357 if (op0
== const0_rtx
)
8359 if (op1
== const0_rtx
)
8364 expand_operands (treeop0
, treeop1
,
8365 subtarget
, &op0
, &op1
, modifier
);
8366 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS
, mode
, op0
, op1
));
8370 /* For initializers, we are allowed to return a MINUS of two
8371 symbolic constants. Here we handle all cases when both operands
8373 /* Handle difference of two symbolic constants,
8374 for the sake of an initializer. */
8375 if ((modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
)
8376 && really_constant_p (treeop0
)
8377 && really_constant_p (treeop1
))
8379 expand_operands (treeop0
, treeop1
,
8380 NULL_RTX
, &op0
, &op1
, modifier
);
8382 /* If the last operand is a CONST_INT, use plus_constant of
8383 the negated constant. Else make the MINUS. */
8384 if (CONST_INT_P (op1
))
8385 return REDUCE_BIT_FIELD (plus_constant (mode
, op0
,
8388 return REDUCE_BIT_FIELD (gen_rtx_MINUS (mode
, op0
, op1
));
8391 /* No sense saving up arithmetic to be done
8392 if it's all in the wrong mode to form part of an address.
8393 And force_operand won't know whether to sign-extend or
8395 if ((modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8396 || mode
!= ptr_mode
)
8399 expand_operands (treeop0
, treeop1
,
8400 subtarget
, &op0
, &op1
, modifier
);
8402 /* Convert A - const to A + (-const). */
8403 if (CONST_INT_P (op1
))
8405 op1
= negate_rtx (mode
, op1
);
8406 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS
, mode
, op0
, op1
));
8411 case WIDEN_MULT_PLUS_EXPR
:
8412 case WIDEN_MULT_MINUS_EXPR
:
8413 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
8414 op2
= expand_normal (treeop2
);
8415 target
= expand_widen_pattern_expr (ops
, op0
, op1
, op2
,
8419 case WIDEN_MULT_EXPR
:
8420 /* If first operand is constant, swap them.
8421 Thus the following special case checks need only
8422 check the second operand. */
8423 if (TREE_CODE (treeop0
) == INTEGER_CST
)
8430 /* First, check if we have a multiplication of one signed and one
8431 unsigned operand. */
8432 if (TREE_CODE (treeop1
) != INTEGER_CST
8433 && (TYPE_UNSIGNED (TREE_TYPE (treeop0
))
8434 != TYPE_UNSIGNED (TREE_TYPE (treeop1
))))
8436 enum machine_mode innermode
= TYPE_MODE (TREE_TYPE (treeop0
));
8437 this_optab
= usmul_widen_optab
;
8438 if (find_widening_optab_handler (this_optab
, mode
, innermode
, 0)
8439 != CODE_FOR_nothing
)
8441 if (TYPE_UNSIGNED (TREE_TYPE (treeop0
)))
8442 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
,
8445 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op1
, &op0
,
8447 /* op0 and op1 might still be constant, despite the above
8448 != INTEGER_CST check. Handle it. */
8449 if (GET_MODE (op0
) == VOIDmode
&& GET_MODE (op1
) == VOIDmode
)
8451 op0
= convert_modes (innermode
, mode
, op0
, true);
8452 op1
= convert_modes (innermode
, mode
, op1
, false);
8453 return REDUCE_BIT_FIELD (expand_mult (mode
, op0
, op1
,
8454 target
, unsignedp
));
8459 /* Check for a multiplication with matching signedness. */
8460 else if ((TREE_CODE (treeop1
) == INTEGER_CST
8461 && int_fits_type_p (treeop1
, TREE_TYPE (treeop0
)))
8462 || (TYPE_UNSIGNED (TREE_TYPE (treeop1
))
8463 == TYPE_UNSIGNED (TREE_TYPE (treeop0
))))
8465 tree op0type
= TREE_TYPE (treeop0
);
8466 enum machine_mode innermode
= TYPE_MODE (op0type
);
8467 bool zextend_p
= TYPE_UNSIGNED (op0type
);
8468 optab other_optab
= zextend_p
? smul_widen_optab
: umul_widen_optab
;
8469 this_optab
= zextend_p
? umul_widen_optab
: smul_widen_optab
;
8471 if (TREE_CODE (treeop0
) != INTEGER_CST
)
8473 if (find_widening_optab_handler (this_optab
, mode
, innermode
, 0)
8474 != CODE_FOR_nothing
)
8476 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
,
8478 /* op0 and op1 might still be constant, despite the above
8479 != INTEGER_CST check. Handle it. */
8480 if (GET_MODE (op0
) == VOIDmode
&& GET_MODE (op1
) == VOIDmode
)
8483 op0
= convert_modes (innermode
, mode
, op0
, zextend_p
);
8485 = convert_modes (innermode
, mode
, op1
,
8486 TYPE_UNSIGNED (TREE_TYPE (treeop1
)));
8487 return REDUCE_BIT_FIELD (expand_mult (mode
, op0
, op1
,
8491 temp
= expand_widening_mult (mode
, op0
, op1
, target
,
8492 unsignedp
, this_optab
);
8493 return REDUCE_BIT_FIELD (temp
);
8495 if (find_widening_optab_handler (other_optab
, mode
, innermode
, 0)
8497 && innermode
== word_mode
)
8500 op0
= expand_normal (treeop0
);
8501 if (TREE_CODE (treeop1
) == INTEGER_CST
)
8502 op1
= convert_modes (innermode
, mode
,
8503 expand_normal (treeop1
),
8504 TYPE_UNSIGNED (TREE_TYPE (treeop1
)));
8506 op1
= expand_normal (treeop1
);
8507 /* op0 and op1 might still be constant, despite the above
8508 != INTEGER_CST check. Handle it. */
8509 if (GET_MODE (op0
) == VOIDmode
&& GET_MODE (op1
) == VOIDmode
)
8510 goto widen_mult_const
;
8511 temp
= expand_binop (mode
, other_optab
, op0
, op1
, target
,
8512 unsignedp
, OPTAB_LIB_WIDEN
);
8513 hipart
= gen_highpart (innermode
, temp
);
8514 htem
= expand_mult_highpart_adjust (innermode
, hipart
,
8518 emit_move_insn (hipart
, htem
);
8519 return REDUCE_BIT_FIELD (temp
);
8523 treeop0
= fold_build1 (CONVERT_EXPR
, type
, treeop0
);
8524 treeop1
= fold_build1 (CONVERT_EXPR
, type
, treeop1
);
8525 expand_operands (treeop0
, treeop1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8526 return REDUCE_BIT_FIELD (expand_mult (mode
, op0
, op1
, target
, unsignedp
));
8530 optab opt
= fma_optab
;
8533 /* If there is no insn for FMA, emit it as __builtin_fma{,f,l}
8535 if (optab_handler (fma_optab
, mode
) == CODE_FOR_nothing
)
8537 tree fn
= mathfn_built_in (TREE_TYPE (treeop0
), BUILT_IN_FMA
);
8540 gcc_assert (fn
!= NULL_TREE
);
8541 call_expr
= build_call_expr (fn
, 3, treeop0
, treeop1
, treeop2
);
8542 return expand_builtin (call_expr
, target
, subtarget
, mode
, false);
8545 def0
= get_def_for_expr (treeop0
, NEGATE_EXPR
);
8546 def2
= get_def_for_expr (treeop2
, NEGATE_EXPR
);
8551 && optab_handler (fnms_optab
, mode
) != CODE_FOR_nothing
)
8554 op0
= expand_normal (gimple_assign_rhs1 (def0
));
8555 op2
= expand_normal (gimple_assign_rhs1 (def2
));
8558 && optab_handler (fnma_optab
, mode
) != CODE_FOR_nothing
)
8561 op0
= expand_normal (gimple_assign_rhs1 (def0
));
8564 && optab_handler (fms_optab
, mode
) != CODE_FOR_nothing
)
8567 op2
= expand_normal (gimple_assign_rhs1 (def2
));
8571 op0
= expand_expr (treeop0
, subtarget
, VOIDmode
, EXPAND_NORMAL
);
8573 op2
= expand_normal (treeop2
);
8574 op1
= expand_normal (treeop1
);
8576 return expand_ternary_op (TYPE_MODE (type
), opt
,
8577 op0
, op1
, op2
, target
, 0);
8581 /* If this is a fixed-point operation, then we cannot use the code
8582 below because "expand_mult" doesn't support sat/no-sat fixed-point
8584 if (ALL_FIXED_POINT_MODE_P (mode
))
8587 /* If first operand is constant, swap them.
8588 Thus the following special case checks need only
8589 check the second operand. */
8590 if (TREE_CODE (treeop0
) == INTEGER_CST
)
8597 /* Attempt to return something suitable for generating an
8598 indexed address, for machines that support that. */
8600 if (modifier
== EXPAND_SUM
&& mode
== ptr_mode
8601 && tree_fits_shwi_p (treeop1
))
8603 tree exp1
= treeop1
;
8605 op0
= expand_expr (treeop0
, subtarget
, VOIDmode
,
8609 op0
= force_operand (op0
, NULL_RTX
);
8611 op0
= copy_to_mode_reg (mode
, op0
);
8613 return REDUCE_BIT_FIELD (gen_rtx_MULT (mode
, op0
,
8614 gen_int_mode (tree_to_shwi (exp1
),
8615 TYPE_MODE (TREE_TYPE (exp1
)))));
8618 if (modifier
== EXPAND_STACK_PARM
)
8621 expand_operands (treeop0
, treeop1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8622 return REDUCE_BIT_FIELD (expand_mult (mode
, op0
, op1
, target
, unsignedp
));
8624 case TRUNC_DIV_EXPR
:
8625 case FLOOR_DIV_EXPR
:
8627 case ROUND_DIV_EXPR
:
8628 case EXACT_DIV_EXPR
:
8629 /* If this is a fixed-point operation, then we cannot use the code
8630 below because "expand_divmod" doesn't support sat/no-sat fixed-point
8632 if (ALL_FIXED_POINT_MODE_P (mode
))
8635 if (modifier
== EXPAND_STACK_PARM
)
8637 /* Possible optimization: compute the dividend with EXPAND_SUM
8638 then if the divisor is constant can optimize the case
8639 where some terms of the dividend have coeffs divisible by it. */
8640 expand_operands (treeop0
, treeop1
,
8641 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8642 return expand_divmod (0, code
, mode
, op0
, op1
, target
, unsignedp
);
8647 case MULT_HIGHPART_EXPR
:
8648 expand_operands (treeop0
, treeop1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8649 temp
= expand_mult_highpart (mode
, op0
, op1
, target
, unsignedp
);
8653 case TRUNC_MOD_EXPR
:
8654 case FLOOR_MOD_EXPR
:
8656 case ROUND_MOD_EXPR
:
8657 if (modifier
== EXPAND_STACK_PARM
)
8659 expand_operands (treeop0
, treeop1
,
8660 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8661 return expand_divmod (1, code
, mode
, op0
, op1
, target
, unsignedp
);
8663 case FIXED_CONVERT_EXPR
:
8664 op0
= expand_normal (treeop0
);
8665 if (target
== 0 || modifier
== EXPAND_STACK_PARM
)
8666 target
= gen_reg_rtx (mode
);
8668 if ((TREE_CODE (TREE_TYPE (treeop0
)) == INTEGER_TYPE
8669 && TYPE_UNSIGNED (TREE_TYPE (treeop0
)))
8670 || (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
)))
8671 expand_fixed_convert (target
, op0
, 1, TYPE_SATURATING (type
));
8673 expand_fixed_convert (target
, op0
, 0, TYPE_SATURATING (type
));
8676 case FIX_TRUNC_EXPR
:
8677 op0
= expand_normal (treeop0
);
8678 if (target
== 0 || modifier
== EXPAND_STACK_PARM
)
8679 target
= gen_reg_rtx (mode
);
8680 expand_fix (target
, op0
, unsignedp
);
8684 op0
= expand_normal (treeop0
);
8685 if (target
== 0 || modifier
== EXPAND_STACK_PARM
)
8686 target
= gen_reg_rtx (mode
);
8687 /* expand_float can't figure out what to do if FROM has VOIDmode.
8688 So give it the correct mode. With -O, cse will optimize this. */
8689 if (GET_MODE (op0
) == VOIDmode
)
8690 op0
= copy_to_mode_reg (TYPE_MODE (TREE_TYPE (treeop0
)),
8692 expand_float (target
, op0
,
8693 TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
8697 op0
= expand_expr (treeop0
, subtarget
,
8698 VOIDmode
, EXPAND_NORMAL
);
8699 if (modifier
== EXPAND_STACK_PARM
)
8701 temp
= expand_unop (mode
,
8702 optab_for_tree_code (NEGATE_EXPR
, type
,
8706 return REDUCE_BIT_FIELD (temp
);
8709 op0
= expand_expr (treeop0
, subtarget
,
8710 VOIDmode
, EXPAND_NORMAL
);
8711 if (modifier
== EXPAND_STACK_PARM
)
8714 /* ABS_EXPR is not valid for complex arguments. */
8715 gcc_assert (GET_MODE_CLASS (mode
) != MODE_COMPLEX_INT
8716 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_FLOAT
);
8718 /* Unsigned abs is simply the operand. Testing here means we don't
8719 risk generating incorrect code below. */
8720 if (TYPE_UNSIGNED (type
))
8723 return expand_abs (mode
, op0
, target
, unsignedp
,
8724 safe_from_p (target
, treeop0
, 1));
8728 target
= original_target
;
8730 || modifier
== EXPAND_STACK_PARM
8731 || (MEM_P (target
) && MEM_VOLATILE_P (target
))
8732 || GET_MODE (target
) != mode
8734 && REGNO (target
) < FIRST_PSEUDO_REGISTER
))
8735 target
= gen_reg_rtx (mode
);
8736 expand_operands (treeop0
, treeop1
,
8737 target
, &op0
, &op1
, EXPAND_NORMAL
);
8739 /* First try to do it with a special MIN or MAX instruction.
8740 If that does not win, use a conditional jump to select the proper
8742 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
8743 temp
= expand_binop (mode
, this_optab
, op0
, op1
, target
, unsignedp
,
8748 /* At this point, a MEM target is no longer useful; we will get better
8751 if (! REG_P (target
))
8752 target
= gen_reg_rtx (mode
);
8754 /* If op1 was placed in target, swap op0 and op1. */
8755 if (target
!= op0
&& target
== op1
)
8762 /* We generate better code and avoid problems with op1 mentioning
8763 target by forcing op1 into a pseudo if it isn't a constant. */
8764 if (! CONSTANT_P (op1
))
8765 op1
= force_reg (mode
, op1
);
8768 enum rtx_code comparison_code
;
8771 if (code
== MAX_EXPR
)
8772 comparison_code
= unsignedp
? GEU
: GE
;
8774 comparison_code
= unsignedp
? LEU
: LE
;
8776 /* Canonicalize to comparisons against 0. */
8777 if (op1
== const1_rtx
)
8779 /* Converting (a >= 1 ? a : 1) into (a > 0 ? a : 1)
8780 or (a != 0 ? a : 1) for unsigned.
8781 For MIN we are safe converting (a <= 1 ? a : 1)
8782 into (a <= 0 ? a : 1) */
8783 cmpop1
= const0_rtx
;
8784 if (code
== MAX_EXPR
)
8785 comparison_code
= unsignedp
? NE
: GT
;
8787 if (op1
== constm1_rtx
&& !unsignedp
)
8789 /* Converting (a >= -1 ? a : -1) into (a >= 0 ? a : -1)
8790 and (a <= -1 ? a : -1) into (a < 0 ? a : -1) */
8791 cmpop1
= const0_rtx
;
8792 if (code
== MIN_EXPR
)
8793 comparison_code
= LT
;
8795 #ifdef HAVE_conditional_move
8796 /* Use a conditional move if possible. */
8797 if (can_conditionally_move_p (mode
))
8803 /* Try to emit the conditional move. */
8804 insn
= emit_conditional_move (target
, comparison_code
,
8809 /* If we could do the conditional move, emit the sequence,
8813 rtx seq
= get_insns ();
8819 /* Otherwise discard the sequence and fall back to code with
8825 emit_move_insn (target
, op0
);
8827 temp
= gen_label_rtx ();
8828 do_compare_rtx_and_jump (target
, cmpop1
, comparison_code
,
8829 unsignedp
, mode
, NULL_RTX
, NULL_RTX
, temp
,
8832 emit_move_insn (target
, op1
);
8837 op0
= expand_expr (treeop0
, subtarget
,
8838 VOIDmode
, EXPAND_NORMAL
);
8839 if (modifier
== EXPAND_STACK_PARM
)
8841 /* In case we have to reduce the result to bitfield precision
8842 for unsigned bitfield expand this as XOR with a proper constant
8844 if (reduce_bit_field
&& TYPE_UNSIGNED (type
))
8846 wide_int mask
= wi::mask (TYPE_PRECISION (type
),
8847 false, GET_MODE_PRECISION (mode
));
8849 temp
= expand_binop (mode
, xor_optab
, op0
,
8850 immed_wide_int_const (mask
, mode
),
8851 target
, 1, OPTAB_LIB_WIDEN
);
8854 temp
= expand_unop (mode
, one_cmpl_optab
, op0
, target
, 1);
8858 /* ??? Can optimize bitwise operations with one arg constant.
8859 Can optimize (a bitwise1 n) bitwise2 (a bitwise3 b)
8860 and (a bitwise1 b) bitwise2 b (etc)
8861 but that is probably not worth while. */
8870 gcc_assert (VECTOR_MODE_P (TYPE_MODE (type
))
8871 || (GET_MODE_PRECISION (TYPE_MODE (type
))
8872 == TYPE_PRECISION (type
)));
8877 /* If this is a fixed-point operation, then we cannot use the code
8878 below because "expand_shift" doesn't support sat/no-sat fixed-point
8880 if (ALL_FIXED_POINT_MODE_P (mode
))
8883 if (! safe_from_p (subtarget
, treeop1
, 1))
8885 if (modifier
== EXPAND_STACK_PARM
)
8887 op0
= expand_expr (treeop0
, subtarget
,
8888 VOIDmode
, EXPAND_NORMAL
);
8889 temp
= expand_variable_shift (code
, mode
, op0
, treeop1
, target
,
8891 if (code
== LSHIFT_EXPR
)
8892 temp
= REDUCE_BIT_FIELD (temp
);
8895 /* Could determine the answer when only additive constants differ. Also,
8896 the addition of one can be handled by changing the condition. */
8903 case UNORDERED_EXPR
:
8911 temp
= do_store_flag (ops
,
8912 modifier
!= EXPAND_STACK_PARM
? target
: NULL_RTX
,
8913 tmode
!= VOIDmode
? tmode
: mode
);
8917 /* Use a compare and a jump for BLKmode comparisons, or for function
8918 type comparisons is HAVE_canonicalize_funcptr_for_compare. */
8921 || modifier
== EXPAND_STACK_PARM
8922 || ! safe_from_p (target
, treeop0
, 1)
8923 || ! safe_from_p (target
, treeop1
, 1)
8924 /* Make sure we don't have a hard reg (such as function's return
8925 value) live across basic blocks, if not optimizing. */
8926 || (!optimize
&& REG_P (target
)
8927 && REGNO (target
) < FIRST_PSEUDO_REGISTER
)))
8928 target
= gen_reg_rtx (tmode
!= VOIDmode
? tmode
: mode
);
8930 emit_move_insn (target
, const0_rtx
);
8932 op1
= gen_label_rtx ();
8933 jumpifnot_1 (code
, treeop0
, treeop1
, op1
, -1);
8935 if (TYPE_PRECISION (type
) == 1 && !TYPE_UNSIGNED (type
))
8936 emit_move_insn (target
, constm1_rtx
);
8938 emit_move_insn (target
, const1_rtx
);
8944 /* Get the rtx code of the operands. */
8945 op0
= expand_normal (treeop0
);
8946 op1
= expand_normal (treeop1
);
8949 target
= gen_reg_rtx (TYPE_MODE (type
));
8951 /* If target overlaps with op1, then either we need to force
8952 op1 into a pseudo (if target also overlaps with op0),
8953 or write the complex parts in reverse order. */
8954 switch (GET_CODE (target
))
8957 if (reg_overlap_mentioned_p (XEXP (target
, 0), op1
))
8959 if (reg_overlap_mentioned_p (XEXP (target
, 1), op0
))
8961 complex_expr_force_op1
:
8962 temp
= gen_reg_rtx (GET_MODE_INNER (GET_MODE (target
)));
8963 emit_move_insn (temp
, op1
);
8967 complex_expr_swap_order
:
8968 /* Move the imaginary (op1) and real (op0) parts to their
8970 write_complex_part (target
, op1
, true);
8971 write_complex_part (target
, op0
, false);
8977 temp
= adjust_address_nv (target
,
8978 GET_MODE_INNER (GET_MODE (target
)), 0);
8979 if (reg_overlap_mentioned_p (temp
, op1
))
8981 enum machine_mode imode
= GET_MODE_INNER (GET_MODE (target
));
8982 temp
= adjust_address_nv (target
, imode
,
8983 GET_MODE_SIZE (imode
));
8984 if (reg_overlap_mentioned_p (temp
, op0
))
8985 goto complex_expr_force_op1
;
8986 goto complex_expr_swap_order
;
8990 if (reg_overlap_mentioned_p (target
, op1
))
8992 if (reg_overlap_mentioned_p (target
, op0
))
8993 goto complex_expr_force_op1
;
8994 goto complex_expr_swap_order
;
8999 /* Move the real (op0) and imaginary (op1) parts to their location. */
9000 write_complex_part (target
, op0
, false);
9001 write_complex_part (target
, op1
, true);
9005 case WIDEN_SUM_EXPR
:
9007 tree oprnd0
= treeop0
;
9008 tree oprnd1
= treeop1
;
9010 expand_operands (oprnd0
, oprnd1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
9011 target
= expand_widen_pattern_expr (ops
, op0
, NULL_RTX
, op1
,
9016 case REDUC_MAX_EXPR
:
9017 case REDUC_MIN_EXPR
:
9018 case REDUC_PLUS_EXPR
:
9020 op0
= expand_normal (treeop0
);
9021 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
9022 temp
= expand_unop (mode
, this_optab
, op0
, target
, unsignedp
);
9027 case VEC_LSHIFT_EXPR
:
9028 case VEC_RSHIFT_EXPR
:
9030 target
= expand_vec_shift_expr (ops
, target
);
9034 case VEC_UNPACK_HI_EXPR
:
9035 case VEC_UNPACK_LO_EXPR
:
9037 op0
= expand_normal (treeop0
);
9038 temp
= expand_widen_pattern_expr (ops
, op0
, NULL_RTX
, NULL_RTX
,
9044 case VEC_UNPACK_FLOAT_HI_EXPR
:
9045 case VEC_UNPACK_FLOAT_LO_EXPR
:
9047 op0
= expand_normal (treeop0
);
9048 /* The signedness is determined from input operand. */
9049 temp
= expand_widen_pattern_expr
9050 (ops
, op0
, NULL_RTX
, NULL_RTX
,
9051 target
, TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
9057 case VEC_WIDEN_MULT_HI_EXPR
:
9058 case VEC_WIDEN_MULT_LO_EXPR
:
9059 case VEC_WIDEN_MULT_EVEN_EXPR
:
9060 case VEC_WIDEN_MULT_ODD_EXPR
:
9061 case VEC_WIDEN_LSHIFT_HI_EXPR
:
9062 case VEC_WIDEN_LSHIFT_LO_EXPR
:
9063 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
9064 target
= expand_widen_pattern_expr (ops
, op0
, op1
, NULL_RTX
,
9066 gcc_assert (target
);
9069 case VEC_PACK_TRUNC_EXPR
:
9070 case VEC_PACK_SAT_EXPR
:
9071 case VEC_PACK_FIX_TRUNC_EXPR
:
9072 mode
= TYPE_MODE (TREE_TYPE (treeop0
));
9076 expand_operands (treeop0
, treeop1
, target
, &op0
, &op1
, EXPAND_NORMAL
);
9077 op2
= expand_normal (treeop2
);
9079 /* Careful here: if the target doesn't support integral vector modes,
9080 a constant selection vector could wind up smooshed into a normal
9081 integral constant. */
9082 if (CONSTANT_P (op2
) && GET_CODE (op2
) != CONST_VECTOR
)
9084 tree sel_type
= TREE_TYPE (treeop2
);
9085 enum machine_mode vmode
9086 = mode_for_vector (TYPE_MODE (TREE_TYPE (sel_type
)),
9087 TYPE_VECTOR_SUBPARTS (sel_type
));
9088 gcc_assert (GET_MODE_CLASS (vmode
) == MODE_VECTOR_INT
);
9089 op2
= simplify_subreg (vmode
, op2
, TYPE_MODE (sel_type
), 0);
9090 gcc_assert (op2
&& GET_CODE (op2
) == CONST_VECTOR
);
9093 gcc_assert (GET_MODE_CLASS (GET_MODE (op2
)) == MODE_VECTOR_INT
);
9095 temp
= expand_vec_perm (mode
, op0
, op1
, op2
, target
);
9101 tree oprnd0
= treeop0
;
9102 tree oprnd1
= treeop1
;
9103 tree oprnd2
= treeop2
;
9106 expand_operands (oprnd0
, oprnd1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
9107 op2
= expand_normal (oprnd2
);
9108 target
= expand_widen_pattern_expr (ops
, op0
, op1
, op2
,
9113 case REALIGN_LOAD_EXPR
:
9115 tree oprnd0
= treeop0
;
9116 tree oprnd1
= treeop1
;
9117 tree oprnd2
= treeop2
;
9120 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
9121 expand_operands (oprnd0
, oprnd1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
9122 op2
= expand_normal (oprnd2
);
9123 temp
= expand_ternary_op (mode
, this_optab
, op0
, op1
, op2
,
9130 /* A COND_EXPR with its type being VOID_TYPE represents a
9131 conditional jump and is handled in
9132 expand_gimple_cond_expr. */
9133 gcc_assert (!VOID_TYPE_P (type
));
9135 /* Note that COND_EXPRs whose type is a structure or union
9136 are required to be constructed to contain assignments of
9137 a temporary variable, so that we can evaluate them here
9138 for side effect only. If type is void, we must do likewise. */
9140 gcc_assert (!TREE_ADDRESSABLE (type
)
9142 && TREE_TYPE (treeop1
) != void_type_node
9143 && TREE_TYPE (treeop2
) != void_type_node
);
9145 temp
= expand_cond_expr_using_cmove (treeop0
, treeop1
, treeop2
);
9149 /* If we are not to produce a result, we have no target. Otherwise,
9150 if a target was specified use it; it will not be used as an
9151 intermediate target unless it is safe. If no target, use a
9154 if (modifier
!= EXPAND_STACK_PARM
9156 && safe_from_p (original_target
, treeop0
, 1)
9157 && GET_MODE (original_target
) == mode
9158 && !MEM_P (original_target
))
9159 temp
= original_target
;
9161 temp
= assign_temp (type
, 0, 1);
9163 do_pending_stack_adjust ();
9165 op0
= gen_label_rtx ();
9166 op1
= gen_label_rtx ();
9167 jumpifnot (treeop0
, op0
, -1);
9168 store_expr (treeop1
, temp
,
9169 modifier
== EXPAND_STACK_PARM
,
9172 emit_jump_insn (gen_jump (op1
));
9175 store_expr (treeop2
, temp
,
9176 modifier
== EXPAND_STACK_PARM
,
9184 target
= expand_vec_cond_expr (type
, treeop0
, treeop1
, treeop2
, target
);
9191 /* Here to do an ordinary binary operator. */
9193 expand_operands (treeop0
, treeop1
,
9194 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
9196 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
9198 if (modifier
== EXPAND_STACK_PARM
)
9200 temp
= expand_binop (mode
, this_optab
, op0
, op1
, target
,
9201 unsignedp
, OPTAB_LIB_WIDEN
);
9203 /* Bitwise operations do not need bitfield reduction as we expect their
9204 operands being properly truncated. */
9205 if (code
== BIT_XOR_EXPR
9206 || code
== BIT_AND_EXPR
9207 || code
== BIT_IOR_EXPR
)
9209 return REDUCE_BIT_FIELD (temp
);
9211 #undef REDUCE_BIT_FIELD
9214 /* Return TRUE if expression STMT is suitable for replacement.
9215 Never consider memory loads as replaceable, because those don't ever lead
9216 into constant expressions. */
9219 stmt_is_replaceable_p (gimple stmt
)
9221 if (ssa_is_replaceable_p (stmt
))
9223 /* Don't move around loads. */
9224 if (!gimple_assign_single_p (stmt
)
9225 || is_gimple_val (gimple_assign_rhs1 (stmt
)))
9232 expand_expr_real_1 (tree exp
, rtx target
, enum machine_mode tmode
,
9233 enum expand_modifier modifier
, rtx
*alt_rtl
,
9234 bool inner_reference_p
)
9236 rtx op0
, op1
, temp
, decl_rtl
;
9239 enum machine_mode mode
;
9240 enum tree_code code
= TREE_CODE (exp
);
9241 rtx subtarget
, original_target
;
9244 bool reduce_bit_field
;
9245 location_t loc
= EXPR_LOCATION (exp
);
9246 struct separate_ops ops
;
9247 tree treeop0
, treeop1
, treeop2
;
9248 tree ssa_name
= NULL_TREE
;
9251 type
= TREE_TYPE (exp
);
9252 mode
= TYPE_MODE (type
);
9253 unsignedp
= TYPE_UNSIGNED (type
);
9255 treeop0
= treeop1
= treeop2
= NULL_TREE
;
9256 if (!VL_EXP_CLASS_P (exp
))
9257 switch (TREE_CODE_LENGTH (code
))
9260 case 3: treeop2
= TREE_OPERAND (exp
, 2);
9261 case 2: treeop1
= TREE_OPERAND (exp
, 1);
9262 case 1: treeop0
= TREE_OPERAND (exp
, 0);
9272 ignore
= (target
== const0_rtx
9273 || ((CONVERT_EXPR_CODE_P (code
)
9274 || code
== COND_EXPR
|| code
== VIEW_CONVERT_EXPR
)
9275 && TREE_CODE (type
) == VOID_TYPE
));
9277 /* An operation in what may be a bit-field type needs the
9278 result to be reduced to the precision of the bit-field type,
9279 which is narrower than that of the type's mode. */
9280 reduce_bit_field
= (!ignore
9281 && INTEGRAL_TYPE_P (type
)
9282 && GET_MODE_PRECISION (mode
) > TYPE_PRECISION (type
));
9284 /* If we are going to ignore this result, we need only do something
9285 if there is a side-effect somewhere in the expression. If there
9286 is, short-circuit the most common cases here. Note that we must
9287 not call expand_expr with anything but const0_rtx in case this
9288 is an initial expansion of a size that contains a PLACEHOLDER_EXPR. */
9292 if (! TREE_SIDE_EFFECTS (exp
))
9295 /* Ensure we reference a volatile object even if value is ignored, but
9296 don't do this if all we are doing is taking its address. */
9297 if (TREE_THIS_VOLATILE (exp
)
9298 && TREE_CODE (exp
) != FUNCTION_DECL
9299 && mode
!= VOIDmode
&& mode
!= BLKmode
9300 && modifier
!= EXPAND_CONST_ADDRESS
)
9302 temp
= expand_expr (exp
, NULL_RTX
, VOIDmode
, modifier
);
9308 if (TREE_CODE_CLASS (code
) == tcc_unary
9309 || code
== BIT_FIELD_REF
9310 || code
== COMPONENT_REF
9311 || code
== INDIRECT_REF
)
9312 return expand_expr (treeop0
, const0_rtx
, VOIDmode
,
9315 else if (TREE_CODE_CLASS (code
) == tcc_binary
9316 || TREE_CODE_CLASS (code
) == tcc_comparison
9317 || code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
9319 expand_expr (treeop0
, const0_rtx
, VOIDmode
, modifier
);
9320 expand_expr (treeop1
, const0_rtx
, VOIDmode
, modifier
);
9327 if (reduce_bit_field
&& modifier
== EXPAND_STACK_PARM
)
9330 /* Use subtarget as the target for operand 0 of a binary operation. */
9331 subtarget
= get_subtarget (target
);
9332 original_target
= target
;
9338 tree function
= decl_function_context (exp
);
9340 temp
= label_rtx (exp
);
9341 temp
= gen_rtx_LABEL_REF (Pmode
, temp
);
9343 if (function
!= current_function_decl
9345 LABEL_REF_NONLOCAL_P (temp
) = 1;
9347 temp
= gen_rtx_MEM (FUNCTION_MODE
, temp
);
9352 /* ??? ivopts calls expander, without any preparation from
9353 out-of-ssa. So fake instructions as if this was an access to the
9354 base variable. This unnecessarily allocates a pseudo, see how we can
9355 reuse it, if partition base vars have it set already. */
9356 if (!currently_expanding_to_rtl
)
9358 tree var
= SSA_NAME_VAR (exp
);
9359 if (var
&& DECL_RTL_SET_P (var
))
9360 return DECL_RTL (var
);
9361 return gen_raw_REG (TYPE_MODE (TREE_TYPE (exp
)),
9362 LAST_VIRTUAL_REGISTER
+ 1);
9365 g
= get_gimple_for_ssa_name (exp
);
9366 /* For EXPAND_INITIALIZER try harder to get something simpler. */
9368 && modifier
== EXPAND_INITIALIZER
9369 && !SSA_NAME_IS_DEFAULT_DEF (exp
)
9370 && (optimize
|| DECL_IGNORED_P (SSA_NAME_VAR (exp
)))
9371 && stmt_is_replaceable_p (SSA_NAME_DEF_STMT (exp
)))
9372 g
= SSA_NAME_DEF_STMT (exp
);
9376 ops
.code
= gimple_assign_rhs_code (g
);
9377 switch (get_gimple_rhs_class (ops
.code
))
9379 case GIMPLE_TERNARY_RHS
:
9380 ops
.op2
= gimple_assign_rhs3 (g
);
9382 case GIMPLE_BINARY_RHS
:
9383 ops
.op1
= gimple_assign_rhs2 (g
);
9385 case GIMPLE_UNARY_RHS
:
9386 ops
.op0
= gimple_assign_rhs1 (g
);
9387 ops
.type
= TREE_TYPE (gimple_assign_lhs (g
));
9388 ops
.location
= gimple_location (g
);
9389 r
= expand_expr_real_2 (&ops
, target
, tmode
, modifier
);
9391 case GIMPLE_SINGLE_RHS
:
9393 location_t saved_loc
= curr_insn_location ();
9394 set_curr_insn_location (gimple_location (g
));
9395 r
= expand_expr_real (gimple_assign_rhs1 (g
), target
,
9396 tmode
, modifier
, NULL
, inner_reference_p
);
9397 set_curr_insn_location (saved_loc
);
9403 if (REG_P (r
) && !REG_EXPR (r
))
9404 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (exp
), r
);
9409 decl_rtl
= get_rtx_for_ssa_name (ssa_name
);
9410 exp
= SSA_NAME_VAR (ssa_name
);
9411 goto expand_decl_rtl
;
9415 /* If a static var's type was incomplete when the decl was written,
9416 but the type is complete now, lay out the decl now. */
9417 if (DECL_SIZE (exp
) == 0
9418 && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (TREE_TYPE (exp
))
9419 && (TREE_STATIC (exp
) || DECL_EXTERNAL (exp
)))
9420 layout_decl (exp
, 0);
9422 /* ... fall through ... */
9426 decl_rtl
= DECL_RTL (exp
);
9428 gcc_assert (decl_rtl
);
9429 decl_rtl
= copy_rtx (decl_rtl
);
9430 /* Record writes to register variables. */
9431 if (modifier
== EXPAND_WRITE
9433 && HARD_REGISTER_P (decl_rtl
))
9434 add_to_hard_reg_set (&crtl
->asm_clobbers
,
9435 GET_MODE (decl_rtl
), REGNO (decl_rtl
));
9437 /* Ensure variable marked as used even if it doesn't go through
9438 a parser. If it hasn't be used yet, write out an external
9440 TREE_USED (exp
) = 1;
9442 /* Show we haven't gotten RTL for this yet. */
9445 /* Variables inherited from containing functions should have
9446 been lowered by this point. */
9447 context
= decl_function_context (exp
);
9448 gcc_assert (SCOPE_FILE_SCOPE_P (context
)
9449 || context
== current_function_decl
9450 || TREE_STATIC (exp
)
9451 || DECL_EXTERNAL (exp
)
9452 /* ??? C++ creates functions that are not TREE_STATIC. */
9453 || TREE_CODE (exp
) == FUNCTION_DECL
);
9455 /* This is the case of an array whose size is to be determined
9456 from its initializer, while the initializer is still being parsed.
9457 ??? We aren't parsing while expanding anymore. */
9459 if (MEM_P (decl_rtl
) && REG_P (XEXP (decl_rtl
, 0)))
9460 temp
= validize_mem (decl_rtl
);
9462 /* If DECL_RTL is memory, we are in the normal case and the
9463 address is not valid, get the address into a register. */
9465 else if (MEM_P (decl_rtl
) && modifier
!= EXPAND_INITIALIZER
)
9468 *alt_rtl
= decl_rtl
;
9469 decl_rtl
= use_anchored_address (decl_rtl
);
9470 if (modifier
!= EXPAND_CONST_ADDRESS
9471 && modifier
!= EXPAND_SUM
9472 && !memory_address_addr_space_p (DECL_MODE (exp
),
9474 MEM_ADDR_SPACE (decl_rtl
)))
9475 temp
= replace_equiv_address (decl_rtl
,
9476 copy_rtx (XEXP (decl_rtl
, 0)));
9479 /* If we got something, return it. But first, set the alignment
9480 if the address is a register. */
9483 if (MEM_P (temp
) && REG_P (XEXP (temp
, 0)))
9484 mark_reg_pointer (XEXP (temp
, 0), DECL_ALIGN (exp
));
9489 /* If the mode of DECL_RTL does not match that of the decl,
9490 there are two cases: we are dealing with a BLKmode value
9491 that is returned in a register, or we are dealing with
9492 a promoted value. In the latter case, return a SUBREG
9493 of the wanted mode, but mark it so that we know that it
9494 was already extended. */
9495 if (REG_P (decl_rtl
)
9496 && DECL_MODE (exp
) != BLKmode
9497 && GET_MODE (decl_rtl
) != DECL_MODE (exp
))
9499 enum machine_mode pmode
;
9501 /* Get the signedness to be used for this variable. Ensure we get
9502 the same mode we got when the variable was declared. */
9503 if (code
== SSA_NAME
9504 && (g
= SSA_NAME_DEF_STMT (ssa_name
))
9505 && gimple_code (g
) == GIMPLE_CALL
9506 && !gimple_call_internal_p (g
))
9507 pmode
= promote_function_mode (type
, mode
, &unsignedp
,
9508 gimple_call_fntype (g
),
9511 pmode
= promote_decl_mode (exp
, &unsignedp
);
9512 gcc_assert (GET_MODE (decl_rtl
) == pmode
);
9514 temp
= gen_lowpart_SUBREG (mode
, decl_rtl
);
9515 SUBREG_PROMOTED_VAR_P (temp
) = 1;
9516 SUBREG_PROMOTED_UNSIGNED_SET (temp
, unsignedp
);
9523 /* Given that TYPE_PRECISION (type) is not always equal to
9524 GET_MODE_PRECISION (TYPE_MODE (type)), we need to extend from
9525 the former to the latter according to the signedness of the
9527 temp
= immed_wide_int_const (wide_int::from
9529 GET_MODE_PRECISION (TYPE_MODE (type
)),
9536 tree tmp
= NULL_TREE
;
9537 if (GET_MODE_CLASS (mode
) == MODE_VECTOR_INT
9538 || GET_MODE_CLASS (mode
) == MODE_VECTOR_FLOAT
9539 || GET_MODE_CLASS (mode
) == MODE_VECTOR_FRACT
9540 || GET_MODE_CLASS (mode
) == MODE_VECTOR_UFRACT
9541 || GET_MODE_CLASS (mode
) == MODE_VECTOR_ACCUM
9542 || GET_MODE_CLASS (mode
) == MODE_VECTOR_UACCUM
)
9543 return const_vector_from_tree (exp
);
9544 if (GET_MODE_CLASS (mode
) == MODE_INT
)
9546 tree type_for_mode
= lang_hooks
.types
.type_for_mode (mode
, 1);
9548 tmp
= fold_unary_loc (loc
, VIEW_CONVERT_EXPR
, type_for_mode
, exp
);
9552 vec
<constructor_elt
, va_gc
> *v
;
9554 vec_alloc (v
, VECTOR_CST_NELTS (exp
));
9555 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
9556 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, VECTOR_CST_ELT (exp
, i
));
9557 tmp
= build_constructor (type
, v
);
9559 return expand_expr (tmp
, ignore
? const0_rtx
: target
,
9564 return expand_expr (DECL_INITIAL (exp
), target
, VOIDmode
, modifier
);
9567 /* If optimized, generate immediate CONST_DOUBLE
9568 which will be turned into memory by reload if necessary.
9570 We used to force a register so that loop.c could see it. But
9571 this does not allow gen_* patterns to perform optimizations with
9572 the constants. It also produces two insns in cases like "x = 1.0;".
9573 On most machines, floating-point constants are not permitted in
9574 many insns, so we'd end up copying it to a register in any case.
9576 Now, we do the copying in expand_binop, if appropriate. */
9577 return CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (exp
),
9578 TYPE_MODE (TREE_TYPE (exp
)));
9581 return CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (exp
),
9582 TYPE_MODE (TREE_TYPE (exp
)));
9585 /* Handle evaluating a complex constant in a CONCAT target. */
9586 if (original_target
&& GET_CODE (original_target
) == CONCAT
)
9588 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
9591 rtarg
= XEXP (original_target
, 0);
9592 itarg
= XEXP (original_target
, 1);
9594 /* Move the real and imaginary parts separately. */
9595 op0
= expand_expr (TREE_REALPART (exp
), rtarg
, mode
, EXPAND_NORMAL
);
9596 op1
= expand_expr (TREE_IMAGPART (exp
), itarg
, mode
, EXPAND_NORMAL
);
9599 emit_move_insn (rtarg
, op0
);
9601 emit_move_insn (itarg
, op1
);
9603 return original_target
;
9606 /* ... fall through ... */
9609 temp
= expand_expr_constant (exp
, 1, modifier
);
9611 /* temp contains a constant address.
9612 On RISC machines where a constant address isn't valid,
9613 make some insns to get that address into a register. */
9614 if (modifier
!= EXPAND_CONST_ADDRESS
9615 && modifier
!= EXPAND_INITIALIZER
9616 && modifier
!= EXPAND_SUM
9617 && ! memory_address_addr_space_p (mode
, XEXP (temp
, 0),
9618 MEM_ADDR_SPACE (temp
)))
9619 return replace_equiv_address (temp
,
9620 copy_rtx (XEXP (temp
, 0)));
9626 rtx ret
= expand_expr_real_1 (val
, target
, tmode
, modifier
, alt_rtl
,
9629 if (!SAVE_EXPR_RESOLVED_P (exp
))
9631 /* We can indeed still hit this case, typically via builtin
9632 expanders calling save_expr immediately before expanding
9633 something. Assume this means that we only have to deal
9634 with non-BLKmode values. */
9635 gcc_assert (GET_MODE (ret
) != BLKmode
);
9637 val
= build_decl (curr_insn_location (),
9638 VAR_DECL
, NULL
, TREE_TYPE (exp
));
9639 DECL_ARTIFICIAL (val
) = 1;
9640 DECL_IGNORED_P (val
) = 1;
9642 TREE_OPERAND (exp
, 0) = treeop0
;
9643 SAVE_EXPR_RESOLVED_P (exp
) = 1;
9645 if (!CONSTANT_P (ret
))
9646 ret
= copy_to_reg (ret
);
9647 SET_DECL_RTL (val
, ret
);
9655 /* If we don't need the result, just ensure we evaluate any
9659 unsigned HOST_WIDE_INT idx
;
9662 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
9663 expand_expr (value
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
9668 return expand_constructor (exp
, target
, modifier
, false);
9670 case TARGET_MEM_REF
:
9673 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0))));
9674 enum insn_code icode
;
9677 op0
= addr_for_mem_ref (exp
, as
, true);
9678 op0
= memory_address_addr_space (mode
, op0
, as
);
9679 temp
= gen_rtx_MEM (mode
, op0
);
9680 set_mem_attributes (temp
, exp
, 0);
9681 set_mem_addr_space (temp
, as
);
9682 align
= get_object_alignment (exp
);
9683 if (modifier
!= EXPAND_WRITE
9684 && modifier
!= EXPAND_MEMORY
9686 && align
< GET_MODE_ALIGNMENT (mode
)
9687 /* If the target does not have special handling for unaligned
9688 loads of mode then it can use regular moves for them. */
9689 && ((icode
= optab_handler (movmisalign_optab
, mode
))
9690 != CODE_FOR_nothing
))
9692 struct expand_operand ops
[2];
9694 /* We've already validated the memory, and we're creating a
9695 new pseudo destination. The predicates really can't fail,
9696 nor can the generator. */
9697 create_output_operand (&ops
[0], NULL_RTX
, mode
);
9698 create_fixed_operand (&ops
[1], temp
);
9699 expand_insn (icode
, 2, ops
);
9700 temp
= ops
[0].value
;
9708 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0))));
9709 enum machine_mode address_mode
;
9710 tree base
= TREE_OPERAND (exp
, 0);
9712 enum insn_code icode
;
9714 /* Handle expansion of non-aliased memory with non-BLKmode. That
9715 might end up in a register. */
9716 if (mem_ref_refers_to_non_mem_p (exp
))
9718 HOST_WIDE_INT offset
= mem_ref_offset (exp
).to_short_addr ();
9719 base
= TREE_OPERAND (base
, 0);
9721 && tree_fits_uhwi_p (TYPE_SIZE (type
))
9722 && (GET_MODE_BITSIZE (DECL_MODE (base
))
9723 == tree_to_uhwi (TYPE_SIZE (type
))))
9724 return expand_expr (build1 (VIEW_CONVERT_EXPR
, type
, base
),
9725 target
, tmode
, modifier
);
9726 if (TYPE_MODE (type
) == BLKmode
)
9728 temp
= assign_stack_temp (DECL_MODE (base
),
9729 GET_MODE_SIZE (DECL_MODE (base
)));
9730 store_expr (base
, temp
, 0, false);
9731 temp
= adjust_address (temp
, BLKmode
, offset
);
9732 set_mem_size (temp
, int_size_in_bytes (type
));
9735 exp
= build3 (BIT_FIELD_REF
, type
, base
, TYPE_SIZE (type
),
9736 bitsize_int (offset
* BITS_PER_UNIT
));
9737 return expand_expr (exp
, target
, tmode
, modifier
);
9739 address_mode
= targetm
.addr_space
.address_mode (as
);
9740 base
= TREE_OPERAND (exp
, 0);
9741 if ((def_stmt
= get_def_for_expr (base
, BIT_AND_EXPR
)))
9743 tree mask
= gimple_assign_rhs2 (def_stmt
);
9744 base
= build2 (BIT_AND_EXPR
, TREE_TYPE (base
),
9745 gimple_assign_rhs1 (def_stmt
), mask
);
9746 TREE_OPERAND (exp
, 0) = base
;
9748 align
= get_object_alignment (exp
);
9749 op0
= expand_expr (base
, NULL_RTX
, VOIDmode
, EXPAND_SUM
);
9750 op0
= memory_address_addr_space (mode
, op0
, as
);
9751 if (!integer_zerop (TREE_OPERAND (exp
, 1)))
9753 rtx off
= immed_wide_int_const (mem_ref_offset (exp
), address_mode
);
9754 op0
= simplify_gen_binary (PLUS
, address_mode
, op0
, off
);
9755 op0
= memory_address_addr_space (mode
, op0
, as
);
9757 temp
= gen_rtx_MEM (mode
, op0
);
9758 set_mem_attributes (temp
, exp
, 0);
9759 set_mem_addr_space (temp
, as
);
9760 if (TREE_THIS_VOLATILE (exp
))
9761 MEM_VOLATILE_P (temp
) = 1;
9762 if (modifier
!= EXPAND_WRITE
9763 && modifier
!= EXPAND_MEMORY
9764 && !inner_reference_p
9766 && align
< GET_MODE_ALIGNMENT (mode
))
9768 if ((icode
= optab_handler (movmisalign_optab
, mode
))
9769 != CODE_FOR_nothing
)
9771 struct expand_operand ops
[2];
9773 /* We've already validated the memory, and we're creating a
9774 new pseudo destination. The predicates really can't fail,
9775 nor can the generator. */
9776 create_output_operand (&ops
[0], NULL_RTX
, mode
);
9777 create_fixed_operand (&ops
[1], temp
);
9778 expand_insn (icode
, 2, ops
);
9779 temp
= ops
[0].value
;
9781 else if (SLOW_UNALIGNED_ACCESS (mode
, align
))
9782 temp
= extract_bit_field (temp
, GET_MODE_BITSIZE (mode
),
9783 0, TYPE_UNSIGNED (TREE_TYPE (exp
)),
9784 (modifier
== EXPAND_STACK_PARM
9785 ? NULL_RTX
: target
),
9794 tree array
= treeop0
;
9795 tree index
= treeop1
;
9798 /* Fold an expression like: "foo"[2].
9799 This is not done in fold so it won't happen inside &.
9800 Don't fold if this is for wide characters since it's too
9801 difficult to do correctly and this is a very rare case. */
9803 if (modifier
!= EXPAND_CONST_ADDRESS
9804 && modifier
!= EXPAND_INITIALIZER
9805 && modifier
!= EXPAND_MEMORY
)
9807 tree t
= fold_read_from_constant_string (exp
);
9810 return expand_expr (t
, target
, tmode
, modifier
);
9813 /* If this is a constant index into a constant array,
9814 just get the value from the array. Handle both the cases when
9815 we have an explicit constructor and when our operand is a variable
9816 that was declared const. */
9818 if (modifier
!= EXPAND_CONST_ADDRESS
9819 && modifier
!= EXPAND_INITIALIZER
9820 && modifier
!= EXPAND_MEMORY
9821 && TREE_CODE (array
) == CONSTRUCTOR
9822 && ! TREE_SIDE_EFFECTS (array
)
9823 && TREE_CODE (index
) == INTEGER_CST
)
9825 unsigned HOST_WIDE_INT ix
;
9828 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (array
), ix
,
9830 if (tree_int_cst_equal (field
, index
))
9832 if (!TREE_SIDE_EFFECTS (value
))
9833 return expand_expr (fold (value
), target
, tmode
, modifier
);
9838 else if (optimize
>= 1
9839 && modifier
!= EXPAND_CONST_ADDRESS
9840 && modifier
!= EXPAND_INITIALIZER
9841 && modifier
!= EXPAND_MEMORY
9842 && TREE_READONLY (array
) && ! TREE_SIDE_EFFECTS (array
)
9843 && TREE_CODE (index
) == INTEGER_CST
9844 && (TREE_CODE (array
) == VAR_DECL
9845 || TREE_CODE (array
) == CONST_DECL
)
9846 && (init
= ctor_for_folding (array
)) != error_mark_node
)
9848 if (init
== NULL_TREE
)
9850 tree value
= build_zero_cst (type
);
9851 if (TREE_CODE (value
) == CONSTRUCTOR
)
9853 /* If VALUE is a CONSTRUCTOR, this optimization is only
9854 useful if this doesn't store the CONSTRUCTOR into
9855 memory. If it does, it is more efficient to just
9856 load the data from the array directly. */
9857 rtx ret
= expand_constructor (value
, target
,
9859 if (ret
== NULL_RTX
)
9864 return expand_expr (value
, target
, tmode
, modifier
);
9866 else if (TREE_CODE (init
) == CONSTRUCTOR
)
9868 unsigned HOST_WIDE_INT ix
;
9871 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init
), ix
,
9873 if (tree_int_cst_equal (field
, index
))
9875 if (TREE_SIDE_EFFECTS (value
))
9878 if (TREE_CODE (value
) == CONSTRUCTOR
)
9880 /* If VALUE is a CONSTRUCTOR, this
9881 optimization is only useful if
9882 this doesn't store the CONSTRUCTOR
9883 into memory. If it does, it is more
9884 efficient to just load the data from
9885 the array directly. */
9886 rtx ret
= expand_constructor (value
, target
,
9888 if (ret
== NULL_RTX
)
9893 expand_expr (fold (value
), target
, tmode
, modifier
);
9896 else if (TREE_CODE (init
) == STRING_CST
)
9898 tree low_bound
= array_ref_low_bound (exp
);
9899 tree index1
= fold_convert_loc (loc
, sizetype
, treeop1
);
9901 /* Optimize the special case of a zero lower bound.
9903 We convert the lower bound to sizetype to avoid problems
9904 with constant folding. E.g. suppose the lower bound is
9905 1 and its mode is QI. Without the conversion
9906 (ARRAY + (INDEX - (unsigned char)1))
9908 (ARRAY + (-(unsigned char)1) + INDEX)
9910 (ARRAY + 255 + INDEX). Oops! */
9911 if (!integer_zerop (low_bound
))
9912 index1
= size_diffop_loc (loc
, index1
,
9913 fold_convert_loc (loc
, sizetype
,
9916 if (compare_tree_int (index1
, TREE_STRING_LENGTH (init
)) < 0)
9918 tree type
= TREE_TYPE (TREE_TYPE (init
));
9919 enum machine_mode mode
= TYPE_MODE (type
);
9921 if (GET_MODE_CLASS (mode
) == MODE_INT
9922 && GET_MODE_SIZE (mode
) == 1)
9923 return gen_int_mode (TREE_STRING_POINTER (init
)
9924 [TREE_INT_CST_LOW (index1
)],
9930 goto normal_inner_ref
;
9933 /* If the operand is a CONSTRUCTOR, we can just extract the
9934 appropriate field if it is present. */
9935 if (TREE_CODE (treeop0
) == CONSTRUCTOR
)
9937 unsigned HOST_WIDE_INT idx
;
9940 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (treeop0
),
9942 if (field
== treeop1
9943 /* We can normally use the value of the field in the
9944 CONSTRUCTOR. However, if this is a bitfield in
9945 an integral mode that we can fit in a HOST_WIDE_INT,
9946 we must mask only the number of bits in the bitfield,
9947 since this is done implicitly by the constructor. If
9948 the bitfield does not meet either of those conditions,
9949 we can't do this optimization. */
9950 && (! DECL_BIT_FIELD (field
)
9951 || ((GET_MODE_CLASS (DECL_MODE (field
)) == MODE_INT
)
9952 && (GET_MODE_PRECISION (DECL_MODE (field
))
9953 <= HOST_BITS_PER_WIDE_INT
))))
9955 if (DECL_BIT_FIELD (field
)
9956 && modifier
== EXPAND_STACK_PARM
)
9958 op0
= expand_expr (value
, target
, tmode
, modifier
);
9959 if (DECL_BIT_FIELD (field
))
9961 HOST_WIDE_INT bitsize
= TREE_INT_CST_LOW (DECL_SIZE (field
));
9962 enum machine_mode imode
= TYPE_MODE (TREE_TYPE (field
));
9964 if (TYPE_UNSIGNED (TREE_TYPE (field
)))
9966 op1
= gen_int_mode (((HOST_WIDE_INT
) 1 << bitsize
) - 1,
9968 op0
= expand_and (imode
, op0
, op1
, target
);
9972 int count
= GET_MODE_PRECISION (imode
) - bitsize
;
9974 op0
= expand_shift (LSHIFT_EXPR
, imode
, op0
, count
,
9976 op0
= expand_shift (RSHIFT_EXPR
, imode
, op0
, count
,
9984 goto normal_inner_ref
;
9987 case ARRAY_RANGE_REF
:
9990 enum machine_mode mode1
, mode2
;
9991 HOST_WIDE_INT bitsize
, bitpos
;
9993 int volatilep
= 0, must_force_mem
;
9994 tree tem
= get_inner_reference (exp
, &bitsize
, &bitpos
, &offset
,
9995 &mode1
, &unsignedp
, &volatilep
, true);
9996 rtx orig_op0
, memloc
;
9997 bool mem_attrs_from_type
= false;
9999 /* If we got back the original object, something is wrong. Perhaps
10000 we are evaluating an expression too early. In any event, don't
10001 infinitely recurse. */
10002 gcc_assert (tem
!= exp
);
10004 /* If TEM's type is a union of variable size, pass TARGET to the inner
10005 computation, since it will need a temporary and TARGET is known
10006 to have to do. This occurs in unchecked conversion in Ada. */
10008 = expand_expr_real (tem
,
10009 (TREE_CODE (TREE_TYPE (tem
)) == UNION_TYPE
10010 && COMPLETE_TYPE_P (TREE_TYPE (tem
))
10011 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem
)))
10013 && modifier
!= EXPAND_STACK_PARM
10014 ? target
: NULL_RTX
),
10016 modifier
== EXPAND_SUM
? EXPAND_NORMAL
: modifier
,
10019 /* If the field has a mode, we want to access it in the
10020 field's mode, not the computed mode.
10021 If a MEM has VOIDmode (external with incomplete type),
10022 use BLKmode for it instead. */
10025 if (mode1
!= VOIDmode
)
10026 op0
= adjust_address (op0
, mode1
, 0);
10027 else if (GET_MODE (op0
) == VOIDmode
)
10028 op0
= adjust_address (op0
, BLKmode
, 0);
10032 = CONSTANT_P (op0
) ? TYPE_MODE (TREE_TYPE (tem
)) : GET_MODE (op0
);
10034 /* If we have either an offset, a BLKmode result, or a reference
10035 outside the underlying object, we must force it to memory.
10036 Such a case can occur in Ada if we have unchecked conversion
10037 of an expression from a scalar type to an aggregate type or
10038 for an ARRAY_RANGE_REF whose type is BLKmode, or if we were
10039 passed a partially uninitialized object or a view-conversion
10040 to a larger size. */
10041 must_force_mem
= (offset
10042 || mode1
== BLKmode
10043 || bitpos
+ bitsize
> GET_MODE_BITSIZE (mode2
));
10045 /* Handle CONCAT first. */
10046 if (GET_CODE (op0
) == CONCAT
&& !must_force_mem
)
10049 && bitsize
== GET_MODE_BITSIZE (GET_MODE (op0
)))
10052 && bitsize
== GET_MODE_BITSIZE (GET_MODE (XEXP (op0
, 0)))
10055 op0
= XEXP (op0
, 0);
10056 mode2
= GET_MODE (op0
);
10058 else if (bitpos
== GET_MODE_BITSIZE (GET_MODE (XEXP (op0
, 0)))
10059 && bitsize
== GET_MODE_BITSIZE (GET_MODE (XEXP (op0
, 1)))
10063 op0
= XEXP (op0
, 1);
10065 mode2
= GET_MODE (op0
);
10068 /* Otherwise force into memory. */
10069 must_force_mem
= 1;
10072 /* If this is a constant, put it in a register if it is a legitimate
10073 constant and we don't need a memory reference. */
10074 if (CONSTANT_P (op0
)
10075 && mode2
!= BLKmode
10076 && targetm
.legitimate_constant_p (mode2
, op0
)
10077 && !must_force_mem
)
10078 op0
= force_reg (mode2
, op0
);
10080 /* Otherwise, if this is a constant, try to force it to the constant
10081 pool. Note that back-ends, e.g. MIPS, may refuse to do so if it
10082 is a legitimate constant. */
10083 else if (CONSTANT_P (op0
) && (memloc
= force_const_mem (mode2
, op0
)))
10084 op0
= validize_mem (memloc
);
10086 /* Otherwise, if this is a constant or the object is not in memory
10087 and need be, put it there. */
10088 else if (CONSTANT_P (op0
) || (!MEM_P (op0
) && must_force_mem
))
10090 memloc
= assign_temp (TREE_TYPE (tem
), 1, 1);
10091 emit_move_insn (memloc
, op0
);
10093 mem_attrs_from_type
= true;
10098 enum machine_mode address_mode
;
10099 rtx offset_rtx
= expand_expr (offset
, NULL_RTX
, VOIDmode
,
10102 gcc_assert (MEM_P (op0
));
10104 address_mode
= get_address_mode (op0
);
10105 if (GET_MODE (offset_rtx
) != address_mode
)
10106 offset_rtx
= convert_to_mode (address_mode
, offset_rtx
, 0);
10108 /* See the comment in expand_assignment for the rationale. */
10109 if (mode1
!= VOIDmode
10112 && (bitpos
% bitsize
) == 0
10113 && (bitsize
% GET_MODE_ALIGNMENT (mode1
)) == 0
10114 && MEM_ALIGN (op0
) >= GET_MODE_ALIGNMENT (mode1
))
10116 op0
= adjust_address (op0
, mode1
, bitpos
/ BITS_PER_UNIT
);
10120 op0
= offset_address (op0
, offset_rtx
,
10121 highest_pow2_factor (offset
));
10124 /* If OFFSET is making OP0 more aligned than BIGGEST_ALIGNMENT,
10125 record its alignment as BIGGEST_ALIGNMENT. */
10126 if (MEM_P (op0
) && bitpos
== 0 && offset
!= 0
10127 && is_aligning_offset (offset
, tem
))
10128 set_mem_align (op0
, BIGGEST_ALIGNMENT
);
10130 /* Don't forget about volatility even if this is a bitfield. */
10131 if (MEM_P (op0
) && volatilep
&& ! MEM_VOLATILE_P (op0
))
10133 if (op0
== orig_op0
)
10134 op0
= copy_rtx (op0
);
10136 MEM_VOLATILE_P (op0
) = 1;
10139 /* In cases where an aligned union has an unaligned object
10140 as a field, we might be extracting a BLKmode value from
10141 an integer-mode (e.g., SImode) object. Handle this case
10142 by doing the extract into an object as wide as the field
10143 (which we know to be the width of a basic mode), then
10144 storing into memory, and changing the mode to BLKmode. */
10145 if (mode1
== VOIDmode
10146 || REG_P (op0
) || GET_CODE (op0
) == SUBREG
10147 || (mode1
!= BLKmode
&& ! direct_load
[(int) mode1
]
10148 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_INT
10149 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_FLOAT
10150 && modifier
!= EXPAND_CONST_ADDRESS
10151 && modifier
!= EXPAND_INITIALIZER
10152 && modifier
!= EXPAND_MEMORY
)
10153 /* If the bitfield is volatile and the bitsize
10154 is narrower than the access size of the bitfield,
10155 we need to extract bitfields from the access. */
10156 || (volatilep
&& TREE_CODE (exp
) == COMPONENT_REF
10157 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (exp
, 1))
10158 && mode1
!= BLKmode
10159 && bitsize
< GET_MODE_SIZE (mode1
) * BITS_PER_UNIT
)
10160 /* If the field isn't aligned enough to fetch as a memref,
10161 fetch it as a bit field. */
10162 || (mode1
!= BLKmode
10163 && (((TYPE_ALIGN (TREE_TYPE (tem
)) < GET_MODE_ALIGNMENT (mode
)
10164 || (bitpos
% GET_MODE_ALIGNMENT (mode
) != 0)
10166 && (MEM_ALIGN (op0
) < GET_MODE_ALIGNMENT (mode1
)
10167 || (bitpos
% GET_MODE_ALIGNMENT (mode1
) != 0))))
10168 && modifier
!= EXPAND_MEMORY
10169 && ((modifier
== EXPAND_CONST_ADDRESS
10170 || modifier
== EXPAND_INITIALIZER
)
10172 : SLOW_UNALIGNED_ACCESS (mode1
, MEM_ALIGN (op0
))))
10173 || (bitpos
% BITS_PER_UNIT
!= 0)))
10174 /* If the type and the field are a constant size and the
10175 size of the type isn't the same size as the bitfield,
10176 we must use bitfield operations. */
10178 && TYPE_SIZE (TREE_TYPE (exp
))
10179 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp
))) == INTEGER_CST
10180 && 0 != compare_tree_int (TYPE_SIZE (TREE_TYPE (exp
)),
10183 enum machine_mode ext_mode
= mode
;
10185 if (ext_mode
== BLKmode
10186 && ! (target
!= 0 && MEM_P (op0
)
10188 && bitpos
% BITS_PER_UNIT
== 0))
10189 ext_mode
= mode_for_size (bitsize
, MODE_INT
, 1);
10191 if (ext_mode
== BLKmode
)
10194 target
= assign_temp (type
, 1, 1);
10196 /* ??? Unlike the similar test a few lines below, this one is
10197 very likely obsolete. */
10201 /* In this case, BITPOS must start at a byte boundary and
10202 TARGET, if specified, must be a MEM. */
10203 gcc_assert (MEM_P (op0
)
10204 && (!target
|| MEM_P (target
))
10205 && !(bitpos
% BITS_PER_UNIT
));
10207 emit_block_move (target
,
10208 adjust_address (op0
, VOIDmode
,
10209 bitpos
/ BITS_PER_UNIT
),
10210 GEN_INT ((bitsize
+ BITS_PER_UNIT
- 1)
10212 (modifier
== EXPAND_STACK_PARM
10213 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
10218 /* If we have nothing to extract, the result will be 0 for targets
10219 with SHIFT_COUNT_TRUNCATED == 0 and garbage otherwise. Always
10220 return 0 for the sake of consistency, as reading a zero-sized
10221 bitfield is valid in Ada and the value is fully specified. */
10225 op0
= validize_mem (op0
);
10227 if (MEM_P (op0
) && REG_P (XEXP (op0
, 0)))
10228 mark_reg_pointer (XEXP (op0
, 0), MEM_ALIGN (op0
));
10230 op0
= extract_bit_field (op0
, bitsize
, bitpos
, unsignedp
,
10231 (modifier
== EXPAND_STACK_PARM
10232 ? NULL_RTX
: target
),
10233 ext_mode
, ext_mode
);
10235 /* If the result is a record type and BITSIZE is narrower than
10236 the mode of OP0, an integral mode, and this is a big endian
10237 machine, we must put the field into the high-order bits. */
10238 if (TREE_CODE (type
) == RECORD_TYPE
&& BYTES_BIG_ENDIAN
10239 && GET_MODE_CLASS (GET_MODE (op0
)) == MODE_INT
10240 && bitsize
< (HOST_WIDE_INT
) GET_MODE_BITSIZE (GET_MODE (op0
)))
10241 op0
= expand_shift (LSHIFT_EXPR
, GET_MODE (op0
), op0
,
10242 GET_MODE_BITSIZE (GET_MODE (op0
))
10243 - bitsize
, op0
, 1);
10245 /* If the result type is BLKmode, store the data into a temporary
10246 of the appropriate type, but with the mode corresponding to the
10247 mode for the data we have (op0's mode). */
10248 if (mode
== BLKmode
)
10251 = assign_stack_temp_for_type (ext_mode
,
10252 GET_MODE_BITSIZE (ext_mode
),
10254 emit_move_insn (new_rtx
, op0
);
10255 op0
= copy_rtx (new_rtx
);
10256 PUT_MODE (op0
, BLKmode
);
10262 /* If the result is BLKmode, use that to access the object
10264 if (mode
== BLKmode
)
10267 /* Get a reference to just this component. */
10268 if (modifier
== EXPAND_CONST_ADDRESS
10269 || modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
)
10270 op0
= adjust_address_nv (op0
, mode1
, bitpos
/ BITS_PER_UNIT
);
10272 op0
= adjust_address (op0
, mode1
, bitpos
/ BITS_PER_UNIT
);
10274 if (op0
== orig_op0
)
10275 op0
= copy_rtx (op0
);
10277 /* If op0 is a temporary because of forcing to memory, pass only the
10278 type to set_mem_attributes so that the original expression is never
10279 marked as ADDRESSABLE through MEM_EXPR of the temporary. */
10280 if (mem_attrs_from_type
)
10281 set_mem_attributes (op0
, type
, 0);
10283 set_mem_attributes (op0
, exp
, 0);
10285 if (REG_P (XEXP (op0
, 0)))
10286 mark_reg_pointer (XEXP (op0
, 0), MEM_ALIGN (op0
));
10288 MEM_VOLATILE_P (op0
) |= volatilep
;
10289 if (mode
== mode1
|| mode1
== BLKmode
|| mode1
== tmode
10290 || modifier
== EXPAND_CONST_ADDRESS
10291 || modifier
== EXPAND_INITIALIZER
)
10295 target
= gen_reg_rtx (tmode
!= VOIDmode
? tmode
: mode
);
10297 convert_move (target
, op0
, unsignedp
);
10302 return expand_expr (OBJ_TYPE_REF_EXPR (exp
), target
, tmode
, modifier
);
10305 /* All valid uses of __builtin_va_arg_pack () are removed during
10307 if (CALL_EXPR_VA_ARG_PACK (exp
))
10308 error ("%Kinvalid use of %<__builtin_va_arg_pack ()%>", exp
);
10310 tree fndecl
= get_callee_fndecl (exp
), attr
;
10313 && (attr
= lookup_attribute ("error",
10314 DECL_ATTRIBUTES (fndecl
))) != NULL
)
10315 error ("%Kcall to %qs declared with attribute error: %s",
10316 exp
, identifier_to_locale (lang_hooks
.decl_printable_name (fndecl
, 1)),
10317 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
))));
10319 && (attr
= lookup_attribute ("warning",
10320 DECL_ATTRIBUTES (fndecl
))) != NULL
)
10321 warning_at (tree_nonartificial_location (exp
),
10322 0, "%Kcall to %qs declared with attribute warning: %s",
10323 exp
, identifier_to_locale (lang_hooks
.decl_printable_name (fndecl
, 1)),
10324 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
))));
10326 /* Check for a built-in function. */
10327 if (fndecl
&& DECL_BUILT_IN (fndecl
))
10329 gcc_assert (DECL_BUILT_IN_CLASS (fndecl
) != BUILT_IN_FRONTEND
);
10330 return expand_builtin (exp
, target
, subtarget
, tmode
, ignore
);
10333 return expand_call (exp
, target
, ignore
);
10335 case VIEW_CONVERT_EXPR
:
10338 /* If we are converting to BLKmode, try to avoid an intermediate
10339 temporary by fetching an inner memory reference. */
10340 if (mode
== BLKmode
10341 && TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
10342 && TYPE_MODE (TREE_TYPE (treeop0
)) != BLKmode
10343 && handled_component_p (treeop0
))
10345 enum machine_mode mode1
;
10346 HOST_WIDE_INT bitsize
, bitpos
;
10351 = get_inner_reference (treeop0
, &bitsize
, &bitpos
,
10352 &offset
, &mode1
, &unsignedp
, &volatilep
,
10356 /* ??? We should work harder and deal with non-zero offsets. */
10358 && (bitpos
% BITS_PER_UNIT
) == 0
10360 && compare_tree_int (TYPE_SIZE (type
), bitsize
) == 0)
10362 /* See the normal_inner_ref case for the rationale. */
10364 = expand_expr_real (tem
,
10365 (TREE_CODE (TREE_TYPE (tem
)) == UNION_TYPE
10366 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem
)))
10368 && modifier
!= EXPAND_STACK_PARM
10369 ? target
: NULL_RTX
),
10371 modifier
== EXPAND_SUM
? EXPAND_NORMAL
: modifier
,
10374 if (MEM_P (orig_op0
))
10378 /* Get a reference to just this component. */
10379 if (modifier
== EXPAND_CONST_ADDRESS
10380 || modifier
== EXPAND_SUM
10381 || modifier
== EXPAND_INITIALIZER
)
10382 op0
= adjust_address_nv (op0
, mode
, bitpos
/ BITS_PER_UNIT
);
10384 op0
= adjust_address (op0
, mode
, bitpos
/ BITS_PER_UNIT
);
10386 if (op0
== orig_op0
)
10387 op0
= copy_rtx (op0
);
10389 set_mem_attributes (op0
, treeop0
, 0);
10390 if (REG_P (XEXP (op0
, 0)))
10391 mark_reg_pointer (XEXP (op0
, 0), MEM_ALIGN (op0
));
10393 MEM_VOLATILE_P (op0
) |= volatilep
;
10399 op0
= expand_expr_real (treeop0
, NULL_RTX
, VOIDmode
, modifier
,
10400 NULL
, inner_reference_p
);
10402 /* If the input and output modes are both the same, we are done. */
10403 if (mode
== GET_MODE (op0
))
10405 /* If neither mode is BLKmode, and both modes are the same size
10406 then we can use gen_lowpart. */
10407 else if (mode
!= BLKmode
&& GET_MODE (op0
) != BLKmode
10408 && (GET_MODE_PRECISION (mode
)
10409 == GET_MODE_PRECISION (GET_MODE (op0
)))
10410 && !COMPLEX_MODE_P (GET_MODE (op0
)))
10412 if (GET_CODE (op0
) == SUBREG
)
10413 op0
= force_reg (GET_MODE (op0
), op0
);
10414 temp
= gen_lowpart_common (mode
, op0
);
10419 if (!REG_P (op0
) && !MEM_P (op0
))
10420 op0
= force_reg (GET_MODE (op0
), op0
);
10421 op0
= gen_lowpart (mode
, op0
);
10424 /* If both types are integral, convert from one mode to the other. */
10425 else if (INTEGRAL_TYPE_P (type
) && INTEGRAL_TYPE_P (TREE_TYPE (treeop0
)))
10426 op0
= convert_modes (mode
, GET_MODE (op0
), op0
,
10427 TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
10428 /* If the output type is a bit-field type, do an extraction. */
10429 else if (reduce_bit_field
)
10430 return extract_bit_field (op0
, TYPE_PRECISION (type
), 0,
10431 TYPE_UNSIGNED (type
), NULL_RTX
,
10433 /* As a last resort, spill op0 to memory, and reload it in a
10435 else if (!MEM_P (op0
))
10437 /* If the operand is not a MEM, force it into memory. Since we
10438 are going to be changing the mode of the MEM, don't call
10439 force_const_mem for constants because we don't allow pool
10440 constants to change mode. */
10441 tree inner_type
= TREE_TYPE (treeop0
);
10443 gcc_assert (!TREE_ADDRESSABLE (exp
));
10445 if (target
== 0 || GET_MODE (target
) != TYPE_MODE (inner_type
))
10447 = assign_stack_temp_for_type
10448 (TYPE_MODE (inner_type
),
10449 GET_MODE_SIZE (TYPE_MODE (inner_type
)), inner_type
);
10451 emit_move_insn (target
, op0
);
10455 /* If OP0 is (now) a MEM, we need to deal with alignment issues. If the
10456 output type is such that the operand is known to be aligned, indicate
10457 that it is. Otherwise, we need only be concerned about alignment for
10458 non-BLKmode results. */
10461 enum insn_code icode
;
10463 if (TYPE_ALIGN_OK (type
))
10465 /* ??? Copying the MEM without substantially changing it might
10466 run afoul of the code handling volatile memory references in
10467 store_expr, which assumes that TARGET is returned unmodified
10468 if it has been used. */
10469 op0
= copy_rtx (op0
);
10470 set_mem_align (op0
, MAX (MEM_ALIGN (op0
), TYPE_ALIGN (type
)));
10472 else if (modifier
!= EXPAND_WRITE
10473 && modifier
!= EXPAND_MEMORY
10474 && !inner_reference_p
10476 && MEM_ALIGN (op0
) < GET_MODE_ALIGNMENT (mode
))
10478 /* If the target does have special handling for unaligned
10479 loads of mode then use them. */
10480 if ((icode
= optab_handler (movmisalign_optab
, mode
))
10481 != CODE_FOR_nothing
)
10485 op0
= adjust_address (op0
, mode
, 0);
10486 /* We've already validated the memory, and we're creating a
10487 new pseudo destination. The predicates really can't
10489 reg
= gen_reg_rtx (mode
);
10491 /* Nor can the insn generator. */
10492 insn
= GEN_FCN (icode
) (reg
, op0
);
10496 else if (STRICT_ALIGNMENT
)
10498 tree inner_type
= TREE_TYPE (treeop0
);
10499 HOST_WIDE_INT temp_size
10500 = MAX (int_size_in_bytes (inner_type
),
10501 (HOST_WIDE_INT
) GET_MODE_SIZE (mode
));
10503 = assign_stack_temp_for_type (mode
, temp_size
, type
);
10504 rtx new_with_op0_mode
10505 = adjust_address (new_rtx
, GET_MODE (op0
), 0);
10507 gcc_assert (!TREE_ADDRESSABLE (exp
));
10509 if (GET_MODE (op0
) == BLKmode
)
10510 emit_block_move (new_with_op0_mode
, op0
,
10511 GEN_INT (GET_MODE_SIZE (mode
)),
10512 (modifier
== EXPAND_STACK_PARM
10513 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
10515 emit_move_insn (new_with_op0_mode
, op0
);
10521 op0
= adjust_address (op0
, mode
, 0);
10528 tree lhs
= treeop0
;
10529 tree rhs
= treeop1
;
10530 gcc_assert (ignore
);
10532 /* Check for |= or &= of a bitfield of size one into another bitfield
10533 of size 1. In this case, (unless we need the result of the
10534 assignment) we can do this more efficiently with a
10535 test followed by an assignment, if necessary.
10537 ??? At this point, we can't get a BIT_FIELD_REF here. But if
10538 things change so we do, this code should be enhanced to
10540 if (TREE_CODE (lhs
) == COMPONENT_REF
10541 && (TREE_CODE (rhs
) == BIT_IOR_EXPR
10542 || TREE_CODE (rhs
) == BIT_AND_EXPR
)
10543 && TREE_OPERAND (rhs
, 0) == lhs
10544 && TREE_CODE (TREE_OPERAND (rhs
, 1)) == COMPONENT_REF
10545 && integer_onep (DECL_SIZE (TREE_OPERAND (lhs
, 1)))
10546 && integer_onep (DECL_SIZE (TREE_OPERAND (TREE_OPERAND (rhs
, 1), 1))))
10548 rtx label
= gen_label_rtx ();
10549 int value
= TREE_CODE (rhs
) == BIT_IOR_EXPR
;
10550 do_jump (TREE_OPERAND (rhs
, 1),
10552 value
? 0 : label
, -1);
10553 expand_assignment (lhs
, build_int_cst (TREE_TYPE (rhs
), value
),
10555 do_pending_stack_adjust ();
10556 emit_label (label
);
10560 expand_assignment (lhs
, rhs
, false);
10565 return expand_expr_addr_expr (exp
, target
, tmode
, modifier
);
10567 case REALPART_EXPR
:
10568 op0
= expand_normal (treeop0
);
10569 return read_complex_part (op0
, false);
10571 case IMAGPART_EXPR
:
10572 op0
= expand_normal (treeop0
);
10573 return read_complex_part (op0
, true);
10580 /* Expanded in cfgexpand.c. */
10581 gcc_unreachable ();
10583 case TRY_CATCH_EXPR
:
10585 case EH_FILTER_EXPR
:
10586 case TRY_FINALLY_EXPR
:
10587 /* Lowered by tree-eh.c. */
10588 gcc_unreachable ();
10590 case WITH_CLEANUP_EXPR
:
10591 case CLEANUP_POINT_EXPR
:
10593 case CASE_LABEL_EXPR
:
10598 case COMPOUND_EXPR
:
10599 case PREINCREMENT_EXPR
:
10600 case PREDECREMENT_EXPR
:
10601 case POSTINCREMENT_EXPR
:
10602 case POSTDECREMENT_EXPR
:
10605 case COMPOUND_LITERAL_EXPR
:
10606 /* Lowered by gimplify.c. */
10607 gcc_unreachable ();
10610 /* Function descriptors are not valid except for as
10611 initialization constants, and should not be expanded. */
10612 gcc_unreachable ();
10614 case WITH_SIZE_EXPR
:
10615 /* WITH_SIZE_EXPR expands to its first argument. The caller should
10616 have pulled out the size to use in whatever context it needed. */
10617 return expand_expr_real (treeop0
, original_target
, tmode
,
10618 modifier
, alt_rtl
, inner_reference_p
);
10621 return expand_expr_real_2 (&ops
, target
, tmode
, modifier
);
10625 /* Subroutine of above: reduce EXP to the precision of TYPE (in the
10626 signedness of TYPE), possibly returning the result in TARGET. */
10628 reduce_to_bit_field_precision (rtx exp
, rtx target
, tree type
)
10630 HOST_WIDE_INT prec
= TYPE_PRECISION (type
);
10631 if (target
&& GET_MODE (target
) != GET_MODE (exp
))
10633 /* For constant values, reduce using build_int_cst_type. */
10634 if (CONST_INT_P (exp
))
10636 HOST_WIDE_INT value
= INTVAL (exp
);
10637 tree t
= build_int_cst_type (type
, value
);
10638 return expand_expr (t
, target
, VOIDmode
, EXPAND_NORMAL
);
10640 else if (TYPE_UNSIGNED (type
))
10642 enum machine_mode mode
= GET_MODE (exp
);
10643 rtx mask
= immed_wide_int_const
10644 (wi::mask (prec
, false, GET_MODE_PRECISION (mode
)), mode
);
10645 return expand_and (mode
, exp
, mask
, target
);
10649 int count
= GET_MODE_PRECISION (GET_MODE (exp
)) - prec
;
10650 exp
= expand_shift (LSHIFT_EXPR
, GET_MODE (exp
),
10651 exp
, count
, target
, 0);
10652 return expand_shift (RSHIFT_EXPR
, GET_MODE (exp
),
10653 exp
, count
, target
, 0);
10657 /* Subroutine of above: returns 1 if OFFSET corresponds to an offset that
10658 when applied to the address of EXP produces an address known to be
10659 aligned more than BIGGEST_ALIGNMENT. */
10662 is_aligning_offset (const_tree offset
, const_tree exp
)
10664 /* Strip off any conversions. */
10665 while (CONVERT_EXPR_P (offset
))
10666 offset
= TREE_OPERAND (offset
, 0);
10668 /* We must now have a BIT_AND_EXPR with a constant that is one less than
10669 power of 2 and which is larger than BIGGEST_ALIGNMENT. */
10670 if (TREE_CODE (offset
) != BIT_AND_EXPR
10671 || !tree_fits_uhwi_p (TREE_OPERAND (offset
, 1))
10672 || compare_tree_int (TREE_OPERAND (offset
, 1),
10673 BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) <= 0
10674 || !exact_log2 (tree_to_uhwi (TREE_OPERAND (offset
, 1)) + 1) < 0)
10677 /* Look at the first operand of BIT_AND_EXPR and strip any conversion.
10678 It must be NEGATE_EXPR. Then strip any more conversions. */
10679 offset
= TREE_OPERAND (offset
, 0);
10680 while (CONVERT_EXPR_P (offset
))
10681 offset
= TREE_OPERAND (offset
, 0);
10683 if (TREE_CODE (offset
) != NEGATE_EXPR
)
10686 offset
= TREE_OPERAND (offset
, 0);
10687 while (CONVERT_EXPR_P (offset
))
10688 offset
= TREE_OPERAND (offset
, 0);
10690 /* This must now be the address of EXP. */
10691 return TREE_CODE (offset
) == ADDR_EXPR
&& TREE_OPERAND (offset
, 0) == exp
;
10694 /* Return the tree node if an ARG corresponds to a string constant or zero
10695 if it doesn't. If we return nonzero, set *PTR_OFFSET to the offset
10696 in bytes within the string that ARG is accessing. The type of the
10697 offset will be `sizetype'. */
10700 string_constant (tree arg
, tree
*ptr_offset
)
10702 tree array
, offset
, lower_bound
;
10705 if (TREE_CODE (arg
) == ADDR_EXPR
)
10707 if (TREE_CODE (TREE_OPERAND (arg
, 0)) == STRING_CST
)
10709 *ptr_offset
= size_zero_node
;
10710 return TREE_OPERAND (arg
, 0);
10712 else if (TREE_CODE (TREE_OPERAND (arg
, 0)) == VAR_DECL
)
10714 array
= TREE_OPERAND (arg
, 0);
10715 offset
= size_zero_node
;
10717 else if (TREE_CODE (TREE_OPERAND (arg
, 0)) == ARRAY_REF
)
10719 array
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
10720 offset
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 1);
10721 if (TREE_CODE (array
) != STRING_CST
10722 && TREE_CODE (array
) != VAR_DECL
)
10725 /* Check if the array has a nonzero lower bound. */
10726 lower_bound
= array_ref_low_bound (TREE_OPERAND (arg
, 0));
10727 if (!integer_zerop (lower_bound
))
10729 /* If the offset and base aren't both constants, return 0. */
10730 if (TREE_CODE (lower_bound
) != INTEGER_CST
)
10732 if (TREE_CODE (offset
) != INTEGER_CST
)
10734 /* Adjust offset by the lower bound. */
10735 offset
= size_diffop (fold_convert (sizetype
, offset
),
10736 fold_convert (sizetype
, lower_bound
));
10739 else if (TREE_CODE (TREE_OPERAND (arg
, 0)) == MEM_REF
)
10741 array
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
10742 offset
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 1);
10743 if (TREE_CODE (array
) != ADDR_EXPR
)
10745 array
= TREE_OPERAND (array
, 0);
10746 if (TREE_CODE (array
) != STRING_CST
10747 && TREE_CODE (array
) != VAR_DECL
)
10753 else if (TREE_CODE (arg
) == PLUS_EXPR
|| TREE_CODE (arg
) == POINTER_PLUS_EXPR
)
10755 tree arg0
= TREE_OPERAND (arg
, 0);
10756 tree arg1
= TREE_OPERAND (arg
, 1);
10761 if (TREE_CODE (arg0
) == ADDR_EXPR
10762 && (TREE_CODE (TREE_OPERAND (arg0
, 0)) == STRING_CST
10763 || TREE_CODE (TREE_OPERAND (arg0
, 0)) == VAR_DECL
))
10765 array
= TREE_OPERAND (arg0
, 0);
10768 else if (TREE_CODE (arg1
) == ADDR_EXPR
10769 && (TREE_CODE (TREE_OPERAND (arg1
, 0)) == STRING_CST
10770 || TREE_CODE (TREE_OPERAND (arg1
, 0)) == VAR_DECL
))
10772 array
= TREE_OPERAND (arg1
, 0);
10781 if (TREE_CODE (array
) == STRING_CST
)
10783 *ptr_offset
= fold_convert (sizetype
, offset
);
10786 else if (TREE_CODE (array
) == VAR_DECL
10787 || TREE_CODE (array
) == CONST_DECL
)
10790 tree init
= ctor_for_folding (array
);
10792 /* Variables initialized to string literals can be handled too. */
10793 if (init
== error_mark_node
10795 || TREE_CODE (init
) != STRING_CST
)
10798 /* Avoid const char foo[4] = "abcde"; */
10799 if (DECL_SIZE_UNIT (array
) == NULL_TREE
10800 || TREE_CODE (DECL_SIZE_UNIT (array
)) != INTEGER_CST
10801 || (length
= TREE_STRING_LENGTH (init
)) <= 0
10802 || compare_tree_int (DECL_SIZE_UNIT (array
), length
) < 0)
10805 /* If variable is bigger than the string literal, OFFSET must be constant
10806 and inside of the bounds of the string literal. */
10807 offset
= fold_convert (sizetype
, offset
);
10808 if (compare_tree_int (DECL_SIZE_UNIT (array
), length
) > 0
10809 && (! tree_fits_uhwi_p (offset
)
10810 || compare_tree_int (offset
, length
) >= 0))
10813 *ptr_offset
= offset
;
10820 /* Generate code to calculate OPS, and exploded expression
10821 using a store-flag instruction and return an rtx for the result.
10822 OPS reflects a comparison.
10824 If TARGET is nonzero, store the result there if convenient.
10826 Return zero if there is no suitable set-flag instruction
10827 available on this machine.
10829 Once expand_expr has been called on the arguments of the comparison,
10830 we are committed to doing the store flag, since it is not safe to
10831 re-evaluate the expression. We emit the store-flag insn by calling
10832 emit_store_flag, but only expand the arguments if we have a reason
10833 to believe that emit_store_flag will be successful. If we think that
10834 it will, but it isn't, we have to simulate the store-flag with a
10835 set/jump/set sequence. */
10838 do_store_flag (sepops ops
, rtx target
, enum machine_mode mode
)
10840 enum rtx_code code
;
10841 tree arg0
, arg1
, type
;
10843 enum machine_mode operand_mode
;
10846 rtx subtarget
= target
;
10847 location_t loc
= ops
->location
;
10852 /* Don't crash if the comparison was erroneous. */
10853 if (arg0
== error_mark_node
|| arg1
== error_mark_node
)
10856 type
= TREE_TYPE (arg0
);
10857 operand_mode
= TYPE_MODE (type
);
10858 unsignedp
= TYPE_UNSIGNED (type
);
10860 /* We won't bother with BLKmode store-flag operations because it would mean
10861 passing a lot of information to emit_store_flag. */
10862 if (operand_mode
== BLKmode
)
10865 /* We won't bother with store-flag operations involving function pointers
10866 when function pointers must be canonicalized before comparisons. */
10867 #ifdef HAVE_canonicalize_funcptr_for_compare
10868 if (HAVE_canonicalize_funcptr_for_compare
10869 && ((TREE_CODE (TREE_TYPE (arg0
)) == POINTER_TYPE
10870 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg0
)))
10872 || (TREE_CODE (TREE_TYPE (arg1
)) == POINTER_TYPE
10873 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg1
)))
10874 == FUNCTION_TYPE
))))
10881 /* For vector typed comparisons emit code to generate the desired
10882 all-ones or all-zeros mask. Conveniently use the VEC_COND_EXPR
10883 expander for this. */
10884 if (TREE_CODE (ops
->type
) == VECTOR_TYPE
)
10886 tree ifexp
= build2 (ops
->code
, ops
->type
, arg0
, arg1
);
10887 tree if_true
= constant_boolean_node (true, ops
->type
);
10888 tree if_false
= constant_boolean_node (false, ops
->type
);
10889 return expand_vec_cond_expr (ops
->type
, ifexp
, if_true
, if_false
, target
);
10892 /* Get the rtx comparison code to use. We know that EXP is a comparison
10893 operation of some type. Some comparisons against 1 and -1 can be
10894 converted to comparisons with zero. Do so here so that the tests
10895 below will be aware that we have a comparison with zero. These
10896 tests will not catch constants in the first operand, but constants
10897 are rarely passed as the first operand. */
10908 if (integer_onep (arg1
))
10909 arg1
= integer_zero_node
, code
= unsignedp
? LEU
: LE
;
10911 code
= unsignedp
? LTU
: LT
;
10914 if (! unsignedp
&& integer_all_onesp (arg1
))
10915 arg1
= integer_zero_node
, code
= LT
;
10917 code
= unsignedp
? LEU
: LE
;
10920 if (! unsignedp
&& integer_all_onesp (arg1
))
10921 arg1
= integer_zero_node
, code
= GE
;
10923 code
= unsignedp
? GTU
: GT
;
10926 if (integer_onep (arg1
))
10927 arg1
= integer_zero_node
, code
= unsignedp
? GTU
: GT
;
10929 code
= unsignedp
? GEU
: GE
;
10932 case UNORDERED_EXPR
:
10958 gcc_unreachable ();
10961 /* Put a constant second. */
10962 if (TREE_CODE (arg0
) == REAL_CST
|| TREE_CODE (arg0
) == INTEGER_CST
10963 || TREE_CODE (arg0
) == FIXED_CST
)
10965 tem
= arg0
; arg0
= arg1
; arg1
= tem
;
10966 code
= swap_condition (code
);
10969 /* If this is an equality or inequality test of a single bit, we can
10970 do this by shifting the bit being tested to the low-order bit and
10971 masking the result with the constant 1. If the condition was EQ,
10972 we xor it with 1. This does not require an scc insn and is faster
10973 than an scc insn even if we have it.
10975 The code to make this transformation was moved into fold_single_bit_test,
10976 so we just call into the folder and expand its result. */
10978 if ((code
== NE
|| code
== EQ
)
10979 && integer_zerop (arg1
)
10980 && (TYPE_PRECISION (ops
->type
) != 1 || TYPE_UNSIGNED (ops
->type
)))
10982 gimple srcstmt
= get_def_for_expr (arg0
, BIT_AND_EXPR
);
10984 && integer_pow2p (gimple_assign_rhs2 (srcstmt
)))
10986 enum tree_code tcode
= code
== NE
? NE_EXPR
: EQ_EXPR
;
10987 tree type
= lang_hooks
.types
.type_for_mode (mode
, unsignedp
);
10988 tree temp
= fold_build2_loc (loc
, BIT_AND_EXPR
, TREE_TYPE (arg1
),
10989 gimple_assign_rhs1 (srcstmt
),
10990 gimple_assign_rhs2 (srcstmt
));
10991 temp
= fold_single_bit_test (loc
, tcode
, temp
, arg1
, type
);
10993 return expand_expr (temp
, target
, VOIDmode
, EXPAND_NORMAL
);
10997 if (! get_subtarget (target
)
10998 || GET_MODE (subtarget
) != operand_mode
)
11001 expand_operands (arg0
, arg1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
11004 target
= gen_reg_rtx (mode
);
11006 /* Try a cstore if possible. */
11007 return emit_store_flag_force (target
, code
, op0
, op1
,
11008 operand_mode
, unsignedp
,
11009 (TYPE_PRECISION (ops
->type
) == 1
11010 && !TYPE_UNSIGNED (ops
->type
)) ? -1 : 1);
11014 /* Stubs in case we haven't got a casesi insn. */
11015 #ifndef HAVE_casesi
11016 # define HAVE_casesi 0
11017 # define gen_casesi(a, b, c, d, e) (0)
11018 # define CODE_FOR_casesi CODE_FOR_nothing
11021 /* Attempt to generate a casesi instruction. Returns 1 if successful,
11022 0 otherwise (i.e. if there is no casesi instruction).
11024 DEFAULT_PROBABILITY is the probability of jumping to the default
11027 try_casesi (tree index_type
, tree index_expr
, tree minval
, tree range
,
11028 rtx table_label
, rtx default_label
, rtx fallback_label
,
11029 int default_probability
)
11031 struct expand_operand ops
[5];
11032 enum machine_mode index_mode
= SImode
;
11033 rtx op1
, op2
, index
;
11038 /* Convert the index to SImode. */
11039 if (GET_MODE_BITSIZE (TYPE_MODE (index_type
)) > GET_MODE_BITSIZE (index_mode
))
11041 enum machine_mode omode
= TYPE_MODE (index_type
);
11042 rtx rangertx
= expand_normal (range
);
11044 /* We must handle the endpoints in the original mode. */
11045 index_expr
= build2 (MINUS_EXPR
, index_type
,
11046 index_expr
, minval
);
11047 minval
= integer_zero_node
;
11048 index
= expand_normal (index_expr
);
11050 emit_cmp_and_jump_insns (rangertx
, index
, LTU
, NULL_RTX
,
11051 omode
, 1, default_label
,
11052 default_probability
);
11053 /* Now we can safely truncate. */
11054 index
= convert_to_mode (index_mode
, index
, 0);
11058 if (TYPE_MODE (index_type
) != index_mode
)
11060 index_type
= lang_hooks
.types
.type_for_mode (index_mode
, 0);
11061 index_expr
= fold_convert (index_type
, index_expr
);
11064 index
= expand_normal (index_expr
);
11067 do_pending_stack_adjust ();
11069 op1
= expand_normal (minval
);
11070 op2
= expand_normal (range
);
11072 create_input_operand (&ops
[0], index
, index_mode
);
11073 create_convert_operand_from_type (&ops
[1], op1
, TREE_TYPE (minval
));
11074 create_convert_operand_from_type (&ops
[2], op2
, TREE_TYPE (range
));
11075 create_fixed_operand (&ops
[3], table_label
);
11076 create_fixed_operand (&ops
[4], (default_label
11078 : fallback_label
));
11079 expand_jump_insn (CODE_FOR_casesi
, 5, ops
);
11083 /* Attempt to generate a tablejump instruction; same concept. */
11084 #ifndef HAVE_tablejump
11085 #define HAVE_tablejump 0
11086 #define gen_tablejump(x, y) (0)
11089 /* Subroutine of the next function.
11091 INDEX is the value being switched on, with the lowest value
11092 in the table already subtracted.
11093 MODE is its expected mode (needed if INDEX is constant).
11094 RANGE is the length of the jump table.
11095 TABLE_LABEL is a CODE_LABEL rtx for the table itself.
11097 DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
11098 index value is out of range.
11099 DEFAULT_PROBABILITY is the probability of jumping to
11100 the default label. */
11103 do_tablejump (rtx index
, enum machine_mode mode
, rtx range
, rtx table_label
,
11104 rtx default_label
, int default_probability
)
11108 if (INTVAL (range
) > cfun
->cfg
->max_jumptable_ents
)
11109 cfun
->cfg
->max_jumptable_ents
= INTVAL (range
);
11111 /* Do an unsigned comparison (in the proper mode) between the index
11112 expression and the value which represents the length of the range.
11113 Since we just finished subtracting the lower bound of the range
11114 from the index expression, this comparison allows us to simultaneously
11115 check that the original index expression value is both greater than
11116 or equal to the minimum value of the range and less than or equal to
11117 the maximum value of the range. */
11120 emit_cmp_and_jump_insns (index
, range
, GTU
, NULL_RTX
, mode
, 1,
11121 default_label
, default_probability
);
11124 /* If index is in range, it must fit in Pmode.
11125 Convert to Pmode so we can index with it. */
11127 index
= convert_to_mode (Pmode
, index
, 1);
11129 /* Don't let a MEM slip through, because then INDEX that comes
11130 out of PIC_CASE_VECTOR_ADDRESS won't be a valid address,
11131 and break_out_memory_refs will go to work on it and mess it up. */
11132 #ifdef PIC_CASE_VECTOR_ADDRESS
11133 if (flag_pic
&& !REG_P (index
))
11134 index
= copy_to_mode_reg (Pmode
, index
);
11137 /* ??? The only correct use of CASE_VECTOR_MODE is the one inside the
11138 GET_MODE_SIZE, because this indicates how large insns are. The other
11139 uses should all be Pmode, because they are addresses. This code
11140 could fail if addresses and insns are not the same size. */
11141 index
= simplify_gen_binary (MULT
, Pmode
, index
,
11142 gen_int_mode (GET_MODE_SIZE (CASE_VECTOR_MODE
),
11144 index
= simplify_gen_binary (PLUS
, Pmode
, index
,
11145 gen_rtx_LABEL_REF (Pmode
, table_label
));
11147 #ifdef PIC_CASE_VECTOR_ADDRESS
11149 index
= PIC_CASE_VECTOR_ADDRESS (index
);
11152 index
= memory_address (CASE_VECTOR_MODE
, index
);
11153 temp
= gen_reg_rtx (CASE_VECTOR_MODE
);
11154 vector
= gen_const_mem (CASE_VECTOR_MODE
, index
);
11155 convert_move (temp
, vector
, 0);
11157 emit_jump_insn (gen_tablejump (temp
, table_label
));
11159 /* If we are generating PIC code or if the table is PC-relative, the
11160 table and JUMP_INSN must be adjacent, so don't output a BARRIER. */
11161 if (! CASE_VECTOR_PC_RELATIVE
&& ! flag_pic
)
11166 try_tablejump (tree index_type
, tree index_expr
, tree minval
, tree range
,
11167 rtx table_label
, rtx default_label
, int default_probability
)
11171 if (! HAVE_tablejump
)
11174 index_expr
= fold_build2 (MINUS_EXPR
, index_type
,
11175 fold_convert (index_type
, index_expr
),
11176 fold_convert (index_type
, minval
));
11177 index
= expand_normal (index_expr
);
11178 do_pending_stack_adjust ();
11180 do_tablejump (index
, TYPE_MODE (index_type
),
11181 convert_modes (TYPE_MODE (index_type
),
11182 TYPE_MODE (TREE_TYPE (range
)),
11183 expand_normal (range
),
11184 TYPE_UNSIGNED (TREE_TYPE (range
))),
11185 table_label
, default_label
, default_probability
);
11189 /* Return a CONST_VECTOR rtx for a VECTOR_CST tree. */
11191 const_vector_from_tree (tree exp
)
11197 enum machine_mode inner
, mode
;
11199 mode
= TYPE_MODE (TREE_TYPE (exp
));
11201 if (initializer_zerop (exp
))
11202 return CONST0_RTX (mode
);
11204 units
= GET_MODE_NUNITS (mode
);
11205 inner
= GET_MODE_INNER (mode
);
11207 v
= rtvec_alloc (units
);
11209 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
11211 elt
= VECTOR_CST_ELT (exp
, i
);
11213 if (TREE_CODE (elt
) == REAL_CST
)
11214 RTVEC_ELT (v
, i
) = CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (elt
),
11216 else if (TREE_CODE (elt
) == FIXED_CST
)
11217 RTVEC_ELT (v
, i
) = CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (elt
),
11220 RTVEC_ELT (v
, i
) = immed_wide_int_const (elt
, inner
);
11223 return gen_rtx_CONST_VECTOR (mode
, v
);
11226 /* Build a decl for a personality function given a language prefix. */
11229 build_personality_function (const char *lang
)
11231 const char *unwind_and_version
;
11235 switch (targetm_common
.except_unwind_info (&global_options
))
11240 unwind_and_version
= "_sj0";
11244 unwind_and_version
= "_v0";
11247 unwind_and_version
= "_seh0";
11250 gcc_unreachable ();
11253 name
= ACONCAT (("__", lang
, "_personality", unwind_and_version
, NULL
));
11255 type
= build_function_type_list (integer_type_node
, integer_type_node
,
11256 long_long_unsigned_type_node
,
11257 ptr_type_node
, ptr_type_node
, NULL_TREE
);
11258 decl
= build_decl (UNKNOWN_LOCATION
, FUNCTION_DECL
,
11259 get_identifier (name
), type
);
11260 DECL_ARTIFICIAL (decl
) = 1;
11261 DECL_EXTERNAL (decl
) = 1;
11262 TREE_PUBLIC (decl
) = 1;
11264 /* Zap the nonsensical SYMBOL_REF_DECL for this. What we're left with
11265 are the flags assigned by targetm.encode_section_info. */
11266 SET_SYMBOL_REF_DECL (XEXP (DECL_RTL (decl
), 0), NULL
);
11271 /* Extracts the personality function of DECL and returns the corresponding
11275 get_personality_function (tree decl
)
11277 tree personality
= DECL_FUNCTION_PERSONALITY (decl
);
11278 enum eh_personality_kind pk
;
11280 pk
= function_needs_eh_personality (DECL_STRUCT_FUNCTION (decl
));
11281 if (pk
== eh_personality_none
)
11285 && pk
== eh_personality_any
)
11286 personality
= lang_hooks
.eh_personality ();
11288 if (pk
== eh_personality_lang
)
11289 gcc_assert (personality
!= NULL_TREE
);
11291 return XEXP (DECL_RTL (personality
), 0);
11294 #include "gt-expr.h"