gcc/
[official-gcc.git] / gcc / expr.c
blob80e6350d2d50d784358dff295cee280492583961
1 /* Convert tree expression to rtl instructions, for GNU compiler.
2 Copyright (C) 1988-2015 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
9 version.
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
14 for more details.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "machmode.h"
25 #include "rtl.h"
26 #include "hash-set.h"
27 #include "vec.h"
28 #include "double-int.h"
29 #include "input.h"
30 #include "alias.h"
31 #include "symtab.h"
32 #include "wide-int.h"
33 #include "inchash.h"
34 #include "tree.h"
35 #include "fold-const.h"
36 #include "stringpool.h"
37 #include "stor-layout.h"
38 #include "attribs.h"
39 #include "varasm.h"
40 #include "flags.h"
41 #include "regs.h"
42 #include "hard-reg-set.h"
43 #include "except.h"
44 #include "function.h"
45 #include "insn-config.h"
46 #include "insn-attr.h"
47 #include "hashtab.h"
48 #include "statistics.h"
49 #include "real.h"
50 #include "fixed-value.h"
51 #include "expmed.h"
52 #include "dojump.h"
53 #include "explow.h"
54 #include "calls.h"
55 #include "emit-rtl.h"
56 #include "stmt.h"
57 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
58 #include "expr.h"
59 #include "insn-codes.h"
60 #include "optabs.h"
61 #include "libfuncs.h"
62 #include "recog.h"
63 #include "reload.h"
64 #include "typeclass.h"
65 #include "toplev.h"
66 #include "langhooks.h"
67 #include "intl.h"
68 #include "tm_p.h"
69 #include "tree-iterator.h"
70 #include "predict.h"
71 #include "dominance.h"
72 #include "cfg.h"
73 #include "basic-block.h"
74 #include "tree-ssa-alias.h"
75 #include "internal-fn.h"
76 #include "gimple-expr.h"
77 #include "is-a.h"
78 #include "gimple.h"
79 #include "gimple-ssa.h"
80 #include "hash-map.h"
81 #include "plugin-api.h"
82 #include "ipa-ref.h"
83 #include "cgraph.h"
84 #include "tree-ssanames.h"
85 #include "target.h"
86 #include "common/common-target.h"
87 #include "timevar.h"
88 #include "df.h"
89 #include "diagnostic.h"
90 #include "tree-ssa-live.h"
91 #include "tree-outof-ssa.h"
92 #include "target-globals.h"
93 #include "params.h"
94 #include "tree-ssa-address.h"
95 #include "cfgexpand.h"
96 #include "builtins.h"
97 #include "tree-chkp.h"
98 #include "rtl-chkp.h"
99 #include "ccmp.h"
101 #ifndef STACK_PUSH_CODE
102 #ifdef STACK_GROWS_DOWNWARD
103 #define STACK_PUSH_CODE PRE_DEC
104 #else
105 #define STACK_PUSH_CODE PRE_INC
106 #endif
107 #endif
110 /* If this is nonzero, we do not bother generating VOLATILE
111 around volatile memory references, and we are willing to
112 output indirect addresses. If cse is to follow, we reject
113 indirect addresses so a useful potential cse is generated;
114 if it is used only once, instruction combination will produce
115 the same indirect address eventually. */
116 int cse_not_expected;
118 /* This structure is used by move_by_pieces to describe the move to
119 be performed. */
120 struct move_by_pieces_d
122 rtx to;
123 rtx to_addr;
124 int autinc_to;
125 int explicit_inc_to;
126 rtx from;
127 rtx from_addr;
128 int autinc_from;
129 int explicit_inc_from;
130 unsigned HOST_WIDE_INT len;
131 HOST_WIDE_INT offset;
132 int reverse;
135 /* This structure is used by store_by_pieces to describe the clear to
136 be performed. */
138 struct store_by_pieces_d
140 rtx to;
141 rtx to_addr;
142 int autinc_to;
143 int explicit_inc_to;
144 unsigned HOST_WIDE_INT len;
145 HOST_WIDE_INT offset;
146 rtx (*constfun) (void *, HOST_WIDE_INT, machine_mode);
147 void *constfundata;
148 int reverse;
151 static void move_by_pieces_1 (insn_gen_fn, machine_mode,
152 struct move_by_pieces_d *);
153 static bool block_move_libcall_safe_for_call_parm (void);
154 static bool emit_block_move_via_movmem (rtx, rtx, rtx, unsigned, unsigned, HOST_WIDE_INT,
155 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT,
156 unsigned HOST_WIDE_INT);
157 static tree emit_block_move_libcall_fn (int);
158 static void emit_block_move_via_loop (rtx, rtx, rtx, unsigned);
159 static rtx clear_by_pieces_1 (void *, HOST_WIDE_INT, machine_mode);
160 static void clear_by_pieces (rtx, unsigned HOST_WIDE_INT, unsigned int);
161 static void store_by_pieces_1 (struct store_by_pieces_d *, unsigned int);
162 static void store_by_pieces_2 (insn_gen_fn, machine_mode,
163 struct store_by_pieces_d *);
164 static tree clear_storage_libcall_fn (int);
165 static rtx_insn *compress_float_constant (rtx, rtx);
166 static rtx get_subtarget (rtx);
167 static void store_constructor_field (rtx, unsigned HOST_WIDE_INT,
168 HOST_WIDE_INT, machine_mode,
169 tree, int, alias_set_type);
170 static void store_constructor (tree, rtx, int, HOST_WIDE_INT);
171 static rtx store_field (rtx, HOST_WIDE_INT, HOST_WIDE_INT,
172 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT,
173 machine_mode, tree, alias_set_type, bool);
175 static unsigned HOST_WIDE_INT highest_pow2_factor_for_target (const_tree, const_tree);
177 static int is_aligning_offset (const_tree, const_tree);
178 static rtx reduce_to_bit_field_precision (rtx, rtx, tree);
179 static rtx do_store_flag (sepops, rtx, machine_mode);
180 #ifdef PUSH_ROUNDING
181 static void emit_single_push_insn (machine_mode, rtx, tree);
182 #endif
183 static void do_tablejump (rtx, machine_mode, rtx, rtx, rtx, int);
184 static rtx const_vector_from_tree (tree);
185 static tree tree_expr_size (const_tree);
186 static HOST_WIDE_INT int_expr_size (tree);
189 /* This is run to set up which modes can be used
190 directly in memory and to initialize the block move optab. It is run
191 at the beginning of compilation and when the target is reinitialized. */
193 void
194 init_expr_target (void)
196 rtx insn, pat;
197 machine_mode mode;
198 int num_clobbers;
199 rtx mem, mem1;
200 rtx reg;
202 /* Try indexing by frame ptr and try by stack ptr.
203 It is known that on the Convex the stack ptr isn't a valid index.
204 With luck, one or the other is valid on any machine. */
205 mem = gen_rtx_MEM (word_mode, stack_pointer_rtx);
206 mem1 = gen_rtx_MEM (word_mode, frame_pointer_rtx);
208 /* A scratch register we can modify in-place below to avoid
209 useless RTL allocations. */
210 reg = gen_rtx_REG (word_mode, FIRST_PSEUDO_REGISTER);
212 insn = rtx_alloc (INSN);
213 pat = gen_rtx_SET (NULL_RTX, NULL_RTX);
214 PATTERN (insn) = pat;
216 for (mode = VOIDmode; (int) mode < NUM_MACHINE_MODES;
217 mode = (machine_mode) ((int) mode + 1))
219 int regno;
221 direct_load[(int) mode] = direct_store[(int) mode] = 0;
222 PUT_MODE (mem, mode);
223 PUT_MODE (mem1, mode);
224 PUT_MODE (reg, mode);
226 /* See if there is some register that can be used in this mode and
227 directly loaded or stored from memory. */
229 if (mode != VOIDmode && mode != BLKmode)
230 for (regno = 0; regno < FIRST_PSEUDO_REGISTER
231 && (direct_load[(int) mode] == 0 || direct_store[(int) mode] == 0);
232 regno++)
234 if (! HARD_REGNO_MODE_OK (regno, mode))
235 continue;
237 SET_REGNO (reg, regno);
239 SET_SRC (pat) = mem;
240 SET_DEST (pat) = reg;
241 if (recog (pat, insn, &num_clobbers) >= 0)
242 direct_load[(int) mode] = 1;
244 SET_SRC (pat) = mem1;
245 SET_DEST (pat) = reg;
246 if (recog (pat, insn, &num_clobbers) >= 0)
247 direct_load[(int) mode] = 1;
249 SET_SRC (pat) = reg;
250 SET_DEST (pat) = mem;
251 if (recog (pat, insn, &num_clobbers) >= 0)
252 direct_store[(int) mode] = 1;
254 SET_SRC (pat) = reg;
255 SET_DEST (pat) = mem1;
256 if (recog (pat, insn, &num_clobbers) >= 0)
257 direct_store[(int) mode] = 1;
261 mem = gen_rtx_MEM (VOIDmode, gen_raw_REG (Pmode, FIRST_PSEUDO_REGISTER));
263 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
264 mode = GET_MODE_WIDER_MODE (mode))
266 machine_mode srcmode;
267 for (srcmode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); srcmode != mode;
268 srcmode = GET_MODE_WIDER_MODE (srcmode))
270 enum insn_code ic;
272 ic = can_extend_p (mode, srcmode, 0);
273 if (ic == CODE_FOR_nothing)
274 continue;
276 PUT_MODE (mem, srcmode);
278 if (insn_operand_matches (ic, 1, mem))
279 float_extend_from_mem[mode][srcmode] = true;
284 /* This is run at the start of compiling a function. */
286 void
287 init_expr (void)
289 memset (&crtl->expr, 0, sizeof (crtl->expr));
292 /* Copy data from FROM to TO, where the machine modes are not the same.
293 Both modes may be integer, or both may be floating, or both may be
294 fixed-point.
295 UNSIGNEDP should be nonzero if FROM is an unsigned type.
296 This causes zero-extension instead of sign-extension. */
298 void
299 convert_move (rtx to, rtx from, int unsignedp)
301 machine_mode to_mode = GET_MODE (to);
302 machine_mode from_mode = GET_MODE (from);
303 int to_real = SCALAR_FLOAT_MODE_P (to_mode);
304 int from_real = SCALAR_FLOAT_MODE_P (from_mode);
305 enum insn_code code;
306 rtx libcall;
308 /* rtx code for making an equivalent value. */
309 enum rtx_code equiv_code = (unsignedp < 0 ? UNKNOWN
310 : (unsignedp ? ZERO_EXTEND : SIGN_EXTEND));
313 gcc_assert (to_real == from_real);
314 gcc_assert (to_mode != BLKmode);
315 gcc_assert (from_mode != BLKmode);
317 /* If the source and destination are already the same, then there's
318 nothing to do. */
319 if (to == from)
320 return;
322 /* If FROM is a SUBREG that indicates that we have already done at least
323 the required extension, strip it. We don't handle such SUBREGs as
324 TO here. */
326 if (GET_CODE (from) == SUBREG && SUBREG_PROMOTED_VAR_P (from)
327 && (GET_MODE_PRECISION (GET_MODE (SUBREG_REG (from)))
328 >= GET_MODE_PRECISION (to_mode))
329 && SUBREG_CHECK_PROMOTED_SIGN (from, unsignedp))
330 from = gen_lowpart (to_mode, from), from_mode = to_mode;
332 gcc_assert (GET_CODE (to) != SUBREG || !SUBREG_PROMOTED_VAR_P (to));
334 if (to_mode == from_mode
335 || (from_mode == VOIDmode && CONSTANT_P (from)))
337 emit_move_insn (to, from);
338 return;
341 if (VECTOR_MODE_P (to_mode) || VECTOR_MODE_P (from_mode))
343 gcc_assert (GET_MODE_BITSIZE (from_mode) == GET_MODE_BITSIZE (to_mode));
345 if (VECTOR_MODE_P (to_mode))
346 from = simplify_gen_subreg (to_mode, from, GET_MODE (from), 0);
347 else
348 to = simplify_gen_subreg (from_mode, to, GET_MODE (to), 0);
350 emit_move_insn (to, from);
351 return;
354 if (GET_CODE (to) == CONCAT && GET_CODE (from) == CONCAT)
356 convert_move (XEXP (to, 0), XEXP (from, 0), unsignedp);
357 convert_move (XEXP (to, 1), XEXP (from, 1), unsignedp);
358 return;
361 if (to_real)
363 rtx value;
364 rtx_insn *insns;
365 convert_optab tab;
367 gcc_assert ((GET_MODE_PRECISION (from_mode)
368 != GET_MODE_PRECISION (to_mode))
369 || (DECIMAL_FLOAT_MODE_P (from_mode)
370 != DECIMAL_FLOAT_MODE_P (to_mode)));
372 if (GET_MODE_PRECISION (from_mode) == GET_MODE_PRECISION (to_mode))
373 /* Conversion between decimal float and binary float, same size. */
374 tab = DECIMAL_FLOAT_MODE_P (from_mode) ? trunc_optab : sext_optab;
375 else if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode))
376 tab = sext_optab;
377 else
378 tab = trunc_optab;
380 /* Try converting directly if the insn is supported. */
382 code = convert_optab_handler (tab, to_mode, from_mode);
383 if (code != CODE_FOR_nothing)
385 emit_unop_insn (code, to, from,
386 tab == sext_optab ? FLOAT_EXTEND : FLOAT_TRUNCATE);
387 return;
390 /* Otherwise use a libcall. */
391 libcall = convert_optab_libfunc (tab, to_mode, from_mode);
393 /* Is this conversion implemented yet? */
394 gcc_assert (libcall);
396 start_sequence ();
397 value = emit_library_call_value (libcall, NULL_RTX, LCT_CONST, to_mode,
398 1, from, from_mode);
399 insns = get_insns ();
400 end_sequence ();
401 emit_libcall_block (insns, to, value,
402 tab == trunc_optab ? gen_rtx_FLOAT_TRUNCATE (to_mode,
403 from)
404 : gen_rtx_FLOAT_EXTEND (to_mode, from));
405 return;
408 /* Handle pointer conversion. */ /* SPEE 900220. */
409 /* If the target has a converter from FROM_MODE to TO_MODE, use it. */
411 convert_optab ctab;
413 if (GET_MODE_PRECISION (from_mode) > GET_MODE_PRECISION (to_mode))
414 ctab = trunc_optab;
415 else if (unsignedp)
416 ctab = zext_optab;
417 else
418 ctab = sext_optab;
420 if (convert_optab_handler (ctab, to_mode, from_mode)
421 != CODE_FOR_nothing)
423 emit_unop_insn (convert_optab_handler (ctab, to_mode, from_mode),
424 to, from, UNKNOWN);
425 return;
429 /* Targets are expected to provide conversion insns between PxImode and
430 xImode for all MODE_PARTIAL_INT modes they use, but no others. */
431 if (GET_MODE_CLASS (to_mode) == MODE_PARTIAL_INT)
433 machine_mode full_mode
434 = smallest_mode_for_size (GET_MODE_BITSIZE (to_mode), MODE_INT);
436 gcc_assert (convert_optab_handler (trunc_optab, to_mode, full_mode)
437 != CODE_FOR_nothing);
439 if (full_mode != from_mode)
440 from = convert_to_mode (full_mode, from, unsignedp);
441 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, full_mode),
442 to, from, UNKNOWN);
443 return;
445 if (GET_MODE_CLASS (from_mode) == MODE_PARTIAL_INT)
447 rtx new_from;
448 machine_mode full_mode
449 = smallest_mode_for_size (GET_MODE_BITSIZE (from_mode), MODE_INT);
450 convert_optab ctab = unsignedp ? zext_optab : sext_optab;
451 enum insn_code icode;
453 icode = convert_optab_handler (ctab, full_mode, from_mode);
454 gcc_assert (icode != CODE_FOR_nothing);
456 if (to_mode == full_mode)
458 emit_unop_insn (icode, to, from, UNKNOWN);
459 return;
462 new_from = gen_reg_rtx (full_mode);
463 emit_unop_insn (icode, new_from, from, UNKNOWN);
465 /* else proceed to integer conversions below. */
466 from_mode = full_mode;
467 from = new_from;
470 /* Make sure both are fixed-point modes or both are not. */
471 gcc_assert (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode) ==
472 ALL_SCALAR_FIXED_POINT_MODE_P (to_mode));
473 if (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode))
475 /* If we widen from_mode to to_mode and they are in the same class,
476 we won't saturate the result.
477 Otherwise, always saturate the result to play safe. */
478 if (GET_MODE_CLASS (from_mode) == GET_MODE_CLASS (to_mode)
479 && GET_MODE_SIZE (from_mode) < GET_MODE_SIZE (to_mode))
480 expand_fixed_convert (to, from, 0, 0);
481 else
482 expand_fixed_convert (to, from, 0, 1);
483 return;
486 /* Now both modes are integers. */
488 /* Handle expanding beyond a word. */
489 if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode)
490 && GET_MODE_PRECISION (to_mode) > BITS_PER_WORD)
492 rtx_insn *insns;
493 rtx lowpart;
494 rtx fill_value;
495 rtx lowfrom;
496 int i;
497 machine_mode lowpart_mode;
498 int nwords = CEIL (GET_MODE_SIZE (to_mode), UNITS_PER_WORD);
500 /* Try converting directly if the insn is supported. */
501 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
502 != CODE_FOR_nothing)
504 /* If FROM is a SUBREG, put it into a register. Do this
505 so that we always generate the same set of insns for
506 better cse'ing; if an intermediate assignment occurred,
507 we won't be doing the operation directly on the SUBREG. */
508 if (optimize > 0 && GET_CODE (from) == SUBREG)
509 from = force_reg (from_mode, from);
510 emit_unop_insn (code, to, from, equiv_code);
511 return;
513 /* Next, try converting via full word. */
514 else if (GET_MODE_PRECISION (from_mode) < BITS_PER_WORD
515 && ((code = can_extend_p (to_mode, word_mode, unsignedp))
516 != CODE_FOR_nothing))
518 rtx word_to = gen_reg_rtx (word_mode);
519 if (REG_P (to))
521 if (reg_overlap_mentioned_p (to, from))
522 from = force_reg (from_mode, from);
523 emit_clobber (to);
525 convert_move (word_to, from, unsignedp);
526 emit_unop_insn (code, to, word_to, equiv_code);
527 return;
530 /* No special multiword conversion insn; do it by hand. */
531 start_sequence ();
533 /* Since we will turn this into a no conflict block, we must ensure the
534 the source does not overlap the target so force it into an isolated
535 register when maybe so. Likewise for any MEM input, since the
536 conversion sequence might require several references to it and we
537 must ensure we're getting the same value every time. */
539 if (MEM_P (from) || reg_overlap_mentioned_p (to, from))
540 from = force_reg (from_mode, from);
542 /* Get a copy of FROM widened to a word, if necessary. */
543 if (GET_MODE_PRECISION (from_mode) < BITS_PER_WORD)
544 lowpart_mode = word_mode;
545 else
546 lowpart_mode = from_mode;
548 lowfrom = convert_to_mode (lowpart_mode, from, unsignedp);
550 lowpart = gen_lowpart (lowpart_mode, to);
551 emit_move_insn (lowpart, lowfrom);
553 /* Compute the value to put in each remaining word. */
554 if (unsignedp)
555 fill_value = const0_rtx;
556 else
557 fill_value = emit_store_flag_force (gen_reg_rtx (word_mode),
558 LT, lowfrom, const0_rtx,
559 lowpart_mode, 0, -1);
561 /* Fill the remaining words. */
562 for (i = GET_MODE_SIZE (lowpart_mode) / UNITS_PER_WORD; i < nwords; i++)
564 int index = (WORDS_BIG_ENDIAN ? nwords - i - 1 : i);
565 rtx subword = operand_subword (to, index, 1, to_mode);
567 gcc_assert (subword);
569 if (fill_value != subword)
570 emit_move_insn (subword, fill_value);
573 insns = get_insns ();
574 end_sequence ();
576 emit_insn (insns);
577 return;
580 /* Truncating multi-word to a word or less. */
581 if (GET_MODE_PRECISION (from_mode) > BITS_PER_WORD
582 && GET_MODE_PRECISION (to_mode) <= BITS_PER_WORD)
584 if (!((MEM_P (from)
585 && ! MEM_VOLATILE_P (from)
586 && direct_load[(int) to_mode]
587 && ! mode_dependent_address_p (XEXP (from, 0),
588 MEM_ADDR_SPACE (from)))
589 || REG_P (from)
590 || GET_CODE (from) == SUBREG))
591 from = force_reg (from_mode, from);
592 convert_move (to, gen_lowpart (word_mode, from), 0);
593 return;
596 /* Now follow all the conversions between integers
597 no more than a word long. */
599 /* For truncation, usually we can just refer to FROM in a narrower mode. */
600 if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode)
601 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode, from_mode))
603 if (!((MEM_P (from)
604 && ! MEM_VOLATILE_P (from)
605 && direct_load[(int) to_mode]
606 && ! mode_dependent_address_p (XEXP (from, 0),
607 MEM_ADDR_SPACE (from)))
608 || REG_P (from)
609 || GET_CODE (from) == SUBREG))
610 from = force_reg (from_mode, from);
611 if (REG_P (from) && REGNO (from) < FIRST_PSEUDO_REGISTER
612 && ! HARD_REGNO_MODE_OK (REGNO (from), to_mode))
613 from = copy_to_reg (from);
614 emit_move_insn (to, gen_lowpart (to_mode, from));
615 return;
618 /* Handle extension. */
619 if (GET_MODE_PRECISION (to_mode) > GET_MODE_PRECISION (from_mode))
621 /* Convert directly if that works. */
622 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
623 != CODE_FOR_nothing)
625 emit_unop_insn (code, to, from, equiv_code);
626 return;
628 else
630 machine_mode intermediate;
631 rtx tmp;
632 int shift_amount;
634 /* Search for a mode to convert via. */
635 for (intermediate = from_mode; intermediate != VOIDmode;
636 intermediate = GET_MODE_WIDER_MODE (intermediate))
637 if (((can_extend_p (to_mode, intermediate, unsignedp)
638 != CODE_FOR_nothing)
639 || (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (intermediate)
640 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode, intermediate)))
641 && (can_extend_p (intermediate, from_mode, unsignedp)
642 != CODE_FOR_nothing))
644 convert_move (to, convert_to_mode (intermediate, from,
645 unsignedp), unsignedp);
646 return;
649 /* No suitable intermediate mode.
650 Generate what we need with shifts. */
651 shift_amount = (GET_MODE_PRECISION (to_mode)
652 - GET_MODE_PRECISION (from_mode));
653 from = gen_lowpart (to_mode, force_reg (from_mode, from));
654 tmp = expand_shift (LSHIFT_EXPR, to_mode, from, shift_amount,
655 to, unsignedp);
656 tmp = expand_shift (RSHIFT_EXPR, to_mode, tmp, shift_amount,
657 to, unsignedp);
658 if (tmp != to)
659 emit_move_insn (to, tmp);
660 return;
664 /* Support special truncate insns for certain modes. */
665 if (convert_optab_handler (trunc_optab, to_mode,
666 from_mode) != CODE_FOR_nothing)
668 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, from_mode),
669 to, from, UNKNOWN);
670 return;
673 /* Handle truncation of volatile memrefs, and so on;
674 the things that couldn't be truncated directly,
675 and for which there was no special instruction.
677 ??? Code above formerly short-circuited this, for most integer
678 mode pairs, with a force_reg in from_mode followed by a recursive
679 call to this routine. Appears always to have been wrong. */
680 if (GET_MODE_PRECISION (to_mode) < GET_MODE_PRECISION (from_mode))
682 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from));
683 emit_move_insn (to, temp);
684 return;
687 /* Mode combination is not recognized. */
688 gcc_unreachable ();
691 /* Return an rtx for a value that would result
692 from converting X to mode MODE.
693 Both X and MODE may be floating, or both integer.
694 UNSIGNEDP is nonzero if X is an unsigned value.
695 This can be done by referring to a part of X in place
696 or by copying to a new temporary with conversion. */
699 convert_to_mode (machine_mode mode, rtx x, int unsignedp)
701 return convert_modes (mode, VOIDmode, x, unsignedp);
704 /* Return an rtx for a value that would result
705 from converting X from mode OLDMODE to mode MODE.
706 Both modes may be floating, or both integer.
707 UNSIGNEDP is nonzero if X is an unsigned value.
709 This can be done by referring to a part of X in place
710 or by copying to a new temporary with conversion.
712 You can give VOIDmode for OLDMODE, if you are sure X has a nonvoid mode. */
715 convert_modes (machine_mode mode, machine_mode oldmode, rtx x, int unsignedp)
717 rtx temp;
719 /* If FROM is a SUBREG that indicates that we have already done at least
720 the required extension, strip it. */
722 if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
723 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) >= GET_MODE_SIZE (mode)
724 && SUBREG_CHECK_PROMOTED_SIGN (x, unsignedp))
725 x = gen_lowpart (mode, SUBREG_REG (x));
727 if (GET_MODE (x) != VOIDmode)
728 oldmode = GET_MODE (x);
730 if (mode == oldmode)
731 return x;
733 if (CONST_SCALAR_INT_P (x) && GET_MODE_CLASS (mode) == MODE_INT)
735 /* If the caller did not tell us the old mode, then there is not
736 much to do with respect to canonicalization. We have to
737 assume that all the bits are significant. */
738 if (GET_MODE_CLASS (oldmode) != MODE_INT)
739 oldmode = MAX_MODE_INT;
740 wide_int w = wide_int::from (std::make_pair (x, oldmode),
741 GET_MODE_PRECISION (mode),
742 unsignedp ? UNSIGNED : SIGNED);
743 return immed_wide_int_const (w, mode);
746 /* We can do this with a gen_lowpart if both desired and current modes
747 are integer, and this is either a constant integer, a register, or a
748 non-volatile MEM. */
749 if (GET_MODE_CLASS (mode) == MODE_INT
750 && GET_MODE_CLASS (oldmode) == MODE_INT
751 && GET_MODE_PRECISION (mode) <= GET_MODE_PRECISION (oldmode)
752 && ((MEM_P (x) && !MEM_VOLATILE_P (x) && direct_load[(int) mode])
753 || (REG_P (x)
754 && (!HARD_REGISTER_P (x)
755 || HARD_REGNO_MODE_OK (REGNO (x), mode))
756 && TRULY_NOOP_TRUNCATION_MODES_P (mode, GET_MODE (x)))))
758 return gen_lowpart (mode, x);
760 /* Converting from integer constant into mode is always equivalent to an
761 subreg operation. */
762 if (VECTOR_MODE_P (mode) && GET_MODE (x) == VOIDmode)
764 gcc_assert (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (oldmode));
765 return simplify_gen_subreg (mode, x, oldmode, 0);
768 temp = gen_reg_rtx (mode);
769 convert_move (temp, x, unsignedp);
770 return temp;
773 /* Return the largest alignment we can use for doing a move (or store)
774 of MAX_PIECES. ALIGN is the largest alignment we could use. */
776 static unsigned int
777 alignment_for_piecewise_move (unsigned int max_pieces, unsigned int align)
779 machine_mode tmode;
781 tmode = mode_for_size (max_pieces * BITS_PER_UNIT, MODE_INT, 1);
782 if (align >= GET_MODE_ALIGNMENT (tmode))
783 align = GET_MODE_ALIGNMENT (tmode);
784 else
786 machine_mode tmode, xmode;
788 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
789 tmode != VOIDmode;
790 xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
791 if (GET_MODE_SIZE (tmode) > max_pieces
792 || SLOW_UNALIGNED_ACCESS (tmode, align))
793 break;
795 align = MAX (align, GET_MODE_ALIGNMENT (xmode));
798 return align;
801 /* Return the widest integer mode no wider than SIZE. If no such mode
802 can be found, return VOIDmode. */
804 static machine_mode
805 widest_int_mode_for_size (unsigned int size)
807 machine_mode tmode, mode = VOIDmode;
809 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
810 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
811 if (GET_MODE_SIZE (tmode) < size)
812 mode = tmode;
814 return mode;
817 /* Determine whether the LEN bytes can be moved by using several move
818 instructions. Return nonzero if a call to move_by_pieces should
819 succeed. */
822 can_move_by_pieces (unsigned HOST_WIDE_INT len,
823 unsigned int align)
825 return targetm.use_by_pieces_infrastructure_p (len, align, MOVE_BY_PIECES,
826 optimize_insn_for_speed_p ());
829 /* Generate several move instructions to copy LEN bytes from block FROM to
830 block TO. (These are MEM rtx's with BLKmode).
832 If PUSH_ROUNDING is defined and TO is NULL, emit_single_push_insn is
833 used to push FROM to the stack.
835 ALIGN is maximum stack alignment we can assume.
837 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
838 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
839 stpcpy. */
842 move_by_pieces (rtx to, rtx from, unsigned HOST_WIDE_INT len,
843 unsigned int align, int endp)
845 struct move_by_pieces_d data;
846 machine_mode to_addr_mode;
847 machine_mode from_addr_mode = get_address_mode (from);
848 rtx to_addr, from_addr = XEXP (from, 0);
849 unsigned int max_size = MOVE_MAX_PIECES + 1;
850 enum insn_code icode;
852 align = MIN (to ? MEM_ALIGN (to) : align, MEM_ALIGN (from));
854 data.offset = 0;
855 data.from_addr = from_addr;
856 if (to)
858 to_addr_mode = get_address_mode (to);
859 to_addr = XEXP (to, 0);
860 data.to = to;
861 data.autinc_to
862 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
863 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
864 data.reverse
865 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
867 else
869 to_addr_mode = VOIDmode;
870 to_addr = NULL_RTX;
871 data.to = NULL_RTX;
872 data.autinc_to = 1;
873 #ifdef STACK_GROWS_DOWNWARD
874 data.reverse = 1;
875 #else
876 data.reverse = 0;
877 #endif
879 data.to_addr = to_addr;
880 data.from = from;
881 data.autinc_from
882 = (GET_CODE (from_addr) == PRE_INC || GET_CODE (from_addr) == PRE_DEC
883 || GET_CODE (from_addr) == POST_INC
884 || GET_CODE (from_addr) == POST_DEC);
886 data.explicit_inc_from = 0;
887 data.explicit_inc_to = 0;
888 if (data.reverse) data.offset = len;
889 data.len = len;
891 /* If copying requires more than two move insns,
892 copy addresses to registers (to make displacements shorter)
893 and use post-increment if available. */
894 if (!(data.autinc_from && data.autinc_to)
895 && move_by_pieces_ninsns (len, align, max_size) > 2)
897 /* Find the mode of the largest move...
898 MODE might not be used depending on the definitions of the
899 USE_* macros below. */
900 machine_mode mode ATTRIBUTE_UNUSED
901 = widest_int_mode_for_size (max_size);
903 if (USE_LOAD_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_from)
905 data.from_addr = copy_to_mode_reg (from_addr_mode,
906 plus_constant (from_addr_mode,
907 from_addr, len));
908 data.autinc_from = 1;
909 data.explicit_inc_from = -1;
911 if (USE_LOAD_POST_INCREMENT (mode) && ! data.autinc_from)
913 data.from_addr = copy_to_mode_reg (from_addr_mode, from_addr);
914 data.autinc_from = 1;
915 data.explicit_inc_from = 1;
917 if (!data.autinc_from && CONSTANT_P (from_addr))
918 data.from_addr = copy_to_mode_reg (from_addr_mode, from_addr);
919 if (USE_STORE_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_to)
921 data.to_addr = copy_to_mode_reg (to_addr_mode,
922 plus_constant (to_addr_mode,
923 to_addr, len));
924 data.autinc_to = 1;
925 data.explicit_inc_to = -1;
927 if (USE_STORE_POST_INCREMENT (mode) && ! data.reverse && ! data.autinc_to)
929 data.to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
930 data.autinc_to = 1;
931 data.explicit_inc_to = 1;
933 if (!data.autinc_to && CONSTANT_P (to_addr))
934 data.to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
937 align = alignment_for_piecewise_move (MOVE_MAX_PIECES, align);
939 /* First move what we can in the largest integer mode, then go to
940 successively smaller modes. */
942 while (max_size > 1 && data.len > 0)
944 machine_mode mode = widest_int_mode_for_size (max_size);
946 if (mode == VOIDmode)
947 break;
949 icode = optab_handler (mov_optab, mode);
950 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
951 move_by_pieces_1 (GEN_FCN (icode), mode, &data);
953 max_size = GET_MODE_SIZE (mode);
956 /* The code above should have handled everything. */
957 gcc_assert (!data.len);
959 if (endp)
961 rtx to1;
963 gcc_assert (!data.reverse);
964 if (data.autinc_to)
966 if (endp == 2)
968 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
969 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
970 else
971 data.to_addr = copy_to_mode_reg (to_addr_mode,
972 plus_constant (to_addr_mode,
973 data.to_addr,
974 -1));
976 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
977 data.offset);
979 else
981 if (endp == 2)
982 --data.offset;
983 to1 = adjust_address (data.to, QImode, data.offset);
985 return to1;
987 else
988 return data.to;
991 /* Return number of insns required to move L bytes by pieces.
992 ALIGN (in bits) is maximum alignment we can assume. */
994 unsigned HOST_WIDE_INT
995 move_by_pieces_ninsns (unsigned HOST_WIDE_INT l, unsigned int align,
996 unsigned int max_size)
998 unsigned HOST_WIDE_INT n_insns = 0;
1000 align = alignment_for_piecewise_move (MOVE_MAX_PIECES, align);
1002 while (max_size > 1 && l > 0)
1004 machine_mode mode;
1005 enum insn_code icode;
1007 mode = widest_int_mode_for_size (max_size);
1009 if (mode == VOIDmode)
1010 break;
1012 icode = optab_handler (mov_optab, mode);
1013 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
1014 n_insns += l / GET_MODE_SIZE (mode), l %= GET_MODE_SIZE (mode);
1016 max_size = GET_MODE_SIZE (mode);
1019 gcc_assert (!l);
1020 return n_insns;
1023 /* Subroutine of move_by_pieces. Move as many bytes as appropriate
1024 with move instructions for mode MODE. GENFUN is the gen_... function
1025 to make a move insn for that mode. DATA has all the other info. */
1027 static void
1028 move_by_pieces_1 (insn_gen_fn genfun, machine_mode mode,
1029 struct move_by_pieces_d *data)
1031 unsigned int size = GET_MODE_SIZE (mode);
1032 rtx to1 = NULL_RTX, from1;
1034 while (data->len >= size)
1036 if (data->reverse)
1037 data->offset -= size;
1039 if (data->to)
1041 if (data->autinc_to)
1042 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
1043 data->offset);
1044 else
1045 to1 = adjust_address (data->to, mode, data->offset);
1048 if (data->autinc_from)
1049 from1 = adjust_automodify_address (data->from, mode, data->from_addr,
1050 data->offset);
1051 else
1052 from1 = adjust_address (data->from, mode, data->offset);
1054 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
1055 emit_insn (gen_add2_insn (data->to_addr,
1056 gen_int_mode (-(HOST_WIDE_INT) size,
1057 GET_MODE (data->to_addr))));
1058 if (HAVE_PRE_DECREMENT && data->explicit_inc_from < 0)
1059 emit_insn (gen_add2_insn (data->from_addr,
1060 gen_int_mode (-(HOST_WIDE_INT) size,
1061 GET_MODE (data->from_addr))));
1063 if (data->to)
1064 emit_insn ((*genfun) (to1, from1));
1065 else
1067 #ifdef PUSH_ROUNDING
1068 emit_single_push_insn (mode, from1, NULL);
1069 #else
1070 gcc_unreachable ();
1071 #endif
1074 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
1075 emit_insn (gen_add2_insn (data->to_addr,
1076 gen_int_mode (size,
1077 GET_MODE (data->to_addr))));
1078 if (HAVE_POST_INCREMENT && data->explicit_inc_from > 0)
1079 emit_insn (gen_add2_insn (data->from_addr,
1080 gen_int_mode (size,
1081 GET_MODE (data->from_addr))));
1083 if (! data->reverse)
1084 data->offset += size;
1086 data->len -= size;
1090 /* Emit code to move a block Y to a block X. This may be done with
1091 string-move instructions, with multiple scalar move instructions,
1092 or with a library call.
1094 Both X and Y must be MEM rtx's (perhaps inside VOLATILE) with mode BLKmode.
1095 SIZE is an rtx that says how long they are.
1096 ALIGN is the maximum alignment we can assume they have.
1097 METHOD describes what kind of copy this is, and what mechanisms may be used.
1098 MIN_SIZE is the minimal size of block to move
1099 MAX_SIZE is the maximal size of block to move, if it can not be represented
1100 in unsigned HOST_WIDE_INT, than it is mask of all ones.
1102 Return the address of the new block, if memcpy is called and returns it,
1103 0 otherwise. */
1106 emit_block_move_hints (rtx x, rtx y, rtx size, enum block_op_methods method,
1107 unsigned int expected_align, HOST_WIDE_INT expected_size,
1108 unsigned HOST_WIDE_INT min_size,
1109 unsigned HOST_WIDE_INT max_size,
1110 unsigned HOST_WIDE_INT probable_max_size)
1112 bool may_use_call;
1113 rtx retval = 0;
1114 unsigned int align;
1116 gcc_assert (size);
1117 if (CONST_INT_P (size)
1118 && INTVAL (size) == 0)
1119 return 0;
1121 switch (method)
1123 case BLOCK_OP_NORMAL:
1124 case BLOCK_OP_TAILCALL:
1125 may_use_call = true;
1126 break;
1128 case BLOCK_OP_CALL_PARM:
1129 may_use_call = block_move_libcall_safe_for_call_parm ();
1131 /* Make inhibit_defer_pop nonzero around the library call
1132 to force it to pop the arguments right away. */
1133 NO_DEFER_POP;
1134 break;
1136 case BLOCK_OP_NO_LIBCALL:
1137 may_use_call = false;
1138 break;
1140 default:
1141 gcc_unreachable ();
1144 gcc_assert (MEM_P (x) && MEM_P (y));
1145 align = MIN (MEM_ALIGN (x), MEM_ALIGN (y));
1146 gcc_assert (align >= BITS_PER_UNIT);
1148 /* Make sure we've got BLKmode addresses; store_one_arg can decide that
1149 block copy is more efficient for other large modes, e.g. DCmode. */
1150 x = adjust_address (x, BLKmode, 0);
1151 y = adjust_address (y, BLKmode, 0);
1153 /* Set MEM_SIZE as appropriate for this block copy. The main place this
1154 can be incorrect is coming from __builtin_memcpy. */
1155 if (CONST_INT_P (size))
1157 x = shallow_copy_rtx (x);
1158 y = shallow_copy_rtx (y);
1159 set_mem_size (x, INTVAL (size));
1160 set_mem_size (y, INTVAL (size));
1163 if (CONST_INT_P (size) && can_move_by_pieces (INTVAL (size), align))
1164 move_by_pieces (x, y, INTVAL (size), align, 0);
1165 else if (emit_block_move_via_movmem (x, y, size, align,
1166 expected_align, expected_size,
1167 min_size, max_size, probable_max_size))
1169 else if (may_use_call
1170 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (x))
1171 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (y)))
1173 /* Since x and y are passed to a libcall, mark the corresponding
1174 tree EXPR as addressable. */
1175 tree y_expr = MEM_EXPR (y);
1176 tree x_expr = MEM_EXPR (x);
1177 if (y_expr)
1178 mark_addressable (y_expr);
1179 if (x_expr)
1180 mark_addressable (x_expr);
1181 retval = emit_block_move_via_libcall (x, y, size,
1182 method == BLOCK_OP_TAILCALL);
1185 else
1186 emit_block_move_via_loop (x, y, size, align);
1188 if (method == BLOCK_OP_CALL_PARM)
1189 OK_DEFER_POP;
1191 return retval;
1195 emit_block_move (rtx x, rtx y, rtx size, enum block_op_methods method)
1197 unsigned HOST_WIDE_INT max, min = 0;
1198 if (GET_CODE (size) == CONST_INT)
1199 min = max = UINTVAL (size);
1200 else
1201 max = GET_MODE_MASK (GET_MODE (size));
1202 return emit_block_move_hints (x, y, size, method, 0, -1,
1203 min, max, max);
1206 /* A subroutine of emit_block_move. Returns true if calling the
1207 block move libcall will not clobber any parameters which may have
1208 already been placed on the stack. */
1210 static bool
1211 block_move_libcall_safe_for_call_parm (void)
1213 #if defined (REG_PARM_STACK_SPACE)
1214 tree fn;
1215 #endif
1217 /* If arguments are pushed on the stack, then they're safe. */
1218 if (PUSH_ARGS)
1219 return true;
1221 /* If registers go on the stack anyway, any argument is sure to clobber
1222 an outgoing argument. */
1223 #if defined (REG_PARM_STACK_SPACE)
1224 fn = emit_block_move_libcall_fn (false);
1225 /* Avoid set but not used warning if *REG_PARM_STACK_SPACE doesn't
1226 depend on its argument. */
1227 (void) fn;
1228 if (OUTGOING_REG_PARM_STACK_SPACE ((!fn ? NULL_TREE : TREE_TYPE (fn)))
1229 && REG_PARM_STACK_SPACE (fn) != 0)
1230 return false;
1231 #endif
1233 /* If any argument goes in memory, then it might clobber an outgoing
1234 argument. */
1236 CUMULATIVE_ARGS args_so_far_v;
1237 cumulative_args_t args_so_far;
1238 tree fn, arg;
1240 fn = emit_block_move_libcall_fn (false);
1241 INIT_CUMULATIVE_ARGS (args_so_far_v, TREE_TYPE (fn), NULL_RTX, 0, 3);
1242 args_so_far = pack_cumulative_args (&args_so_far_v);
1244 arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
1245 for ( ; arg != void_list_node ; arg = TREE_CHAIN (arg))
1247 machine_mode mode = TYPE_MODE (TREE_VALUE (arg));
1248 rtx tmp = targetm.calls.function_arg (args_so_far, mode,
1249 NULL_TREE, true);
1250 if (!tmp || !REG_P (tmp))
1251 return false;
1252 if (targetm.calls.arg_partial_bytes (args_so_far, mode, NULL, 1))
1253 return false;
1254 targetm.calls.function_arg_advance (args_so_far, mode,
1255 NULL_TREE, true);
1258 return true;
1261 /* A subroutine of emit_block_move. Expand a movmem pattern;
1262 return true if successful. */
1264 static bool
1265 emit_block_move_via_movmem (rtx x, rtx y, rtx size, unsigned int align,
1266 unsigned int expected_align, HOST_WIDE_INT expected_size,
1267 unsigned HOST_WIDE_INT min_size,
1268 unsigned HOST_WIDE_INT max_size,
1269 unsigned HOST_WIDE_INT probable_max_size)
1271 int save_volatile_ok = volatile_ok;
1272 machine_mode mode;
1274 if (expected_align < align)
1275 expected_align = align;
1276 if (expected_size != -1)
1278 if ((unsigned HOST_WIDE_INT)expected_size > probable_max_size)
1279 expected_size = probable_max_size;
1280 if ((unsigned HOST_WIDE_INT)expected_size < min_size)
1281 expected_size = min_size;
1284 /* Since this is a move insn, we don't care about volatility. */
1285 volatile_ok = 1;
1287 /* Try the most limited insn first, because there's no point
1288 including more than one in the machine description unless
1289 the more limited one has some advantage. */
1291 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
1292 mode = GET_MODE_WIDER_MODE (mode))
1294 enum insn_code code = direct_optab_handler (movmem_optab, mode);
1296 if (code != CODE_FOR_nothing
1297 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
1298 here because if SIZE is less than the mode mask, as it is
1299 returned by the macro, it will definitely be less than the
1300 actual mode mask. Since SIZE is within the Pmode address
1301 space, we limit MODE to Pmode. */
1302 && ((CONST_INT_P (size)
1303 && ((unsigned HOST_WIDE_INT) INTVAL (size)
1304 <= (GET_MODE_MASK (mode) >> 1)))
1305 || max_size <= (GET_MODE_MASK (mode) >> 1)
1306 || GET_MODE_BITSIZE (mode) >= GET_MODE_BITSIZE (Pmode)))
1308 struct expand_operand ops[9];
1309 unsigned int nops;
1311 /* ??? When called via emit_block_move_for_call, it'd be
1312 nice if there were some way to inform the backend, so
1313 that it doesn't fail the expansion because it thinks
1314 emitting the libcall would be more efficient. */
1315 nops = insn_data[(int) code].n_generator_args;
1316 gcc_assert (nops == 4 || nops == 6 || nops == 8 || nops == 9);
1318 create_fixed_operand (&ops[0], x);
1319 create_fixed_operand (&ops[1], y);
1320 /* The check above guarantees that this size conversion is valid. */
1321 create_convert_operand_to (&ops[2], size, mode, true);
1322 create_integer_operand (&ops[3], align / BITS_PER_UNIT);
1323 if (nops >= 6)
1325 create_integer_operand (&ops[4], expected_align / BITS_PER_UNIT);
1326 create_integer_operand (&ops[5], expected_size);
1328 if (nops >= 8)
1330 create_integer_operand (&ops[6], min_size);
1331 /* If we can not represent the maximal size,
1332 make parameter NULL. */
1333 if ((HOST_WIDE_INT) max_size != -1)
1334 create_integer_operand (&ops[7], max_size);
1335 else
1336 create_fixed_operand (&ops[7], NULL);
1338 if (nops == 9)
1340 /* If we can not represent the maximal size,
1341 make parameter NULL. */
1342 if ((HOST_WIDE_INT) probable_max_size != -1)
1343 create_integer_operand (&ops[8], probable_max_size);
1344 else
1345 create_fixed_operand (&ops[8], NULL);
1347 if (maybe_expand_insn (code, nops, ops))
1349 volatile_ok = save_volatile_ok;
1350 return true;
1355 volatile_ok = save_volatile_ok;
1356 return false;
1359 /* A subroutine of emit_block_move. Expand a call to memcpy.
1360 Return the return value from memcpy, 0 otherwise. */
1363 emit_block_move_via_libcall (rtx dst, rtx src, rtx size, bool tailcall)
1365 rtx dst_addr, src_addr;
1366 tree call_expr, fn, src_tree, dst_tree, size_tree;
1367 machine_mode size_mode;
1368 rtx retval;
1370 /* Emit code to copy the addresses of DST and SRC and SIZE into new
1371 pseudos. We can then place those new pseudos into a VAR_DECL and
1372 use them later. */
1374 dst_addr = copy_addr_to_reg (XEXP (dst, 0));
1375 src_addr = copy_addr_to_reg (XEXP (src, 0));
1377 dst_addr = convert_memory_address (ptr_mode, dst_addr);
1378 src_addr = convert_memory_address (ptr_mode, src_addr);
1380 dst_tree = make_tree (ptr_type_node, dst_addr);
1381 src_tree = make_tree (ptr_type_node, src_addr);
1383 size_mode = TYPE_MODE (sizetype);
1385 size = convert_to_mode (size_mode, size, 1);
1386 size = copy_to_mode_reg (size_mode, size);
1388 /* It is incorrect to use the libcall calling conventions to call
1389 memcpy in this context. This could be a user call to memcpy and
1390 the user may wish to examine the return value from memcpy. For
1391 targets where libcalls and normal calls have different conventions
1392 for returning pointers, we could end up generating incorrect code. */
1394 size_tree = make_tree (sizetype, size);
1396 fn = emit_block_move_libcall_fn (true);
1397 call_expr = build_call_expr (fn, 3, dst_tree, src_tree, size_tree);
1398 CALL_EXPR_TAILCALL (call_expr) = tailcall;
1400 retval = expand_normal (call_expr);
1402 return retval;
1405 /* A subroutine of emit_block_move_via_libcall. Create the tree node
1406 for the function we use for block copies. */
1408 static GTY(()) tree block_move_fn;
1410 void
1411 init_block_move_fn (const char *asmspec)
1413 if (!block_move_fn)
1415 tree args, fn, attrs, attr_args;
1417 fn = get_identifier ("memcpy");
1418 args = build_function_type_list (ptr_type_node, ptr_type_node,
1419 const_ptr_type_node, sizetype,
1420 NULL_TREE);
1422 fn = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, fn, args);
1423 DECL_EXTERNAL (fn) = 1;
1424 TREE_PUBLIC (fn) = 1;
1425 DECL_ARTIFICIAL (fn) = 1;
1426 TREE_NOTHROW (fn) = 1;
1427 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
1428 DECL_VISIBILITY_SPECIFIED (fn) = 1;
1430 attr_args = build_tree_list (NULL_TREE, build_string (1, "1"));
1431 attrs = tree_cons (get_identifier ("fn spec"), attr_args, NULL);
1433 decl_attributes (&fn, attrs, ATTR_FLAG_BUILT_IN);
1435 block_move_fn = fn;
1438 if (asmspec)
1439 set_user_assembler_name (block_move_fn, asmspec);
1442 static tree
1443 emit_block_move_libcall_fn (int for_call)
1445 static bool emitted_extern;
1447 if (!block_move_fn)
1448 init_block_move_fn (NULL);
1450 if (for_call && !emitted_extern)
1452 emitted_extern = true;
1453 make_decl_rtl (block_move_fn);
1456 return block_move_fn;
1459 /* A subroutine of emit_block_move. Copy the data via an explicit
1460 loop. This is used only when libcalls are forbidden. */
1461 /* ??? It'd be nice to copy in hunks larger than QImode. */
1463 static void
1464 emit_block_move_via_loop (rtx x, rtx y, rtx size,
1465 unsigned int align ATTRIBUTE_UNUSED)
1467 rtx_code_label *cmp_label, *top_label;
1468 rtx iter, x_addr, y_addr, tmp;
1469 machine_mode x_addr_mode = get_address_mode (x);
1470 machine_mode y_addr_mode = get_address_mode (y);
1471 machine_mode iter_mode;
1473 iter_mode = GET_MODE (size);
1474 if (iter_mode == VOIDmode)
1475 iter_mode = word_mode;
1477 top_label = gen_label_rtx ();
1478 cmp_label = gen_label_rtx ();
1479 iter = gen_reg_rtx (iter_mode);
1481 emit_move_insn (iter, const0_rtx);
1483 x_addr = force_operand (XEXP (x, 0), NULL_RTX);
1484 y_addr = force_operand (XEXP (y, 0), NULL_RTX);
1485 do_pending_stack_adjust ();
1487 emit_jump (cmp_label);
1488 emit_label (top_label);
1490 tmp = convert_modes (x_addr_mode, iter_mode, iter, true);
1491 x_addr = simplify_gen_binary (PLUS, x_addr_mode, x_addr, tmp);
1493 if (x_addr_mode != y_addr_mode)
1494 tmp = convert_modes (y_addr_mode, iter_mode, iter, true);
1495 y_addr = simplify_gen_binary (PLUS, y_addr_mode, y_addr, tmp);
1497 x = change_address (x, QImode, x_addr);
1498 y = change_address (y, QImode, y_addr);
1500 emit_move_insn (x, y);
1502 tmp = expand_simple_binop (iter_mode, PLUS, iter, const1_rtx, iter,
1503 true, OPTAB_LIB_WIDEN);
1504 if (tmp != iter)
1505 emit_move_insn (iter, tmp);
1507 emit_label (cmp_label);
1509 emit_cmp_and_jump_insns (iter, size, LT, NULL_RTX, iter_mode,
1510 true, top_label, REG_BR_PROB_BASE * 90 / 100);
1513 /* Copy all or part of a value X into registers starting at REGNO.
1514 The number of registers to be filled is NREGS. */
1516 void
1517 move_block_to_reg (int regno, rtx x, int nregs, machine_mode mode)
1519 int i;
1520 #ifdef HAVE_load_multiple
1521 rtx pat;
1522 rtx_insn *last;
1523 #endif
1525 if (nregs == 0)
1526 return;
1528 if (CONSTANT_P (x) && !targetm.legitimate_constant_p (mode, x))
1529 x = validize_mem (force_const_mem (mode, x));
1531 /* See if the machine can do this with a load multiple insn. */
1532 #ifdef HAVE_load_multiple
1533 if (HAVE_load_multiple)
1535 last = get_last_insn ();
1536 pat = gen_load_multiple (gen_rtx_REG (word_mode, regno), x,
1537 GEN_INT (nregs));
1538 if (pat)
1540 emit_insn (pat);
1541 return;
1543 else
1544 delete_insns_since (last);
1546 #endif
1548 for (i = 0; i < nregs; i++)
1549 emit_move_insn (gen_rtx_REG (word_mode, regno + i),
1550 operand_subword_force (x, i, mode));
1553 /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
1554 The number of registers to be filled is NREGS. */
1556 void
1557 move_block_from_reg (int regno, rtx x, int nregs)
1559 int i;
1561 if (nregs == 0)
1562 return;
1564 /* See if the machine can do this with a store multiple insn. */
1565 #ifdef HAVE_store_multiple
1566 if (HAVE_store_multiple)
1568 rtx_insn *last = get_last_insn ();
1569 rtx pat = gen_store_multiple (x, gen_rtx_REG (word_mode, regno),
1570 GEN_INT (nregs));
1571 if (pat)
1573 emit_insn (pat);
1574 return;
1576 else
1577 delete_insns_since (last);
1579 #endif
1581 for (i = 0; i < nregs; i++)
1583 rtx tem = operand_subword (x, i, 1, BLKmode);
1585 gcc_assert (tem);
1587 emit_move_insn (tem, gen_rtx_REG (word_mode, regno + i));
1591 /* Generate a PARALLEL rtx for a new non-consecutive group of registers from
1592 ORIG, where ORIG is a non-consecutive group of registers represented by
1593 a PARALLEL. The clone is identical to the original except in that the
1594 original set of registers is replaced by a new set of pseudo registers.
1595 The new set has the same modes as the original set. */
1598 gen_group_rtx (rtx orig)
1600 int i, length;
1601 rtx *tmps;
1603 gcc_assert (GET_CODE (orig) == PARALLEL);
1605 length = XVECLEN (orig, 0);
1606 tmps = XALLOCAVEC (rtx, length);
1608 /* Skip a NULL entry in first slot. */
1609 i = XEXP (XVECEXP (orig, 0, 0), 0) ? 0 : 1;
1611 if (i)
1612 tmps[0] = 0;
1614 for (; i < length; i++)
1616 machine_mode mode = GET_MODE (XEXP (XVECEXP (orig, 0, i), 0));
1617 rtx offset = XEXP (XVECEXP (orig, 0, i), 1);
1619 tmps[i] = gen_rtx_EXPR_LIST (VOIDmode, gen_reg_rtx (mode), offset);
1622 return gen_rtx_PARALLEL (GET_MODE (orig), gen_rtvec_v (length, tmps));
1625 /* A subroutine of emit_group_load. Arguments as for emit_group_load,
1626 except that values are placed in TMPS[i], and must later be moved
1627 into corresponding XEXP (XVECEXP (DST, 0, i), 0) element. */
1629 static void
1630 emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize)
1632 rtx src;
1633 int start, i;
1634 machine_mode m = GET_MODE (orig_src);
1636 gcc_assert (GET_CODE (dst) == PARALLEL);
1638 if (m != VOIDmode
1639 && !SCALAR_INT_MODE_P (m)
1640 && !MEM_P (orig_src)
1641 && GET_CODE (orig_src) != CONCAT)
1643 machine_mode imode = int_mode_for_mode (GET_MODE (orig_src));
1644 if (imode == BLKmode)
1645 src = assign_stack_temp (GET_MODE (orig_src), ssize);
1646 else
1647 src = gen_reg_rtx (imode);
1648 if (imode != BLKmode)
1649 src = gen_lowpart (GET_MODE (orig_src), src);
1650 emit_move_insn (src, orig_src);
1651 /* ...and back again. */
1652 if (imode != BLKmode)
1653 src = gen_lowpart (imode, src);
1654 emit_group_load_1 (tmps, dst, src, type, ssize);
1655 return;
1658 /* Check for a NULL entry, used to indicate that the parameter goes
1659 both on the stack and in registers. */
1660 if (XEXP (XVECEXP (dst, 0, 0), 0))
1661 start = 0;
1662 else
1663 start = 1;
1665 /* Process the pieces. */
1666 for (i = start; i < XVECLEN (dst, 0); i++)
1668 machine_mode mode = GET_MODE (XEXP (XVECEXP (dst, 0, i), 0));
1669 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (dst, 0, i), 1));
1670 unsigned int bytelen = GET_MODE_SIZE (mode);
1671 int shift = 0;
1673 /* Handle trailing fragments that run over the size of the struct. */
1674 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
1676 /* Arrange to shift the fragment to where it belongs.
1677 extract_bit_field loads to the lsb of the reg. */
1678 if (
1679 #ifdef BLOCK_REG_PADDING
1680 BLOCK_REG_PADDING (GET_MODE (orig_src), type, i == start)
1681 == (BYTES_BIG_ENDIAN ? upward : downward)
1682 #else
1683 BYTES_BIG_ENDIAN
1684 #endif
1686 shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
1687 bytelen = ssize - bytepos;
1688 gcc_assert (bytelen > 0);
1691 /* If we won't be loading directly from memory, protect the real source
1692 from strange tricks we might play; but make sure that the source can
1693 be loaded directly into the destination. */
1694 src = orig_src;
1695 if (!MEM_P (orig_src)
1696 && (!CONSTANT_P (orig_src)
1697 || (GET_MODE (orig_src) != mode
1698 && GET_MODE (orig_src) != VOIDmode)))
1700 if (GET_MODE (orig_src) == VOIDmode)
1701 src = gen_reg_rtx (mode);
1702 else
1703 src = gen_reg_rtx (GET_MODE (orig_src));
1705 emit_move_insn (src, orig_src);
1708 /* Optimize the access just a bit. */
1709 if (MEM_P (src)
1710 && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (src))
1711 || MEM_ALIGN (src) >= GET_MODE_ALIGNMENT (mode))
1712 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
1713 && bytelen == GET_MODE_SIZE (mode))
1715 tmps[i] = gen_reg_rtx (mode);
1716 emit_move_insn (tmps[i], adjust_address (src, mode, bytepos));
1718 else if (COMPLEX_MODE_P (mode)
1719 && GET_MODE (src) == mode
1720 && bytelen == GET_MODE_SIZE (mode))
1721 /* Let emit_move_complex do the bulk of the work. */
1722 tmps[i] = src;
1723 else if (GET_CODE (src) == CONCAT)
1725 unsigned int slen = GET_MODE_SIZE (GET_MODE (src));
1726 unsigned int slen0 = GET_MODE_SIZE (GET_MODE (XEXP (src, 0)));
1728 if ((bytepos == 0 && bytelen == slen0)
1729 || (bytepos != 0 && bytepos + bytelen <= slen))
1731 /* The following assumes that the concatenated objects all
1732 have the same size. In this case, a simple calculation
1733 can be used to determine the object and the bit field
1734 to be extracted. */
1735 tmps[i] = XEXP (src, bytepos / slen0);
1736 if (! CONSTANT_P (tmps[i])
1737 && (!REG_P (tmps[i]) || GET_MODE (tmps[i]) != mode))
1738 tmps[i] = extract_bit_field (tmps[i], bytelen * BITS_PER_UNIT,
1739 (bytepos % slen0) * BITS_PER_UNIT,
1740 1, NULL_RTX, mode, mode);
1742 else
1744 rtx mem;
1746 gcc_assert (!bytepos);
1747 mem = assign_stack_temp (GET_MODE (src), slen);
1748 emit_move_insn (mem, src);
1749 tmps[i] = extract_bit_field (mem, bytelen * BITS_PER_UNIT,
1750 0, 1, NULL_RTX, mode, mode);
1753 /* FIXME: A SIMD parallel will eventually lead to a subreg of a
1754 SIMD register, which is currently broken. While we get GCC
1755 to emit proper RTL for these cases, let's dump to memory. */
1756 else if (VECTOR_MODE_P (GET_MODE (dst))
1757 && REG_P (src))
1759 int slen = GET_MODE_SIZE (GET_MODE (src));
1760 rtx mem;
1762 mem = assign_stack_temp (GET_MODE (src), slen);
1763 emit_move_insn (mem, src);
1764 tmps[i] = adjust_address (mem, mode, (int) bytepos);
1766 else if (CONSTANT_P (src) && GET_MODE (dst) != BLKmode
1767 && XVECLEN (dst, 0) > 1)
1768 tmps[i] = simplify_gen_subreg (mode, src, GET_MODE (dst), bytepos);
1769 else if (CONSTANT_P (src))
1771 HOST_WIDE_INT len = (HOST_WIDE_INT) bytelen;
1773 if (len == ssize)
1774 tmps[i] = src;
1775 else
1777 rtx first, second;
1779 /* TODO: const_wide_int can have sizes other than this... */
1780 gcc_assert (2 * len == ssize);
1781 split_double (src, &first, &second);
1782 if (i)
1783 tmps[i] = second;
1784 else
1785 tmps[i] = first;
1788 else if (REG_P (src) && GET_MODE (src) == mode)
1789 tmps[i] = src;
1790 else
1791 tmps[i] = extract_bit_field (src, bytelen * BITS_PER_UNIT,
1792 bytepos * BITS_PER_UNIT, 1, NULL_RTX,
1793 mode, mode);
1795 if (shift)
1796 tmps[i] = expand_shift (LSHIFT_EXPR, mode, tmps[i],
1797 shift, tmps[i], 0);
1801 /* Emit code to move a block SRC of type TYPE to a block DST,
1802 where DST is non-consecutive registers represented by a PARALLEL.
1803 SSIZE represents the total size of block ORIG_SRC in bytes, or -1
1804 if not known. */
1806 void
1807 emit_group_load (rtx dst, rtx src, tree type, int ssize)
1809 rtx *tmps;
1810 int i;
1812 tmps = XALLOCAVEC (rtx, XVECLEN (dst, 0));
1813 emit_group_load_1 (tmps, dst, src, type, ssize);
1815 /* Copy the extracted pieces into the proper (probable) hard regs. */
1816 for (i = 0; i < XVECLEN (dst, 0); i++)
1818 rtx d = XEXP (XVECEXP (dst, 0, i), 0);
1819 if (d == NULL)
1820 continue;
1821 emit_move_insn (d, tmps[i]);
1825 /* Similar, but load SRC into new pseudos in a format that looks like
1826 PARALLEL. This can later be fed to emit_group_move to get things
1827 in the right place. */
1830 emit_group_load_into_temps (rtx parallel, rtx src, tree type, int ssize)
1832 rtvec vec;
1833 int i;
1835 vec = rtvec_alloc (XVECLEN (parallel, 0));
1836 emit_group_load_1 (&RTVEC_ELT (vec, 0), parallel, src, type, ssize);
1838 /* Convert the vector to look just like the original PARALLEL, except
1839 with the computed values. */
1840 for (i = 0; i < XVECLEN (parallel, 0); i++)
1842 rtx e = XVECEXP (parallel, 0, i);
1843 rtx d = XEXP (e, 0);
1845 if (d)
1847 d = force_reg (GET_MODE (d), RTVEC_ELT (vec, i));
1848 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), d, XEXP (e, 1));
1850 RTVEC_ELT (vec, i) = e;
1853 return gen_rtx_PARALLEL (GET_MODE (parallel), vec);
1856 /* Emit code to move a block SRC to block DST, where SRC and DST are
1857 non-consecutive groups of registers, each represented by a PARALLEL. */
1859 void
1860 emit_group_move (rtx dst, rtx src)
1862 int i;
1864 gcc_assert (GET_CODE (src) == PARALLEL
1865 && GET_CODE (dst) == PARALLEL
1866 && XVECLEN (src, 0) == XVECLEN (dst, 0));
1868 /* Skip first entry if NULL. */
1869 for (i = XEXP (XVECEXP (src, 0, 0), 0) ? 0 : 1; i < XVECLEN (src, 0); i++)
1870 emit_move_insn (XEXP (XVECEXP (dst, 0, i), 0),
1871 XEXP (XVECEXP (src, 0, i), 0));
1874 /* Move a group of registers represented by a PARALLEL into pseudos. */
1877 emit_group_move_into_temps (rtx src)
1879 rtvec vec = rtvec_alloc (XVECLEN (src, 0));
1880 int i;
1882 for (i = 0; i < XVECLEN (src, 0); i++)
1884 rtx e = XVECEXP (src, 0, i);
1885 rtx d = XEXP (e, 0);
1887 if (d)
1888 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), copy_to_reg (d), XEXP (e, 1));
1889 RTVEC_ELT (vec, i) = e;
1892 return gen_rtx_PARALLEL (GET_MODE (src), vec);
1895 /* Emit code to move a block SRC to a block ORIG_DST of type TYPE,
1896 where SRC is non-consecutive registers represented by a PARALLEL.
1897 SSIZE represents the total size of block ORIG_DST, or -1 if not
1898 known. */
1900 void
1901 emit_group_store (rtx orig_dst, rtx src, tree type ATTRIBUTE_UNUSED, int ssize)
1903 rtx *tmps, dst;
1904 int start, finish, i;
1905 machine_mode m = GET_MODE (orig_dst);
1907 gcc_assert (GET_CODE (src) == PARALLEL);
1909 if (!SCALAR_INT_MODE_P (m)
1910 && !MEM_P (orig_dst) && GET_CODE (orig_dst) != CONCAT)
1912 machine_mode imode = int_mode_for_mode (GET_MODE (orig_dst));
1913 if (imode == BLKmode)
1914 dst = assign_stack_temp (GET_MODE (orig_dst), ssize);
1915 else
1916 dst = gen_reg_rtx (imode);
1917 emit_group_store (dst, src, type, ssize);
1918 if (imode != BLKmode)
1919 dst = gen_lowpart (GET_MODE (orig_dst), dst);
1920 emit_move_insn (orig_dst, dst);
1921 return;
1924 /* Check for a NULL entry, used to indicate that the parameter goes
1925 both on the stack and in registers. */
1926 if (XEXP (XVECEXP (src, 0, 0), 0))
1927 start = 0;
1928 else
1929 start = 1;
1930 finish = XVECLEN (src, 0);
1932 tmps = XALLOCAVEC (rtx, finish);
1934 /* Copy the (probable) hard regs into pseudos. */
1935 for (i = start; i < finish; i++)
1937 rtx reg = XEXP (XVECEXP (src, 0, i), 0);
1938 if (!REG_P (reg) || REGNO (reg) < FIRST_PSEUDO_REGISTER)
1940 tmps[i] = gen_reg_rtx (GET_MODE (reg));
1941 emit_move_insn (tmps[i], reg);
1943 else
1944 tmps[i] = reg;
1947 /* If we won't be storing directly into memory, protect the real destination
1948 from strange tricks we might play. */
1949 dst = orig_dst;
1950 if (GET_CODE (dst) == PARALLEL)
1952 rtx temp;
1954 /* We can get a PARALLEL dst if there is a conditional expression in
1955 a return statement. In that case, the dst and src are the same,
1956 so no action is necessary. */
1957 if (rtx_equal_p (dst, src))
1958 return;
1960 /* It is unclear if we can ever reach here, but we may as well handle
1961 it. Allocate a temporary, and split this into a store/load to/from
1962 the temporary. */
1963 temp = assign_stack_temp (GET_MODE (dst), ssize);
1964 emit_group_store (temp, src, type, ssize);
1965 emit_group_load (dst, temp, type, ssize);
1966 return;
1968 else if (!MEM_P (dst) && GET_CODE (dst) != CONCAT)
1970 machine_mode outer = GET_MODE (dst);
1971 machine_mode inner;
1972 HOST_WIDE_INT bytepos;
1973 bool done = false;
1974 rtx temp;
1976 if (!REG_P (dst) || REGNO (dst) < FIRST_PSEUDO_REGISTER)
1977 dst = gen_reg_rtx (outer);
1979 /* Make life a bit easier for combine. */
1980 /* If the first element of the vector is the low part
1981 of the destination mode, use a paradoxical subreg to
1982 initialize the destination. */
1983 if (start < finish)
1985 inner = GET_MODE (tmps[start]);
1986 bytepos = subreg_lowpart_offset (inner, outer);
1987 if (INTVAL (XEXP (XVECEXP (src, 0, start), 1)) == bytepos)
1989 temp = simplify_gen_subreg (outer, tmps[start],
1990 inner, 0);
1991 if (temp)
1993 emit_move_insn (dst, temp);
1994 done = true;
1995 start++;
2000 /* If the first element wasn't the low part, try the last. */
2001 if (!done
2002 && start < finish - 1)
2004 inner = GET_MODE (tmps[finish - 1]);
2005 bytepos = subreg_lowpart_offset (inner, outer);
2006 if (INTVAL (XEXP (XVECEXP (src, 0, finish - 1), 1)) == bytepos)
2008 temp = simplify_gen_subreg (outer, tmps[finish - 1],
2009 inner, 0);
2010 if (temp)
2012 emit_move_insn (dst, temp);
2013 done = true;
2014 finish--;
2019 /* Otherwise, simply initialize the result to zero. */
2020 if (!done)
2021 emit_move_insn (dst, CONST0_RTX (outer));
2024 /* Process the pieces. */
2025 for (i = start; i < finish; i++)
2027 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (src, 0, i), 1));
2028 machine_mode mode = GET_MODE (tmps[i]);
2029 unsigned int bytelen = GET_MODE_SIZE (mode);
2030 unsigned int adj_bytelen;
2031 rtx dest = dst;
2033 /* Handle trailing fragments that run over the size of the struct. */
2034 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2035 adj_bytelen = ssize - bytepos;
2036 else
2037 adj_bytelen = bytelen;
2039 if (GET_CODE (dst) == CONCAT)
2041 if (bytepos + adj_bytelen
2042 <= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2043 dest = XEXP (dst, 0);
2044 else if (bytepos >= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2046 bytepos -= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0)));
2047 dest = XEXP (dst, 1);
2049 else
2051 machine_mode dest_mode = GET_MODE (dest);
2052 machine_mode tmp_mode = GET_MODE (tmps[i]);
2054 gcc_assert (bytepos == 0 && XVECLEN (src, 0));
2056 if (GET_MODE_ALIGNMENT (dest_mode)
2057 >= GET_MODE_ALIGNMENT (tmp_mode))
2059 dest = assign_stack_temp (dest_mode,
2060 GET_MODE_SIZE (dest_mode));
2061 emit_move_insn (adjust_address (dest,
2062 tmp_mode,
2063 bytepos),
2064 tmps[i]);
2065 dst = dest;
2067 else
2069 dest = assign_stack_temp (tmp_mode,
2070 GET_MODE_SIZE (tmp_mode));
2071 emit_move_insn (dest, tmps[i]);
2072 dst = adjust_address (dest, dest_mode, bytepos);
2074 break;
2078 /* Handle trailing fragments that run over the size of the struct. */
2079 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2081 /* store_bit_field always takes its value from the lsb.
2082 Move the fragment to the lsb if it's not already there. */
2083 if (
2084 #ifdef BLOCK_REG_PADDING
2085 BLOCK_REG_PADDING (GET_MODE (orig_dst), type, i == start)
2086 == (BYTES_BIG_ENDIAN ? upward : downward)
2087 #else
2088 BYTES_BIG_ENDIAN
2089 #endif
2092 int shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
2093 tmps[i] = expand_shift (RSHIFT_EXPR, mode, tmps[i],
2094 shift, tmps[i], 0);
2097 /* Make sure not to write past the end of the struct. */
2098 store_bit_field (dest,
2099 adj_bytelen * BITS_PER_UNIT, bytepos * BITS_PER_UNIT,
2100 bytepos * BITS_PER_UNIT, ssize * BITS_PER_UNIT - 1,
2101 VOIDmode, tmps[i]);
2104 /* Optimize the access just a bit. */
2105 else if (MEM_P (dest)
2106 && (!SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (dest))
2107 || MEM_ALIGN (dest) >= GET_MODE_ALIGNMENT (mode))
2108 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
2109 && bytelen == GET_MODE_SIZE (mode))
2110 emit_move_insn (adjust_address (dest, mode, bytepos), tmps[i]);
2112 else
2113 store_bit_field (dest, bytelen * BITS_PER_UNIT, bytepos * BITS_PER_UNIT,
2114 0, 0, mode, tmps[i]);
2117 /* Copy from the pseudo into the (probable) hard reg. */
2118 if (orig_dst != dst)
2119 emit_move_insn (orig_dst, dst);
2122 /* Return a form of X that does not use a PARALLEL. TYPE is the type
2123 of the value stored in X. */
2126 maybe_emit_group_store (rtx x, tree type)
2128 machine_mode mode = TYPE_MODE (type);
2129 gcc_checking_assert (GET_MODE (x) == VOIDmode || GET_MODE (x) == mode);
2130 if (GET_CODE (x) == PARALLEL)
2132 rtx result = gen_reg_rtx (mode);
2133 emit_group_store (result, x, type, int_size_in_bytes (type));
2134 return result;
2136 return x;
2139 /* Copy a BLKmode object of TYPE out of a register SRCREG into TARGET.
2141 This is used on targets that return BLKmode values in registers. */
2143 void
2144 copy_blkmode_from_reg (rtx target, rtx srcreg, tree type)
2146 unsigned HOST_WIDE_INT bytes = int_size_in_bytes (type);
2147 rtx src = NULL, dst = NULL;
2148 unsigned HOST_WIDE_INT bitsize = MIN (TYPE_ALIGN (type), BITS_PER_WORD);
2149 unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0;
2150 machine_mode mode = GET_MODE (srcreg);
2151 machine_mode tmode = GET_MODE (target);
2152 machine_mode copy_mode;
2154 /* BLKmode registers created in the back-end shouldn't have survived. */
2155 gcc_assert (mode != BLKmode);
2157 /* If the structure doesn't take up a whole number of words, see whether
2158 SRCREG is padded on the left or on the right. If it's on the left,
2159 set PADDING_CORRECTION to the number of bits to skip.
2161 In most ABIs, the structure will be returned at the least end of
2162 the register, which translates to right padding on little-endian
2163 targets and left padding on big-endian targets. The opposite
2164 holds if the structure is returned at the most significant
2165 end of the register. */
2166 if (bytes % UNITS_PER_WORD != 0
2167 && (targetm.calls.return_in_msb (type)
2168 ? !BYTES_BIG_ENDIAN
2169 : BYTES_BIG_ENDIAN))
2170 padding_correction
2171 = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD) * BITS_PER_UNIT));
2173 /* We can use a single move if we have an exact mode for the size. */
2174 else if (MEM_P (target)
2175 && (!SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (target))
2176 || MEM_ALIGN (target) >= GET_MODE_ALIGNMENT (mode))
2177 && bytes == GET_MODE_SIZE (mode))
2179 emit_move_insn (adjust_address (target, mode, 0), srcreg);
2180 return;
2183 /* And if we additionally have the same mode for a register. */
2184 else if (REG_P (target)
2185 && GET_MODE (target) == mode
2186 && bytes == GET_MODE_SIZE (mode))
2188 emit_move_insn (target, srcreg);
2189 return;
2192 /* This code assumes srcreg is at least a full word. If it isn't, copy it
2193 into a new pseudo which is a full word. */
2194 if (GET_MODE_SIZE (mode) < UNITS_PER_WORD)
2196 srcreg = convert_to_mode (word_mode, srcreg, TYPE_UNSIGNED (type));
2197 mode = word_mode;
2200 /* Copy the structure BITSIZE bits at a time. If the target lives in
2201 memory, take care of not reading/writing past its end by selecting
2202 a copy mode suited to BITSIZE. This should always be possible given
2203 how it is computed.
2205 If the target lives in register, make sure not to select a copy mode
2206 larger than the mode of the register.
2208 We could probably emit more efficient code for machines which do not use
2209 strict alignment, but it doesn't seem worth the effort at the current
2210 time. */
2212 copy_mode = word_mode;
2213 if (MEM_P (target))
2215 machine_mode mem_mode = mode_for_size (bitsize, MODE_INT, 1);
2216 if (mem_mode != BLKmode)
2217 copy_mode = mem_mode;
2219 else if (REG_P (target) && GET_MODE_BITSIZE (tmode) < BITS_PER_WORD)
2220 copy_mode = tmode;
2222 for (bitpos = 0, xbitpos = padding_correction;
2223 bitpos < bytes * BITS_PER_UNIT;
2224 bitpos += bitsize, xbitpos += bitsize)
2226 /* We need a new source operand each time xbitpos is on a
2227 word boundary and when xbitpos == padding_correction
2228 (the first time through). */
2229 if (xbitpos % BITS_PER_WORD == 0 || xbitpos == padding_correction)
2230 src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD, mode);
2232 /* We need a new destination operand each time bitpos is on
2233 a word boundary. */
2234 if (REG_P (target) && GET_MODE_BITSIZE (tmode) < BITS_PER_WORD)
2235 dst = target;
2236 else if (bitpos % BITS_PER_WORD == 0)
2237 dst = operand_subword (target, bitpos / BITS_PER_WORD, 1, tmode);
2239 /* Use xbitpos for the source extraction (right justified) and
2240 bitpos for the destination store (left justified). */
2241 store_bit_field (dst, bitsize, bitpos % BITS_PER_WORD, 0, 0, copy_mode,
2242 extract_bit_field (src, bitsize,
2243 xbitpos % BITS_PER_WORD, 1,
2244 NULL_RTX, copy_mode, copy_mode));
2248 /* Copy BLKmode value SRC into a register of mode MODE. Return the
2249 register if it contains any data, otherwise return null.
2251 This is used on targets that return BLKmode values in registers. */
2254 copy_blkmode_to_reg (machine_mode mode, tree src)
2256 int i, n_regs;
2257 unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0, bytes;
2258 unsigned int bitsize;
2259 rtx *dst_words, dst, x, src_word = NULL_RTX, dst_word = NULL_RTX;
2260 machine_mode dst_mode;
2262 gcc_assert (TYPE_MODE (TREE_TYPE (src)) == BLKmode);
2264 x = expand_normal (src);
2266 bytes = int_size_in_bytes (TREE_TYPE (src));
2267 if (bytes == 0)
2268 return NULL_RTX;
2270 /* If the structure doesn't take up a whole number of words, see
2271 whether the register value should be padded on the left or on
2272 the right. Set PADDING_CORRECTION to the number of padding
2273 bits needed on the left side.
2275 In most ABIs, the structure will be returned at the least end of
2276 the register, which translates to right padding on little-endian
2277 targets and left padding on big-endian targets. The opposite
2278 holds if the structure is returned at the most significant
2279 end of the register. */
2280 if (bytes % UNITS_PER_WORD != 0
2281 && (targetm.calls.return_in_msb (TREE_TYPE (src))
2282 ? !BYTES_BIG_ENDIAN
2283 : BYTES_BIG_ENDIAN))
2284 padding_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
2285 * BITS_PER_UNIT));
2287 n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
2288 dst_words = XALLOCAVEC (rtx, n_regs);
2289 bitsize = MIN (TYPE_ALIGN (TREE_TYPE (src)), BITS_PER_WORD);
2291 /* Copy the structure BITSIZE bits at a time. */
2292 for (bitpos = 0, xbitpos = padding_correction;
2293 bitpos < bytes * BITS_PER_UNIT;
2294 bitpos += bitsize, xbitpos += bitsize)
2296 /* We need a new destination pseudo each time xbitpos is
2297 on a word boundary and when xbitpos == padding_correction
2298 (the first time through). */
2299 if (xbitpos % BITS_PER_WORD == 0
2300 || xbitpos == padding_correction)
2302 /* Generate an appropriate register. */
2303 dst_word = gen_reg_rtx (word_mode);
2304 dst_words[xbitpos / BITS_PER_WORD] = dst_word;
2306 /* Clear the destination before we move anything into it. */
2307 emit_move_insn (dst_word, CONST0_RTX (word_mode));
2310 /* We need a new source operand each time bitpos is on a word
2311 boundary. */
2312 if (bitpos % BITS_PER_WORD == 0)
2313 src_word = operand_subword_force (x, bitpos / BITS_PER_WORD, BLKmode);
2315 /* Use bitpos for the source extraction (left justified) and
2316 xbitpos for the destination store (right justified). */
2317 store_bit_field (dst_word, bitsize, xbitpos % BITS_PER_WORD,
2318 0, 0, word_mode,
2319 extract_bit_field (src_word, bitsize,
2320 bitpos % BITS_PER_WORD, 1,
2321 NULL_RTX, word_mode, word_mode));
2324 if (mode == BLKmode)
2326 /* Find the smallest integer mode large enough to hold the
2327 entire structure. */
2328 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2329 mode != VOIDmode;
2330 mode = GET_MODE_WIDER_MODE (mode))
2331 /* Have we found a large enough mode? */
2332 if (GET_MODE_SIZE (mode) >= bytes)
2333 break;
2335 /* A suitable mode should have been found. */
2336 gcc_assert (mode != VOIDmode);
2339 if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (word_mode))
2340 dst_mode = word_mode;
2341 else
2342 dst_mode = mode;
2343 dst = gen_reg_rtx (dst_mode);
2345 for (i = 0; i < n_regs; i++)
2346 emit_move_insn (operand_subword (dst, i, 0, dst_mode), dst_words[i]);
2348 if (mode != dst_mode)
2349 dst = gen_lowpart (mode, dst);
2351 return dst;
2354 /* Add a USE expression for REG to the (possibly empty) list pointed
2355 to by CALL_FUSAGE. REG must denote a hard register. */
2357 void
2358 use_reg_mode (rtx *call_fusage, rtx reg, machine_mode mode)
2360 gcc_assert (REG_P (reg));
2362 if (!HARD_REGISTER_P (reg))
2363 return;
2365 *call_fusage
2366 = gen_rtx_EXPR_LIST (mode, gen_rtx_USE (VOIDmode, reg), *call_fusage);
2369 /* Add a CLOBBER expression for REG to the (possibly empty) list pointed
2370 to by CALL_FUSAGE. REG must denote a hard register. */
2372 void
2373 clobber_reg_mode (rtx *call_fusage, rtx reg, machine_mode mode)
2375 gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
2377 *call_fusage
2378 = gen_rtx_EXPR_LIST (mode, gen_rtx_CLOBBER (VOIDmode, reg), *call_fusage);
2381 /* Add USE expressions to *CALL_FUSAGE for each of NREGS consecutive regs,
2382 starting at REGNO. All of these registers must be hard registers. */
2384 void
2385 use_regs (rtx *call_fusage, int regno, int nregs)
2387 int i;
2389 gcc_assert (regno + nregs <= FIRST_PSEUDO_REGISTER);
2391 for (i = 0; i < nregs; i++)
2392 use_reg (call_fusage, regno_reg_rtx[regno + i]);
2395 /* Add USE expressions to *CALL_FUSAGE for each REG contained in the
2396 PARALLEL REGS. This is for calls that pass values in multiple
2397 non-contiguous locations. The Irix 6 ABI has examples of this. */
2399 void
2400 use_group_regs (rtx *call_fusage, rtx regs)
2402 int i;
2404 for (i = 0; i < XVECLEN (regs, 0); i++)
2406 rtx reg = XEXP (XVECEXP (regs, 0, i), 0);
2408 /* A NULL entry means the parameter goes both on the stack and in
2409 registers. This can also be a MEM for targets that pass values
2410 partially on the stack and partially in registers. */
2411 if (reg != 0 && REG_P (reg))
2412 use_reg (call_fusage, reg);
2416 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2417 assigment and the code of the expresion on the RHS is CODE. Return
2418 NULL otherwise. */
2420 static gimple
2421 get_def_for_expr (tree name, enum tree_code code)
2423 gimple def_stmt;
2425 if (TREE_CODE (name) != SSA_NAME)
2426 return NULL;
2428 def_stmt = get_gimple_for_ssa_name (name);
2429 if (!def_stmt
2430 || gimple_assign_rhs_code (def_stmt) != code)
2431 return NULL;
2433 return def_stmt;
2436 #ifdef HAVE_conditional_move
2437 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2438 assigment and the class of the expresion on the RHS is CLASS. Return
2439 NULL otherwise. */
2441 static gimple
2442 get_def_for_expr_class (tree name, enum tree_code_class tclass)
2444 gimple def_stmt;
2446 if (TREE_CODE (name) != SSA_NAME)
2447 return NULL;
2449 def_stmt = get_gimple_for_ssa_name (name);
2450 if (!def_stmt
2451 || TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) != tclass)
2452 return NULL;
2454 return def_stmt;
2456 #endif
2459 /* Determine whether the LEN bytes generated by CONSTFUN can be
2460 stored to memory using several move instructions. CONSTFUNDATA is
2461 a pointer which will be passed as argument in every CONSTFUN call.
2462 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2463 a memset operation and false if it's a copy of a constant string.
2464 Return nonzero if a call to store_by_pieces should succeed. */
2467 can_store_by_pieces (unsigned HOST_WIDE_INT len,
2468 rtx (*constfun) (void *, HOST_WIDE_INT, machine_mode),
2469 void *constfundata, unsigned int align, bool memsetp)
2471 unsigned HOST_WIDE_INT l;
2472 unsigned int max_size;
2473 HOST_WIDE_INT offset = 0;
2474 machine_mode mode;
2475 enum insn_code icode;
2476 int reverse;
2477 /* cst is set but not used if LEGITIMATE_CONSTANT doesn't use it. */
2478 rtx cst ATTRIBUTE_UNUSED;
2480 if (len == 0)
2481 return 1;
2483 if (!targetm.use_by_pieces_infrastructure_p (len, align,
2484 memsetp
2485 ? SET_BY_PIECES
2486 : STORE_BY_PIECES,
2487 optimize_insn_for_speed_p ()))
2488 return 0;
2490 align = alignment_for_piecewise_move (STORE_MAX_PIECES, align);
2492 /* We would first store what we can in the largest integer mode, then go to
2493 successively smaller modes. */
2495 for (reverse = 0;
2496 reverse <= (HAVE_PRE_DECREMENT || HAVE_POST_DECREMENT);
2497 reverse++)
2499 l = len;
2500 max_size = STORE_MAX_PIECES + 1;
2501 while (max_size > 1 && l > 0)
2503 mode = widest_int_mode_for_size (max_size);
2505 if (mode == VOIDmode)
2506 break;
2508 icode = optab_handler (mov_optab, mode);
2509 if (icode != CODE_FOR_nothing
2510 && align >= GET_MODE_ALIGNMENT (mode))
2512 unsigned int size = GET_MODE_SIZE (mode);
2514 while (l >= size)
2516 if (reverse)
2517 offset -= size;
2519 cst = (*constfun) (constfundata, offset, mode);
2520 if (!targetm.legitimate_constant_p (mode, cst))
2521 return 0;
2523 if (!reverse)
2524 offset += size;
2526 l -= size;
2530 max_size = GET_MODE_SIZE (mode);
2533 /* The code above should have handled everything. */
2534 gcc_assert (!l);
2537 return 1;
2540 /* Generate several move instructions to store LEN bytes generated by
2541 CONSTFUN to block TO. (A MEM rtx with BLKmode). CONSTFUNDATA is a
2542 pointer which will be passed as argument in every CONSTFUN call.
2543 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2544 a memset operation and false if it's a copy of a constant string.
2545 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
2546 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
2547 stpcpy. */
2550 store_by_pieces (rtx to, unsigned HOST_WIDE_INT len,
2551 rtx (*constfun) (void *, HOST_WIDE_INT, machine_mode),
2552 void *constfundata, unsigned int align, bool memsetp, int endp)
2554 machine_mode to_addr_mode = get_address_mode (to);
2555 struct store_by_pieces_d data;
2557 if (len == 0)
2559 gcc_assert (endp != 2);
2560 return to;
2563 gcc_assert (targetm.use_by_pieces_infrastructure_p
2564 (len, align,
2565 memsetp
2566 ? SET_BY_PIECES
2567 : STORE_BY_PIECES,
2568 optimize_insn_for_speed_p ()));
2570 data.constfun = constfun;
2571 data.constfundata = constfundata;
2572 data.len = len;
2573 data.to = to;
2574 store_by_pieces_1 (&data, align);
2575 if (endp)
2577 rtx to1;
2579 gcc_assert (!data.reverse);
2580 if (data.autinc_to)
2582 if (endp == 2)
2584 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
2585 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
2586 else
2587 data.to_addr = copy_to_mode_reg (to_addr_mode,
2588 plus_constant (to_addr_mode,
2589 data.to_addr,
2590 -1));
2592 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
2593 data.offset);
2595 else
2597 if (endp == 2)
2598 --data.offset;
2599 to1 = adjust_address (data.to, QImode, data.offset);
2601 return to1;
2603 else
2604 return data.to;
2607 /* Generate several move instructions to clear LEN bytes of block TO. (A MEM
2608 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2610 static void
2611 clear_by_pieces (rtx to, unsigned HOST_WIDE_INT len, unsigned int align)
2613 struct store_by_pieces_d data;
2615 if (len == 0)
2616 return;
2618 data.constfun = clear_by_pieces_1;
2619 data.constfundata = NULL;
2620 data.len = len;
2621 data.to = to;
2622 store_by_pieces_1 (&data, align);
2625 /* Callback routine for clear_by_pieces.
2626 Return const0_rtx unconditionally. */
2628 static rtx
2629 clear_by_pieces_1 (void *data ATTRIBUTE_UNUSED,
2630 HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
2631 machine_mode mode ATTRIBUTE_UNUSED)
2633 return const0_rtx;
2636 /* Subroutine of clear_by_pieces and store_by_pieces.
2637 Generate several move instructions to store LEN bytes of block TO. (A MEM
2638 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2640 static void
2641 store_by_pieces_1 (struct store_by_pieces_d *data ATTRIBUTE_UNUSED,
2642 unsigned int align ATTRIBUTE_UNUSED)
2644 machine_mode to_addr_mode = get_address_mode (data->to);
2645 rtx to_addr = XEXP (data->to, 0);
2646 unsigned int max_size = STORE_MAX_PIECES + 1;
2647 enum insn_code icode;
2649 data->offset = 0;
2650 data->to_addr = to_addr;
2651 data->autinc_to
2652 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
2653 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
2655 data->explicit_inc_to = 0;
2656 data->reverse
2657 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
2658 if (data->reverse)
2659 data->offset = data->len;
2661 /* If storing requires more than two move insns,
2662 copy addresses to registers (to make displacements shorter)
2663 and use post-increment if available. */
2664 if (!data->autinc_to
2665 && move_by_pieces_ninsns (data->len, align, max_size) > 2)
2667 /* Determine the main mode we'll be using.
2668 MODE might not be used depending on the definitions of the
2669 USE_* macros below. */
2670 machine_mode mode ATTRIBUTE_UNUSED
2671 = widest_int_mode_for_size (max_size);
2673 if (USE_STORE_PRE_DECREMENT (mode) && data->reverse && ! data->autinc_to)
2675 data->to_addr = copy_to_mode_reg (to_addr_mode,
2676 plus_constant (to_addr_mode,
2677 to_addr,
2678 data->len));
2679 data->autinc_to = 1;
2680 data->explicit_inc_to = -1;
2683 if (USE_STORE_POST_INCREMENT (mode) && ! data->reverse
2684 && ! data->autinc_to)
2686 data->to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
2687 data->autinc_to = 1;
2688 data->explicit_inc_to = 1;
2691 if ( !data->autinc_to && CONSTANT_P (to_addr))
2692 data->to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
2695 align = alignment_for_piecewise_move (STORE_MAX_PIECES, align);
2697 /* First store what we can in the largest integer mode, then go to
2698 successively smaller modes. */
2700 while (max_size > 1 && data->len > 0)
2702 machine_mode mode = widest_int_mode_for_size (max_size);
2704 if (mode == VOIDmode)
2705 break;
2707 icode = optab_handler (mov_optab, mode);
2708 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
2709 store_by_pieces_2 (GEN_FCN (icode), mode, data);
2711 max_size = GET_MODE_SIZE (mode);
2714 /* The code above should have handled everything. */
2715 gcc_assert (!data->len);
2718 /* Subroutine of store_by_pieces_1. Store as many bytes as appropriate
2719 with move instructions for mode MODE. GENFUN is the gen_... function
2720 to make a move insn for that mode. DATA has all the other info. */
2722 static void
2723 store_by_pieces_2 (insn_gen_fn genfun, machine_mode mode,
2724 struct store_by_pieces_d *data)
2726 unsigned int size = GET_MODE_SIZE (mode);
2727 rtx to1, cst;
2729 while (data->len >= size)
2731 if (data->reverse)
2732 data->offset -= size;
2734 if (data->autinc_to)
2735 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
2736 data->offset);
2737 else
2738 to1 = adjust_address (data->to, mode, data->offset);
2740 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
2741 emit_insn (gen_add2_insn (data->to_addr,
2742 gen_int_mode (-(HOST_WIDE_INT) size,
2743 GET_MODE (data->to_addr))));
2745 cst = (*data->constfun) (data->constfundata, data->offset, mode);
2746 emit_insn ((*genfun) (to1, cst));
2748 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
2749 emit_insn (gen_add2_insn (data->to_addr,
2750 gen_int_mode (size,
2751 GET_MODE (data->to_addr))));
2753 if (! data->reverse)
2754 data->offset += size;
2756 data->len -= size;
2760 /* Write zeros through the storage of OBJECT. If OBJECT has BLKmode, SIZE is
2761 its length in bytes. */
2764 clear_storage_hints (rtx object, rtx size, enum block_op_methods method,
2765 unsigned int expected_align, HOST_WIDE_INT expected_size,
2766 unsigned HOST_WIDE_INT min_size,
2767 unsigned HOST_WIDE_INT max_size,
2768 unsigned HOST_WIDE_INT probable_max_size)
2770 machine_mode mode = GET_MODE (object);
2771 unsigned int align;
2773 gcc_assert (method == BLOCK_OP_NORMAL || method == BLOCK_OP_TAILCALL);
2775 /* If OBJECT is not BLKmode and SIZE is the same size as its mode,
2776 just move a zero. Otherwise, do this a piece at a time. */
2777 if (mode != BLKmode
2778 && CONST_INT_P (size)
2779 && INTVAL (size) == (HOST_WIDE_INT) GET_MODE_SIZE (mode))
2781 rtx zero = CONST0_RTX (mode);
2782 if (zero != NULL)
2784 emit_move_insn (object, zero);
2785 return NULL;
2788 if (COMPLEX_MODE_P (mode))
2790 zero = CONST0_RTX (GET_MODE_INNER (mode));
2791 if (zero != NULL)
2793 write_complex_part (object, zero, 0);
2794 write_complex_part (object, zero, 1);
2795 return NULL;
2800 if (size == const0_rtx)
2801 return NULL;
2803 align = MEM_ALIGN (object);
2805 if (CONST_INT_P (size)
2806 && targetm.use_by_pieces_infrastructure_p (INTVAL (size), align,
2807 CLEAR_BY_PIECES,
2808 optimize_insn_for_speed_p ()))
2809 clear_by_pieces (object, INTVAL (size), align);
2810 else if (set_storage_via_setmem (object, size, const0_rtx, align,
2811 expected_align, expected_size,
2812 min_size, max_size, probable_max_size))
2814 else if (ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (object)))
2815 return set_storage_via_libcall (object, size, const0_rtx,
2816 method == BLOCK_OP_TAILCALL);
2817 else
2818 gcc_unreachable ();
2820 return NULL;
2824 clear_storage (rtx object, rtx size, enum block_op_methods method)
2826 unsigned HOST_WIDE_INT max, min = 0;
2827 if (GET_CODE (size) == CONST_INT)
2828 min = max = UINTVAL (size);
2829 else
2830 max = GET_MODE_MASK (GET_MODE (size));
2831 return clear_storage_hints (object, size, method, 0, -1, min, max, max);
2835 /* A subroutine of clear_storage. Expand a call to memset.
2836 Return the return value of memset, 0 otherwise. */
2839 set_storage_via_libcall (rtx object, rtx size, rtx val, bool tailcall)
2841 tree call_expr, fn, object_tree, size_tree, val_tree;
2842 machine_mode size_mode;
2843 rtx retval;
2845 /* Emit code to copy OBJECT and SIZE into new pseudos. We can then
2846 place those into new pseudos into a VAR_DECL and use them later. */
2848 object = copy_addr_to_reg (XEXP (object, 0));
2850 size_mode = TYPE_MODE (sizetype);
2851 size = convert_to_mode (size_mode, size, 1);
2852 size = copy_to_mode_reg (size_mode, size);
2854 /* It is incorrect to use the libcall calling conventions to call
2855 memset in this context. This could be a user call to memset and
2856 the user may wish to examine the return value from memset. For
2857 targets where libcalls and normal calls have different conventions
2858 for returning pointers, we could end up generating incorrect code. */
2860 object_tree = make_tree (ptr_type_node, object);
2861 if (!CONST_INT_P (val))
2862 val = convert_to_mode (TYPE_MODE (integer_type_node), val, 1);
2863 size_tree = make_tree (sizetype, size);
2864 val_tree = make_tree (integer_type_node, val);
2866 fn = clear_storage_libcall_fn (true);
2867 call_expr = build_call_expr (fn, 3, object_tree, val_tree, size_tree);
2868 CALL_EXPR_TAILCALL (call_expr) = tailcall;
2870 retval = expand_normal (call_expr);
2872 return retval;
2875 /* A subroutine of set_storage_via_libcall. Create the tree node
2876 for the function we use for block clears. */
2878 tree block_clear_fn;
2880 void
2881 init_block_clear_fn (const char *asmspec)
2883 if (!block_clear_fn)
2885 tree fn, args;
2887 fn = get_identifier ("memset");
2888 args = build_function_type_list (ptr_type_node, ptr_type_node,
2889 integer_type_node, sizetype,
2890 NULL_TREE);
2892 fn = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, fn, args);
2893 DECL_EXTERNAL (fn) = 1;
2894 TREE_PUBLIC (fn) = 1;
2895 DECL_ARTIFICIAL (fn) = 1;
2896 TREE_NOTHROW (fn) = 1;
2897 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
2898 DECL_VISIBILITY_SPECIFIED (fn) = 1;
2900 block_clear_fn = fn;
2903 if (asmspec)
2904 set_user_assembler_name (block_clear_fn, asmspec);
2907 static tree
2908 clear_storage_libcall_fn (int for_call)
2910 static bool emitted_extern;
2912 if (!block_clear_fn)
2913 init_block_clear_fn (NULL);
2915 if (for_call && !emitted_extern)
2917 emitted_extern = true;
2918 make_decl_rtl (block_clear_fn);
2921 return block_clear_fn;
2924 /* Expand a setmem pattern; return true if successful. */
2926 bool
2927 set_storage_via_setmem (rtx object, rtx size, rtx val, unsigned int align,
2928 unsigned int expected_align, HOST_WIDE_INT expected_size,
2929 unsigned HOST_WIDE_INT min_size,
2930 unsigned HOST_WIDE_INT max_size,
2931 unsigned HOST_WIDE_INT probable_max_size)
2933 /* Try the most limited insn first, because there's no point
2934 including more than one in the machine description unless
2935 the more limited one has some advantage. */
2937 machine_mode mode;
2939 if (expected_align < align)
2940 expected_align = align;
2941 if (expected_size != -1)
2943 if ((unsigned HOST_WIDE_INT)expected_size > max_size)
2944 expected_size = max_size;
2945 if ((unsigned HOST_WIDE_INT)expected_size < min_size)
2946 expected_size = min_size;
2949 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
2950 mode = GET_MODE_WIDER_MODE (mode))
2952 enum insn_code code = direct_optab_handler (setmem_optab, mode);
2954 if (code != CODE_FOR_nothing
2955 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
2956 here because if SIZE is less than the mode mask, as it is
2957 returned by the macro, it will definitely be less than the
2958 actual mode mask. Since SIZE is within the Pmode address
2959 space, we limit MODE to Pmode. */
2960 && ((CONST_INT_P (size)
2961 && ((unsigned HOST_WIDE_INT) INTVAL (size)
2962 <= (GET_MODE_MASK (mode) >> 1)))
2963 || max_size <= (GET_MODE_MASK (mode) >> 1)
2964 || GET_MODE_BITSIZE (mode) >= GET_MODE_BITSIZE (Pmode)))
2966 struct expand_operand ops[9];
2967 unsigned int nops;
2969 nops = insn_data[(int) code].n_generator_args;
2970 gcc_assert (nops == 4 || nops == 6 || nops == 8 || nops == 9);
2972 create_fixed_operand (&ops[0], object);
2973 /* The check above guarantees that this size conversion is valid. */
2974 create_convert_operand_to (&ops[1], size, mode, true);
2975 create_convert_operand_from (&ops[2], val, byte_mode, true);
2976 create_integer_operand (&ops[3], align / BITS_PER_UNIT);
2977 if (nops >= 6)
2979 create_integer_operand (&ops[4], expected_align / BITS_PER_UNIT);
2980 create_integer_operand (&ops[5], expected_size);
2982 if (nops >= 8)
2984 create_integer_operand (&ops[6], min_size);
2985 /* If we can not represent the maximal size,
2986 make parameter NULL. */
2987 if ((HOST_WIDE_INT) max_size != -1)
2988 create_integer_operand (&ops[7], max_size);
2989 else
2990 create_fixed_operand (&ops[7], NULL);
2992 if (nops == 9)
2994 /* If we can not represent the maximal size,
2995 make parameter NULL. */
2996 if ((HOST_WIDE_INT) probable_max_size != -1)
2997 create_integer_operand (&ops[8], probable_max_size);
2998 else
2999 create_fixed_operand (&ops[8], NULL);
3001 if (maybe_expand_insn (code, nops, ops))
3002 return true;
3006 return false;
3010 /* Write to one of the components of the complex value CPLX. Write VAL to
3011 the real part if IMAG_P is false, and the imaginary part if its true. */
3013 void
3014 write_complex_part (rtx cplx, rtx val, bool imag_p)
3016 machine_mode cmode;
3017 machine_mode imode;
3018 unsigned ibitsize;
3020 if (GET_CODE (cplx) == CONCAT)
3022 emit_move_insn (XEXP (cplx, imag_p), val);
3023 return;
3026 cmode = GET_MODE (cplx);
3027 imode = GET_MODE_INNER (cmode);
3028 ibitsize = GET_MODE_BITSIZE (imode);
3030 /* For MEMs simplify_gen_subreg may generate an invalid new address
3031 because, e.g., the original address is considered mode-dependent
3032 by the target, which restricts simplify_subreg from invoking
3033 adjust_address_nv. Instead of preparing fallback support for an
3034 invalid address, we call adjust_address_nv directly. */
3035 if (MEM_P (cplx))
3037 emit_move_insn (adjust_address_nv (cplx, imode,
3038 imag_p ? GET_MODE_SIZE (imode) : 0),
3039 val);
3040 return;
3043 /* If the sub-object is at least word sized, then we know that subregging
3044 will work. This special case is important, since store_bit_field
3045 wants to operate on integer modes, and there's rarely an OImode to
3046 correspond to TCmode. */
3047 if (ibitsize >= BITS_PER_WORD
3048 /* For hard regs we have exact predicates. Assume we can split
3049 the original object if it spans an even number of hard regs.
3050 This special case is important for SCmode on 64-bit platforms
3051 where the natural size of floating-point regs is 32-bit. */
3052 || (REG_P (cplx)
3053 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
3054 && REG_NREGS (cplx) % 2 == 0))
3056 rtx part = simplify_gen_subreg (imode, cplx, cmode,
3057 imag_p ? GET_MODE_SIZE (imode) : 0);
3058 if (part)
3060 emit_move_insn (part, val);
3061 return;
3063 else
3064 /* simplify_gen_subreg may fail for sub-word MEMs. */
3065 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
3068 store_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0, 0, 0, imode, val);
3071 /* Extract one of the components of the complex value CPLX. Extract the
3072 real part if IMAG_P is false, and the imaginary part if it's true. */
3074 static rtx
3075 read_complex_part (rtx cplx, bool imag_p)
3077 machine_mode cmode, imode;
3078 unsigned ibitsize;
3080 if (GET_CODE (cplx) == CONCAT)
3081 return XEXP (cplx, imag_p);
3083 cmode = GET_MODE (cplx);
3084 imode = GET_MODE_INNER (cmode);
3085 ibitsize = GET_MODE_BITSIZE (imode);
3087 /* Special case reads from complex constants that got spilled to memory. */
3088 if (MEM_P (cplx) && GET_CODE (XEXP (cplx, 0)) == SYMBOL_REF)
3090 tree decl = SYMBOL_REF_DECL (XEXP (cplx, 0));
3091 if (decl && TREE_CODE (decl) == COMPLEX_CST)
3093 tree part = imag_p ? TREE_IMAGPART (decl) : TREE_REALPART (decl);
3094 if (CONSTANT_CLASS_P (part))
3095 return expand_expr (part, NULL_RTX, imode, EXPAND_NORMAL);
3099 /* For MEMs simplify_gen_subreg may generate an invalid new address
3100 because, e.g., the original address is considered mode-dependent
3101 by the target, which restricts simplify_subreg from invoking
3102 adjust_address_nv. Instead of preparing fallback support for an
3103 invalid address, we call adjust_address_nv directly. */
3104 if (MEM_P (cplx))
3105 return adjust_address_nv (cplx, imode,
3106 imag_p ? GET_MODE_SIZE (imode) : 0);
3108 /* If the sub-object is at least word sized, then we know that subregging
3109 will work. This special case is important, since extract_bit_field
3110 wants to operate on integer modes, and there's rarely an OImode to
3111 correspond to TCmode. */
3112 if (ibitsize >= BITS_PER_WORD
3113 /* For hard regs we have exact predicates. Assume we can split
3114 the original object if it spans an even number of hard regs.
3115 This special case is important for SCmode on 64-bit platforms
3116 where the natural size of floating-point regs is 32-bit. */
3117 || (REG_P (cplx)
3118 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
3119 && REG_NREGS (cplx) % 2 == 0))
3121 rtx ret = simplify_gen_subreg (imode, cplx, cmode,
3122 imag_p ? GET_MODE_SIZE (imode) : 0);
3123 if (ret)
3124 return ret;
3125 else
3126 /* simplify_gen_subreg may fail for sub-word MEMs. */
3127 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
3130 return extract_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0,
3131 true, NULL_RTX, imode, imode);
3134 /* A subroutine of emit_move_insn_1. Yet another lowpart generator.
3135 NEW_MODE and OLD_MODE are the same size. Return NULL if X cannot be
3136 represented in NEW_MODE. If FORCE is true, this will never happen, as
3137 we'll force-create a SUBREG if needed. */
3139 static rtx
3140 emit_move_change_mode (machine_mode new_mode,
3141 machine_mode old_mode, rtx x, bool force)
3143 rtx ret;
3145 if (push_operand (x, GET_MODE (x)))
3147 ret = gen_rtx_MEM (new_mode, XEXP (x, 0));
3148 MEM_COPY_ATTRIBUTES (ret, x);
3150 else if (MEM_P (x))
3152 /* We don't have to worry about changing the address since the
3153 size in bytes is supposed to be the same. */
3154 if (reload_in_progress)
3156 /* Copy the MEM to change the mode and move any
3157 substitutions from the old MEM to the new one. */
3158 ret = adjust_address_nv (x, new_mode, 0);
3159 copy_replacements (x, ret);
3161 else
3162 ret = adjust_address (x, new_mode, 0);
3164 else
3166 /* Note that we do want simplify_subreg's behavior of validating
3167 that the new mode is ok for a hard register. If we were to use
3168 simplify_gen_subreg, we would create the subreg, but would
3169 probably run into the target not being able to implement it. */
3170 /* Except, of course, when FORCE is true, when this is exactly what
3171 we want. Which is needed for CCmodes on some targets. */
3172 if (force)
3173 ret = simplify_gen_subreg (new_mode, x, old_mode, 0);
3174 else
3175 ret = simplify_subreg (new_mode, x, old_mode, 0);
3178 return ret;
3181 /* A subroutine of emit_move_insn_1. Generate a move from Y into X using
3182 an integer mode of the same size as MODE. Returns the instruction
3183 emitted, or NULL if such a move could not be generated. */
3185 static rtx_insn *
3186 emit_move_via_integer (machine_mode mode, rtx x, rtx y, bool force)
3188 machine_mode imode;
3189 enum insn_code code;
3191 /* There must exist a mode of the exact size we require. */
3192 imode = int_mode_for_mode (mode);
3193 if (imode == BLKmode)
3194 return NULL;
3196 /* The target must support moves in this mode. */
3197 code = optab_handler (mov_optab, imode);
3198 if (code == CODE_FOR_nothing)
3199 return NULL;
3201 x = emit_move_change_mode (imode, mode, x, force);
3202 if (x == NULL_RTX)
3203 return NULL;
3204 y = emit_move_change_mode (imode, mode, y, force);
3205 if (y == NULL_RTX)
3206 return NULL;
3207 return emit_insn (GEN_FCN (code) (x, y));
3210 /* A subroutine of emit_move_insn_1. X is a push_operand in MODE.
3211 Return an equivalent MEM that does not use an auto-increment. */
3214 emit_move_resolve_push (machine_mode mode, rtx x)
3216 enum rtx_code code = GET_CODE (XEXP (x, 0));
3217 HOST_WIDE_INT adjust;
3218 rtx temp;
3220 adjust = GET_MODE_SIZE (mode);
3221 #ifdef PUSH_ROUNDING
3222 adjust = PUSH_ROUNDING (adjust);
3223 #endif
3224 if (code == PRE_DEC || code == POST_DEC)
3225 adjust = -adjust;
3226 else if (code == PRE_MODIFY || code == POST_MODIFY)
3228 rtx expr = XEXP (XEXP (x, 0), 1);
3229 HOST_WIDE_INT val;
3231 gcc_assert (GET_CODE (expr) == PLUS || GET_CODE (expr) == MINUS);
3232 gcc_assert (CONST_INT_P (XEXP (expr, 1)));
3233 val = INTVAL (XEXP (expr, 1));
3234 if (GET_CODE (expr) == MINUS)
3235 val = -val;
3236 gcc_assert (adjust == val || adjust == -val);
3237 adjust = val;
3240 /* Do not use anti_adjust_stack, since we don't want to update
3241 stack_pointer_delta. */
3242 temp = expand_simple_binop (Pmode, PLUS, stack_pointer_rtx,
3243 gen_int_mode (adjust, Pmode), stack_pointer_rtx,
3244 0, OPTAB_LIB_WIDEN);
3245 if (temp != stack_pointer_rtx)
3246 emit_move_insn (stack_pointer_rtx, temp);
3248 switch (code)
3250 case PRE_INC:
3251 case PRE_DEC:
3252 case PRE_MODIFY:
3253 temp = stack_pointer_rtx;
3254 break;
3255 case POST_INC:
3256 case POST_DEC:
3257 case POST_MODIFY:
3258 temp = plus_constant (Pmode, stack_pointer_rtx, -adjust);
3259 break;
3260 default:
3261 gcc_unreachable ();
3264 return replace_equiv_address (x, temp);
3267 /* A subroutine of emit_move_complex. Generate a move from Y into X.
3268 X is known to satisfy push_operand, and MODE is known to be complex.
3269 Returns the last instruction emitted. */
3271 rtx_insn *
3272 emit_move_complex_push (machine_mode mode, rtx x, rtx y)
3274 machine_mode submode = GET_MODE_INNER (mode);
3275 bool imag_first;
3277 #ifdef PUSH_ROUNDING
3278 unsigned int submodesize = GET_MODE_SIZE (submode);
3280 /* In case we output to the stack, but the size is smaller than the
3281 machine can push exactly, we need to use move instructions. */
3282 if (PUSH_ROUNDING (submodesize) != submodesize)
3284 x = emit_move_resolve_push (mode, x);
3285 return emit_move_insn (x, y);
3287 #endif
3289 /* Note that the real part always precedes the imag part in memory
3290 regardless of machine's endianness. */
3291 switch (GET_CODE (XEXP (x, 0)))
3293 case PRE_DEC:
3294 case POST_DEC:
3295 imag_first = true;
3296 break;
3297 case PRE_INC:
3298 case POST_INC:
3299 imag_first = false;
3300 break;
3301 default:
3302 gcc_unreachable ();
3305 emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3306 read_complex_part (y, imag_first));
3307 return emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3308 read_complex_part (y, !imag_first));
3311 /* A subroutine of emit_move_complex. Perform the move from Y to X
3312 via two moves of the parts. Returns the last instruction emitted. */
3314 rtx_insn *
3315 emit_move_complex_parts (rtx x, rtx y)
3317 /* Show the output dies here. This is necessary for SUBREGs
3318 of pseudos since we cannot track their lifetimes correctly;
3319 hard regs shouldn't appear here except as return values. */
3320 if (!reload_completed && !reload_in_progress
3321 && REG_P (x) && !reg_overlap_mentioned_p (x, y))
3322 emit_clobber (x);
3324 write_complex_part (x, read_complex_part (y, false), false);
3325 write_complex_part (x, read_complex_part (y, true), true);
3327 return get_last_insn ();
3330 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3331 MODE is known to be complex. Returns the last instruction emitted. */
3333 static rtx_insn *
3334 emit_move_complex (machine_mode mode, rtx x, rtx y)
3336 bool try_int;
3338 /* Need to take special care for pushes, to maintain proper ordering
3339 of the data, and possibly extra padding. */
3340 if (push_operand (x, mode))
3341 return emit_move_complex_push (mode, x, y);
3343 /* See if we can coerce the target into moving both values at once, except
3344 for floating point where we favor moving as parts if this is easy. */
3345 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
3346 && optab_handler (mov_optab, GET_MODE_INNER (mode)) != CODE_FOR_nothing
3347 && !(REG_P (x)
3348 && HARD_REGISTER_P (x)
3349 && REG_NREGS (x) == 1)
3350 && !(REG_P (y)
3351 && HARD_REGISTER_P (y)
3352 && REG_NREGS (y) == 1))
3353 try_int = false;
3354 /* Not possible if the values are inherently not adjacent. */
3355 else if (GET_CODE (x) == CONCAT || GET_CODE (y) == CONCAT)
3356 try_int = false;
3357 /* Is possible if both are registers (or subregs of registers). */
3358 else if (register_operand (x, mode) && register_operand (y, mode))
3359 try_int = true;
3360 /* If one of the operands is a memory, and alignment constraints
3361 are friendly enough, we may be able to do combined memory operations.
3362 We do not attempt this if Y is a constant because that combination is
3363 usually better with the by-parts thing below. */
3364 else if ((MEM_P (x) ? !CONSTANT_P (y) : MEM_P (y))
3365 && (!STRICT_ALIGNMENT
3366 || get_mode_alignment (mode) == BIGGEST_ALIGNMENT))
3367 try_int = true;
3368 else
3369 try_int = false;
3371 if (try_int)
3373 rtx_insn *ret;
3375 /* For memory to memory moves, optimal behavior can be had with the
3376 existing block move logic. */
3377 if (MEM_P (x) && MEM_P (y))
3379 emit_block_move (x, y, GEN_INT (GET_MODE_SIZE (mode)),
3380 BLOCK_OP_NO_LIBCALL);
3381 return get_last_insn ();
3384 ret = emit_move_via_integer (mode, x, y, true);
3385 if (ret)
3386 return ret;
3389 return emit_move_complex_parts (x, y);
3392 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3393 MODE is known to be MODE_CC. Returns the last instruction emitted. */
3395 static rtx_insn *
3396 emit_move_ccmode (machine_mode mode, rtx x, rtx y)
3398 rtx_insn *ret;
3400 /* Assume all MODE_CC modes are equivalent; if we have movcc, use it. */
3401 if (mode != CCmode)
3403 enum insn_code code = optab_handler (mov_optab, CCmode);
3404 if (code != CODE_FOR_nothing)
3406 x = emit_move_change_mode (CCmode, mode, x, true);
3407 y = emit_move_change_mode (CCmode, mode, y, true);
3408 return emit_insn (GEN_FCN (code) (x, y));
3412 /* Otherwise, find the MODE_INT mode of the same width. */
3413 ret = emit_move_via_integer (mode, x, y, false);
3414 gcc_assert (ret != NULL);
3415 return ret;
3418 /* Return true if word I of OP lies entirely in the
3419 undefined bits of a paradoxical subreg. */
3421 static bool
3422 undefined_operand_subword_p (const_rtx op, int i)
3424 machine_mode innermode, innermostmode;
3425 int offset;
3426 if (GET_CODE (op) != SUBREG)
3427 return false;
3428 innermode = GET_MODE (op);
3429 innermostmode = GET_MODE (SUBREG_REG (op));
3430 offset = i * UNITS_PER_WORD + SUBREG_BYTE (op);
3431 /* The SUBREG_BYTE represents offset, as if the value were stored in
3432 memory, except for a paradoxical subreg where we define
3433 SUBREG_BYTE to be 0; undo this exception as in
3434 simplify_subreg. */
3435 if (SUBREG_BYTE (op) == 0
3436 && GET_MODE_SIZE (innermostmode) < GET_MODE_SIZE (innermode))
3438 int difference = (GET_MODE_SIZE (innermostmode) - GET_MODE_SIZE (innermode));
3439 if (WORDS_BIG_ENDIAN)
3440 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
3441 if (BYTES_BIG_ENDIAN)
3442 offset += difference % UNITS_PER_WORD;
3444 if (offset >= GET_MODE_SIZE (innermostmode)
3445 || offset <= -GET_MODE_SIZE (word_mode))
3446 return true;
3447 return false;
3450 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3451 MODE is any multi-word or full-word mode that lacks a move_insn
3452 pattern. Note that you will get better code if you define such
3453 patterns, even if they must turn into multiple assembler instructions. */
3455 static rtx_insn *
3456 emit_move_multi_word (machine_mode mode, rtx x, rtx y)
3458 rtx_insn *last_insn = 0;
3459 rtx_insn *seq;
3460 rtx inner;
3461 bool need_clobber;
3462 int i;
3464 gcc_assert (GET_MODE_SIZE (mode) >= UNITS_PER_WORD);
3466 /* If X is a push on the stack, do the push now and replace
3467 X with a reference to the stack pointer. */
3468 if (push_operand (x, mode))
3469 x = emit_move_resolve_push (mode, x);
3471 /* If we are in reload, see if either operand is a MEM whose address
3472 is scheduled for replacement. */
3473 if (reload_in_progress && MEM_P (x)
3474 && (inner = find_replacement (&XEXP (x, 0))) != XEXP (x, 0))
3475 x = replace_equiv_address_nv (x, inner);
3476 if (reload_in_progress && MEM_P (y)
3477 && (inner = find_replacement (&XEXP (y, 0))) != XEXP (y, 0))
3478 y = replace_equiv_address_nv (y, inner);
3480 start_sequence ();
3482 need_clobber = false;
3483 for (i = 0;
3484 i < (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
3485 i++)
3487 rtx xpart = operand_subword (x, i, 1, mode);
3488 rtx ypart;
3490 /* Do not generate code for a move if it would come entirely
3491 from the undefined bits of a paradoxical subreg. */
3492 if (undefined_operand_subword_p (y, i))
3493 continue;
3495 ypart = operand_subword (y, i, 1, mode);
3497 /* If we can't get a part of Y, put Y into memory if it is a
3498 constant. Otherwise, force it into a register. Then we must
3499 be able to get a part of Y. */
3500 if (ypart == 0 && CONSTANT_P (y))
3502 y = use_anchored_address (force_const_mem (mode, y));
3503 ypart = operand_subword (y, i, 1, mode);
3505 else if (ypart == 0)
3506 ypart = operand_subword_force (y, i, mode);
3508 gcc_assert (xpart && ypart);
3510 need_clobber |= (GET_CODE (xpart) == SUBREG);
3512 last_insn = emit_move_insn (xpart, ypart);
3515 seq = get_insns ();
3516 end_sequence ();
3518 /* Show the output dies here. This is necessary for SUBREGs
3519 of pseudos since we cannot track their lifetimes correctly;
3520 hard regs shouldn't appear here except as return values.
3521 We never want to emit such a clobber after reload. */
3522 if (x != y
3523 && ! (reload_in_progress || reload_completed)
3524 && need_clobber != 0)
3525 emit_clobber (x);
3527 emit_insn (seq);
3529 return last_insn;
3532 /* Low level part of emit_move_insn.
3533 Called just like emit_move_insn, but assumes X and Y
3534 are basically valid. */
3536 rtx_insn *
3537 emit_move_insn_1 (rtx x, rtx y)
3539 machine_mode mode = GET_MODE (x);
3540 enum insn_code code;
3542 gcc_assert ((unsigned int) mode < (unsigned int) MAX_MACHINE_MODE);
3544 code = optab_handler (mov_optab, mode);
3545 if (code != CODE_FOR_nothing)
3546 return emit_insn (GEN_FCN (code) (x, y));
3548 /* Expand complex moves by moving real part and imag part. */
3549 if (COMPLEX_MODE_P (mode))
3550 return emit_move_complex (mode, x, y);
3552 if (GET_MODE_CLASS (mode) == MODE_DECIMAL_FLOAT
3553 || ALL_FIXED_POINT_MODE_P (mode))
3555 rtx_insn *result = emit_move_via_integer (mode, x, y, true);
3557 /* If we can't find an integer mode, use multi words. */
3558 if (result)
3559 return result;
3560 else
3561 return emit_move_multi_word (mode, x, y);
3564 if (GET_MODE_CLASS (mode) == MODE_CC)
3565 return emit_move_ccmode (mode, x, y);
3567 /* Try using a move pattern for the corresponding integer mode. This is
3568 only safe when simplify_subreg can convert MODE constants into integer
3569 constants. At present, it can only do this reliably if the value
3570 fits within a HOST_WIDE_INT. */
3571 if (!CONSTANT_P (y) || GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
3573 rtx_insn *ret = emit_move_via_integer (mode, x, y, lra_in_progress);
3575 if (ret)
3577 if (! lra_in_progress || recog (PATTERN (ret), ret, 0) >= 0)
3578 return ret;
3582 return emit_move_multi_word (mode, x, y);
3585 /* Generate code to copy Y into X.
3586 Both Y and X must have the same mode, except that
3587 Y can be a constant with VOIDmode.
3588 This mode cannot be BLKmode; use emit_block_move for that.
3590 Return the last instruction emitted. */
3592 rtx_insn *
3593 emit_move_insn (rtx x, rtx y)
3595 machine_mode mode = GET_MODE (x);
3596 rtx y_cst = NULL_RTX;
3597 rtx_insn *last_insn;
3598 rtx set;
3600 gcc_assert (mode != BLKmode
3601 && (GET_MODE (y) == mode || GET_MODE (y) == VOIDmode));
3603 if (CONSTANT_P (y))
3605 if (optimize
3606 && SCALAR_FLOAT_MODE_P (GET_MODE (x))
3607 && (last_insn = compress_float_constant (x, y)))
3608 return last_insn;
3610 y_cst = y;
3612 if (!targetm.legitimate_constant_p (mode, y))
3614 y = force_const_mem (mode, y);
3616 /* If the target's cannot_force_const_mem prevented the spill,
3617 assume that the target's move expanders will also take care
3618 of the non-legitimate constant. */
3619 if (!y)
3620 y = y_cst;
3621 else
3622 y = use_anchored_address (y);
3626 /* If X or Y are memory references, verify that their addresses are valid
3627 for the machine. */
3628 if (MEM_P (x)
3629 && (! memory_address_addr_space_p (GET_MODE (x), XEXP (x, 0),
3630 MEM_ADDR_SPACE (x))
3631 && ! push_operand (x, GET_MODE (x))))
3632 x = validize_mem (x);
3634 if (MEM_P (y)
3635 && ! memory_address_addr_space_p (GET_MODE (y), XEXP (y, 0),
3636 MEM_ADDR_SPACE (y)))
3637 y = validize_mem (y);
3639 gcc_assert (mode != BLKmode);
3641 last_insn = emit_move_insn_1 (x, y);
3643 if (y_cst && REG_P (x)
3644 && (set = single_set (last_insn)) != NULL_RTX
3645 && SET_DEST (set) == x
3646 && ! rtx_equal_p (y_cst, SET_SRC (set)))
3647 set_unique_reg_note (last_insn, REG_EQUAL, copy_rtx (y_cst));
3649 return last_insn;
3652 /* Generate the body of an instruction to copy Y into X.
3653 It may be a list of insns, if one insn isn't enough. */
3656 gen_move_insn (rtx x, rtx y)
3658 rtx_insn *seq;
3660 start_sequence ();
3661 emit_move_insn_1 (x, y);
3662 seq = get_insns ();
3663 end_sequence ();
3664 return seq;
3667 /* If Y is representable exactly in a narrower mode, and the target can
3668 perform the extension directly from constant or memory, then emit the
3669 move as an extension. */
3671 static rtx_insn *
3672 compress_float_constant (rtx x, rtx y)
3674 machine_mode dstmode = GET_MODE (x);
3675 machine_mode orig_srcmode = GET_MODE (y);
3676 machine_mode srcmode;
3677 REAL_VALUE_TYPE r;
3678 int oldcost, newcost;
3679 bool speed = optimize_insn_for_speed_p ();
3681 REAL_VALUE_FROM_CONST_DOUBLE (r, y);
3683 if (targetm.legitimate_constant_p (dstmode, y))
3684 oldcost = set_src_cost (y, speed);
3685 else
3686 oldcost = set_src_cost (force_const_mem (dstmode, y), speed);
3688 for (srcmode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_srcmode));
3689 srcmode != orig_srcmode;
3690 srcmode = GET_MODE_WIDER_MODE (srcmode))
3692 enum insn_code ic;
3693 rtx trunc_y;
3694 rtx_insn *last_insn;
3696 /* Skip if the target can't extend this way. */
3697 ic = can_extend_p (dstmode, srcmode, 0);
3698 if (ic == CODE_FOR_nothing)
3699 continue;
3701 /* Skip if the narrowed value isn't exact. */
3702 if (! exact_real_truncate (srcmode, &r))
3703 continue;
3705 trunc_y = CONST_DOUBLE_FROM_REAL_VALUE (r, srcmode);
3707 if (targetm.legitimate_constant_p (srcmode, trunc_y))
3709 /* Skip if the target needs extra instructions to perform
3710 the extension. */
3711 if (!insn_operand_matches (ic, 1, trunc_y))
3712 continue;
3713 /* This is valid, but may not be cheaper than the original. */
3714 newcost = set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y),
3715 speed);
3716 if (oldcost < newcost)
3717 continue;
3719 else if (float_extend_from_mem[dstmode][srcmode])
3721 trunc_y = force_const_mem (srcmode, trunc_y);
3722 /* This is valid, but may not be cheaper than the original. */
3723 newcost = set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y),
3724 speed);
3725 if (oldcost < newcost)
3726 continue;
3727 trunc_y = validize_mem (trunc_y);
3729 else
3730 continue;
3732 /* For CSE's benefit, force the compressed constant pool entry
3733 into a new pseudo. This constant may be used in different modes,
3734 and if not, combine will put things back together for us. */
3735 trunc_y = force_reg (srcmode, trunc_y);
3737 /* If x is a hard register, perform the extension into a pseudo,
3738 so that e.g. stack realignment code is aware of it. */
3739 rtx target = x;
3740 if (REG_P (x) && HARD_REGISTER_P (x))
3741 target = gen_reg_rtx (dstmode);
3743 emit_unop_insn (ic, target, trunc_y, UNKNOWN);
3744 last_insn = get_last_insn ();
3746 if (REG_P (target))
3747 set_unique_reg_note (last_insn, REG_EQUAL, y);
3749 if (target != x)
3750 return emit_move_insn (x, target);
3751 return last_insn;
3754 return NULL;
3757 /* Pushing data onto the stack. */
3759 /* Push a block of length SIZE (perhaps variable)
3760 and return an rtx to address the beginning of the block.
3761 The value may be virtual_outgoing_args_rtx.
3763 EXTRA is the number of bytes of padding to push in addition to SIZE.
3764 BELOW nonzero means this padding comes at low addresses;
3765 otherwise, the padding comes at high addresses. */
3768 push_block (rtx size, int extra, int below)
3770 rtx temp;
3772 size = convert_modes (Pmode, ptr_mode, size, 1);
3773 if (CONSTANT_P (size))
3774 anti_adjust_stack (plus_constant (Pmode, size, extra));
3775 else if (REG_P (size) && extra == 0)
3776 anti_adjust_stack (size);
3777 else
3779 temp = copy_to_mode_reg (Pmode, size);
3780 if (extra != 0)
3781 temp = expand_binop (Pmode, add_optab, temp,
3782 gen_int_mode (extra, Pmode),
3783 temp, 0, OPTAB_LIB_WIDEN);
3784 anti_adjust_stack (temp);
3787 #ifndef STACK_GROWS_DOWNWARD
3788 if (0)
3789 #else
3790 if (1)
3791 #endif
3793 temp = virtual_outgoing_args_rtx;
3794 if (extra != 0 && below)
3795 temp = plus_constant (Pmode, temp, extra);
3797 else
3799 if (CONST_INT_P (size))
3800 temp = plus_constant (Pmode, virtual_outgoing_args_rtx,
3801 -INTVAL (size) - (below ? 0 : extra));
3802 else if (extra != 0 && !below)
3803 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3804 negate_rtx (Pmode, plus_constant (Pmode, size,
3805 extra)));
3806 else
3807 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3808 negate_rtx (Pmode, size));
3811 return memory_address (GET_CLASS_NARROWEST_MODE (MODE_INT), temp);
3814 /* A utility routine that returns the base of an auto-inc memory, or NULL. */
3816 static rtx
3817 mem_autoinc_base (rtx mem)
3819 if (MEM_P (mem))
3821 rtx addr = XEXP (mem, 0);
3822 if (GET_RTX_CLASS (GET_CODE (addr)) == RTX_AUTOINC)
3823 return XEXP (addr, 0);
3825 return NULL;
3828 /* A utility routine used here, in reload, and in try_split. The insns
3829 after PREV up to and including LAST are known to adjust the stack,
3830 with a final value of END_ARGS_SIZE. Iterate backward from LAST
3831 placing notes as appropriate. PREV may be NULL, indicating the
3832 entire insn sequence prior to LAST should be scanned.
3834 The set of allowed stack pointer modifications is small:
3835 (1) One or more auto-inc style memory references (aka pushes),
3836 (2) One or more addition/subtraction with the SP as destination,
3837 (3) A single move insn with the SP as destination,
3838 (4) A call_pop insn,
3839 (5) Noreturn call insns if !ACCUMULATE_OUTGOING_ARGS.
3841 Insns in the sequence that do not modify the SP are ignored,
3842 except for noreturn calls.
3844 The return value is the amount of adjustment that can be trivially
3845 verified, via immediate operand or auto-inc. If the adjustment
3846 cannot be trivially extracted, the return value is INT_MIN. */
3848 HOST_WIDE_INT
3849 find_args_size_adjust (rtx_insn *insn)
3851 rtx dest, set, pat;
3852 int i;
3854 pat = PATTERN (insn);
3855 set = NULL;
3857 /* Look for a call_pop pattern. */
3858 if (CALL_P (insn))
3860 /* We have to allow non-call_pop patterns for the case
3861 of emit_single_push_insn of a TLS address. */
3862 if (GET_CODE (pat) != PARALLEL)
3863 return 0;
3865 /* All call_pop have a stack pointer adjust in the parallel.
3866 The call itself is always first, and the stack adjust is
3867 usually last, so search from the end. */
3868 for (i = XVECLEN (pat, 0) - 1; i > 0; --i)
3870 set = XVECEXP (pat, 0, i);
3871 if (GET_CODE (set) != SET)
3872 continue;
3873 dest = SET_DEST (set);
3874 if (dest == stack_pointer_rtx)
3875 break;
3877 /* We'd better have found the stack pointer adjust. */
3878 if (i == 0)
3879 return 0;
3880 /* Fall through to process the extracted SET and DEST
3881 as if it was a standalone insn. */
3883 else if (GET_CODE (pat) == SET)
3884 set = pat;
3885 else if ((set = single_set (insn)) != NULL)
3887 else if (GET_CODE (pat) == PARALLEL)
3889 /* ??? Some older ports use a parallel with a stack adjust
3890 and a store for a PUSH_ROUNDING pattern, rather than a
3891 PRE/POST_MODIFY rtx. Don't force them to update yet... */
3892 /* ??? See h8300 and m68k, pushqi1. */
3893 for (i = XVECLEN (pat, 0) - 1; i >= 0; --i)
3895 set = XVECEXP (pat, 0, i);
3896 if (GET_CODE (set) != SET)
3897 continue;
3898 dest = SET_DEST (set);
3899 if (dest == stack_pointer_rtx)
3900 break;
3902 /* We do not expect an auto-inc of the sp in the parallel. */
3903 gcc_checking_assert (mem_autoinc_base (dest) != stack_pointer_rtx);
3904 gcc_checking_assert (mem_autoinc_base (SET_SRC (set))
3905 != stack_pointer_rtx);
3907 if (i < 0)
3908 return 0;
3910 else
3911 return 0;
3913 dest = SET_DEST (set);
3915 /* Look for direct modifications of the stack pointer. */
3916 if (REG_P (dest) && REGNO (dest) == STACK_POINTER_REGNUM)
3918 /* Look for a trivial adjustment, otherwise assume nothing. */
3919 /* Note that the SPU restore_stack_block pattern refers to
3920 the stack pointer in V4SImode. Consider that non-trivial. */
3921 if (SCALAR_INT_MODE_P (GET_MODE (dest))
3922 && GET_CODE (SET_SRC (set)) == PLUS
3923 && XEXP (SET_SRC (set), 0) == stack_pointer_rtx
3924 && CONST_INT_P (XEXP (SET_SRC (set), 1)))
3925 return INTVAL (XEXP (SET_SRC (set), 1));
3926 /* ??? Reload can generate no-op moves, which will be cleaned
3927 up later. Recognize it and continue searching. */
3928 else if (rtx_equal_p (dest, SET_SRC (set)))
3929 return 0;
3930 else
3931 return HOST_WIDE_INT_MIN;
3933 else
3935 rtx mem, addr;
3937 /* Otherwise only think about autoinc patterns. */
3938 if (mem_autoinc_base (dest) == stack_pointer_rtx)
3940 mem = dest;
3941 gcc_checking_assert (mem_autoinc_base (SET_SRC (set))
3942 != stack_pointer_rtx);
3944 else if (mem_autoinc_base (SET_SRC (set)) == stack_pointer_rtx)
3945 mem = SET_SRC (set);
3946 else
3947 return 0;
3949 addr = XEXP (mem, 0);
3950 switch (GET_CODE (addr))
3952 case PRE_INC:
3953 case POST_INC:
3954 return GET_MODE_SIZE (GET_MODE (mem));
3955 case PRE_DEC:
3956 case POST_DEC:
3957 return -GET_MODE_SIZE (GET_MODE (mem));
3958 case PRE_MODIFY:
3959 case POST_MODIFY:
3960 addr = XEXP (addr, 1);
3961 gcc_assert (GET_CODE (addr) == PLUS);
3962 gcc_assert (XEXP (addr, 0) == stack_pointer_rtx);
3963 gcc_assert (CONST_INT_P (XEXP (addr, 1)));
3964 return INTVAL (XEXP (addr, 1));
3965 default:
3966 gcc_unreachable ();
3972 fixup_args_size_notes (rtx_insn *prev, rtx_insn *last, int end_args_size)
3974 int args_size = end_args_size;
3975 bool saw_unknown = false;
3976 rtx_insn *insn;
3978 for (insn = last; insn != prev; insn = PREV_INSN (insn))
3980 HOST_WIDE_INT this_delta;
3982 if (!NONDEBUG_INSN_P (insn))
3983 continue;
3985 this_delta = find_args_size_adjust (insn);
3986 if (this_delta == 0)
3988 if (!CALL_P (insn)
3989 || ACCUMULATE_OUTGOING_ARGS
3990 || find_reg_note (insn, REG_NORETURN, NULL_RTX) == NULL_RTX)
3991 continue;
3994 gcc_assert (!saw_unknown);
3995 if (this_delta == HOST_WIDE_INT_MIN)
3996 saw_unknown = true;
3998 add_reg_note (insn, REG_ARGS_SIZE, GEN_INT (args_size));
3999 #ifdef STACK_GROWS_DOWNWARD
4000 this_delta = -(unsigned HOST_WIDE_INT) this_delta;
4001 #endif
4002 args_size -= this_delta;
4005 return saw_unknown ? INT_MIN : args_size;
4008 #ifdef PUSH_ROUNDING
4009 /* Emit single push insn. */
4011 static void
4012 emit_single_push_insn_1 (machine_mode mode, rtx x, tree type)
4014 rtx dest_addr;
4015 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode));
4016 rtx dest;
4017 enum insn_code icode;
4019 stack_pointer_delta += PUSH_ROUNDING (GET_MODE_SIZE (mode));
4020 /* If there is push pattern, use it. Otherwise try old way of throwing
4021 MEM representing push operation to move expander. */
4022 icode = optab_handler (push_optab, mode);
4023 if (icode != CODE_FOR_nothing)
4025 struct expand_operand ops[1];
4027 create_input_operand (&ops[0], x, mode);
4028 if (maybe_expand_insn (icode, 1, ops))
4029 return;
4031 if (GET_MODE_SIZE (mode) == rounded_size)
4032 dest_addr = gen_rtx_fmt_e (STACK_PUSH_CODE, Pmode, stack_pointer_rtx);
4033 /* If we are to pad downward, adjust the stack pointer first and
4034 then store X into the stack location using an offset. This is
4035 because emit_move_insn does not know how to pad; it does not have
4036 access to type. */
4037 else if (FUNCTION_ARG_PADDING (mode, type) == downward)
4039 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode);
4040 HOST_WIDE_INT offset;
4042 emit_move_insn (stack_pointer_rtx,
4043 expand_binop (Pmode,
4044 #ifdef STACK_GROWS_DOWNWARD
4045 sub_optab,
4046 #else
4047 add_optab,
4048 #endif
4049 stack_pointer_rtx,
4050 gen_int_mode (rounded_size, Pmode),
4051 NULL_RTX, 0, OPTAB_LIB_WIDEN));
4053 offset = (HOST_WIDE_INT) padding_size;
4054 #ifdef STACK_GROWS_DOWNWARD
4055 if (STACK_PUSH_CODE == POST_DEC)
4056 /* We have already decremented the stack pointer, so get the
4057 previous value. */
4058 offset += (HOST_WIDE_INT) rounded_size;
4059 #else
4060 if (STACK_PUSH_CODE == POST_INC)
4061 /* We have already incremented the stack pointer, so get the
4062 previous value. */
4063 offset -= (HOST_WIDE_INT) rounded_size;
4064 #endif
4065 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
4066 gen_int_mode (offset, Pmode));
4068 else
4070 #ifdef STACK_GROWS_DOWNWARD
4071 /* ??? This seems wrong if STACK_PUSH_CODE == POST_DEC. */
4072 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
4073 gen_int_mode (-(HOST_WIDE_INT) rounded_size,
4074 Pmode));
4075 #else
4076 /* ??? This seems wrong if STACK_PUSH_CODE == POST_INC. */
4077 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
4078 gen_int_mode (rounded_size, Pmode));
4079 #endif
4080 dest_addr = gen_rtx_PRE_MODIFY (Pmode, stack_pointer_rtx, dest_addr);
4083 dest = gen_rtx_MEM (mode, dest_addr);
4085 if (type != 0)
4087 set_mem_attributes (dest, type, 1);
4089 if (cfun->tail_call_marked)
4090 /* Function incoming arguments may overlap with sibling call
4091 outgoing arguments and we cannot allow reordering of reads
4092 from function arguments with stores to outgoing arguments
4093 of sibling calls. */
4094 set_mem_alias_set (dest, 0);
4096 emit_move_insn (dest, x);
4099 /* Emit and annotate a single push insn. */
4101 static void
4102 emit_single_push_insn (machine_mode mode, rtx x, tree type)
4104 int delta, old_delta = stack_pointer_delta;
4105 rtx_insn *prev = get_last_insn ();
4106 rtx_insn *last;
4108 emit_single_push_insn_1 (mode, x, type);
4110 last = get_last_insn ();
4112 /* Notice the common case where we emitted exactly one insn. */
4113 if (PREV_INSN (last) == prev)
4115 add_reg_note (last, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
4116 return;
4119 delta = fixup_args_size_notes (prev, last, stack_pointer_delta);
4120 gcc_assert (delta == INT_MIN || delta == old_delta);
4122 #endif
4124 /* Generate code to push X onto the stack, assuming it has mode MODE and
4125 type TYPE.
4126 MODE is redundant except when X is a CONST_INT (since they don't
4127 carry mode info).
4128 SIZE is an rtx for the size of data to be copied (in bytes),
4129 needed only if X is BLKmode.
4131 ALIGN (in bits) is maximum alignment we can assume.
4133 If PARTIAL and REG are both nonzero, then copy that many of the first
4134 bytes of X into registers starting with REG, and push the rest of X.
4135 The amount of space pushed is decreased by PARTIAL bytes.
4136 REG must be a hard register in this case.
4137 If REG is zero but PARTIAL is not, take any all others actions for an
4138 argument partially in registers, but do not actually load any
4139 registers.
4141 EXTRA is the amount in bytes of extra space to leave next to this arg.
4142 This is ignored if an argument block has already been allocated.
4144 On a machine that lacks real push insns, ARGS_ADDR is the address of
4145 the bottom of the argument block for this call. We use indexing off there
4146 to store the arg. On machines with push insns, ARGS_ADDR is 0 when a
4147 argument block has not been preallocated.
4149 ARGS_SO_FAR is the size of args previously pushed for this call.
4151 REG_PARM_STACK_SPACE is nonzero if functions require stack space
4152 for arguments passed in registers. If nonzero, it will be the number
4153 of bytes required. */
4155 void
4156 emit_push_insn (rtx x, machine_mode mode, tree type, rtx size,
4157 unsigned int align, int partial, rtx reg, int extra,
4158 rtx args_addr, rtx args_so_far, int reg_parm_stack_space,
4159 rtx alignment_pad)
4161 rtx xinner;
4162 enum direction stack_direction
4163 #ifdef STACK_GROWS_DOWNWARD
4164 = downward;
4165 #else
4166 = upward;
4167 #endif
4169 /* Decide where to pad the argument: `downward' for below,
4170 `upward' for above, or `none' for don't pad it.
4171 Default is below for small data on big-endian machines; else above. */
4172 enum direction where_pad = FUNCTION_ARG_PADDING (mode, type);
4174 /* Invert direction if stack is post-decrement.
4175 FIXME: why? */
4176 if (STACK_PUSH_CODE == POST_DEC)
4177 if (where_pad != none)
4178 where_pad = (where_pad == downward ? upward : downward);
4180 xinner = x;
4182 if (mode == BLKmode
4183 || (STRICT_ALIGNMENT && align < GET_MODE_ALIGNMENT (mode)))
4185 /* Copy a block into the stack, entirely or partially. */
4187 rtx temp;
4188 int used;
4189 int offset;
4190 int skip;
4192 offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
4193 used = partial - offset;
4195 if (mode != BLKmode)
4197 /* A value is to be stored in an insufficiently aligned
4198 stack slot; copy via a suitably aligned slot if
4199 necessary. */
4200 size = GEN_INT (GET_MODE_SIZE (mode));
4201 if (!MEM_P (xinner))
4203 temp = assign_temp (type, 1, 1);
4204 emit_move_insn (temp, xinner);
4205 xinner = temp;
4209 gcc_assert (size);
4211 /* USED is now the # of bytes we need not copy to the stack
4212 because registers will take care of them. */
4214 if (partial != 0)
4215 xinner = adjust_address (xinner, BLKmode, used);
4217 /* If the partial register-part of the arg counts in its stack size,
4218 skip the part of stack space corresponding to the registers.
4219 Otherwise, start copying to the beginning of the stack space,
4220 by setting SKIP to 0. */
4221 skip = (reg_parm_stack_space == 0) ? 0 : used;
4223 #ifdef PUSH_ROUNDING
4224 /* Do it with several push insns if that doesn't take lots of insns
4225 and if there is no difficulty with push insns that skip bytes
4226 on the stack for alignment purposes. */
4227 if (args_addr == 0
4228 && PUSH_ARGS
4229 && CONST_INT_P (size)
4230 && skip == 0
4231 && MEM_ALIGN (xinner) >= align
4232 && can_move_by_pieces ((unsigned) INTVAL (size) - used, align)
4233 /* Here we avoid the case of a structure whose weak alignment
4234 forces many pushes of a small amount of data,
4235 and such small pushes do rounding that causes trouble. */
4236 && ((! SLOW_UNALIGNED_ACCESS (word_mode, align))
4237 || align >= BIGGEST_ALIGNMENT
4238 || (PUSH_ROUNDING (align / BITS_PER_UNIT)
4239 == (align / BITS_PER_UNIT)))
4240 && (HOST_WIDE_INT) PUSH_ROUNDING (INTVAL (size)) == INTVAL (size))
4242 /* Push padding now if padding above and stack grows down,
4243 or if padding below and stack grows up.
4244 But if space already allocated, this has already been done. */
4245 if (extra && args_addr == 0
4246 && where_pad != none && where_pad != stack_direction)
4247 anti_adjust_stack (GEN_INT (extra));
4249 move_by_pieces (NULL, xinner, INTVAL (size) - used, align, 0);
4251 else
4252 #endif /* PUSH_ROUNDING */
4254 rtx target;
4256 /* Otherwise make space on the stack and copy the data
4257 to the address of that space. */
4259 /* Deduct words put into registers from the size we must copy. */
4260 if (partial != 0)
4262 if (CONST_INT_P (size))
4263 size = GEN_INT (INTVAL (size) - used);
4264 else
4265 size = expand_binop (GET_MODE (size), sub_optab, size,
4266 gen_int_mode (used, GET_MODE (size)),
4267 NULL_RTX, 0, OPTAB_LIB_WIDEN);
4270 /* Get the address of the stack space.
4271 In this case, we do not deal with EXTRA separately.
4272 A single stack adjust will do. */
4273 if (! args_addr)
4275 temp = push_block (size, extra, where_pad == downward);
4276 extra = 0;
4278 else if (CONST_INT_P (args_so_far))
4279 temp = memory_address (BLKmode,
4280 plus_constant (Pmode, args_addr,
4281 skip + INTVAL (args_so_far)));
4282 else
4283 temp = memory_address (BLKmode,
4284 plus_constant (Pmode,
4285 gen_rtx_PLUS (Pmode,
4286 args_addr,
4287 args_so_far),
4288 skip));
4290 if (!ACCUMULATE_OUTGOING_ARGS)
4292 /* If the source is referenced relative to the stack pointer,
4293 copy it to another register to stabilize it. We do not need
4294 to do this if we know that we won't be changing sp. */
4296 if (reg_mentioned_p (virtual_stack_dynamic_rtx, temp)
4297 || reg_mentioned_p (virtual_outgoing_args_rtx, temp))
4298 temp = copy_to_reg (temp);
4301 target = gen_rtx_MEM (BLKmode, temp);
4303 /* We do *not* set_mem_attributes here, because incoming arguments
4304 may overlap with sibling call outgoing arguments and we cannot
4305 allow reordering of reads from function arguments with stores
4306 to outgoing arguments of sibling calls. We do, however, want
4307 to record the alignment of the stack slot. */
4308 /* ALIGN may well be better aligned than TYPE, e.g. due to
4309 PARM_BOUNDARY. Assume the caller isn't lying. */
4310 set_mem_align (target, align);
4312 emit_block_move (target, xinner, size, BLOCK_OP_CALL_PARM);
4315 else if (partial > 0)
4317 /* Scalar partly in registers. */
4319 int size = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
4320 int i;
4321 int not_stack;
4322 /* # bytes of start of argument
4323 that we must make space for but need not store. */
4324 int offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
4325 int args_offset = INTVAL (args_so_far);
4326 int skip;
4328 /* Push padding now if padding above and stack grows down,
4329 or if padding below and stack grows up.
4330 But if space already allocated, this has already been done. */
4331 if (extra && args_addr == 0
4332 && where_pad != none && where_pad != stack_direction)
4333 anti_adjust_stack (GEN_INT (extra));
4335 /* If we make space by pushing it, we might as well push
4336 the real data. Otherwise, we can leave OFFSET nonzero
4337 and leave the space uninitialized. */
4338 if (args_addr == 0)
4339 offset = 0;
4341 /* Now NOT_STACK gets the number of words that we don't need to
4342 allocate on the stack. Convert OFFSET to words too. */
4343 not_stack = (partial - offset) / UNITS_PER_WORD;
4344 offset /= UNITS_PER_WORD;
4346 /* If the partial register-part of the arg counts in its stack size,
4347 skip the part of stack space corresponding to the registers.
4348 Otherwise, start copying to the beginning of the stack space,
4349 by setting SKIP to 0. */
4350 skip = (reg_parm_stack_space == 0) ? 0 : not_stack;
4352 if (CONSTANT_P (x) && !targetm.legitimate_constant_p (mode, x))
4353 x = validize_mem (force_const_mem (mode, x));
4355 /* If X is a hard register in a non-integer mode, copy it into a pseudo;
4356 SUBREGs of such registers are not allowed. */
4357 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
4358 && GET_MODE_CLASS (GET_MODE (x)) != MODE_INT))
4359 x = copy_to_reg (x);
4361 /* Loop over all the words allocated on the stack for this arg. */
4362 /* We can do it by words, because any scalar bigger than a word
4363 has a size a multiple of a word. */
4364 for (i = size - 1; i >= not_stack; i--)
4365 if (i >= not_stack + offset)
4366 emit_push_insn (operand_subword_force (x, i, mode),
4367 word_mode, NULL_TREE, NULL_RTX, align, 0, NULL_RTX,
4368 0, args_addr,
4369 GEN_INT (args_offset + ((i - not_stack + skip)
4370 * UNITS_PER_WORD)),
4371 reg_parm_stack_space, alignment_pad);
4373 else
4375 rtx addr;
4376 rtx dest;
4378 /* Push padding now if padding above and stack grows down,
4379 or if padding below and stack grows up.
4380 But if space already allocated, this has already been done. */
4381 if (extra && args_addr == 0
4382 && where_pad != none && where_pad != stack_direction)
4383 anti_adjust_stack (GEN_INT (extra));
4385 #ifdef PUSH_ROUNDING
4386 if (args_addr == 0 && PUSH_ARGS)
4387 emit_single_push_insn (mode, x, type);
4388 else
4389 #endif
4391 if (CONST_INT_P (args_so_far))
4392 addr
4393 = memory_address (mode,
4394 plus_constant (Pmode, args_addr,
4395 INTVAL (args_so_far)));
4396 else
4397 addr = memory_address (mode, gen_rtx_PLUS (Pmode, args_addr,
4398 args_so_far));
4399 dest = gen_rtx_MEM (mode, addr);
4401 /* We do *not* set_mem_attributes here, because incoming arguments
4402 may overlap with sibling call outgoing arguments and we cannot
4403 allow reordering of reads from function arguments with stores
4404 to outgoing arguments of sibling calls. We do, however, want
4405 to record the alignment of the stack slot. */
4406 /* ALIGN may well be better aligned than TYPE, e.g. due to
4407 PARM_BOUNDARY. Assume the caller isn't lying. */
4408 set_mem_align (dest, align);
4410 emit_move_insn (dest, x);
4414 /* If part should go in registers, copy that part
4415 into the appropriate registers. Do this now, at the end,
4416 since mem-to-mem copies above may do function calls. */
4417 if (partial > 0 && reg != 0)
4419 /* Handle calls that pass values in multiple non-contiguous locations.
4420 The Irix 6 ABI has examples of this. */
4421 if (GET_CODE (reg) == PARALLEL)
4422 emit_group_load (reg, x, type, -1);
4423 else
4425 gcc_assert (partial % UNITS_PER_WORD == 0);
4426 move_block_to_reg (REGNO (reg), x, partial / UNITS_PER_WORD, mode);
4430 if (extra && args_addr == 0 && where_pad == stack_direction)
4431 anti_adjust_stack (GEN_INT (extra));
4433 if (alignment_pad && args_addr == 0)
4434 anti_adjust_stack (alignment_pad);
4437 /* Return X if X can be used as a subtarget in a sequence of arithmetic
4438 operations. */
4440 static rtx
4441 get_subtarget (rtx x)
4443 return (optimize
4444 || x == 0
4445 /* Only registers can be subtargets. */
4446 || !REG_P (x)
4447 /* Don't use hard regs to avoid extending their life. */
4448 || REGNO (x) < FIRST_PSEUDO_REGISTER
4449 ? 0 : x);
4452 /* A subroutine of expand_assignment. Optimize FIELD op= VAL, where
4453 FIELD is a bitfield. Returns true if the optimization was successful,
4454 and there's nothing else to do. */
4456 static bool
4457 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize,
4458 unsigned HOST_WIDE_INT bitpos,
4459 unsigned HOST_WIDE_INT bitregion_start,
4460 unsigned HOST_WIDE_INT bitregion_end,
4461 machine_mode mode1, rtx str_rtx,
4462 tree to, tree src)
4464 machine_mode str_mode = GET_MODE (str_rtx);
4465 unsigned int str_bitsize = GET_MODE_BITSIZE (str_mode);
4466 tree op0, op1;
4467 rtx value, result;
4468 optab binop;
4469 gimple srcstmt;
4470 enum tree_code code;
4472 if (mode1 != VOIDmode
4473 || bitsize >= BITS_PER_WORD
4474 || str_bitsize > BITS_PER_WORD
4475 || TREE_SIDE_EFFECTS (to)
4476 || TREE_THIS_VOLATILE (to))
4477 return false;
4479 STRIP_NOPS (src);
4480 if (TREE_CODE (src) != SSA_NAME)
4481 return false;
4482 if (TREE_CODE (TREE_TYPE (src)) != INTEGER_TYPE)
4483 return false;
4485 srcstmt = get_gimple_for_ssa_name (src);
4486 if (!srcstmt
4487 || TREE_CODE_CLASS (gimple_assign_rhs_code (srcstmt)) != tcc_binary)
4488 return false;
4490 code = gimple_assign_rhs_code (srcstmt);
4492 op0 = gimple_assign_rhs1 (srcstmt);
4494 /* If OP0 is an SSA_NAME, then we want to walk the use-def chain
4495 to find its initialization. Hopefully the initialization will
4496 be from a bitfield load. */
4497 if (TREE_CODE (op0) == SSA_NAME)
4499 gimple op0stmt = get_gimple_for_ssa_name (op0);
4501 /* We want to eventually have OP0 be the same as TO, which
4502 should be a bitfield. */
4503 if (!op0stmt
4504 || !is_gimple_assign (op0stmt)
4505 || gimple_assign_rhs_code (op0stmt) != TREE_CODE (to))
4506 return false;
4507 op0 = gimple_assign_rhs1 (op0stmt);
4510 op1 = gimple_assign_rhs2 (srcstmt);
4512 if (!operand_equal_p (to, op0, 0))
4513 return false;
4515 if (MEM_P (str_rtx))
4517 unsigned HOST_WIDE_INT offset1;
4519 if (str_bitsize == 0 || str_bitsize > BITS_PER_WORD)
4520 str_mode = word_mode;
4521 str_mode = get_best_mode (bitsize, bitpos,
4522 bitregion_start, bitregion_end,
4523 MEM_ALIGN (str_rtx), str_mode, 0);
4524 if (str_mode == VOIDmode)
4525 return false;
4526 str_bitsize = GET_MODE_BITSIZE (str_mode);
4528 offset1 = bitpos;
4529 bitpos %= str_bitsize;
4530 offset1 = (offset1 - bitpos) / BITS_PER_UNIT;
4531 str_rtx = adjust_address (str_rtx, str_mode, offset1);
4533 else if (!REG_P (str_rtx) && GET_CODE (str_rtx) != SUBREG)
4534 return false;
4536 /* If the bit field covers the whole REG/MEM, store_field
4537 will likely generate better code. */
4538 if (bitsize >= str_bitsize)
4539 return false;
4541 /* We can't handle fields split across multiple entities. */
4542 if (bitpos + bitsize > str_bitsize)
4543 return false;
4545 if (BYTES_BIG_ENDIAN)
4546 bitpos = str_bitsize - bitpos - bitsize;
4548 switch (code)
4550 case PLUS_EXPR:
4551 case MINUS_EXPR:
4552 /* For now, just optimize the case of the topmost bitfield
4553 where we don't need to do any masking and also
4554 1 bit bitfields where xor can be used.
4555 We might win by one instruction for the other bitfields
4556 too if insv/extv instructions aren't used, so that
4557 can be added later. */
4558 if (bitpos + bitsize != str_bitsize
4559 && (bitsize != 1 || TREE_CODE (op1) != INTEGER_CST))
4560 break;
4562 value = expand_expr (op1, NULL_RTX, str_mode, EXPAND_NORMAL);
4563 value = convert_modes (str_mode,
4564 TYPE_MODE (TREE_TYPE (op1)), value,
4565 TYPE_UNSIGNED (TREE_TYPE (op1)));
4567 /* We may be accessing data outside the field, which means
4568 we can alias adjacent data. */
4569 if (MEM_P (str_rtx))
4571 str_rtx = shallow_copy_rtx (str_rtx);
4572 set_mem_alias_set (str_rtx, 0);
4573 set_mem_expr (str_rtx, 0);
4576 binop = code == PLUS_EXPR ? add_optab : sub_optab;
4577 if (bitsize == 1 && bitpos + bitsize != str_bitsize)
4579 value = expand_and (str_mode, value, const1_rtx, NULL);
4580 binop = xor_optab;
4582 value = expand_shift (LSHIFT_EXPR, str_mode, value, bitpos, NULL_RTX, 1);
4583 result = expand_binop (str_mode, binop, str_rtx,
4584 value, str_rtx, 1, OPTAB_WIDEN);
4585 if (result != str_rtx)
4586 emit_move_insn (str_rtx, result);
4587 return true;
4589 case BIT_IOR_EXPR:
4590 case BIT_XOR_EXPR:
4591 if (TREE_CODE (op1) != INTEGER_CST)
4592 break;
4593 value = expand_expr (op1, NULL_RTX, str_mode, EXPAND_NORMAL);
4594 value = convert_modes (str_mode,
4595 TYPE_MODE (TREE_TYPE (op1)), value,
4596 TYPE_UNSIGNED (TREE_TYPE (op1)));
4598 /* We may be accessing data outside the field, which means
4599 we can alias adjacent data. */
4600 if (MEM_P (str_rtx))
4602 str_rtx = shallow_copy_rtx (str_rtx);
4603 set_mem_alias_set (str_rtx, 0);
4604 set_mem_expr (str_rtx, 0);
4607 binop = code == BIT_IOR_EXPR ? ior_optab : xor_optab;
4608 if (bitpos + bitsize != str_bitsize)
4610 rtx mask = gen_int_mode (((unsigned HOST_WIDE_INT) 1 << bitsize) - 1,
4611 str_mode);
4612 value = expand_and (str_mode, value, mask, NULL_RTX);
4614 value = expand_shift (LSHIFT_EXPR, str_mode, value, bitpos, NULL_RTX, 1);
4615 result = expand_binop (str_mode, binop, str_rtx,
4616 value, str_rtx, 1, OPTAB_WIDEN);
4617 if (result != str_rtx)
4618 emit_move_insn (str_rtx, result);
4619 return true;
4621 default:
4622 break;
4625 return false;
4628 /* In the C++ memory model, consecutive bit fields in a structure are
4629 considered one memory location.
4631 Given a COMPONENT_REF EXP at position (BITPOS, OFFSET), this function
4632 returns the bit range of consecutive bits in which this COMPONENT_REF
4633 belongs. The values are returned in *BITSTART and *BITEND. *BITPOS
4634 and *OFFSET may be adjusted in the process.
4636 If the access does not need to be restricted, 0 is returned in both
4637 *BITSTART and *BITEND. */
4639 static void
4640 get_bit_range (unsigned HOST_WIDE_INT *bitstart,
4641 unsigned HOST_WIDE_INT *bitend,
4642 tree exp,
4643 HOST_WIDE_INT *bitpos,
4644 tree *offset)
4646 HOST_WIDE_INT bitoffset;
4647 tree field, repr;
4649 gcc_assert (TREE_CODE (exp) == COMPONENT_REF);
4651 field = TREE_OPERAND (exp, 1);
4652 repr = DECL_BIT_FIELD_REPRESENTATIVE (field);
4653 /* If we do not have a DECL_BIT_FIELD_REPRESENTATIVE there is no
4654 need to limit the range we can access. */
4655 if (!repr)
4657 *bitstart = *bitend = 0;
4658 return;
4661 /* If we have a DECL_BIT_FIELD_REPRESENTATIVE but the enclosing record is
4662 part of a larger bit field, then the representative does not serve any
4663 useful purpose. This can occur in Ada. */
4664 if (handled_component_p (TREE_OPERAND (exp, 0)))
4666 machine_mode rmode;
4667 HOST_WIDE_INT rbitsize, rbitpos;
4668 tree roffset;
4669 int unsignedp;
4670 int volatilep = 0;
4671 get_inner_reference (TREE_OPERAND (exp, 0), &rbitsize, &rbitpos,
4672 &roffset, &rmode, &unsignedp, &volatilep, false);
4673 if ((rbitpos % BITS_PER_UNIT) != 0)
4675 *bitstart = *bitend = 0;
4676 return;
4680 /* Compute the adjustment to bitpos from the offset of the field
4681 relative to the representative. DECL_FIELD_OFFSET of field and
4682 repr are the same by construction if they are not constants,
4683 see finish_bitfield_layout. */
4684 if (tree_fits_uhwi_p (DECL_FIELD_OFFSET (field))
4685 && tree_fits_uhwi_p (DECL_FIELD_OFFSET (repr)))
4686 bitoffset = (tree_to_uhwi (DECL_FIELD_OFFSET (field))
4687 - tree_to_uhwi (DECL_FIELD_OFFSET (repr))) * BITS_PER_UNIT;
4688 else
4689 bitoffset = 0;
4690 bitoffset += (tree_to_uhwi (DECL_FIELD_BIT_OFFSET (field))
4691 - tree_to_uhwi (DECL_FIELD_BIT_OFFSET (repr)));
4693 /* If the adjustment is larger than bitpos, we would have a negative bit
4694 position for the lower bound and this may wreak havoc later. Adjust
4695 offset and bitpos to make the lower bound non-negative in that case. */
4696 if (bitoffset > *bitpos)
4698 HOST_WIDE_INT adjust = bitoffset - *bitpos;
4699 gcc_assert ((adjust % BITS_PER_UNIT) == 0);
4701 *bitpos += adjust;
4702 if (*offset == NULL_TREE)
4703 *offset = size_int (-adjust / BITS_PER_UNIT);
4704 else
4705 *offset
4706 = size_binop (MINUS_EXPR, *offset, size_int (adjust / BITS_PER_UNIT));
4707 *bitstart = 0;
4709 else
4710 *bitstart = *bitpos - bitoffset;
4712 *bitend = *bitstart + tree_to_uhwi (DECL_SIZE (repr)) - 1;
4715 /* Returns true if ADDR is an ADDR_EXPR of a DECL that does not reside
4716 in memory and has non-BLKmode. DECL_RTL must not be a MEM; if
4717 DECL_RTL was not set yet, return NORTL. */
4719 static inline bool
4720 addr_expr_of_non_mem_decl_p_1 (tree addr, bool nortl)
4722 if (TREE_CODE (addr) != ADDR_EXPR)
4723 return false;
4725 tree base = TREE_OPERAND (addr, 0);
4727 if (!DECL_P (base)
4728 || TREE_ADDRESSABLE (base)
4729 || DECL_MODE (base) == BLKmode)
4730 return false;
4732 if (!DECL_RTL_SET_P (base))
4733 return nortl;
4735 return (!MEM_P (DECL_RTL (base)));
4738 /* Returns true if the MEM_REF REF refers to an object that does not
4739 reside in memory and has non-BLKmode. */
4741 static inline bool
4742 mem_ref_refers_to_non_mem_p (tree ref)
4744 tree base = TREE_OPERAND (ref, 0);
4745 return addr_expr_of_non_mem_decl_p_1 (base, false);
4748 /* Expand an assignment that stores the value of FROM into TO. If NONTEMPORAL
4749 is true, try generating a nontemporal store. */
4751 void
4752 expand_assignment (tree to, tree from, bool nontemporal)
4754 rtx to_rtx = 0;
4755 rtx result;
4756 machine_mode mode;
4757 unsigned int align;
4758 enum insn_code icode;
4760 /* Don't crash if the lhs of the assignment was erroneous. */
4761 if (TREE_CODE (to) == ERROR_MARK)
4763 expand_normal (from);
4764 return;
4767 /* Optimize away no-op moves without side-effects. */
4768 if (operand_equal_p (to, from, 0))
4769 return;
4771 /* Handle misaligned stores. */
4772 mode = TYPE_MODE (TREE_TYPE (to));
4773 if ((TREE_CODE (to) == MEM_REF
4774 || TREE_CODE (to) == TARGET_MEM_REF)
4775 && mode != BLKmode
4776 && !mem_ref_refers_to_non_mem_p (to)
4777 && ((align = get_object_alignment (to))
4778 < GET_MODE_ALIGNMENT (mode))
4779 && (((icode = optab_handler (movmisalign_optab, mode))
4780 != CODE_FOR_nothing)
4781 || SLOW_UNALIGNED_ACCESS (mode, align)))
4783 rtx reg, mem;
4785 reg = expand_expr (from, NULL_RTX, VOIDmode, EXPAND_NORMAL);
4786 reg = force_not_mem (reg);
4787 mem = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
4789 if (icode != CODE_FOR_nothing)
4791 struct expand_operand ops[2];
4793 create_fixed_operand (&ops[0], mem);
4794 create_input_operand (&ops[1], reg, mode);
4795 /* The movmisalign<mode> pattern cannot fail, else the assignment
4796 would silently be omitted. */
4797 expand_insn (icode, 2, ops);
4799 else
4800 store_bit_field (mem, GET_MODE_BITSIZE (mode), 0, 0, 0, mode, reg);
4801 return;
4804 /* Assignment of a structure component needs special treatment
4805 if the structure component's rtx is not simply a MEM.
4806 Assignment of an array element at a constant index, and assignment of
4807 an array element in an unaligned packed structure field, has the same
4808 problem. Same for (partially) storing into a non-memory object. */
4809 if (handled_component_p (to)
4810 || (TREE_CODE (to) == MEM_REF
4811 && mem_ref_refers_to_non_mem_p (to))
4812 || TREE_CODE (TREE_TYPE (to)) == ARRAY_TYPE)
4814 machine_mode mode1;
4815 HOST_WIDE_INT bitsize, bitpos;
4816 unsigned HOST_WIDE_INT bitregion_start = 0;
4817 unsigned HOST_WIDE_INT bitregion_end = 0;
4818 tree offset;
4819 int unsignedp;
4820 int volatilep = 0;
4821 tree tem;
4823 push_temp_slots ();
4824 tem = get_inner_reference (to, &bitsize, &bitpos, &offset, &mode1,
4825 &unsignedp, &volatilep, true);
4827 /* Make sure bitpos is not negative, it can wreak havoc later. */
4828 if (bitpos < 0)
4830 gcc_assert (offset == NULL_TREE);
4831 offset = size_int (bitpos >> (BITS_PER_UNIT == 8
4832 ? 3 : exact_log2 (BITS_PER_UNIT)));
4833 bitpos &= BITS_PER_UNIT - 1;
4836 if (TREE_CODE (to) == COMPONENT_REF
4837 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (to, 1)))
4838 get_bit_range (&bitregion_start, &bitregion_end, to, &bitpos, &offset);
4839 /* The C++ memory model naturally applies to byte-aligned fields.
4840 However, if we do not have a DECL_BIT_FIELD_TYPE but BITPOS or
4841 BITSIZE are not byte-aligned, there is no need to limit the range
4842 we can access. This can occur with packed structures in Ada. */
4843 else if (bitsize > 0
4844 && bitsize % BITS_PER_UNIT == 0
4845 && bitpos % BITS_PER_UNIT == 0)
4847 bitregion_start = bitpos;
4848 bitregion_end = bitpos + bitsize - 1;
4851 to_rtx = expand_expr (tem, NULL_RTX, VOIDmode, EXPAND_WRITE);
4853 /* If the field has a mode, we want to access it in the
4854 field's mode, not the computed mode.
4855 If a MEM has VOIDmode (external with incomplete type),
4856 use BLKmode for it instead. */
4857 if (MEM_P (to_rtx))
4859 if (mode1 != VOIDmode)
4860 to_rtx = adjust_address (to_rtx, mode1, 0);
4861 else if (GET_MODE (to_rtx) == VOIDmode)
4862 to_rtx = adjust_address (to_rtx, BLKmode, 0);
4865 if (offset != 0)
4867 machine_mode address_mode;
4868 rtx offset_rtx;
4870 if (!MEM_P (to_rtx))
4872 /* We can get constant negative offsets into arrays with broken
4873 user code. Translate this to a trap instead of ICEing. */
4874 gcc_assert (TREE_CODE (offset) == INTEGER_CST);
4875 expand_builtin_trap ();
4876 to_rtx = gen_rtx_MEM (BLKmode, const0_rtx);
4879 offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode, EXPAND_SUM);
4880 address_mode = get_address_mode (to_rtx);
4881 if (GET_MODE (offset_rtx) != address_mode)
4883 /* We cannot be sure that the RTL in offset_rtx is valid outside
4884 of a memory address context, so force it into a register
4885 before attempting to convert it to the desired mode. */
4886 offset_rtx = force_operand (offset_rtx, NULL_RTX);
4887 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
4890 /* If we have an expression in OFFSET_RTX and a non-zero
4891 byte offset in BITPOS, adding the byte offset before the
4892 OFFSET_RTX results in better intermediate code, which makes
4893 later rtl optimization passes perform better.
4895 We prefer intermediate code like this:
4897 r124:DI=r123:DI+0x18
4898 [r124:DI]=r121:DI
4900 ... instead of ...
4902 r124:DI=r123:DI+0x10
4903 [r124:DI+0x8]=r121:DI
4905 This is only done for aligned data values, as these can
4906 be expected to result in single move instructions. */
4907 if (mode1 != VOIDmode
4908 && bitpos != 0
4909 && bitsize > 0
4910 && (bitpos % bitsize) == 0
4911 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
4912 && MEM_ALIGN (to_rtx) >= GET_MODE_ALIGNMENT (mode1))
4914 to_rtx = adjust_address (to_rtx, mode1, bitpos / BITS_PER_UNIT);
4915 bitregion_start = 0;
4916 if (bitregion_end >= (unsigned HOST_WIDE_INT) bitpos)
4917 bitregion_end -= bitpos;
4918 bitpos = 0;
4921 to_rtx = offset_address (to_rtx, offset_rtx,
4922 highest_pow2_factor_for_target (to,
4923 offset));
4926 /* No action is needed if the target is not a memory and the field
4927 lies completely outside that target. This can occur if the source
4928 code contains an out-of-bounds access to a small array. */
4929 if (!MEM_P (to_rtx)
4930 && GET_MODE (to_rtx) != BLKmode
4931 && (unsigned HOST_WIDE_INT) bitpos
4932 >= GET_MODE_PRECISION (GET_MODE (to_rtx)))
4934 expand_normal (from);
4935 result = NULL;
4937 /* Handle expand_expr of a complex value returning a CONCAT. */
4938 else if (GET_CODE (to_rtx) == CONCAT)
4940 unsigned short mode_bitsize = GET_MODE_BITSIZE (GET_MODE (to_rtx));
4941 if (COMPLEX_MODE_P (TYPE_MODE (TREE_TYPE (from)))
4942 && bitpos == 0
4943 && bitsize == mode_bitsize)
4944 result = store_expr (from, to_rtx, false, nontemporal);
4945 else if (bitsize == mode_bitsize / 2
4946 && (bitpos == 0 || bitpos == mode_bitsize / 2))
4947 result = store_expr (from, XEXP (to_rtx, bitpos != 0), false,
4948 nontemporal);
4949 else if (bitpos + bitsize <= mode_bitsize / 2)
4950 result = store_field (XEXP (to_rtx, 0), bitsize, bitpos,
4951 bitregion_start, bitregion_end,
4952 mode1, from,
4953 get_alias_set (to), nontemporal);
4954 else if (bitpos >= mode_bitsize / 2)
4955 result = store_field (XEXP (to_rtx, 1), bitsize,
4956 bitpos - mode_bitsize / 2,
4957 bitregion_start, bitregion_end,
4958 mode1, from,
4959 get_alias_set (to), nontemporal);
4960 else if (bitpos == 0 && bitsize == mode_bitsize)
4962 rtx from_rtx;
4963 result = expand_normal (from);
4964 from_rtx = simplify_gen_subreg (GET_MODE (to_rtx), result,
4965 TYPE_MODE (TREE_TYPE (from)), 0);
4966 emit_move_insn (XEXP (to_rtx, 0),
4967 read_complex_part (from_rtx, false));
4968 emit_move_insn (XEXP (to_rtx, 1),
4969 read_complex_part (from_rtx, true));
4971 else
4973 rtx temp = assign_stack_temp (GET_MODE (to_rtx),
4974 GET_MODE_SIZE (GET_MODE (to_rtx)));
4975 write_complex_part (temp, XEXP (to_rtx, 0), false);
4976 write_complex_part (temp, XEXP (to_rtx, 1), true);
4977 result = store_field (temp, bitsize, bitpos,
4978 bitregion_start, bitregion_end,
4979 mode1, from,
4980 get_alias_set (to), nontemporal);
4981 emit_move_insn (XEXP (to_rtx, 0), read_complex_part (temp, false));
4982 emit_move_insn (XEXP (to_rtx, 1), read_complex_part (temp, true));
4985 else
4987 if (MEM_P (to_rtx))
4989 /* If the field is at offset zero, we could have been given the
4990 DECL_RTX of the parent struct. Don't munge it. */
4991 to_rtx = shallow_copy_rtx (to_rtx);
4992 set_mem_attributes_minus_bitpos (to_rtx, to, 0, bitpos);
4993 if (volatilep)
4994 MEM_VOLATILE_P (to_rtx) = 1;
4997 if (optimize_bitfield_assignment_op (bitsize, bitpos,
4998 bitregion_start, bitregion_end,
4999 mode1,
5000 to_rtx, to, from))
5001 result = NULL;
5002 else
5003 result = store_field (to_rtx, bitsize, bitpos,
5004 bitregion_start, bitregion_end,
5005 mode1, from,
5006 get_alias_set (to), nontemporal);
5009 if (result)
5010 preserve_temp_slots (result);
5011 pop_temp_slots ();
5012 return;
5015 /* If the rhs is a function call and its value is not an aggregate,
5016 call the function before we start to compute the lhs.
5017 This is needed for correct code for cases such as
5018 val = setjmp (buf) on machines where reference to val
5019 requires loading up part of an address in a separate insn.
5021 Don't do this if TO is a VAR_DECL or PARM_DECL whose DECL_RTL is REG
5022 since it might be a promoted variable where the zero- or sign- extension
5023 needs to be done. Handling this in the normal way is safe because no
5024 computation is done before the call. The same is true for SSA names. */
5025 if (TREE_CODE (from) == CALL_EXPR && ! aggregate_value_p (from, from)
5026 && COMPLETE_TYPE_P (TREE_TYPE (from))
5027 && TREE_CODE (TYPE_SIZE (TREE_TYPE (from))) == INTEGER_CST
5028 && ! (((TREE_CODE (to) == VAR_DECL
5029 || TREE_CODE (to) == PARM_DECL
5030 || TREE_CODE (to) == RESULT_DECL)
5031 && REG_P (DECL_RTL (to)))
5032 || TREE_CODE (to) == SSA_NAME))
5034 rtx value;
5035 rtx bounds;
5037 push_temp_slots ();
5038 value = expand_normal (from);
5040 /* Split value and bounds to store them separately. */
5041 chkp_split_slot (value, &value, &bounds);
5043 if (to_rtx == 0)
5044 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
5046 /* Handle calls that return values in multiple non-contiguous locations.
5047 The Irix 6 ABI has examples of this. */
5048 if (GET_CODE (to_rtx) == PARALLEL)
5050 if (GET_CODE (value) == PARALLEL)
5051 emit_group_move (to_rtx, value);
5052 else
5053 emit_group_load (to_rtx, value, TREE_TYPE (from),
5054 int_size_in_bytes (TREE_TYPE (from)));
5056 else if (GET_CODE (value) == PARALLEL)
5057 emit_group_store (to_rtx, value, TREE_TYPE (from),
5058 int_size_in_bytes (TREE_TYPE (from)));
5059 else if (GET_MODE (to_rtx) == BLKmode)
5061 /* Handle calls that return BLKmode values in registers. */
5062 if (REG_P (value))
5063 copy_blkmode_from_reg (to_rtx, value, TREE_TYPE (from));
5064 else
5065 emit_block_move (to_rtx, value, expr_size (from), BLOCK_OP_NORMAL);
5067 else
5069 if (POINTER_TYPE_P (TREE_TYPE (to)))
5070 value = convert_memory_address_addr_space
5071 (GET_MODE (to_rtx), value,
5072 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (to))));
5074 emit_move_insn (to_rtx, value);
5077 /* Store bounds if required. */
5078 if (bounds
5079 && (BOUNDED_P (to) || chkp_type_has_pointer (TREE_TYPE (to))))
5081 gcc_assert (MEM_P (to_rtx));
5082 chkp_emit_bounds_store (bounds, value, to_rtx);
5085 preserve_temp_slots (to_rtx);
5086 pop_temp_slots ();
5087 return;
5090 /* Ordinary treatment. Expand TO to get a REG or MEM rtx. */
5091 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
5093 /* Don't move directly into a return register. */
5094 if (TREE_CODE (to) == RESULT_DECL
5095 && (REG_P (to_rtx) || GET_CODE (to_rtx) == PARALLEL))
5097 rtx temp;
5099 push_temp_slots ();
5101 /* If the source is itself a return value, it still is in a pseudo at
5102 this point so we can move it back to the return register directly. */
5103 if (REG_P (to_rtx)
5104 && TYPE_MODE (TREE_TYPE (from)) == BLKmode
5105 && TREE_CODE (from) != CALL_EXPR)
5106 temp = copy_blkmode_to_reg (GET_MODE (to_rtx), from);
5107 else
5108 temp = expand_expr (from, NULL_RTX, GET_MODE (to_rtx), EXPAND_NORMAL);
5110 /* Handle calls that return values in multiple non-contiguous locations.
5111 The Irix 6 ABI has examples of this. */
5112 if (GET_CODE (to_rtx) == PARALLEL)
5114 if (GET_CODE (temp) == PARALLEL)
5115 emit_group_move (to_rtx, temp);
5116 else
5117 emit_group_load (to_rtx, temp, TREE_TYPE (from),
5118 int_size_in_bytes (TREE_TYPE (from)));
5120 else if (temp)
5121 emit_move_insn (to_rtx, temp);
5123 preserve_temp_slots (to_rtx);
5124 pop_temp_slots ();
5125 return;
5128 /* In case we are returning the contents of an object which overlaps
5129 the place the value is being stored, use a safe function when copying
5130 a value through a pointer into a structure value return block. */
5131 if (TREE_CODE (to) == RESULT_DECL
5132 && TREE_CODE (from) == INDIRECT_REF
5133 && ADDR_SPACE_GENERIC_P
5134 (TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (from, 0)))))
5135 && refs_may_alias_p (to, from)
5136 && cfun->returns_struct
5137 && !cfun->returns_pcc_struct)
5139 rtx from_rtx, size;
5141 push_temp_slots ();
5142 size = expr_size (from);
5143 from_rtx = expand_normal (from);
5145 emit_library_call (memmove_libfunc, LCT_NORMAL,
5146 VOIDmode, 3, XEXP (to_rtx, 0), Pmode,
5147 XEXP (from_rtx, 0), Pmode,
5148 convert_to_mode (TYPE_MODE (sizetype),
5149 size, TYPE_UNSIGNED (sizetype)),
5150 TYPE_MODE (sizetype));
5152 preserve_temp_slots (to_rtx);
5153 pop_temp_slots ();
5154 return;
5157 /* Compute FROM and store the value in the rtx we got. */
5159 push_temp_slots ();
5160 result = store_expr_with_bounds (from, to_rtx, 0, nontemporal, to);
5161 preserve_temp_slots (result);
5162 pop_temp_slots ();
5163 return;
5166 /* Emits nontemporal store insn that moves FROM to TO. Returns true if this
5167 succeeded, false otherwise. */
5169 bool
5170 emit_storent_insn (rtx to, rtx from)
5172 struct expand_operand ops[2];
5173 machine_mode mode = GET_MODE (to);
5174 enum insn_code code = optab_handler (storent_optab, mode);
5176 if (code == CODE_FOR_nothing)
5177 return false;
5179 create_fixed_operand (&ops[0], to);
5180 create_input_operand (&ops[1], from, mode);
5181 return maybe_expand_insn (code, 2, ops);
5184 /* Generate code for computing expression EXP,
5185 and storing the value into TARGET.
5187 If the mode is BLKmode then we may return TARGET itself.
5188 It turns out that in BLKmode it doesn't cause a problem.
5189 because C has no operators that could combine two different
5190 assignments into the same BLKmode object with different values
5191 with no sequence point. Will other languages need this to
5192 be more thorough?
5194 If CALL_PARAM_P is nonzero, this is a store into a call param on the
5195 stack, and block moves may need to be treated specially.
5197 If NONTEMPORAL is true, try using a nontemporal store instruction.
5199 If BTARGET is not NULL then computed bounds of EXP are
5200 associated with BTARGET. */
5203 store_expr_with_bounds (tree exp, rtx target, int call_param_p,
5204 bool nontemporal, tree btarget)
5206 rtx temp;
5207 rtx alt_rtl = NULL_RTX;
5208 location_t loc = curr_insn_location ();
5210 if (VOID_TYPE_P (TREE_TYPE (exp)))
5212 /* C++ can generate ?: expressions with a throw expression in one
5213 branch and an rvalue in the other. Here, we resolve attempts to
5214 store the throw expression's nonexistent result. */
5215 gcc_assert (!call_param_p);
5216 expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
5217 return NULL_RTX;
5219 if (TREE_CODE (exp) == COMPOUND_EXPR)
5221 /* Perform first part of compound expression, then assign from second
5222 part. */
5223 expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode,
5224 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
5225 return store_expr_with_bounds (TREE_OPERAND (exp, 1), target,
5226 call_param_p, nontemporal, btarget);
5228 else if (TREE_CODE (exp) == COND_EXPR && GET_MODE (target) == BLKmode)
5230 /* For conditional expression, get safe form of the target. Then
5231 test the condition, doing the appropriate assignment on either
5232 side. This avoids the creation of unnecessary temporaries.
5233 For non-BLKmode, it is more efficient not to do this. */
5235 rtx_code_label *lab1 = gen_label_rtx (), *lab2 = gen_label_rtx ();
5237 do_pending_stack_adjust ();
5238 NO_DEFER_POP;
5239 jumpifnot (TREE_OPERAND (exp, 0), lab1, -1);
5240 store_expr_with_bounds (TREE_OPERAND (exp, 1), target, call_param_p,
5241 nontemporal, btarget);
5242 emit_jump_insn (gen_jump (lab2));
5243 emit_barrier ();
5244 emit_label (lab1);
5245 store_expr_with_bounds (TREE_OPERAND (exp, 2), target, call_param_p,
5246 nontemporal, btarget);
5247 emit_label (lab2);
5248 OK_DEFER_POP;
5250 return NULL_RTX;
5252 else if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
5253 /* If this is a scalar in a register that is stored in a wider mode
5254 than the declared mode, compute the result into its declared mode
5255 and then convert to the wider mode. Our value is the computed
5256 expression. */
5258 rtx inner_target = 0;
5260 /* We can do the conversion inside EXP, which will often result
5261 in some optimizations. Do the conversion in two steps: first
5262 change the signedness, if needed, then the extend. But don't
5263 do this if the type of EXP is a subtype of something else
5264 since then the conversion might involve more than just
5265 converting modes. */
5266 if (INTEGRAL_TYPE_P (TREE_TYPE (exp))
5267 && TREE_TYPE (TREE_TYPE (exp)) == 0
5268 && GET_MODE_PRECISION (GET_MODE (target))
5269 == TYPE_PRECISION (TREE_TYPE (exp)))
5271 if (!SUBREG_CHECK_PROMOTED_SIGN (target,
5272 TYPE_UNSIGNED (TREE_TYPE (exp))))
5274 /* Some types, e.g. Fortran's logical*4, won't have a signed
5275 version, so use the mode instead. */
5276 tree ntype
5277 = (signed_or_unsigned_type_for
5278 (SUBREG_PROMOTED_SIGN (target), TREE_TYPE (exp)));
5279 if (ntype == NULL)
5280 ntype = lang_hooks.types.type_for_mode
5281 (TYPE_MODE (TREE_TYPE (exp)),
5282 SUBREG_PROMOTED_SIGN (target));
5284 exp = fold_convert_loc (loc, ntype, exp);
5287 exp = fold_convert_loc (loc, lang_hooks.types.type_for_mode
5288 (GET_MODE (SUBREG_REG (target)),
5289 SUBREG_PROMOTED_SIGN (target)),
5290 exp);
5292 inner_target = SUBREG_REG (target);
5295 temp = expand_expr (exp, inner_target, VOIDmode,
5296 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
5298 /* Handle bounds returned by call. */
5299 if (TREE_CODE (exp) == CALL_EXPR)
5301 rtx bounds;
5302 chkp_split_slot (temp, &temp, &bounds);
5303 if (bounds && btarget)
5305 gcc_assert (TREE_CODE (btarget) == SSA_NAME);
5306 rtx tmp = targetm.calls.load_returned_bounds (bounds);
5307 chkp_set_rtl_bounds (btarget, tmp);
5311 /* If TEMP is a VOIDmode constant, use convert_modes to make
5312 sure that we properly convert it. */
5313 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
5315 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
5316 temp, SUBREG_PROMOTED_SIGN (target));
5317 temp = convert_modes (GET_MODE (SUBREG_REG (target)),
5318 GET_MODE (target), temp,
5319 SUBREG_PROMOTED_SIGN (target));
5322 convert_move (SUBREG_REG (target), temp,
5323 SUBREG_PROMOTED_SIGN (target));
5325 return NULL_RTX;
5327 else if ((TREE_CODE (exp) == STRING_CST
5328 || (TREE_CODE (exp) == MEM_REF
5329 && TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
5330 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
5331 == STRING_CST
5332 && integer_zerop (TREE_OPERAND (exp, 1))))
5333 && !nontemporal && !call_param_p
5334 && MEM_P (target))
5336 /* Optimize initialization of an array with a STRING_CST. */
5337 HOST_WIDE_INT exp_len, str_copy_len;
5338 rtx dest_mem;
5339 tree str = TREE_CODE (exp) == STRING_CST
5340 ? exp : TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
5342 exp_len = int_expr_size (exp);
5343 if (exp_len <= 0)
5344 goto normal_expr;
5346 if (TREE_STRING_LENGTH (str) <= 0)
5347 goto normal_expr;
5349 str_copy_len = strlen (TREE_STRING_POINTER (str));
5350 if (str_copy_len < TREE_STRING_LENGTH (str) - 1)
5351 goto normal_expr;
5353 str_copy_len = TREE_STRING_LENGTH (str);
5354 if ((STORE_MAX_PIECES & (STORE_MAX_PIECES - 1)) == 0
5355 && TREE_STRING_POINTER (str)[TREE_STRING_LENGTH (str) - 1] == '\0')
5357 str_copy_len += STORE_MAX_PIECES - 1;
5358 str_copy_len &= ~(STORE_MAX_PIECES - 1);
5360 str_copy_len = MIN (str_copy_len, exp_len);
5361 if (!can_store_by_pieces (str_copy_len, builtin_strncpy_read_str,
5362 CONST_CAST (char *, TREE_STRING_POINTER (str)),
5363 MEM_ALIGN (target), false))
5364 goto normal_expr;
5366 dest_mem = target;
5368 dest_mem = store_by_pieces (dest_mem,
5369 str_copy_len, builtin_strncpy_read_str,
5370 CONST_CAST (char *,
5371 TREE_STRING_POINTER (str)),
5372 MEM_ALIGN (target), false,
5373 exp_len > str_copy_len ? 1 : 0);
5374 if (exp_len > str_copy_len)
5375 clear_storage (adjust_address (dest_mem, BLKmode, 0),
5376 GEN_INT (exp_len - str_copy_len),
5377 BLOCK_OP_NORMAL);
5378 return NULL_RTX;
5380 else
5382 rtx tmp_target;
5384 normal_expr:
5385 /* If we want to use a nontemporal store, force the value to
5386 register first. */
5387 tmp_target = nontemporal ? NULL_RTX : target;
5388 temp = expand_expr_real (exp, tmp_target, GET_MODE (target),
5389 (call_param_p
5390 ? EXPAND_STACK_PARM : EXPAND_NORMAL),
5391 &alt_rtl, false);
5393 /* Handle bounds returned by call. */
5394 if (TREE_CODE (exp) == CALL_EXPR)
5396 rtx bounds;
5397 chkp_split_slot (temp, &temp, &bounds);
5398 if (bounds && btarget)
5400 gcc_assert (TREE_CODE (btarget) == SSA_NAME);
5401 rtx tmp = targetm.calls.load_returned_bounds (bounds);
5402 chkp_set_rtl_bounds (btarget, tmp);
5407 /* If TEMP is a VOIDmode constant and the mode of the type of EXP is not
5408 the same as that of TARGET, adjust the constant. This is needed, for
5409 example, in case it is a CONST_DOUBLE or CONST_WIDE_INT and we want
5410 only a word-sized value. */
5411 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode
5412 && TREE_CODE (exp) != ERROR_MARK
5413 && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
5414 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
5415 temp, TYPE_UNSIGNED (TREE_TYPE (exp)));
5417 /* If value was not generated in the target, store it there.
5418 Convert the value to TARGET's type first if necessary and emit the
5419 pending incrementations that have been queued when expanding EXP.
5420 Note that we cannot emit the whole queue blindly because this will
5421 effectively disable the POST_INC optimization later.
5423 If TEMP and TARGET compare equal according to rtx_equal_p, but
5424 one or both of them are volatile memory refs, we have to distinguish
5425 two cases:
5426 - expand_expr has used TARGET. In this case, we must not generate
5427 another copy. This can be detected by TARGET being equal according
5428 to == .
5429 - expand_expr has not used TARGET - that means that the source just
5430 happens to have the same RTX form. Since temp will have been created
5431 by expand_expr, it will compare unequal according to == .
5432 We must generate a copy in this case, to reach the correct number
5433 of volatile memory references. */
5435 if ((! rtx_equal_p (temp, target)
5436 || (temp != target && (side_effects_p (temp)
5437 || side_effects_p (target))))
5438 && TREE_CODE (exp) != ERROR_MARK
5439 /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET,
5440 but TARGET is not valid memory reference, TEMP will differ
5441 from TARGET although it is really the same location. */
5442 && !(alt_rtl
5443 && rtx_equal_p (alt_rtl, target)
5444 && !side_effects_p (alt_rtl)
5445 && !side_effects_p (target))
5446 /* If there's nothing to copy, don't bother. Don't call
5447 expr_size unless necessary, because some front-ends (C++)
5448 expr_size-hook must not be given objects that are not
5449 supposed to be bit-copied or bit-initialized. */
5450 && expr_size (exp) != const0_rtx)
5452 if (GET_MODE (temp) != GET_MODE (target) && GET_MODE (temp) != VOIDmode)
5454 if (GET_MODE (target) == BLKmode)
5456 /* Handle calls that return BLKmode values in registers. */
5457 if (REG_P (temp) && TREE_CODE (exp) == CALL_EXPR)
5458 copy_blkmode_from_reg (target, temp, TREE_TYPE (exp));
5459 else
5460 store_bit_field (target,
5461 INTVAL (expr_size (exp)) * BITS_PER_UNIT,
5462 0, 0, 0, GET_MODE (temp), temp);
5464 else
5465 convert_move (target, temp, TYPE_UNSIGNED (TREE_TYPE (exp)));
5468 else if (GET_MODE (temp) == BLKmode && TREE_CODE (exp) == STRING_CST)
5470 /* Handle copying a string constant into an array. The string
5471 constant may be shorter than the array. So copy just the string's
5472 actual length, and clear the rest. First get the size of the data
5473 type of the string, which is actually the size of the target. */
5474 rtx size = expr_size (exp);
5476 if (CONST_INT_P (size)
5477 && INTVAL (size) < TREE_STRING_LENGTH (exp))
5478 emit_block_move (target, temp, size,
5479 (call_param_p
5480 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
5481 else
5483 machine_mode pointer_mode
5484 = targetm.addr_space.pointer_mode (MEM_ADDR_SPACE (target));
5485 machine_mode address_mode = get_address_mode (target);
5487 /* Compute the size of the data to copy from the string. */
5488 tree copy_size
5489 = size_binop_loc (loc, MIN_EXPR,
5490 make_tree (sizetype, size),
5491 size_int (TREE_STRING_LENGTH (exp)));
5492 rtx copy_size_rtx
5493 = expand_expr (copy_size, NULL_RTX, VOIDmode,
5494 (call_param_p
5495 ? EXPAND_STACK_PARM : EXPAND_NORMAL));
5496 rtx_code_label *label = 0;
5498 /* Copy that much. */
5499 copy_size_rtx = convert_to_mode (pointer_mode, copy_size_rtx,
5500 TYPE_UNSIGNED (sizetype));
5501 emit_block_move (target, temp, copy_size_rtx,
5502 (call_param_p
5503 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
5505 /* Figure out how much is left in TARGET that we have to clear.
5506 Do all calculations in pointer_mode. */
5507 if (CONST_INT_P (copy_size_rtx))
5509 size = plus_constant (address_mode, size,
5510 -INTVAL (copy_size_rtx));
5511 target = adjust_address (target, BLKmode,
5512 INTVAL (copy_size_rtx));
5514 else
5516 size = expand_binop (TYPE_MODE (sizetype), sub_optab, size,
5517 copy_size_rtx, NULL_RTX, 0,
5518 OPTAB_LIB_WIDEN);
5520 if (GET_MODE (copy_size_rtx) != address_mode)
5521 copy_size_rtx = convert_to_mode (address_mode,
5522 copy_size_rtx,
5523 TYPE_UNSIGNED (sizetype));
5525 target = offset_address (target, copy_size_rtx,
5526 highest_pow2_factor (copy_size));
5527 label = gen_label_rtx ();
5528 emit_cmp_and_jump_insns (size, const0_rtx, LT, NULL_RTX,
5529 GET_MODE (size), 0, label);
5532 if (size != const0_rtx)
5533 clear_storage (target, size, BLOCK_OP_NORMAL);
5535 if (label)
5536 emit_label (label);
5539 /* Handle calls that return values in multiple non-contiguous locations.
5540 The Irix 6 ABI has examples of this. */
5541 else if (GET_CODE (target) == PARALLEL)
5543 if (GET_CODE (temp) == PARALLEL)
5544 emit_group_move (target, temp);
5545 else
5546 emit_group_load (target, temp, TREE_TYPE (exp),
5547 int_size_in_bytes (TREE_TYPE (exp)));
5549 else if (GET_CODE (temp) == PARALLEL)
5550 emit_group_store (target, temp, TREE_TYPE (exp),
5551 int_size_in_bytes (TREE_TYPE (exp)));
5552 else if (GET_MODE (temp) == BLKmode)
5553 emit_block_move (target, temp, expr_size (exp),
5554 (call_param_p
5555 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
5556 /* If we emit a nontemporal store, there is nothing else to do. */
5557 else if (nontemporal && emit_storent_insn (target, temp))
5559 else
5561 temp = force_operand (temp, target);
5562 if (temp != target)
5563 emit_move_insn (target, temp);
5567 return NULL_RTX;
5570 /* Same as store_expr_with_bounds but ignoring bounds of EXP. */
5572 store_expr (tree exp, rtx target, int call_param_p, bool nontemporal)
5574 return store_expr_with_bounds (exp, target, call_param_p, nontemporal, NULL);
5577 /* Return true if field F of structure TYPE is a flexible array. */
5579 static bool
5580 flexible_array_member_p (const_tree f, const_tree type)
5582 const_tree tf;
5584 tf = TREE_TYPE (f);
5585 return (DECL_CHAIN (f) == NULL
5586 && TREE_CODE (tf) == ARRAY_TYPE
5587 && TYPE_DOMAIN (tf)
5588 && TYPE_MIN_VALUE (TYPE_DOMAIN (tf))
5589 && integer_zerop (TYPE_MIN_VALUE (TYPE_DOMAIN (tf)))
5590 && !TYPE_MAX_VALUE (TYPE_DOMAIN (tf))
5591 && int_size_in_bytes (type) >= 0);
5594 /* If FOR_CTOR_P, return the number of top-level elements that a constructor
5595 must have in order for it to completely initialize a value of type TYPE.
5596 Return -1 if the number isn't known.
5598 If !FOR_CTOR_P, return an estimate of the number of scalars in TYPE. */
5600 static HOST_WIDE_INT
5601 count_type_elements (const_tree type, bool for_ctor_p)
5603 switch (TREE_CODE (type))
5605 case ARRAY_TYPE:
5607 tree nelts;
5609 nelts = array_type_nelts (type);
5610 if (nelts && tree_fits_uhwi_p (nelts))
5612 unsigned HOST_WIDE_INT n;
5614 n = tree_to_uhwi (nelts) + 1;
5615 if (n == 0 || for_ctor_p)
5616 return n;
5617 else
5618 return n * count_type_elements (TREE_TYPE (type), false);
5620 return for_ctor_p ? -1 : 1;
5623 case RECORD_TYPE:
5625 unsigned HOST_WIDE_INT n;
5626 tree f;
5628 n = 0;
5629 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
5630 if (TREE_CODE (f) == FIELD_DECL)
5632 if (!for_ctor_p)
5633 n += count_type_elements (TREE_TYPE (f), false);
5634 else if (!flexible_array_member_p (f, type))
5635 /* Don't count flexible arrays, which are not supposed
5636 to be initialized. */
5637 n += 1;
5640 return n;
5643 case UNION_TYPE:
5644 case QUAL_UNION_TYPE:
5646 tree f;
5647 HOST_WIDE_INT n, m;
5649 gcc_assert (!for_ctor_p);
5650 /* Estimate the number of scalars in each field and pick the
5651 maximum. Other estimates would do instead; the idea is simply
5652 to make sure that the estimate is not sensitive to the ordering
5653 of the fields. */
5654 n = 1;
5655 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
5656 if (TREE_CODE (f) == FIELD_DECL)
5658 m = count_type_elements (TREE_TYPE (f), false);
5659 /* If the field doesn't span the whole union, add an extra
5660 scalar for the rest. */
5661 if (simple_cst_equal (TYPE_SIZE (TREE_TYPE (f)),
5662 TYPE_SIZE (type)) != 1)
5663 m++;
5664 if (n < m)
5665 n = m;
5667 return n;
5670 case COMPLEX_TYPE:
5671 return 2;
5673 case VECTOR_TYPE:
5674 return TYPE_VECTOR_SUBPARTS (type);
5676 case INTEGER_TYPE:
5677 case REAL_TYPE:
5678 case FIXED_POINT_TYPE:
5679 case ENUMERAL_TYPE:
5680 case BOOLEAN_TYPE:
5681 case POINTER_TYPE:
5682 case OFFSET_TYPE:
5683 case REFERENCE_TYPE:
5684 case NULLPTR_TYPE:
5685 return 1;
5687 case ERROR_MARK:
5688 return 0;
5690 case VOID_TYPE:
5691 case METHOD_TYPE:
5692 case FUNCTION_TYPE:
5693 case LANG_TYPE:
5694 default:
5695 gcc_unreachable ();
5699 /* Helper for categorize_ctor_elements. Identical interface. */
5701 static bool
5702 categorize_ctor_elements_1 (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
5703 HOST_WIDE_INT *p_init_elts, bool *p_complete)
5705 unsigned HOST_WIDE_INT idx;
5706 HOST_WIDE_INT nz_elts, init_elts, num_fields;
5707 tree value, purpose, elt_type;
5709 /* Whether CTOR is a valid constant initializer, in accordance with what
5710 initializer_constant_valid_p does. If inferred from the constructor
5711 elements, true until proven otherwise. */
5712 bool const_from_elts_p = constructor_static_from_elts_p (ctor);
5713 bool const_p = const_from_elts_p ? true : TREE_STATIC (ctor);
5715 nz_elts = 0;
5716 init_elts = 0;
5717 num_fields = 0;
5718 elt_type = NULL_TREE;
5720 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), idx, purpose, value)
5722 HOST_WIDE_INT mult = 1;
5724 if (purpose && TREE_CODE (purpose) == RANGE_EXPR)
5726 tree lo_index = TREE_OPERAND (purpose, 0);
5727 tree hi_index = TREE_OPERAND (purpose, 1);
5729 if (tree_fits_uhwi_p (lo_index) && tree_fits_uhwi_p (hi_index))
5730 mult = (tree_to_uhwi (hi_index)
5731 - tree_to_uhwi (lo_index) + 1);
5733 num_fields += mult;
5734 elt_type = TREE_TYPE (value);
5736 switch (TREE_CODE (value))
5738 case CONSTRUCTOR:
5740 HOST_WIDE_INT nz = 0, ic = 0;
5742 bool const_elt_p = categorize_ctor_elements_1 (value, &nz, &ic,
5743 p_complete);
5745 nz_elts += mult * nz;
5746 init_elts += mult * ic;
5748 if (const_from_elts_p && const_p)
5749 const_p = const_elt_p;
5751 break;
5753 case INTEGER_CST:
5754 case REAL_CST:
5755 case FIXED_CST:
5756 if (!initializer_zerop (value))
5757 nz_elts += mult;
5758 init_elts += mult;
5759 break;
5761 case STRING_CST:
5762 nz_elts += mult * TREE_STRING_LENGTH (value);
5763 init_elts += mult * TREE_STRING_LENGTH (value);
5764 break;
5766 case COMPLEX_CST:
5767 if (!initializer_zerop (TREE_REALPART (value)))
5768 nz_elts += mult;
5769 if (!initializer_zerop (TREE_IMAGPART (value)))
5770 nz_elts += mult;
5771 init_elts += mult;
5772 break;
5774 case VECTOR_CST:
5776 unsigned i;
5777 for (i = 0; i < VECTOR_CST_NELTS (value); ++i)
5779 tree v = VECTOR_CST_ELT (value, i);
5780 if (!initializer_zerop (v))
5781 nz_elts += mult;
5782 init_elts += mult;
5785 break;
5787 default:
5789 HOST_WIDE_INT tc = count_type_elements (elt_type, false);
5790 nz_elts += mult * tc;
5791 init_elts += mult * tc;
5793 if (const_from_elts_p && const_p)
5794 const_p = initializer_constant_valid_p (value, elt_type)
5795 != NULL_TREE;
5797 break;
5801 if (*p_complete && !complete_ctor_at_level_p (TREE_TYPE (ctor),
5802 num_fields, elt_type))
5803 *p_complete = false;
5805 *p_nz_elts += nz_elts;
5806 *p_init_elts += init_elts;
5808 return const_p;
5811 /* Examine CTOR to discover:
5812 * how many scalar fields are set to nonzero values,
5813 and place it in *P_NZ_ELTS;
5814 * how many scalar fields in total are in CTOR,
5815 and place it in *P_ELT_COUNT.
5816 * whether the constructor is complete -- in the sense that every
5817 meaningful byte is explicitly given a value --
5818 and place it in *P_COMPLETE.
5820 Return whether or not CTOR is a valid static constant initializer, the same
5821 as "initializer_constant_valid_p (CTOR, TREE_TYPE (CTOR)) != 0". */
5823 bool
5824 categorize_ctor_elements (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
5825 HOST_WIDE_INT *p_init_elts, bool *p_complete)
5827 *p_nz_elts = 0;
5828 *p_init_elts = 0;
5829 *p_complete = true;
5831 return categorize_ctor_elements_1 (ctor, p_nz_elts, p_init_elts, p_complete);
5834 /* TYPE is initialized by a constructor with NUM_ELTS elements, the last
5835 of which had type LAST_TYPE. Each element was itself a complete
5836 initializer, in the sense that every meaningful byte was explicitly
5837 given a value. Return true if the same is true for the constructor
5838 as a whole. */
5840 bool
5841 complete_ctor_at_level_p (const_tree type, HOST_WIDE_INT num_elts,
5842 const_tree last_type)
5844 if (TREE_CODE (type) == UNION_TYPE
5845 || TREE_CODE (type) == QUAL_UNION_TYPE)
5847 if (num_elts == 0)
5848 return false;
5850 gcc_assert (num_elts == 1 && last_type);
5852 /* ??? We could look at each element of the union, and find the
5853 largest element. Which would avoid comparing the size of the
5854 initialized element against any tail padding in the union.
5855 Doesn't seem worth the effort... */
5856 return simple_cst_equal (TYPE_SIZE (type), TYPE_SIZE (last_type)) == 1;
5859 return count_type_elements (type, true) == num_elts;
5862 /* Return 1 if EXP contains mostly (3/4) zeros. */
5864 static int
5865 mostly_zeros_p (const_tree exp)
5867 if (TREE_CODE (exp) == CONSTRUCTOR)
5869 HOST_WIDE_INT nz_elts, init_elts;
5870 bool complete_p;
5872 categorize_ctor_elements (exp, &nz_elts, &init_elts, &complete_p);
5873 return !complete_p || nz_elts < init_elts / 4;
5876 return initializer_zerop (exp);
5879 /* Return 1 if EXP contains all zeros. */
5881 static int
5882 all_zeros_p (const_tree exp)
5884 if (TREE_CODE (exp) == CONSTRUCTOR)
5886 HOST_WIDE_INT nz_elts, init_elts;
5887 bool complete_p;
5889 categorize_ctor_elements (exp, &nz_elts, &init_elts, &complete_p);
5890 return nz_elts == 0;
5893 return initializer_zerop (exp);
5896 /* Helper function for store_constructor.
5897 TARGET, BITSIZE, BITPOS, MODE, EXP are as for store_field.
5898 CLEARED is as for store_constructor.
5899 ALIAS_SET is the alias set to use for any stores.
5901 This provides a recursive shortcut back to store_constructor when it isn't
5902 necessary to go through store_field. This is so that we can pass through
5903 the cleared field to let store_constructor know that we may not have to
5904 clear a substructure if the outer structure has already been cleared. */
5906 static void
5907 store_constructor_field (rtx target, unsigned HOST_WIDE_INT bitsize,
5908 HOST_WIDE_INT bitpos, machine_mode mode,
5909 tree exp, int cleared, alias_set_type alias_set)
5911 if (TREE_CODE (exp) == CONSTRUCTOR
5912 /* We can only call store_constructor recursively if the size and
5913 bit position are on a byte boundary. */
5914 && bitpos % BITS_PER_UNIT == 0
5915 && (bitsize > 0 && bitsize % BITS_PER_UNIT == 0)
5916 /* If we have a nonzero bitpos for a register target, then we just
5917 let store_field do the bitfield handling. This is unlikely to
5918 generate unnecessary clear instructions anyways. */
5919 && (bitpos == 0 || MEM_P (target)))
5921 if (MEM_P (target))
5922 target
5923 = adjust_address (target,
5924 GET_MODE (target) == BLKmode
5925 || 0 != (bitpos
5926 % GET_MODE_ALIGNMENT (GET_MODE (target)))
5927 ? BLKmode : VOIDmode, bitpos / BITS_PER_UNIT);
5930 /* Update the alias set, if required. */
5931 if (MEM_P (target) && ! MEM_KEEP_ALIAS_SET_P (target)
5932 && MEM_ALIAS_SET (target) != 0)
5934 target = copy_rtx (target);
5935 set_mem_alias_set (target, alias_set);
5938 store_constructor (exp, target, cleared, bitsize / BITS_PER_UNIT);
5940 else
5941 store_field (target, bitsize, bitpos, 0, 0, mode, exp, alias_set, false);
5945 /* Returns the number of FIELD_DECLs in TYPE. */
5947 static int
5948 fields_length (const_tree type)
5950 tree t = TYPE_FIELDS (type);
5951 int count = 0;
5953 for (; t; t = DECL_CHAIN (t))
5954 if (TREE_CODE (t) == FIELD_DECL)
5955 ++count;
5957 return count;
5961 /* Store the value of constructor EXP into the rtx TARGET.
5962 TARGET is either a REG or a MEM; we know it cannot conflict, since
5963 safe_from_p has been called.
5964 CLEARED is true if TARGET is known to have been zero'd.
5965 SIZE is the number of bytes of TARGET we are allowed to modify: this
5966 may not be the same as the size of EXP if we are assigning to a field
5967 which has been packed to exclude padding bits. */
5969 static void
5970 store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
5972 tree type = TREE_TYPE (exp);
5973 #ifdef WORD_REGISTER_OPERATIONS
5974 HOST_WIDE_INT exp_size = int_size_in_bytes (type);
5975 #endif
5977 switch (TREE_CODE (type))
5979 case RECORD_TYPE:
5980 case UNION_TYPE:
5981 case QUAL_UNION_TYPE:
5983 unsigned HOST_WIDE_INT idx;
5984 tree field, value;
5986 /* If size is zero or the target is already cleared, do nothing. */
5987 if (size == 0 || cleared)
5988 cleared = 1;
5989 /* We either clear the aggregate or indicate the value is dead. */
5990 else if ((TREE_CODE (type) == UNION_TYPE
5991 || TREE_CODE (type) == QUAL_UNION_TYPE)
5992 && ! CONSTRUCTOR_ELTS (exp))
5993 /* If the constructor is empty, clear the union. */
5995 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
5996 cleared = 1;
5999 /* If we are building a static constructor into a register,
6000 set the initial value as zero so we can fold the value into
6001 a constant. But if more than one register is involved,
6002 this probably loses. */
6003 else if (REG_P (target) && TREE_STATIC (exp)
6004 && GET_MODE_SIZE (GET_MODE (target)) <= UNITS_PER_WORD)
6006 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
6007 cleared = 1;
6010 /* If the constructor has fewer fields than the structure or
6011 if we are initializing the structure to mostly zeros, clear
6012 the whole structure first. Don't do this if TARGET is a
6013 register whose mode size isn't equal to SIZE since
6014 clear_storage can't handle this case. */
6015 else if (size > 0
6016 && (((int)vec_safe_length (CONSTRUCTOR_ELTS (exp))
6017 != fields_length (type))
6018 || mostly_zeros_p (exp))
6019 && (!REG_P (target)
6020 || ((HOST_WIDE_INT) GET_MODE_SIZE (GET_MODE (target))
6021 == size)))
6023 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
6024 cleared = 1;
6027 if (REG_P (target) && !cleared)
6028 emit_clobber (target);
6030 /* Store each element of the constructor into the
6031 corresponding field of TARGET. */
6032 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, field, value)
6034 machine_mode mode;
6035 HOST_WIDE_INT bitsize;
6036 HOST_WIDE_INT bitpos = 0;
6037 tree offset;
6038 rtx to_rtx = target;
6040 /* Just ignore missing fields. We cleared the whole
6041 structure, above, if any fields are missing. */
6042 if (field == 0)
6043 continue;
6045 if (cleared && initializer_zerop (value))
6046 continue;
6048 if (tree_fits_uhwi_p (DECL_SIZE (field)))
6049 bitsize = tree_to_uhwi (DECL_SIZE (field));
6050 else
6051 bitsize = -1;
6053 mode = DECL_MODE (field);
6054 if (DECL_BIT_FIELD (field))
6055 mode = VOIDmode;
6057 offset = DECL_FIELD_OFFSET (field);
6058 if (tree_fits_shwi_p (offset)
6059 && tree_fits_shwi_p (bit_position (field)))
6061 bitpos = int_bit_position (field);
6062 offset = 0;
6064 else
6065 bitpos = tree_to_shwi (DECL_FIELD_BIT_OFFSET (field));
6067 if (offset)
6069 machine_mode address_mode;
6070 rtx offset_rtx;
6072 offset
6073 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (offset,
6074 make_tree (TREE_TYPE (exp),
6075 target));
6077 offset_rtx = expand_normal (offset);
6078 gcc_assert (MEM_P (to_rtx));
6080 address_mode = get_address_mode (to_rtx);
6081 if (GET_MODE (offset_rtx) != address_mode)
6082 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
6084 to_rtx = offset_address (to_rtx, offset_rtx,
6085 highest_pow2_factor (offset));
6088 #ifdef WORD_REGISTER_OPERATIONS
6089 /* If this initializes a field that is smaller than a
6090 word, at the start of a word, try to widen it to a full
6091 word. This special case allows us to output C++ member
6092 function initializations in a form that the optimizers
6093 can understand. */
6094 if (REG_P (target)
6095 && bitsize < BITS_PER_WORD
6096 && bitpos % BITS_PER_WORD == 0
6097 && GET_MODE_CLASS (mode) == MODE_INT
6098 && TREE_CODE (value) == INTEGER_CST
6099 && exp_size >= 0
6100 && bitpos + BITS_PER_WORD <= exp_size * BITS_PER_UNIT)
6102 tree type = TREE_TYPE (value);
6104 if (TYPE_PRECISION (type) < BITS_PER_WORD)
6106 type = lang_hooks.types.type_for_mode
6107 (word_mode, TYPE_UNSIGNED (type));
6108 value = fold_convert (type, value);
6111 if (BYTES_BIG_ENDIAN)
6112 value
6113 = fold_build2 (LSHIFT_EXPR, type, value,
6114 build_int_cst (type,
6115 BITS_PER_WORD - bitsize));
6116 bitsize = BITS_PER_WORD;
6117 mode = word_mode;
6119 #endif
6121 if (MEM_P (to_rtx) && !MEM_KEEP_ALIAS_SET_P (to_rtx)
6122 && DECL_NONADDRESSABLE_P (field))
6124 to_rtx = copy_rtx (to_rtx);
6125 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
6128 store_constructor_field (to_rtx, bitsize, bitpos, mode,
6129 value, cleared,
6130 get_alias_set (TREE_TYPE (field)));
6132 break;
6134 case ARRAY_TYPE:
6136 tree value, index;
6137 unsigned HOST_WIDE_INT i;
6138 int need_to_clear;
6139 tree domain;
6140 tree elttype = TREE_TYPE (type);
6141 int const_bounds_p;
6142 HOST_WIDE_INT minelt = 0;
6143 HOST_WIDE_INT maxelt = 0;
6145 domain = TYPE_DOMAIN (type);
6146 const_bounds_p = (TYPE_MIN_VALUE (domain)
6147 && TYPE_MAX_VALUE (domain)
6148 && tree_fits_shwi_p (TYPE_MIN_VALUE (domain))
6149 && tree_fits_shwi_p (TYPE_MAX_VALUE (domain)));
6151 /* If we have constant bounds for the range of the type, get them. */
6152 if (const_bounds_p)
6154 minelt = tree_to_shwi (TYPE_MIN_VALUE (domain));
6155 maxelt = tree_to_shwi (TYPE_MAX_VALUE (domain));
6158 /* If the constructor has fewer elements than the array, clear
6159 the whole array first. Similarly if this is static
6160 constructor of a non-BLKmode object. */
6161 if (cleared)
6162 need_to_clear = 0;
6163 else if (REG_P (target) && TREE_STATIC (exp))
6164 need_to_clear = 1;
6165 else
6167 unsigned HOST_WIDE_INT idx;
6168 tree index, value;
6169 HOST_WIDE_INT count = 0, zero_count = 0;
6170 need_to_clear = ! const_bounds_p;
6172 /* This loop is a more accurate version of the loop in
6173 mostly_zeros_p (it handles RANGE_EXPR in an index). It
6174 is also needed to check for missing elements. */
6175 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, index, value)
6177 HOST_WIDE_INT this_node_count;
6179 if (need_to_clear)
6180 break;
6182 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
6184 tree lo_index = TREE_OPERAND (index, 0);
6185 tree hi_index = TREE_OPERAND (index, 1);
6187 if (! tree_fits_uhwi_p (lo_index)
6188 || ! tree_fits_uhwi_p (hi_index))
6190 need_to_clear = 1;
6191 break;
6194 this_node_count = (tree_to_uhwi (hi_index)
6195 - tree_to_uhwi (lo_index) + 1);
6197 else
6198 this_node_count = 1;
6200 count += this_node_count;
6201 if (mostly_zeros_p (value))
6202 zero_count += this_node_count;
6205 /* Clear the entire array first if there are any missing
6206 elements, or if the incidence of zero elements is >=
6207 75%. */
6208 if (! need_to_clear
6209 && (count < maxelt - minelt + 1
6210 || 4 * zero_count >= 3 * count))
6211 need_to_clear = 1;
6214 if (need_to_clear && size > 0)
6216 if (REG_P (target))
6217 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
6218 else
6219 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
6220 cleared = 1;
6223 if (!cleared && REG_P (target))
6224 /* Inform later passes that the old value is dead. */
6225 emit_clobber (target);
6227 /* Store each element of the constructor into the
6228 corresponding element of TARGET, determined by counting the
6229 elements. */
6230 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), i, index, value)
6232 machine_mode mode;
6233 HOST_WIDE_INT bitsize;
6234 HOST_WIDE_INT bitpos;
6235 rtx xtarget = target;
6237 if (cleared && initializer_zerop (value))
6238 continue;
6240 mode = TYPE_MODE (elttype);
6241 if (mode == BLKmode)
6242 bitsize = (tree_fits_uhwi_p (TYPE_SIZE (elttype))
6243 ? tree_to_uhwi (TYPE_SIZE (elttype))
6244 : -1);
6245 else
6246 bitsize = GET_MODE_BITSIZE (mode);
6248 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
6250 tree lo_index = TREE_OPERAND (index, 0);
6251 tree hi_index = TREE_OPERAND (index, 1);
6252 rtx index_r, pos_rtx;
6253 HOST_WIDE_INT lo, hi, count;
6254 tree position;
6256 /* If the range is constant and "small", unroll the loop. */
6257 if (const_bounds_p
6258 && tree_fits_shwi_p (lo_index)
6259 && tree_fits_shwi_p (hi_index)
6260 && (lo = tree_to_shwi (lo_index),
6261 hi = tree_to_shwi (hi_index),
6262 count = hi - lo + 1,
6263 (!MEM_P (target)
6264 || count <= 2
6265 || (tree_fits_uhwi_p (TYPE_SIZE (elttype))
6266 && (tree_to_uhwi (TYPE_SIZE (elttype)) * count
6267 <= 40 * 8)))))
6269 lo -= minelt; hi -= minelt;
6270 for (; lo <= hi; lo++)
6272 bitpos = lo * tree_to_shwi (TYPE_SIZE (elttype));
6274 if (MEM_P (target)
6275 && !MEM_KEEP_ALIAS_SET_P (target)
6276 && TREE_CODE (type) == ARRAY_TYPE
6277 && TYPE_NONALIASED_COMPONENT (type))
6279 target = copy_rtx (target);
6280 MEM_KEEP_ALIAS_SET_P (target) = 1;
6283 store_constructor_field
6284 (target, bitsize, bitpos, mode, value, cleared,
6285 get_alias_set (elttype));
6288 else
6290 rtx_code_label *loop_start = gen_label_rtx ();
6291 rtx_code_label *loop_end = gen_label_rtx ();
6292 tree exit_cond;
6294 expand_normal (hi_index);
6296 index = build_decl (EXPR_LOCATION (exp),
6297 VAR_DECL, NULL_TREE, domain);
6298 index_r = gen_reg_rtx (promote_decl_mode (index, NULL));
6299 SET_DECL_RTL (index, index_r);
6300 store_expr (lo_index, index_r, 0, false);
6302 /* Build the head of the loop. */
6303 do_pending_stack_adjust ();
6304 emit_label (loop_start);
6306 /* Assign value to element index. */
6307 position =
6308 fold_convert (ssizetype,
6309 fold_build2 (MINUS_EXPR,
6310 TREE_TYPE (index),
6311 index,
6312 TYPE_MIN_VALUE (domain)));
6314 position =
6315 size_binop (MULT_EXPR, position,
6316 fold_convert (ssizetype,
6317 TYPE_SIZE_UNIT (elttype)));
6319 pos_rtx = expand_normal (position);
6320 xtarget = offset_address (target, pos_rtx,
6321 highest_pow2_factor (position));
6322 xtarget = adjust_address (xtarget, mode, 0);
6323 if (TREE_CODE (value) == CONSTRUCTOR)
6324 store_constructor (value, xtarget, cleared,
6325 bitsize / BITS_PER_UNIT);
6326 else
6327 store_expr (value, xtarget, 0, false);
6329 /* Generate a conditional jump to exit the loop. */
6330 exit_cond = build2 (LT_EXPR, integer_type_node,
6331 index, hi_index);
6332 jumpif (exit_cond, loop_end, -1);
6334 /* Update the loop counter, and jump to the head of
6335 the loop. */
6336 expand_assignment (index,
6337 build2 (PLUS_EXPR, TREE_TYPE (index),
6338 index, integer_one_node),
6339 false);
6341 emit_jump (loop_start);
6343 /* Build the end of the loop. */
6344 emit_label (loop_end);
6347 else if ((index != 0 && ! tree_fits_shwi_p (index))
6348 || ! tree_fits_uhwi_p (TYPE_SIZE (elttype)))
6350 tree position;
6352 if (index == 0)
6353 index = ssize_int (1);
6355 if (minelt)
6356 index = fold_convert (ssizetype,
6357 fold_build2 (MINUS_EXPR,
6358 TREE_TYPE (index),
6359 index,
6360 TYPE_MIN_VALUE (domain)));
6362 position =
6363 size_binop (MULT_EXPR, index,
6364 fold_convert (ssizetype,
6365 TYPE_SIZE_UNIT (elttype)));
6366 xtarget = offset_address (target,
6367 expand_normal (position),
6368 highest_pow2_factor (position));
6369 xtarget = adjust_address (xtarget, mode, 0);
6370 store_expr (value, xtarget, 0, false);
6372 else
6374 if (index != 0)
6375 bitpos = ((tree_to_shwi (index) - minelt)
6376 * tree_to_uhwi (TYPE_SIZE (elttype)));
6377 else
6378 bitpos = (i * tree_to_uhwi (TYPE_SIZE (elttype)));
6380 if (MEM_P (target) && !MEM_KEEP_ALIAS_SET_P (target)
6381 && TREE_CODE (type) == ARRAY_TYPE
6382 && TYPE_NONALIASED_COMPONENT (type))
6384 target = copy_rtx (target);
6385 MEM_KEEP_ALIAS_SET_P (target) = 1;
6387 store_constructor_field (target, bitsize, bitpos, mode, value,
6388 cleared, get_alias_set (elttype));
6391 break;
6394 case VECTOR_TYPE:
6396 unsigned HOST_WIDE_INT idx;
6397 constructor_elt *ce;
6398 int i;
6399 int need_to_clear;
6400 int icode = CODE_FOR_nothing;
6401 tree elttype = TREE_TYPE (type);
6402 int elt_size = tree_to_uhwi (TYPE_SIZE (elttype));
6403 machine_mode eltmode = TYPE_MODE (elttype);
6404 HOST_WIDE_INT bitsize;
6405 HOST_WIDE_INT bitpos;
6406 rtvec vector = NULL;
6407 unsigned n_elts;
6408 alias_set_type alias;
6410 gcc_assert (eltmode != BLKmode);
6412 n_elts = TYPE_VECTOR_SUBPARTS (type);
6413 if (REG_P (target) && VECTOR_MODE_P (GET_MODE (target)))
6415 machine_mode mode = GET_MODE (target);
6417 icode = (int) optab_handler (vec_init_optab, mode);
6418 /* Don't use vec_init<mode> if some elements have VECTOR_TYPE. */
6419 if (icode != CODE_FOR_nothing)
6421 tree value;
6423 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
6424 if (TREE_CODE (TREE_TYPE (value)) == VECTOR_TYPE)
6426 icode = CODE_FOR_nothing;
6427 break;
6430 if (icode != CODE_FOR_nothing)
6432 unsigned int i;
6434 vector = rtvec_alloc (n_elts);
6435 for (i = 0; i < n_elts; i++)
6436 RTVEC_ELT (vector, i) = CONST0_RTX (GET_MODE_INNER (mode));
6440 /* If the constructor has fewer elements than the vector,
6441 clear the whole array first. Similarly if this is static
6442 constructor of a non-BLKmode object. */
6443 if (cleared)
6444 need_to_clear = 0;
6445 else if (REG_P (target) && TREE_STATIC (exp))
6446 need_to_clear = 1;
6447 else
6449 unsigned HOST_WIDE_INT count = 0, zero_count = 0;
6450 tree value;
6452 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
6454 int n_elts_here = tree_to_uhwi
6455 (int_const_binop (TRUNC_DIV_EXPR,
6456 TYPE_SIZE (TREE_TYPE (value)),
6457 TYPE_SIZE (elttype)));
6459 count += n_elts_here;
6460 if (mostly_zeros_p (value))
6461 zero_count += n_elts_here;
6464 /* Clear the entire vector first if there are any missing elements,
6465 or if the incidence of zero elements is >= 75%. */
6466 need_to_clear = (count < n_elts || 4 * zero_count >= 3 * count);
6469 if (need_to_clear && size > 0 && !vector)
6471 if (REG_P (target))
6472 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
6473 else
6474 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
6475 cleared = 1;
6478 /* Inform later passes that the old value is dead. */
6479 if (!cleared && !vector && REG_P (target))
6480 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
6482 if (MEM_P (target))
6483 alias = MEM_ALIAS_SET (target);
6484 else
6485 alias = get_alias_set (elttype);
6487 /* Store each element of the constructor into the corresponding
6488 element of TARGET, determined by counting the elements. */
6489 for (idx = 0, i = 0;
6490 vec_safe_iterate (CONSTRUCTOR_ELTS (exp), idx, &ce);
6491 idx++, i += bitsize / elt_size)
6493 HOST_WIDE_INT eltpos;
6494 tree value = ce->value;
6496 bitsize = tree_to_uhwi (TYPE_SIZE (TREE_TYPE (value)));
6497 if (cleared && initializer_zerop (value))
6498 continue;
6500 if (ce->index)
6501 eltpos = tree_to_uhwi (ce->index);
6502 else
6503 eltpos = i;
6505 if (vector)
6507 /* vec_init<mode> should not be used if there are VECTOR_TYPE
6508 elements. */
6509 gcc_assert (TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE);
6510 RTVEC_ELT (vector, eltpos)
6511 = expand_normal (value);
6513 else
6515 machine_mode value_mode =
6516 TREE_CODE (TREE_TYPE (value)) == VECTOR_TYPE
6517 ? TYPE_MODE (TREE_TYPE (value))
6518 : eltmode;
6519 bitpos = eltpos * elt_size;
6520 store_constructor_field (target, bitsize, bitpos, value_mode,
6521 value, cleared, alias);
6525 if (vector)
6526 emit_insn (GEN_FCN (icode)
6527 (target,
6528 gen_rtx_PARALLEL (GET_MODE (target), vector)));
6529 break;
6532 default:
6533 gcc_unreachable ();
6537 /* Store the value of EXP (an expression tree)
6538 into a subfield of TARGET which has mode MODE and occupies
6539 BITSIZE bits, starting BITPOS bits from the start of TARGET.
6540 If MODE is VOIDmode, it means that we are storing into a bit-field.
6542 BITREGION_START is bitpos of the first bitfield in this region.
6543 BITREGION_END is the bitpos of the ending bitfield in this region.
6544 These two fields are 0, if the C++ memory model does not apply,
6545 or we are not interested in keeping track of bitfield regions.
6547 Always return const0_rtx unless we have something particular to
6548 return.
6550 ALIAS_SET is the alias set for the destination. This value will
6551 (in general) be different from that for TARGET, since TARGET is a
6552 reference to the containing structure.
6554 If NONTEMPORAL is true, try generating a nontemporal store. */
6556 static rtx
6557 store_field (rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos,
6558 unsigned HOST_WIDE_INT bitregion_start,
6559 unsigned HOST_WIDE_INT bitregion_end,
6560 machine_mode mode, tree exp,
6561 alias_set_type alias_set, bool nontemporal)
6563 if (TREE_CODE (exp) == ERROR_MARK)
6564 return const0_rtx;
6566 /* If we have nothing to store, do nothing unless the expression has
6567 side-effects. */
6568 if (bitsize == 0)
6569 return expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
6571 if (GET_CODE (target) == CONCAT)
6573 /* We're storing into a struct containing a single __complex. */
6575 gcc_assert (!bitpos);
6576 return store_expr (exp, target, 0, nontemporal);
6579 /* If the structure is in a register or if the component
6580 is a bit field, we cannot use addressing to access it.
6581 Use bit-field techniques or SUBREG to store in it. */
6583 if (mode == VOIDmode
6584 || (mode != BLKmode && ! direct_store[(int) mode]
6585 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
6586 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
6587 || REG_P (target)
6588 || GET_CODE (target) == SUBREG
6589 /* If the field isn't aligned enough to store as an ordinary memref,
6590 store it as a bit field. */
6591 || (mode != BLKmode
6592 && ((((MEM_ALIGN (target) < GET_MODE_ALIGNMENT (mode))
6593 || bitpos % GET_MODE_ALIGNMENT (mode))
6594 && SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (target)))
6595 || (bitpos % BITS_PER_UNIT != 0)))
6596 || (bitsize >= 0 && mode != BLKmode
6597 && GET_MODE_BITSIZE (mode) > bitsize)
6598 /* If the RHS and field are a constant size and the size of the
6599 RHS isn't the same size as the bitfield, we must use bitfield
6600 operations. */
6601 || (bitsize >= 0
6602 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
6603 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) != 0)
6604 /* If we are expanding a MEM_REF of a non-BLKmode non-addressable
6605 decl we must use bitfield operations. */
6606 || (bitsize >= 0
6607 && TREE_CODE (exp) == MEM_REF
6608 && TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
6609 && DECL_P (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
6610 && !TREE_ADDRESSABLE (TREE_OPERAND (TREE_OPERAND (exp, 0),0 ))
6611 && DECL_MODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)) != BLKmode))
6613 rtx temp;
6614 gimple nop_def;
6616 /* If EXP is a NOP_EXPR of precision less than its mode, then that
6617 implies a mask operation. If the precision is the same size as
6618 the field we're storing into, that mask is redundant. This is
6619 particularly common with bit field assignments generated by the
6620 C front end. */
6621 nop_def = get_def_for_expr (exp, NOP_EXPR);
6622 if (nop_def)
6624 tree type = TREE_TYPE (exp);
6625 if (INTEGRAL_TYPE_P (type)
6626 && TYPE_PRECISION (type) < GET_MODE_BITSIZE (TYPE_MODE (type))
6627 && bitsize == TYPE_PRECISION (type))
6629 tree op = gimple_assign_rhs1 (nop_def);
6630 type = TREE_TYPE (op);
6631 if (INTEGRAL_TYPE_P (type) && TYPE_PRECISION (type) >= bitsize)
6632 exp = op;
6636 temp = expand_normal (exp);
6638 /* If BITSIZE is narrower than the size of the type of EXP
6639 we will be narrowing TEMP. Normally, what's wanted are the
6640 low-order bits. However, if EXP's type is a record and this is
6641 big-endian machine, we want the upper BITSIZE bits. */
6642 if (BYTES_BIG_ENDIAN && GET_MODE_CLASS (GET_MODE (temp)) == MODE_INT
6643 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (temp))
6644 && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
6645 temp = expand_shift (RSHIFT_EXPR, GET_MODE (temp), temp,
6646 GET_MODE_BITSIZE (GET_MODE (temp)) - bitsize,
6647 NULL_RTX, 1);
6649 /* Unless MODE is VOIDmode or BLKmode, convert TEMP to MODE. */
6650 if (mode != VOIDmode && mode != BLKmode
6651 && mode != TYPE_MODE (TREE_TYPE (exp)))
6652 temp = convert_modes (mode, TYPE_MODE (TREE_TYPE (exp)), temp, 1);
6654 /* If TEMP is not a PARALLEL (see below) and its mode and that of TARGET
6655 are both BLKmode, both must be in memory and BITPOS must be aligned
6656 on a byte boundary. If so, we simply do a block copy. Likewise for
6657 a BLKmode-like TARGET. */
6658 if (GET_CODE (temp) != PARALLEL
6659 && GET_MODE (temp) == BLKmode
6660 && (GET_MODE (target) == BLKmode
6661 || (MEM_P (target)
6662 && GET_MODE_CLASS (GET_MODE (target)) == MODE_INT
6663 && (bitpos % BITS_PER_UNIT) == 0
6664 && (bitsize % BITS_PER_UNIT) == 0)))
6666 gcc_assert (MEM_P (target) && MEM_P (temp)
6667 && (bitpos % BITS_PER_UNIT) == 0);
6669 target = adjust_address (target, VOIDmode, bitpos / BITS_PER_UNIT);
6670 emit_block_move (target, temp,
6671 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
6672 / BITS_PER_UNIT),
6673 BLOCK_OP_NORMAL);
6675 return const0_rtx;
6678 /* Handle calls that return values in multiple non-contiguous locations.
6679 The Irix 6 ABI has examples of this. */
6680 if (GET_CODE (temp) == PARALLEL)
6682 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
6683 rtx temp_target;
6684 if (mode == BLKmode || mode == VOIDmode)
6685 mode = smallest_mode_for_size (size * BITS_PER_UNIT, MODE_INT);
6686 temp_target = gen_reg_rtx (mode);
6687 emit_group_store (temp_target, temp, TREE_TYPE (exp), size);
6688 temp = temp_target;
6690 else if (mode == BLKmode)
6692 /* Handle calls that return BLKmode values in registers. */
6693 if (REG_P (temp) && TREE_CODE (exp) == CALL_EXPR)
6695 rtx temp_target = gen_reg_rtx (GET_MODE (temp));
6696 copy_blkmode_from_reg (temp_target, temp, TREE_TYPE (exp));
6697 temp = temp_target;
6699 else
6701 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
6702 rtx temp_target;
6703 mode = smallest_mode_for_size (size * BITS_PER_UNIT, MODE_INT);
6704 temp_target = gen_reg_rtx (mode);
6705 temp_target
6706 = extract_bit_field (temp, size * BITS_PER_UNIT, 0, 1,
6707 temp_target, mode, mode);
6708 temp = temp_target;
6712 /* Store the value in the bitfield. */
6713 store_bit_field (target, bitsize, bitpos,
6714 bitregion_start, bitregion_end,
6715 mode, temp);
6717 return const0_rtx;
6719 else
6721 /* Now build a reference to just the desired component. */
6722 rtx to_rtx = adjust_address (target, mode, bitpos / BITS_PER_UNIT);
6724 if (to_rtx == target)
6725 to_rtx = copy_rtx (to_rtx);
6727 if (!MEM_KEEP_ALIAS_SET_P (to_rtx) && MEM_ALIAS_SET (to_rtx) != 0)
6728 set_mem_alias_set (to_rtx, alias_set);
6730 return store_expr (exp, to_rtx, 0, nontemporal);
6734 /* Given an expression EXP that may be a COMPONENT_REF, a BIT_FIELD_REF,
6735 an ARRAY_REF, or an ARRAY_RANGE_REF, look for nested operations of these
6736 codes and find the ultimate containing object, which we return.
6738 We set *PBITSIZE to the size in bits that we want, *PBITPOS to the
6739 bit position, and *PUNSIGNEDP to the signedness of the field.
6740 If the position of the field is variable, we store a tree
6741 giving the variable offset (in units) in *POFFSET.
6742 This offset is in addition to the bit position.
6743 If the position is not variable, we store 0 in *POFFSET.
6745 If any of the extraction expressions is volatile,
6746 we store 1 in *PVOLATILEP. Otherwise we don't change that.
6748 If the field is a non-BLKmode bit-field, *PMODE is set to VOIDmode.
6749 Otherwise, it is a mode that can be used to access the field.
6751 If the field describes a variable-sized object, *PMODE is set to
6752 BLKmode and *PBITSIZE is set to -1. An access cannot be made in
6753 this case, but the address of the object can be found.
6755 If KEEP_ALIGNING is true and the target is STRICT_ALIGNMENT, we don't
6756 look through nodes that serve as markers of a greater alignment than
6757 the one that can be deduced from the expression. These nodes make it
6758 possible for front-ends to prevent temporaries from being created by
6759 the middle-end on alignment considerations. For that purpose, the
6760 normal operating mode at high-level is to always pass FALSE so that
6761 the ultimate containing object is really returned; moreover, the
6762 associated predicate handled_component_p will always return TRUE
6763 on these nodes, thus indicating that they are essentially handled
6764 by get_inner_reference. TRUE should only be passed when the caller
6765 is scanning the expression in order to build another representation
6766 and specifically knows how to handle these nodes; as such, this is
6767 the normal operating mode in the RTL expanders. */
6769 tree
6770 get_inner_reference (tree exp, HOST_WIDE_INT *pbitsize,
6771 HOST_WIDE_INT *pbitpos, tree *poffset,
6772 machine_mode *pmode, int *punsignedp,
6773 int *pvolatilep, bool keep_aligning)
6775 tree size_tree = 0;
6776 machine_mode mode = VOIDmode;
6777 bool blkmode_bitfield = false;
6778 tree offset = size_zero_node;
6779 offset_int bit_offset = 0;
6781 /* First get the mode, signedness, and size. We do this from just the
6782 outermost expression. */
6783 *pbitsize = -1;
6784 if (TREE_CODE (exp) == COMPONENT_REF)
6786 tree field = TREE_OPERAND (exp, 1);
6787 size_tree = DECL_SIZE (field);
6788 if (flag_strict_volatile_bitfields > 0
6789 && TREE_THIS_VOLATILE (exp)
6790 && DECL_BIT_FIELD_TYPE (field)
6791 && DECL_MODE (field) != BLKmode)
6792 /* Volatile bitfields should be accessed in the mode of the
6793 field's type, not the mode computed based on the bit
6794 size. */
6795 mode = TYPE_MODE (DECL_BIT_FIELD_TYPE (field));
6796 else if (!DECL_BIT_FIELD (field))
6797 mode = DECL_MODE (field);
6798 else if (DECL_MODE (field) == BLKmode)
6799 blkmode_bitfield = true;
6801 *punsignedp = DECL_UNSIGNED (field);
6803 else if (TREE_CODE (exp) == BIT_FIELD_REF)
6805 size_tree = TREE_OPERAND (exp, 1);
6806 *punsignedp = (! INTEGRAL_TYPE_P (TREE_TYPE (exp))
6807 || TYPE_UNSIGNED (TREE_TYPE (exp)));
6809 /* For vector types, with the correct size of access, use the mode of
6810 inner type. */
6811 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == VECTOR_TYPE
6812 && TREE_TYPE (exp) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)))
6813 && tree_int_cst_equal (size_tree, TYPE_SIZE (TREE_TYPE (exp))))
6814 mode = TYPE_MODE (TREE_TYPE (exp));
6816 else
6818 mode = TYPE_MODE (TREE_TYPE (exp));
6819 *punsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
6821 if (mode == BLKmode)
6822 size_tree = TYPE_SIZE (TREE_TYPE (exp));
6823 else
6824 *pbitsize = GET_MODE_BITSIZE (mode);
6827 if (size_tree != 0)
6829 if (! tree_fits_uhwi_p (size_tree))
6830 mode = BLKmode, *pbitsize = -1;
6831 else
6832 *pbitsize = tree_to_uhwi (size_tree);
6835 /* Compute cumulative bit-offset for nested component-refs and array-refs,
6836 and find the ultimate containing object. */
6837 while (1)
6839 switch (TREE_CODE (exp))
6841 case BIT_FIELD_REF:
6842 bit_offset += wi::to_offset (TREE_OPERAND (exp, 2));
6843 break;
6845 case COMPONENT_REF:
6847 tree field = TREE_OPERAND (exp, 1);
6848 tree this_offset = component_ref_field_offset (exp);
6850 /* If this field hasn't been filled in yet, don't go past it.
6851 This should only happen when folding expressions made during
6852 type construction. */
6853 if (this_offset == 0)
6854 break;
6856 offset = size_binop (PLUS_EXPR, offset, this_offset);
6857 bit_offset += wi::to_offset (DECL_FIELD_BIT_OFFSET (field));
6859 /* ??? Right now we don't do anything with DECL_OFFSET_ALIGN. */
6861 break;
6863 case ARRAY_REF:
6864 case ARRAY_RANGE_REF:
6866 tree index = TREE_OPERAND (exp, 1);
6867 tree low_bound = array_ref_low_bound (exp);
6868 tree unit_size = array_ref_element_size (exp);
6870 /* We assume all arrays have sizes that are a multiple of a byte.
6871 First subtract the lower bound, if any, in the type of the
6872 index, then convert to sizetype and multiply by the size of
6873 the array element. */
6874 if (! integer_zerop (low_bound))
6875 index = fold_build2 (MINUS_EXPR, TREE_TYPE (index),
6876 index, low_bound);
6878 offset = size_binop (PLUS_EXPR, offset,
6879 size_binop (MULT_EXPR,
6880 fold_convert (sizetype, index),
6881 unit_size));
6883 break;
6885 case REALPART_EXPR:
6886 break;
6888 case IMAGPART_EXPR:
6889 bit_offset += *pbitsize;
6890 break;
6892 case VIEW_CONVERT_EXPR:
6893 if (keep_aligning && STRICT_ALIGNMENT
6894 && (TYPE_ALIGN (TREE_TYPE (exp))
6895 > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0))))
6896 && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0)))
6897 < BIGGEST_ALIGNMENT)
6898 && (TYPE_ALIGN_OK (TREE_TYPE (exp))
6899 || TYPE_ALIGN_OK (TREE_TYPE (TREE_OPERAND (exp, 0)))))
6900 goto done;
6901 break;
6903 case MEM_REF:
6904 /* Hand back the decl for MEM[&decl, off]. */
6905 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR)
6907 tree off = TREE_OPERAND (exp, 1);
6908 if (!integer_zerop (off))
6910 offset_int boff, coff = mem_ref_offset (exp);
6911 boff = wi::lshift (coff, LOG2_BITS_PER_UNIT);
6912 bit_offset += boff;
6914 exp = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
6916 goto done;
6918 default:
6919 goto done;
6922 /* If any reference in the chain is volatile, the effect is volatile. */
6923 if (TREE_THIS_VOLATILE (exp))
6924 *pvolatilep = 1;
6926 exp = TREE_OPERAND (exp, 0);
6928 done:
6930 /* If OFFSET is constant, see if we can return the whole thing as a
6931 constant bit position. Make sure to handle overflow during
6932 this conversion. */
6933 if (TREE_CODE (offset) == INTEGER_CST)
6935 offset_int tem = wi::sext (wi::to_offset (offset),
6936 TYPE_PRECISION (sizetype));
6937 tem = wi::lshift (tem, LOG2_BITS_PER_UNIT);
6938 tem += bit_offset;
6939 if (wi::fits_shwi_p (tem))
6941 *pbitpos = tem.to_shwi ();
6942 *poffset = offset = NULL_TREE;
6946 /* Otherwise, split it up. */
6947 if (offset)
6949 /* Avoid returning a negative bitpos as this may wreak havoc later. */
6950 if (wi::neg_p (bit_offset) || !wi::fits_shwi_p (bit_offset))
6952 offset_int mask = wi::mask <offset_int> (LOG2_BITS_PER_UNIT, false);
6953 offset_int tem = bit_offset.and_not (mask);
6954 /* TEM is the bitpos rounded to BITS_PER_UNIT towards -Inf.
6955 Subtract it to BIT_OFFSET and add it (scaled) to OFFSET. */
6956 bit_offset -= tem;
6957 tem = wi::arshift (tem, LOG2_BITS_PER_UNIT);
6958 offset = size_binop (PLUS_EXPR, offset,
6959 wide_int_to_tree (sizetype, tem));
6962 *pbitpos = bit_offset.to_shwi ();
6963 *poffset = offset;
6966 /* We can use BLKmode for a byte-aligned BLKmode bitfield. */
6967 if (mode == VOIDmode
6968 && blkmode_bitfield
6969 && (*pbitpos % BITS_PER_UNIT) == 0
6970 && (*pbitsize % BITS_PER_UNIT) == 0)
6971 *pmode = BLKmode;
6972 else
6973 *pmode = mode;
6975 return exp;
6978 /* Return a tree of sizetype representing the size, in bytes, of the element
6979 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6981 tree
6982 array_ref_element_size (tree exp)
6984 tree aligned_size = TREE_OPERAND (exp, 3);
6985 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
6986 location_t loc = EXPR_LOCATION (exp);
6988 /* If a size was specified in the ARRAY_REF, it's the size measured
6989 in alignment units of the element type. So multiply by that value. */
6990 if (aligned_size)
6992 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6993 sizetype from another type of the same width and signedness. */
6994 if (TREE_TYPE (aligned_size) != sizetype)
6995 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
6996 return size_binop_loc (loc, MULT_EXPR, aligned_size,
6997 size_int (TYPE_ALIGN_UNIT (elmt_type)));
7000 /* Otherwise, take the size from that of the element type. Substitute
7001 any PLACEHOLDER_EXPR that we have. */
7002 else
7003 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
7006 /* Return a tree representing the lower bound of the array mentioned in
7007 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
7009 tree
7010 array_ref_low_bound (tree exp)
7012 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
7014 /* If a lower bound is specified in EXP, use it. */
7015 if (TREE_OPERAND (exp, 2))
7016 return TREE_OPERAND (exp, 2);
7018 /* Otherwise, if there is a domain type and it has a lower bound, use it,
7019 substituting for a PLACEHOLDER_EXPR as needed. */
7020 if (domain_type && TYPE_MIN_VALUE (domain_type))
7021 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
7023 /* Otherwise, return a zero of the appropriate type. */
7024 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
7027 /* Returns true if REF is an array reference to an array at the end of
7028 a structure. If this is the case, the array may be allocated larger
7029 than its upper bound implies. */
7031 bool
7032 array_at_struct_end_p (tree ref)
7034 if (TREE_CODE (ref) != ARRAY_REF
7035 && TREE_CODE (ref) != ARRAY_RANGE_REF)
7036 return false;
7038 while (handled_component_p (ref))
7040 /* If the reference chain contains a component reference to a
7041 non-union type and there follows another field the reference
7042 is not at the end of a structure. */
7043 if (TREE_CODE (ref) == COMPONENT_REF
7044 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
7046 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
7047 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
7048 nextf = DECL_CHAIN (nextf);
7049 if (nextf)
7050 return false;
7053 ref = TREE_OPERAND (ref, 0);
7056 /* If the reference is based on a declared entity, the size of the array
7057 is constrained by its given domain. */
7058 if (DECL_P (ref))
7059 return false;
7061 return true;
7064 /* Return a tree representing the upper bound of the array mentioned in
7065 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
7067 tree
7068 array_ref_up_bound (tree exp)
7070 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
7072 /* If there is a domain type and it has an upper bound, use it, substituting
7073 for a PLACEHOLDER_EXPR as needed. */
7074 if (domain_type && TYPE_MAX_VALUE (domain_type))
7075 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
7077 /* Otherwise fail. */
7078 return NULL_TREE;
7081 /* Return a tree representing the offset, in bytes, of the field referenced
7082 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
7084 tree
7085 component_ref_field_offset (tree exp)
7087 tree aligned_offset = TREE_OPERAND (exp, 2);
7088 tree field = TREE_OPERAND (exp, 1);
7089 location_t loc = EXPR_LOCATION (exp);
7091 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
7092 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
7093 value. */
7094 if (aligned_offset)
7096 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
7097 sizetype from another type of the same width and signedness. */
7098 if (TREE_TYPE (aligned_offset) != sizetype)
7099 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
7100 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
7101 size_int (DECL_OFFSET_ALIGN (field)
7102 / BITS_PER_UNIT));
7105 /* Otherwise, take the offset from that of the field. Substitute
7106 any PLACEHOLDER_EXPR that we have. */
7107 else
7108 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
7111 /* Alignment in bits the TARGET of an assignment may be assumed to have. */
7113 static unsigned HOST_WIDE_INT
7114 target_align (const_tree target)
7116 /* We might have a chain of nested references with intermediate misaligning
7117 bitfields components, so need to recurse to find out. */
7119 unsigned HOST_WIDE_INT this_align, outer_align;
7121 switch (TREE_CODE (target))
7123 case BIT_FIELD_REF:
7124 return 1;
7126 case COMPONENT_REF:
7127 this_align = DECL_ALIGN (TREE_OPERAND (target, 1));
7128 outer_align = target_align (TREE_OPERAND (target, 0));
7129 return MIN (this_align, outer_align);
7131 case ARRAY_REF:
7132 case ARRAY_RANGE_REF:
7133 this_align = TYPE_ALIGN (TREE_TYPE (target));
7134 outer_align = target_align (TREE_OPERAND (target, 0));
7135 return MIN (this_align, outer_align);
7137 CASE_CONVERT:
7138 case NON_LVALUE_EXPR:
7139 case VIEW_CONVERT_EXPR:
7140 this_align = TYPE_ALIGN (TREE_TYPE (target));
7141 outer_align = target_align (TREE_OPERAND (target, 0));
7142 return MAX (this_align, outer_align);
7144 default:
7145 return TYPE_ALIGN (TREE_TYPE (target));
7150 /* Given an rtx VALUE that may contain additions and multiplications, return
7151 an equivalent value that just refers to a register, memory, or constant.
7152 This is done by generating instructions to perform the arithmetic and
7153 returning a pseudo-register containing the value.
7155 The returned value may be a REG, SUBREG, MEM or constant. */
7158 force_operand (rtx value, rtx target)
7160 rtx op1, op2;
7161 /* Use subtarget as the target for operand 0 of a binary operation. */
7162 rtx subtarget = get_subtarget (target);
7163 enum rtx_code code = GET_CODE (value);
7165 /* Check for subreg applied to an expression produced by loop optimizer. */
7166 if (code == SUBREG
7167 && !REG_P (SUBREG_REG (value))
7168 && !MEM_P (SUBREG_REG (value)))
7170 value
7171 = simplify_gen_subreg (GET_MODE (value),
7172 force_reg (GET_MODE (SUBREG_REG (value)),
7173 force_operand (SUBREG_REG (value),
7174 NULL_RTX)),
7175 GET_MODE (SUBREG_REG (value)),
7176 SUBREG_BYTE (value));
7177 code = GET_CODE (value);
7180 /* Check for a PIC address load. */
7181 if ((code == PLUS || code == MINUS)
7182 && XEXP (value, 0) == pic_offset_table_rtx
7183 && (GET_CODE (XEXP (value, 1)) == SYMBOL_REF
7184 || GET_CODE (XEXP (value, 1)) == LABEL_REF
7185 || GET_CODE (XEXP (value, 1)) == CONST))
7187 if (!subtarget)
7188 subtarget = gen_reg_rtx (GET_MODE (value));
7189 emit_move_insn (subtarget, value);
7190 return subtarget;
7193 if (ARITHMETIC_P (value))
7195 op2 = XEXP (value, 1);
7196 if (!CONSTANT_P (op2) && !(REG_P (op2) && op2 != subtarget))
7197 subtarget = 0;
7198 if (code == MINUS && CONST_INT_P (op2))
7200 code = PLUS;
7201 op2 = negate_rtx (GET_MODE (value), op2);
7204 /* Check for an addition with OP2 a constant integer and our first
7205 operand a PLUS of a virtual register and something else. In that
7206 case, we want to emit the sum of the virtual register and the
7207 constant first and then add the other value. This allows virtual
7208 register instantiation to simply modify the constant rather than
7209 creating another one around this addition. */
7210 if (code == PLUS && CONST_INT_P (op2)
7211 && GET_CODE (XEXP (value, 0)) == PLUS
7212 && REG_P (XEXP (XEXP (value, 0), 0))
7213 && REGNO (XEXP (XEXP (value, 0), 0)) >= FIRST_VIRTUAL_REGISTER
7214 && REGNO (XEXP (XEXP (value, 0), 0)) <= LAST_VIRTUAL_REGISTER)
7216 rtx temp = expand_simple_binop (GET_MODE (value), code,
7217 XEXP (XEXP (value, 0), 0), op2,
7218 subtarget, 0, OPTAB_LIB_WIDEN);
7219 return expand_simple_binop (GET_MODE (value), code, temp,
7220 force_operand (XEXP (XEXP (value,
7221 0), 1), 0),
7222 target, 0, OPTAB_LIB_WIDEN);
7225 op1 = force_operand (XEXP (value, 0), subtarget);
7226 op2 = force_operand (op2, NULL_RTX);
7227 switch (code)
7229 case MULT:
7230 return expand_mult (GET_MODE (value), op1, op2, target, 1);
7231 case DIV:
7232 if (!INTEGRAL_MODE_P (GET_MODE (value)))
7233 return expand_simple_binop (GET_MODE (value), code, op1, op2,
7234 target, 1, OPTAB_LIB_WIDEN);
7235 else
7236 return expand_divmod (0,
7237 FLOAT_MODE_P (GET_MODE (value))
7238 ? RDIV_EXPR : TRUNC_DIV_EXPR,
7239 GET_MODE (value), op1, op2, target, 0);
7240 case MOD:
7241 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
7242 target, 0);
7243 case UDIV:
7244 return expand_divmod (0, TRUNC_DIV_EXPR, GET_MODE (value), op1, op2,
7245 target, 1);
7246 case UMOD:
7247 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
7248 target, 1);
7249 case ASHIFTRT:
7250 return expand_simple_binop (GET_MODE (value), code, op1, op2,
7251 target, 0, OPTAB_LIB_WIDEN);
7252 default:
7253 return expand_simple_binop (GET_MODE (value), code, op1, op2,
7254 target, 1, OPTAB_LIB_WIDEN);
7257 if (UNARY_P (value))
7259 if (!target)
7260 target = gen_reg_rtx (GET_MODE (value));
7261 op1 = force_operand (XEXP (value, 0), NULL_RTX);
7262 switch (code)
7264 case ZERO_EXTEND:
7265 case SIGN_EXTEND:
7266 case TRUNCATE:
7267 case FLOAT_EXTEND:
7268 case FLOAT_TRUNCATE:
7269 convert_move (target, op1, code == ZERO_EXTEND);
7270 return target;
7272 case FIX:
7273 case UNSIGNED_FIX:
7274 expand_fix (target, op1, code == UNSIGNED_FIX);
7275 return target;
7277 case FLOAT:
7278 case UNSIGNED_FLOAT:
7279 expand_float (target, op1, code == UNSIGNED_FLOAT);
7280 return target;
7282 default:
7283 return expand_simple_unop (GET_MODE (value), code, op1, target, 0);
7287 #ifdef INSN_SCHEDULING
7288 /* On machines that have insn scheduling, we want all memory reference to be
7289 explicit, so we need to deal with such paradoxical SUBREGs. */
7290 if (paradoxical_subreg_p (value) && MEM_P (SUBREG_REG (value)))
7291 value
7292 = simplify_gen_subreg (GET_MODE (value),
7293 force_reg (GET_MODE (SUBREG_REG (value)),
7294 force_operand (SUBREG_REG (value),
7295 NULL_RTX)),
7296 GET_MODE (SUBREG_REG (value)),
7297 SUBREG_BYTE (value));
7298 #endif
7300 return value;
7303 /* Subroutine of expand_expr: return nonzero iff there is no way that
7304 EXP can reference X, which is being modified. TOP_P is nonzero if this
7305 call is going to be used to determine whether we need a temporary
7306 for EXP, as opposed to a recursive call to this function.
7308 It is always safe for this routine to return zero since it merely
7309 searches for optimization opportunities. */
7312 safe_from_p (const_rtx x, tree exp, int top_p)
7314 rtx exp_rtl = 0;
7315 int i, nops;
7317 if (x == 0
7318 /* If EXP has varying size, we MUST use a target since we currently
7319 have no way of allocating temporaries of variable size
7320 (except for arrays that have TYPE_ARRAY_MAX_SIZE set).
7321 So we assume here that something at a higher level has prevented a
7322 clash. This is somewhat bogus, but the best we can do. Only
7323 do this when X is BLKmode and when we are at the top level. */
7324 || (top_p && TREE_TYPE (exp) != 0 && COMPLETE_TYPE_P (TREE_TYPE (exp))
7325 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST
7326 && (TREE_CODE (TREE_TYPE (exp)) != ARRAY_TYPE
7327 || TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)) == NULL_TREE
7328 || TREE_CODE (TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)))
7329 != INTEGER_CST)
7330 && GET_MODE (x) == BLKmode)
7331 /* If X is in the outgoing argument area, it is always safe. */
7332 || (MEM_P (x)
7333 && (XEXP (x, 0) == virtual_outgoing_args_rtx
7334 || (GET_CODE (XEXP (x, 0)) == PLUS
7335 && XEXP (XEXP (x, 0), 0) == virtual_outgoing_args_rtx))))
7336 return 1;
7338 /* If this is a subreg of a hard register, declare it unsafe, otherwise,
7339 find the underlying pseudo. */
7340 if (GET_CODE (x) == SUBREG)
7342 x = SUBREG_REG (x);
7343 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
7344 return 0;
7347 /* Now look at our tree code and possibly recurse. */
7348 switch (TREE_CODE_CLASS (TREE_CODE (exp)))
7350 case tcc_declaration:
7351 exp_rtl = DECL_RTL_IF_SET (exp);
7352 break;
7354 case tcc_constant:
7355 return 1;
7357 case tcc_exceptional:
7358 if (TREE_CODE (exp) == TREE_LIST)
7360 while (1)
7362 if (TREE_VALUE (exp) && !safe_from_p (x, TREE_VALUE (exp), 0))
7363 return 0;
7364 exp = TREE_CHAIN (exp);
7365 if (!exp)
7366 return 1;
7367 if (TREE_CODE (exp) != TREE_LIST)
7368 return safe_from_p (x, exp, 0);
7371 else if (TREE_CODE (exp) == CONSTRUCTOR)
7373 constructor_elt *ce;
7374 unsigned HOST_WIDE_INT idx;
7376 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (exp), idx, ce)
7377 if ((ce->index != NULL_TREE && !safe_from_p (x, ce->index, 0))
7378 || !safe_from_p (x, ce->value, 0))
7379 return 0;
7380 return 1;
7382 else if (TREE_CODE (exp) == ERROR_MARK)
7383 return 1; /* An already-visited SAVE_EXPR? */
7384 else
7385 return 0;
7387 case tcc_statement:
7388 /* The only case we look at here is the DECL_INITIAL inside a
7389 DECL_EXPR. */
7390 return (TREE_CODE (exp) != DECL_EXPR
7391 || TREE_CODE (DECL_EXPR_DECL (exp)) != VAR_DECL
7392 || !DECL_INITIAL (DECL_EXPR_DECL (exp))
7393 || safe_from_p (x, DECL_INITIAL (DECL_EXPR_DECL (exp)), 0));
7395 case tcc_binary:
7396 case tcc_comparison:
7397 if (!safe_from_p (x, TREE_OPERAND (exp, 1), 0))
7398 return 0;
7399 /* Fall through. */
7401 case tcc_unary:
7402 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
7404 case tcc_expression:
7405 case tcc_reference:
7406 case tcc_vl_exp:
7407 /* Now do code-specific tests. EXP_RTL is set to any rtx we find in
7408 the expression. If it is set, we conflict iff we are that rtx or
7409 both are in memory. Otherwise, we check all operands of the
7410 expression recursively. */
7412 switch (TREE_CODE (exp))
7414 case ADDR_EXPR:
7415 /* If the operand is static or we are static, we can't conflict.
7416 Likewise if we don't conflict with the operand at all. */
7417 if (staticp (TREE_OPERAND (exp, 0))
7418 || TREE_STATIC (exp)
7419 || safe_from_p (x, TREE_OPERAND (exp, 0), 0))
7420 return 1;
7422 /* Otherwise, the only way this can conflict is if we are taking
7423 the address of a DECL a that address if part of X, which is
7424 very rare. */
7425 exp = TREE_OPERAND (exp, 0);
7426 if (DECL_P (exp))
7428 if (!DECL_RTL_SET_P (exp)
7429 || !MEM_P (DECL_RTL (exp)))
7430 return 0;
7431 else
7432 exp_rtl = XEXP (DECL_RTL (exp), 0);
7434 break;
7436 case MEM_REF:
7437 if (MEM_P (x)
7438 && alias_sets_conflict_p (MEM_ALIAS_SET (x),
7439 get_alias_set (exp)))
7440 return 0;
7441 break;
7443 case CALL_EXPR:
7444 /* Assume that the call will clobber all hard registers and
7445 all of memory. */
7446 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
7447 || MEM_P (x))
7448 return 0;
7449 break;
7451 case WITH_CLEANUP_EXPR:
7452 case CLEANUP_POINT_EXPR:
7453 /* Lowered by gimplify.c. */
7454 gcc_unreachable ();
7456 case SAVE_EXPR:
7457 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
7459 default:
7460 break;
7463 /* If we have an rtx, we do not need to scan our operands. */
7464 if (exp_rtl)
7465 break;
7467 nops = TREE_OPERAND_LENGTH (exp);
7468 for (i = 0; i < nops; i++)
7469 if (TREE_OPERAND (exp, i) != 0
7470 && ! safe_from_p (x, TREE_OPERAND (exp, i), 0))
7471 return 0;
7473 break;
7475 case tcc_type:
7476 /* Should never get a type here. */
7477 gcc_unreachable ();
7480 /* If we have an rtl, find any enclosed object. Then see if we conflict
7481 with it. */
7482 if (exp_rtl)
7484 if (GET_CODE (exp_rtl) == SUBREG)
7486 exp_rtl = SUBREG_REG (exp_rtl);
7487 if (REG_P (exp_rtl)
7488 && REGNO (exp_rtl) < FIRST_PSEUDO_REGISTER)
7489 return 0;
7492 /* If the rtl is X, then it is not safe. Otherwise, it is unless both
7493 are memory and they conflict. */
7494 return ! (rtx_equal_p (x, exp_rtl)
7495 || (MEM_P (x) && MEM_P (exp_rtl)
7496 && true_dependence (exp_rtl, VOIDmode, x)));
7499 /* If we reach here, it is safe. */
7500 return 1;
7504 /* Return the highest power of two that EXP is known to be a multiple of.
7505 This is used in updating alignment of MEMs in array references. */
7507 unsigned HOST_WIDE_INT
7508 highest_pow2_factor (const_tree exp)
7510 unsigned HOST_WIDE_INT ret;
7511 int trailing_zeros = tree_ctz (exp);
7512 if (trailing_zeros >= HOST_BITS_PER_WIDE_INT)
7513 return BIGGEST_ALIGNMENT;
7514 ret = (unsigned HOST_WIDE_INT) 1 << trailing_zeros;
7515 if (ret > BIGGEST_ALIGNMENT)
7516 return BIGGEST_ALIGNMENT;
7517 return ret;
7520 /* Similar, except that the alignment requirements of TARGET are
7521 taken into account. Assume it is at least as aligned as its
7522 type, unless it is a COMPONENT_REF in which case the layout of
7523 the structure gives the alignment. */
7525 static unsigned HOST_WIDE_INT
7526 highest_pow2_factor_for_target (const_tree target, const_tree exp)
7528 unsigned HOST_WIDE_INT talign = target_align (target) / BITS_PER_UNIT;
7529 unsigned HOST_WIDE_INT factor = highest_pow2_factor (exp);
7531 return MAX (factor, talign);
7534 #ifdef HAVE_conditional_move
7535 /* Convert the tree comparison code TCODE to the rtl one where the
7536 signedness is UNSIGNEDP. */
7538 static enum rtx_code
7539 convert_tree_comp_to_rtx (enum tree_code tcode, int unsignedp)
7541 enum rtx_code code;
7542 switch (tcode)
7544 case EQ_EXPR:
7545 code = EQ;
7546 break;
7547 case NE_EXPR:
7548 code = NE;
7549 break;
7550 case LT_EXPR:
7551 code = unsignedp ? LTU : LT;
7552 break;
7553 case LE_EXPR:
7554 code = unsignedp ? LEU : LE;
7555 break;
7556 case GT_EXPR:
7557 code = unsignedp ? GTU : GT;
7558 break;
7559 case GE_EXPR:
7560 code = unsignedp ? GEU : GE;
7561 break;
7562 case UNORDERED_EXPR:
7563 code = UNORDERED;
7564 break;
7565 case ORDERED_EXPR:
7566 code = ORDERED;
7567 break;
7568 case UNLT_EXPR:
7569 code = UNLT;
7570 break;
7571 case UNLE_EXPR:
7572 code = UNLE;
7573 break;
7574 case UNGT_EXPR:
7575 code = UNGT;
7576 break;
7577 case UNGE_EXPR:
7578 code = UNGE;
7579 break;
7580 case UNEQ_EXPR:
7581 code = UNEQ;
7582 break;
7583 case LTGT_EXPR:
7584 code = LTGT;
7585 break;
7587 default:
7588 gcc_unreachable ();
7590 return code;
7592 #endif
7594 /* Subroutine of expand_expr. Expand the two operands of a binary
7595 expression EXP0 and EXP1 placing the results in OP0 and OP1.
7596 The value may be stored in TARGET if TARGET is nonzero. The
7597 MODIFIER argument is as documented by expand_expr. */
7599 void
7600 expand_operands (tree exp0, tree exp1, rtx target, rtx *op0, rtx *op1,
7601 enum expand_modifier modifier)
7603 if (! safe_from_p (target, exp1, 1))
7604 target = 0;
7605 if (operand_equal_p (exp0, exp1, 0))
7607 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
7608 *op1 = copy_rtx (*op0);
7610 else
7612 /* If we need to preserve evaluation order, copy exp0 into its own
7613 temporary variable so that it can't be clobbered by exp1. */
7614 if (flag_evaluation_order && TREE_SIDE_EFFECTS (exp1))
7615 exp0 = save_expr (exp0);
7616 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
7617 *op1 = expand_expr (exp1, NULL_RTX, VOIDmode, modifier);
7622 /* Return a MEM that contains constant EXP. DEFER is as for
7623 output_constant_def and MODIFIER is as for expand_expr. */
7625 static rtx
7626 expand_expr_constant (tree exp, int defer, enum expand_modifier modifier)
7628 rtx mem;
7630 mem = output_constant_def (exp, defer);
7631 if (modifier != EXPAND_INITIALIZER)
7632 mem = use_anchored_address (mem);
7633 return mem;
7636 /* A subroutine of expand_expr_addr_expr. Evaluate the address of EXP.
7637 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7639 static rtx
7640 expand_expr_addr_expr_1 (tree exp, rtx target, machine_mode tmode,
7641 enum expand_modifier modifier, addr_space_t as)
7643 rtx result, subtarget;
7644 tree inner, offset;
7645 HOST_WIDE_INT bitsize, bitpos;
7646 int volatilep, unsignedp;
7647 machine_mode mode1;
7649 /* If we are taking the address of a constant and are at the top level,
7650 we have to use output_constant_def since we can't call force_const_mem
7651 at top level. */
7652 /* ??? This should be considered a front-end bug. We should not be
7653 generating ADDR_EXPR of something that isn't an LVALUE. The only
7654 exception here is STRING_CST. */
7655 if (CONSTANT_CLASS_P (exp))
7657 result = XEXP (expand_expr_constant (exp, 0, modifier), 0);
7658 if (modifier < EXPAND_SUM)
7659 result = force_operand (result, target);
7660 return result;
7663 /* Everything must be something allowed by is_gimple_addressable. */
7664 switch (TREE_CODE (exp))
7666 case INDIRECT_REF:
7667 /* This case will happen via recursion for &a->b. */
7668 return expand_expr (TREE_OPERAND (exp, 0), target, tmode, modifier);
7670 case MEM_REF:
7672 tree tem = TREE_OPERAND (exp, 0);
7673 if (!integer_zerop (TREE_OPERAND (exp, 1)))
7674 tem = fold_build_pointer_plus (tem, TREE_OPERAND (exp, 1));
7675 return expand_expr (tem, target, tmode, modifier);
7678 case CONST_DECL:
7679 /* Expand the initializer like constants above. */
7680 result = XEXP (expand_expr_constant (DECL_INITIAL (exp),
7681 0, modifier), 0);
7682 if (modifier < EXPAND_SUM)
7683 result = force_operand (result, target);
7684 return result;
7686 case REALPART_EXPR:
7687 /* The real part of the complex number is always first, therefore
7688 the address is the same as the address of the parent object. */
7689 offset = 0;
7690 bitpos = 0;
7691 inner = TREE_OPERAND (exp, 0);
7692 break;
7694 case IMAGPART_EXPR:
7695 /* The imaginary part of the complex number is always second.
7696 The expression is therefore always offset by the size of the
7697 scalar type. */
7698 offset = 0;
7699 bitpos = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp)));
7700 inner = TREE_OPERAND (exp, 0);
7701 break;
7703 case COMPOUND_LITERAL_EXPR:
7704 /* Allow COMPOUND_LITERAL_EXPR in initializers or coming from
7705 initializers, if e.g. rtl_for_decl_init is called on DECL_INITIAL
7706 with COMPOUND_LITERAL_EXPRs in it, or ARRAY_REF on a const static
7707 array with address of COMPOUND_LITERAL_EXPR in DECL_INITIAL;
7708 the initializers aren't gimplified. */
7709 if (COMPOUND_LITERAL_EXPR_DECL (exp)
7710 && TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (exp)))
7711 return expand_expr_addr_expr_1 (COMPOUND_LITERAL_EXPR_DECL (exp),
7712 target, tmode, modifier, as);
7713 /* FALLTHRU */
7714 default:
7715 /* If the object is a DECL, then expand it for its rtl. Don't bypass
7716 expand_expr, as that can have various side effects; LABEL_DECLs for
7717 example, may not have their DECL_RTL set yet. Expand the rtl of
7718 CONSTRUCTORs too, which should yield a memory reference for the
7719 constructor's contents. Assume language specific tree nodes can
7720 be expanded in some interesting way. */
7721 gcc_assert (TREE_CODE (exp) < LAST_AND_UNUSED_TREE_CODE);
7722 if (DECL_P (exp)
7723 || TREE_CODE (exp) == CONSTRUCTOR
7724 || TREE_CODE (exp) == COMPOUND_LITERAL_EXPR)
7726 result = expand_expr (exp, target, tmode,
7727 modifier == EXPAND_INITIALIZER
7728 ? EXPAND_INITIALIZER : EXPAND_CONST_ADDRESS);
7730 /* If the DECL isn't in memory, then the DECL wasn't properly
7731 marked TREE_ADDRESSABLE, which will be either a front-end
7732 or a tree optimizer bug. */
7734 if (TREE_ADDRESSABLE (exp)
7735 && ! MEM_P (result)
7736 && ! targetm.calls.allocate_stack_slots_for_args ())
7738 error ("local frame unavailable (naked function?)");
7739 return result;
7741 else
7742 gcc_assert (MEM_P (result));
7743 result = XEXP (result, 0);
7745 /* ??? Is this needed anymore? */
7746 if (DECL_P (exp))
7747 TREE_USED (exp) = 1;
7749 if (modifier != EXPAND_INITIALIZER
7750 && modifier != EXPAND_CONST_ADDRESS
7751 && modifier != EXPAND_SUM)
7752 result = force_operand (result, target);
7753 return result;
7756 /* Pass FALSE as the last argument to get_inner_reference although
7757 we are expanding to RTL. The rationale is that we know how to
7758 handle "aligning nodes" here: we can just bypass them because
7759 they won't change the final object whose address will be returned
7760 (they actually exist only for that purpose). */
7761 inner = get_inner_reference (exp, &bitsize, &bitpos, &offset,
7762 &mode1, &unsignedp, &volatilep, false);
7763 break;
7766 /* We must have made progress. */
7767 gcc_assert (inner != exp);
7769 subtarget = offset || bitpos ? NULL_RTX : target;
7770 /* For VIEW_CONVERT_EXPR, where the outer alignment is bigger than
7771 inner alignment, force the inner to be sufficiently aligned. */
7772 if (CONSTANT_CLASS_P (inner)
7773 && TYPE_ALIGN (TREE_TYPE (inner)) < TYPE_ALIGN (TREE_TYPE (exp)))
7775 inner = copy_node (inner);
7776 TREE_TYPE (inner) = copy_node (TREE_TYPE (inner));
7777 TYPE_ALIGN (TREE_TYPE (inner)) = TYPE_ALIGN (TREE_TYPE (exp));
7778 TYPE_USER_ALIGN (TREE_TYPE (inner)) = 1;
7780 result = expand_expr_addr_expr_1 (inner, subtarget, tmode, modifier, as);
7782 if (offset)
7784 rtx tmp;
7786 if (modifier != EXPAND_NORMAL)
7787 result = force_operand (result, NULL);
7788 tmp = expand_expr (offset, NULL_RTX, tmode,
7789 modifier == EXPAND_INITIALIZER
7790 ? EXPAND_INITIALIZER : EXPAND_NORMAL);
7792 /* expand_expr is allowed to return an object in a mode other
7793 than TMODE. If it did, we need to convert. */
7794 if (GET_MODE (tmp) != VOIDmode && tmode != GET_MODE (tmp))
7795 tmp = convert_modes (tmode, GET_MODE (tmp),
7796 tmp, TYPE_UNSIGNED (TREE_TYPE (offset)));
7797 result = convert_memory_address_addr_space (tmode, result, as);
7798 tmp = convert_memory_address_addr_space (tmode, tmp, as);
7800 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
7801 result = simplify_gen_binary (PLUS, tmode, result, tmp);
7802 else
7804 subtarget = bitpos ? NULL_RTX : target;
7805 result = expand_simple_binop (tmode, PLUS, result, tmp, subtarget,
7806 1, OPTAB_LIB_WIDEN);
7810 if (bitpos)
7812 /* Someone beforehand should have rejected taking the address
7813 of such an object. */
7814 gcc_assert ((bitpos % BITS_PER_UNIT) == 0);
7816 result = convert_memory_address_addr_space (tmode, result, as);
7817 result = plus_constant (tmode, result, bitpos / BITS_PER_UNIT);
7818 if (modifier < EXPAND_SUM)
7819 result = force_operand (result, target);
7822 return result;
7825 /* A subroutine of expand_expr. Evaluate EXP, which is an ADDR_EXPR.
7826 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7828 static rtx
7829 expand_expr_addr_expr (tree exp, rtx target, machine_mode tmode,
7830 enum expand_modifier modifier)
7832 addr_space_t as = ADDR_SPACE_GENERIC;
7833 machine_mode address_mode = Pmode;
7834 machine_mode pointer_mode = ptr_mode;
7835 machine_mode rmode;
7836 rtx result;
7838 /* Target mode of VOIDmode says "whatever's natural". */
7839 if (tmode == VOIDmode)
7840 tmode = TYPE_MODE (TREE_TYPE (exp));
7842 if (POINTER_TYPE_P (TREE_TYPE (exp)))
7844 as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
7845 address_mode = targetm.addr_space.address_mode (as);
7846 pointer_mode = targetm.addr_space.pointer_mode (as);
7849 /* We can get called with some Weird Things if the user does silliness
7850 like "(short) &a". In that case, convert_memory_address won't do
7851 the right thing, so ignore the given target mode. */
7852 if (tmode != address_mode && tmode != pointer_mode)
7853 tmode = address_mode;
7855 result = expand_expr_addr_expr_1 (TREE_OPERAND (exp, 0), target,
7856 tmode, modifier, as);
7858 /* Despite expand_expr claims concerning ignoring TMODE when not
7859 strictly convenient, stuff breaks if we don't honor it. Note
7860 that combined with the above, we only do this for pointer modes. */
7861 rmode = GET_MODE (result);
7862 if (rmode == VOIDmode)
7863 rmode = tmode;
7864 if (rmode != tmode)
7865 result = convert_memory_address_addr_space (tmode, result, as);
7867 return result;
7870 /* Generate code for computing CONSTRUCTOR EXP.
7871 An rtx for the computed value is returned. If AVOID_TEMP_MEM
7872 is TRUE, instead of creating a temporary variable in memory
7873 NULL is returned and the caller needs to handle it differently. */
7875 static rtx
7876 expand_constructor (tree exp, rtx target, enum expand_modifier modifier,
7877 bool avoid_temp_mem)
7879 tree type = TREE_TYPE (exp);
7880 machine_mode mode = TYPE_MODE (type);
7882 /* Try to avoid creating a temporary at all. This is possible
7883 if all of the initializer is zero.
7884 FIXME: try to handle all [0..255] initializers we can handle
7885 with memset. */
7886 if (TREE_STATIC (exp)
7887 && !TREE_ADDRESSABLE (exp)
7888 && target != 0 && mode == BLKmode
7889 && all_zeros_p (exp))
7891 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
7892 return target;
7895 /* All elts simple constants => refer to a constant in memory. But
7896 if this is a non-BLKmode mode, let it store a field at a time
7897 since that should make a CONST_INT, CONST_WIDE_INT or
7898 CONST_DOUBLE when we fold. Likewise, if we have a target we can
7899 use, it is best to store directly into the target unless the type
7900 is large enough that memcpy will be used. If we are making an
7901 initializer and all operands are constant, put it in memory as
7902 well.
7904 FIXME: Avoid trying to fill vector constructors piece-meal.
7905 Output them with output_constant_def below unless we're sure
7906 they're zeros. This should go away when vector initializers
7907 are treated like VECTOR_CST instead of arrays. */
7908 if ((TREE_STATIC (exp)
7909 && ((mode == BLKmode
7910 && ! (target != 0 && safe_from_p (target, exp, 1)))
7911 || TREE_ADDRESSABLE (exp)
7912 || (tree_fits_uhwi_p (TYPE_SIZE_UNIT (type))
7913 && (! can_move_by_pieces
7914 (tree_to_uhwi (TYPE_SIZE_UNIT (type)),
7915 TYPE_ALIGN (type)))
7916 && ! mostly_zeros_p (exp))))
7917 || ((modifier == EXPAND_INITIALIZER || modifier == EXPAND_CONST_ADDRESS)
7918 && TREE_CONSTANT (exp)))
7920 rtx constructor;
7922 if (avoid_temp_mem)
7923 return NULL_RTX;
7925 constructor = expand_expr_constant (exp, 1, modifier);
7927 if (modifier != EXPAND_CONST_ADDRESS
7928 && modifier != EXPAND_INITIALIZER
7929 && modifier != EXPAND_SUM)
7930 constructor = validize_mem (constructor);
7932 return constructor;
7935 /* Handle calls that pass values in multiple non-contiguous
7936 locations. The Irix 6 ABI has examples of this. */
7937 if (target == 0 || ! safe_from_p (target, exp, 1)
7938 || GET_CODE (target) == PARALLEL || modifier == EXPAND_STACK_PARM)
7940 if (avoid_temp_mem)
7941 return NULL_RTX;
7943 target = assign_temp (type, TREE_ADDRESSABLE (exp), 1);
7946 store_constructor (exp, target, 0, int_expr_size (exp));
7947 return target;
7951 /* expand_expr: generate code for computing expression EXP.
7952 An rtx for the computed value is returned. The value is never null.
7953 In the case of a void EXP, const0_rtx is returned.
7955 The value may be stored in TARGET if TARGET is nonzero.
7956 TARGET is just a suggestion; callers must assume that
7957 the rtx returned may not be the same as TARGET.
7959 If TARGET is CONST0_RTX, it means that the value will be ignored.
7961 If TMODE is not VOIDmode, it suggests generating the
7962 result in mode TMODE. But this is done only when convenient.
7963 Otherwise, TMODE is ignored and the value generated in its natural mode.
7964 TMODE is just a suggestion; callers must assume that
7965 the rtx returned may not have mode TMODE.
7967 Note that TARGET may have neither TMODE nor MODE. In that case, it
7968 probably will not be used.
7970 If MODIFIER is EXPAND_SUM then when EXP is an addition
7971 we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
7972 or a nest of (PLUS ...) and (MINUS ...) where the terms are
7973 products as above, or REG or MEM, or constant.
7974 Ordinarily in such cases we would output mul or add instructions
7975 and then return a pseudo reg containing the sum.
7977 EXPAND_INITIALIZER is much like EXPAND_SUM except that
7978 it also marks a label as absolutely required (it can't be dead).
7979 It also makes a ZERO_EXTEND or SIGN_EXTEND instead of emitting extend insns.
7980 This is used for outputting expressions used in initializers.
7982 EXPAND_CONST_ADDRESS says that it is okay to return a MEM
7983 with a constant address even if that address is not normally legitimate.
7984 EXPAND_INITIALIZER and EXPAND_SUM also have this effect.
7986 EXPAND_STACK_PARM is used when expanding to a TARGET on the stack for
7987 a call parameter. Such targets require special care as we haven't yet
7988 marked TARGET so that it's safe from being trashed by libcalls. We
7989 don't want to use TARGET for anything but the final result;
7990 Intermediate values must go elsewhere. Additionally, calls to
7991 emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
7993 If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
7994 address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
7995 DECL_RTL of the VAR_DECL. *ALT_RTL is also set if EXP is a
7996 COMPOUND_EXPR whose second argument is such a VAR_DECL, and so on
7997 recursively.
7999 If INNER_REFERENCE_P is true, we are expanding an inner reference.
8000 In this case, we don't adjust a returned MEM rtx that wouldn't be
8001 sufficiently aligned for its mode; instead, it's up to the caller
8002 to deal with it afterwards. This is used to make sure that unaligned
8003 base objects for which out-of-bounds accesses are supported, for
8004 example record types with trailing arrays, aren't realigned behind
8005 the back of the caller.
8006 The normal operating mode is to pass FALSE for this parameter. */
8009 expand_expr_real (tree exp, rtx target, machine_mode tmode,
8010 enum expand_modifier modifier, rtx *alt_rtl,
8011 bool inner_reference_p)
8013 rtx ret;
8015 /* Handle ERROR_MARK before anybody tries to access its type. */
8016 if (TREE_CODE (exp) == ERROR_MARK
8017 || (TREE_CODE (TREE_TYPE (exp)) == ERROR_MARK))
8019 ret = CONST0_RTX (tmode);
8020 return ret ? ret : const0_rtx;
8023 ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl,
8024 inner_reference_p);
8025 return ret;
8028 /* Try to expand the conditional expression which is represented by
8029 TREEOP0 ? TREEOP1 : TREEOP2 using conditonal moves. If succeseds
8030 return the rtl reg which repsents the result. Otherwise return
8031 NULL_RTL. */
8033 static rtx
8034 expand_cond_expr_using_cmove (tree treeop0 ATTRIBUTE_UNUSED,
8035 tree treeop1 ATTRIBUTE_UNUSED,
8036 tree treeop2 ATTRIBUTE_UNUSED)
8038 #ifdef HAVE_conditional_move
8039 rtx insn;
8040 rtx op00, op01, op1, op2;
8041 enum rtx_code comparison_code;
8042 machine_mode comparison_mode;
8043 gimple srcstmt;
8044 rtx temp;
8045 tree type = TREE_TYPE (treeop1);
8046 int unsignedp = TYPE_UNSIGNED (type);
8047 machine_mode mode = TYPE_MODE (type);
8048 machine_mode orig_mode = mode;
8050 /* If we cannot do a conditional move on the mode, try doing it
8051 with the promoted mode. */
8052 if (!can_conditionally_move_p (mode))
8054 mode = promote_mode (type, mode, &unsignedp);
8055 if (!can_conditionally_move_p (mode))
8056 return NULL_RTX;
8057 temp = assign_temp (type, 0, 0); /* Use promoted mode for temp. */
8059 else
8060 temp = assign_temp (type, 0, 1);
8062 start_sequence ();
8063 expand_operands (treeop1, treeop2,
8064 temp, &op1, &op2, EXPAND_NORMAL);
8066 if (TREE_CODE (treeop0) == SSA_NAME
8067 && (srcstmt = get_def_for_expr_class (treeop0, tcc_comparison)))
8069 tree type = TREE_TYPE (gimple_assign_rhs1 (srcstmt));
8070 enum tree_code cmpcode = gimple_assign_rhs_code (srcstmt);
8071 op00 = expand_normal (gimple_assign_rhs1 (srcstmt));
8072 op01 = expand_normal (gimple_assign_rhs2 (srcstmt));
8073 comparison_mode = TYPE_MODE (type);
8074 unsignedp = TYPE_UNSIGNED (type);
8075 comparison_code = convert_tree_comp_to_rtx (cmpcode, unsignedp);
8077 else if (TREE_CODE_CLASS (TREE_CODE (treeop0)) == tcc_comparison)
8079 tree type = TREE_TYPE (TREE_OPERAND (treeop0, 0));
8080 enum tree_code cmpcode = TREE_CODE (treeop0);
8081 op00 = expand_normal (TREE_OPERAND (treeop0, 0));
8082 op01 = expand_normal (TREE_OPERAND (treeop0, 1));
8083 unsignedp = TYPE_UNSIGNED (type);
8084 comparison_mode = TYPE_MODE (type);
8085 comparison_code = convert_tree_comp_to_rtx (cmpcode, unsignedp);
8087 else
8089 op00 = expand_normal (treeop0);
8090 op01 = const0_rtx;
8091 comparison_code = NE;
8092 comparison_mode = GET_MODE (op00);
8093 if (comparison_mode == VOIDmode)
8094 comparison_mode = TYPE_MODE (TREE_TYPE (treeop0));
8097 if (GET_MODE (op1) != mode)
8098 op1 = gen_lowpart (mode, op1);
8100 if (GET_MODE (op2) != mode)
8101 op2 = gen_lowpart (mode, op2);
8103 /* Try to emit the conditional move. */
8104 insn = emit_conditional_move (temp, comparison_code,
8105 op00, op01, comparison_mode,
8106 op1, op2, mode,
8107 unsignedp);
8109 /* If we could do the conditional move, emit the sequence,
8110 and return. */
8111 if (insn)
8113 rtx_insn *seq = get_insns ();
8114 end_sequence ();
8115 emit_insn (seq);
8116 return convert_modes (orig_mode, mode, temp, 0);
8119 /* Otherwise discard the sequence and fall back to code with
8120 branches. */
8121 end_sequence ();
8122 #endif
8123 return NULL_RTX;
8127 expand_expr_real_2 (sepops ops, rtx target, machine_mode tmode,
8128 enum expand_modifier modifier)
8130 rtx op0, op1, op2, temp;
8131 tree type;
8132 int unsignedp;
8133 machine_mode mode;
8134 enum tree_code code = ops->code;
8135 optab this_optab;
8136 rtx subtarget, original_target;
8137 int ignore;
8138 bool reduce_bit_field;
8139 location_t loc = ops->location;
8140 tree treeop0, treeop1, treeop2;
8141 #define REDUCE_BIT_FIELD(expr) (reduce_bit_field \
8142 ? reduce_to_bit_field_precision ((expr), \
8143 target, \
8144 type) \
8145 : (expr))
8147 type = ops->type;
8148 mode = TYPE_MODE (type);
8149 unsignedp = TYPE_UNSIGNED (type);
8151 treeop0 = ops->op0;
8152 treeop1 = ops->op1;
8153 treeop2 = ops->op2;
8155 /* We should be called only on simple (binary or unary) expressions,
8156 exactly those that are valid in gimple expressions that aren't
8157 GIMPLE_SINGLE_RHS (or invalid). */
8158 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_UNARY_RHS
8159 || get_gimple_rhs_class (code) == GIMPLE_BINARY_RHS
8160 || get_gimple_rhs_class (code) == GIMPLE_TERNARY_RHS);
8162 ignore = (target == const0_rtx
8163 || ((CONVERT_EXPR_CODE_P (code)
8164 || code == COND_EXPR || code == VIEW_CONVERT_EXPR)
8165 && TREE_CODE (type) == VOID_TYPE));
8167 /* We should be called only if we need the result. */
8168 gcc_assert (!ignore);
8170 /* An operation in what may be a bit-field type needs the
8171 result to be reduced to the precision of the bit-field type,
8172 which is narrower than that of the type's mode. */
8173 reduce_bit_field = (INTEGRAL_TYPE_P (type)
8174 && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type));
8176 if (reduce_bit_field && modifier == EXPAND_STACK_PARM)
8177 target = 0;
8179 /* Use subtarget as the target for operand 0 of a binary operation. */
8180 subtarget = get_subtarget (target);
8181 original_target = target;
8183 switch (code)
8185 case NON_LVALUE_EXPR:
8186 case PAREN_EXPR:
8187 CASE_CONVERT:
8188 if (treeop0 == error_mark_node)
8189 return const0_rtx;
8191 if (TREE_CODE (type) == UNION_TYPE)
8193 tree valtype = TREE_TYPE (treeop0);
8195 /* If both input and output are BLKmode, this conversion isn't doing
8196 anything except possibly changing memory attribute. */
8197 if (mode == BLKmode && TYPE_MODE (valtype) == BLKmode)
8199 rtx result = expand_expr (treeop0, target, tmode,
8200 modifier);
8202 result = copy_rtx (result);
8203 set_mem_attributes (result, type, 0);
8204 return result;
8207 if (target == 0)
8209 if (TYPE_MODE (type) != BLKmode)
8210 target = gen_reg_rtx (TYPE_MODE (type));
8211 else
8212 target = assign_temp (type, 1, 1);
8215 if (MEM_P (target))
8216 /* Store data into beginning of memory target. */
8217 store_expr (treeop0,
8218 adjust_address (target, TYPE_MODE (valtype), 0),
8219 modifier == EXPAND_STACK_PARM,
8220 false);
8222 else
8224 gcc_assert (REG_P (target));
8226 /* Store this field into a union of the proper type. */
8227 store_field (target,
8228 MIN ((int_size_in_bytes (TREE_TYPE
8229 (treeop0))
8230 * BITS_PER_UNIT),
8231 (HOST_WIDE_INT) GET_MODE_BITSIZE (mode)),
8232 0, 0, 0, TYPE_MODE (valtype), treeop0, 0, false);
8235 /* Return the entire union. */
8236 return target;
8239 if (mode == TYPE_MODE (TREE_TYPE (treeop0)))
8241 op0 = expand_expr (treeop0, target, VOIDmode,
8242 modifier);
8244 /* If the signedness of the conversion differs and OP0 is
8245 a promoted SUBREG, clear that indication since we now
8246 have to do the proper extension. */
8247 if (TYPE_UNSIGNED (TREE_TYPE (treeop0)) != unsignedp
8248 && GET_CODE (op0) == SUBREG)
8249 SUBREG_PROMOTED_VAR_P (op0) = 0;
8251 return REDUCE_BIT_FIELD (op0);
8254 op0 = expand_expr (treeop0, NULL_RTX, mode,
8255 modifier == EXPAND_SUM ? EXPAND_NORMAL : modifier);
8256 if (GET_MODE (op0) == mode)
8259 /* If OP0 is a constant, just convert it into the proper mode. */
8260 else if (CONSTANT_P (op0))
8262 tree inner_type = TREE_TYPE (treeop0);
8263 machine_mode inner_mode = GET_MODE (op0);
8265 if (inner_mode == VOIDmode)
8266 inner_mode = TYPE_MODE (inner_type);
8268 if (modifier == EXPAND_INITIALIZER)
8269 op0 = simplify_gen_subreg (mode, op0, inner_mode,
8270 subreg_lowpart_offset (mode,
8271 inner_mode));
8272 else
8273 op0= convert_modes (mode, inner_mode, op0,
8274 TYPE_UNSIGNED (inner_type));
8277 else if (modifier == EXPAND_INITIALIZER)
8278 op0 = gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND, mode, op0);
8280 else if (target == 0)
8281 op0 = convert_to_mode (mode, op0,
8282 TYPE_UNSIGNED (TREE_TYPE
8283 (treeop0)));
8284 else
8286 convert_move (target, op0,
8287 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
8288 op0 = target;
8291 return REDUCE_BIT_FIELD (op0);
8293 case ADDR_SPACE_CONVERT_EXPR:
8295 tree treeop0_type = TREE_TYPE (treeop0);
8296 addr_space_t as_to;
8297 addr_space_t as_from;
8299 gcc_assert (POINTER_TYPE_P (type));
8300 gcc_assert (POINTER_TYPE_P (treeop0_type));
8302 as_to = TYPE_ADDR_SPACE (TREE_TYPE (type));
8303 as_from = TYPE_ADDR_SPACE (TREE_TYPE (treeop0_type));
8305 /* Conversions between pointers to the same address space should
8306 have been implemented via CONVERT_EXPR / NOP_EXPR. */
8307 gcc_assert (as_to != as_from);
8309 /* Ask target code to handle conversion between pointers
8310 to overlapping address spaces. */
8311 if (targetm.addr_space.subset_p (as_to, as_from)
8312 || targetm.addr_space.subset_p (as_from, as_to))
8314 op0 = expand_expr (treeop0, NULL_RTX, VOIDmode, modifier);
8315 op0 = targetm.addr_space.convert (op0, treeop0_type, type);
8316 gcc_assert (op0);
8317 return op0;
8320 /* For disjoint address spaces, converting anything but
8321 a null pointer invokes undefined behaviour. We simply
8322 always return a null pointer here. */
8323 return CONST0_RTX (mode);
8326 case POINTER_PLUS_EXPR:
8327 /* Even though the sizetype mode and the pointer's mode can be different
8328 expand is able to handle this correctly and get the correct result out
8329 of the PLUS_EXPR code. */
8330 /* Make sure to sign-extend the sizetype offset in a POINTER_PLUS_EXPR
8331 if sizetype precision is smaller than pointer precision. */
8332 if (TYPE_PRECISION (sizetype) < TYPE_PRECISION (type))
8333 treeop1 = fold_convert_loc (loc, type,
8334 fold_convert_loc (loc, ssizetype,
8335 treeop1));
8336 /* If sizetype precision is larger than pointer precision, truncate the
8337 offset to have matching modes. */
8338 else if (TYPE_PRECISION (sizetype) > TYPE_PRECISION (type))
8339 treeop1 = fold_convert_loc (loc, type, treeop1);
8341 case PLUS_EXPR:
8342 /* If we are adding a constant, a VAR_DECL that is sp, fp, or ap, and
8343 something else, make sure we add the register to the constant and
8344 then to the other thing. This case can occur during strength
8345 reduction and doing it this way will produce better code if the
8346 frame pointer or argument pointer is eliminated.
8348 fold-const.c will ensure that the constant is always in the inner
8349 PLUS_EXPR, so the only case we need to do anything about is if
8350 sp, ap, or fp is our second argument, in which case we must swap
8351 the innermost first argument and our second argument. */
8353 if (TREE_CODE (treeop0) == PLUS_EXPR
8354 && TREE_CODE (TREE_OPERAND (treeop0, 1)) == INTEGER_CST
8355 && TREE_CODE (treeop1) == VAR_DECL
8356 && (DECL_RTL (treeop1) == frame_pointer_rtx
8357 || DECL_RTL (treeop1) == stack_pointer_rtx
8358 || DECL_RTL (treeop1) == arg_pointer_rtx))
8360 gcc_unreachable ();
8363 /* If the result is to be ptr_mode and we are adding an integer to
8364 something, we might be forming a constant. So try to use
8365 plus_constant. If it produces a sum and we can't accept it,
8366 use force_operand. This allows P = &ARR[const] to generate
8367 efficient code on machines where a SYMBOL_REF is not a valid
8368 address.
8370 If this is an EXPAND_SUM call, always return the sum. */
8371 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER
8372 || (mode == ptr_mode && (unsignedp || ! flag_trapv)))
8374 if (modifier == EXPAND_STACK_PARM)
8375 target = 0;
8376 if (TREE_CODE (treeop0) == INTEGER_CST
8377 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT
8378 && TREE_CONSTANT (treeop1))
8380 rtx constant_part;
8381 HOST_WIDE_INT wc;
8382 machine_mode wmode = TYPE_MODE (TREE_TYPE (treeop1));
8384 op1 = expand_expr (treeop1, subtarget, VOIDmode,
8385 EXPAND_SUM);
8386 /* Use wi::shwi to ensure that the constant is
8387 truncated according to the mode of OP1, then sign extended
8388 to a HOST_WIDE_INT. Using the constant directly can result
8389 in non-canonical RTL in a 64x32 cross compile. */
8390 wc = TREE_INT_CST_LOW (treeop0);
8391 constant_part =
8392 immed_wide_int_const (wi::shwi (wc, wmode), wmode);
8393 op1 = plus_constant (mode, op1, INTVAL (constant_part));
8394 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8395 op1 = force_operand (op1, target);
8396 return REDUCE_BIT_FIELD (op1);
8399 else if (TREE_CODE (treeop1) == INTEGER_CST
8400 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT
8401 && TREE_CONSTANT (treeop0))
8403 rtx constant_part;
8404 HOST_WIDE_INT wc;
8405 machine_mode wmode = TYPE_MODE (TREE_TYPE (treeop0));
8407 op0 = expand_expr (treeop0, subtarget, VOIDmode,
8408 (modifier == EXPAND_INITIALIZER
8409 ? EXPAND_INITIALIZER : EXPAND_SUM));
8410 if (! CONSTANT_P (op0))
8412 op1 = expand_expr (treeop1, NULL_RTX,
8413 VOIDmode, modifier);
8414 /* Return a PLUS if modifier says it's OK. */
8415 if (modifier == EXPAND_SUM
8416 || modifier == EXPAND_INITIALIZER)
8417 return simplify_gen_binary (PLUS, mode, op0, op1);
8418 goto binop2;
8420 /* Use wi::shwi to ensure that the constant is
8421 truncated according to the mode of OP1, then sign extended
8422 to a HOST_WIDE_INT. Using the constant directly can result
8423 in non-canonical RTL in a 64x32 cross compile. */
8424 wc = TREE_INT_CST_LOW (treeop1);
8425 constant_part
8426 = immed_wide_int_const (wi::shwi (wc, wmode), wmode);
8427 op0 = plus_constant (mode, op0, INTVAL (constant_part));
8428 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8429 op0 = force_operand (op0, target);
8430 return REDUCE_BIT_FIELD (op0);
8434 /* Use TER to expand pointer addition of a negated value
8435 as pointer subtraction. */
8436 if ((POINTER_TYPE_P (TREE_TYPE (treeop0))
8437 || (TREE_CODE (TREE_TYPE (treeop0)) == VECTOR_TYPE
8438 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (treeop0)))))
8439 && TREE_CODE (treeop1) == SSA_NAME
8440 && TYPE_MODE (TREE_TYPE (treeop0))
8441 == TYPE_MODE (TREE_TYPE (treeop1)))
8443 gimple def = get_def_for_expr (treeop1, NEGATE_EXPR);
8444 if (def)
8446 treeop1 = gimple_assign_rhs1 (def);
8447 code = MINUS_EXPR;
8448 goto do_minus;
8452 /* No sense saving up arithmetic to be done
8453 if it's all in the wrong mode to form part of an address.
8454 And force_operand won't know whether to sign-extend or
8455 zero-extend. */
8456 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8457 || mode != ptr_mode)
8459 expand_operands (treeop0, treeop1,
8460 subtarget, &op0, &op1, EXPAND_NORMAL);
8461 if (op0 == const0_rtx)
8462 return op1;
8463 if (op1 == const0_rtx)
8464 return op0;
8465 goto binop2;
8468 expand_operands (treeop0, treeop1,
8469 subtarget, &op0, &op1, modifier);
8470 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
8472 case MINUS_EXPR:
8473 do_minus:
8474 /* For initializers, we are allowed to return a MINUS of two
8475 symbolic constants. Here we handle all cases when both operands
8476 are constant. */
8477 /* Handle difference of two symbolic constants,
8478 for the sake of an initializer. */
8479 if ((modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
8480 && really_constant_p (treeop0)
8481 && really_constant_p (treeop1))
8483 expand_operands (treeop0, treeop1,
8484 NULL_RTX, &op0, &op1, modifier);
8486 /* If the last operand is a CONST_INT, use plus_constant of
8487 the negated constant. Else make the MINUS. */
8488 if (CONST_INT_P (op1))
8489 return REDUCE_BIT_FIELD (plus_constant (mode, op0,
8490 -INTVAL (op1)));
8491 else
8492 return REDUCE_BIT_FIELD (gen_rtx_MINUS (mode, op0, op1));
8495 /* No sense saving up arithmetic to be done
8496 if it's all in the wrong mode to form part of an address.
8497 And force_operand won't know whether to sign-extend or
8498 zero-extend. */
8499 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8500 || mode != ptr_mode)
8501 goto binop;
8503 expand_operands (treeop0, treeop1,
8504 subtarget, &op0, &op1, modifier);
8506 /* Convert A - const to A + (-const). */
8507 if (CONST_INT_P (op1))
8509 op1 = negate_rtx (mode, op1);
8510 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
8513 goto binop2;
8515 case WIDEN_MULT_PLUS_EXPR:
8516 case WIDEN_MULT_MINUS_EXPR:
8517 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8518 op2 = expand_normal (treeop2);
8519 target = expand_widen_pattern_expr (ops, op0, op1, op2,
8520 target, unsignedp);
8521 return target;
8523 case WIDEN_MULT_EXPR:
8524 /* If first operand is constant, swap them.
8525 Thus the following special case checks need only
8526 check the second operand. */
8527 if (TREE_CODE (treeop0) == INTEGER_CST)
8529 tree t1 = treeop0;
8530 treeop0 = treeop1;
8531 treeop1 = t1;
8534 /* First, check if we have a multiplication of one signed and one
8535 unsigned operand. */
8536 if (TREE_CODE (treeop1) != INTEGER_CST
8537 && (TYPE_UNSIGNED (TREE_TYPE (treeop0))
8538 != TYPE_UNSIGNED (TREE_TYPE (treeop1))))
8540 machine_mode innermode = TYPE_MODE (TREE_TYPE (treeop0));
8541 this_optab = usmul_widen_optab;
8542 if (find_widening_optab_handler (this_optab, mode, innermode, 0)
8543 != CODE_FOR_nothing)
8545 if (TYPE_UNSIGNED (TREE_TYPE (treeop0)))
8546 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1,
8547 EXPAND_NORMAL);
8548 else
8549 expand_operands (treeop0, treeop1, NULL_RTX, &op1, &op0,
8550 EXPAND_NORMAL);
8551 /* op0 and op1 might still be constant, despite the above
8552 != INTEGER_CST check. Handle it. */
8553 if (GET_MODE (op0) == VOIDmode && GET_MODE (op1) == VOIDmode)
8555 op0 = convert_modes (innermode, mode, op0, true);
8556 op1 = convert_modes (innermode, mode, op1, false);
8557 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1,
8558 target, unsignedp));
8560 goto binop3;
8563 /* Check for a multiplication with matching signedness. */
8564 else if ((TREE_CODE (treeop1) == INTEGER_CST
8565 && int_fits_type_p (treeop1, TREE_TYPE (treeop0)))
8566 || (TYPE_UNSIGNED (TREE_TYPE (treeop1))
8567 == TYPE_UNSIGNED (TREE_TYPE (treeop0))))
8569 tree op0type = TREE_TYPE (treeop0);
8570 machine_mode innermode = TYPE_MODE (op0type);
8571 bool zextend_p = TYPE_UNSIGNED (op0type);
8572 optab other_optab = zextend_p ? smul_widen_optab : umul_widen_optab;
8573 this_optab = zextend_p ? umul_widen_optab : smul_widen_optab;
8575 if (TREE_CODE (treeop0) != INTEGER_CST)
8577 if (find_widening_optab_handler (this_optab, mode, innermode, 0)
8578 != CODE_FOR_nothing)
8580 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1,
8581 EXPAND_NORMAL);
8582 /* op0 and op1 might still be constant, despite the above
8583 != INTEGER_CST check. Handle it. */
8584 if (GET_MODE (op0) == VOIDmode && GET_MODE (op1) == VOIDmode)
8586 widen_mult_const:
8587 op0 = convert_modes (innermode, mode, op0, zextend_p);
8589 = convert_modes (innermode, mode, op1,
8590 TYPE_UNSIGNED (TREE_TYPE (treeop1)));
8591 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1,
8592 target,
8593 unsignedp));
8595 temp = expand_widening_mult (mode, op0, op1, target,
8596 unsignedp, this_optab);
8597 return REDUCE_BIT_FIELD (temp);
8599 if (find_widening_optab_handler (other_optab, mode, innermode, 0)
8600 != CODE_FOR_nothing
8601 && innermode == word_mode)
8603 rtx htem, hipart;
8604 op0 = expand_normal (treeop0);
8605 if (TREE_CODE (treeop1) == INTEGER_CST)
8606 op1 = convert_modes (innermode, mode,
8607 expand_normal (treeop1),
8608 TYPE_UNSIGNED (TREE_TYPE (treeop1)));
8609 else
8610 op1 = expand_normal (treeop1);
8611 /* op0 and op1 might still be constant, despite the above
8612 != INTEGER_CST check. Handle it. */
8613 if (GET_MODE (op0) == VOIDmode && GET_MODE (op1) == VOIDmode)
8614 goto widen_mult_const;
8615 temp = expand_binop (mode, other_optab, op0, op1, target,
8616 unsignedp, OPTAB_LIB_WIDEN);
8617 hipart = gen_highpart (innermode, temp);
8618 htem = expand_mult_highpart_adjust (innermode, hipart,
8619 op0, op1, hipart,
8620 zextend_p);
8621 if (htem != hipart)
8622 emit_move_insn (hipart, htem);
8623 return REDUCE_BIT_FIELD (temp);
8627 treeop0 = fold_build1 (CONVERT_EXPR, type, treeop0);
8628 treeop1 = fold_build1 (CONVERT_EXPR, type, treeop1);
8629 expand_operands (treeop0, treeop1, subtarget, &op0, &op1, EXPAND_NORMAL);
8630 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
8632 case FMA_EXPR:
8634 optab opt = fma_optab;
8635 gimple def0, def2;
8637 /* If there is no insn for FMA, emit it as __builtin_fma{,f,l}
8638 call. */
8639 if (optab_handler (fma_optab, mode) == CODE_FOR_nothing)
8641 tree fn = mathfn_built_in (TREE_TYPE (treeop0), BUILT_IN_FMA);
8642 tree call_expr;
8644 gcc_assert (fn != NULL_TREE);
8645 call_expr = build_call_expr (fn, 3, treeop0, treeop1, treeop2);
8646 return expand_builtin (call_expr, target, subtarget, mode, false);
8649 def0 = get_def_for_expr (treeop0, NEGATE_EXPR);
8650 /* The multiplication is commutative - look at its 2nd operand
8651 if the first isn't fed by a negate. */
8652 if (!def0)
8654 def0 = get_def_for_expr (treeop1, NEGATE_EXPR);
8655 /* Swap operands if the 2nd operand is fed by a negate. */
8656 if (def0)
8658 tree tem = treeop0;
8659 treeop0 = treeop1;
8660 treeop1 = tem;
8663 def2 = get_def_for_expr (treeop2, NEGATE_EXPR);
8665 op0 = op2 = NULL;
8667 if (def0 && def2
8668 && optab_handler (fnms_optab, mode) != CODE_FOR_nothing)
8670 opt = fnms_optab;
8671 op0 = expand_normal (gimple_assign_rhs1 (def0));
8672 op2 = expand_normal (gimple_assign_rhs1 (def2));
8674 else if (def0
8675 && optab_handler (fnma_optab, mode) != CODE_FOR_nothing)
8677 opt = fnma_optab;
8678 op0 = expand_normal (gimple_assign_rhs1 (def0));
8680 else if (def2
8681 && optab_handler (fms_optab, mode) != CODE_FOR_nothing)
8683 opt = fms_optab;
8684 op2 = expand_normal (gimple_assign_rhs1 (def2));
8687 if (op0 == NULL)
8688 op0 = expand_expr (treeop0, subtarget, VOIDmode, EXPAND_NORMAL);
8689 if (op2 == NULL)
8690 op2 = expand_normal (treeop2);
8691 op1 = expand_normal (treeop1);
8693 return expand_ternary_op (TYPE_MODE (type), opt,
8694 op0, op1, op2, target, 0);
8697 case MULT_EXPR:
8698 /* If this is a fixed-point operation, then we cannot use the code
8699 below because "expand_mult" doesn't support sat/no-sat fixed-point
8700 multiplications. */
8701 if (ALL_FIXED_POINT_MODE_P (mode))
8702 goto binop;
8704 /* If first operand is constant, swap them.
8705 Thus the following special case checks need only
8706 check the second operand. */
8707 if (TREE_CODE (treeop0) == INTEGER_CST)
8709 tree t1 = treeop0;
8710 treeop0 = treeop1;
8711 treeop1 = t1;
8714 /* Attempt to return something suitable for generating an
8715 indexed address, for machines that support that. */
8717 if (modifier == EXPAND_SUM && mode == ptr_mode
8718 && tree_fits_shwi_p (treeop1))
8720 tree exp1 = treeop1;
8722 op0 = expand_expr (treeop0, subtarget, VOIDmode,
8723 EXPAND_SUM);
8725 if (!REG_P (op0))
8726 op0 = force_operand (op0, NULL_RTX);
8727 if (!REG_P (op0))
8728 op0 = copy_to_mode_reg (mode, op0);
8730 return REDUCE_BIT_FIELD (gen_rtx_MULT (mode, op0,
8731 gen_int_mode (tree_to_shwi (exp1),
8732 TYPE_MODE (TREE_TYPE (exp1)))));
8735 if (modifier == EXPAND_STACK_PARM)
8736 target = 0;
8738 expand_operands (treeop0, treeop1, subtarget, &op0, &op1, EXPAND_NORMAL);
8739 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
8741 case TRUNC_DIV_EXPR:
8742 case FLOOR_DIV_EXPR:
8743 case CEIL_DIV_EXPR:
8744 case ROUND_DIV_EXPR:
8745 case EXACT_DIV_EXPR:
8746 /* If this is a fixed-point operation, then we cannot use the code
8747 below because "expand_divmod" doesn't support sat/no-sat fixed-point
8748 divisions. */
8749 if (ALL_FIXED_POINT_MODE_P (mode))
8750 goto binop;
8752 if (modifier == EXPAND_STACK_PARM)
8753 target = 0;
8754 /* Possible optimization: compute the dividend with EXPAND_SUM
8755 then if the divisor is constant can optimize the case
8756 where some terms of the dividend have coeffs divisible by it. */
8757 expand_operands (treeop0, treeop1,
8758 subtarget, &op0, &op1, EXPAND_NORMAL);
8759 return expand_divmod (0, code, mode, op0, op1, target, unsignedp);
8761 case RDIV_EXPR:
8762 goto binop;
8764 case MULT_HIGHPART_EXPR:
8765 expand_operands (treeop0, treeop1, subtarget, &op0, &op1, EXPAND_NORMAL);
8766 temp = expand_mult_highpart (mode, op0, op1, target, unsignedp);
8767 gcc_assert (temp);
8768 return temp;
8770 case TRUNC_MOD_EXPR:
8771 case FLOOR_MOD_EXPR:
8772 case CEIL_MOD_EXPR:
8773 case ROUND_MOD_EXPR:
8774 if (modifier == EXPAND_STACK_PARM)
8775 target = 0;
8776 expand_operands (treeop0, treeop1,
8777 subtarget, &op0, &op1, EXPAND_NORMAL);
8778 return expand_divmod (1, code, mode, op0, op1, target, unsignedp);
8780 case FIXED_CONVERT_EXPR:
8781 op0 = expand_normal (treeop0);
8782 if (target == 0 || modifier == EXPAND_STACK_PARM)
8783 target = gen_reg_rtx (mode);
8785 if ((TREE_CODE (TREE_TYPE (treeop0)) == INTEGER_TYPE
8786 && TYPE_UNSIGNED (TREE_TYPE (treeop0)))
8787 || (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type)))
8788 expand_fixed_convert (target, op0, 1, TYPE_SATURATING (type));
8789 else
8790 expand_fixed_convert (target, op0, 0, TYPE_SATURATING (type));
8791 return target;
8793 case FIX_TRUNC_EXPR:
8794 op0 = expand_normal (treeop0);
8795 if (target == 0 || modifier == EXPAND_STACK_PARM)
8796 target = gen_reg_rtx (mode);
8797 expand_fix (target, op0, unsignedp);
8798 return target;
8800 case FLOAT_EXPR:
8801 op0 = expand_normal (treeop0);
8802 if (target == 0 || modifier == EXPAND_STACK_PARM)
8803 target = gen_reg_rtx (mode);
8804 /* expand_float can't figure out what to do if FROM has VOIDmode.
8805 So give it the correct mode. With -O, cse will optimize this. */
8806 if (GET_MODE (op0) == VOIDmode)
8807 op0 = copy_to_mode_reg (TYPE_MODE (TREE_TYPE (treeop0)),
8808 op0);
8809 expand_float (target, op0,
8810 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
8811 return target;
8813 case NEGATE_EXPR:
8814 op0 = expand_expr (treeop0, subtarget,
8815 VOIDmode, EXPAND_NORMAL);
8816 if (modifier == EXPAND_STACK_PARM)
8817 target = 0;
8818 temp = expand_unop (mode,
8819 optab_for_tree_code (NEGATE_EXPR, type,
8820 optab_default),
8821 op0, target, 0);
8822 gcc_assert (temp);
8823 return REDUCE_BIT_FIELD (temp);
8825 case ABS_EXPR:
8826 op0 = expand_expr (treeop0, subtarget,
8827 VOIDmode, EXPAND_NORMAL);
8828 if (modifier == EXPAND_STACK_PARM)
8829 target = 0;
8831 /* ABS_EXPR is not valid for complex arguments. */
8832 gcc_assert (GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
8833 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT);
8835 /* Unsigned abs is simply the operand. Testing here means we don't
8836 risk generating incorrect code below. */
8837 if (TYPE_UNSIGNED (type))
8838 return op0;
8840 return expand_abs (mode, op0, target, unsignedp,
8841 safe_from_p (target, treeop0, 1));
8843 case MAX_EXPR:
8844 case MIN_EXPR:
8845 target = original_target;
8846 if (target == 0
8847 || modifier == EXPAND_STACK_PARM
8848 || (MEM_P (target) && MEM_VOLATILE_P (target))
8849 || GET_MODE (target) != mode
8850 || (REG_P (target)
8851 && REGNO (target) < FIRST_PSEUDO_REGISTER))
8852 target = gen_reg_rtx (mode);
8853 expand_operands (treeop0, treeop1,
8854 target, &op0, &op1, EXPAND_NORMAL);
8856 /* First try to do it with a special MIN or MAX instruction.
8857 If that does not win, use a conditional jump to select the proper
8858 value. */
8859 this_optab = optab_for_tree_code (code, type, optab_default);
8860 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
8861 OPTAB_WIDEN);
8862 if (temp != 0)
8863 return temp;
8865 /* At this point, a MEM target is no longer useful; we will get better
8866 code without it. */
8868 if (! REG_P (target))
8869 target = gen_reg_rtx (mode);
8871 /* If op1 was placed in target, swap op0 and op1. */
8872 if (target != op0 && target == op1)
8873 std::swap (op0, op1);
8875 /* We generate better code and avoid problems with op1 mentioning
8876 target by forcing op1 into a pseudo if it isn't a constant. */
8877 if (! CONSTANT_P (op1))
8878 op1 = force_reg (mode, op1);
8881 enum rtx_code comparison_code;
8882 rtx cmpop1 = op1;
8884 if (code == MAX_EXPR)
8885 comparison_code = unsignedp ? GEU : GE;
8886 else
8887 comparison_code = unsignedp ? LEU : LE;
8889 /* Canonicalize to comparisons against 0. */
8890 if (op1 == const1_rtx)
8892 /* Converting (a >= 1 ? a : 1) into (a > 0 ? a : 1)
8893 or (a != 0 ? a : 1) for unsigned.
8894 For MIN we are safe converting (a <= 1 ? a : 1)
8895 into (a <= 0 ? a : 1) */
8896 cmpop1 = const0_rtx;
8897 if (code == MAX_EXPR)
8898 comparison_code = unsignedp ? NE : GT;
8900 if (op1 == constm1_rtx && !unsignedp)
8902 /* Converting (a >= -1 ? a : -1) into (a >= 0 ? a : -1)
8903 and (a <= -1 ? a : -1) into (a < 0 ? a : -1) */
8904 cmpop1 = const0_rtx;
8905 if (code == MIN_EXPR)
8906 comparison_code = LT;
8908 #ifdef HAVE_conditional_move
8909 /* Use a conditional move if possible. */
8910 if (can_conditionally_move_p (mode))
8912 rtx insn;
8914 start_sequence ();
8916 /* Try to emit the conditional move. */
8917 insn = emit_conditional_move (target, comparison_code,
8918 op0, cmpop1, mode,
8919 op0, op1, mode,
8920 unsignedp);
8922 /* If we could do the conditional move, emit the sequence,
8923 and return. */
8924 if (insn)
8926 rtx_insn *seq = get_insns ();
8927 end_sequence ();
8928 emit_insn (seq);
8929 return target;
8932 /* Otherwise discard the sequence and fall back to code with
8933 branches. */
8934 end_sequence ();
8936 #endif
8937 if (target != op0)
8938 emit_move_insn (target, op0);
8940 temp = gen_label_rtx ();
8941 do_compare_rtx_and_jump (target, cmpop1, comparison_code,
8942 unsignedp, mode, NULL_RTX, NULL_RTX, temp,
8943 -1);
8945 emit_move_insn (target, op1);
8946 emit_label (temp);
8947 return target;
8949 case BIT_NOT_EXPR:
8950 op0 = expand_expr (treeop0, subtarget,
8951 VOIDmode, EXPAND_NORMAL);
8952 if (modifier == EXPAND_STACK_PARM)
8953 target = 0;
8954 /* In case we have to reduce the result to bitfield precision
8955 for unsigned bitfield expand this as XOR with a proper constant
8956 instead. */
8957 if (reduce_bit_field && TYPE_UNSIGNED (type))
8959 wide_int mask = wi::mask (TYPE_PRECISION (type),
8960 false, GET_MODE_PRECISION (mode));
8962 temp = expand_binop (mode, xor_optab, op0,
8963 immed_wide_int_const (mask, mode),
8964 target, 1, OPTAB_LIB_WIDEN);
8966 else
8967 temp = expand_unop (mode, one_cmpl_optab, op0, target, 1);
8968 gcc_assert (temp);
8969 return temp;
8971 /* ??? Can optimize bitwise operations with one arg constant.
8972 Can optimize (a bitwise1 n) bitwise2 (a bitwise3 b)
8973 and (a bitwise1 b) bitwise2 b (etc)
8974 but that is probably not worth while. */
8976 case BIT_AND_EXPR:
8977 case BIT_IOR_EXPR:
8978 case BIT_XOR_EXPR:
8979 goto binop;
8981 case LROTATE_EXPR:
8982 case RROTATE_EXPR:
8983 gcc_assert (VECTOR_MODE_P (TYPE_MODE (type))
8984 || (GET_MODE_PRECISION (TYPE_MODE (type))
8985 == TYPE_PRECISION (type)));
8986 /* fall through */
8988 case LSHIFT_EXPR:
8989 case RSHIFT_EXPR:
8990 /* If this is a fixed-point operation, then we cannot use the code
8991 below because "expand_shift" doesn't support sat/no-sat fixed-point
8992 shifts. */
8993 if (ALL_FIXED_POINT_MODE_P (mode))
8994 goto binop;
8996 if (! safe_from_p (subtarget, treeop1, 1))
8997 subtarget = 0;
8998 if (modifier == EXPAND_STACK_PARM)
8999 target = 0;
9000 op0 = expand_expr (treeop0, subtarget,
9001 VOIDmode, EXPAND_NORMAL);
9002 temp = expand_variable_shift (code, mode, op0, treeop1, target,
9003 unsignedp);
9004 if (code == LSHIFT_EXPR)
9005 temp = REDUCE_BIT_FIELD (temp);
9006 return temp;
9008 /* Could determine the answer when only additive constants differ. Also,
9009 the addition of one can be handled by changing the condition. */
9010 case LT_EXPR:
9011 case LE_EXPR:
9012 case GT_EXPR:
9013 case GE_EXPR:
9014 case EQ_EXPR:
9015 case NE_EXPR:
9016 case UNORDERED_EXPR:
9017 case ORDERED_EXPR:
9018 case UNLT_EXPR:
9019 case UNLE_EXPR:
9020 case UNGT_EXPR:
9021 case UNGE_EXPR:
9022 case UNEQ_EXPR:
9023 case LTGT_EXPR:
9024 temp = do_store_flag (ops,
9025 modifier != EXPAND_STACK_PARM ? target : NULL_RTX,
9026 tmode != VOIDmode ? tmode : mode);
9027 if (temp)
9028 return temp;
9030 /* Use a compare and a jump for BLKmode comparisons, or for function
9031 type comparisons is HAVE_canonicalize_funcptr_for_compare. */
9033 if ((target == 0
9034 || modifier == EXPAND_STACK_PARM
9035 || ! safe_from_p (target, treeop0, 1)
9036 || ! safe_from_p (target, treeop1, 1)
9037 /* Make sure we don't have a hard reg (such as function's return
9038 value) live across basic blocks, if not optimizing. */
9039 || (!optimize && REG_P (target)
9040 && REGNO (target) < FIRST_PSEUDO_REGISTER)))
9041 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
9043 emit_move_insn (target, const0_rtx);
9045 op1 = gen_label_rtx ();
9046 jumpifnot_1 (code, treeop0, treeop1, op1, -1);
9048 if (TYPE_PRECISION (type) == 1 && !TYPE_UNSIGNED (type))
9049 emit_move_insn (target, constm1_rtx);
9050 else
9051 emit_move_insn (target, const1_rtx);
9053 emit_label (op1);
9054 return target;
9056 case COMPLEX_EXPR:
9057 /* Get the rtx code of the operands. */
9058 op0 = expand_normal (treeop0);
9059 op1 = expand_normal (treeop1);
9061 if (!target)
9062 target = gen_reg_rtx (TYPE_MODE (type));
9063 else
9064 /* If target overlaps with op1, then either we need to force
9065 op1 into a pseudo (if target also overlaps with op0),
9066 or write the complex parts in reverse order. */
9067 switch (GET_CODE (target))
9069 case CONCAT:
9070 if (reg_overlap_mentioned_p (XEXP (target, 0), op1))
9072 if (reg_overlap_mentioned_p (XEXP (target, 1), op0))
9074 complex_expr_force_op1:
9075 temp = gen_reg_rtx (GET_MODE_INNER (GET_MODE (target)));
9076 emit_move_insn (temp, op1);
9077 op1 = temp;
9078 break;
9080 complex_expr_swap_order:
9081 /* Move the imaginary (op1) and real (op0) parts to their
9082 location. */
9083 write_complex_part (target, op1, true);
9084 write_complex_part (target, op0, false);
9086 return target;
9088 break;
9089 case MEM:
9090 temp = adjust_address_nv (target,
9091 GET_MODE_INNER (GET_MODE (target)), 0);
9092 if (reg_overlap_mentioned_p (temp, op1))
9094 machine_mode imode = GET_MODE_INNER (GET_MODE (target));
9095 temp = adjust_address_nv (target, imode,
9096 GET_MODE_SIZE (imode));
9097 if (reg_overlap_mentioned_p (temp, op0))
9098 goto complex_expr_force_op1;
9099 goto complex_expr_swap_order;
9101 break;
9102 default:
9103 if (reg_overlap_mentioned_p (target, op1))
9105 if (reg_overlap_mentioned_p (target, op0))
9106 goto complex_expr_force_op1;
9107 goto complex_expr_swap_order;
9109 break;
9112 /* Move the real (op0) and imaginary (op1) parts to their location. */
9113 write_complex_part (target, op0, false);
9114 write_complex_part (target, op1, true);
9116 return target;
9118 case WIDEN_SUM_EXPR:
9120 tree oprnd0 = treeop0;
9121 tree oprnd1 = treeop1;
9123 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
9124 target = expand_widen_pattern_expr (ops, op0, NULL_RTX, op1,
9125 target, unsignedp);
9126 return target;
9129 case REDUC_MAX_EXPR:
9130 case REDUC_MIN_EXPR:
9131 case REDUC_PLUS_EXPR:
9133 op0 = expand_normal (treeop0);
9134 this_optab = optab_for_tree_code (code, type, optab_default);
9135 machine_mode vec_mode = TYPE_MODE (TREE_TYPE (treeop0));
9137 if (optab_handler (this_optab, vec_mode) != CODE_FOR_nothing)
9139 struct expand_operand ops[2];
9140 enum insn_code icode = optab_handler (this_optab, vec_mode);
9142 create_output_operand (&ops[0], target, mode);
9143 create_input_operand (&ops[1], op0, vec_mode);
9144 if (maybe_expand_insn (icode, 2, ops))
9146 target = ops[0].value;
9147 if (GET_MODE (target) != mode)
9148 return gen_lowpart (tmode, target);
9149 return target;
9152 /* Fall back to optab with vector result, and then extract scalar. */
9153 this_optab = scalar_reduc_to_vector (this_optab, type);
9154 temp = expand_unop (vec_mode, this_optab, op0, NULL_RTX, unsignedp);
9155 gcc_assert (temp);
9156 /* The tree code produces a scalar result, but (somewhat by convention)
9157 the optab produces a vector with the result in element 0 if
9158 little-endian, or element N-1 if big-endian. So pull the scalar
9159 result out of that element. */
9160 int index = BYTES_BIG_ENDIAN ? GET_MODE_NUNITS (vec_mode) - 1 : 0;
9161 int bitsize = GET_MODE_BITSIZE (GET_MODE_INNER (vec_mode));
9162 temp = extract_bit_field (temp, bitsize, bitsize * index, unsignedp,
9163 target, mode, mode);
9164 gcc_assert (temp);
9165 return temp;
9168 case VEC_UNPACK_HI_EXPR:
9169 case VEC_UNPACK_LO_EXPR:
9171 op0 = expand_normal (treeop0);
9172 temp = expand_widen_pattern_expr (ops, op0, NULL_RTX, NULL_RTX,
9173 target, unsignedp);
9174 gcc_assert (temp);
9175 return temp;
9178 case VEC_UNPACK_FLOAT_HI_EXPR:
9179 case VEC_UNPACK_FLOAT_LO_EXPR:
9181 op0 = expand_normal (treeop0);
9182 /* The signedness is determined from input operand. */
9183 temp = expand_widen_pattern_expr
9184 (ops, op0, NULL_RTX, NULL_RTX,
9185 target, TYPE_UNSIGNED (TREE_TYPE (treeop0)));
9187 gcc_assert (temp);
9188 return temp;
9191 case VEC_WIDEN_MULT_HI_EXPR:
9192 case VEC_WIDEN_MULT_LO_EXPR:
9193 case VEC_WIDEN_MULT_EVEN_EXPR:
9194 case VEC_WIDEN_MULT_ODD_EXPR:
9195 case VEC_WIDEN_LSHIFT_HI_EXPR:
9196 case VEC_WIDEN_LSHIFT_LO_EXPR:
9197 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
9198 target = expand_widen_pattern_expr (ops, op0, op1, NULL_RTX,
9199 target, unsignedp);
9200 gcc_assert (target);
9201 return target;
9203 case VEC_PACK_TRUNC_EXPR:
9204 case VEC_PACK_SAT_EXPR:
9205 case VEC_PACK_FIX_TRUNC_EXPR:
9206 mode = TYPE_MODE (TREE_TYPE (treeop0));
9207 goto binop;
9209 case VEC_PERM_EXPR:
9210 expand_operands (treeop0, treeop1, target, &op0, &op1, EXPAND_NORMAL);
9211 op2 = expand_normal (treeop2);
9213 /* Careful here: if the target doesn't support integral vector modes,
9214 a constant selection vector could wind up smooshed into a normal
9215 integral constant. */
9216 if (CONSTANT_P (op2) && GET_CODE (op2) != CONST_VECTOR)
9218 tree sel_type = TREE_TYPE (treeop2);
9219 machine_mode vmode
9220 = mode_for_vector (TYPE_MODE (TREE_TYPE (sel_type)),
9221 TYPE_VECTOR_SUBPARTS (sel_type));
9222 gcc_assert (GET_MODE_CLASS (vmode) == MODE_VECTOR_INT);
9223 op2 = simplify_subreg (vmode, op2, TYPE_MODE (sel_type), 0);
9224 gcc_assert (op2 && GET_CODE (op2) == CONST_VECTOR);
9226 else
9227 gcc_assert (GET_MODE_CLASS (GET_MODE (op2)) == MODE_VECTOR_INT);
9229 temp = expand_vec_perm (mode, op0, op1, op2, target);
9230 gcc_assert (temp);
9231 return temp;
9233 case DOT_PROD_EXPR:
9235 tree oprnd0 = treeop0;
9236 tree oprnd1 = treeop1;
9237 tree oprnd2 = treeop2;
9238 rtx op2;
9240 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
9241 op2 = expand_normal (oprnd2);
9242 target = expand_widen_pattern_expr (ops, op0, op1, op2,
9243 target, unsignedp);
9244 return target;
9247 case SAD_EXPR:
9249 tree oprnd0 = treeop0;
9250 tree oprnd1 = treeop1;
9251 tree oprnd2 = treeop2;
9252 rtx op2;
9254 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
9255 op2 = expand_normal (oprnd2);
9256 target = expand_widen_pattern_expr (ops, op0, op1, op2,
9257 target, unsignedp);
9258 return target;
9261 case REALIGN_LOAD_EXPR:
9263 tree oprnd0 = treeop0;
9264 tree oprnd1 = treeop1;
9265 tree oprnd2 = treeop2;
9266 rtx op2;
9268 this_optab = optab_for_tree_code (code, type, optab_default);
9269 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
9270 op2 = expand_normal (oprnd2);
9271 temp = expand_ternary_op (mode, this_optab, op0, op1, op2,
9272 target, unsignedp);
9273 gcc_assert (temp);
9274 return temp;
9277 case COND_EXPR:
9278 /* A COND_EXPR with its type being VOID_TYPE represents a
9279 conditional jump and is handled in
9280 expand_gimple_cond_expr. */
9281 gcc_assert (!VOID_TYPE_P (type));
9283 /* Note that COND_EXPRs whose type is a structure or union
9284 are required to be constructed to contain assignments of
9285 a temporary variable, so that we can evaluate them here
9286 for side effect only. If type is void, we must do likewise. */
9288 gcc_assert (!TREE_ADDRESSABLE (type)
9289 && !ignore
9290 && TREE_TYPE (treeop1) != void_type_node
9291 && TREE_TYPE (treeop2) != void_type_node);
9293 temp = expand_cond_expr_using_cmove (treeop0, treeop1, treeop2);
9294 if (temp)
9295 return temp;
9297 /* If we are not to produce a result, we have no target. Otherwise,
9298 if a target was specified use it; it will not be used as an
9299 intermediate target unless it is safe. If no target, use a
9300 temporary. */
9302 if (modifier != EXPAND_STACK_PARM
9303 && original_target
9304 && safe_from_p (original_target, treeop0, 1)
9305 && GET_MODE (original_target) == mode
9306 && !MEM_P (original_target))
9307 temp = original_target;
9308 else
9309 temp = assign_temp (type, 0, 1);
9311 do_pending_stack_adjust ();
9312 NO_DEFER_POP;
9313 op0 = gen_label_rtx ();
9314 op1 = gen_label_rtx ();
9315 jumpifnot (treeop0, op0, -1);
9316 store_expr (treeop1, temp,
9317 modifier == EXPAND_STACK_PARM,
9318 false);
9320 emit_jump_insn (gen_jump (op1));
9321 emit_barrier ();
9322 emit_label (op0);
9323 store_expr (treeop2, temp,
9324 modifier == EXPAND_STACK_PARM,
9325 false);
9327 emit_label (op1);
9328 OK_DEFER_POP;
9329 return temp;
9331 case VEC_COND_EXPR:
9332 target = expand_vec_cond_expr (type, treeop0, treeop1, treeop2, target);
9333 return target;
9335 default:
9336 gcc_unreachable ();
9339 /* Here to do an ordinary binary operator. */
9340 binop:
9341 expand_operands (treeop0, treeop1,
9342 subtarget, &op0, &op1, EXPAND_NORMAL);
9343 binop2:
9344 this_optab = optab_for_tree_code (code, type, optab_default);
9345 binop3:
9346 if (modifier == EXPAND_STACK_PARM)
9347 target = 0;
9348 temp = expand_binop (mode, this_optab, op0, op1, target,
9349 unsignedp, OPTAB_LIB_WIDEN);
9350 gcc_assert (temp);
9351 /* Bitwise operations do not need bitfield reduction as we expect their
9352 operands being properly truncated. */
9353 if (code == BIT_XOR_EXPR
9354 || code == BIT_AND_EXPR
9355 || code == BIT_IOR_EXPR)
9356 return temp;
9357 return REDUCE_BIT_FIELD (temp);
9359 #undef REDUCE_BIT_FIELD
9362 /* Return TRUE if expression STMT is suitable for replacement.
9363 Never consider memory loads as replaceable, because those don't ever lead
9364 into constant expressions. */
9366 static bool
9367 stmt_is_replaceable_p (gimple stmt)
9369 if (ssa_is_replaceable_p (stmt))
9371 /* Don't move around loads. */
9372 if (!gimple_assign_single_p (stmt)
9373 || is_gimple_val (gimple_assign_rhs1 (stmt)))
9374 return true;
9376 return false;
9380 expand_expr_real_1 (tree exp, rtx target, machine_mode tmode,
9381 enum expand_modifier modifier, rtx *alt_rtl,
9382 bool inner_reference_p)
9384 rtx op0, op1, temp, decl_rtl;
9385 tree type;
9386 int unsignedp;
9387 machine_mode mode;
9388 enum tree_code code = TREE_CODE (exp);
9389 rtx subtarget, original_target;
9390 int ignore;
9391 tree context;
9392 bool reduce_bit_field;
9393 location_t loc = EXPR_LOCATION (exp);
9394 struct separate_ops ops;
9395 tree treeop0, treeop1, treeop2;
9396 tree ssa_name = NULL_TREE;
9397 gimple g;
9399 type = TREE_TYPE (exp);
9400 mode = TYPE_MODE (type);
9401 unsignedp = TYPE_UNSIGNED (type);
9403 treeop0 = treeop1 = treeop2 = NULL_TREE;
9404 if (!VL_EXP_CLASS_P (exp))
9405 switch (TREE_CODE_LENGTH (code))
9407 default:
9408 case 3: treeop2 = TREE_OPERAND (exp, 2);
9409 case 2: treeop1 = TREE_OPERAND (exp, 1);
9410 case 1: treeop0 = TREE_OPERAND (exp, 0);
9411 case 0: break;
9413 ops.code = code;
9414 ops.type = type;
9415 ops.op0 = treeop0;
9416 ops.op1 = treeop1;
9417 ops.op2 = treeop2;
9418 ops.location = loc;
9420 ignore = (target == const0_rtx
9421 || ((CONVERT_EXPR_CODE_P (code)
9422 || code == COND_EXPR || code == VIEW_CONVERT_EXPR)
9423 && TREE_CODE (type) == VOID_TYPE));
9425 /* An operation in what may be a bit-field type needs the
9426 result to be reduced to the precision of the bit-field type,
9427 which is narrower than that of the type's mode. */
9428 reduce_bit_field = (!ignore
9429 && INTEGRAL_TYPE_P (type)
9430 && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type));
9432 /* If we are going to ignore this result, we need only do something
9433 if there is a side-effect somewhere in the expression. If there
9434 is, short-circuit the most common cases here. Note that we must
9435 not call expand_expr with anything but const0_rtx in case this
9436 is an initial expansion of a size that contains a PLACEHOLDER_EXPR. */
9438 if (ignore)
9440 if (! TREE_SIDE_EFFECTS (exp))
9441 return const0_rtx;
9443 /* Ensure we reference a volatile object even if value is ignored, but
9444 don't do this if all we are doing is taking its address. */
9445 if (TREE_THIS_VOLATILE (exp)
9446 && TREE_CODE (exp) != FUNCTION_DECL
9447 && mode != VOIDmode && mode != BLKmode
9448 && modifier != EXPAND_CONST_ADDRESS)
9450 temp = expand_expr (exp, NULL_RTX, VOIDmode, modifier);
9451 if (MEM_P (temp))
9452 copy_to_reg (temp);
9453 return const0_rtx;
9456 if (TREE_CODE_CLASS (code) == tcc_unary
9457 || code == BIT_FIELD_REF
9458 || code == COMPONENT_REF
9459 || code == INDIRECT_REF)
9460 return expand_expr (treeop0, const0_rtx, VOIDmode,
9461 modifier);
9463 else if (TREE_CODE_CLASS (code) == tcc_binary
9464 || TREE_CODE_CLASS (code) == tcc_comparison
9465 || code == ARRAY_REF || code == ARRAY_RANGE_REF)
9467 expand_expr (treeop0, const0_rtx, VOIDmode, modifier);
9468 expand_expr (treeop1, const0_rtx, VOIDmode, modifier);
9469 return const0_rtx;
9472 target = 0;
9475 if (reduce_bit_field && modifier == EXPAND_STACK_PARM)
9476 target = 0;
9478 /* Use subtarget as the target for operand 0 of a binary operation. */
9479 subtarget = get_subtarget (target);
9480 original_target = target;
9482 switch (code)
9484 case LABEL_DECL:
9486 tree function = decl_function_context (exp);
9488 temp = label_rtx (exp);
9489 temp = gen_rtx_LABEL_REF (Pmode, temp);
9491 if (function != current_function_decl
9492 && function != 0)
9493 LABEL_REF_NONLOCAL_P (temp) = 1;
9495 temp = gen_rtx_MEM (FUNCTION_MODE, temp);
9496 return temp;
9499 case SSA_NAME:
9500 /* ??? ivopts calls expander, without any preparation from
9501 out-of-ssa. So fake instructions as if this was an access to the
9502 base variable. This unnecessarily allocates a pseudo, see how we can
9503 reuse it, if partition base vars have it set already. */
9504 if (!currently_expanding_to_rtl)
9506 tree var = SSA_NAME_VAR (exp);
9507 if (var && DECL_RTL_SET_P (var))
9508 return DECL_RTL (var);
9509 return gen_raw_REG (TYPE_MODE (TREE_TYPE (exp)),
9510 LAST_VIRTUAL_REGISTER + 1);
9513 g = get_gimple_for_ssa_name (exp);
9514 /* For EXPAND_INITIALIZER try harder to get something simpler. */
9515 if (g == NULL
9516 && modifier == EXPAND_INITIALIZER
9517 && !SSA_NAME_IS_DEFAULT_DEF (exp)
9518 && (optimize || DECL_IGNORED_P (SSA_NAME_VAR (exp)))
9519 && stmt_is_replaceable_p (SSA_NAME_DEF_STMT (exp)))
9520 g = SSA_NAME_DEF_STMT (exp);
9521 if (g)
9523 rtx r;
9524 ops.code = gimple_assign_rhs_code (g);
9525 switch (get_gimple_rhs_class (ops.code))
9527 case GIMPLE_TERNARY_RHS:
9528 ops.op2 = gimple_assign_rhs3 (g);
9529 /* Fallthru */
9530 case GIMPLE_BINARY_RHS:
9531 ops.op1 = gimple_assign_rhs2 (g);
9533 /* Try to expand conditonal compare. */
9534 if (targetm.gen_ccmp_first)
9536 gcc_checking_assert (targetm.gen_ccmp_next != NULL);
9537 r = expand_ccmp_expr (g);
9538 if (r)
9539 break;
9541 /* Fallthru */
9542 case GIMPLE_UNARY_RHS:
9543 ops.op0 = gimple_assign_rhs1 (g);
9544 ops.type = TREE_TYPE (gimple_assign_lhs (g));
9545 ops.location = gimple_location (g);
9546 r = expand_expr_real_2 (&ops, target, tmode, modifier);
9547 break;
9548 case GIMPLE_SINGLE_RHS:
9550 location_t saved_loc = curr_insn_location ();
9551 set_curr_insn_location (gimple_location (g));
9552 r = expand_expr_real (gimple_assign_rhs1 (g), target,
9553 tmode, modifier, NULL, inner_reference_p);
9554 set_curr_insn_location (saved_loc);
9555 break;
9557 default:
9558 gcc_unreachable ();
9560 if (REG_P (r) && !REG_EXPR (r))
9561 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (exp), r);
9562 return r;
9565 ssa_name = exp;
9566 decl_rtl = get_rtx_for_ssa_name (ssa_name);
9567 exp = SSA_NAME_VAR (ssa_name);
9568 goto expand_decl_rtl;
9570 case PARM_DECL:
9571 case VAR_DECL:
9572 /* If a static var's type was incomplete when the decl was written,
9573 but the type is complete now, lay out the decl now. */
9574 if (DECL_SIZE (exp) == 0
9575 && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (TREE_TYPE (exp))
9576 && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
9577 layout_decl (exp, 0);
9579 /* ... fall through ... */
9581 case FUNCTION_DECL:
9582 case RESULT_DECL:
9583 decl_rtl = DECL_RTL (exp);
9584 expand_decl_rtl:
9585 gcc_assert (decl_rtl);
9586 decl_rtl = copy_rtx (decl_rtl);
9587 /* Record writes to register variables. */
9588 if (modifier == EXPAND_WRITE
9589 && REG_P (decl_rtl)
9590 && HARD_REGISTER_P (decl_rtl))
9591 add_to_hard_reg_set (&crtl->asm_clobbers,
9592 GET_MODE (decl_rtl), REGNO (decl_rtl));
9594 /* Ensure variable marked as used even if it doesn't go through
9595 a parser. If it hasn't be used yet, write out an external
9596 definition. */
9597 TREE_USED (exp) = 1;
9599 /* Show we haven't gotten RTL for this yet. */
9600 temp = 0;
9602 /* Variables inherited from containing functions should have
9603 been lowered by this point. */
9604 context = decl_function_context (exp);
9605 gcc_assert (SCOPE_FILE_SCOPE_P (context)
9606 || context == current_function_decl
9607 || TREE_STATIC (exp)
9608 || DECL_EXTERNAL (exp)
9609 /* ??? C++ creates functions that are not TREE_STATIC. */
9610 || TREE_CODE (exp) == FUNCTION_DECL);
9612 /* This is the case of an array whose size is to be determined
9613 from its initializer, while the initializer is still being parsed.
9614 ??? We aren't parsing while expanding anymore. */
9616 if (MEM_P (decl_rtl) && REG_P (XEXP (decl_rtl, 0)))
9617 temp = validize_mem (decl_rtl);
9619 /* If DECL_RTL is memory, we are in the normal case and the
9620 address is not valid, get the address into a register. */
9622 else if (MEM_P (decl_rtl) && modifier != EXPAND_INITIALIZER)
9624 if (alt_rtl)
9625 *alt_rtl = decl_rtl;
9626 decl_rtl = use_anchored_address (decl_rtl);
9627 if (modifier != EXPAND_CONST_ADDRESS
9628 && modifier != EXPAND_SUM
9629 && !memory_address_addr_space_p (DECL_MODE (exp),
9630 XEXP (decl_rtl, 0),
9631 MEM_ADDR_SPACE (decl_rtl)))
9632 temp = replace_equiv_address (decl_rtl,
9633 copy_rtx (XEXP (decl_rtl, 0)));
9636 /* If we got something, return it. But first, set the alignment
9637 if the address is a register. */
9638 if (temp != 0)
9640 if (MEM_P (temp) && REG_P (XEXP (temp, 0)))
9641 mark_reg_pointer (XEXP (temp, 0), DECL_ALIGN (exp));
9643 return temp;
9646 /* If the mode of DECL_RTL does not match that of the decl,
9647 there are two cases: we are dealing with a BLKmode value
9648 that is returned in a register, or we are dealing with
9649 a promoted value. In the latter case, return a SUBREG
9650 of the wanted mode, but mark it so that we know that it
9651 was already extended. */
9652 if (REG_P (decl_rtl)
9653 && DECL_MODE (exp) != BLKmode
9654 && GET_MODE (decl_rtl) != DECL_MODE (exp))
9656 machine_mode pmode;
9658 /* Get the signedness to be used for this variable. Ensure we get
9659 the same mode we got when the variable was declared. */
9660 if (code == SSA_NAME
9661 && (g = SSA_NAME_DEF_STMT (ssa_name))
9662 && gimple_code (g) == GIMPLE_CALL
9663 && !gimple_call_internal_p (g))
9664 pmode = promote_function_mode (type, mode, &unsignedp,
9665 gimple_call_fntype (g),
9667 else
9668 pmode = promote_decl_mode (exp, &unsignedp);
9669 gcc_assert (GET_MODE (decl_rtl) == pmode);
9671 temp = gen_lowpart_SUBREG (mode, decl_rtl);
9672 SUBREG_PROMOTED_VAR_P (temp) = 1;
9673 SUBREG_PROMOTED_SET (temp, unsignedp);
9674 return temp;
9677 return decl_rtl;
9679 case INTEGER_CST:
9680 /* Given that TYPE_PRECISION (type) is not always equal to
9681 GET_MODE_PRECISION (TYPE_MODE (type)), we need to extend from
9682 the former to the latter according to the signedness of the
9683 type. */
9684 temp = immed_wide_int_const (wide_int::from
9685 (exp,
9686 GET_MODE_PRECISION (TYPE_MODE (type)),
9687 TYPE_SIGN (type)),
9688 TYPE_MODE (type));
9689 return temp;
9691 case VECTOR_CST:
9693 tree tmp = NULL_TREE;
9694 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT
9695 || GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT
9696 || GET_MODE_CLASS (mode) == MODE_VECTOR_FRACT
9697 || GET_MODE_CLASS (mode) == MODE_VECTOR_UFRACT
9698 || GET_MODE_CLASS (mode) == MODE_VECTOR_ACCUM
9699 || GET_MODE_CLASS (mode) == MODE_VECTOR_UACCUM)
9700 return const_vector_from_tree (exp);
9701 if (GET_MODE_CLASS (mode) == MODE_INT)
9703 tree type_for_mode = lang_hooks.types.type_for_mode (mode, 1);
9704 if (type_for_mode)
9705 tmp = fold_unary_loc (loc, VIEW_CONVERT_EXPR, type_for_mode, exp);
9707 if (!tmp)
9709 vec<constructor_elt, va_gc> *v;
9710 unsigned i;
9711 vec_alloc (v, VECTOR_CST_NELTS (exp));
9712 for (i = 0; i < VECTOR_CST_NELTS (exp); ++i)
9713 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, VECTOR_CST_ELT (exp, i));
9714 tmp = build_constructor (type, v);
9716 return expand_expr (tmp, ignore ? const0_rtx : target,
9717 tmode, modifier);
9720 case CONST_DECL:
9721 return expand_expr (DECL_INITIAL (exp), target, VOIDmode, modifier);
9723 case REAL_CST:
9724 /* If optimized, generate immediate CONST_DOUBLE
9725 which will be turned into memory by reload if necessary.
9727 We used to force a register so that loop.c could see it. But
9728 this does not allow gen_* patterns to perform optimizations with
9729 the constants. It also produces two insns in cases like "x = 1.0;".
9730 On most machines, floating-point constants are not permitted in
9731 many insns, so we'd end up copying it to a register in any case.
9733 Now, we do the copying in expand_binop, if appropriate. */
9734 return CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (exp),
9735 TYPE_MODE (TREE_TYPE (exp)));
9737 case FIXED_CST:
9738 return CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (exp),
9739 TYPE_MODE (TREE_TYPE (exp)));
9741 case COMPLEX_CST:
9742 /* Handle evaluating a complex constant in a CONCAT target. */
9743 if (original_target && GET_CODE (original_target) == CONCAT)
9745 machine_mode mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
9746 rtx rtarg, itarg;
9748 rtarg = XEXP (original_target, 0);
9749 itarg = XEXP (original_target, 1);
9751 /* Move the real and imaginary parts separately. */
9752 op0 = expand_expr (TREE_REALPART (exp), rtarg, mode, EXPAND_NORMAL);
9753 op1 = expand_expr (TREE_IMAGPART (exp), itarg, mode, EXPAND_NORMAL);
9755 if (op0 != rtarg)
9756 emit_move_insn (rtarg, op0);
9757 if (op1 != itarg)
9758 emit_move_insn (itarg, op1);
9760 return original_target;
9763 /* ... fall through ... */
9765 case STRING_CST:
9766 temp = expand_expr_constant (exp, 1, modifier);
9768 /* temp contains a constant address.
9769 On RISC machines where a constant address isn't valid,
9770 make some insns to get that address into a register. */
9771 if (modifier != EXPAND_CONST_ADDRESS
9772 && modifier != EXPAND_INITIALIZER
9773 && modifier != EXPAND_SUM
9774 && ! memory_address_addr_space_p (mode, XEXP (temp, 0),
9775 MEM_ADDR_SPACE (temp)))
9776 return replace_equiv_address (temp,
9777 copy_rtx (XEXP (temp, 0)));
9778 return temp;
9780 case SAVE_EXPR:
9782 tree val = treeop0;
9783 rtx ret = expand_expr_real_1 (val, target, tmode, modifier, alt_rtl,
9784 inner_reference_p);
9786 if (!SAVE_EXPR_RESOLVED_P (exp))
9788 /* We can indeed still hit this case, typically via builtin
9789 expanders calling save_expr immediately before expanding
9790 something. Assume this means that we only have to deal
9791 with non-BLKmode values. */
9792 gcc_assert (GET_MODE (ret) != BLKmode);
9794 val = build_decl (curr_insn_location (),
9795 VAR_DECL, NULL, TREE_TYPE (exp));
9796 DECL_ARTIFICIAL (val) = 1;
9797 DECL_IGNORED_P (val) = 1;
9798 treeop0 = val;
9799 TREE_OPERAND (exp, 0) = treeop0;
9800 SAVE_EXPR_RESOLVED_P (exp) = 1;
9802 if (!CONSTANT_P (ret))
9803 ret = copy_to_reg (ret);
9804 SET_DECL_RTL (val, ret);
9807 return ret;
9811 case CONSTRUCTOR:
9812 /* If we don't need the result, just ensure we evaluate any
9813 subexpressions. */
9814 if (ignore)
9816 unsigned HOST_WIDE_INT idx;
9817 tree value;
9819 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
9820 expand_expr (value, const0_rtx, VOIDmode, EXPAND_NORMAL);
9822 return const0_rtx;
9825 return expand_constructor (exp, target, modifier, false);
9827 case TARGET_MEM_REF:
9829 addr_space_t as
9830 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))));
9831 enum insn_code icode;
9832 unsigned int align;
9834 op0 = addr_for_mem_ref (exp, as, true);
9835 op0 = memory_address_addr_space (mode, op0, as);
9836 temp = gen_rtx_MEM (mode, op0);
9837 set_mem_attributes (temp, exp, 0);
9838 set_mem_addr_space (temp, as);
9839 align = get_object_alignment (exp);
9840 if (modifier != EXPAND_WRITE
9841 && modifier != EXPAND_MEMORY
9842 && mode != BLKmode
9843 && align < GET_MODE_ALIGNMENT (mode)
9844 /* If the target does not have special handling for unaligned
9845 loads of mode then it can use regular moves for them. */
9846 && ((icode = optab_handler (movmisalign_optab, mode))
9847 != CODE_FOR_nothing))
9849 struct expand_operand ops[2];
9851 /* We've already validated the memory, and we're creating a
9852 new pseudo destination. The predicates really can't fail,
9853 nor can the generator. */
9854 create_output_operand (&ops[0], NULL_RTX, mode);
9855 create_fixed_operand (&ops[1], temp);
9856 expand_insn (icode, 2, ops);
9857 temp = ops[0].value;
9859 return temp;
9862 case MEM_REF:
9864 addr_space_t as
9865 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))));
9866 machine_mode address_mode;
9867 tree base = TREE_OPERAND (exp, 0);
9868 gimple def_stmt;
9869 enum insn_code icode;
9870 unsigned align;
9871 /* Handle expansion of non-aliased memory with non-BLKmode. That
9872 might end up in a register. */
9873 if (mem_ref_refers_to_non_mem_p (exp))
9875 HOST_WIDE_INT offset = mem_ref_offset (exp).to_short_addr ();
9876 base = TREE_OPERAND (base, 0);
9877 if (offset == 0
9878 && tree_fits_uhwi_p (TYPE_SIZE (type))
9879 && (GET_MODE_BITSIZE (DECL_MODE (base))
9880 == tree_to_uhwi (TYPE_SIZE (type))))
9881 return expand_expr (build1 (VIEW_CONVERT_EXPR, type, base),
9882 target, tmode, modifier);
9883 if (TYPE_MODE (type) == BLKmode)
9885 temp = assign_stack_temp (DECL_MODE (base),
9886 GET_MODE_SIZE (DECL_MODE (base)));
9887 store_expr (base, temp, 0, false);
9888 temp = adjust_address (temp, BLKmode, offset);
9889 set_mem_size (temp, int_size_in_bytes (type));
9890 return temp;
9892 exp = build3 (BIT_FIELD_REF, type, base, TYPE_SIZE (type),
9893 bitsize_int (offset * BITS_PER_UNIT));
9894 return expand_expr (exp, target, tmode, modifier);
9896 address_mode = targetm.addr_space.address_mode (as);
9897 base = TREE_OPERAND (exp, 0);
9898 if ((def_stmt = get_def_for_expr (base, BIT_AND_EXPR)))
9900 tree mask = gimple_assign_rhs2 (def_stmt);
9901 base = build2 (BIT_AND_EXPR, TREE_TYPE (base),
9902 gimple_assign_rhs1 (def_stmt), mask);
9903 TREE_OPERAND (exp, 0) = base;
9905 align = get_object_alignment (exp);
9906 op0 = expand_expr (base, NULL_RTX, VOIDmode, EXPAND_SUM);
9907 op0 = memory_address_addr_space (mode, op0, as);
9908 if (!integer_zerop (TREE_OPERAND (exp, 1)))
9910 rtx off = immed_wide_int_const (mem_ref_offset (exp), address_mode);
9911 op0 = simplify_gen_binary (PLUS, address_mode, op0, off);
9912 op0 = memory_address_addr_space (mode, op0, as);
9914 temp = gen_rtx_MEM (mode, op0);
9915 set_mem_attributes (temp, exp, 0);
9916 set_mem_addr_space (temp, as);
9917 if (TREE_THIS_VOLATILE (exp))
9918 MEM_VOLATILE_P (temp) = 1;
9919 if (modifier != EXPAND_WRITE
9920 && modifier != EXPAND_MEMORY
9921 && !inner_reference_p
9922 && mode != BLKmode
9923 && align < GET_MODE_ALIGNMENT (mode))
9925 if ((icode = optab_handler (movmisalign_optab, mode))
9926 != CODE_FOR_nothing)
9928 struct expand_operand ops[2];
9930 /* We've already validated the memory, and we're creating a
9931 new pseudo destination. The predicates really can't fail,
9932 nor can the generator. */
9933 create_output_operand (&ops[0], NULL_RTX, mode);
9934 create_fixed_operand (&ops[1], temp);
9935 expand_insn (icode, 2, ops);
9936 temp = ops[0].value;
9938 else if (SLOW_UNALIGNED_ACCESS (mode, align))
9939 temp = extract_bit_field (temp, GET_MODE_BITSIZE (mode),
9940 0, TYPE_UNSIGNED (TREE_TYPE (exp)),
9941 (modifier == EXPAND_STACK_PARM
9942 ? NULL_RTX : target),
9943 mode, mode);
9945 return temp;
9948 case ARRAY_REF:
9951 tree array = treeop0;
9952 tree index = treeop1;
9953 tree init;
9955 /* Fold an expression like: "foo"[2].
9956 This is not done in fold so it won't happen inside &.
9957 Don't fold if this is for wide characters since it's too
9958 difficult to do correctly and this is a very rare case. */
9960 if (modifier != EXPAND_CONST_ADDRESS
9961 && modifier != EXPAND_INITIALIZER
9962 && modifier != EXPAND_MEMORY)
9964 tree t = fold_read_from_constant_string (exp);
9966 if (t)
9967 return expand_expr (t, target, tmode, modifier);
9970 /* If this is a constant index into a constant array,
9971 just get the value from the array. Handle both the cases when
9972 we have an explicit constructor and when our operand is a variable
9973 that was declared const. */
9975 if (modifier != EXPAND_CONST_ADDRESS
9976 && modifier != EXPAND_INITIALIZER
9977 && modifier != EXPAND_MEMORY
9978 && TREE_CODE (array) == CONSTRUCTOR
9979 && ! TREE_SIDE_EFFECTS (array)
9980 && TREE_CODE (index) == INTEGER_CST)
9982 unsigned HOST_WIDE_INT ix;
9983 tree field, value;
9985 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (array), ix,
9986 field, value)
9987 if (tree_int_cst_equal (field, index))
9989 if (!TREE_SIDE_EFFECTS (value))
9990 return expand_expr (fold (value), target, tmode, modifier);
9991 break;
9995 else if (optimize >= 1
9996 && modifier != EXPAND_CONST_ADDRESS
9997 && modifier != EXPAND_INITIALIZER
9998 && modifier != EXPAND_MEMORY
9999 && TREE_READONLY (array) && ! TREE_SIDE_EFFECTS (array)
10000 && TREE_CODE (index) == INTEGER_CST
10001 && (TREE_CODE (array) == VAR_DECL
10002 || TREE_CODE (array) == CONST_DECL)
10003 && (init = ctor_for_folding (array)) != error_mark_node)
10005 if (init == NULL_TREE)
10007 tree value = build_zero_cst (type);
10008 if (TREE_CODE (value) == CONSTRUCTOR)
10010 /* If VALUE is a CONSTRUCTOR, this optimization is only
10011 useful if this doesn't store the CONSTRUCTOR into
10012 memory. If it does, it is more efficient to just
10013 load the data from the array directly. */
10014 rtx ret = expand_constructor (value, target,
10015 modifier, true);
10016 if (ret == NULL_RTX)
10017 value = NULL_TREE;
10020 if (value)
10021 return expand_expr (value, target, tmode, modifier);
10023 else if (TREE_CODE (init) == CONSTRUCTOR)
10025 unsigned HOST_WIDE_INT ix;
10026 tree field, value;
10028 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), ix,
10029 field, value)
10030 if (tree_int_cst_equal (field, index))
10032 if (TREE_SIDE_EFFECTS (value))
10033 break;
10035 if (TREE_CODE (value) == CONSTRUCTOR)
10037 /* If VALUE is a CONSTRUCTOR, this
10038 optimization is only useful if
10039 this doesn't store the CONSTRUCTOR
10040 into memory. If it does, it is more
10041 efficient to just load the data from
10042 the array directly. */
10043 rtx ret = expand_constructor (value, target,
10044 modifier, true);
10045 if (ret == NULL_RTX)
10046 break;
10049 return
10050 expand_expr (fold (value), target, tmode, modifier);
10053 else if (TREE_CODE (init) == STRING_CST)
10055 tree low_bound = array_ref_low_bound (exp);
10056 tree index1 = fold_convert_loc (loc, sizetype, treeop1);
10058 /* Optimize the special case of a zero lower bound.
10060 We convert the lower bound to sizetype to avoid problems
10061 with constant folding. E.g. suppose the lower bound is
10062 1 and its mode is QI. Without the conversion
10063 (ARRAY + (INDEX - (unsigned char)1))
10064 becomes
10065 (ARRAY + (-(unsigned char)1) + INDEX)
10066 which becomes
10067 (ARRAY + 255 + INDEX). Oops! */
10068 if (!integer_zerop (low_bound))
10069 index1 = size_diffop_loc (loc, index1,
10070 fold_convert_loc (loc, sizetype,
10071 low_bound));
10073 if (compare_tree_int (index1, TREE_STRING_LENGTH (init)) < 0)
10075 tree type = TREE_TYPE (TREE_TYPE (init));
10076 machine_mode mode = TYPE_MODE (type);
10078 if (GET_MODE_CLASS (mode) == MODE_INT
10079 && GET_MODE_SIZE (mode) == 1)
10080 return gen_int_mode (TREE_STRING_POINTER (init)
10081 [TREE_INT_CST_LOW (index1)],
10082 mode);
10087 goto normal_inner_ref;
10089 case COMPONENT_REF:
10090 /* If the operand is a CONSTRUCTOR, we can just extract the
10091 appropriate field if it is present. */
10092 if (TREE_CODE (treeop0) == CONSTRUCTOR)
10094 unsigned HOST_WIDE_INT idx;
10095 tree field, value;
10097 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (treeop0),
10098 idx, field, value)
10099 if (field == treeop1
10100 /* We can normally use the value of the field in the
10101 CONSTRUCTOR. However, if this is a bitfield in
10102 an integral mode that we can fit in a HOST_WIDE_INT,
10103 we must mask only the number of bits in the bitfield,
10104 since this is done implicitly by the constructor. If
10105 the bitfield does not meet either of those conditions,
10106 we can't do this optimization. */
10107 && (! DECL_BIT_FIELD (field)
10108 || ((GET_MODE_CLASS (DECL_MODE (field)) == MODE_INT)
10109 && (GET_MODE_PRECISION (DECL_MODE (field))
10110 <= HOST_BITS_PER_WIDE_INT))))
10112 if (DECL_BIT_FIELD (field)
10113 && modifier == EXPAND_STACK_PARM)
10114 target = 0;
10115 op0 = expand_expr (value, target, tmode, modifier);
10116 if (DECL_BIT_FIELD (field))
10118 HOST_WIDE_INT bitsize = TREE_INT_CST_LOW (DECL_SIZE (field));
10119 machine_mode imode = TYPE_MODE (TREE_TYPE (field));
10121 if (TYPE_UNSIGNED (TREE_TYPE (field)))
10123 op1 = gen_int_mode (((HOST_WIDE_INT) 1 << bitsize) - 1,
10124 imode);
10125 op0 = expand_and (imode, op0, op1, target);
10127 else
10129 int count = GET_MODE_PRECISION (imode) - bitsize;
10131 op0 = expand_shift (LSHIFT_EXPR, imode, op0, count,
10132 target, 0);
10133 op0 = expand_shift (RSHIFT_EXPR, imode, op0, count,
10134 target, 0);
10138 return op0;
10141 goto normal_inner_ref;
10143 case BIT_FIELD_REF:
10144 case ARRAY_RANGE_REF:
10145 normal_inner_ref:
10147 machine_mode mode1, mode2;
10148 HOST_WIDE_INT bitsize, bitpos;
10149 tree offset;
10150 int volatilep = 0, must_force_mem;
10151 tree tem = get_inner_reference (exp, &bitsize, &bitpos, &offset,
10152 &mode1, &unsignedp, &volatilep, true);
10153 rtx orig_op0, memloc;
10154 bool clear_mem_expr = false;
10156 /* If we got back the original object, something is wrong. Perhaps
10157 we are evaluating an expression too early. In any event, don't
10158 infinitely recurse. */
10159 gcc_assert (tem != exp);
10161 /* If TEM's type is a union of variable size, pass TARGET to the inner
10162 computation, since it will need a temporary and TARGET is known
10163 to have to do. This occurs in unchecked conversion in Ada. */
10164 orig_op0 = op0
10165 = expand_expr_real (tem,
10166 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
10167 && COMPLETE_TYPE_P (TREE_TYPE (tem))
10168 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
10169 != INTEGER_CST)
10170 && modifier != EXPAND_STACK_PARM
10171 ? target : NULL_RTX),
10172 VOIDmode,
10173 modifier == EXPAND_SUM ? EXPAND_NORMAL : modifier,
10174 NULL, true);
10176 /* If the field has a mode, we want to access it in the
10177 field's mode, not the computed mode.
10178 If a MEM has VOIDmode (external with incomplete type),
10179 use BLKmode for it instead. */
10180 if (MEM_P (op0))
10182 if (mode1 != VOIDmode)
10183 op0 = adjust_address (op0, mode1, 0);
10184 else if (GET_MODE (op0) == VOIDmode)
10185 op0 = adjust_address (op0, BLKmode, 0);
10188 mode2
10189 = CONSTANT_P (op0) ? TYPE_MODE (TREE_TYPE (tem)) : GET_MODE (op0);
10191 /* If we have either an offset, a BLKmode result, or a reference
10192 outside the underlying object, we must force it to memory.
10193 Such a case can occur in Ada if we have unchecked conversion
10194 of an expression from a scalar type to an aggregate type or
10195 for an ARRAY_RANGE_REF whose type is BLKmode, or if we were
10196 passed a partially uninitialized object or a view-conversion
10197 to a larger size. */
10198 must_force_mem = (offset
10199 || mode1 == BLKmode
10200 || bitpos + bitsize > GET_MODE_BITSIZE (mode2));
10202 /* Handle CONCAT first. */
10203 if (GET_CODE (op0) == CONCAT && !must_force_mem)
10205 if (bitpos == 0
10206 && bitsize == GET_MODE_BITSIZE (GET_MODE (op0)))
10207 return op0;
10208 if (bitpos == 0
10209 && bitsize == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10210 && bitsize)
10212 op0 = XEXP (op0, 0);
10213 mode2 = GET_MODE (op0);
10215 else if (bitpos == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10216 && bitsize == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 1)))
10217 && bitpos
10218 && bitsize)
10220 op0 = XEXP (op0, 1);
10221 bitpos = 0;
10222 mode2 = GET_MODE (op0);
10224 else
10225 /* Otherwise force into memory. */
10226 must_force_mem = 1;
10229 /* If this is a constant, put it in a register if it is a legitimate
10230 constant and we don't need a memory reference. */
10231 if (CONSTANT_P (op0)
10232 && mode2 != BLKmode
10233 && targetm.legitimate_constant_p (mode2, op0)
10234 && !must_force_mem)
10235 op0 = force_reg (mode2, op0);
10237 /* Otherwise, if this is a constant, try to force it to the constant
10238 pool. Note that back-ends, e.g. MIPS, may refuse to do so if it
10239 is a legitimate constant. */
10240 else if (CONSTANT_P (op0) && (memloc = force_const_mem (mode2, op0)))
10241 op0 = validize_mem (memloc);
10243 /* Otherwise, if this is a constant or the object is not in memory
10244 and need be, put it there. */
10245 else if (CONSTANT_P (op0) || (!MEM_P (op0) && must_force_mem))
10247 memloc = assign_temp (TREE_TYPE (tem), 1, 1);
10248 emit_move_insn (memloc, op0);
10249 op0 = memloc;
10250 clear_mem_expr = true;
10253 if (offset)
10255 machine_mode address_mode;
10256 rtx offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode,
10257 EXPAND_SUM);
10259 gcc_assert (MEM_P (op0));
10261 address_mode = get_address_mode (op0);
10262 if (GET_MODE (offset_rtx) != address_mode)
10264 /* We cannot be sure that the RTL in offset_rtx is valid outside
10265 of a memory address context, so force it into a register
10266 before attempting to convert it to the desired mode. */
10267 offset_rtx = force_operand (offset_rtx, NULL_RTX);
10268 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
10271 /* See the comment in expand_assignment for the rationale. */
10272 if (mode1 != VOIDmode
10273 && bitpos != 0
10274 && bitsize > 0
10275 && (bitpos % bitsize) == 0
10276 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
10277 && MEM_ALIGN (op0) >= GET_MODE_ALIGNMENT (mode1))
10279 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
10280 bitpos = 0;
10283 op0 = offset_address (op0, offset_rtx,
10284 highest_pow2_factor (offset));
10287 /* If OFFSET is making OP0 more aligned than BIGGEST_ALIGNMENT,
10288 record its alignment as BIGGEST_ALIGNMENT. */
10289 if (MEM_P (op0) && bitpos == 0 && offset != 0
10290 && is_aligning_offset (offset, tem))
10291 set_mem_align (op0, BIGGEST_ALIGNMENT);
10293 /* Don't forget about volatility even if this is a bitfield. */
10294 if (MEM_P (op0) && volatilep && ! MEM_VOLATILE_P (op0))
10296 if (op0 == orig_op0)
10297 op0 = copy_rtx (op0);
10299 MEM_VOLATILE_P (op0) = 1;
10302 /* In cases where an aligned union has an unaligned object
10303 as a field, we might be extracting a BLKmode value from
10304 an integer-mode (e.g., SImode) object. Handle this case
10305 by doing the extract into an object as wide as the field
10306 (which we know to be the width of a basic mode), then
10307 storing into memory, and changing the mode to BLKmode. */
10308 if (mode1 == VOIDmode
10309 || REG_P (op0) || GET_CODE (op0) == SUBREG
10310 || (mode1 != BLKmode && ! direct_load[(int) mode1]
10311 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
10312 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT
10313 && modifier != EXPAND_CONST_ADDRESS
10314 && modifier != EXPAND_INITIALIZER
10315 && modifier != EXPAND_MEMORY)
10316 /* If the bitfield is volatile and the bitsize
10317 is narrower than the access size of the bitfield,
10318 we need to extract bitfields from the access. */
10319 || (volatilep && TREE_CODE (exp) == COMPONENT_REF
10320 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (exp, 1))
10321 && mode1 != BLKmode
10322 && bitsize < GET_MODE_SIZE (mode1) * BITS_PER_UNIT)
10323 /* If the field isn't aligned enough to fetch as a memref,
10324 fetch it as a bit field. */
10325 || (mode1 != BLKmode
10326 && (((TYPE_ALIGN (TREE_TYPE (tem)) < GET_MODE_ALIGNMENT (mode)
10327 || (bitpos % GET_MODE_ALIGNMENT (mode) != 0)
10328 || (MEM_P (op0)
10329 && (MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode1)
10330 || (bitpos % GET_MODE_ALIGNMENT (mode1) != 0))))
10331 && modifier != EXPAND_MEMORY
10332 && ((modifier == EXPAND_CONST_ADDRESS
10333 || modifier == EXPAND_INITIALIZER)
10334 ? STRICT_ALIGNMENT
10335 : SLOW_UNALIGNED_ACCESS (mode1, MEM_ALIGN (op0))))
10336 || (bitpos % BITS_PER_UNIT != 0)))
10337 /* If the type and the field are a constant size and the
10338 size of the type isn't the same size as the bitfield,
10339 we must use bitfield operations. */
10340 || (bitsize >= 0
10341 && TYPE_SIZE (TREE_TYPE (exp))
10342 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
10343 && 0 != compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)),
10344 bitsize)))
10346 machine_mode ext_mode = mode;
10348 if (ext_mode == BLKmode
10349 && ! (target != 0 && MEM_P (op0)
10350 && MEM_P (target)
10351 && bitpos % BITS_PER_UNIT == 0))
10352 ext_mode = mode_for_size (bitsize, MODE_INT, 1);
10354 if (ext_mode == BLKmode)
10356 if (target == 0)
10357 target = assign_temp (type, 1, 1);
10359 /* ??? Unlike the similar test a few lines below, this one is
10360 very likely obsolete. */
10361 if (bitsize == 0)
10362 return target;
10364 /* In this case, BITPOS must start at a byte boundary and
10365 TARGET, if specified, must be a MEM. */
10366 gcc_assert (MEM_P (op0)
10367 && (!target || MEM_P (target))
10368 && !(bitpos % BITS_PER_UNIT));
10370 emit_block_move (target,
10371 adjust_address (op0, VOIDmode,
10372 bitpos / BITS_PER_UNIT),
10373 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
10374 / BITS_PER_UNIT),
10375 (modifier == EXPAND_STACK_PARM
10376 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
10378 return target;
10381 /* If we have nothing to extract, the result will be 0 for targets
10382 with SHIFT_COUNT_TRUNCATED == 0 and garbage otherwise. Always
10383 return 0 for the sake of consistency, as reading a zero-sized
10384 bitfield is valid in Ada and the value is fully specified. */
10385 if (bitsize == 0)
10386 return const0_rtx;
10388 op0 = validize_mem (op0);
10390 if (MEM_P (op0) && REG_P (XEXP (op0, 0)))
10391 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
10393 op0 = extract_bit_field (op0, bitsize, bitpos, unsignedp,
10394 (modifier == EXPAND_STACK_PARM
10395 ? NULL_RTX : target),
10396 ext_mode, ext_mode);
10398 /* If the result is a record type and BITSIZE is narrower than
10399 the mode of OP0, an integral mode, and this is a big endian
10400 machine, we must put the field into the high-order bits. */
10401 if (TREE_CODE (type) == RECORD_TYPE && BYTES_BIG_ENDIAN
10402 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10403 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (op0)))
10404 op0 = expand_shift (LSHIFT_EXPR, GET_MODE (op0), op0,
10405 GET_MODE_BITSIZE (GET_MODE (op0))
10406 - bitsize, op0, 1);
10408 /* If the result type is BLKmode, store the data into a temporary
10409 of the appropriate type, but with the mode corresponding to the
10410 mode for the data we have (op0's mode). */
10411 if (mode == BLKmode)
10413 rtx new_rtx
10414 = assign_stack_temp_for_type (ext_mode,
10415 GET_MODE_BITSIZE (ext_mode),
10416 type);
10417 emit_move_insn (new_rtx, op0);
10418 op0 = copy_rtx (new_rtx);
10419 PUT_MODE (op0, BLKmode);
10422 return op0;
10425 /* If the result is BLKmode, use that to access the object
10426 now as well. */
10427 if (mode == BLKmode)
10428 mode1 = BLKmode;
10430 /* Get a reference to just this component. */
10431 if (modifier == EXPAND_CONST_ADDRESS
10432 || modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
10433 op0 = adjust_address_nv (op0, mode1, bitpos / BITS_PER_UNIT);
10434 else
10435 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
10437 if (op0 == orig_op0)
10438 op0 = copy_rtx (op0);
10440 set_mem_attributes (op0, exp, 0);
10442 if (REG_P (XEXP (op0, 0)))
10443 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
10445 /* If op0 is a temporary because the original expressions was forced
10446 to memory, clear MEM_EXPR so that the original expression cannot
10447 be marked as addressable through MEM_EXPR of the temporary. */
10448 if (clear_mem_expr)
10449 set_mem_expr (op0, NULL_TREE);
10451 MEM_VOLATILE_P (op0) |= volatilep;
10452 if (mode == mode1 || mode1 == BLKmode || mode1 == tmode
10453 || modifier == EXPAND_CONST_ADDRESS
10454 || modifier == EXPAND_INITIALIZER)
10455 return op0;
10457 if (target == 0)
10458 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
10460 convert_move (target, op0, unsignedp);
10461 return target;
10464 case OBJ_TYPE_REF:
10465 return expand_expr (OBJ_TYPE_REF_EXPR (exp), target, tmode, modifier);
10467 case CALL_EXPR:
10468 /* All valid uses of __builtin_va_arg_pack () are removed during
10469 inlining. */
10470 if (CALL_EXPR_VA_ARG_PACK (exp))
10471 error ("%Kinvalid use of %<__builtin_va_arg_pack ()%>", exp);
10473 tree fndecl = get_callee_fndecl (exp), attr;
10475 if (fndecl
10476 && (attr = lookup_attribute ("error",
10477 DECL_ATTRIBUTES (fndecl))) != NULL)
10478 error ("%Kcall to %qs declared with attribute error: %s",
10479 exp, identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 1)),
10480 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
10481 if (fndecl
10482 && (attr = lookup_attribute ("warning",
10483 DECL_ATTRIBUTES (fndecl))) != NULL)
10484 warning_at (tree_nonartificial_location (exp),
10485 0, "%Kcall to %qs declared with attribute warning: %s",
10486 exp, identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 1)),
10487 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
10489 /* Check for a built-in function. */
10490 if (fndecl && DECL_BUILT_IN (fndecl))
10492 gcc_assert (DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_FRONTEND);
10493 if (CALL_WITH_BOUNDS_P (exp))
10494 return expand_builtin_with_bounds (exp, target, subtarget,
10495 tmode, ignore);
10496 else
10497 return expand_builtin (exp, target, subtarget, tmode, ignore);
10500 return expand_call (exp, target, ignore);
10502 case VIEW_CONVERT_EXPR:
10503 op0 = NULL_RTX;
10505 /* If we are converting to BLKmode, try to avoid an intermediate
10506 temporary by fetching an inner memory reference. */
10507 if (mode == BLKmode
10508 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
10509 && TYPE_MODE (TREE_TYPE (treeop0)) != BLKmode
10510 && handled_component_p (treeop0))
10512 machine_mode mode1;
10513 HOST_WIDE_INT bitsize, bitpos;
10514 tree offset;
10515 int unsignedp;
10516 int volatilep = 0;
10517 tree tem
10518 = get_inner_reference (treeop0, &bitsize, &bitpos,
10519 &offset, &mode1, &unsignedp, &volatilep,
10520 true);
10521 rtx orig_op0;
10523 /* ??? We should work harder and deal with non-zero offsets. */
10524 if (!offset
10525 && (bitpos % BITS_PER_UNIT) == 0
10526 && bitsize >= 0
10527 && compare_tree_int (TYPE_SIZE (type), bitsize) == 0)
10529 /* See the normal_inner_ref case for the rationale. */
10530 orig_op0
10531 = expand_expr_real (tem,
10532 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
10533 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
10534 != INTEGER_CST)
10535 && modifier != EXPAND_STACK_PARM
10536 ? target : NULL_RTX),
10537 VOIDmode,
10538 modifier == EXPAND_SUM ? EXPAND_NORMAL : modifier,
10539 NULL, true);
10541 if (MEM_P (orig_op0))
10543 op0 = orig_op0;
10545 /* Get a reference to just this component. */
10546 if (modifier == EXPAND_CONST_ADDRESS
10547 || modifier == EXPAND_SUM
10548 || modifier == EXPAND_INITIALIZER)
10549 op0 = adjust_address_nv (op0, mode, bitpos / BITS_PER_UNIT);
10550 else
10551 op0 = adjust_address (op0, mode, bitpos / BITS_PER_UNIT);
10553 if (op0 == orig_op0)
10554 op0 = copy_rtx (op0);
10556 set_mem_attributes (op0, treeop0, 0);
10557 if (REG_P (XEXP (op0, 0)))
10558 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
10560 MEM_VOLATILE_P (op0) |= volatilep;
10565 if (!op0)
10566 op0 = expand_expr_real (treeop0, NULL_RTX, VOIDmode, modifier,
10567 NULL, inner_reference_p);
10569 /* If the input and output modes are both the same, we are done. */
10570 if (mode == GET_MODE (op0))
10572 /* If neither mode is BLKmode, and both modes are the same size
10573 then we can use gen_lowpart. */
10574 else if (mode != BLKmode && GET_MODE (op0) != BLKmode
10575 && (GET_MODE_PRECISION (mode)
10576 == GET_MODE_PRECISION (GET_MODE (op0)))
10577 && !COMPLEX_MODE_P (GET_MODE (op0)))
10579 if (GET_CODE (op0) == SUBREG)
10580 op0 = force_reg (GET_MODE (op0), op0);
10581 temp = gen_lowpart_common (mode, op0);
10582 if (temp)
10583 op0 = temp;
10584 else
10586 if (!REG_P (op0) && !MEM_P (op0))
10587 op0 = force_reg (GET_MODE (op0), op0);
10588 op0 = gen_lowpart (mode, op0);
10591 /* If both types are integral, convert from one mode to the other. */
10592 else if (INTEGRAL_TYPE_P (type) && INTEGRAL_TYPE_P (TREE_TYPE (treeop0)))
10593 op0 = convert_modes (mode, GET_MODE (op0), op0,
10594 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
10595 /* If the output type is a bit-field type, do an extraction. */
10596 else if (reduce_bit_field)
10597 return extract_bit_field (op0, TYPE_PRECISION (type), 0,
10598 TYPE_UNSIGNED (type), NULL_RTX,
10599 mode, mode);
10600 /* As a last resort, spill op0 to memory, and reload it in a
10601 different mode. */
10602 else if (!MEM_P (op0))
10604 /* If the operand is not a MEM, force it into memory. Since we
10605 are going to be changing the mode of the MEM, don't call
10606 force_const_mem for constants because we don't allow pool
10607 constants to change mode. */
10608 tree inner_type = TREE_TYPE (treeop0);
10610 gcc_assert (!TREE_ADDRESSABLE (exp));
10612 if (target == 0 || GET_MODE (target) != TYPE_MODE (inner_type))
10613 target
10614 = assign_stack_temp_for_type
10615 (TYPE_MODE (inner_type),
10616 GET_MODE_SIZE (TYPE_MODE (inner_type)), inner_type);
10618 emit_move_insn (target, op0);
10619 op0 = target;
10622 /* If OP0 is (now) a MEM, we need to deal with alignment issues. If the
10623 output type is such that the operand is known to be aligned, indicate
10624 that it is. Otherwise, we need only be concerned about alignment for
10625 non-BLKmode results. */
10626 if (MEM_P (op0))
10628 enum insn_code icode;
10630 if (TYPE_ALIGN_OK (type))
10632 /* ??? Copying the MEM without substantially changing it might
10633 run afoul of the code handling volatile memory references in
10634 store_expr, which assumes that TARGET is returned unmodified
10635 if it has been used. */
10636 op0 = copy_rtx (op0);
10637 set_mem_align (op0, MAX (MEM_ALIGN (op0), TYPE_ALIGN (type)));
10639 else if (modifier != EXPAND_WRITE
10640 && modifier != EXPAND_MEMORY
10641 && !inner_reference_p
10642 && mode != BLKmode
10643 && MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode))
10645 /* If the target does have special handling for unaligned
10646 loads of mode then use them. */
10647 if ((icode = optab_handler (movmisalign_optab, mode))
10648 != CODE_FOR_nothing)
10650 rtx reg, insn;
10652 op0 = adjust_address (op0, mode, 0);
10653 /* We've already validated the memory, and we're creating a
10654 new pseudo destination. The predicates really can't
10655 fail. */
10656 reg = gen_reg_rtx (mode);
10658 /* Nor can the insn generator. */
10659 insn = GEN_FCN (icode) (reg, op0);
10660 emit_insn (insn);
10661 return reg;
10663 else if (STRICT_ALIGNMENT)
10665 tree inner_type = TREE_TYPE (treeop0);
10666 HOST_WIDE_INT temp_size
10667 = MAX (int_size_in_bytes (inner_type),
10668 (HOST_WIDE_INT) GET_MODE_SIZE (mode));
10669 rtx new_rtx
10670 = assign_stack_temp_for_type (mode, temp_size, type);
10671 rtx new_with_op0_mode
10672 = adjust_address (new_rtx, GET_MODE (op0), 0);
10674 gcc_assert (!TREE_ADDRESSABLE (exp));
10676 if (GET_MODE (op0) == BLKmode)
10677 emit_block_move (new_with_op0_mode, op0,
10678 GEN_INT (GET_MODE_SIZE (mode)),
10679 (modifier == EXPAND_STACK_PARM
10680 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
10681 else
10682 emit_move_insn (new_with_op0_mode, op0);
10684 op0 = new_rtx;
10688 op0 = adjust_address (op0, mode, 0);
10691 return op0;
10693 case MODIFY_EXPR:
10695 tree lhs = treeop0;
10696 tree rhs = treeop1;
10697 gcc_assert (ignore);
10699 /* Check for |= or &= of a bitfield of size one into another bitfield
10700 of size 1. In this case, (unless we need the result of the
10701 assignment) we can do this more efficiently with a
10702 test followed by an assignment, if necessary.
10704 ??? At this point, we can't get a BIT_FIELD_REF here. But if
10705 things change so we do, this code should be enhanced to
10706 support it. */
10707 if (TREE_CODE (lhs) == COMPONENT_REF
10708 && (TREE_CODE (rhs) == BIT_IOR_EXPR
10709 || TREE_CODE (rhs) == BIT_AND_EXPR)
10710 && TREE_OPERAND (rhs, 0) == lhs
10711 && TREE_CODE (TREE_OPERAND (rhs, 1)) == COMPONENT_REF
10712 && integer_onep (DECL_SIZE (TREE_OPERAND (lhs, 1)))
10713 && integer_onep (DECL_SIZE (TREE_OPERAND (TREE_OPERAND (rhs, 1), 1))))
10715 rtx_code_label *label = gen_label_rtx ();
10716 int value = TREE_CODE (rhs) == BIT_IOR_EXPR;
10717 do_jump (TREE_OPERAND (rhs, 1),
10718 value ? label : 0,
10719 value ? 0 : label, -1);
10720 expand_assignment (lhs, build_int_cst (TREE_TYPE (rhs), value),
10721 false);
10722 do_pending_stack_adjust ();
10723 emit_label (label);
10724 return const0_rtx;
10727 expand_assignment (lhs, rhs, false);
10728 return const0_rtx;
10731 case ADDR_EXPR:
10732 return expand_expr_addr_expr (exp, target, tmode, modifier);
10734 case REALPART_EXPR:
10735 op0 = expand_normal (treeop0);
10736 return read_complex_part (op0, false);
10738 case IMAGPART_EXPR:
10739 op0 = expand_normal (treeop0);
10740 return read_complex_part (op0, true);
10742 case RETURN_EXPR:
10743 case LABEL_EXPR:
10744 case GOTO_EXPR:
10745 case SWITCH_EXPR:
10746 case ASM_EXPR:
10747 /* Expanded in cfgexpand.c. */
10748 gcc_unreachable ();
10750 case TRY_CATCH_EXPR:
10751 case CATCH_EXPR:
10752 case EH_FILTER_EXPR:
10753 case TRY_FINALLY_EXPR:
10754 /* Lowered by tree-eh.c. */
10755 gcc_unreachable ();
10757 case WITH_CLEANUP_EXPR:
10758 case CLEANUP_POINT_EXPR:
10759 case TARGET_EXPR:
10760 case CASE_LABEL_EXPR:
10761 case VA_ARG_EXPR:
10762 case BIND_EXPR:
10763 case INIT_EXPR:
10764 case CONJ_EXPR:
10765 case COMPOUND_EXPR:
10766 case PREINCREMENT_EXPR:
10767 case PREDECREMENT_EXPR:
10768 case POSTINCREMENT_EXPR:
10769 case POSTDECREMENT_EXPR:
10770 case LOOP_EXPR:
10771 case EXIT_EXPR:
10772 case COMPOUND_LITERAL_EXPR:
10773 /* Lowered by gimplify.c. */
10774 gcc_unreachable ();
10776 case FDESC_EXPR:
10777 /* Function descriptors are not valid except for as
10778 initialization constants, and should not be expanded. */
10779 gcc_unreachable ();
10781 case WITH_SIZE_EXPR:
10782 /* WITH_SIZE_EXPR expands to its first argument. The caller should
10783 have pulled out the size to use in whatever context it needed. */
10784 return expand_expr_real (treeop0, original_target, tmode,
10785 modifier, alt_rtl, inner_reference_p);
10787 default:
10788 return expand_expr_real_2 (&ops, target, tmode, modifier);
10792 /* Subroutine of above: reduce EXP to the precision of TYPE (in the
10793 signedness of TYPE), possibly returning the result in TARGET. */
10794 static rtx
10795 reduce_to_bit_field_precision (rtx exp, rtx target, tree type)
10797 HOST_WIDE_INT prec = TYPE_PRECISION (type);
10798 if (target && GET_MODE (target) != GET_MODE (exp))
10799 target = 0;
10800 /* For constant values, reduce using build_int_cst_type. */
10801 if (CONST_INT_P (exp))
10803 HOST_WIDE_INT value = INTVAL (exp);
10804 tree t = build_int_cst_type (type, value);
10805 return expand_expr (t, target, VOIDmode, EXPAND_NORMAL);
10807 else if (TYPE_UNSIGNED (type))
10809 machine_mode mode = GET_MODE (exp);
10810 rtx mask = immed_wide_int_const
10811 (wi::mask (prec, false, GET_MODE_PRECISION (mode)), mode);
10812 return expand_and (mode, exp, mask, target);
10814 else
10816 int count = GET_MODE_PRECISION (GET_MODE (exp)) - prec;
10817 exp = expand_shift (LSHIFT_EXPR, GET_MODE (exp),
10818 exp, count, target, 0);
10819 return expand_shift (RSHIFT_EXPR, GET_MODE (exp),
10820 exp, count, target, 0);
10824 /* Subroutine of above: returns 1 if OFFSET corresponds to an offset that
10825 when applied to the address of EXP produces an address known to be
10826 aligned more than BIGGEST_ALIGNMENT. */
10828 static int
10829 is_aligning_offset (const_tree offset, const_tree exp)
10831 /* Strip off any conversions. */
10832 while (CONVERT_EXPR_P (offset))
10833 offset = TREE_OPERAND (offset, 0);
10835 /* We must now have a BIT_AND_EXPR with a constant that is one less than
10836 power of 2 and which is larger than BIGGEST_ALIGNMENT. */
10837 if (TREE_CODE (offset) != BIT_AND_EXPR
10838 || !tree_fits_uhwi_p (TREE_OPERAND (offset, 1))
10839 || compare_tree_int (TREE_OPERAND (offset, 1),
10840 BIGGEST_ALIGNMENT / BITS_PER_UNIT) <= 0
10841 || exact_log2 (tree_to_uhwi (TREE_OPERAND (offset, 1)) + 1) < 0)
10842 return 0;
10844 /* Look at the first operand of BIT_AND_EXPR and strip any conversion.
10845 It must be NEGATE_EXPR. Then strip any more conversions. */
10846 offset = TREE_OPERAND (offset, 0);
10847 while (CONVERT_EXPR_P (offset))
10848 offset = TREE_OPERAND (offset, 0);
10850 if (TREE_CODE (offset) != NEGATE_EXPR)
10851 return 0;
10853 offset = TREE_OPERAND (offset, 0);
10854 while (CONVERT_EXPR_P (offset))
10855 offset = TREE_OPERAND (offset, 0);
10857 /* This must now be the address of EXP. */
10858 return TREE_CODE (offset) == ADDR_EXPR && TREE_OPERAND (offset, 0) == exp;
10861 /* Return the tree node if an ARG corresponds to a string constant or zero
10862 if it doesn't. If we return nonzero, set *PTR_OFFSET to the offset
10863 in bytes within the string that ARG is accessing. The type of the
10864 offset will be `sizetype'. */
10866 tree
10867 string_constant (tree arg, tree *ptr_offset)
10869 tree array, offset, lower_bound;
10870 STRIP_NOPS (arg);
10872 if (TREE_CODE (arg) == ADDR_EXPR)
10874 if (TREE_CODE (TREE_OPERAND (arg, 0)) == STRING_CST)
10876 *ptr_offset = size_zero_node;
10877 return TREE_OPERAND (arg, 0);
10879 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL)
10881 array = TREE_OPERAND (arg, 0);
10882 offset = size_zero_node;
10884 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == ARRAY_REF)
10886 array = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
10887 offset = TREE_OPERAND (TREE_OPERAND (arg, 0), 1);
10888 if (TREE_CODE (array) != STRING_CST
10889 && TREE_CODE (array) != VAR_DECL)
10890 return 0;
10892 /* Check if the array has a nonzero lower bound. */
10893 lower_bound = array_ref_low_bound (TREE_OPERAND (arg, 0));
10894 if (!integer_zerop (lower_bound))
10896 /* If the offset and base aren't both constants, return 0. */
10897 if (TREE_CODE (lower_bound) != INTEGER_CST)
10898 return 0;
10899 if (TREE_CODE (offset) != INTEGER_CST)
10900 return 0;
10901 /* Adjust offset by the lower bound. */
10902 offset = size_diffop (fold_convert (sizetype, offset),
10903 fold_convert (sizetype, lower_bound));
10906 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == MEM_REF)
10908 array = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
10909 offset = TREE_OPERAND (TREE_OPERAND (arg, 0), 1);
10910 if (TREE_CODE (array) != ADDR_EXPR)
10911 return 0;
10912 array = TREE_OPERAND (array, 0);
10913 if (TREE_CODE (array) != STRING_CST
10914 && TREE_CODE (array) != VAR_DECL)
10915 return 0;
10917 else
10918 return 0;
10920 else if (TREE_CODE (arg) == PLUS_EXPR || TREE_CODE (arg) == POINTER_PLUS_EXPR)
10922 tree arg0 = TREE_OPERAND (arg, 0);
10923 tree arg1 = TREE_OPERAND (arg, 1);
10925 STRIP_NOPS (arg0);
10926 STRIP_NOPS (arg1);
10928 if (TREE_CODE (arg0) == ADDR_EXPR
10929 && (TREE_CODE (TREE_OPERAND (arg0, 0)) == STRING_CST
10930 || TREE_CODE (TREE_OPERAND (arg0, 0)) == VAR_DECL))
10932 array = TREE_OPERAND (arg0, 0);
10933 offset = arg1;
10935 else if (TREE_CODE (arg1) == ADDR_EXPR
10936 && (TREE_CODE (TREE_OPERAND (arg1, 0)) == STRING_CST
10937 || TREE_CODE (TREE_OPERAND (arg1, 0)) == VAR_DECL))
10939 array = TREE_OPERAND (arg1, 0);
10940 offset = arg0;
10942 else
10943 return 0;
10945 else
10946 return 0;
10948 if (TREE_CODE (array) == STRING_CST)
10950 *ptr_offset = fold_convert (sizetype, offset);
10951 return array;
10953 else if (TREE_CODE (array) == VAR_DECL
10954 || TREE_CODE (array) == CONST_DECL)
10956 int length;
10957 tree init = ctor_for_folding (array);
10959 /* Variables initialized to string literals can be handled too. */
10960 if (init == error_mark_node
10961 || !init
10962 || TREE_CODE (init) != STRING_CST)
10963 return 0;
10965 /* Avoid const char foo[4] = "abcde"; */
10966 if (DECL_SIZE_UNIT (array) == NULL_TREE
10967 || TREE_CODE (DECL_SIZE_UNIT (array)) != INTEGER_CST
10968 || (length = TREE_STRING_LENGTH (init)) <= 0
10969 || compare_tree_int (DECL_SIZE_UNIT (array), length) < 0)
10970 return 0;
10972 /* If variable is bigger than the string literal, OFFSET must be constant
10973 and inside of the bounds of the string literal. */
10974 offset = fold_convert (sizetype, offset);
10975 if (compare_tree_int (DECL_SIZE_UNIT (array), length) > 0
10976 && (! tree_fits_uhwi_p (offset)
10977 || compare_tree_int (offset, length) >= 0))
10978 return 0;
10980 *ptr_offset = offset;
10981 return init;
10984 return 0;
10987 /* Generate code to calculate OPS, and exploded expression
10988 using a store-flag instruction and return an rtx for the result.
10989 OPS reflects a comparison.
10991 If TARGET is nonzero, store the result there if convenient.
10993 Return zero if there is no suitable set-flag instruction
10994 available on this machine.
10996 Once expand_expr has been called on the arguments of the comparison,
10997 we are committed to doing the store flag, since it is not safe to
10998 re-evaluate the expression. We emit the store-flag insn by calling
10999 emit_store_flag, but only expand the arguments if we have a reason
11000 to believe that emit_store_flag will be successful. If we think that
11001 it will, but it isn't, we have to simulate the store-flag with a
11002 set/jump/set sequence. */
11004 static rtx
11005 do_store_flag (sepops ops, rtx target, machine_mode mode)
11007 enum rtx_code code;
11008 tree arg0, arg1, type;
11009 tree tem;
11010 machine_mode operand_mode;
11011 int unsignedp;
11012 rtx op0, op1;
11013 rtx subtarget = target;
11014 location_t loc = ops->location;
11016 arg0 = ops->op0;
11017 arg1 = ops->op1;
11019 /* Don't crash if the comparison was erroneous. */
11020 if (arg0 == error_mark_node || arg1 == error_mark_node)
11021 return const0_rtx;
11023 type = TREE_TYPE (arg0);
11024 operand_mode = TYPE_MODE (type);
11025 unsignedp = TYPE_UNSIGNED (type);
11027 /* We won't bother with BLKmode store-flag operations because it would mean
11028 passing a lot of information to emit_store_flag. */
11029 if (operand_mode == BLKmode)
11030 return 0;
11032 /* We won't bother with store-flag operations involving function pointers
11033 when function pointers must be canonicalized before comparisons. */
11034 #ifdef HAVE_canonicalize_funcptr_for_compare
11035 if (HAVE_canonicalize_funcptr_for_compare
11036 && ((TREE_CODE (TREE_TYPE (arg0)) == POINTER_TYPE
11037 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg0)))
11038 == FUNCTION_TYPE))
11039 || (TREE_CODE (TREE_TYPE (arg1)) == POINTER_TYPE
11040 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg1)))
11041 == FUNCTION_TYPE))))
11042 return 0;
11043 #endif
11045 STRIP_NOPS (arg0);
11046 STRIP_NOPS (arg1);
11048 /* For vector typed comparisons emit code to generate the desired
11049 all-ones or all-zeros mask. Conveniently use the VEC_COND_EXPR
11050 expander for this. */
11051 if (TREE_CODE (ops->type) == VECTOR_TYPE)
11053 tree ifexp = build2 (ops->code, ops->type, arg0, arg1);
11054 tree if_true = constant_boolean_node (true, ops->type);
11055 tree if_false = constant_boolean_node (false, ops->type);
11056 return expand_vec_cond_expr (ops->type, ifexp, if_true, if_false, target);
11059 /* Get the rtx comparison code to use. We know that EXP is a comparison
11060 operation of some type. Some comparisons against 1 and -1 can be
11061 converted to comparisons with zero. Do so here so that the tests
11062 below will be aware that we have a comparison with zero. These
11063 tests will not catch constants in the first operand, but constants
11064 are rarely passed as the first operand. */
11066 switch (ops->code)
11068 case EQ_EXPR:
11069 code = EQ;
11070 break;
11071 case NE_EXPR:
11072 code = NE;
11073 break;
11074 case LT_EXPR:
11075 if (integer_onep (arg1))
11076 arg1 = integer_zero_node, code = unsignedp ? LEU : LE;
11077 else
11078 code = unsignedp ? LTU : LT;
11079 break;
11080 case LE_EXPR:
11081 if (! unsignedp && integer_all_onesp (arg1))
11082 arg1 = integer_zero_node, code = LT;
11083 else
11084 code = unsignedp ? LEU : LE;
11085 break;
11086 case GT_EXPR:
11087 if (! unsignedp && integer_all_onesp (arg1))
11088 arg1 = integer_zero_node, code = GE;
11089 else
11090 code = unsignedp ? GTU : GT;
11091 break;
11092 case GE_EXPR:
11093 if (integer_onep (arg1))
11094 arg1 = integer_zero_node, code = unsignedp ? GTU : GT;
11095 else
11096 code = unsignedp ? GEU : GE;
11097 break;
11099 case UNORDERED_EXPR:
11100 code = UNORDERED;
11101 break;
11102 case ORDERED_EXPR:
11103 code = ORDERED;
11104 break;
11105 case UNLT_EXPR:
11106 code = UNLT;
11107 break;
11108 case UNLE_EXPR:
11109 code = UNLE;
11110 break;
11111 case UNGT_EXPR:
11112 code = UNGT;
11113 break;
11114 case UNGE_EXPR:
11115 code = UNGE;
11116 break;
11117 case UNEQ_EXPR:
11118 code = UNEQ;
11119 break;
11120 case LTGT_EXPR:
11121 code = LTGT;
11122 break;
11124 default:
11125 gcc_unreachable ();
11128 /* Put a constant second. */
11129 if (TREE_CODE (arg0) == REAL_CST || TREE_CODE (arg0) == INTEGER_CST
11130 || TREE_CODE (arg0) == FIXED_CST)
11132 tem = arg0; arg0 = arg1; arg1 = tem;
11133 code = swap_condition (code);
11136 /* If this is an equality or inequality test of a single bit, we can
11137 do this by shifting the bit being tested to the low-order bit and
11138 masking the result with the constant 1. If the condition was EQ,
11139 we xor it with 1. This does not require an scc insn and is faster
11140 than an scc insn even if we have it.
11142 The code to make this transformation was moved into fold_single_bit_test,
11143 so we just call into the folder and expand its result. */
11145 if ((code == NE || code == EQ)
11146 && integer_zerop (arg1)
11147 && (TYPE_PRECISION (ops->type) != 1 || TYPE_UNSIGNED (ops->type)))
11149 gimple srcstmt = get_def_for_expr (arg0, BIT_AND_EXPR);
11150 if (srcstmt
11151 && integer_pow2p (gimple_assign_rhs2 (srcstmt)))
11153 enum tree_code tcode = code == NE ? NE_EXPR : EQ_EXPR;
11154 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
11155 tree temp = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg1),
11156 gimple_assign_rhs1 (srcstmt),
11157 gimple_assign_rhs2 (srcstmt));
11158 temp = fold_single_bit_test (loc, tcode, temp, arg1, type);
11159 if (temp)
11160 return expand_expr (temp, target, VOIDmode, EXPAND_NORMAL);
11164 if (! get_subtarget (target)
11165 || GET_MODE (subtarget) != operand_mode)
11166 subtarget = 0;
11168 expand_operands (arg0, arg1, subtarget, &op0, &op1, EXPAND_NORMAL);
11170 if (target == 0)
11171 target = gen_reg_rtx (mode);
11173 /* Try a cstore if possible. */
11174 return emit_store_flag_force (target, code, op0, op1,
11175 operand_mode, unsignedp,
11176 (TYPE_PRECISION (ops->type) == 1
11177 && !TYPE_UNSIGNED (ops->type)) ? -1 : 1);
11181 /* Stubs in case we haven't got a casesi insn. */
11182 #ifndef HAVE_casesi
11183 # define HAVE_casesi 0
11184 # define gen_casesi(a, b, c, d, e) (0)
11185 # define CODE_FOR_casesi CODE_FOR_nothing
11186 #endif
11188 /* Attempt to generate a casesi instruction. Returns 1 if successful,
11189 0 otherwise (i.e. if there is no casesi instruction).
11191 DEFAULT_PROBABILITY is the probability of jumping to the default
11192 label. */
11194 try_casesi (tree index_type, tree index_expr, tree minval, tree range,
11195 rtx table_label, rtx default_label, rtx fallback_label,
11196 int default_probability)
11198 struct expand_operand ops[5];
11199 machine_mode index_mode = SImode;
11200 rtx op1, op2, index;
11202 if (! HAVE_casesi)
11203 return 0;
11205 /* Convert the index to SImode. */
11206 if (GET_MODE_BITSIZE (TYPE_MODE (index_type)) > GET_MODE_BITSIZE (index_mode))
11208 machine_mode omode = TYPE_MODE (index_type);
11209 rtx rangertx = expand_normal (range);
11211 /* We must handle the endpoints in the original mode. */
11212 index_expr = build2 (MINUS_EXPR, index_type,
11213 index_expr, minval);
11214 minval = integer_zero_node;
11215 index = expand_normal (index_expr);
11216 if (default_label)
11217 emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
11218 omode, 1, default_label,
11219 default_probability);
11220 /* Now we can safely truncate. */
11221 index = convert_to_mode (index_mode, index, 0);
11223 else
11225 if (TYPE_MODE (index_type) != index_mode)
11227 index_type = lang_hooks.types.type_for_mode (index_mode, 0);
11228 index_expr = fold_convert (index_type, index_expr);
11231 index = expand_normal (index_expr);
11234 do_pending_stack_adjust ();
11236 op1 = expand_normal (minval);
11237 op2 = expand_normal (range);
11239 create_input_operand (&ops[0], index, index_mode);
11240 create_convert_operand_from_type (&ops[1], op1, TREE_TYPE (minval));
11241 create_convert_operand_from_type (&ops[2], op2, TREE_TYPE (range));
11242 create_fixed_operand (&ops[3], table_label);
11243 create_fixed_operand (&ops[4], (default_label
11244 ? default_label
11245 : fallback_label));
11246 expand_jump_insn (CODE_FOR_casesi, 5, ops);
11247 return 1;
11250 /* Attempt to generate a tablejump instruction; same concept. */
11251 #ifndef HAVE_tablejump
11252 #define HAVE_tablejump 0
11253 #define gen_tablejump(x, y) (0)
11254 #endif
11256 /* Subroutine of the next function.
11258 INDEX is the value being switched on, with the lowest value
11259 in the table already subtracted.
11260 MODE is its expected mode (needed if INDEX is constant).
11261 RANGE is the length of the jump table.
11262 TABLE_LABEL is a CODE_LABEL rtx for the table itself.
11264 DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
11265 index value is out of range.
11266 DEFAULT_PROBABILITY is the probability of jumping to
11267 the default label. */
11269 static void
11270 do_tablejump (rtx index, machine_mode mode, rtx range, rtx table_label,
11271 rtx default_label, int default_probability)
11273 rtx temp, vector;
11275 if (INTVAL (range) > cfun->cfg->max_jumptable_ents)
11276 cfun->cfg->max_jumptable_ents = INTVAL (range);
11278 /* Do an unsigned comparison (in the proper mode) between the index
11279 expression and the value which represents the length of the range.
11280 Since we just finished subtracting the lower bound of the range
11281 from the index expression, this comparison allows us to simultaneously
11282 check that the original index expression value is both greater than
11283 or equal to the minimum value of the range and less than or equal to
11284 the maximum value of the range. */
11286 if (default_label)
11287 emit_cmp_and_jump_insns (index, range, GTU, NULL_RTX, mode, 1,
11288 default_label, default_probability);
11291 /* If index is in range, it must fit in Pmode.
11292 Convert to Pmode so we can index with it. */
11293 if (mode != Pmode)
11294 index = convert_to_mode (Pmode, index, 1);
11296 /* Don't let a MEM slip through, because then INDEX that comes
11297 out of PIC_CASE_VECTOR_ADDRESS won't be a valid address,
11298 and break_out_memory_refs will go to work on it and mess it up. */
11299 #ifdef PIC_CASE_VECTOR_ADDRESS
11300 if (flag_pic && !REG_P (index))
11301 index = copy_to_mode_reg (Pmode, index);
11302 #endif
11304 /* ??? The only correct use of CASE_VECTOR_MODE is the one inside the
11305 GET_MODE_SIZE, because this indicates how large insns are. The other
11306 uses should all be Pmode, because they are addresses. This code
11307 could fail if addresses and insns are not the same size. */
11308 index = simplify_gen_binary (MULT, Pmode, index,
11309 gen_int_mode (GET_MODE_SIZE (CASE_VECTOR_MODE),
11310 Pmode));
11311 index = simplify_gen_binary (PLUS, Pmode, index,
11312 gen_rtx_LABEL_REF (Pmode, table_label));
11314 #ifdef PIC_CASE_VECTOR_ADDRESS
11315 if (flag_pic)
11316 index = PIC_CASE_VECTOR_ADDRESS (index);
11317 else
11318 #endif
11319 index = memory_address (CASE_VECTOR_MODE, index);
11320 temp = gen_reg_rtx (CASE_VECTOR_MODE);
11321 vector = gen_const_mem (CASE_VECTOR_MODE, index);
11322 convert_move (temp, vector, 0);
11324 emit_jump_insn (gen_tablejump (temp, table_label));
11326 /* If we are generating PIC code or if the table is PC-relative, the
11327 table and JUMP_INSN must be adjacent, so don't output a BARRIER. */
11328 if (! CASE_VECTOR_PC_RELATIVE && ! flag_pic)
11329 emit_barrier ();
11333 try_tablejump (tree index_type, tree index_expr, tree minval, tree range,
11334 rtx table_label, rtx default_label, int default_probability)
11336 rtx index;
11338 if (! HAVE_tablejump)
11339 return 0;
11341 index_expr = fold_build2 (MINUS_EXPR, index_type,
11342 fold_convert (index_type, index_expr),
11343 fold_convert (index_type, minval));
11344 index = expand_normal (index_expr);
11345 do_pending_stack_adjust ();
11347 do_tablejump (index, TYPE_MODE (index_type),
11348 convert_modes (TYPE_MODE (index_type),
11349 TYPE_MODE (TREE_TYPE (range)),
11350 expand_normal (range),
11351 TYPE_UNSIGNED (TREE_TYPE (range))),
11352 table_label, default_label, default_probability);
11353 return 1;
11356 /* Return a CONST_VECTOR rtx for a VECTOR_CST tree. */
11357 static rtx
11358 const_vector_from_tree (tree exp)
11360 rtvec v;
11361 unsigned i;
11362 int units;
11363 tree elt;
11364 machine_mode inner, mode;
11366 mode = TYPE_MODE (TREE_TYPE (exp));
11368 if (initializer_zerop (exp))
11369 return CONST0_RTX (mode);
11371 units = GET_MODE_NUNITS (mode);
11372 inner = GET_MODE_INNER (mode);
11374 v = rtvec_alloc (units);
11376 for (i = 0; i < VECTOR_CST_NELTS (exp); ++i)
11378 elt = VECTOR_CST_ELT (exp, i);
11380 if (TREE_CODE (elt) == REAL_CST)
11381 RTVEC_ELT (v, i) = CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (elt),
11382 inner);
11383 else if (TREE_CODE (elt) == FIXED_CST)
11384 RTVEC_ELT (v, i) = CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (elt),
11385 inner);
11386 else
11387 RTVEC_ELT (v, i) = immed_wide_int_const (elt, inner);
11390 return gen_rtx_CONST_VECTOR (mode, v);
11393 /* Build a decl for a personality function given a language prefix. */
11395 tree
11396 build_personality_function (const char *lang)
11398 const char *unwind_and_version;
11399 tree decl, type;
11400 char *name;
11402 switch (targetm_common.except_unwind_info (&global_options))
11404 case UI_NONE:
11405 return NULL;
11406 case UI_SJLJ:
11407 unwind_and_version = "_sj0";
11408 break;
11409 case UI_DWARF2:
11410 case UI_TARGET:
11411 unwind_and_version = "_v0";
11412 break;
11413 case UI_SEH:
11414 unwind_and_version = "_seh0";
11415 break;
11416 default:
11417 gcc_unreachable ();
11420 name = ACONCAT (("__", lang, "_personality", unwind_and_version, NULL));
11422 type = build_function_type_list (integer_type_node, integer_type_node,
11423 long_long_unsigned_type_node,
11424 ptr_type_node, ptr_type_node, NULL_TREE);
11425 decl = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
11426 get_identifier (name), type);
11427 DECL_ARTIFICIAL (decl) = 1;
11428 DECL_EXTERNAL (decl) = 1;
11429 TREE_PUBLIC (decl) = 1;
11431 /* Zap the nonsensical SYMBOL_REF_DECL for this. What we're left with
11432 are the flags assigned by targetm.encode_section_info. */
11433 SET_SYMBOL_REF_DECL (XEXP (DECL_RTL (decl), 0), NULL);
11435 return decl;
11438 /* Extracts the personality function of DECL and returns the corresponding
11439 libfunc. */
11442 get_personality_function (tree decl)
11444 tree personality = DECL_FUNCTION_PERSONALITY (decl);
11445 enum eh_personality_kind pk;
11447 pk = function_needs_eh_personality (DECL_STRUCT_FUNCTION (decl));
11448 if (pk == eh_personality_none)
11449 return NULL;
11451 if (!personality
11452 && pk == eh_personality_any)
11453 personality = lang_hooks.eh_personality ();
11455 if (pk == eh_personality_lang)
11456 gcc_assert (personality != NULL_TREE);
11458 return XEXP (DECL_RTL (personality), 0);
11461 /* Returns a tree for the size of EXP in bytes. */
11463 static tree
11464 tree_expr_size (const_tree exp)
11466 if (DECL_P (exp)
11467 && DECL_SIZE_UNIT (exp) != 0)
11468 return DECL_SIZE_UNIT (exp);
11469 else
11470 return size_in_bytes (TREE_TYPE (exp));
11473 /* Return an rtx for the size in bytes of the value of EXP. */
11476 expr_size (tree exp)
11478 tree size;
11480 if (TREE_CODE (exp) == WITH_SIZE_EXPR)
11481 size = TREE_OPERAND (exp, 1);
11482 else
11484 size = tree_expr_size (exp);
11485 gcc_assert (size);
11486 gcc_assert (size == SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, exp));
11489 return expand_expr (size, NULL_RTX, TYPE_MODE (sizetype), EXPAND_NORMAL);
11492 /* Return a wide integer for the size in bytes of the value of EXP, or -1
11493 if the size can vary or is larger than an integer. */
11495 static HOST_WIDE_INT
11496 int_expr_size (tree exp)
11498 tree size;
11500 if (TREE_CODE (exp) == WITH_SIZE_EXPR)
11501 size = TREE_OPERAND (exp, 1);
11502 else
11504 size = tree_expr_size (exp);
11505 gcc_assert (size);
11508 if (size == 0 || !tree_fits_shwi_p (size))
11509 return -1;
11511 return tree_to_shwi (size);
11514 #include "gt-expr.h"