re PR debug/51746 (Segfault in cselib_preserved_value_p)
[official-gcc.git] / gcc / expr.c
blob9825d126df47d8f3d5ec0a04315d172e19a0222e
1 /* Convert tree expression to rtl instructions, for GNU compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "machmode.h"
27 #include "rtl.h"
28 #include "tree.h"
29 #include "flags.h"
30 #include "regs.h"
31 #include "hard-reg-set.h"
32 #include "except.h"
33 #include "function.h"
34 #include "insn-config.h"
35 #include "insn-attr.h"
36 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
37 #include "expr.h"
38 #include "optabs.h"
39 #include "libfuncs.h"
40 #include "recog.h"
41 #include "reload.h"
42 #include "output.h"
43 #include "typeclass.h"
44 #include "toplev.h"
45 #include "langhooks.h"
46 #include "intl.h"
47 #include "tm_p.h"
48 #include "tree-iterator.h"
49 #include "tree-pass.h"
50 #include "tree-flow.h"
51 #include "target.h"
52 #include "common/common-target.h"
53 #include "timevar.h"
54 #include "df.h"
55 #include "diagnostic.h"
56 #include "ssaexpand.h"
57 #include "target-globals.h"
58 #include "params.h"
60 /* Decide whether a function's arguments should be processed
61 from first to last or from last to first.
63 They should if the stack and args grow in opposite directions, but
64 only if we have push insns. */
66 #ifdef PUSH_ROUNDING
68 #ifndef PUSH_ARGS_REVERSED
69 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
70 #define PUSH_ARGS_REVERSED /* If it's last to first. */
71 #endif
72 #endif
74 #endif
76 #ifndef STACK_PUSH_CODE
77 #ifdef STACK_GROWS_DOWNWARD
78 #define STACK_PUSH_CODE PRE_DEC
79 #else
80 #define STACK_PUSH_CODE PRE_INC
81 #endif
82 #endif
85 /* If this is nonzero, we do not bother generating VOLATILE
86 around volatile memory references, and we are willing to
87 output indirect addresses. If cse is to follow, we reject
88 indirect addresses so a useful potential cse is generated;
89 if it is used only once, instruction combination will produce
90 the same indirect address eventually. */
91 int cse_not_expected;
93 /* This structure is used by move_by_pieces to describe the move to
94 be performed. */
95 struct move_by_pieces_d
97 rtx to;
98 rtx to_addr;
99 int autinc_to;
100 int explicit_inc_to;
101 rtx from;
102 rtx from_addr;
103 int autinc_from;
104 int explicit_inc_from;
105 unsigned HOST_WIDE_INT len;
106 HOST_WIDE_INT offset;
107 int reverse;
110 /* This structure is used by store_by_pieces to describe the clear to
111 be performed. */
113 struct store_by_pieces_d
115 rtx to;
116 rtx to_addr;
117 int autinc_to;
118 int explicit_inc_to;
119 unsigned HOST_WIDE_INT len;
120 HOST_WIDE_INT offset;
121 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode);
122 void *constfundata;
123 int reverse;
126 static void move_by_pieces_1 (rtx (*) (rtx, ...), enum machine_mode,
127 struct move_by_pieces_d *);
128 static bool block_move_libcall_safe_for_call_parm (void);
129 static bool emit_block_move_via_movmem (rtx, rtx, rtx, unsigned, unsigned, HOST_WIDE_INT);
130 static tree emit_block_move_libcall_fn (int);
131 static void emit_block_move_via_loop (rtx, rtx, rtx, unsigned);
132 static rtx clear_by_pieces_1 (void *, HOST_WIDE_INT, enum machine_mode);
133 static void clear_by_pieces (rtx, unsigned HOST_WIDE_INT, unsigned int);
134 static void store_by_pieces_1 (struct store_by_pieces_d *, unsigned int);
135 static void store_by_pieces_2 (rtx (*) (rtx, ...), enum machine_mode,
136 struct store_by_pieces_d *);
137 static tree clear_storage_libcall_fn (int);
138 static rtx compress_float_constant (rtx, rtx);
139 static rtx get_subtarget (rtx);
140 static void store_constructor_field (rtx, unsigned HOST_WIDE_INT,
141 HOST_WIDE_INT, enum machine_mode,
142 tree, tree, int, alias_set_type);
143 static void store_constructor (tree, rtx, int, HOST_WIDE_INT);
144 static rtx store_field (rtx, HOST_WIDE_INT, HOST_WIDE_INT,
145 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT,
146 enum machine_mode,
147 tree, tree, alias_set_type, bool);
149 static unsigned HOST_WIDE_INT highest_pow2_factor_for_target (const_tree, const_tree);
151 static int is_aligning_offset (const_tree, const_tree);
152 static void expand_operands (tree, tree, rtx, rtx*, rtx*,
153 enum expand_modifier);
154 static rtx reduce_to_bit_field_precision (rtx, rtx, tree);
155 static rtx do_store_flag (sepops, rtx, enum machine_mode);
156 #ifdef PUSH_ROUNDING
157 static void emit_single_push_insn (enum machine_mode, rtx, tree);
158 #endif
159 static void do_tablejump (rtx, enum machine_mode, rtx, rtx, rtx);
160 static rtx const_vector_from_tree (tree);
161 static void write_complex_part (rtx, rtx, bool);
163 /* This macro is used to determine whether move_by_pieces should be called
164 to perform a structure copy. */
165 #ifndef MOVE_BY_PIECES_P
166 #define MOVE_BY_PIECES_P(SIZE, ALIGN) \
167 (move_by_pieces_ninsns (SIZE, ALIGN, MOVE_MAX_PIECES + 1) \
168 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
169 #endif
171 /* This macro is used to determine whether clear_by_pieces should be
172 called to clear storage. */
173 #ifndef CLEAR_BY_PIECES_P
174 #define CLEAR_BY_PIECES_P(SIZE, ALIGN) \
175 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
176 < (unsigned int) CLEAR_RATIO (optimize_insn_for_speed_p ()))
177 #endif
179 /* This macro is used to determine whether store_by_pieces should be
180 called to "memset" storage with byte values other than zero. */
181 #ifndef SET_BY_PIECES_P
182 #define SET_BY_PIECES_P(SIZE, ALIGN) \
183 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
184 < (unsigned int) SET_RATIO (optimize_insn_for_speed_p ()))
185 #endif
187 /* This macro is used to determine whether store_by_pieces should be
188 called to "memcpy" storage when the source is a constant string. */
189 #ifndef STORE_BY_PIECES_P
190 #define STORE_BY_PIECES_P(SIZE, ALIGN) \
191 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
192 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
193 #endif
195 /* SLOW_UNALIGNED_ACCESS is nonzero if unaligned accesses are very slow. */
197 #ifndef SLOW_UNALIGNED_ACCESS
198 #define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT
199 #endif
201 /* This is run to set up which modes can be used
202 directly in memory and to initialize the block move optab. It is run
203 at the beginning of compilation and when the target is reinitialized. */
205 void
206 init_expr_target (void)
208 rtx insn, pat;
209 enum machine_mode mode;
210 int num_clobbers;
211 rtx mem, mem1;
212 rtx reg;
214 /* Try indexing by frame ptr and try by stack ptr.
215 It is known that on the Convex the stack ptr isn't a valid index.
216 With luck, one or the other is valid on any machine. */
217 mem = gen_rtx_MEM (VOIDmode, stack_pointer_rtx);
218 mem1 = gen_rtx_MEM (VOIDmode, frame_pointer_rtx);
220 /* A scratch register we can modify in-place below to avoid
221 useless RTL allocations. */
222 reg = gen_rtx_REG (VOIDmode, -1);
224 insn = rtx_alloc (INSN);
225 pat = gen_rtx_SET (VOIDmode, NULL_RTX, NULL_RTX);
226 PATTERN (insn) = pat;
228 for (mode = VOIDmode; (int) mode < NUM_MACHINE_MODES;
229 mode = (enum machine_mode) ((int) mode + 1))
231 int regno;
233 direct_load[(int) mode] = direct_store[(int) mode] = 0;
234 PUT_MODE (mem, mode);
235 PUT_MODE (mem1, mode);
236 PUT_MODE (reg, mode);
238 /* See if there is some register that can be used in this mode and
239 directly loaded or stored from memory. */
241 if (mode != VOIDmode && mode != BLKmode)
242 for (regno = 0; regno < FIRST_PSEUDO_REGISTER
243 && (direct_load[(int) mode] == 0 || direct_store[(int) mode] == 0);
244 regno++)
246 if (! HARD_REGNO_MODE_OK (regno, mode))
247 continue;
249 SET_REGNO (reg, regno);
251 SET_SRC (pat) = mem;
252 SET_DEST (pat) = reg;
253 if (recog (pat, insn, &num_clobbers) >= 0)
254 direct_load[(int) mode] = 1;
256 SET_SRC (pat) = mem1;
257 SET_DEST (pat) = reg;
258 if (recog (pat, insn, &num_clobbers) >= 0)
259 direct_load[(int) mode] = 1;
261 SET_SRC (pat) = reg;
262 SET_DEST (pat) = mem;
263 if (recog (pat, insn, &num_clobbers) >= 0)
264 direct_store[(int) mode] = 1;
266 SET_SRC (pat) = reg;
267 SET_DEST (pat) = mem1;
268 if (recog (pat, insn, &num_clobbers) >= 0)
269 direct_store[(int) mode] = 1;
273 mem = gen_rtx_MEM (VOIDmode, gen_rtx_raw_REG (Pmode, 10000));
275 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
276 mode = GET_MODE_WIDER_MODE (mode))
278 enum machine_mode srcmode;
279 for (srcmode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); srcmode != mode;
280 srcmode = GET_MODE_WIDER_MODE (srcmode))
282 enum insn_code ic;
284 ic = can_extend_p (mode, srcmode, 0);
285 if (ic == CODE_FOR_nothing)
286 continue;
288 PUT_MODE (mem, srcmode);
290 if (insn_operand_matches (ic, 1, mem))
291 float_extend_from_mem[mode][srcmode] = true;
296 /* This is run at the start of compiling a function. */
298 void
299 init_expr (void)
301 memset (&crtl->expr, 0, sizeof (crtl->expr));
304 /* Copy data from FROM to TO, where the machine modes are not the same.
305 Both modes may be integer, or both may be floating, or both may be
306 fixed-point.
307 UNSIGNEDP should be nonzero if FROM is an unsigned type.
308 This causes zero-extension instead of sign-extension. */
310 void
311 convert_move (rtx to, rtx from, int unsignedp)
313 enum machine_mode to_mode = GET_MODE (to);
314 enum machine_mode from_mode = GET_MODE (from);
315 int to_real = SCALAR_FLOAT_MODE_P (to_mode);
316 int from_real = SCALAR_FLOAT_MODE_P (from_mode);
317 enum insn_code code;
318 rtx libcall;
320 /* rtx code for making an equivalent value. */
321 enum rtx_code equiv_code = (unsignedp < 0 ? UNKNOWN
322 : (unsignedp ? ZERO_EXTEND : SIGN_EXTEND));
325 gcc_assert (to_real == from_real);
326 gcc_assert (to_mode != BLKmode);
327 gcc_assert (from_mode != BLKmode);
329 /* If the source and destination are already the same, then there's
330 nothing to do. */
331 if (to == from)
332 return;
334 /* If FROM is a SUBREG that indicates that we have already done at least
335 the required extension, strip it. We don't handle such SUBREGs as
336 TO here. */
338 if (GET_CODE (from) == SUBREG && SUBREG_PROMOTED_VAR_P (from)
339 && (GET_MODE_PRECISION (GET_MODE (SUBREG_REG (from)))
340 >= GET_MODE_PRECISION (to_mode))
341 && SUBREG_PROMOTED_UNSIGNED_P (from) == unsignedp)
342 from = gen_lowpart (to_mode, from), from_mode = to_mode;
344 gcc_assert (GET_CODE (to) != SUBREG || !SUBREG_PROMOTED_VAR_P (to));
346 if (to_mode == from_mode
347 || (from_mode == VOIDmode && CONSTANT_P (from)))
349 emit_move_insn (to, from);
350 return;
353 if (VECTOR_MODE_P (to_mode) || VECTOR_MODE_P (from_mode))
355 gcc_assert (GET_MODE_BITSIZE (from_mode) == GET_MODE_BITSIZE (to_mode));
357 if (VECTOR_MODE_P (to_mode))
358 from = simplify_gen_subreg (to_mode, from, GET_MODE (from), 0);
359 else
360 to = simplify_gen_subreg (from_mode, to, GET_MODE (to), 0);
362 emit_move_insn (to, from);
363 return;
366 if (GET_CODE (to) == CONCAT && GET_CODE (from) == CONCAT)
368 convert_move (XEXP (to, 0), XEXP (from, 0), unsignedp);
369 convert_move (XEXP (to, 1), XEXP (from, 1), unsignedp);
370 return;
373 if (to_real)
375 rtx value, insns;
376 convert_optab tab;
378 gcc_assert ((GET_MODE_PRECISION (from_mode)
379 != GET_MODE_PRECISION (to_mode))
380 || (DECIMAL_FLOAT_MODE_P (from_mode)
381 != DECIMAL_FLOAT_MODE_P (to_mode)));
383 if (GET_MODE_PRECISION (from_mode) == GET_MODE_PRECISION (to_mode))
384 /* Conversion between decimal float and binary float, same size. */
385 tab = DECIMAL_FLOAT_MODE_P (from_mode) ? trunc_optab : sext_optab;
386 else if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode))
387 tab = sext_optab;
388 else
389 tab = trunc_optab;
391 /* Try converting directly if the insn is supported. */
393 code = convert_optab_handler (tab, to_mode, from_mode);
394 if (code != CODE_FOR_nothing)
396 emit_unop_insn (code, to, from,
397 tab == sext_optab ? FLOAT_EXTEND : FLOAT_TRUNCATE);
398 return;
401 /* Otherwise use a libcall. */
402 libcall = convert_optab_libfunc (tab, to_mode, from_mode);
404 /* Is this conversion implemented yet? */
405 gcc_assert (libcall);
407 start_sequence ();
408 value = emit_library_call_value (libcall, NULL_RTX, LCT_CONST, to_mode,
409 1, from, from_mode);
410 insns = get_insns ();
411 end_sequence ();
412 emit_libcall_block (insns, to, value,
413 tab == trunc_optab ? gen_rtx_FLOAT_TRUNCATE (to_mode,
414 from)
415 : gen_rtx_FLOAT_EXTEND (to_mode, from));
416 return;
419 /* Handle pointer conversion. */ /* SPEE 900220. */
420 /* Targets are expected to provide conversion insns between PxImode and
421 xImode for all MODE_PARTIAL_INT modes they use, but no others. */
422 if (GET_MODE_CLASS (to_mode) == MODE_PARTIAL_INT)
424 enum machine_mode full_mode
425 = smallest_mode_for_size (GET_MODE_BITSIZE (to_mode), MODE_INT);
427 gcc_assert (convert_optab_handler (trunc_optab, to_mode, full_mode)
428 != CODE_FOR_nothing);
430 if (full_mode != from_mode)
431 from = convert_to_mode (full_mode, from, unsignedp);
432 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, full_mode),
433 to, from, UNKNOWN);
434 return;
436 if (GET_MODE_CLASS (from_mode) == MODE_PARTIAL_INT)
438 rtx new_from;
439 enum machine_mode full_mode
440 = smallest_mode_for_size (GET_MODE_BITSIZE (from_mode), MODE_INT);
442 gcc_assert (convert_optab_handler (sext_optab, full_mode, from_mode)
443 != CODE_FOR_nothing);
445 if (to_mode == full_mode)
447 emit_unop_insn (convert_optab_handler (sext_optab, full_mode,
448 from_mode),
449 to, from, UNKNOWN);
450 return;
453 new_from = gen_reg_rtx (full_mode);
454 emit_unop_insn (convert_optab_handler (sext_optab, full_mode, from_mode),
455 new_from, from, UNKNOWN);
457 /* else proceed to integer conversions below. */
458 from_mode = full_mode;
459 from = new_from;
462 /* Make sure both are fixed-point modes or both are not. */
463 gcc_assert (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode) ==
464 ALL_SCALAR_FIXED_POINT_MODE_P (to_mode));
465 if (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode))
467 /* If we widen from_mode to to_mode and they are in the same class,
468 we won't saturate the result.
469 Otherwise, always saturate the result to play safe. */
470 if (GET_MODE_CLASS (from_mode) == GET_MODE_CLASS (to_mode)
471 && GET_MODE_SIZE (from_mode) < GET_MODE_SIZE (to_mode))
472 expand_fixed_convert (to, from, 0, 0);
473 else
474 expand_fixed_convert (to, from, 0, 1);
475 return;
478 /* Now both modes are integers. */
480 /* Handle expanding beyond a word. */
481 if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode)
482 && GET_MODE_PRECISION (to_mode) > BITS_PER_WORD)
484 rtx insns;
485 rtx lowpart;
486 rtx fill_value;
487 rtx lowfrom;
488 int i;
489 enum machine_mode lowpart_mode;
490 int nwords = CEIL (GET_MODE_SIZE (to_mode), UNITS_PER_WORD);
492 /* Try converting directly if the insn is supported. */
493 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
494 != CODE_FOR_nothing)
496 /* If FROM is a SUBREG, put it into a register. Do this
497 so that we always generate the same set of insns for
498 better cse'ing; if an intermediate assignment occurred,
499 we won't be doing the operation directly on the SUBREG. */
500 if (optimize > 0 && GET_CODE (from) == SUBREG)
501 from = force_reg (from_mode, from);
502 emit_unop_insn (code, to, from, equiv_code);
503 return;
505 /* Next, try converting via full word. */
506 else if (GET_MODE_PRECISION (from_mode) < BITS_PER_WORD
507 && ((code = can_extend_p (to_mode, word_mode, unsignedp))
508 != CODE_FOR_nothing))
510 rtx word_to = gen_reg_rtx (word_mode);
511 if (REG_P (to))
513 if (reg_overlap_mentioned_p (to, from))
514 from = force_reg (from_mode, from);
515 emit_clobber (to);
517 convert_move (word_to, from, unsignedp);
518 emit_unop_insn (code, to, word_to, equiv_code);
519 return;
522 /* No special multiword conversion insn; do it by hand. */
523 start_sequence ();
525 /* Since we will turn this into a no conflict block, we must ensure
526 that the source does not overlap the target. */
528 if (reg_overlap_mentioned_p (to, from))
529 from = force_reg (from_mode, from);
531 /* Get a copy of FROM widened to a word, if necessary. */
532 if (GET_MODE_PRECISION (from_mode) < BITS_PER_WORD)
533 lowpart_mode = word_mode;
534 else
535 lowpart_mode = from_mode;
537 lowfrom = convert_to_mode (lowpart_mode, from, unsignedp);
539 lowpart = gen_lowpart (lowpart_mode, to);
540 emit_move_insn (lowpart, lowfrom);
542 /* Compute the value to put in each remaining word. */
543 if (unsignedp)
544 fill_value = const0_rtx;
545 else
546 fill_value = emit_store_flag (gen_reg_rtx (word_mode),
547 LT, lowfrom, const0_rtx,
548 VOIDmode, 0, -1);
550 /* Fill the remaining words. */
551 for (i = GET_MODE_SIZE (lowpart_mode) / UNITS_PER_WORD; i < nwords; i++)
553 int index = (WORDS_BIG_ENDIAN ? nwords - i - 1 : i);
554 rtx subword = operand_subword (to, index, 1, to_mode);
556 gcc_assert (subword);
558 if (fill_value != subword)
559 emit_move_insn (subword, fill_value);
562 insns = get_insns ();
563 end_sequence ();
565 emit_insn (insns);
566 return;
569 /* Truncating multi-word to a word or less. */
570 if (GET_MODE_PRECISION (from_mode) > BITS_PER_WORD
571 && GET_MODE_PRECISION (to_mode) <= BITS_PER_WORD)
573 if (!((MEM_P (from)
574 && ! MEM_VOLATILE_P (from)
575 && direct_load[(int) to_mode]
576 && ! mode_dependent_address_p (XEXP (from, 0)))
577 || REG_P (from)
578 || GET_CODE (from) == SUBREG))
579 from = force_reg (from_mode, from);
580 convert_move (to, gen_lowpart (word_mode, from), 0);
581 return;
584 /* Now follow all the conversions between integers
585 no more than a word long. */
587 /* For truncation, usually we can just refer to FROM in a narrower mode. */
588 if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode)
589 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode, from_mode))
591 if (!((MEM_P (from)
592 && ! MEM_VOLATILE_P (from)
593 && direct_load[(int) to_mode]
594 && ! mode_dependent_address_p (XEXP (from, 0)))
595 || REG_P (from)
596 || GET_CODE (from) == SUBREG))
597 from = force_reg (from_mode, from);
598 if (REG_P (from) && REGNO (from) < FIRST_PSEUDO_REGISTER
599 && ! HARD_REGNO_MODE_OK (REGNO (from), to_mode))
600 from = copy_to_reg (from);
601 emit_move_insn (to, gen_lowpart (to_mode, from));
602 return;
605 /* Handle extension. */
606 if (GET_MODE_PRECISION (to_mode) > GET_MODE_PRECISION (from_mode))
608 /* Convert directly if that works. */
609 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
610 != CODE_FOR_nothing)
612 emit_unop_insn (code, to, from, equiv_code);
613 return;
615 else
617 enum machine_mode intermediate;
618 rtx tmp;
619 int shift_amount;
621 /* Search for a mode to convert via. */
622 for (intermediate = from_mode; intermediate != VOIDmode;
623 intermediate = GET_MODE_WIDER_MODE (intermediate))
624 if (((can_extend_p (to_mode, intermediate, unsignedp)
625 != CODE_FOR_nothing)
626 || (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (intermediate)
627 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode, intermediate)))
628 && (can_extend_p (intermediate, from_mode, unsignedp)
629 != CODE_FOR_nothing))
631 convert_move (to, convert_to_mode (intermediate, from,
632 unsignedp), unsignedp);
633 return;
636 /* No suitable intermediate mode.
637 Generate what we need with shifts. */
638 shift_amount = (GET_MODE_PRECISION (to_mode)
639 - GET_MODE_PRECISION (from_mode));
640 from = gen_lowpart (to_mode, force_reg (from_mode, from));
641 tmp = expand_shift (LSHIFT_EXPR, to_mode, from, shift_amount,
642 to, unsignedp);
643 tmp = expand_shift (RSHIFT_EXPR, to_mode, tmp, shift_amount,
644 to, unsignedp);
645 if (tmp != to)
646 emit_move_insn (to, tmp);
647 return;
651 /* Support special truncate insns for certain modes. */
652 if (convert_optab_handler (trunc_optab, to_mode,
653 from_mode) != CODE_FOR_nothing)
655 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, from_mode),
656 to, from, UNKNOWN);
657 return;
660 /* Handle truncation of volatile memrefs, and so on;
661 the things that couldn't be truncated directly,
662 and for which there was no special instruction.
664 ??? Code above formerly short-circuited this, for most integer
665 mode pairs, with a force_reg in from_mode followed by a recursive
666 call to this routine. Appears always to have been wrong. */
667 if (GET_MODE_PRECISION (to_mode) < GET_MODE_PRECISION (from_mode))
669 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from));
670 emit_move_insn (to, temp);
671 return;
674 /* Mode combination is not recognized. */
675 gcc_unreachable ();
678 /* Return an rtx for a value that would result
679 from converting X to mode MODE.
680 Both X and MODE may be floating, or both integer.
681 UNSIGNEDP is nonzero if X is an unsigned value.
682 This can be done by referring to a part of X in place
683 or by copying to a new temporary with conversion. */
686 convert_to_mode (enum machine_mode mode, rtx x, int unsignedp)
688 return convert_modes (mode, VOIDmode, x, unsignedp);
691 /* Return an rtx for a value that would result
692 from converting X from mode OLDMODE to mode MODE.
693 Both modes may be floating, or both integer.
694 UNSIGNEDP is nonzero if X is an unsigned value.
696 This can be done by referring to a part of X in place
697 or by copying to a new temporary with conversion.
699 You can give VOIDmode for OLDMODE, if you are sure X has a nonvoid mode. */
702 convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int unsignedp)
704 rtx temp;
706 /* If FROM is a SUBREG that indicates that we have already done at least
707 the required extension, strip it. */
709 if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
710 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) >= GET_MODE_SIZE (mode)
711 && SUBREG_PROMOTED_UNSIGNED_P (x) == unsignedp)
712 x = gen_lowpart (mode, x);
714 if (GET_MODE (x) != VOIDmode)
715 oldmode = GET_MODE (x);
717 if (mode == oldmode)
718 return x;
720 /* There is one case that we must handle specially: If we are converting
721 a CONST_INT into a mode whose size is twice HOST_BITS_PER_WIDE_INT and
722 we are to interpret the constant as unsigned, gen_lowpart will do
723 the wrong if the constant appears negative. What we want to do is
724 make the high-order word of the constant zero, not all ones. */
726 if (unsignedp && GET_MODE_CLASS (mode) == MODE_INT
727 && GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT
728 && CONST_INT_P (x) && INTVAL (x) < 0)
730 double_int val = uhwi_to_double_int (INTVAL (x));
732 /* We need to zero extend VAL. */
733 if (oldmode != VOIDmode)
734 val = double_int_zext (val, GET_MODE_BITSIZE (oldmode));
736 return immed_double_int_const (val, mode);
739 /* We can do this with a gen_lowpart if both desired and current modes
740 are integer, and this is either a constant integer, a register, or a
741 non-volatile MEM. Except for the constant case where MODE is no
742 wider than HOST_BITS_PER_WIDE_INT, we must be narrowing the operand. */
744 if ((CONST_INT_P (x)
745 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT)
746 || (GET_MODE_CLASS (mode) == MODE_INT
747 && GET_MODE_CLASS (oldmode) == MODE_INT
748 && (GET_CODE (x) == CONST_DOUBLE
749 || (GET_MODE_PRECISION (mode) <= GET_MODE_PRECISION (oldmode)
750 && ((MEM_P (x) && ! MEM_VOLATILE_P (x)
751 && direct_load[(int) mode])
752 || (REG_P (x)
753 && (! HARD_REGISTER_P (x)
754 || HARD_REGNO_MODE_OK (REGNO (x), mode))
755 && TRULY_NOOP_TRUNCATION_MODES_P (mode,
756 GET_MODE (x))))))))
758 /* ?? If we don't know OLDMODE, we have to assume here that
759 X does not need sign- or zero-extension. This may not be
760 the case, but it's the best we can do. */
761 if (CONST_INT_P (x) && oldmode != VOIDmode
762 && GET_MODE_PRECISION (mode) > GET_MODE_PRECISION (oldmode))
764 HOST_WIDE_INT val = INTVAL (x);
766 /* We must sign or zero-extend in this case. Start by
767 zero-extending, then sign extend if we need to. */
768 val &= GET_MODE_MASK (oldmode);
769 if (! unsignedp
770 && val_signbit_known_set_p (oldmode, val))
771 val |= ~GET_MODE_MASK (oldmode);
773 return gen_int_mode (val, mode);
776 return gen_lowpart (mode, x);
779 /* Converting from integer constant into mode is always equivalent to an
780 subreg operation. */
781 if (VECTOR_MODE_P (mode) && GET_MODE (x) == VOIDmode)
783 gcc_assert (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (oldmode));
784 return simplify_gen_subreg (mode, x, oldmode, 0);
787 temp = gen_reg_rtx (mode);
788 convert_move (temp, x, unsignedp);
789 return temp;
792 /* Return the largest alignment we can use for doing a move (or store)
793 of MAX_PIECES. ALIGN is the largest alignment we could use. */
795 static unsigned int
796 alignment_for_piecewise_move (unsigned int max_pieces, unsigned int align)
798 enum machine_mode tmode;
800 tmode = mode_for_size (max_pieces * BITS_PER_UNIT, MODE_INT, 1);
801 if (align >= GET_MODE_ALIGNMENT (tmode))
802 align = GET_MODE_ALIGNMENT (tmode);
803 else
805 enum machine_mode tmode, xmode;
807 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
808 tmode != VOIDmode;
809 xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
810 if (GET_MODE_SIZE (tmode) > max_pieces
811 || SLOW_UNALIGNED_ACCESS (tmode, align))
812 break;
814 align = MAX (align, GET_MODE_ALIGNMENT (xmode));
817 return align;
820 /* Return the widest integer mode no wider than SIZE. If no such mode
821 can be found, return VOIDmode. */
823 static enum machine_mode
824 widest_int_mode_for_size (unsigned int size)
826 enum machine_mode tmode, mode = VOIDmode;
828 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
829 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
830 if (GET_MODE_SIZE (tmode) < size)
831 mode = tmode;
833 return mode;
836 /* STORE_MAX_PIECES is the number of bytes at a time that we can
837 store efficiently. Due to internal GCC limitations, this is
838 MOVE_MAX_PIECES limited by the number of bytes GCC can represent
839 for an immediate constant. */
841 #define STORE_MAX_PIECES MIN (MOVE_MAX_PIECES, 2 * sizeof (HOST_WIDE_INT))
843 /* Determine whether the LEN bytes can be moved by using several move
844 instructions. Return nonzero if a call to move_by_pieces should
845 succeed. */
848 can_move_by_pieces (unsigned HOST_WIDE_INT len,
849 unsigned int align ATTRIBUTE_UNUSED)
851 return MOVE_BY_PIECES_P (len, align);
854 /* Generate several move instructions to copy LEN bytes from block FROM to
855 block TO. (These are MEM rtx's with BLKmode).
857 If PUSH_ROUNDING is defined and TO is NULL, emit_single_push_insn is
858 used to push FROM to the stack.
860 ALIGN is maximum stack alignment we can assume.
862 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
863 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
864 stpcpy. */
867 move_by_pieces (rtx to, rtx from, unsigned HOST_WIDE_INT len,
868 unsigned int align, int endp)
870 struct move_by_pieces_d data;
871 enum machine_mode to_addr_mode, from_addr_mode
872 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (from));
873 rtx to_addr, from_addr = XEXP (from, 0);
874 unsigned int max_size = MOVE_MAX_PIECES + 1;
875 enum insn_code icode;
877 align = MIN (to ? MEM_ALIGN (to) : align, MEM_ALIGN (from));
879 data.offset = 0;
880 data.from_addr = from_addr;
881 if (to)
883 to_addr_mode = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to));
884 to_addr = XEXP (to, 0);
885 data.to = to;
886 data.autinc_to
887 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
888 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
889 data.reverse
890 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
892 else
894 to_addr_mode = VOIDmode;
895 to_addr = NULL_RTX;
896 data.to = NULL_RTX;
897 data.autinc_to = 1;
898 #ifdef STACK_GROWS_DOWNWARD
899 data.reverse = 1;
900 #else
901 data.reverse = 0;
902 #endif
904 data.to_addr = to_addr;
905 data.from = from;
906 data.autinc_from
907 = (GET_CODE (from_addr) == PRE_INC || GET_CODE (from_addr) == PRE_DEC
908 || GET_CODE (from_addr) == POST_INC
909 || GET_CODE (from_addr) == POST_DEC);
911 data.explicit_inc_from = 0;
912 data.explicit_inc_to = 0;
913 if (data.reverse) data.offset = len;
914 data.len = len;
916 /* If copying requires more than two move insns,
917 copy addresses to registers (to make displacements shorter)
918 and use post-increment if available. */
919 if (!(data.autinc_from && data.autinc_to)
920 && move_by_pieces_ninsns (len, align, max_size) > 2)
922 /* Find the mode of the largest move...
923 MODE might not be used depending on the definitions of the
924 USE_* macros below. */
925 enum machine_mode mode ATTRIBUTE_UNUSED
926 = widest_int_mode_for_size (max_size);
928 if (USE_LOAD_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_from)
930 data.from_addr = copy_to_mode_reg (from_addr_mode,
931 plus_constant (from_addr, len));
932 data.autinc_from = 1;
933 data.explicit_inc_from = -1;
935 if (USE_LOAD_POST_INCREMENT (mode) && ! data.autinc_from)
937 data.from_addr = copy_to_mode_reg (from_addr_mode, from_addr);
938 data.autinc_from = 1;
939 data.explicit_inc_from = 1;
941 if (!data.autinc_from && CONSTANT_P (from_addr))
942 data.from_addr = copy_to_mode_reg (from_addr_mode, from_addr);
943 if (USE_STORE_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_to)
945 data.to_addr = copy_to_mode_reg (to_addr_mode,
946 plus_constant (to_addr, len));
947 data.autinc_to = 1;
948 data.explicit_inc_to = -1;
950 if (USE_STORE_POST_INCREMENT (mode) && ! data.reverse && ! data.autinc_to)
952 data.to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
953 data.autinc_to = 1;
954 data.explicit_inc_to = 1;
956 if (!data.autinc_to && CONSTANT_P (to_addr))
957 data.to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
960 align = alignment_for_piecewise_move (MOVE_MAX_PIECES, align);
962 /* First move what we can in the largest integer mode, then go to
963 successively smaller modes. */
965 while (max_size > 1)
967 enum machine_mode mode = widest_int_mode_for_size (max_size);
969 if (mode == VOIDmode)
970 break;
972 icode = optab_handler (mov_optab, mode);
973 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
974 move_by_pieces_1 (GEN_FCN (icode), mode, &data);
976 max_size = GET_MODE_SIZE (mode);
979 /* The code above should have handled everything. */
980 gcc_assert (!data.len);
982 if (endp)
984 rtx to1;
986 gcc_assert (!data.reverse);
987 if (data.autinc_to)
989 if (endp == 2)
991 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
992 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
993 else
994 data.to_addr = copy_to_mode_reg (to_addr_mode,
995 plus_constant (data.to_addr,
996 -1));
998 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
999 data.offset);
1001 else
1003 if (endp == 2)
1004 --data.offset;
1005 to1 = adjust_address (data.to, QImode, data.offset);
1007 return to1;
1009 else
1010 return data.to;
1013 /* Return number of insns required to move L bytes by pieces.
1014 ALIGN (in bits) is maximum alignment we can assume. */
1016 unsigned HOST_WIDE_INT
1017 move_by_pieces_ninsns (unsigned HOST_WIDE_INT l, unsigned int align,
1018 unsigned int max_size)
1020 unsigned HOST_WIDE_INT n_insns = 0;
1022 align = alignment_for_piecewise_move (MOVE_MAX_PIECES, align);
1024 while (max_size > 1)
1026 enum machine_mode mode;
1027 enum insn_code icode;
1029 mode = widest_int_mode_for_size (max_size);
1031 if (mode == VOIDmode)
1032 break;
1034 icode = optab_handler (mov_optab, mode);
1035 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
1036 n_insns += l / GET_MODE_SIZE (mode), l %= GET_MODE_SIZE (mode);
1038 max_size = GET_MODE_SIZE (mode);
1041 gcc_assert (!l);
1042 return n_insns;
1045 /* Subroutine of move_by_pieces. Move as many bytes as appropriate
1046 with move instructions for mode MODE. GENFUN is the gen_... function
1047 to make a move insn for that mode. DATA has all the other info. */
1049 static void
1050 move_by_pieces_1 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
1051 struct move_by_pieces_d *data)
1053 unsigned int size = GET_MODE_SIZE (mode);
1054 rtx to1 = NULL_RTX, from1;
1056 while (data->len >= size)
1058 if (data->reverse)
1059 data->offset -= size;
1061 if (data->to)
1063 if (data->autinc_to)
1064 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
1065 data->offset);
1066 else
1067 to1 = adjust_address (data->to, mode, data->offset);
1070 if (data->autinc_from)
1071 from1 = adjust_automodify_address (data->from, mode, data->from_addr,
1072 data->offset);
1073 else
1074 from1 = adjust_address (data->from, mode, data->offset);
1076 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
1077 emit_insn (gen_add2_insn (data->to_addr,
1078 GEN_INT (-(HOST_WIDE_INT)size)));
1079 if (HAVE_PRE_DECREMENT && data->explicit_inc_from < 0)
1080 emit_insn (gen_add2_insn (data->from_addr,
1081 GEN_INT (-(HOST_WIDE_INT)size)));
1083 if (data->to)
1084 emit_insn ((*genfun) (to1, from1));
1085 else
1087 #ifdef PUSH_ROUNDING
1088 emit_single_push_insn (mode, from1, NULL);
1089 #else
1090 gcc_unreachable ();
1091 #endif
1094 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
1095 emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
1096 if (HAVE_POST_INCREMENT && data->explicit_inc_from > 0)
1097 emit_insn (gen_add2_insn (data->from_addr, GEN_INT (size)));
1099 if (! data->reverse)
1100 data->offset += size;
1102 data->len -= size;
1106 /* Emit code to move a block Y to a block X. This may be done with
1107 string-move instructions, with multiple scalar move instructions,
1108 or with a library call.
1110 Both X and Y must be MEM rtx's (perhaps inside VOLATILE) with mode BLKmode.
1111 SIZE is an rtx that says how long they are.
1112 ALIGN is the maximum alignment we can assume they have.
1113 METHOD describes what kind of copy this is, and what mechanisms may be used.
1115 Return the address of the new block, if memcpy is called and returns it,
1116 0 otherwise. */
1119 emit_block_move_hints (rtx x, rtx y, rtx size, enum block_op_methods method,
1120 unsigned int expected_align, HOST_WIDE_INT expected_size)
1122 bool may_use_call;
1123 rtx retval = 0;
1124 unsigned int align;
1126 gcc_assert (size);
1127 if (CONST_INT_P (size)
1128 && INTVAL (size) == 0)
1129 return 0;
1131 switch (method)
1133 case BLOCK_OP_NORMAL:
1134 case BLOCK_OP_TAILCALL:
1135 may_use_call = true;
1136 break;
1138 case BLOCK_OP_CALL_PARM:
1139 may_use_call = block_move_libcall_safe_for_call_parm ();
1141 /* Make inhibit_defer_pop nonzero around the library call
1142 to force it to pop the arguments right away. */
1143 NO_DEFER_POP;
1144 break;
1146 case BLOCK_OP_NO_LIBCALL:
1147 may_use_call = false;
1148 break;
1150 default:
1151 gcc_unreachable ();
1154 gcc_assert (MEM_P (x) && MEM_P (y));
1155 align = MIN (MEM_ALIGN (x), MEM_ALIGN (y));
1156 gcc_assert (align >= BITS_PER_UNIT);
1158 /* Make sure we've got BLKmode addresses; store_one_arg can decide that
1159 block copy is more efficient for other large modes, e.g. DCmode. */
1160 x = adjust_address (x, BLKmode, 0);
1161 y = adjust_address (y, BLKmode, 0);
1163 /* Set MEM_SIZE as appropriate for this block copy. The main place this
1164 can be incorrect is coming from __builtin_memcpy. */
1165 if (CONST_INT_P (size))
1167 x = shallow_copy_rtx (x);
1168 y = shallow_copy_rtx (y);
1169 set_mem_size (x, INTVAL (size));
1170 set_mem_size (y, INTVAL (size));
1173 if (CONST_INT_P (size) && MOVE_BY_PIECES_P (INTVAL (size), align))
1174 move_by_pieces (x, y, INTVAL (size), align, 0);
1175 else if (emit_block_move_via_movmem (x, y, size, align,
1176 expected_align, expected_size))
1178 else if (may_use_call
1179 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (x))
1180 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (y)))
1182 /* Since x and y are passed to a libcall, mark the corresponding
1183 tree EXPR as addressable. */
1184 tree y_expr = MEM_EXPR (y);
1185 tree x_expr = MEM_EXPR (x);
1186 if (y_expr)
1187 mark_addressable (y_expr);
1188 if (x_expr)
1189 mark_addressable (x_expr);
1190 retval = emit_block_move_via_libcall (x, y, size,
1191 method == BLOCK_OP_TAILCALL);
1194 else
1195 emit_block_move_via_loop (x, y, size, align);
1197 if (method == BLOCK_OP_CALL_PARM)
1198 OK_DEFER_POP;
1200 return retval;
1204 emit_block_move (rtx x, rtx y, rtx size, enum block_op_methods method)
1206 return emit_block_move_hints (x, y, size, method, 0, -1);
1209 /* A subroutine of emit_block_move. Returns true if calling the
1210 block move libcall will not clobber any parameters which may have
1211 already been placed on the stack. */
1213 static bool
1214 block_move_libcall_safe_for_call_parm (void)
1216 #if defined (REG_PARM_STACK_SPACE)
1217 tree fn;
1218 #endif
1220 /* If arguments are pushed on the stack, then they're safe. */
1221 if (PUSH_ARGS)
1222 return true;
1224 /* If registers go on the stack anyway, any argument is sure to clobber
1225 an outgoing argument. */
1226 #if defined (REG_PARM_STACK_SPACE)
1227 fn = emit_block_move_libcall_fn (false);
1228 /* Avoid set but not used warning if *REG_PARM_STACK_SPACE doesn't
1229 depend on its argument. */
1230 (void) fn;
1231 if (OUTGOING_REG_PARM_STACK_SPACE ((!fn ? NULL_TREE : TREE_TYPE (fn)))
1232 && REG_PARM_STACK_SPACE (fn) != 0)
1233 return false;
1234 #endif
1236 /* If any argument goes in memory, then it might clobber an outgoing
1237 argument. */
1239 CUMULATIVE_ARGS args_so_far_v;
1240 cumulative_args_t args_so_far;
1241 tree fn, arg;
1243 fn = emit_block_move_libcall_fn (false);
1244 INIT_CUMULATIVE_ARGS (args_so_far_v, TREE_TYPE (fn), NULL_RTX, 0, 3);
1245 args_so_far = pack_cumulative_args (&args_so_far_v);
1247 arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
1248 for ( ; arg != void_list_node ; arg = TREE_CHAIN (arg))
1250 enum machine_mode mode = TYPE_MODE (TREE_VALUE (arg));
1251 rtx tmp = targetm.calls.function_arg (args_so_far, mode,
1252 NULL_TREE, true);
1253 if (!tmp || !REG_P (tmp))
1254 return false;
1255 if (targetm.calls.arg_partial_bytes (args_so_far, mode, NULL, 1))
1256 return false;
1257 targetm.calls.function_arg_advance (args_so_far, mode,
1258 NULL_TREE, true);
1261 return true;
1264 /* A subroutine of emit_block_move. Expand a movmem pattern;
1265 return true if successful. */
1267 static bool
1268 emit_block_move_via_movmem (rtx x, rtx y, rtx size, unsigned int align,
1269 unsigned int expected_align, HOST_WIDE_INT expected_size)
1271 int save_volatile_ok = volatile_ok;
1272 enum machine_mode mode;
1274 if (expected_align < align)
1275 expected_align = align;
1277 /* Since this is a move insn, we don't care about volatility. */
1278 volatile_ok = 1;
1280 /* Try the most limited insn first, because there's no point
1281 including more than one in the machine description unless
1282 the more limited one has some advantage. */
1284 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
1285 mode = GET_MODE_WIDER_MODE (mode))
1287 enum insn_code code = direct_optab_handler (movmem_optab, mode);
1289 if (code != CODE_FOR_nothing
1290 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
1291 here because if SIZE is less than the mode mask, as it is
1292 returned by the macro, it will definitely be less than the
1293 actual mode mask. */
1294 && ((CONST_INT_P (size)
1295 && ((unsigned HOST_WIDE_INT) INTVAL (size)
1296 <= (GET_MODE_MASK (mode) >> 1)))
1297 || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD))
1299 struct expand_operand ops[6];
1300 unsigned int nops;
1302 /* ??? When called via emit_block_move_for_call, it'd be
1303 nice if there were some way to inform the backend, so
1304 that it doesn't fail the expansion because it thinks
1305 emitting the libcall would be more efficient. */
1306 nops = insn_data[(int) code].n_generator_args;
1307 gcc_assert (nops == 4 || nops == 6);
1309 create_fixed_operand (&ops[0], x);
1310 create_fixed_operand (&ops[1], y);
1311 /* The check above guarantees that this size conversion is valid. */
1312 create_convert_operand_to (&ops[2], size, mode, true);
1313 create_integer_operand (&ops[3], align / BITS_PER_UNIT);
1314 if (nops == 6)
1316 create_integer_operand (&ops[4], expected_align / BITS_PER_UNIT);
1317 create_integer_operand (&ops[5], expected_size);
1319 if (maybe_expand_insn (code, nops, ops))
1321 volatile_ok = save_volatile_ok;
1322 return true;
1327 volatile_ok = save_volatile_ok;
1328 return false;
1331 /* A subroutine of emit_block_move. Expand a call to memcpy.
1332 Return the return value from memcpy, 0 otherwise. */
1335 emit_block_move_via_libcall (rtx dst, rtx src, rtx size, bool tailcall)
1337 rtx dst_addr, src_addr;
1338 tree call_expr, fn, src_tree, dst_tree, size_tree;
1339 enum machine_mode size_mode;
1340 rtx retval;
1342 /* Emit code to copy the addresses of DST and SRC and SIZE into new
1343 pseudos. We can then place those new pseudos into a VAR_DECL and
1344 use them later. */
1346 dst_addr = copy_to_mode_reg (Pmode, XEXP (dst, 0));
1347 src_addr = copy_to_mode_reg (Pmode, XEXP (src, 0));
1349 dst_addr = convert_memory_address (ptr_mode, dst_addr);
1350 src_addr = convert_memory_address (ptr_mode, src_addr);
1352 dst_tree = make_tree (ptr_type_node, dst_addr);
1353 src_tree = make_tree (ptr_type_node, src_addr);
1355 size_mode = TYPE_MODE (sizetype);
1357 size = convert_to_mode (size_mode, size, 1);
1358 size = copy_to_mode_reg (size_mode, size);
1360 /* It is incorrect to use the libcall calling conventions to call
1361 memcpy in this context. This could be a user call to memcpy and
1362 the user may wish to examine the return value from memcpy. For
1363 targets where libcalls and normal calls have different conventions
1364 for returning pointers, we could end up generating incorrect code. */
1366 size_tree = make_tree (sizetype, size);
1368 fn = emit_block_move_libcall_fn (true);
1369 call_expr = build_call_expr (fn, 3, dst_tree, src_tree, size_tree);
1370 CALL_EXPR_TAILCALL (call_expr) = tailcall;
1372 retval = expand_normal (call_expr);
1374 return retval;
1377 /* A subroutine of emit_block_move_via_libcall. Create the tree node
1378 for the function we use for block copies. The first time FOR_CALL
1379 is true, we call assemble_external. */
1381 static GTY(()) tree block_move_fn;
1383 void
1384 init_block_move_fn (const char *asmspec)
1386 if (!block_move_fn)
1388 tree args, fn;
1390 fn = get_identifier ("memcpy");
1391 args = build_function_type_list (ptr_type_node, ptr_type_node,
1392 const_ptr_type_node, sizetype,
1393 NULL_TREE);
1395 fn = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, fn, args);
1396 DECL_EXTERNAL (fn) = 1;
1397 TREE_PUBLIC (fn) = 1;
1398 DECL_ARTIFICIAL (fn) = 1;
1399 TREE_NOTHROW (fn) = 1;
1400 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
1401 DECL_VISIBILITY_SPECIFIED (fn) = 1;
1403 block_move_fn = fn;
1406 if (asmspec)
1407 set_user_assembler_name (block_move_fn, asmspec);
1410 static tree
1411 emit_block_move_libcall_fn (int for_call)
1413 static bool emitted_extern;
1415 if (!block_move_fn)
1416 init_block_move_fn (NULL);
1418 if (for_call && !emitted_extern)
1420 emitted_extern = true;
1421 make_decl_rtl (block_move_fn);
1422 assemble_external (block_move_fn);
1425 return block_move_fn;
1428 /* A subroutine of emit_block_move. Copy the data via an explicit
1429 loop. This is used only when libcalls are forbidden. */
1430 /* ??? It'd be nice to copy in hunks larger than QImode. */
1432 static void
1433 emit_block_move_via_loop (rtx x, rtx y, rtx size,
1434 unsigned int align ATTRIBUTE_UNUSED)
1436 rtx cmp_label, top_label, iter, x_addr, y_addr, tmp;
1437 enum machine_mode x_addr_mode
1438 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (x));
1439 enum machine_mode y_addr_mode
1440 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (y));
1441 enum machine_mode iter_mode;
1443 iter_mode = GET_MODE (size);
1444 if (iter_mode == VOIDmode)
1445 iter_mode = word_mode;
1447 top_label = gen_label_rtx ();
1448 cmp_label = gen_label_rtx ();
1449 iter = gen_reg_rtx (iter_mode);
1451 emit_move_insn (iter, const0_rtx);
1453 x_addr = force_operand (XEXP (x, 0), NULL_RTX);
1454 y_addr = force_operand (XEXP (y, 0), NULL_RTX);
1455 do_pending_stack_adjust ();
1457 emit_jump (cmp_label);
1458 emit_label (top_label);
1460 tmp = convert_modes (x_addr_mode, iter_mode, iter, true);
1461 x_addr = gen_rtx_PLUS (x_addr_mode, x_addr, tmp);
1463 if (x_addr_mode != y_addr_mode)
1464 tmp = convert_modes (y_addr_mode, iter_mode, iter, true);
1465 y_addr = gen_rtx_PLUS (y_addr_mode, y_addr, tmp);
1467 x = change_address (x, QImode, x_addr);
1468 y = change_address (y, QImode, y_addr);
1470 emit_move_insn (x, y);
1472 tmp = expand_simple_binop (iter_mode, PLUS, iter, const1_rtx, iter,
1473 true, OPTAB_LIB_WIDEN);
1474 if (tmp != iter)
1475 emit_move_insn (iter, tmp);
1477 emit_label (cmp_label);
1479 emit_cmp_and_jump_insns (iter, size, LT, NULL_RTX, iter_mode,
1480 true, top_label);
1483 /* Copy all or part of a value X into registers starting at REGNO.
1484 The number of registers to be filled is NREGS. */
1486 void
1487 move_block_to_reg (int regno, rtx x, int nregs, enum machine_mode mode)
1489 int i;
1490 #ifdef HAVE_load_multiple
1491 rtx pat;
1492 rtx last;
1493 #endif
1495 if (nregs == 0)
1496 return;
1498 if (CONSTANT_P (x) && !targetm.legitimate_constant_p (mode, x))
1499 x = validize_mem (force_const_mem (mode, x));
1501 /* See if the machine can do this with a load multiple insn. */
1502 #ifdef HAVE_load_multiple
1503 if (HAVE_load_multiple)
1505 last = get_last_insn ();
1506 pat = gen_load_multiple (gen_rtx_REG (word_mode, regno), x,
1507 GEN_INT (nregs));
1508 if (pat)
1510 emit_insn (pat);
1511 return;
1513 else
1514 delete_insns_since (last);
1516 #endif
1518 for (i = 0; i < nregs; i++)
1519 emit_move_insn (gen_rtx_REG (word_mode, regno + i),
1520 operand_subword_force (x, i, mode));
1523 /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
1524 The number of registers to be filled is NREGS. */
1526 void
1527 move_block_from_reg (int regno, rtx x, int nregs)
1529 int i;
1531 if (nregs == 0)
1532 return;
1534 /* See if the machine can do this with a store multiple insn. */
1535 #ifdef HAVE_store_multiple
1536 if (HAVE_store_multiple)
1538 rtx last = get_last_insn ();
1539 rtx pat = gen_store_multiple (x, gen_rtx_REG (word_mode, regno),
1540 GEN_INT (nregs));
1541 if (pat)
1543 emit_insn (pat);
1544 return;
1546 else
1547 delete_insns_since (last);
1549 #endif
1551 for (i = 0; i < nregs; i++)
1553 rtx tem = operand_subword (x, i, 1, BLKmode);
1555 gcc_assert (tem);
1557 emit_move_insn (tem, gen_rtx_REG (word_mode, regno + i));
1561 /* Generate a PARALLEL rtx for a new non-consecutive group of registers from
1562 ORIG, where ORIG is a non-consecutive group of registers represented by
1563 a PARALLEL. The clone is identical to the original except in that the
1564 original set of registers is replaced by a new set of pseudo registers.
1565 The new set has the same modes as the original set. */
1568 gen_group_rtx (rtx orig)
1570 int i, length;
1571 rtx *tmps;
1573 gcc_assert (GET_CODE (orig) == PARALLEL);
1575 length = XVECLEN (orig, 0);
1576 tmps = XALLOCAVEC (rtx, length);
1578 /* Skip a NULL entry in first slot. */
1579 i = XEXP (XVECEXP (orig, 0, 0), 0) ? 0 : 1;
1581 if (i)
1582 tmps[0] = 0;
1584 for (; i < length; i++)
1586 enum machine_mode mode = GET_MODE (XEXP (XVECEXP (orig, 0, i), 0));
1587 rtx offset = XEXP (XVECEXP (orig, 0, i), 1);
1589 tmps[i] = gen_rtx_EXPR_LIST (VOIDmode, gen_reg_rtx (mode), offset);
1592 return gen_rtx_PARALLEL (GET_MODE (orig), gen_rtvec_v (length, tmps));
1595 /* A subroutine of emit_group_load. Arguments as for emit_group_load,
1596 except that values are placed in TMPS[i], and must later be moved
1597 into corresponding XEXP (XVECEXP (DST, 0, i), 0) element. */
1599 static void
1600 emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize)
1602 rtx src;
1603 int start, i;
1604 enum machine_mode m = GET_MODE (orig_src);
1606 gcc_assert (GET_CODE (dst) == PARALLEL);
1608 if (m != VOIDmode
1609 && !SCALAR_INT_MODE_P (m)
1610 && !MEM_P (orig_src)
1611 && GET_CODE (orig_src) != CONCAT)
1613 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_src));
1614 if (imode == BLKmode)
1615 src = assign_stack_temp (GET_MODE (orig_src), ssize, 0);
1616 else
1617 src = gen_reg_rtx (imode);
1618 if (imode != BLKmode)
1619 src = gen_lowpart (GET_MODE (orig_src), src);
1620 emit_move_insn (src, orig_src);
1621 /* ...and back again. */
1622 if (imode != BLKmode)
1623 src = gen_lowpart (imode, src);
1624 emit_group_load_1 (tmps, dst, src, type, ssize);
1625 return;
1628 /* Check for a NULL entry, used to indicate that the parameter goes
1629 both on the stack and in registers. */
1630 if (XEXP (XVECEXP (dst, 0, 0), 0))
1631 start = 0;
1632 else
1633 start = 1;
1635 /* Process the pieces. */
1636 for (i = start; i < XVECLEN (dst, 0); i++)
1638 enum machine_mode mode = GET_MODE (XEXP (XVECEXP (dst, 0, i), 0));
1639 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (dst, 0, i), 1));
1640 unsigned int bytelen = GET_MODE_SIZE (mode);
1641 int shift = 0;
1643 /* Handle trailing fragments that run over the size of the struct. */
1644 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
1646 /* Arrange to shift the fragment to where it belongs.
1647 extract_bit_field loads to the lsb of the reg. */
1648 if (
1649 #ifdef BLOCK_REG_PADDING
1650 BLOCK_REG_PADDING (GET_MODE (orig_src), type, i == start)
1651 == (BYTES_BIG_ENDIAN ? upward : downward)
1652 #else
1653 BYTES_BIG_ENDIAN
1654 #endif
1656 shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
1657 bytelen = ssize - bytepos;
1658 gcc_assert (bytelen > 0);
1661 /* If we won't be loading directly from memory, protect the real source
1662 from strange tricks we might play; but make sure that the source can
1663 be loaded directly into the destination. */
1664 src = orig_src;
1665 if (!MEM_P (orig_src)
1666 && (!CONSTANT_P (orig_src)
1667 || (GET_MODE (orig_src) != mode
1668 && GET_MODE (orig_src) != VOIDmode)))
1670 if (GET_MODE (orig_src) == VOIDmode)
1671 src = gen_reg_rtx (mode);
1672 else
1673 src = gen_reg_rtx (GET_MODE (orig_src));
1675 emit_move_insn (src, orig_src);
1678 /* Optimize the access just a bit. */
1679 if (MEM_P (src)
1680 && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (src))
1681 || MEM_ALIGN (src) >= GET_MODE_ALIGNMENT (mode))
1682 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
1683 && bytelen == GET_MODE_SIZE (mode))
1685 tmps[i] = gen_reg_rtx (mode);
1686 emit_move_insn (tmps[i], adjust_address (src, mode, bytepos));
1688 else if (COMPLEX_MODE_P (mode)
1689 && GET_MODE (src) == mode
1690 && bytelen == GET_MODE_SIZE (mode))
1691 /* Let emit_move_complex do the bulk of the work. */
1692 tmps[i] = src;
1693 else if (GET_CODE (src) == CONCAT)
1695 unsigned int slen = GET_MODE_SIZE (GET_MODE (src));
1696 unsigned int slen0 = GET_MODE_SIZE (GET_MODE (XEXP (src, 0)));
1698 if ((bytepos == 0 && bytelen == slen0)
1699 || (bytepos != 0 && bytepos + bytelen <= slen))
1701 /* The following assumes that the concatenated objects all
1702 have the same size. In this case, a simple calculation
1703 can be used to determine the object and the bit field
1704 to be extracted. */
1705 tmps[i] = XEXP (src, bytepos / slen0);
1706 if (! CONSTANT_P (tmps[i])
1707 && (!REG_P (tmps[i]) || GET_MODE (tmps[i]) != mode))
1708 tmps[i] = extract_bit_field (tmps[i], bytelen * BITS_PER_UNIT,
1709 (bytepos % slen0) * BITS_PER_UNIT,
1710 1, false, NULL_RTX, mode, mode);
1712 else
1714 rtx mem;
1716 gcc_assert (!bytepos);
1717 mem = assign_stack_temp (GET_MODE (src), slen, 0);
1718 emit_move_insn (mem, src);
1719 tmps[i] = extract_bit_field (mem, bytelen * BITS_PER_UNIT,
1720 0, 1, false, NULL_RTX, mode, mode);
1723 /* FIXME: A SIMD parallel will eventually lead to a subreg of a
1724 SIMD register, which is currently broken. While we get GCC
1725 to emit proper RTL for these cases, let's dump to memory. */
1726 else if (VECTOR_MODE_P (GET_MODE (dst))
1727 && REG_P (src))
1729 int slen = GET_MODE_SIZE (GET_MODE (src));
1730 rtx mem;
1732 mem = assign_stack_temp (GET_MODE (src), slen, 0);
1733 emit_move_insn (mem, src);
1734 tmps[i] = adjust_address (mem, mode, (int) bytepos);
1736 else if (CONSTANT_P (src) && GET_MODE (dst) != BLKmode
1737 && XVECLEN (dst, 0) > 1)
1738 tmps[i] = simplify_gen_subreg (mode, src, GET_MODE(dst), bytepos);
1739 else if (CONSTANT_P (src))
1741 HOST_WIDE_INT len = (HOST_WIDE_INT) bytelen;
1743 if (len == ssize)
1744 tmps[i] = src;
1745 else
1747 rtx first, second;
1749 gcc_assert (2 * len == ssize);
1750 split_double (src, &first, &second);
1751 if (i)
1752 tmps[i] = second;
1753 else
1754 tmps[i] = first;
1757 else if (REG_P (src) && GET_MODE (src) == mode)
1758 tmps[i] = src;
1759 else
1760 tmps[i] = extract_bit_field (src, bytelen * BITS_PER_UNIT,
1761 bytepos * BITS_PER_UNIT, 1, false, NULL_RTX,
1762 mode, mode);
1764 if (shift)
1765 tmps[i] = expand_shift (LSHIFT_EXPR, mode, tmps[i],
1766 shift, tmps[i], 0);
1770 /* Emit code to move a block SRC of type TYPE to a block DST,
1771 where DST is non-consecutive registers represented by a PARALLEL.
1772 SSIZE represents the total size of block ORIG_SRC in bytes, or -1
1773 if not known. */
1775 void
1776 emit_group_load (rtx dst, rtx src, tree type, int ssize)
1778 rtx *tmps;
1779 int i;
1781 tmps = XALLOCAVEC (rtx, XVECLEN (dst, 0));
1782 emit_group_load_1 (tmps, dst, src, type, ssize);
1784 /* Copy the extracted pieces into the proper (probable) hard regs. */
1785 for (i = 0; i < XVECLEN (dst, 0); i++)
1787 rtx d = XEXP (XVECEXP (dst, 0, i), 0);
1788 if (d == NULL)
1789 continue;
1790 emit_move_insn (d, tmps[i]);
1794 /* Similar, but load SRC into new pseudos in a format that looks like
1795 PARALLEL. This can later be fed to emit_group_move to get things
1796 in the right place. */
1799 emit_group_load_into_temps (rtx parallel, rtx src, tree type, int ssize)
1801 rtvec vec;
1802 int i;
1804 vec = rtvec_alloc (XVECLEN (parallel, 0));
1805 emit_group_load_1 (&RTVEC_ELT (vec, 0), parallel, src, type, ssize);
1807 /* Convert the vector to look just like the original PARALLEL, except
1808 with the computed values. */
1809 for (i = 0; i < XVECLEN (parallel, 0); i++)
1811 rtx e = XVECEXP (parallel, 0, i);
1812 rtx d = XEXP (e, 0);
1814 if (d)
1816 d = force_reg (GET_MODE (d), RTVEC_ELT (vec, i));
1817 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), d, XEXP (e, 1));
1819 RTVEC_ELT (vec, i) = e;
1822 return gen_rtx_PARALLEL (GET_MODE (parallel), vec);
1825 /* Emit code to move a block SRC to block DST, where SRC and DST are
1826 non-consecutive groups of registers, each represented by a PARALLEL. */
1828 void
1829 emit_group_move (rtx dst, rtx src)
1831 int i;
1833 gcc_assert (GET_CODE (src) == PARALLEL
1834 && GET_CODE (dst) == PARALLEL
1835 && XVECLEN (src, 0) == XVECLEN (dst, 0));
1837 /* Skip first entry if NULL. */
1838 for (i = XEXP (XVECEXP (src, 0, 0), 0) ? 0 : 1; i < XVECLEN (src, 0); i++)
1839 emit_move_insn (XEXP (XVECEXP (dst, 0, i), 0),
1840 XEXP (XVECEXP (src, 0, i), 0));
1843 /* Move a group of registers represented by a PARALLEL into pseudos. */
1846 emit_group_move_into_temps (rtx src)
1848 rtvec vec = rtvec_alloc (XVECLEN (src, 0));
1849 int i;
1851 for (i = 0; i < XVECLEN (src, 0); i++)
1853 rtx e = XVECEXP (src, 0, i);
1854 rtx d = XEXP (e, 0);
1856 if (d)
1857 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), copy_to_reg (d), XEXP (e, 1));
1858 RTVEC_ELT (vec, i) = e;
1861 return gen_rtx_PARALLEL (GET_MODE (src), vec);
1864 /* Emit code to move a block SRC to a block ORIG_DST of type TYPE,
1865 where SRC is non-consecutive registers represented by a PARALLEL.
1866 SSIZE represents the total size of block ORIG_DST, or -1 if not
1867 known. */
1869 void
1870 emit_group_store (rtx orig_dst, rtx src, tree type ATTRIBUTE_UNUSED, int ssize)
1872 rtx *tmps, dst;
1873 int start, finish, i;
1874 enum machine_mode m = GET_MODE (orig_dst);
1876 gcc_assert (GET_CODE (src) == PARALLEL);
1878 if (!SCALAR_INT_MODE_P (m)
1879 && !MEM_P (orig_dst) && GET_CODE (orig_dst) != CONCAT)
1881 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_dst));
1882 if (imode == BLKmode)
1883 dst = assign_stack_temp (GET_MODE (orig_dst), ssize, 0);
1884 else
1885 dst = gen_reg_rtx (imode);
1886 emit_group_store (dst, src, type, ssize);
1887 if (imode != BLKmode)
1888 dst = gen_lowpart (GET_MODE (orig_dst), dst);
1889 emit_move_insn (orig_dst, dst);
1890 return;
1893 /* Check for a NULL entry, used to indicate that the parameter goes
1894 both on the stack and in registers. */
1895 if (XEXP (XVECEXP (src, 0, 0), 0))
1896 start = 0;
1897 else
1898 start = 1;
1899 finish = XVECLEN (src, 0);
1901 tmps = XALLOCAVEC (rtx, finish);
1903 /* Copy the (probable) hard regs into pseudos. */
1904 for (i = start; i < finish; i++)
1906 rtx reg = XEXP (XVECEXP (src, 0, i), 0);
1907 if (!REG_P (reg) || REGNO (reg) < FIRST_PSEUDO_REGISTER)
1909 tmps[i] = gen_reg_rtx (GET_MODE (reg));
1910 emit_move_insn (tmps[i], reg);
1912 else
1913 tmps[i] = reg;
1916 /* If we won't be storing directly into memory, protect the real destination
1917 from strange tricks we might play. */
1918 dst = orig_dst;
1919 if (GET_CODE (dst) == PARALLEL)
1921 rtx temp;
1923 /* We can get a PARALLEL dst if there is a conditional expression in
1924 a return statement. In that case, the dst and src are the same,
1925 so no action is necessary. */
1926 if (rtx_equal_p (dst, src))
1927 return;
1929 /* It is unclear if we can ever reach here, but we may as well handle
1930 it. Allocate a temporary, and split this into a store/load to/from
1931 the temporary. */
1933 temp = assign_stack_temp (GET_MODE (dst), ssize, 0);
1934 emit_group_store (temp, src, type, ssize);
1935 emit_group_load (dst, temp, type, ssize);
1936 return;
1938 else if (!MEM_P (dst) && GET_CODE (dst) != CONCAT)
1940 enum machine_mode outer = GET_MODE (dst);
1941 enum machine_mode inner;
1942 HOST_WIDE_INT bytepos;
1943 bool done = false;
1944 rtx temp;
1946 if (!REG_P (dst) || REGNO (dst) < FIRST_PSEUDO_REGISTER)
1947 dst = gen_reg_rtx (outer);
1949 /* Make life a bit easier for combine. */
1950 /* If the first element of the vector is the low part
1951 of the destination mode, use a paradoxical subreg to
1952 initialize the destination. */
1953 if (start < finish)
1955 inner = GET_MODE (tmps[start]);
1956 bytepos = subreg_lowpart_offset (inner, outer);
1957 if (INTVAL (XEXP (XVECEXP (src, 0, start), 1)) == bytepos)
1959 temp = simplify_gen_subreg (outer, tmps[start],
1960 inner, 0);
1961 if (temp)
1963 emit_move_insn (dst, temp);
1964 done = true;
1965 start++;
1970 /* If the first element wasn't the low part, try the last. */
1971 if (!done
1972 && start < finish - 1)
1974 inner = GET_MODE (tmps[finish - 1]);
1975 bytepos = subreg_lowpart_offset (inner, outer);
1976 if (INTVAL (XEXP (XVECEXP (src, 0, finish - 1), 1)) == bytepos)
1978 temp = simplify_gen_subreg (outer, tmps[finish - 1],
1979 inner, 0);
1980 if (temp)
1982 emit_move_insn (dst, temp);
1983 done = true;
1984 finish--;
1989 /* Otherwise, simply initialize the result to zero. */
1990 if (!done)
1991 emit_move_insn (dst, CONST0_RTX (outer));
1994 /* Process the pieces. */
1995 for (i = start; i < finish; i++)
1997 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (src, 0, i), 1));
1998 enum machine_mode mode = GET_MODE (tmps[i]);
1999 unsigned int bytelen = GET_MODE_SIZE (mode);
2000 unsigned int adj_bytelen = bytelen;
2001 rtx dest = dst;
2003 /* Handle trailing fragments that run over the size of the struct. */
2004 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2005 adj_bytelen = ssize - bytepos;
2007 if (GET_CODE (dst) == CONCAT)
2009 if (bytepos + adj_bytelen
2010 <= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2011 dest = XEXP (dst, 0);
2012 else if (bytepos >= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2014 bytepos -= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0)));
2015 dest = XEXP (dst, 1);
2017 else
2019 enum machine_mode dest_mode = GET_MODE (dest);
2020 enum machine_mode tmp_mode = GET_MODE (tmps[i]);
2022 gcc_assert (bytepos == 0 && XVECLEN (src, 0));
2024 if (GET_MODE_ALIGNMENT (dest_mode)
2025 >= GET_MODE_ALIGNMENT (tmp_mode))
2027 dest = assign_stack_temp (dest_mode,
2028 GET_MODE_SIZE (dest_mode),
2030 emit_move_insn (adjust_address (dest,
2031 tmp_mode,
2032 bytepos),
2033 tmps[i]);
2034 dst = dest;
2036 else
2038 dest = assign_stack_temp (tmp_mode,
2039 GET_MODE_SIZE (tmp_mode),
2041 emit_move_insn (dest, tmps[i]);
2042 dst = adjust_address (dest, dest_mode, bytepos);
2044 break;
2048 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2050 /* store_bit_field always takes its value from the lsb.
2051 Move the fragment to the lsb if it's not already there. */
2052 if (
2053 #ifdef BLOCK_REG_PADDING
2054 BLOCK_REG_PADDING (GET_MODE (orig_dst), type, i == start)
2055 == (BYTES_BIG_ENDIAN ? upward : downward)
2056 #else
2057 BYTES_BIG_ENDIAN
2058 #endif
2061 int shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
2062 tmps[i] = expand_shift (RSHIFT_EXPR, mode, tmps[i],
2063 shift, tmps[i], 0);
2065 bytelen = adj_bytelen;
2068 /* Optimize the access just a bit. */
2069 if (MEM_P (dest)
2070 && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (dest))
2071 || MEM_ALIGN (dest) >= GET_MODE_ALIGNMENT (mode))
2072 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
2073 && bytelen == GET_MODE_SIZE (mode))
2074 emit_move_insn (adjust_address (dest, mode, bytepos), tmps[i]);
2075 else
2076 store_bit_field (dest, bytelen * BITS_PER_UNIT, bytepos * BITS_PER_UNIT,
2077 0, 0, mode, tmps[i]);
2080 /* Copy from the pseudo into the (probable) hard reg. */
2081 if (orig_dst != dst)
2082 emit_move_insn (orig_dst, dst);
2085 /* Generate code to copy a BLKmode object of TYPE out of a
2086 set of registers starting with SRCREG into TGTBLK. If TGTBLK
2087 is null, a stack temporary is created. TGTBLK is returned.
2089 The purpose of this routine is to handle functions that return
2090 BLKmode structures in registers. Some machines (the PA for example)
2091 want to return all small structures in registers regardless of the
2092 structure's alignment. */
2095 copy_blkmode_from_reg (rtx tgtblk, rtx srcreg, tree type)
2097 unsigned HOST_WIDE_INT bytes = int_size_in_bytes (type);
2098 rtx src = NULL, dst = NULL;
2099 unsigned HOST_WIDE_INT bitsize = MIN (TYPE_ALIGN (type), BITS_PER_WORD);
2100 unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0;
2101 enum machine_mode copy_mode;
2103 if (tgtblk == 0)
2105 tgtblk = assign_temp (build_qualified_type (type,
2106 (TYPE_QUALS (type)
2107 | TYPE_QUAL_CONST)),
2108 0, 1, 1);
2109 preserve_temp_slots (tgtblk);
2112 /* This code assumes srcreg is at least a full word. If it isn't, copy it
2113 into a new pseudo which is a full word. */
2115 if (GET_MODE (srcreg) != BLKmode
2116 && GET_MODE_SIZE (GET_MODE (srcreg)) < UNITS_PER_WORD)
2117 srcreg = convert_to_mode (word_mode, srcreg, TYPE_UNSIGNED (type));
2119 /* If the structure doesn't take up a whole number of words, see whether
2120 SRCREG is padded on the left or on the right. If it's on the left,
2121 set PADDING_CORRECTION to the number of bits to skip.
2123 In most ABIs, the structure will be returned at the least end of
2124 the register, which translates to right padding on little-endian
2125 targets and left padding on big-endian targets. The opposite
2126 holds if the structure is returned at the most significant
2127 end of the register. */
2128 if (bytes % UNITS_PER_WORD != 0
2129 && (targetm.calls.return_in_msb (type)
2130 ? !BYTES_BIG_ENDIAN
2131 : BYTES_BIG_ENDIAN))
2132 padding_correction
2133 = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD) * BITS_PER_UNIT));
2135 /* Copy the structure BITSIZE bits at a time. If the target lives in
2136 memory, take care of not reading/writing past its end by selecting
2137 a copy mode suited to BITSIZE. This should always be possible given
2138 how it is computed.
2140 We could probably emit more efficient code for machines which do not use
2141 strict alignment, but it doesn't seem worth the effort at the current
2142 time. */
2144 copy_mode = word_mode;
2145 if (MEM_P (tgtblk))
2147 enum machine_mode mem_mode = mode_for_size (bitsize, MODE_INT, 1);
2148 if (mem_mode != BLKmode)
2149 copy_mode = mem_mode;
2152 for (bitpos = 0, xbitpos = padding_correction;
2153 bitpos < bytes * BITS_PER_UNIT;
2154 bitpos += bitsize, xbitpos += bitsize)
2156 /* We need a new source operand each time xbitpos is on a
2157 word boundary and when xbitpos == padding_correction
2158 (the first time through). */
2159 if (xbitpos % BITS_PER_WORD == 0
2160 || xbitpos == padding_correction)
2161 src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD,
2162 GET_MODE (srcreg));
2164 /* We need a new destination operand each time bitpos is on
2165 a word boundary. */
2166 if (bitpos % BITS_PER_WORD == 0)
2167 dst = operand_subword (tgtblk, bitpos / BITS_PER_WORD, 1, BLKmode);
2169 /* Use xbitpos for the source extraction (right justified) and
2170 bitpos for the destination store (left justified). */
2171 store_bit_field (dst, bitsize, bitpos % BITS_PER_WORD, 0, 0, copy_mode,
2172 extract_bit_field (src, bitsize,
2173 xbitpos % BITS_PER_WORD, 1, false,
2174 NULL_RTX, copy_mode, copy_mode));
2177 return tgtblk;
2180 /* Copy BLKmode value SRC into a register of mode MODE. Return the
2181 register if it contains any data, otherwise return null.
2183 This is used on targets that return BLKmode values in registers. */
2186 copy_blkmode_to_reg (enum machine_mode mode, tree src)
2188 int i, n_regs;
2189 unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0, bytes;
2190 unsigned int bitsize;
2191 rtx *dst_words, dst, x, src_word = NULL_RTX, dst_word = NULL_RTX;
2192 enum machine_mode dst_mode;
2194 gcc_assert (TYPE_MODE (TREE_TYPE (src)) == BLKmode);
2196 x = expand_normal (src);
2198 bytes = int_size_in_bytes (TREE_TYPE (src));
2199 if (bytes == 0)
2200 return NULL_RTX;
2202 /* If the structure doesn't take up a whole number of words, see
2203 whether the register value should be padded on the left or on
2204 the right. Set PADDING_CORRECTION to the number of padding
2205 bits needed on the left side.
2207 In most ABIs, the structure will be returned at the least end of
2208 the register, which translates to right padding on little-endian
2209 targets and left padding on big-endian targets. The opposite
2210 holds if the structure is returned at the most significant
2211 end of the register. */
2212 if (bytes % UNITS_PER_WORD != 0
2213 && (targetm.calls.return_in_msb (TREE_TYPE (src))
2214 ? !BYTES_BIG_ENDIAN
2215 : BYTES_BIG_ENDIAN))
2216 padding_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
2217 * BITS_PER_UNIT));
2219 n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
2220 dst_words = XALLOCAVEC (rtx, n_regs);
2221 bitsize = MIN (TYPE_ALIGN (TREE_TYPE (src)), BITS_PER_WORD);
2223 /* Copy the structure BITSIZE bits at a time. */
2224 for (bitpos = 0, xbitpos = padding_correction;
2225 bitpos < bytes * BITS_PER_UNIT;
2226 bitpos += bitsize, xbitpos += bitsize)
2228 /* We need a new destination pseudo each time xbitpos is
2229 on a word boundary and when xbitpos == padding_correction
2230 (the first time through). */
2231 if (xbitpos % BITS_PER_WORD == 0
2232 || xbitpos == padding_correction)
2234 /* Generate an appropriate register. */
2235 dst_word = gen_reg_rtx (word_mode);
2236 dst_words[xbitpos / BITS_PER_WORD] = dst_word;
2238 /* Clear the destination before we move anything into it. */
2239 emit_move_insn (dst_word, CONST0_RTX (word_mode));
2242 /* We need a new source operand each time bitpos is on a word
2243 boundary. */
2244 if (bitpos % BITS_PER_WORD == 0)
2245 src_word = operand_subword_force (x, bitpos / BITS_PER_WORD, BLKmode);
2247 /* Use bitpos for the source extraction (left justified) and
2248 xbitpos for the destination store (right justified). */
2249 store_bit_field (dst_word, bitsize, xbitpos % BITS_PER_WORD,
2250 0, 0, word_mode,
2251 extract_bit_field (src_word, bitsize,
2252 bitpos % BITS_PER_WORD, 1, false,
2253 NULL_RTX, word_mode, word_mode));
2256 if (mode == BLKmode)
2258 /* Find the smallest integer mode large enough to hold the
2259 entire structure. */
2260 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2261 mode != VOIDmode;
2262 mode = GET_MODE_WIDER_MODE (mode))
2263 /* Have we found a large enough mode? */
2264 if (GET_MODE_SIZE (mode) >= bytes)
2265 break;
2267 /* A suitable mode should have been found. */
2268 gcc_assert (mode != VOIDmode);
2271 if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (word_mode))
2272 dst_mode = word_mode;
2273 else
2274 dst_mode = mode;
2275 dst = gen_reg_rtx (dst_mode);
2277 for (i = 0; i < n_regs; i++)
2278 emit_move_insn (operand_subword (dst, i, 0, dst_mode), dst_words[i]);
2280 if (mode != dst_mode)
2281 dst = gen_lowpart (mode, dst);
2283 return dst;
2286 /* Add a USE expression for REG to the (possibly empty) list pointed
2287 to by CALL_FUSAGE. REG must denote a hard register. */
2289 void
2290 use_reg_mode (rtx *call_fusage, rtx reg, enum machine_mode mode)
2292 gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
2294 *call_fusage
2295 = gen_rtx_EXPR_LIST (mode, gen_rtx_USE (VOIDmode, reg), *call_fusage);
2298 /* Add USE expressions to *CALL_FUSAGE for each of NREGS consecutive regs,
2299 starting at REGNO. All of these registers must be hard registers. */
2301 void
2302 use_regs (rtx *call_fusage, int regno, int nregs)
2304 int i;
2306 gcc_assert (regno + nregs <= FIRST_PSEUDO_REGISTER);
2308 for (i = 0; i < nregs; i++)
2309 use_reg (call_fusage, regno_reg_rtx[regno + i]);
2312 /* Add USE expressions to *CALL_FUSAGE for each REG contained in the
2313 PARALLEL REGS. This is for calls that pass values in multiple
2314 non-contiguous locations. The Irix 6 ABI has examples of this. */
2316 void
2317 use_group_regs (rtx *call_fusage, rtx regs)
2319 int i;
2321 for (i = 0; i < XVECLEN (regs, 0); i++)
2323 rtx reg = XEXP (XVECEXP (regs, 0, i), 0);
2325 /* A NULL entry means the parameter goes both on the stack and in
2326 registers. This can also be a MEM for targets that pass values
2327 partially on the stack and partially in registers. */
2328 if (reg != 0 && REG_P (reg))
2329 use_reg (call_fusage, reg);
2333 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2334 assigment and the code of the expresion on the RHS is CODE. Return
2335 NULL otherwise. */
2337 static gimple
2338 get_def_for_expr (tree name, enum tree_code code)
2340 gimple def_stmt;
2342 if (TREE_CODE (name) != SSA_NAME)
2343 return NULL;
2345 def_stmt = get_gimple_for_ssa_name (name);
2346 if (!def_stmt
2347 || gimple_assign_rhs_code (def_stmt) != code)
2348 return NULL;
2350 return def_stmt;
2354 /* Determine whether the LEN bytes generated by CONSTFUN can be
2355 stored to memory using several move instructions. CONSTFUNDATA is
2356 a pointer which will be passed as argument in every CONSTFUN call.
2357 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2358 a memset operation and false if it's a copy of a constant string.
2359 Return nonzero if a call to store_by_pieces should succeed. */
2362 can_store_by_pieces (unsigned HOST_WIDE_INT len,
2363 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2364 void *constfundata, unsigned int align, bool memsetp)
2366 unsigned HOST_WIDE_INT l;
2367 unsigned int max_size;
2368 HOST_WIDE_INT offset = 0;
2369 enum machine_mode mode;
2370 enum insn_code icode;
2371 int reverse;
2372 /* cst is set but not used if LEGITIMATE_CONSTANT doesn't use it. */
2373 rtx cst ATTRIBUTE_UNUSED;
2375 if (len == 0)
2376 return 1;
2378 if (! (memsetp
2379 ? SET_BY_PIECES_P (len, align)
2380 : STORE_BY_PIECES_P (len, align)))
2381 return 0;
2383 align = alignment_for_piecewise_move (STORE_MAX_PIECES, align);
2385 /* We would first store what we can in the largest integer mode, then go to
2386 successively smaller modes. */
2388 for (reverse = 0;
2389 reverse <= (HAVE_PRE_DECREMENT || HAVE_POST_DECREMENT);
2390 reverse++)
2392 l = len;
2393 max_size = STORE_MAX_PIECES + 1;
2394 while (max_size > 1)
2396 mode = widest_int_mode_for_size (max_size);
2398 if (mode == VOIDmode)
2399 break;
2401 icode = optab_handler (mov_optab, mode);
2402 if (icode != CODE_FOR_nothing
2403 && align >= GET_MODE_ALIGNMENT (mode))
2405 unsigned int size = GET_MODE_SIZE (mode);
2407 while (l >= size)
2409 if (reverse)
2410 offset -= size;
2412 cst = (*constfun) (constfundata, offset, mode);
2413 if (!targetm.legitimate_constant_p (mode, cst))
2414 return 0;
2416 if (!reverse)
2417 offset += size;
2419 l -= size;
2423 max_size = GET_MODE_SIZE (mode);
2426 /* The code above should have handled everything. */
2427 gcc_assert (!l);
2430 return 1;
2433 /* Generate several move instructions to store LEN bytes generated by
2434 CONSTFUN to block TO. (A MEM rtx with BLKmode). CONSTFUNDATA is a
2435 pointer which will be passed as argument in every CONSTFUN call.
2436 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2437 a memset operation and false if it's a copy of a constant string.
2438 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
2439 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
2440 stpcpy. */
2443 store_by_pieces (rtx to, unsigned HOST_WIDE_INT len,
2444 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2445 void *constfundata, unsigned int align, bool memsetp, int endp)
2447 enum machine_mode to_addr_mode
2448 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to));
2449 struct store_by_pieces_d data;
2451 if (len == 0)
2453 gcc_assert (endp != 2);
2454 return to;
2457 gcc_assert (memsetp
2458 ? SET_BY_PIECES_P (len, align)
2459 : STORE_BY_PIECES_P (len, align));
2460 data.constfun = constfun;
2461 data.constfundata = constfundata;
2462 data.len = len;
2463 data.to = to;
2464 store_by_pieces_1 (&data, align);
2465 if (endp)
2467 rtx to1;
2469 gcc_assert (!data.reverse);
2470 if (data.autinc_to)
2472 if (endp == 2)
2474 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
2475 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
2476 else
2477 data.to_addr = copy_to_mode_reg (to_addr_mode,
2478 plus_constant (data.to_addr,
2479 -1));
2481 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
2482 data.offset);
2484 else
2486 if (endp == 2)
2487 --data.offset;
2488 to1 = adjust_address (data.to, QImode, data.offset);
2490 return to1;
2492 else
2493 return data.to;
2496 /* Generate several move instructions to clear LEN bytes of block TO. (A MEM
2497 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2499 static void
2500 clear_by_pieces (rtx to, unsigned HOST_WIDE_INT len, unsigned int align)
2502 struct store_by_pieces_d data;
2504 if (len == 0)
2505 return;
2507 data.constfun = clear_by_pieces_1;
2508 data.constfundata = NULL;
2509 data.len = len;
2510 data.to = to;
2511 store_by_pieces_1 (&data, align);
2514 /* Callback routine for clear_by_pieces.
2515 Return const0_rtx unconditionally. */
2517 static rtx
2518 clear_by_pieces_1 (void *data ATTRIBUTE_UNUSED,
2519 HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
2520 enum machine_mode mode ATTRIBUTE_UNUSED)
2522 return const0_rtx;
2525 /* Subroutine of clear_by_pieces and store_by_pieces.
2526 Generate several move instructions to store LEN bytes of block TO. (A MEM
2527 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2529 static void
2530 store_by_pieces_1 (struct store_by_pieces_d *data ATTRIBUTE_UNUSED,
2531 unsigned int align ATTRIBUTE_UNUSED)
2533 enum machine_mode to_addr_mode
2534 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (data->to));
2535 rtx to_addr = XEXP (data->to, 0);
2536 unsigned int max_size = STORE_MAX_PIECES + 1;
2537 enum insn_code icode;
2539 data->offset = 0;
2540 data->to_addr = to_addr;
2541 data->autinc_to
2542 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
2543 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
2545 data->explicit_inc_to = 0;
2546 data->reverse
2547 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
2548 if (data->reverse)
2549 data->offset = data->len;
2551 /* If storing requires more than two move insns,
2552 copy addresses to registers (to make displacements shorter)
2553 and use post-increment if available. */
2554 if (!data->autinc_to
2555 && move_by_pieces_ninsns (data->len, align, max_size) > 2)
2557 /* Determine the main mode we'll be using.
2558 MODE might not be used depending on the definitions of the
2559 USE_* macros below. */
2560 enum machine_mode mode ATTRIBUTE_UNUSED
2561 = widest_int_mode_for_size (max_size);
2563 if (USE_STORE_PRE_DECREMENT (mode) && data->reverse && ! data->autinc_to)
2565 data->to_addr = copy_to_mode_reg (to_addr_mode,
2566 plus_constant (to_addr, data->len));
2567 data->autinc_to = 1;
2568 data->explicit_inc_to = -1;
2571 if (USE_STORE_POST_INCREMENT (mode) && ! data->reverse
2572 && ! data->autinc_to)
2574 data->to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
2575 data->autinc_to = 1;
2576 data->explicit_inc_to = 1;
2579 if ( !data->autinc_to && CONSTANT_P (to_addr))
2580 data->to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
2583 align = alignment_for_piecewise_move (STORE_MAX_PIECES, align);
2585 /* First store what we can in the largest integer mode, then go to
2586 successively smaller modes. */
2588 while (max_size > 1)
2590 enum machine_mode mode = widest_int_mode_for_size (max_size);
2592 if (mode == VOIDmode)
2593 break;
2595 icode = optab_handler (mov_optab, mode);
2596 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
2597 store_by_pieces_2 (GEN_FCN (icode), mode, data);
2599 max_size = GET_MODE_SIZE (mode);
2602 /* The code above should have handled everything. */
2603 gcc_assert (!data->len);
2606 /* Subroutine of store_by_pieces_1. Store as many bytes as appropriate
2607 with move instructions for mode MODE. GENFUN is the gen_... function
2608 to make a move insn for that mode. DATA has all the other info. */
2610 static void
2611 store_by_pieces_2 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
2612 struct store_by_pieces_d *data)
2614 unsigned int size = GET_MODE_SIZE (mode);
2615 rtx to1, cst;
2617 while (data->len >= size)
2619 if (data->reverse)
2620 data->offset -= size;
2622 if (data->autinc_to)
2623 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
2624 data->offset);
2625 else
2626 to1 = adjust_address (data->to, mode, data->offset);
2628 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
2629 emit_insn (gen_add2_insn (data->to_addr,
2630 GEN_INT (-(HOST_WIDE_INT) size)));
2632 cst = (*data->constfun) (data->constfundata, data->offset, mode);
2633 emit_insn ((*genfun) (to1, cst));
2635 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
2636 emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
2638 if (! data->reverse)
2639 data->offset += size;
2641 data->len -= size;
2645 /* Write zeros through the storage of OBJECT. If OBJECT has BLKmode, SIZE is
2646 its length in bytes. */
2649 clear_storage_hints (rtx object, rtx size, enum block_op_methods method,
2650 unsigned int expected_align, HOST_WIDE_INT expected_size)
2652 enum machine_mode mode = GET_MODE (object);
2653 unsigned int align;
2655 gcc_assert (method == BLOCK_OP_NORMAL || method == BLOCK_OP_TAILCALL);
2657 /* If OBJECT is not BLKmode and SIZE is the same size as its mode,
2658 just move a zero. Otherwise, do this a piece at a time. */
2659 if (mode != BLKmode
2660 && CONST_INT_P (size)
2661 && INTVAL (size) == (HOST_WIDE_INT) GET_MODE_SIZE (mode))
2663 rtx zero = CONST0_RTX (mode);
2664 if (zero != NULL)
2666 emit_move_insn (object, zero);
2667 return NULL;
2670 if (COMPLEX_MODE_P (mode))
2672 zero = CONST0_RTX (GET_MODE_INNER (mode));
2673 if (zero != NULL)
2675 write_complex_part (object, zero, 0);
2676 write_complex_part (object, zero, 1);
2677 return NULL;
2682 if (size == const0_rtx)
2683 return NULL;
2685 align = MEM_ALIGN (object);
2687 if (CONST_INT_P (size)
2688 && CLEAR_BY_PIECES_P (INTVAL (size), align))
2689 clear_by_pieces (object, INTVAL (size), align);
2690 else if (set_storage_via_setmem (object, size, const0_rtx, align,
2691 expected_align, expected_size))
2693 else if (ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (object)))
2694 return set_storage_via_libcall (object, size, const0_rtx,
2695 method == BLOCK_OP_TAILCALL);
2696 else
2697 gcc_unreachable ();
2699 return NULL;
2703 clear_storage (rtx object, rtx size, enum block_op_methods method)
2705 return clear_storage_hints (object, size, method, 0, -1);
2709 /* A subroutine of clear_storage. Expand a call to memset.
2710 Return the return value of memset, 0 otherwise. */
2713 set_storage_via_libcall (rtx object, rtx size, rtx val, bool tailcall)
2715 tree call_expr, fn, object_tree, size_tree, val_tree;
2716 enum machine_mode size_mode;
2717 rtx retval;
2719 /* Emit code to copy OBJECT and SIZE into new pseudos. We can then
2720 place those into new pseudos into a VAR_DECL and use them later. */
2722 object = copy_to_mode_reg (Pmode, XEXP (object, 0));
2724 size_mode = TYPE_MODE (sizetype);
2725 size = convert_to_mode (size_mode, size, 1);
2726 size = copy_to_mode_reg (size_mode, size);
2728 /* It is incorrect to use the libcall calling conventions to call
2729 memset in this context. This could be a user call to memset and
2730 the user may wish to examine the return value from memset. For
2731 targets where libcalls and normal calls have different conventions
2732 for returning pointers, we could end up generating incorrect code. */
2734 object_tree = make_tree (ptr_type_node, object);
2735 if (!CONST_INT_P (val))
2736 val = convert_to_mode (TYPE_MODE (integer_type_node), val, 1);
2737 size_tree = make_tree (sizetype, size);
2738 val_tree = make_tree (integer_type_node, val);
2740 fn = clear_storage_libcall_fn (true);
2741 call_expr = build_call_expr (fn, 3, object_tree, val_tree, size_tree);
2742 CALL_EXPR_TAILCALL (call_expr) = tailcall;
2744 retval = expand_normal (call_expr);
2746 return retval;
2749 /* A subroutine of set_storage_via_libcall. Create the tree node
2750 for the function we use for block clears. The first time FOR_CALL
2751 is true, we call assemble_external. */
2753 tree block_clear_fn;
2755 void
2756 init_block_clear_fn (const char *asmspec)
2758 if (!block_clear_fn)
2760 tree fn, args;
2762 fn = get_identifier ("memset");
2763 args = build_function_type_list (ptr_type_node, ptr_type_node,
2764 integer_type_node, sizetype,
2765 NULL_TREE);
2767 fn = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, fn, args);
2768 DECL_EXTERNAL (fn) = 1;
2769 TREE_PUBLIC (fn) = 1;
2770 DECL_ARTIFICIAL (fn) = 1;
2771 TREE_NOTHROW (fn) = 1;
2772 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
2773 DECL_VISIBILITY_SPECIFIED (fn) = 1;
2775 block_clear_fn = fn;
2778 if (asmspec)
2779 set_user_assembler_name (block_clear_fn, asmspec);
2782 static tree
2783 clear_storage_libcall_fn (int for_call)
2785 static bool emitted_extern;
2787 if (!block_clear_fn)
2788 init_block_clear_fn (NULL);
2790 if (for_call && !emitted_extern)
2792 emitted_extern = true;
2793 make_decl_rtl (block_clear_fn);
2794 assemble_external (block_clear_fn);
2797 return block_clear_fn;
2800 /* Expand a setmem pattern; return true if successful. */
2802 bool
2803 set_storage_via_setmem (rtx object, rtx size, rtx val, unsigned int align,
2804 unsigned int expected_align, HOST_WIDE_INT expected_size)
2806 /* Try the most limited insn first, because there's no point
2807 including more than one in the machine description unless
2808 the more limited one has some advantage. */
2810 enum machine_mode mode;
2812 if (expected_align < align)
2813 expected_align = align;
2815 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
2816 mode = GET_MODE_WIDER_MODE (mode))
2818 enum insn_code code = direct_optab_handler (setmem_optab, mode);
2820 if (code != CODE_FOR_nothing
2821 /* We don't need MODE to be narrower than
2822 BITS_PER_HOST_WIDE_INT here because if SIZE is less than
2823 the mode mask, as it is returned by the macro, it will
2824 definitely be less than the actual mode mask. */
2825 && ((CONST_INT_P (size)
2826 && ((unsigned HOST_WIDE_INT) INTVAL (size)
2827 <= (GET_MODE_MASK (mode) >> 1)))
2828 || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD))
2830 struct expand_operand ops[6];
2831 unsigned int nops;
2833 nops = insn_data[(int) code].n_generator_args;
2834 gcc_assert (nops == 4 || nops == 6);
2836 create_fixed_operand (&ops[0], object);
2837 /* The check above guarantees that this size conversion is valid. */
2838 create_convert_operand_to (&ops[1], size, mode, true);
2839 create_convert_operand_from (&ops[2], val, byte_mode, true);
2840 create_integer_operand (&ops[3], align / BITS_PER_UNIT);
2841 if (nops == 6)
2843 create_integer_operand (&ops[4], expected_align / BITS_PER_UNIT);
2844 create_integer_operand (&ops[5], expected_size);
2846 if (maybe_expand_insn (code, nops, ops))
2847 return true;
2851 return false;
2855 /* Write to one of the components of the complex value CPLX. Write VAL to
2856 the real part if IMAG_P is false, and the imaginary part if its true. */
2858 static void
2859 write_complex_part (rtx cplx, rtx val, bool imag_p)
2861 enum machine_mode cmode;
2862 enum machine_mode imode;
2863 unsigned ibitsize;
2865 if (GET_CODE (cplx) == CONCAT)
2867 emit_move_insn (XEXP (cplx, imag_p), val);
2868 return;
2871 cmode = GET_MODE (cplx);
2872 imode = GET_MODE_INNER (cmode);
2873 ibitsize = GET_MODE_BITSIZE (imode);
2875 /* For MEMs simplify_gen_subreg may generate an invalid new address
2876 because, e.g., the original address is considered mode-dependent
2877 by the target, which restricts simplify_subreg from invoking
2878 adjust_address_nv. Instead of preparing fallback support for an
2879 invalid address, we call adjust_address_nv directly. */
2880 if (MEM_P (cplx))
2882 emit_move_insn (adjust_address_nv (cplx, imode,
2883 imag_p ? GET_MODE_SIZE (imode) : 0),
2884 val);
2885 return;
2888 /* If the sub-object is at least word sized, then we know that subregging
2889 will work. This special case is important, since store_bit_field
2890 wants to operate on integer modes, and there's rarely an OImode to
2891 correspond to TCmode. */
2892 if (ibitsize >= BITS_PER_WORD
2893 /* For hard regs we have exact predicates. Assume we can split
2894 the original object if it spans an even number of hard regs.
2895 This special case is important for SCmode on 64-bit platforms
2896 where the natural size of floating-point regs is 32-bit. */
2897 || (REG_P (cplx)
2898 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2899 && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0))
2901 rtx part = simplify_gen_subreg (imode, cplx, cmode,
2902 imag_p ? GET_MODE_SIZE (imode) : 0);
2903 if (part)
2905 emit_move_insn (part, val);
2906 return;
2908 else
2909 /* simplify_gen_subreg may fail for sub-word MEMs. */
2910 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2913 store_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0, 0, 0, imode, val);
2916 /* Extract one of the components of the complex value CPLX. Extract the
2917 real part if IMAG_P is false, and the imaginary part if it's true. */
2919 static rtx
2920 read_complex_part (rtx cplx, bool imag_p)
2922 enum machine_mode cmode, imode;
2923 unsigned ibitsize;
2925 if (GET_CODE (cplx) == CONCAT)
2926 return XEXP (cplx, imag_p);
2928 cmode = GET_MODE (cplx);
2929 imode = GET_MODE_INNER (cmode);
2930 ibitsize = GET_MODE_BITSIZE (imode);
2932 /* Special case reads from complex constants that got spilled to memory. */
2933 if (MEM_P (cplx) && GET_CODE (XEXP (cplx, 0)) == SYMBOL_REF)
2935 tree decl = SYMBOL_REF_DECL (XEXP (cplx, 0));
2936 if (decl && TREE_CODE (decl) == COMPLEX_CST)
2938 tree part = imag_p ? TREE_IMAGPART (decl) : TREE_REALPART (decl);
2939 if (CONSTANT_CLASS_P (part))
2940 return expand_expr (part, NULL_RTX, imode, EXPAND_NORMAL);
2944 /* For MEMs simplify_gen_subreg may generate an invalid new address
2945 because, e.g., the original address is considered mode-dependent
2946 by the target, which restricts simplify_subreg from invoking
2947 adjust_address_nv. Instead of preparing fallback support for an
2948 invalid address, we call adjust_address_nv directly. */
2949 if (MEM_P (cplx))
2950 return adjust_address_nv (cplx, imode,
2951 imag_p ? GET_MODE_SIZE (imode) : 0);
2953 /* If the sub-object is at least word sized, then we know that subregging
2954 will work. This special case is important, since extract_bit_field
2955 wants to operate on integer modes, and there's rarely an OImode to
2956 correspond to TCmode. */
2957 if (ibitsize >= BITS_PER_WORD
2958 /* For hard regs we have exact predicates. Assume we can split
2959 the original object if it spans an even number of hard regs.
2960 This special case is important for SCmode on 64-bit platforms
2961 where the natural size of floating-point regs is 32-bit. */
2962 || (REG_P (cplx)
2963 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2964 && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0))
2966 rtx ret = simplify_gen_subreg (imode, cplx, cmode,
2967 imag_p ? GET_MODE_SIZE (imode) : 0);
2968 if (ret)
2969 return ret;
2970 else
2971 /* simplify_gen_subreg may fail for sub-word MEMs. */
2972 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2975 return extract_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0,
2976 true, false, NULL_RTX, imode, imode);
2979 /* A subroutine of emit_move_insn_1. Yet another lowpart generator.
2980 NEW_MODE and OLD_MODE are the same size. Return NULL if X cannot be
2981 represented in NEW_MODE. If FORCE is true, this will never happen, as
2982 we'll force-create a SUBREG if needed. */
2984 static rtx
2985 emit_move_change_mode (enum machine_mode new_mode,
2986 enum machine_mode old_mode, rtx x, bool force)
2988 rtx ret;
2990 if (push_operand (x, GET_MODE (x)))
2992 ret = gen_rtx_MEM (new_mode, XEXP (x, 0));
2993 MEM_COPY_ATTRIBUTES (ret, x);
2995 else if (MEM_P (x))
2997 /* We don't have to worry about changing the address since the
2998 size in bytes is supposed to be the same. */
2999 if (reload_in_progress)
3001 /* Copy the MEM to change the mode and move any
3002 substitutions from the old MEM to the new one. */
3003 ret = adjust_address_nv (x, new_mode, 0);
3004 copy_replacements (x, ret);
3006 else
3007 ret = adjust_address (x, new_mode, 0);
3009 else
3011 /* Note that we do want simplify_subreg's behavior of validating
3012 that the new mode is ok for a hard register. If we were to use
3013 simplify_gen_subreg, we would create the subreg, but would
3014 probably run into the target not being able to implement it. */
3015 /* Except, of course, when FORCE is true, when this is exactly what
3016 we want. Which is needed for CCmodes on some targets. */
3017 if (force)
3018 ret = simplify_gen_subreg (new_mode, x, old_mode, 0);
3019 else
3020 ret = simplify_subreg (new_mode, x, old_mode, 0);
3023 return ret;
3026 /* A subroutine of emit_move_insn_1. Generate a move from Y into X using
3027 an integer mode of the same size as MODE. Returns the instruction
3028 emitted, or NULL if such a move could not be generated. */
3030 static rtx
3031 emit_move_via_integer (enum machine_mode mode, rtx x, rtx y, bool force)
3033 enum machine_mode imode;
3034 enum insn_code code;
3036 /* There must exist a mode of the exact size we require. */
3037 imode = int_mode_for_mode (mode);
3038 if (imode == BLKmode)
3039 return NULL_RTX;
3041 /* The target must support moves in this mode. */
3042 code = optab_handler (mov_optab, imode);
3043 if (code == CODE_FOR_nothing)
3044 return NULL_RTX;
3046 x = emit_move_change_mode (imode, mode, x, force);
3047 if (x == NULL_RTX)
3048 return NULL_RTX;
3049 y = emit_move_change_mode (imode, mode, y, force);
3050 if (y == NULL_RTX)
3051 return NULL_RTX;
3052 return emit_insn (GEN_FCN (code) (x, y));
3055 /* A subroutine of emit_move_insn_1. X is a push_operand in MODE.
3056 Return an equivalent MEM that does not use an auto-increment. */
3058 static rtx
3059 emit_move_resolve_push (enum machine_mode mode, rtx x)
3061 enum rtx_code code = GET_CODE (XEXP (x, 0));
3062 HOST_WIDE_INT adjust;
3063 rtx temp;
3065 adjust = GET_MODE_SIZE (mode);
3066 #ifdef PUSH_ROUNDING
3067 adjust = PUSH_ROUNDING (adjust);
3068 #endif
3069 if (code == PRE_DEC || code == POST_DEC)
3070 adjust = -adjust;
3071 else if (code == PRE_MODIFY || code == POST_MODIFY)
3073 rtx expr = XEXP (XEXP (x, 0), 1);
3074 HOST_WIDE_INT val;
3076 gcc_assert (GET_CODE (expr) == PLUS || GET_CODE (expr) == MINUS);
3077 gcc_assert (CONST_INT_P (XEXP (expr, 1)));
3078 val = INTVAL (XEXP (expr, 1));
3079 if (GET_CODE (expr) == MINUS)
3080 val = -val;
3081 gcc_assert (adjust == val || adjust == -val);
3082 adjust = val;
3085 /* Do not use anti_adjust_stack, since we don't want to update
3086 stack_pointer_delta. */
3087 temp = expand_simple_binop (Pmode, PLUS, stack_pointer_rtx,
3088 GEN_INT (adjust), stack_pointer_rtx,
3089 0, OPTAB_LIB_WIDEN);
3090 if (temp != stack_pointer_rtx)
3091 emit_move_insn (stack_pointer_rtx, temp);
3093 switch (code)
3095 case PRE_INC:
3096 case PRE_DEC:
3097 case PRE_MODIFY:
3098 temp = stack_pointer_rtx;
3099 break;
3100 case POST_INC:
3101 case POST_DEC:
3102 case POST_MODIFY:
3103 temp = plus_constant (stack_pointer_rtx, -adjust);
3104 break;
3105 default:
3106 gcc_unreachable ();
3109 return replace_equiv_address (x, temp);
3112 /* A subroutine of emit_move_complex. Generate a move from Y into X.
3113 X is known to satisfy push_operand, and MODE is known to be complex.
3114 Returns the last instruction emitted. */
3117 emit_move_complex_push (enum machine_mode mode, rtx x, rtx y)
3119 enum machine_mode submode = GET_MODE_INNER (mode);
3120 bool imag_first;
3122 #ifdef PUSH_ROUNDING
3123 unsigned int submodesize = GET_MODE_SIZE (submode);
3125 /* In case we output to the stack, but the size is smaller than the
3126 machine can push exactly, we need to use move instructions. */
3127 if (PUSH_ROUNDING (submodesize) != submodesize)
3129 x = emit_move_resolve_push (mode, x);
3130 return emit_move_insn (x, y);
3132 #endif
3134 /* Note that the real part always precedes the imag part in memory
3135 regardless of machine's endianness. */
3136 switch (GET_CODE (XEXP (x, 0)))
3138 case PRE_DEC:
3139 case POST_DEC:
3140 imag_first = true;
3141 break;
3142 case PRE_INC:
3143 case POST_INC:
3144 imag_first = false;
3145 break;
3146 default:
3147 gcc_unreachable ();
3150 emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3151 read_complex_part (y, imag_first));
3152 return emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3153 read_complex_part (y, !imag_first));
3156 /* A subroutine of emit_move_complex. Perform the move from Y to X
3157 via two moves of the parts. Returns the last instruction emitted. */
3160 emit_move_complex_parts (rtx x, rtx y)
3162 /* Show the output dies here. This is necessary for SUBREGs
3163 of pseudos since we cannot track their lifetimes correctly;
3164 hard regs shouldn't appear here except as return values. */
3165 if (!reload_completed && !reload_in_progress
3166 && REG_P (x) && !reg_overlap_mentioned_p (x, y))
3167 emit_clobber (x);
3169 write_complex_part (x, read_complex_part (y, false), false);
3170 write_complex_part (x, read_complex_part (y, true), true);
3172 return get_last_insn ();
3175 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3176 MODE is known to be complex. Returns the last instruction emitted. */
3178 static rtx
3179 emit_move_complex (enum machine_mode mode, rtx x, rtx y)
3181 bool try_int;
3183 /* Need to take special care for pushes, to maintain proper ordering
3184 of the data, and possibly extra padding. */
3185 if (push_operand (x, mode))
3186 return emit_move_complex_push (mode, x, y);
3188 /* See if we can coerce the target into moving both values at once. */
3190 /* Move floating point as parts. */
3191 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
3192 && optab_handler (mov_optab, GET_MODE_INNER (mode)) != CODE_FOR_nothing)
3193 try_int = false;
3194 /* Not possible if the values are inherently not adjacent. */
3195 else if (GET_CODE (x) == CONCAT || GET_CODE (y) == CONCAT)
3196 try_int = false;
3197 /* Is possible if both are registers (or subregs of registers). */
3198 else if (register_operand (x, mode) && register_operand (y, mode))
3199 try_int = true;
3200 /* If one of the operands is a memory, and alignment constraints
3201 are friendly enough, we may be able to do combined memory operations.
3202 We do not attempt this if Y is a constant because that combination is
3203 usually better with the by-parts thing below. */
3204 else if ((MEM_P (x) ? !CONSTANT_P (y) : MEM_P (y))
3205 && (!STRICT_ALIGNMENT
3206 || get_mode_alignment (mode) == BIGGEST_ALIGNMENT))
3207 try_int = true;
3208 else
3209 try_int = false;
3211 if (try_int)
3213 rtx ret;
3215 /* For memory to memory moves, optimal behavior can be had with the
3216 existing block move logic. */
3217 if (MEM_P (x) && MEM_P (y))
3219 emit_block_move (x, y, GEN_INT (GET_MODE_SIZE (mode)),
3220 BLOCK_OP_NO_LIBCALL);
3221 return get_last_insn ();
3224 ret = emit_move_via_integer (mode, x, y, true);
3225 if (ret)
3226 return ret;
3229 return emit_move_complex_parts (x, y);
3232 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3233 MODE is known to be MODE_CC. Returns the last instruction emitted. */
3235 static rtx
3236 emit_move_ccmode (enum machine_mode mode, rtx x, rtx y)
3238 rtx ret;
3240 /* Assume all MODE_CC modes are equivalent; if we have movcc, use it. */
3241 if (mode != CCmode)
3243 enum insn_code code = optab_handler (mov_optab, CCmode);
3244 if (code != CODE_FOR_nothing)
3246 x = emit_move_change_mode (CCmode, mode, x, true);
3247 y = emit_move_change_mode (CCmode, mode, y, true);
3248 return emit_insn (GEN_FCN (code) (x, y));
3252 /* Otherwise, find the MODE_INT mode of the same width. */
3253 ret = emit_move_via_integer (mode, x, y, false);
3254 gcc_assert (ret != NULL);
3255 return ret;
3258 /* Return true if word I of OP lies entirely in the
3259 undefined bits of a paradoxical subreg. */
3261 static bool
3262 undefined_operand_subword_p (const_rtx op, int i)
3264 enum machine_mode innermode, innermostmode;
3265 int offset;
3266 if (GET_CODE (op) != SUBREG)
3267 return false;
3268 innermode = GET_MODE (op);
3269 innermostmode = GET_MODE (SUBREG_REG (op));
3270 offset = i * UNITS_PER_WORD + SUBREG_BYTE (op);
3271 /* The SUBREG_BYTE represents offset, as if the value were stored in
3272 memory, except for a paradoxical subreg where we define
3273 SUBREG_BYTE to be 0; undo this exception as in
3274 simplify_subreg. */
3275 if (SUBREG_BYTE (op) == 0
3276 && GET_MODE_SIZE (innermostmode) < GET_MODE_SIZE (innermode))
3278 int difference = (GET_MODE_SIZE (innermostmode) - GET_MODE_SIZE (innermode));
3279 if (WORDS_BIG_ENDIAN)
3280 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
3281 if (BYTES_BIG_ENDIAN)
3282 offset += difference % UNITS_PER_WORD;
3284 if (offset >= GET_MODE_SIZE (innermostmode)
3285 || offset <= -GET_MODE_SIZE (word_mode))
3286 return true;
3287 return false;
3290 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3291 MODE is any multi-word or full-word mode that lacks a move_insn
3292 pattern. Note that you will get better code if you define such
3293 patterns, even if they must turn into multiple assembler instructions. */
3295 static rtx
3296 emit_move_multi_word (enum machine_mode mode, rtx x, rtx y)
3298 rtx last_insn = 0;
3299 rtx seq, inner;
3300 bool need_clobber;
3301 int i;
3303 gcc_assert (GET_MODE_SIZE (mode) >= UNITS_PER_WORD);
3305 /* If X is a push on the stack, do the push now and replace
3306 X with a reference to the stack pointer. */
3307 if (push_operand (x, mode))
3308 x = emit_move_resolve_push (mode, x);
3310 /* If we are in reload, see if either operand is a MEM whose address
3311 is scheduled for replacement. */
3312 if (reload_in_progress && MEM_P (x)
3313 && (inner = find_replacement (&XEXP (x, 0))) != XEXP (x, 0))
3314 x = replace_equiv_address_nv (x, inner);
3315 if (reload_in_progress && MEM_P (y)
3316 && (inner = find_replacement (&XEXP (y, 0))) != XEXP (y, 0))
3317 y = replace_equiv_address_nv (y, inner);
3319 start_sequence ();
3321 need_clobber = false;
3322 for (i = 0;
3323 i < (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
3324 i++)
3326 rtx xpart = operand_subword (x, i, 1, mode);
3327 rtx ypart;
3329 /* Do not generate code for a move if it would come entirely
3330 from the undefined bits of a paradoxical subreg. */
3331 if (undefined_operand_subword_p (y, i))
3332 continue;
3334 ypart = operand_subword (y, i, 1, mode);
3336 /* If we can't get a part of Y, put Y into memory if it is a
3337 constant. Otherwise, force it into a register. Then we must
3338 be able to get a part of Y. */
3339 if (ypart == 0 && CONSTANT_P (y))
3341 y = use_anchored_address (force_const_mem (mode, y));
3342 ypart = operand_subword (y, i, 1, mode);
3344 else if (ypart == 0)
3345 ypart = operand_subword_force (y, i, mode);
3347 gcc_assert (xpart && ypart);
3349 need_clobber |= (GET_CODE (xpart) == SUBREG);
3351 last_insn = emit_move_insn (xpart, ypart);
3354 seq = get_insns ();
3355 end_sequence ();
3357 /* Show the output dies here. This is necessary for SUBREGs
3358 of pseudos since we cannot track their lifetimes correctly;
3359 hard regs shouldn't appear here except as return values.
3360 We never want to emit such a clobber after reload. */
3361 if (x != y
3362 && ! (reload_in_progress || reload_completed)
3363 && need_clobber != 0)
3364 emit_clobber (x);
3366 emit_insn (seq);
3368 return last_insn;
3371 /* Low level part of emit_move_insn.
3372 Called just like emit_move_insn, but assumes X and Y
3373 are basically valid. */
3376 emit_move_insn_1 (rtx x, rtx y)
3378 enum machine_mode mode = GET_MODE (x);
3379 enum insn_code code;
3381 gcc_assert ((unsigned int) mode < (unsigned int) MAX_MACHINE_MODE);
3383 code = optab_handler (mov_optab, mode);
3384 if (code != CODE_FOR_nothing)
3385 return emit_insn (GEN_FCN (code) (x, y));
3387 /* Expand complex moves by moving real part and imag part. */
3388 if (COMPLEX_MODE_P (mode))
3389 return emit_move_complex (mode, x, y);
3391 if (GET_MODE_CLASS (mode) == MODE_DECIMAL_FLOAT
3392 || ALL_FIXED_POINT_MODE_P (mode))
3394 rtx result = emit_move_via_integer (mode, x, y, true);
3396 /* If we can't find an integer mode, use multi words. */
3397 if (result)
3398 return result;
3399 else
3400 return emit_move_multi_word (mode, x, y);
3403 if (GET_MODE_CLASS (mode) == MODE_CC)
3404 return emit_move_ccmode (mode, x, y);
3406 /* Try using a move pattern for the corresponding integer mode. This is
3407 only safe when simplify_subreg can convert MODE constants into integer
3408 constants. At present, it can only do this reliably if the value
3409 fits within a HOST_WIDE_INT. */
3410 if (!CONSTANT_P (y) || GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
3412 rtx ret = emit_move_via_integer (mode, x, y, false);
3413 if (ret)
3414 return ret;
3417 return emit_move_multi_word (mode, x, y);
3420 /* Generate code to copy Y into X.
3421 Both Y and X must have the same mode, except that
3422 Y can be a constant with VOIDmode.
3423 This mode cannot be BLKmode; use emit_block_move for that.
3425 Return the last instruction emitted. */
3428 emit_move_insn (rtx x, rtx y)
3430 enum machine_mode mode = GET_MODE (x);
3431 rtx y_cst = NULL_RTX;
3432 rtx last_insn, set;
3434 gcc_assert (mode != BLKmode
3435 && (GET_MODE (y) == mode || GET_MODE (y) == VOIDmode));
3437 if (CONSTANT_P (y))
3439 if (optimize
3440 && SCALAR_FLOAT_MODE_P (GET_MODE (x))
3441 && (last_insn = compress_float_constant (x, y)))
3442 return last_insn;
3444 y_cst = y;
3446 if (!targetm.legitimate_constant_p (mode, y))
3448 y = force_const_mem (mode, y);
3450 /* If the target's cannot_force_const_mem prevented the spill,
3451 assume that the target's move expanders will also take care
3452 of the non-legitimate constant. */
3453 if (!y)
3454 y = y_cst;
3455 else
3456 y = use_anchored_address (y);
3460 /* If X or Y are memory references, verify that their addresses are valid
3461 for the machine. */
3462 if (MEM_P (x)
3463 && (! memory_address_addr_space_p (GET_MODE (x), XEXP (x, 0),
3464 MEM_ADDR_SPACE (x))
3465 && ! push_operand (x, GET_MODE (x))))
3466 x = validize_mem (x);
3468 if (MEM_P (y)
3469 && ! memory_address_addr_space_p (GET_MODE (y), XEXP (y, 0),
3470 MEM_ADDR_SPACE (y)))
3471 y = validize_mem (y);
3473 gcc_assert (mode != BLKmode);
3475 last_insn = emit_move_insn_1 (x, y);
3477 if (y_cst && REG_P (x)
3478 && (set = single_set (last_insn)) != NULL_RTX
3479 && SET_DEST (set) == x
3480 && ! rtx_equal_p (y_cst, SET_SRC (set)))
3481 set_unique_reg_note (last_insn, REG_EQUAL, copy_rtx (y_cst));
3483 return last_insn;
3486 /* If Y is representable exactly in a narrower mode, and the target can
3487 perform the extension directly from constant or memory, then emit the
3488 move as an extension. */
3490 static rtx
3491 compress_float_constant (rtx x, rtx y)
3493 enum machine_mode dstmode = GET_MODE (x);
3494 enum machine_mode orig_srcmode = GET_MODE (y);
3495 enum machine_mode srcmode;
3496 REAL_VALUE_TYPE r;
3497 int oldcost, newcost;
3498 bool speed = optimize_insn_for_speed_p ();
3500 REAL_VALUE_FROM_CONST_DOUBLE (r, y);
3502 if (targetm.legitimate_constant_p (dstmode, y))
3503 oldcost = set_src_cost (y, speed);
3504 else
3505 oldcost = set_src_cost (force_const_mem (dstmode, y), speed);
3507 for (srcmode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_srcmode));
3508 srcmode != orig_srcmode;
3509 srcmode = GET_MODE_WIDER_MODE (srcmode))
3511 enum insn_code ic;
3512 rtx trunc_y, last_insn;
3514 /* Skip if the target can't extend this way. */
3515 ic = can_extend_p (dstmode, srcmode, 0);
3516 if (ic == CODE_FOR_nothing)
3517 continue;
3519 /* Skip if the narrowed value isn't exact. */
3520 if (! exact_real_truncate (srcmode, &r))
3521 continue;
3523 trunc_y = CONST_DOUBLE_FROM_REAL_VALUE (r, srcmode);
3525 if (targetm.legitimate_constant_p (srcmode, trunc_y))
3527 /* Skip if the target needs extra instructions to perform
3528 the extension. */
3529 if (!insn_operand_matches (ic, 1, trunc_y))
3530 continue;
3531 /* This is valid, but may not be cheaper than the original. */
3532 newcost = set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y),
3533 speed);
3534 if (oldcost < newcost)
3535 continue;
3537 else if (float_extend_from_mem[dstmode][srcmode])
3539 trunc_y = force_const_mem (srcmode, trunc_y);
3540 /* This is valid, but may not be cheaper than the original. */
3541 newcost = set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y),
3542 speed);
3543 if (oldcost < newcost)
3544 continue;
3545 trunc_y = validize_mem (trunc_y);
3547 else
3548 continue;
3550 /* For CSE's benefit, force the compressed constant pool entry
3551 into a new pseudo. This constant may be used in different modes,
3552 and if not, combine will put things back together for us. */
3553 trunc_y = force_reg (srcmode, trunc_y);
3554 emit_unop_insn (ic, x, trunc_y, UNKNOWN);
3555 last_insn = get_last_insn ();
3557 if (REG_P (x))
3558 set_unique_reg_note (last_insn, REG_EQUAL, y);
3560 return last_insn;
3563 return NULL_RTX;
3566 /* Pushing data onto the stack. */
3568 /* Push a block of length SIZE (perhaps variable)
3569 and return an rtx to address the beginning of the block.
3570 The value may be virtual_outgoing_args_rtx.
3572 EXTRA is the number of bytes of padding to push in addition to SIZE.
3573 BELOW nonzero means this padding comes at low addresses;
3574 otherwise, the padding comes at high addresses. */
3577 push_block (rtx size, int extra, int below)
3579 rtx temp;
3581 size = convert_modes (Pmode, ptr_mode, size, 1);
3582 if (CONSTANT_P (size))
3583 anti_adjust_stack (plus_constant (size, extra));
3584 else if (REG_P (size) && extra == 0)
3585 anti_adjust_stack (size);
3586 else
3588 temp = copy_to_mode_reg (Pmode, size);
3589 if (extra != 0)
3590 temp = expand_binop (Pmode, add_optab, temp, GEN_INT (extra),
3591 temp, 0, OPTAB_LIB_WIDEN);
3592 anti_adjust_stack (temp);
3595 #ifndef STACK_GROWS_DOWNWARD
3596 if (0)
3597 #else
3598 if (1)
3599 #endif
3601 temp = virtual_outgoing_args_rtx;
3602 if (extra != 0 && below)
3603 temp = plus_constant (temp, extra);
3605 else
3607 if (CONST_INT_P (size))
3608 temp = plus_constant (virtual_outgoing_args_rtx,
3609 -INTVAL (size) - (below ? 0 : extra));
3610 else if (extra != 0 && !below)
3611 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3612 negate_rtx (Pmode, plus_constant (size, extra)));
3613 else
3614 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3615 negate_rtx (Pmode, size));
3618 return memory_address (GET_CLASS_NARROWEST_MODE (MODE_INT), temp);
3621 /* A utility routine that returns the base of an auto-inc memory, or NULL. */
3623 static rtx
3624 mem_autoinc_base (rtx mem)
3626 if (MEM_P (mem))
3628 rtx addr = XEXP (mem, 0);
3629 if (GET_RTX_CLASS (GET_CODE (addr)) == RTX_AUTOINC)
3630 return XEXP (addr, 0);
3632 return NULL;
3635 /* A utility routine used here, in reload, and in try_split. The insns
3636 after PREV up to and including LAST are known to adjust the stack,
3637 with a final value of END_ARGS_SIZE. Iterate backward from LAST
3638 placing notes as appropriate. PREV may be NULL, indicating the
3639 entire insn sequence prior to LAST should be scanned.
3641 The set of allowed stack pointer modifications is small:
3642 (1) One or more auto-inc style memory references (aka pushes),
3643 (2) One or more addition/subtraction with the SP as destination,
3644 (3) A single move insn with the SP as destination,
3645 (4) A call_pop insn.
3647 Insns in the sequence that do not modify the SP are ignored.
3649 The return value is the amount of adjustment that can be trivially
3650 verified, via immediate operand or auto-inc. If the adjustment
3651 cannot be trivially extracted, the return value is INT_MIN. */
3653 HOST_WIDE_INT
3654 find_args_size_adjust (rtx insn)
3656 rtx dest, set, pat;
3657 int i;
3659 pat = PATTERN (insn);
3660 set = NULL;
3662 /* Look for a call_pop pattern. */
3663 if (CALL_P (insn))
3665 /* We have to allow non-call_pop patterns for the case
3666 of emit_single_push_insn of a TLS address. */
3667 if (GET_CODE (pat) != PARALLEL)
3668 return 0;
3670 /* All call_pop have a stack pointer adjust in the parallel.
3671 The call itself is always first, and the stack adjust is
3672 usually last, so search from the end. */
3673 for (i = XVECLEN (pat, 0) - 1; i > 0; --i)
3675 set = XVECEXP (pat, 0, i);
3676 if (GET_CODE (set) != SET)
3677 continue;
3678 dest = SET_DEST (set);
3679 if (dest == stack_pointer_rtx)
3680 break;
3682 /* We'd better have found the stack pointer adjust. */
3683 if (i == 0)
3684 return 0;
3685 /* Fall through to process the extracted SET and DEST
3686 as if it was a standalone insn. */
3688 else if (GET_CODE (pat) == SET)
3689 set = pat;
3690 else if ((set = single_set (insn)) != NULL)
3692 else if (GET_CODE (pat) == PARALLEL)
3694 /* ??? Some older ports use a parallel with a stack adjust
3695 and a store for a PUSH_ROUNDING pattern, rather than a
3696 PRE/POST_MODIFY rtx. Don't force them to update yet... */
3697 /* ??? See h8300 and m68k, pushqi1. */
3698 for (i = XVECLEN (pat, 0) - 1; i >= 0; --i)
3700 set = XVECEXP (pat, 0, i);
3701 if (GET_CODE (set) != SET)
3702 continue;
3703 dest = SET_DEST (set);
3704 if (dest == stack_pointer_rtx)
3705 break;
3707 /* We do not expect an auto-inc of the sp in the parallel. */
3708 gcc_checking_assert (mem_autoinc_base (dest) != stack_pointer_rtx);
3709 gcc_checking_assert (mem_autoinc_base (SET_SRC (set))
3710 != stack_pointer_rtx);
3712 if (i < 0)
3713 return 0;
3715 else
3716 return 0;
3718 dest = SET_DEST (set);
3720 /* Look for direct modifications of the stack pointer. */
3721 if (REG_P (dest) && REGNO (dest) == STACK_POINTER_REGNUM)
3723 /* Look for a trivial adjustment, otherwise assume nothing. */
3724 /* Note that the SPU restore_stack_block pattern refers to
3725 the stack pointer in V4SImode. Consider that non-trivial. */
3726 if (SCALAR_INT_MODE_P (GET_MODE (dest))
3727 && GET_CODE (SET_SRC (set)) == PLUS
3728 && XEXP (SET_SRC (set), 0) == stack_pointer_rtx
3729 && CONST_INT_P (XEXP (SET_SRC (set), 1)))
3730 return INTVAL (XEXP (SET_SRC (set), 1));
3731 /* ??? Reload can generate no-op moves, which will be cleaned
3732 up later. Recognize it and continue searching. */
3733 else if (rtx_equal_p (dest, SET_SRC (set)))
3734 return 0;
3735 else
3736 return HOST_WIDE_INT_MIN;
3738 else
3740 rtx mem, addr;
3742 /* Otherwise only think about autoinc patterns. */
3743 if (mem_autoinc_base (dest) == stack_pointer_rtx)
3745 mem = dest;
3746 gcc_checking_assert (mem_autoinc_base (SET_SRC (set))
3747 != stack_pointer_rtx);
3749 else if (mem_autoinc_base (SET_SRC (set)) == stack_pointer_rtx)
3750 mem = SET_SRC (set);
3751 else
3752 return 0;
3754 addr = XEXP (mem, 0);
3755 switch (GET_CODE (addr))
3757 case PRE_INC:
3758 case POST_INC:
3759 return GET_MODE_SIZE (GET_MODE (mem));
3760 case PRE_DEC:
3761 case POST_DEC:
3762 return -GET_MODE_SIZE (GET_MODE (mem));
3763 case PRE_MODIFY:
3764 case POST_MODIFY:
3765 addr = XEXP (addr, 1);
3766 gcc_assert (GET_CODE (addr) == PLUS);
3767 gcc_assert (XEXP (addr, 0) == stack_pointer_rtx);
3768 gcc_assert (CONST_INT_P (XEXP (addr, 1)));
3769 return INTVAL (XEXP (addr, 1));
3770 default:
3771 gcc_unreachable ();
3777 fixup_args_size_notes (rtx prev, rtx last, int end_args_size)
3779 int args_size = end_args_size;
3780 bool saw_unknown = false;
3781 rtx insn;
3783 for (insn = last; insn != prev; insn = PREV_INSN (insn))
3785 HOST_WIDE_INT this_delta;
3787 if (!NONDEBUG_INSN_P (insn))
3788 continue;
3790 this_delta = find_args_size_adjust (insn);
3791 if (this_delta == 0)
3792 continue;
3794 gcc_assert (!saw_unknown);
3795 if (this_delta == HOST_WIDE_INT_MIN)
3796 saw_unknown = true;
3798 add_reg_note (insn, REG_ARGS_SIZE, GEN_INT (args_size));
3799 #ifdef STACK_GROWS_DOWNWARD
3800 this_delta = -this_delta;
3801 #endif
3802 args_size -= this_delta;
3805 return saw_unknown ? INT_MIN : args_size;
3808 #ifdef PUSH_ROUNDING
3809 /* Emit single push insn. */
3811 static void
3812 emit_single_push_insn_1 (enum machine_mode mode, rtx x, tree type)
3814 rtx dest_addr;
3815 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode));
3816 rtx dest;
3817 enum insn_code icode;
3819 stack_pointer_delta += PUSH_ROUNDING (GET_MODE_SIZE (mode));
3820 /* If there is push pattern, use it. Otherwise try old way of throwing
3821 MEM representing push operation to move expander. */
3822 icode = optab_handler (push_optab, mode);
3823 if (icode != CODE_FOR_nothing)
3825 struct expand_operand ops[1];
3827 create_input_operand (&ops[0], x, mode);
3828 if (maybe_expand_insn (icode, 1, ops))
3829 return;
3831 if (GET_MODE_SIZE (mode) == rounded_size)
3832 dest_addr = gen_rtx_fmt_e (STACK_PUSH_CODE, Pmode, stack_pointer_rtx);
3833 /* If we are to pad downward, adjust the stack pointer first and
3834 then store X into the stack location using an offset. This is
3835 because emit_move_insn does not know how to pad; it does not have
3836 access to type. */
3837 else if (FUNCTION_ARG_PADDING (mode, type) == downward)
3839 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode);
3840 HOST_WIDE_INT offset;
3842 emit_move_insn (stack_pointer_rtx,
3843 expand_binop (Pmode,
3844 #ifdef STACK_GROWS_DOWNWARD
3845 sub_optab,
3846 #else
3847 add_optab,
3848 #endif
3849 stack_pointer_rtx,
3850 GEN_INT (rounded_size),
3851 NULL_RTX, 0, OPTAB_LIB_WIDEN));
3853 offset = (HOST_WIDE_INT) padding_size;
3854 #ifdef STACK_GROWS_DOWNWARD
3855 if (STACK_PUSH_CODE == POST_DEC)
3856 /* We have already decremented the stack pointer, so get the
3857 previous value. */
3858 offset += (HOST_WIDE_INT) rounded_size;
3859 #else
3860 if (STACK_PUSH_CODE == POST_INC)
3861 /* We have already incremented the stack pointer, so get the
3862 previous value. */
3863 offset -= (HOST_WIDE_INT) rounded_size;
3864 #endif
3865 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT (offset));
3867 else
3869 #ifdef STACK_GROWS_DOWNWARD
3870 /* ??? This seems wrong if STACK_PUSH_CODE == POST_DEC. */
3871 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3872 GEN_INT (-(HOST_WIDE_INT) rounded_size));
3873 #else
3874 /* ??? This seems wrong if STACK_PUSH_CODE == POST_INC. */
3875 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3876 GEN_INT (rounded_size));
3877 #endif
3878 dest_addr = gen_rtx_PRE_MODIFY (Pmode, stack_pointer_rtx, dest_addr);
3881 dest = gen_rtx_MEM (mode, dest_addr);
3883 if (type != 0)
3885 set_mem_attributes (dest, type, 1);
3887 if (flag_optimize_sibling_calls)
3888 /* Function incoming arguments may overlap with sibling call
3889 outgoing arguments and we cannot allow reordering of reads
3890 from function arguments with stores to outgoing arguments
3891 of sibling calls. */
3892 set_mem_alias_set (dest, 0);
3894 emit_move_insn (dest, x);
3897 /* Emit and annotate a single push insn. */
3899 static void
3900 emit_single_push_insn (enum machine_mode mode, rtx x, tree type)
3902 int delta, old_delta = stack_pointer_delta;
3903 rtx prev = get_last_insn ();
3904 rtx last;
3906 emit_single_push_insn_1 (mode, x, type);
3908 last = get_last_insn ();
3910 /* Notice the common case where we emitted exactly one insn. */
3911 if (PREV_INSN (last) == prev)
3913 add_reg_note (last, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
3914 return;
3917 delta = fixup_args_size_notes (prev, last, stack_pointer_delta);
3918 gcc_assert (delta == INT_MIN || delta == old_delta);
3920 #endif
3922 /* Generate code to push X onto the stack, assuming it has mode MODE and
3923 type TYPE.
3924 MODE is redundant except when X is a CONST_INT (since they don't
3925 carry mode info).
3926 SIZE is an rtx for the size of data to be copied (in bytes),
3927 needed only if X is BLKmode.
3929 ALIGN (in bits) is maximum alignment we can assume.
3931 If PARTIAL and REG are both nonzero, then copy that many of the first
3932 bytes of X into registers starting with REG, and push the rest of X.
3933 The amount of space pushed is decreased by PARTIAL bytes.
3934 REG must be a hard register in this case.
3935 If REG is zero but PARTIAL is not, take any all others actions for an
3936 argument partially in registers, but do not actually load any
3937 registers.
3939 EXTRA is the amount in bytes of extra space to leave next to this arg.
3940 This is ignored if an argument block has already been allocated.
3942 On a machine that lacks real push insns, ARGS_ADDR is the address of
3943 the bottom of the argument block for this call. We use indexing off there
3944 to store the arg. On machines with push insns, ARGS_ADDR is 0 when a
3945 argument block has not been preallocated.
3947 ARGS_SO_FAR is the size of args previously pushed for this call.
3949 REG_PARM_STACK_SPACE is nonzero if functions require stack space
3950 for arguments passed in registers. If nonzero, it will be the number
3951 of bytes required. */
3953 void
3954 emit_push_insn (rtx x, enum machine_mode mode, tree type, rtx size,
3955 unsigned int align, int partial, rtx reg, int extra,
3956 rtx args_addr, rtx args_so_far, int reg_parm_stack_space,
3957 rtx alignment_pad)
3959 rtx xinner;
3960 enum direction stack_direction
3961 #ifdef STACK_GROWS_DOWNWARD
3962 = downward;
3963 #else
3964 = upward;
3965 #endif
3967 /* Decide where to pad the argument: `downward' for below,
3968 `upward' for above, or `none' for don't pad it.
3969 Default is below for small data on big-endian machines; else above. */
3970 enum direction where_pad = FUNCTION_ARG_PADDING (mode, type);
3972 /* Invert direction if stack is post-decrement.
3973 FIXME: why? */
3974 if (STACK_PUSH_CODE == POST_DEC)
3975 if (where_pad != none)
3976 where_pad = (where_pad == downward ? upward : downward);
3978 xinner = x;
3980 if (mode == BLKmode
3981 || (STRICT_ALIGNMENT && align < GET_MODE_ALIGNMENT (mode)))
3983 /* Copy a block into the stack, entirely or partially. */
3985 rtx temp;
3986 int used;
3987 int offset;
3988 int skip;
3990 offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
3991 used = partial - offset;
3993 if (mode != BLKmode)
3995 /* A value is to be stored in an insufficiently aligned
3996 stack slot; copy via a suitably aligned slot if
3997 necessary. */
3998 size = GEN_INT (GET_MODE_SIZE (mode));
3999 if (!MEM_P (xinner))
4001 temp = assign_temp (type, 0, 1, 1);
4002 emit_move_insn (temp, xinner);
4003 xinner = temp;
4007 gcc_assert (size);
4009 /* USED is now the # of bytes we need not copy to the stack
4010 because registers will take care of them. */
4012 if (partial != 0)
4013 xinner = adjust_address (xinner, BLKmode, used);
4015 /* If the partial register-part of the arg counts in its stack size,
4016 skip the part of stack space corresponding to the registers.
4017 Otherwise, start copying to the beginning of the stack space,
4018 by setting SKIP to 0. */
4019 skip = (reg_parm_stack_space == 0) ? 0 : used;
4021 #ifdef PUSH_ROUNDING
4022 /* Do it with several push insns if that doesn't take lots of insns
4023 and if there is no difficulty with push insns that skip bytes
4024 on the stack for alignment purposes. */
4025 if (args_addr == 0
4026 && PUSH_ARGS
4027 && CONST_INT_P (size)
4028 && skip == 0
4029 && MEM_ALIGN (xinner) >= align
4030 && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size) - used, align))
4031 /* Here we avoid the case of a structure whose weak alignment
4032 forces many pushes of a small amount of data,
4033 and such small pushes do rounding that causes trouble. */
4034 && ((! SLOW_UNALIGNED_ACCESS (word_mode, align))
4035 || align >= BIGGEST_ALIGNMENT
4036 || (PUSH_ROUNDING (align / BITS_PER_UNIT)
4037 == (align / BITS_PER_UNIT)))
4038 && (HOST_WIDE_INT) PUSH_ROUNDING (INTVAL (size)) == INTVAL (size))
4040 /* Push padding now if padding above and stack grows down,
4041 or if padding below and stack grows up.
4042 But if space already allocated, this has already been done. */
4043 if (extra && args_addr == 0
4044 && where_pad != none && where_pad != stack_direction)
4045 anti_adjust_stack (GEN_INT (extra));
4047 move_by_pieces (NULL, xinner, INTVAL (size) - used, align, 0);
4049 else
4050 #endif /* PUSH_ROUNDING */
4052 rtx target;
4054 /* Otherwise make space on the stack and copy the data
4055 to the address of that space. */
4057 /* Deduct words put into registers from the size we must copy. */
4058 if (partial != 0)
4060 if (CONST_INT_P (size))
4061 size = GEN_INT (INTVAL (size) - used);
4062 else
4063 size = expand_binop (GET_MODE (size), sub_optab, size,
4064 GEN_INT (used), NULL_RTX, 0,
4065 OPTAB_LIB_WIDEN);
4068 /* Get the address of the stack space.
4069 In this case, we do not deal with EXTRA separately.
4070 A single stack adjust will do. */
4071 if (! args_addr)
4073 temp = push_block (size, extra, where_pad == downward);
4074 extra = 0;
4076 else if (CONST_INT_P (args_so_far))
4077 temp = memory_address (BLKmode,
4078 plus_constant (args_addr,
4079 skip + INTVAL (args_so_far)));
4080 else
4081 temp = memory_address (BLKmode,
4082 plus_constant (gen_rtx_PLUS (Pmode,
4083 args_addr,
4084 args_so_far),
4085 skip));
4087 if (!ACCUMULATE_OUTGOING_ARGS)
4089 /* If the source is referenced relative to the stack pointer,
4090 copy it to another register to stabilize it. We do not need
4091 to do this if we know that we won't be changing sp. */
4093 if (reg_mentioned_p (virtual_stack_dynamic_rtx, temp)
4094 || reg_mentioned_p (virtual_outgoing_args_rtx, temp))
4095 temp = copy_to_reg (temp);
4098 target = gen_rtx_MEM (BLKmode, temp);
4100 /* We do *not* set_mem_attributes here, because incoming arguments
4101 may overlap with sibling call outgoing arguments and we cannot
4102 allow reordering of reads from function arguments with stores
4103 to outgoing arguments of sibling calls. We do, however, want
4104 to record the alignment of the stack slot. */
4105 /* ALIGN may well be better aligned than TYPE, e.g. due to
4106 PARM_BOUNDARY. Assume the caller isn't lying. */
4107 set_mem_align (target, align);
4109 emit_block_move (target, xinner, size, BLOCK_OP_CALL_PARM);
4112 else if (partial > 0)
4114 /* Scalar partly in registers. */
4116 int size = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
4117 int i;
4118 int not_stack;
4119 /* # bytes of start of argument
4120 that we must make space for but need not store. */
4121 int offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
4122 int args_offset = INTVAL (args_so_far);
4123 int skip;
4125 /* Push padding now if padding above and stack grows down,
4126 or if padding below and stack grows up.
4127 But if space already allocated, this has already been done. */
4128 if (extra && args_addr == 0
4129 && where_pad != none && where_pad != stack_direction)
4130 anti_adjust_stack (GEN_INT (extra));
4132 /* If we make space by pushing it, we might as well push
4133 the real data. Otherwise, we can leave OFFSET nonzero
4134 and leave the space uninitialized. */
4135 if (args_addr == 0)
4136 offset = 0;
4138 /* Now NOT_STACK gets the number of words that we don't need to
4139 allocate on the stack. Convert OFFSET to words too. */
4140 not_stack = (partial - offset) / UNITS_PER_WORD;
4141 offset /= UNITS_PER_WORD;
4143 /* If the partial register-part of the arg counts in its stack size,
4144 skip the part of stack space corresponding to the registers.
4145 Otherwise, start copying to the beginning of the stack space,
4146 by setting SKIP to 0. */
4147 skip = (reg_parm_stack_space == 0) ? 0 : not_stack;
4149 if (CONSTANT_P (x) && !targetm.legitimate_constant_p (mode, x))
4150 x = validize_mem (force_const_mem (mode, x));
4152 /* If X is a hard register in a non-integer mode, copy it into a pseudo;
4153 SUBREGs of such registers are not allowed. */
4154 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
4155 && GET_MODE_CLASS (GET_MODE (x)) != MODE_INT))
4156 x = copy_to_reg (x);
4158 /* Loop over all the words allocated on the stack for this arg. */
4159 /* We can do it by words, because any scalar bigger than a word
4160 has a size a multiple of a word. */
4161 #ifndef PUSH_ARGS_REVERSED
4162 for (i = not_stack; i < size; i++)
4163 #else
4164 for (i = size - 1; i >= not_stack; i--)
4165 #endif
4166 if (i >= not_stack + offset)
4167 emit_push_insn (operand_subword_force (x, i, mode),
4168 word_mode, NULL_TREE, NULL_RTX, align, 0, NULL_RTX,
4169 0, args_addr,
4170 GEN_INT (args_offset + ((i - not_stack + skip)
4171 * UNITS_PER_WORD)),
4172 reg_parm_stack_space, alignment_pad);
4174 else
4176 rtx addr;
4177 rtx dest;
4179 /* Push padding now if padding above and stack grows down,
4180 or if padding below and stack grows up.
4181 But if space already allocated, this has already been done. */
4182 if (extra && args_addr == 0
4183 && where_pad != none && where_pad != stack_direction)
4184 anti_adjust_stack (GEN_INT (extra));
4186 #ifdef PUSH_ROUNDING
4187 if (args_addr == 0 && PUSH_ARGS)
4188 emit_single_push_insn (mode, x, type);
4189 else
4190 #endif
4192 if (CONST_INT_P (args_so_far))
4193 addr
4194 = memory_address (mode,
4195 plus_constant (args_addr,
4196 INTVAL (args_so_far)));
4197 else
4198 addr = memory_address (mode, gen_rtx_PLUS (Pmode, args_addr,
4199 args_so_far));
4200 dest = gen_rtx_MEM (mode, addr);
4202 /* We do *not* set_mem_attributes here, because incoming arguments
4203 may overlap with sibling call outgoing arguments and we cannot
4204 allow reordering of reads from function arguments with stores
4205 to outgoing arguments of sibling calls. We do, however, want
4206 to record the alignment of the stack slot. */
4207 /* ALIGN may well be better aligned than TYPE, e.g. due to
4208 PARM_BOUNDARY. Assume the caller isn't lying. */
4209 set_mem_align (dest, align);
4211 emit_move_insn (dest, x);
4215 /* If part should go in registers, copy that part
4216 into the appropriate registers. Do this now, at the end,
4217 since mem-to-mem copies above may do function calls. */
4218 if (partial > 0 && reg != 0)
4220 /* Handle calls that pass values in multiple non-contiguous locations.
4221 The Irix 6 ABI has examples of this. */
4222 if (GET_CODE (reg) == PARALLEL)
4223 emit_group_load (reg, x, type, -1);
4224 else
4226 gcc_assert (partial % UNITS_PER_WORD == 0);
4227 move_block_to_reg (REGNO (reg), x, partial / UNITS_PER_WORD, mode);
4231 if (extra && args_addr == 0 && where_pad == stack_direction)
4232 anti_adjust_stack (GEN_INT (extra));
4234 if (alignment_pad && args_addr == 0)
4235 anti_adjust_stack (alignment_pad);
4238 /* Return X if X can be used as a subtarget in a sequence of arithmetic
4239 operations. */
4241 static rtx
4242 get_subtarget (rtx x)
4244 return (optimize
4245 || x == 0
4246 /* Only registers can be subtargets. */
4247 || !REG_P (x)
4248 /* Don't use hard regs to avoid extending their life. */
4249 || REGNO (x) < FIRST_PSEUDO_REGISTER
4250 ? 0 : x);
4253 /* A subroutine of expand_assignment. Optimize FIELD op= VAL, where
4254 FIELD is a bitfield. Returns true if the optimization was successful,
4255 and there's nothing else to do. */
4257 static bool
4258 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize,
4259 unsigned HOST_WIDE_INT bitpos,
4260 unsigned HOST_WIDE_INT bitregion_start,
4261 unsigned HOST_WIDE_INT bitregion_end,
4262 enum machine_mode mode1, rtx str_rtx,
4263 tree to, tree src)
4265 enum machine_mode str_mode = GET_MODE (str_rtx);
4266 unsigned int str_bitsize = GET_MODE_BITSIZE (str_mode);
4267 tree op0, op1;
4268 rtx value, result;
4269 optab binop;
4270 gimple srcstmt;
4271 enum tree_code code;
4273 if (mode1 != VOIDmode
4274 || bitsize >= BITS_PER_WORD
4275 || str_bitsize > BITS_PER_WORD
4276 || TREE_SIDE_EFFECTS (to)
4277 || TREE_THIS_VOLATILE (to))
4278 return false;
4280 STRIP_NOPS (src);
4281 if (TREE_CODE (src) != SSA_NAME)
4282 return false;
4283 if (TREE_CODE (TREE_TYPE (src)) != INTEGER_TYPE)
4284 return false;
4286 srcstmt = get_gimple_for_ssa_name (src);
4287 if (!srcstmt
4288 || TREE_CODE_CLASS (gimple_assign_rhs_code (srcstmt)) != tcc_binary)
4289 return false;
4291 code = gimple_assign_rhs_code (srcstmt);
4293 op0 = gimple_assign_rhs1 (srcstmt);
4295 /* If OP0 is an SSA_NAME, then we want to walk the use-def chain
4296 to find its initialization. Hopefully the initialization will
4297 be from a bitfield load. */
4298 if (TREE_CODE (op0) == SSA_NAME)
4300 gimple op0stmt = get_gimple_for_ssa_name (op0);
4302 /* We want to eventually have OP0 be the same as TO, which
4303 should be a bitfield. */
4304 if (!op0stmt
4305 || !is_gimple_assign (op0stmt)
4306 || gimple_assign_rhs_code (op0stmt) != TREE_CODE (to))
4307 return false;
4308 op0 = gimple_assign_rhs1 (op0stmt);
4311 op1 = gimple_assign_rhs2 (srcstmt);
4313 if (!operand_equal_p (to, op0, 0))
4314 return false;
4316 if (MEM_P (str_rtx))
4318 unsigned HOST_WIDE_INT offset1;
4320 if (str_bitsize == 0 || str_bitsize > BITS_PER_WORD)
4321 str_mode = word_mode;
4322 str_mode = get_best_mode (bitsize, bitpos,
4323 bitregion_start, bitregion_end,
4324 MEM_ALIGN (str_rtx), str_mode, 0);
4325 if (str_mode == VOIDmode)
4326 return false;
4327 str_bitsize = GET_MODE_BITSIZE (str_mode);
4329 offset1 = bitpos;
4330 bitpos %= str_bitsize;
4331 offset1 = (offset1 - bitpos) / BITS_PER_UNIT;
4332 str_rtx = adjust_address (str_rtx, str_mode, offset1);
4334 else if (!REG_P (str_rtx) && GET_CODE (str_rtx) != SUBREG)
4335 return false;
4337 /* If the bit field covers the whole REG/MEM, store_field
4338 will likely generate better code. */
4339 if (bitsize >= str_bitsize)
4340 return false;
4342 /* We can't handle fields split across multiple entities. */
4343 if (bitpos + bitsize > str_bitsize)
4344 return false;
4346 if (BYTES_BIG_ENDIAN)
4347 bitpos = str_bitsize - bitpos - bitsize;
4349 switch (code)
4351 case PLUS_EXPR:
4352 case MINUS_EXPR:
4353 /* For now, just optimize the case of the topmost bitfield
4354 where we don't need to do any masking and also
4355 1 bit bitfields where xor can be used.
4356 We might win by one instruction for the other bitfields
4357 too if insv/extv instructions aren't used, so that
4358 can be added later. */
4359 if (bitpos + bitsize != str_bitsize
4360 && (bitsize != 1 || TREE_CODE (op1) != INTEGER_CST))
4361 break;
4363 value = expand_expr (op1, NULL_RTX, str_mode, EXPAND_NORMAL);
4364 value = convert_modes (str_mode,
4365 TYPE_MODE (TREE_TYPE (op1)), value,
4366 TYPE_UNSIGNED (TREE_TYPE (op1)));
4368 /* We may be accessing data outside the field, which means
4369 we can alias adjacent data. */
4370 if (MEM_P (str_rtx))
4372 str_rtx = shallow_copy_rtx (str_rtx);
4373 set_mem_alias_set (str_rtx, 0);
4374 set_mem_expr (str_rtx, 0);
4377 binop = code == PLUS_EXPR ? add_optab : sub_optab;
4378 if (bitsize == 1 && bitpos + bitsize != str_bitsize)
4380 value = expand_and (str_mode, value, const1_rtx, NULL);
4381 binop = xor_optab;
4383 value = expand_shift (LSHIFT_EXPR, str_mode, value,
4384 bitpos, NULL_RTX, 1);
4385 result = expand_binop (str_mode, binop, str_rtx,
4386 value, str_rtx, 1, OPTAB_WIDEN);
4387 if (result != str_rtx)
4388 emit_move_insn (str_rtx, result);
4389 return true;
4391 case BIT_IOR_EXPR:
4392 case BIT_XOR_EXPR:
4393 if (TREE_CODE (op1) != INTEGER_CST)
4394 break;
4395 value = expand_expr (op1, NULL_RTX, GET_MODE (str_rtx), EXPAND_NORMAL);
4396 value = convert_modes (GET_MODE (str_rtx),
4397 TYPE_MODE (TREE_TYPE (op1)), value,
4398 TYPE_UNSIGNED (TREE_TYPE (op1)));
4400 /* We may be accessing data outside the field, which means
4401 we can alias adjacent data. */
4402 if (MEM_P (str_rtx))
4404 str_rtx = shallow_copy_rtx (str_rtx);
4405 set_mem_alias_set (str_rtx, 0);
4406 set_mem_expr (str_rtx, 0);
4409 binop = code == BIT_IOR_EXPR ? ior_optab : xor_optab;
4410 if (bitpos + bitsize != GET_MODE_BITSIZE (GET_MODE (str_rtx)))
4412 rtx mask = GEN_INT (((unsigned HOST_WIDE_INT) 1 << bitsize)
4413 - 1);
4414 value = expand_and (GET_MODE (str_rtx), value, mask,
4415 NULL_RTX);
4417 value = expand_shift (LSHIFT_EXPR, GET_MODE (str_rtx), value,
4418 bitpos, NULL_RTX, 1);
4419 result = expand_binop (GET_MODE (str_rtx), binop, str_rtx,
4420 value, str_rtx, 1, OPTAB_WIDEN);
4421 if (result != str_rtx)
4422 emit_move_insn (str_rtx, result);
4423 return true;
4425 default:
4426 break;
4429 return false;
4432 /* In the C++ memory model, consecutive bit fields in a structure are
4433 considered one memory location.
4435 Given a COMPONENT_REF, this function returns the bit range of
4436 consecutive bits in which this COMPONENT_REF belongs in. The
4437 values are returned in *BITSTART and *BITEND. If either the C++
4438 memory model is not activated, or this memory access is not thread
4439 visible, 0 is returned in *BITSTART and *BITEND.
4441 EXP is the COMPONENT_REF.
4442 INNERDECL is the actual object being referenced.
4443 BITPOS is the position in bits where the bit starts within the structure.
4444 BITSIZE is size in bits of the field being referenced in EXP.
4446 For example, while storing into FOO.A here...
4448 struct {
4449 BIT 0:
4450 unsigned int a : 4;
4451 unsigned int b : 1;
4452 BIT 8:
4453 unsigned char c;
4454 unsigned int d : 6;
4455 } foo;
4457 ...we are not allowed to store past <b>, so for the layout above, a
4458 range of 0..7 (because no one cares if we store into the
4459 padding). */
4461 static void
4462 get_bit_range (unsigned HOST_WIDE_INT *bitstart,
4463 unsigned HOST_WIDE_INT *bitend,
4464 tree exp, tree innerdecl,
4465 HOST_WIDE_INT bitpos, HOST_WIDE_INT bitsize)
4467 tree field, record_type, fld;
4468 bool found_field = false;
4469 bool prev_field_is_bitfield;
4471 gcc_assert (TREE_CODE (exp) == COMPONENT_REF);
4473 /* If other threads can't see this value, no need to restrict stores. */
4474 if (ALLOW_STORE_DATA_RACES
4475 || ((TREE_CODE (innerdecl) == MEM_REF
4476 || TREE_CODE (innerdecl) == TARGET_MEM_REF)
4477 && !ptr_deref_may_alias_global_p (TREE_OPERAND (innerdecl, 0)))
4478 || (DECL_P (innerdecl)
4479 && ((TREE_CODE (innerdecl) == VAR_DECL
4480 && DECL_THREAD_LOCAL_P (innerdecl))
4481 || !TREE_STATIC (innerdecl))))
4483 *bitstart = *bitend = 0;
4484 return;
4487 /* Bit field we're storing into. */
4488 field = TREE_OPERAND (exp, 1);
4489 record_type = DECL_FIELD_CONTEXT (field);
4491 /* Count the contiguous bitfields for the memory location that
4492 contains FIELD. */
4493 *bitstart = 0;
4494 prev_field_is_bitfield = true;
4495 for (fld = TYPE_FIELDS (record_type); fld; fld = DECL_CHAIN (fld))
4497 tree t, offset;
4498 enum machine_mode mode;
4499 int unsignedp, volatilep;
4501 if (TREE_CODE (fld) != FIELD_DECL)
4502 continue;
4504 t = build3 (COMPONENT_REF, TREE_TYPE (exp),
4505 unshare_expr (TREE_OPERAND (exp, 0)),
4506 fld, NULL_TREE);
4507 get_inner_reference (t, &bitsize, &bitpos, &offset,
4508 &mode, &unsignedp, &volatilep, true);
4510 if (field == fld)
4511 found_field = true;
4513 if (DECL_BIT_FIELD_TYPE (fld) && bitsize > 0)
4515 if (prev_field_is_bitfield == false)
4517 *bitstart = bitpos;
4518 prev_field_is_bitfield = true;
4521 else
4523 prev_field_is_bitfield = false;
4524 if (found_field)
4525 break;
4528 gcc_assert (found_field);
4530 if (fld)
4532 /* We found the end of the bit field sequence. Include the
4533 padding up to the next field and be done. */
4534 *bitend = bitpos - 1;
4536 else
4538 /* If this is the last element in the structure, include the padding
4539 at the end of structure. */
4540 *bitend = TREE_INT_CST_LOW (TYPE_SIZE (record_type)) - 1;
4544 /* Expand an assignment that stores the value of FROM into TO. If NONTEMPORAL
4545 is true, try generating a nontemporal store. */
4547 void
4548 expand_assignment (tree to, tree from, bool nontemporal)
4550 rtx to_rtx = 0;
4551 rtx result;
4552 enum machine_mode mode;
4553 unsigned int align;
4554 enum insn_code icode;
4556 /* Don't crash if the lhs of the assignment was erroneous. */
4557 if (TREE_CODE (to) == ERROR_MARK)
4559 expand_normal (from);
4560 return;
4563 /* Optimize away no-op moves without side-effects. */
4564 if (operand_equal_p (to, from, 0))
4565 return;
4567 mode = TYPE_MODE (TREE_TYPE (to));
4568 if ((TREE_CODE (to) == MEM_REF
4569 || TREE_CODE (to) == TARGET_MEM_REF)
4570 && mode != BLKmode
4571 && ((align = get_object_or_type_alignment (to))
4572 < GET_MODE_ALIGNMENT (mode))
4573 && ((icode = optab_handler (movmisalign_optab, mode))
4574 != CODE_FOR_nothing))
4576 struct expand_operand ops[2];
4577 enum machine_mode address_mode;
4578 rtx reg, op0, mem;
4580 reg = expand_expr (from, NULL_RTX, VOIDmode, EXPAND_NORMAL);
4581 reg = force_not_mem (reg);
4583 if (TREE_CODE (to) == MEM_REF)
4585 addr_space_t as
4586 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (to, 1))));
4587 tree base = TREE_OPERAND (to, 0);
4588 address_mode = targetm.addr_space.address_mode (as);
4589 op0 = expand_expr (base, NULL_RTX, VOIDmode, EXPAND_NORMAL);
4590 op0 = convert_memory_address_addr_space (address_mode, op0, as);
4591 if (!integer_zerop (TREE_OPERAND (to, 1)))
4593 rtx off
4594 = immed_double_int_const (mem_ref_offset (to), address_mode);
4595 op0 = simplify_gen_binary (PLUS, address_mode, op0, off);
4597 op0 = memory_address_addr_space (mode, op0, as);
4598 mem = gen_rtx_MEM (mode, op0);
4599 set_mem_attributes (mem, to, 0);
4600 set_mem_addr_space (mem, as);
4602 else if (TREE_CODE (to) == TARGET_MEM_REF)
4604 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (to));
4605 struct mem_address addr;
4607 get_address_description (to, &addr);
4608 op0 = addr_for_mem_ref (&addr, as, true);
4609 op0 = memory_address_addr_space (mode, op0, as);
4610 mem = gen_rtx_MEM (mode, op0);
4611 set_mem_attributes (mem, to, 0);
4612 set_mem_addr_space (mem, as);
4614 else
4615 gcc_unreachable ();
4616 if (TREE_THIS_VOLATILE (to))
4617 MEM_VOLATILE_P (mem) = 1;
4619 create_fixed_operand (&ops[0], mem);
4620 create_input_operand (&ops[1], reg, mode);
4621 /* The movmisalign<mode> pattern cannot fail, else the assignment would
4622 silently be omitted. */
4623 expand_insn (icode, 2, ops);
4624 return;
4627 /* Assignment of a structure component needs special treatment
4628 if the structure component's rtx is not simply a MEM.
4629 Assignment of an array element at a constant index, and assignment of
4630 an array element in an unaligned packed structure field, has the same
4631 problem. */
4632 if (handled_component_p (to)
4633 /* ??? We only need to handle MEM_REF here if the access is not
4634 a full access of the base object. */
4635 || (TREE_CODE (to) == MEM_REF
4636 && TREE_CODE (TREE_OPERAND (to, 0)) == ADDR_EXPR)
4637 || TREE_CODE (TREE_TYPE (to)) == ARRAY_TYPE)
4639 enum machine_mode mode1;
4640 HOST_WIDE_INT bitsize, bitpos;
4641 unsigned HOST_WIDE_INT bitregion_start = 0;
4642 unsigned HOST_WIDE_INT bitregion_end = 0;
4643 tree offset;
4644 int unsignedp;
4645 int volatilep = 0;
4646 tree tem;
4648 push_temp_slots ();
4649 tem = get_inner_reference (to, &bitsize, &bitpos, &offset, &mode1,
4650 &unsignedp, &volatilep, true);
4652 if (TREE_CODE (to) == COMPONENT_REF
4653 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (to, 1)))
4654 get_bit_range (&bitregion_start, &bitregion_end,
4655 to, tem, bitpos, bitsize);
4657 /* If we are going to use store_bit_field and extract_bit_field,
4658 make sure to_rtx will be safe for multiple use. */
4660 to_rtx = expand_normal (tem);
4662 /* If the bitfield is volatile, we want to access it in the
4663 field's mode, not the computed mode.
4664 If a MEM has VOIDmode (external with incomplete type),
4665 use BLKmode for it instead. */
4666 if (MEM_P (to_rtx))
4668 if (volatilep && flag_strict_volatile_bitfields > 0)
4669 to_rtx = adjust_address (to_rtx, mode1, 0);
4670 else if (GET_MODE (to_rtx) == VOIDmode)
4671 to_rtx = adjust_address (to_rtx, BLKmode, 0);
4674 if (offset != 0)
4676 enum machine_mode address_mode;
4677 rtx offset_rtx;
4679 if (!MEM_P (to_rtx))
4681 /* We can get constant negative offsets into arrays with broken
4682 user code. Translate this to a trap instead of ICEing. */
4683 gcc_assert (TREE_CODE (offset) == INTEGER_CST);
4684 expand_builtin_trap ();
4685 to_rtx = gen_rtx_MEM (BLKmode, const0_rtx);
4688 offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode, EXPAND_SUM);
4689 address_mode
4690 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to_rtx));
4691 if (GET_MODE (offset_rtx) != address_mode)
4692 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
4694 /* A constant address in TO_RTX can have VOIDmode, we must not try
4695 to call force_reg for that case. Avoid that case. */
4696 if (MEM_P (to_rtx)
4697 && GET_MODE (to_rtx) == BLKmode
4698 && GET_MODE (XEXP (to_rtx, 0)) != VOIDmode
4699 && bitsize > 0
4700 && (bitpos % bitsize) == 0
4701 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
4702 && MEM_ALIGN (to_rtx) == GET_MODE_ALIGNMENT (mode1))
4704 to_rtx = adjust_address (to_rtx, mode1, bitpos / BITS_PER_UNIT);
4705 bitpos = 0;
4708 to_rtx = offset_address (to_rtx, offset_rtx,
4709 highest_pow2_factor_for_target (to,
4710 offset));
4713 /* No action is needed if the target is not a memory and the field
4714 lies completely outside that target. This can occur if the source
4715 code contains an out-of-bounds access to a small array. */
4716 if (!MEM_P (to_rtx)
4717 && GET_MODE (to_rtx) != BLKmode
4718 && (unsigned HOST_WIDE_INT) bitpos
4719 >= GET_MODE_PRECISION (GET_MODE (to_rtx)))
4721 expand_normal (from);
4722 result = NULL;
4724 /* Handle expand_expr of a complex value returning a CONCAT. */
4725 else if (GET_CODE (to_rtx) == CONCAT)
4727 unsigned short mode_bitsize = GET_MODE_BITSIZE (GET_MODE (to_rtx));
4728 if (COMPLEX_MODE_P (TYPE_MODE (TREE_TYPE (from)))
4729 && bitpos == 0
4730 && bitsize == mode_bitsize)
4731 result = store_expr (from, to_rtx, false, nontemporal);
4732 else if (bitsize == mode_bitsize / 2
4733 && (bitpos == 0 || bitpos == mode_bitsize / 2))
4734 result = store_expr (from, XEXP (to_rtx, bitpos != 0), false,
4735 nontemporal);
4736 else if (bitpos + bitsize <= mode_bitsize / 2)
4737 result = store_field (XEXP (to_rtx, 0), bitsize, bitpos,
4738 bitregion_start, bitregion_end,
4739 mode1, from, TREE_TYPE (tem),
4740 get_alias_set (to), nontemporal);
4741 else if (bitpos >= mode_bitsize / 2)
4742 result = store_field (XEXP (to_rtx, 1), bitsize,
4743 bitpos - mode_bitsize / 2,
4744 bitregion_start, bitregion_end,
4745 mode1, from,
4746 TREE_TYPE (tem), get_alias_set (to),
4747 nontemporal);
4748 else if (bitpos == 0 && bitsize == mode_bitsize)
4750 rtx from_rtx;
4751 result = expand_normal (from);
4752 from_rtx = simplify_gen_subreg (GET_MODE (to_rtx), result,
4753 TYPE_MODE (TREE_TYPE (from)), 0);
4754 emit_move_insn (XEXP (to_rtx, 0),
4755 read_complex_part (from_rtx, false));
4756 emit_move_insn (XEXP (to_rtx, 1),
4757 read_complex_part (from_rtx, true));
4759 else
4761 rtx temp = assign_stack_temp (GET_MODE (to_rtx),
4762 GET_MODE_SIZE (GET_MODE (to_rtx)),
4764 write_complex_part (temp, XEXP (to_rtx, 0), false);
4765 write_complex_part (temp, XEXP (to_rtx, 1), true);
4766 result = store_field (temp, bitsize, bitpos,
4767 bitregion_start, bitregion_end,
4768 mode1, from,
4769 TREE_TYPE (tem), get_alias_set (to),
4770 nontemporal);
4771 emit_move_insn (XEXP (to_rtx, 0), read_complex_part (temp, false));
4772 emit_move_insn (XEXP (to_rtx, 1), read_complex_part (temp, true));
4775 else
4777 if (MEM_P (to_rtx))
4779 /* If the field is at offset zero, we could have been given the
4780 DECL_RTX of the parent struct. Don't munge it. */
4781 to_rtx = shallow_copy_rtx (to_rtx);
4783 set_mem_attributes_minus_bitpos (to_rtx, to, 0, bitpos);
4785 /* Deal with volatile and readonly fields. The former is only
4786 done for MEM. Also set MEM_KEEP_ALIAS_SET_P if needed. */
4787 if (volatilep)
4788 MEM_VOLATILE_P (to_rtx) = 1;
4789 if (component_uses_parent_alias_set (to))
4790 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
4793 if (optimize_bitfield_assignment_op (bitsize, bitpos,
4794 bitregion_start, bitregion_end,
4795 mode1,
4796 to_rtx, to, from))
4797 result = NULL;
4798 else
4799 result = store_field (to_rtx, bitsize, bitpos,
4800 bitregion_start, bitregion_end,
4801 mode1, from,
4802 TREE_TYPE (tem), get_alias_set (to),
4803 nontemporal);
4806 if (result)
4807 preserve_temp_slots (result);
4808 free_temp_slots ();
4809 pop_temp_slots ();
4810 return;
4813 /* If the rhs is a function call and its value is not an aggregate,
4814 call the function before we start to compute the lhs.
4815 This is needed for correct code for cases such as
4816 val = setjmp (buf) on machines where reference to val
4817 requires loading up part of an address in a separate insn.
4819 Don't do this if TO is a VAR_DECL or PARM_DECL whose DECL_RTL is REG
4820 since it might be a promoted variable where the zero- or sign- extension
4821 needs to be done. Handling this in the normal way is safe because no
4822 computation is done before the call. The same is true for SSA names. */
4823 if (TREE_CODE (from) == CALL_EXPR && ! aggregate_value_p (from, from)
4824 && COMPLETE_TYPE_P (TREE_TYPE (from))
4825 && TREE_CODE (TYPE_SIZE (TREE_TYPE (from))) == INTEGER_CST
4826 && ! (((TREE_CODE (to) == VAR_DECL
4827 || TREE_CODE (to) == PARM_DECL
4828 || TREE_CODE (to) == RESULT_DECL)
4829 && REG_P (DECL_RTL (to)))
4830 || TREE_CODE (to) == SSA_NAME))
4832 rtx value;
4834 push_temp_slots ();
4835 value = expand_normal (from);
4836 if (to_rtx == 0)
4837 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
4839 /* Handle calls that return values in multiple non-contiguous locations.
4840 The Irix 6 ABI has examples of this. */
4841 if (GET_CODE (to_rtx) == PARALLEL)
4842 emit_group_load (to_rtx, value, TREE_TYPE (from),
4843 int_size_in_bytes (TREE_TYPE (from)));
4844 else if (GET_MODE (to_rtx) == BLKmode)
4845 emit_block_move (to_rtx, value, expr_size (from), BLOCK_OP_NORMAL);
4846 else
4848 if (POINTER_TYPE_P (TREE_TYPE (to)))
4849 value = convert_memory_address_addr_space
4850 (GET_MODE (to_rtx), value,
4851 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (to))));
4853 emit_move_insn (to_rtx, value);
4855 preserve_temp_slots (to_rtx);
4856 free_temp_slots ();
4857 pop_temp_slots ();
4858 return;
4861 /* Ordinary treatment. Expand TO to get a REG or MEM rtx.
4862 Don't re-expand if it was expanded already (in COMPONENT_REF case). */
4864 if (to_rtx == 0)
4865 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
4867 /* Don't move directly into a return register. */
4868 if (TREE_CODE (to) == RESULT_DECL
4869 && (REG_P (to_rtx) || GET_CODE (to_rtx) == PARALLEL))
4871 rtx temp;
4873 push_temp_slots ();
4874 if (REG_P (to_rtx) && TYPE_MODE (TREE_TYPE (from)) == BLKmode)
4875 temp = copy_blkmode_to_reg (GET_MODE (to_rtx), from);
4876 else
4877 temp = expand_expr (from, NULL_RTX, GET_MODE (to_rtx), EXPAND_NORMAL);
4879 if (GET_CODE (to_rtx) == PARALLEL)
4880 emit_group_load (to_rtx, temp, TREE_TYPE (from),
4881 int_size_in_bytes (TREE_TYPE (from)));
4882 else if (temp)
4883 emit_move_insn (to_rtx, temp);
4885 preserve_temp_slots (to_rtx);
4886 free_temp_slots ();
4887 pop_temp_slots ();
4888 return;
4891 /* In case we are returning the contents of an object which overlaps
4892 the place the value is being stored, use a safe function when copying
4893 a value through a pointer into a structure value return block. */
4894 if (TREE_CODE (to) == RESULT_DECL
4895 && TREE_CODE (from) == INDIRECT_REF
4896 && ADDR_SPACE_GENERIC_P
4897 (TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (from, 0)))))
4898 && refs_may_alias_p (to, from)
4899 && cfun->returns_struct
4900 && !cfun->returns_pcc_struct)
4902 rtx from_rtx, size;
4904 push_temp_slots ();
4905 size = expr_size (from);
4906 from_rtx = expand_normal (from);
4908 emit_library_call (memmove_libfunc, LCT_NORMAL,
4909 VOIDmode, 3, XEXP (to_rtx, 0), Pmode,
4910 XEXP (from_rtx, 0), Pmode,
4911 convert_to_mode (TYPE_MODE (sizetype),
4912 size, TYPE_UNSIGNED (sizetype)),
4913 TYPE_MODE (sizetype));
4915 preserve_temp_slots (to_rtx);
4916 free_temp_slots ();
4917 pop_temp_slots ();
4918 return;
4921 /* Compute FROM and store the value in the rtx we got. */
4923 push_temp_slots ();
4924 result = store_expr (from, to_rtx, 0, nontemporal);
4925 preserve_temp_slots (result);
4926 free_temp_slots ();
4927 pop_temp_slots ();
4928 return;
4931 /* Emits nontemporal store insn that moves FROM to TO. Returns true if this
4932 succeeded, false otherwise. */
4934 bool
4935 emit_storent_insn (rtx to, rtx from)
4937 struct expand_operand ops[2];
4938 enum machine_mode mode = GET_MODE (to);
4939 enum insn_code code = optab_handler (storent_optab, mode);
4941 if (code == CODE_FOR_nothing)
4942 return false;
4944 create_fixed_operand (&ops[0], to);
4945 create_input_operand (&ops[1], from, mode);
4946 return maybe_expand_insn (code, 2, ops);
4949 /* Generate code for computing expression EXP,
4950 and storing the value into TARGET.
4952 If the mode is BLKmode then we may return TARGET itself.
4953 It turns out that in BLKmode it doesn't cause a problem.
4954 because C has no operators that could combine two different
4955 assignments into the same BLKmode object with different values
4956 with no sequence point. Will other languages need this to
4957 be more thorough?
4959 If CALL_PARAM_P is nonzero, this is a store into a call param on the
4960 stack, and block moves may need to be treated specially.
4962 If NONTEMPORAL is true, try using a nontemporal store instruction. */
4965 store_expr (tree exp, rtx target, int call_param_p, bool nontemporal)
4967 rtx temp;
4968 rtx alt_rtl = NULL_RTX;
4969 location_t loc = EXPR_LOCATION (exp);
4971 if (VOID_TYPE_P (TREE_TYPE (exp)))
4973 /* C++ can generate ?: expressions with a throw expression in one
4974 branch and an rvalue in the other. Here, we resolve attempts to
4975 store the throw expression's nonexistent result. */
4976 gcc_assert (!call_param_p);
4977 expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
4978 return NULL_RTX;
4980 if (TREE_CODE (exp) == COMPOUND_EXPR)
4982 /* Perform first part of compound expression, then assign from second
4983 part. */
4984 expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode,
4985 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
4986 return store_expr (TREE_OPERAND (exp, 1), target, call_param_p,
4987 nontemporal);
4989 else if (TREE_CODE (exp) == COND_EXPR && GET_MODE (target) == BLKmode)
4991 /* For conditional expression, get safe form of the target. Then
4992 test the condition, doing the appropriate assignment on either
4993 side. This avoids the creation of unnecessary temporaries.
4994 For non-BLKmode, it is more efficient not to do this. */
4996 rtx lab1 = gen_label_rtx (), lab2 = gen_label_rtx ();
4998 do_pending_stack_adjust ();
4999 NO_DEFER_POP;
5000 jumpifnot (TREE_OPERAND (exp, 0), lab1, -1);
5001 store_expr (TREE_OPERAND (exp, 1), target, call_param_p,
5002 nontemporal);
5003 emit_jump_insn (gen_jump (lab2));
5004 emit_barrier ();
5005 emit_label (lab1);
5006 store_expr (TREE_OPERAND (exp, 2), target, call_param_p,
5007 nontemporal);
5008 emit_label (lab2);
5009 OK_DEFER_POP;
5011 return NULL_RTX;
5013 else if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
5014 /* If this is a scalar in a register that is stored in a wider mode
5015 than the declared mode, compute the result into its declared mode
5016 and then convert to the wider mode. Our value is the computed
5017 expression. */
5019 rtx inner_target = 0;
5021 /* We can do the conversion inside EXP, which will often result
5022 in some optimizations. Do the conversion in two steps: first
5023 change the signedness, if needed, then the extend. But don't
5024 do this if the type of EXP is a subtype of something else
5025 since then the conversion might involve more than just
5026 converting modes. */
5027 if (INTEGRAL_TYPE_P (TREE_TYPE (exp))
5028 && TREE_TYPE (TREE_TYPE (exp)) == 0
5029 && GET_MODE_PRECISION (GET_MODE (target))
5030 == TYPE_PRECISION (TREE_TYPE (exp)))
5032 if (TYPE_UNSIGNED (TREE_TYPE (exp))
5033 != SUBREG_PROMOTED_UNSIGNED_P (target))
5035 /* Some types, e.g. Fortran's logical*4, won't have a signed
5036 version, so use the mode instead. */
5037 tree ntype
5038 = (signed_or_unsigned_type_for
5039 (SUBREG_PROMOTED_UNSIGNED_P (target), TREE_TYPE (exp)));
5040 if (ntype == NULL)
5041 ntype = lang_hooks.types.type_for_mode
5042 (TYPE_MODE (TREE_TYPE (exp)),
5043 SUBREG_PROMOTED_UNSIGNED_P (target));
5045 exp = fold_convert_loc (loc, ntype, exp);
5048 exp = fold_convert_loc (loc, lang_hooks.types.type_for_mode
5049 (GET_MODE (SUBREG_REG (target)),
5050 SUBREG_PROMOTED_UNSIGNED_P (target)),
5051 exp);
5053 inner_target = SUBREG_REG (target);
5056 temp = expand_expr (exp, inner_target, VOIDmode,
5057 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
5059 /* If TEMP is a VOIDmode constant, use convert_modes to make
5060 sure that we properly convert it. */
5061 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
5063 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
5064 temp, SUBREG_PROMOTED_UNSIGNED_P (target));
5065 temp = convert_modes (GET_MODE (SUBREG_REG (target)),
5066 GET_MODE (target), temp,
5067 SUBREG_PROMOTED_UNSIGNED_P (target));
5070 convert_move (SUBREG_REG (target), temp,
5071 SUBREG_PROMOTED_UNSIGNED_P (target));
5073 return NULL_RTX;
5075 else if ((TREE_CODE (exp) == STRING_CST
5076 || (TREE_CODE (exp) == MEM_REF
5077 && TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
5078 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
5079 == STRING_CST
5080 && integer_zerop (TREE_OPERAND (exp, 1))))
5081 && !nontemporal && !call_param_p
5082 && MEM_P (target))
5084 /* Optimize initialization of an array with a STRING_CST. */
5085 HOST_WIDE_INT exp_len, str_copy_len;
5086 rtx dest_mem;
5087 tree str = TREE_CODE (exp) == STRING_CST
5088 ? exp : TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
5090 exp_len = int_expr_size (exp);
5091 if (exp_len <= 0)
5092 goto normal_expr;
5094 if (TREE_STRING_LENGTH (str) <= 0)
5095 goto normal_expr;
5097 str_copy_len = strlen (TREE_STRING_POINTER (str));
5098 if (str_copy_len < TREE_STRING_LENGTH (str) - 1)
5099 goto normal_expr;
5101 str_copy_len = TREE_STRING_LENGTH (str);
5102 if ((STORE_MAX_PIECES & (STORE_MAX_PIECES - 1)) == 0
5103 && TREE_STRING_POINTER (str)[TREE_STRING_LENGTH (str) - 1] == '\0')
5105 str_copy_len += STORE_MAX_PIECES - 1;
5106 str_copy_len &= ~(STORE_MAX_PIECES - 1);
5108 str_copy_len = MIN (str_copy_len, exp_len);
5109 if (!can_store_by_pieces (str_copy_len, builtin_strncpy_read_str,
5110 CONST_CAST (char *, TREE_STRING_POINTER (str)),
5111 MEM_ALIGN (target), false))
5112 goto normal_expr;
5114 dest_mem = target;
5116 dest_mem = store_by_pieces (dest_mem,
5117 str_copy_len, builtin_strncpy_read_str,
5118 CONST_CAST (char *,
5119 TREE_STRING_POINTER (str)),
5120 MEM_ALIGN (target), false,
5121 exp_len > str_copy_len ? 1 : 0);
5122 if (exp_len > str_copy_len)
5123 clear_storage (adjust_address (dest_mem, BLKmode, 0),
5124 GEN_INT (exp_len - str_copy_len),
5125 BLOCK_OP_NORMAL);
5126 return NULL_RTX;
5128 else
5130 rtx tmp_target;
5132 normal_expr:
5133 /* If we want to use a nontemporal store, force the value to
5134 register first. */
5135 tmp_target = nontemporal ? NULL_RTX : target;
5136 temp = expand_expr_real (exp, tmp_target, GET_MODE (target),
5137 (call_param_p
5138 ? EXPAND_STACK_PARM : EXPAND_NORMAL),
5139 &alt_rtl);
5142 /* If TEMP is a VOIDmode constant and the mode of the type of EXP is not
5143 the same as that of TARGET, adjust the constant. This is needed, for
5144 example, in case it is a CONST_DOUBLE and we want only a word-sized
5145 value. */
5146 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode
5147 && TREE_CODE (exp) != ERROR_MARK
5148 && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
5149 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
5150 temp, TYPE_UNSIGNED (TREE_TYPE (exp)));
5152 /* If value was not generated in the target, store it there.
5153 Convert the value to TARGET's type first if necessary and emit the
5154 pending incrementations that have been queued when expanding EXP.
5155 Note that we cannot emit the whole queue blindly because this will
5156 effectively disable the POST_INC optimization later.
5158 If TEMP and TARGET compare equal according to rtx_equal_p, but
5159 one or both of them are volatile memory refs, we have to distinguish
5160 two cases:
5161 - expand_expr has used TARGET. In this case, we must not generate
5162 another copy. This can be detected by TARGET being equal according
5163 to == .
5164 - expand_expr has not used TARGET - that means that the source just
5165 happens to have the same RTX form. Since temp will have been created
5166 by expand_expr, it will compare unequal according to == .
5167 We must generate a copy in this case, to reach the correct number
5168 of volatile memory references. */
5170 if ((! rtx_equal_p (temp, target)
5171 || (temp != target && (side_effects_p (temp)
5172 || side_effects_p (target))))
5173 && TREE_CODE (exp) != ERROR_MARK
5174 /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET,
5175 but TARGET is not valid memory reference, TEMP will differ
5176 from TARGET although it is really the same location. */
5177 && !(alt_rtl
5178 && rtx_equal_p (alt_rtl, target)
5179 && !side_effects_p (alt_rtl)
5180 && !side_effects_p (target))
5181 /* If there's nothing to copy, don't bother. Don't call
5182 expr_size unless necessary, because some front-ends (C++)
5183 expr_size-hook must not be given objects that are not
5184 supposed to be bit-copied or bit-initialized. */
5185 && expr_size (exp) != const0_rtx)
5187 if (GET_MODE (temp) != GET_MODE (target)
5188 && GET_MODE (temp) != VOIDmode)
5190 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
5191 if (GET_MODE (target) == BLKmode
5192 && GET_MODE (temp) == BLKmode)
5193 emit_block_move (target, temp, expr_size (exp),
5194 (call_param_p
5195 ? BLOCK_OP_CALL_PARM
5196 : BLOCK_OP_NORMAL));
5197 else if (GET_MODE (target) == BLKmode)
5198 store_bit_field (target, INTVAL (expr_size (exp)) * BITS_PER_UNIT,
5199 0, 0, 0, GET_MODE (temp), temp);
5200 else
5201 convert_move (target, temp, unsignedp);
5204 else if (GET_MODE (temp) == BLKmode && TREE_CODE (exp) == STRING_CST)
5206 /* Handle copying a string constant into an array. The string
5207 constant may be shorter than the array. So copy just the string's
5208 actual length, and clear the rest. First get the size of the data
5209 type of the string, which is actually the size of the target. */
5210 rtx size = expr_size (exp);
5212 if (CONST_INT_P (size)
5213 && INTVAL (size) < TREE_STRING_LENGTH (exp))
5214 emit_block_move (target, temp, size,
5215 (call_param_p
5216 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
5217 else
5219 enum machine_mode pointer_mode
5220 = targetm.addr_space.pointer_mode (MEM_ADDR_SPACE (target));
5221 enum machine_mode address_mode
5222 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (target));
5224 /* Compute the size of the data to copy from the string. */
5225 tree copy_size
5226 = size_binop_loc (loc, MIN_EXPR,
5227 make_tree (sizetype, size),
5228 size_int (TREE_STRING_LENGTH (exp)));
5229 rtx copy_size_rtx
5230 = expand_expr (copy_size, NULL_RTX, VOIDmode,
5231 (call_param_p
5232 ? EXPAND_STACK_PARM : EXPAND_NORMAL));
5233 rtx label = 0;
5235 /* Copy that much. */
5236 copy_size_rtx = convert_to_mode (pointer_mode, copy_size_rtx,
5237 TYPE_UNSIGNED (sizetype));
5238 emit_block_move (target, temp, copy_size_rtx,
5239 (call_param_p
5240 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
5242 /* Figure out how much is left in TARGET that we have to clear.
5243 Do all calculations in pointer_mode. */
5244 if (CONST_INT_P (copy_size_rtx))
5246 size = plus_constant (size, -INTVAL (copy_size_rtx));
5247 target = adjust_address (target, BLKmode,
5248 INTVAL (copy_size_rtx));
5250 else
5252 size = expand_binop (TYPE_MODE (sizetype), sub_optab, size,
5253 copy_size_rtx, NULL_RTX, 0,
5254 OPTAB_LIB_WIDEN);
5256 if (GET_MODE (copy_size_rtx) != address_mode)
5257 copy_size_rtx = convert_to_mode (address_mode,
5258 copy_size_rtx,
5259 TYPE_UNSIGNED (sizetype));
5261 target = offset_address (target, copy_size_rtx,
5262 highest_pow2_factor (copy_size));
5263 label = gen_label_rtx ();
5264 emit_cmp_and_jump_insns (size, const0_rtx, LT, NULL_RTX,
5265 GET_MODE (size), 0, label);
5268 if (size != const0_rtx)
5269 clear_storage (target, size, BLOCK_OP_NORMAL);
5271 if (label)
5272 emit_label (label);
5275 /* Handle calls that return values in multiple non-contiguous locations.
5276 The Irix 6 ABI has examples of this. */
5277 else if (GET_CODE (target) == PARALLEL)
5278 emit_group_load (target, temp, TREE_TYPE (exp),
5279 int_size_in_bytes (TREE_TYPE (exp)));
5280 else if (GET_MODE (temp) == BLKmode)
5281 emit_block_move (target, temp, expr_size (exp),
5282 (call_param_p
5283 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
5284 else if (nontemporal
5285 && emit_storent_insn (target, temp))
5286 /* If we managed to emit a nontemporal store, there is nothing else to
5287 do. */
5289 else
5291 temp = force_operand (temp, target);
5292 if (temp != target)
5293 emit_move_insn (target, temp);
5297 return NULL_RTX;
5300 /* Return true if field F of structure TYPE is a flexible array. */
5302 static bool
5303 flexible_array_member_p (const_tree f, const_tree type)
5305 const_tree tf;
5307 tf = TREE_TYPE (f);
5308 return (DECL_CHAIN (f) == NULL
5309 && TREE_CODE (tf) == ARRAY_TYPE
5310 && TYPE_DOMAIN (tf)
5311 && TYPE_MIN_VALUE (TYPE_DOMAIN (tf))
5312 && integer_zerop (TYPE_MIN_VALUE (TYPE_DOMAIN (tf)))
5313 && !TYPE_MAX_VALUE (TYPE_DOMAIN (tf))
5314 && int_size_in_bytes (type) >= 0);
5317 /* If FOR_CTOR_P, return the number of top-level elements that a constructor
5318 must have in order for it to completely initialize a value of type TYPE.
5319 Return -1 if the number isn't known.
5321 If !FOR_CTOR_P, return an estimate of the number of scalars in TYPE. */
5323 static HOST_WIDE_INT
5324 count_type_elements (const_tree type, bool for_ctor_p)
5326 switch (TREE_CODE (type))
5328 case ARRAY_TYPE:
5330 tree nelts;
5332 nelts = array_type_nelts (type);
5333 if (nelts && host_integerp (nelts, 1))
5335 unsigned HOST_WIDE_INT n;
5337 n = tree_low_cst (nelts, 1) + 1;
5338 if (n == 0 || for_ctor_p)
5339 return n;
5340 else
5341 return n * count_type_elements (TREE_TYPE (type), false);
5343 return for_ctor_p ? -1 : 1;
5346 case RECORD_TYPE:
5348 unsigned HOST_WIDE_INT n;
5349 tree f;
5351 n = 0;
5352 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
5353 if (TREE_CODE (f) == FIELD_DECL)
5355 if (!for_ctor_p)
5356 n += count_type_elements (TREE_TYPE (f), false);
5357 else if (!flexible_array_member_p (f, type))
5358 /* Don't count flexible arrays, which are not supposed
5359 to be initialized. */
5360 n += 1;
5363 return n;
5366 case UNION_TYPE:
5367 case QUAL_UNION_TYPE:
5369 tree f;
5370 HOST_WIDE_INT n, m;
5372 gcc_assert (!for_ctor_p);
5373 /* Estimate the number of scalars in each field and pick the
5374 maximum. Other estimates would do instead; the idea is simply
5375 to make sure that the estimate is not sensitive to the ordering
5376 of the fields. */
5377 n = 1;
5378 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
5379 if (TREE_CODE (f) == FIELD_DECL)
5381 m = count_type_elements (TREE_TYPE (f), false);
5382 /* If the field doesn't span the whole union, add an extra
5383 scalar for the rest. */
5384 if (simple_cst_equal (TYPE_SIZE (TREE_TYPE (f)),
5385 TYPE_SIZE (type)) != 1)
5386 m++;
5387 if (n < m)
5388 n = m;
5390 return n;
5393 case COMPLEX_TYPE:
5394 return 2;
5396 case VECTOR_TYPE:
5397 return TYPE_VECTOR_SUBPARTS (type);
5399 case INTEGER_TYPE:
5400 case REAL_TYPE:
5401 case FIXED_POINT_TYPE:
5402 case ENUMERAL_TYPE:
5403 case BOOLEAN_TYPE:
5404 case POINTER_TYPE:
5405 case OFFSET_TYPE:
5406 case REFERENCE_TYPE:
5407 case NULLPTR_TYPE:
5408 return 1;
5410 case ERROR_MARK:
5411 return 0;
5413 case VOID_TYPE:
5414 case METHOD_TYPE:
5415 case FUNCTION_TYPE:
5416 case LANG_TYPE:
5417 default:
5418 gcc_unreachable ();
5422 /* Helper for categorize_ctor_elements. Identical interface. */
5424 static bool
5425 categorize_ctor_elements_1 (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
5426 HOST_WIDE_INT *p_init_elts, bool *p_complete)
5428 unsigned HOST_WIDE_INT idx;
5429 HOST_WIDE_INT nz_elts, init_elts, num_fields;
5430 tree value, purpose, elt_type;
5432 /* Whether CTOR is a valid constant initializer, in accordance with what
5433 initializer_constant_valid_p does. If inferred from the constructor
5434 elements, true until proven otherwise. */
5435 bool const_from_elts_p = constructor_static_from_elts_p (ctor);
5436 bool const_p = const_from_elts_p ? true : TREE_STATIC (ctor);
5438 nz_elts = 0;
5439 init_elts = 0;
5440 num_fields = 0;
5441 elt_type = NULL_TREE;
5443 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), idx, purpose, value)
5445 HOST_WIDE_INT mult = 1;
5447 if (TREE_CODE (purpose) == RANGE_EXPR)
5449 tree lo_index = TREE_OPERAND (purpose, 0);
5450 tree hi_index = TREE_OPERAND (purpose, 1);
5452 if (host_integerp (lo_index, 1) && host_integerp (hi_index, 1))
5453 mult = (tree_low_cst (hi_index, 1)
5454 - tree_low_cst (lo_index, 1) + 1);
5456 num_fields += mult;
5457 elt_type = TREE_TYPE (value);
5459 switch (TREE_CODE (value))
5461 case CONSTRUCTOR:
5463 HOST_WIDE_INT nz = 0, ic = 0;
5465 bool const_elt_p = categorize_ctor_elements_1 (value, &nz, &ic,
5466 p_complete);
5468 nz_elts += mult * nz;
5469 init_elts += mult * ic;
5471 if (const_from_elts_p && const_p)
5472 const_p = const_elt_p;
5474 break;
5476 case INTEGER_CST:
5477 case REAL_CST:
5478 case FIXED_CST:
5479 if (!initializer_zerop (value))
5480 nz_elts += mult;
5481 init_elts += mult;
5482 break;
5484 case STRING_CST:
5485 nz_elts += mult * TREE_STRING_LENGTH (value);
5486 init_elts += mult * TREE_STRING_LENGTH (value);
5487 break;
5489 case COMPLEX_CST:
5490 if (!initializer_zerop (TREE_REALPART (value)))
5491 nz_elts += mult;
5492 if (!initializer_zerop (TREE_IMAGPART (value)))
5493 nz_elts += mult;
5494 init_elts += mult;
5495 break;
5497 case VECTOR_CST:
5499 tree v;
5500 for (v = TREE_VECTOR_CST_ELTS (value); v; v = TREE_CHAIN (v))
5502 if (!initializer_zerop (TREE_VALUE (v)))
5503 nz_elts += mult;
5504 init_elts += mult;
5507 break;
5509 default:
5511 HOST_WIDE_INT tc = count_type_elements (elt_type, false);
5512 nz_elts += mult * tc;
5513 init_elts += mult * tc;
5515 if (const_from_elts_p && const_p)
5516 const_p = initializer_constant_valid_p (value, elt_type)
5517 != NULL_TREE;
5519 break;
5523 if (*p_complete && !complete_ctor_at_level_p (TREE_TYPE (ctor),
5524 num_fields, elt_type))
5525 *p_complete = false;
5527 *p_nz_elts += nz_elts;
5528 *p_init_elts += init_elts;
5530 return const_p;
5533 /* Examine CTOR to discover:
5534 * how many scalar fields are set to nonzero values,
5535 and place it in *P_NZ_ELTS;
5536 * how many scalar fields in total are in CTOR,
5537 and place it in *P_ELT_COUNT.
5538 * whether the constructor is complete -- in the sense that every
5539 meaningful byte is explicitly given a value --
5540 and place it in *P_COMPLETE.
5542 Return whether or not CTOR is a valid static constant initializer, the same
5543 as "initializer_constant_valid_p (CTOR, TREE_TYPE (CTOR)) != 0". */
5545 bool
5546 categorize_ctor_elements (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
5547 HOST_WIDE_INT *p_init_elts, bool *p_complete)
5549 *p_nz_elts = 0;
5550 *p_init_elts = 0;
5551 *p_complete = true;
5553 return categorize_ctor_elements_1 (ctor, p_nz_elts, p_init_elts, p_complete);
5556 /* TYPE is initialized by a constructor with NUM_ELTS elements, the last
5557 of which had type LAST_TYPE. Each element was itself a complete
5558 initializer, in the sense that every meaningful byte was explicitly
5559 given a value. Return true if the same is true for the constructor
5560 as a whole. */
5562 bool
5563 complete_ctor_at_level_p (const_tree type, HOST_WIDE_INT num_elts,
5564 const_tree last_type)
5566 if (TREE_CODE (type) == UNION_TYPE
5567 || TREE_CODE (type) == QUAL_UNION_TYPE)
5569 if (num_elts == 0)
5570 return false;
5572 gcc_assert (num_elts == 1 && last_type);
5574 /* ??? We could look at each element of the union, and find the
5575 largest element. Which would avoid comparing the size of the
5576 initialized element against any tail padding in the union.
5577 Doesn't seem worth the effort... */
5578 return simple_cst_equal (TYPE_SIZE (type), TYPE_SIZE (last_type)) == 1;
5581 return count_type_elements (type, true) == num_elts;
5584 /* Return 1 if EXP contains mostly (3/4) zeros. */
5586 static int
5587 mostly_zeros_p (const_tree exp)
5589 if (TREE_CODE (exp) == CONSTRUCTOR)
5591 HOST_WIDE_INT nz_elts, init_elts;
5592 bool complete_p;
5594 categorize_ctor_elements (exp, &nz_elts, &init_elts, &complete_p);
5595 return !complete_p || nz_elts < init_elts / 4;
5598 return initializer_zerop (exp);
5601 /* Return 1 if EXP contains all zeros. */
5603 static int
5604 all_zeros_p (const_tree exp)
5606 if (TREE_CODE (exp) == CONSTRUCTOR)
5608 HOST_WIDE_INT nz_elts, init_elts;
5609 bool complete_p;
5611 categorize_ctor_elements (exp, &nz_elts, &init_elts, &complete_p);
5612 return nz_elts == 0;
5615 return initializer_zerop (exp);
5618 /* Helper function for store_constructor.
5619 TARGET, BITSIZE, BITPOS, MODE, EXP are as for store_field.
5620 TYPE is the type of the CONSTRUCTOR, not the element type.
5621 CLEARED is as for store_constructor.
5622 ALIAS_SET is the alias set to use for any stores.
5624 This provides a recursive shortcut back to store_constructor when it isn't
5625 necessary to go through store_field. This is so that we can pass through
5626 the cleared field to let store_constructor know that we may not have to
5627 clear a substructure if the outer structure has already been cleared. */
5629 static void
5630 store_constructor_field (rtx target, unsigned HOST_WIDE_INT bitsize,
5631 HOST_WIDE_INT bitpos, enum machine_mode mode,
5632 tree exp, tree type, int cleared,
5633 alias_set_type alias_set)
5635 if (TREE_CODE (exp) == CONSTRUCTOR
5636 /* We can only call store_constructor recursively if the size and
5637 bit position are on a byte boundary. */
5638 && bitpos % BITS_PER_UNIT == 0
5639 && (bitsize > 0 && bitsize % BITS_PER_UNIT == 0)
5640 /* If we have a nonzero bitpos for a register target, then we just
5641 let store_field do the bitfield handling. This is unlikely to
5642 generate unnecessary clear instructions anyways. */
5643 && (bitpos == 0 || MEM_P (target)))
5645 if (MEM_P (target))
5646 target
5647 = adjust_address (target,
5648 GET_MODE (target) == BLKmode
5649 || 0 != (bitpos
5650 % GET_MODE_ALIGNMENT (GET_MODE (target)))
5651 ? BLKmode : VOIDmode, bitpos / BITS_PER_UNIT);
5654 /* Update the alias set, if required. */
5655 if (MEM_P (target) && ! MEM_KEEP_ALIAS_SET_P (target)
5656 && MEM_ALIAS_SET (target) != 0)
5658 target = copy_rtx (target);
5659 set_mem_alias_set (target, alias_set);
5662 store_constructor (exp, target, cleared, bitsize / BITS_PER_UNIT);
5664 else
5665 store_field (target, bitsize, bitpos, 0, 0, mode, exp, type, alias_set,
5666 false);
5669 /* Store the value of constructor EXP into the rtx TARGET.
5670 TARGET is either a REG or a MEM; we know it cannot conflict, since
5671 safe_from_p has been called.
5672 CLEARED is true if TARGET is known to have been zero'd.
5673 SIZE is the number of bytes of TARGET we are allowed to modify: this
5674 may not be the same as the size of EXP if we are assigning to a field
5675 which has been packed to exclude padding bits. */
5677 static void
5678 store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
5680 tree type = TREE_TYPE (exp);
5681 #ifdef WORD_REGISTER_OPERATIONS
5682 HOST_WIDE_INT exp_size = int_size_in_bytes (type);
5683 #endif
5685 switch (TREE_CODE (type))
5687 case RECORD_TYPE:
5688 case UNION_TYPE:
5689 case QUAL_UNION_TYPE:
5691 unsigned HOST_WIDE_INT idx;
5692 tree field, value;
5694 /* If size is zero or the target is already cleared, do nothing. */
5695 if (size == 0 || cleared)
5696 cleared = 1;
5697 /* We either clear the aggregate or indicate the value is dead. */
5698 else if ((TREE_CODE (type) == UNION_TYPE
5699 || TREE_CODE (type) == QUAL_UNION_TYPE)
5700 && ! CONSTRUCTOR_ELTS (exp))
5701 /* If the constructor is empty, clear the union. */
5703 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
5704 cleared = 1;
5707 /* If we are building a static constructor into a register,
5708 set the initial value as zero so we can fold the value into
5709 a constant. But if more than one register is involved,
5710 this probably loses. */
5711 else if (REG_P (target) && TREE_STATIC (exp)
5712 && GET_MODE_SIZE (GET_MODE (target)) <= UNITS_PER_WORD)
5714 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5715 cleared = 1;
5718 /* If the constructor has fewer fields than the structure or
5719 if we are initializing the structure to mostly zeros, clear
5720 the whole structure first. Don't do this if TARGET is a
5721 register whose mode size isn't equal to SIZE since
5722 clear_storage can't handle this case. */
5723 else if (size > 0
5724 && (((int)VEC_length (constructor_elt, CONSTRUCTOR_ELTS (exp))
5725 != fields_length (type))
5726 || mostly_zeros_p (exp))
5727 && (!REG_P (target)
5728 || ((HOST_WIDE_INT) GET_MODE_SIZE (GET_MODE (target))
5729 == size)))
5731 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5732 cleared = 1;
5735 if (REG_P (target) && !cleared)
5736 emit_clobber (target);
5738 /* Store each element of the constructor into the
5739 corresponding field of TARGET. */
5740 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, field, value)
5742 enum machine_mode mode;
5743 HOST_WIDE_INT bitsize;
5744 HOST_WIDE_INT bitpos = 0;
5745 tree offset;
5746 rtx to_rtx = target;
5748 /* Just ignore missing fields. We cleared the whole
5749 structure, above, if any fields are missing. */
5750 if (field == 0)
5751 continue;
5753 if (cleared && initializer_zerop (value))
5754 continue;
5756 if (host_integerp (DECL_SIZE (field), 1))
5757 bitsize = tree_low_cst (DECL_SIZE (field), 1);
5758 else
5759 bitsize = -1;
5761 mode = DECL_MODE (field);
5762 if (DECL_BIT_FIELD (field))
5763 mode = VOIDmode;
5765 offset = DECL_FIELD_OFFSET (field);
5766 if (host_integerp (offset, 0)
5767 && host_integerp (bit_position (field), 0))
5769 bitpos = int_bit_position (field);
5770 offset = 0;
5772 else
5773 bitpos = tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 0);
5775 if (offset)
5777 enum machine_mode address_mode;
5778 rtx offset_rtx;
5780 offset
5781 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (offset,
5782 make_tree (TREE_TYPE (exp),
5783 target));
5785 offset_rtx = expand_normal (offset);
5786 gcc_assert (MEM_P (to_rtx));
5788 address_mode
5789 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to_rtx));
5790 if (GET_MODE (offset_rtx) != address_mode)
5791 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
5793 to_rtx = offset_address (to_rtx, offset_rtx,
5794 highest_pow2_factor (offset));
5797 #ifdef WORD_REGISTER_OPERATIONS
5798 /* If this initializes a field that is smaller than a
5799 word, at the start of a word, try to widen it to a full
5800 word. This special case allows us to output C++ member
5801 function initializations in a form that the optimizers
5802 can understand. */
5803 if (REG_P (target)
5804 && bitsize < BITS_PER_WORD
5805 && bitpos % BITS_PER_WORD == 0
5806 && GET_MODE_CLASS (mode) == MODE_INT
5807 && TREE_CODE (value) == INTEGER_CST
5808 && exp_size >= 0
5809 && bitpos + BITS_PER_WORD <= exp_size * BITS_PER_UNIT)
5811 tree type = TREE_TYPE (value);
5813 if (TYPE_PRECISION (type) < BITS_PER_WORD)
5815 type = lang_hooks.types.type_for_size
5816 (BITS_PER_WORD, TYPE_UNSIGNED (type));
5817 value = fold_convert (type, value);
5820 if (BYTES_BIG_ENDIAN)
5821 value
5822 = fold_build2 (LSHIFT_EXPR, type, value,
5823 build_int_cst (type,
5824 BITS_PER_WORD - bitsize));
5825 bitsize = BITS_PER_WORD;
5826 mode = word_mode;
5828 #endif
5830 if (MEM_P (to_rtx) && !MEM_KEEP_ALIAS_SET_P (to_rtx)
5831 && DECL_NONADDRESSABLE_P (field))
5833 to_rtx = copy_rtx (to_rtx);
5834 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
5837 store_constructor_field (to_rtx, bitsize, bitpos, mode,
5838 value, type, cleared,
5839 get_alias_set (TREE_TYPE (field)));
5841 break;
5843 case ARRAY_TYPE:
5845 tree value, index;
5846 unsigned HOST_WIDE_INT i;
5847 int need_to_clear;
5848 tree domain;
5849 tree elttype = TREE_TYPE (type);
5850 int const_bounds_p;
5851 HOST_WIDE_INT minelt = 0;
5852 HOST_WIDE_INT maxelt = 0;
5854 domain = TYPE_DOMAIN (type);
5855 const_bounds_p = (TYPE_MIN_VALUE (domain)
5856 && TYPE_MAX_VALUE (domain)
5857 && host_integerp (TYPE_MIN_VALUE (domain), 0)
5858 && host_integerp (TYPE_MAX_VALUE (domain), 0));
5860 /* If we have constant bounds for the range of the type, get them. */
5861 if (const_bounds_p)
5863 minelt = tree_low_cst (TYPE_MIN_VALUE (domain), 0);
5864 maxelt = tree_low_cst (TYPE_MAX_VALUE (domain), 0);
5867 /* If the constructor has fewer elements than the array, clear
5868 the whole array first. Similarly if this is static
5869 constructor of a non-BLKmode object. */
5870 if (cleared)
5871 need_to_clear = 0;
5872 else if (REG_P (target) && TREE_STATIC (exp))
5873 need_to_clear = 1;
5874 else
5876 unsigned HOST_WIDE_INT idx;
5877 tree index, value;
5878 HOST_WIDE_INT count = 0, zero_count = 0;
5879 need_to_clear = ! const_bounds_p;
5881 /* This loop is a more accurate version of the loop in
5882 mostly_zeros_p (it handles RANGE_EXPR in an index). It
5883 is also needed to check for missing elements. */
5884 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, index, value)
5886 HOST_WIDE_INT this_node_count;
5888 if (need_to_clear)
5889 break;
5891 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
5893 tree lo_index = TREE_OPERAND (index, 0);
5894 tree hi_index = TREE_OPERAND (index, 1);
5896 if (! host_integerp (lo_index, 1)
5897 || ! host_integerp (hi_index, 1))
5899 need_to_clear = 1;
5900 break;
5903 this_node_count = (tree_low_cst (hi_index, 1)
5904 - tree_low_cst (lo_index, 1) + 1);
5906 else
5907 this_node_count = 1;
5909 count += this_node_count;
5910 if (mostly_zeros_p (value))
5911 zero_count += this_node_count;
5914 /* Clear the entire array first if there are any missing
5915 elements, or if the incidence of zero elements is >=
5916 75%. */
5917 if (! need_to_clear
5918 && (count < maxelt - minelt + 1
5919 || 4 * zero_count >= 3 * count))
5920 need_to_clear = 1;
5923 if (need_to_clear && size > 0)
5925 if (REG_P (target))
5926 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5927 else
5928 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5929 cleared = 1;
5932 if (!cleared && REG_P (target))
5933 /* Inform later passes that the old value is dead. */
5934 emit_clobber (target);
5936 /* Store each element of the constructor into the
5937 corresponding element of TARGET, determined by counting the
5938 elements. */
5939 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), i, index, value)
5941 enum machine_mode mode;
5942 HOST_WIDE_INT bitsize;
5943 HOST_WIDE_INT bitpos;
5944 rtx xtarget = target;
5946 if (cleared && initializer_zerop (value))
5947 continue;
5949 mode = TYPE_MODE (elttype);
5950 if (mode == BLKmode)
5951 bitsize = (host_integerp (TYPE_SIZE (elttype), 1)
5952 ? tree_low_cst (TYPE_SIZE (elttype), 1)
5953 : -1);
5954 else
5955 bitsize = GET_MODE_BITSIZE (mode);
5957 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
5959 tree lo_index = TREE_OPERAND (index, 0);
5960 tree hi_index = TREE_OPERAND (index, 1);
5961 rtx index_r, pos_rtx;
5962 HOST_WIDE_INT lo, hi, count;
5963 tree position;
5965 /* If the range is constant and "small", unroll the loop. */
5966 if (const_bounds_p
5967 && host_integerp (lo_index, 0)
5968 && host_integerp (hi_index, 0)
5969 && (lo = tree_low_cst (lo_index, 0),
5970 hi = tree_low_cst (hi_index, 0),
5971 count = hi - lo + 1,
5972 (!MEM_P (target)
5973 || count <= 2
5974 || (host_integerp (TYPE_SIZE (elttype), 1)
5975 && (tree_low_cst (TYPE_SIZE (elttype), 1) * count
5976 <= 40 * 8)))))
5978 lo -= minelt; hi -= minelt;
5979 for (; lo <= hi; lo++)
5981 bitpos = lo * tree_low_cst (TYPE_SIZE (elttype), 0);
5983 if (MEM_P (target)
5984 && !MEM_KEEP_ALIAS_SET_P (target)
5985 && TREE_CODE (type) == ARRAY_TYPE
5986 && TYPE_NONALIASED_COMPONENT (type))
5988 target = copy_rtx (target);
5989 MEM_KEEP_ALIAS_SET_P (target) = 1;
5992 store_constructor_field
5993 (target, bitsize, bitpos, mode, value, type, cleared,
5994 get_alias_set (elttype));
5997 else
5999 rtx loop_start = gen_label_rtx ();
6000 rtx loop_end = gen_label_rtx ();
6001 tree exit_cond;
6003 expand_normal (hi_index);
6005 index = build_decl (EXPR_LOCATION (exp),
6006 VAR_DECL, NULL_TREE, domain);
6007 index_r = gen_reg_rtx (promote_decl_mode (index, NULL));
6008 SET_DECL_RTL (index, index_r);
6009 store_expr (lo_index, index_r, 0, false);
6011 /* Build the head of the loop. */
6012 do_pending_stack_adjust ();
6013 emit_label (loop_start);
6015 /* Assign value to element index. */
6016 position =
6017 fold_convert (ssizetype,
6018 fold_build2 (MINUS_EXPR,
6019 TREE_TYPE (index),
6020 index,
6021 TYPE_MIN_VALUE (domain)));
6023 position =
6024 size_binop (MULT_EXPR, position,
6025 fold_convert (ssizetype,
6026 TYPE_SIZE_UNIT (elttype)));
6028 pos_rtx = expand_normal (position);
6029 xtarget = offset_address (target, pos_rtx,
6030 highest_pow2_factor (position));
6031 xtarget = adjust_address (xtarget, mode, 0);
6032 if (TREE_CODE (value) == CONSTRUCTOR)
6033 store_constructor (value, xtarget, cleared,
6034 bitsize / BITS_PER_UNIT);
6035 else
6036 store_expr (value, xtarget, 0, false);
6038 /* Generate a conditional jump to exit the loop. */
6039 exit_cond = build2 (LT_EXPR, integer_type_node,
6040 index, hi_index);
6041 jumpif (exit_cond, loop_end, -1);
6043 /* Update the loop counter, and jump to the head of
6044 the loop. */
6045 expand_assignment (index,
6046 build2 (PLUS_EXPR, TREE_TYPE (index),
6047 index, integer_one_node),
6048 false);
6050 emit_jump (loop_start);
6052 /* Build the end of the loop. */
6053 emit_label (loop_end);
6056 else if ((index != 0 && ! host_integerp (index, 0))
6057 || ! host_integerp (TYPE_SIZE (elttype), 1))
6059 tree position;
6061 if (index == 0)
6062 index = ssize_int (1);
6064 if (minelt)
6065 index = fold_convert (ssizetype,
6066 fold_build2 (MINUS_EXPR,
6067 TREE_TYPE (index),
6068 index,
6069 TYPE_MIN_VALUE (domain)));
6071 position =
6072 size_binop (MULT_EXPR, index,
6073 fold_convert (ssizetype,
6074 TYPE_SIZE_UNIT (elttype)));
6075 xtarget = offset_address (target,
6076 expand_normal (position),
6077 highest_pow2_factor (position));
6078 xtarget = adjust_address (xtarget, mode, 0);
6079 store_expr (value, xtarget, 0, false);
6081 else
6083 if (index != 0)
6084 bitpos = ((tree_low_cst (index, 0) - minelt)
6085 * tree_low_cst (TYPE_SIZE (elttype), 1));
6086 else
6087 bitpos = (i * tree_low_cst (TYPE_SIZE (elttype), 1));
6089 if (MEM_P (target) && !MEM_KEEP_ALIAS_SET_P (target)
6090 && TREE_CODE (type) == ARRAY_TYPE
6091 && TYPE_NONALIASED_COMPONENT (type))
6093 target = copy_rtx (target);
6094 MEM_KEEP_ALIAS_SET_P (target) = 1;
6096 store_constructor_field (target, bitsize, bitpos, mode, value,
6097 type, cleared, get_alias_set (elttype));
6100 break;
6103 case VECTOR_TYPE:
6105 unsigned HOST_WIDE_INT idx;
6106 constructor_elt *ce;
6107 int i;
6108 int need_to_clear;
6109 int icode = 0;
6110 tree elttype = TREE_TYPE (type);
6111 int elt_size = tree_low_cst (TYPE_SIZE (elttype), 1);
6112 enum machine_mode eltmode = TYPE_MODE (elttype);
6113 HOST_WIDE_INT bitsize;
6114 HOST_WIDE_INT bitpos;
6115 rtvec vector = NULL;
6116 unsigned n_elts;
6117 alias_set_type alias;
6119 gcc_assert (eltmode != BLKmode);
6121 n_elts = TYPE_VECTOR_SUBPARTS (type);
6122 if (REG_P (target) && VECTOR_MODE_P (GET_MODE (target)))
6124 enum machine_mode mode = GET_MODE (target);
6126 icode = (int) optab_handler (vec_init_optab, mode);
6127 if (icode != CODE_FOR_nothing)
6129 unsigned int i;
6131 vector = rtvec_alloc (n_elts);
6132 for (i = 0; i < n_elts; i++)
6133 RTVEC_ELT (vector, i) = CONST0_RTX (GET_MODE_INNER (mode));
6137 /* If the constructor has fewer elements than the vector,
6138 clear the whole array first. Similarly if this is static
6139 constructor of a non-BLKmode object. */
6140 if (cleared)
6141 need_to_clear = 0;
6142 else if (REG_P (target) && TREE_STATIC (exp))
6143 need_to_clear = 1;
6144 else
6146 unsigned HOST_WIDE_INT count = 0, zero_count = 0;
6147 tree value;
6149 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
6151 int n_elts_here = tree_low_cst
6152 (int_const_binop (TRUNC_DIV_EXPR,
6153 TYPE_SIZE (TREE_TYPE (value)),
6154 TYPE_SIZE (elttype)), 1);
6156 count += n_elts_here;
6157 if (mostly_zeros_p (value))
6158 zero_count += n_elts_here;
6161 /* Clear the entire vector first if there are any missing elements,
6162 or if the incidence of zero elements is >= 75%. */
6163 need_to_clear = (count < n_elts || 4 * zero_count >= 3 * count);
6166 if (need_to_clear && size > 0 && !vector)
6168 if (REG_P (target))
6169 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
6170 else
6171 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
6172 cleared = 1;
6175 /* Inform later passes that the old value is dead. */
6176 if (!cleared && !vector && REG_P (target))
6177 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
6179 if (MEM_P (target))
6180 alias = MEM_ALIAS_SET (target);
6181 else
6182 alias = get_alias_set (elttype);
6184 /* Store each element of the constructor into the corresponding
6185 element of TARGET, determined by counting the elements. */
6186 for (idx = 0, i = 0;
6187 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce);
6188 idx++, i += bitsize / elt_size)
6190 HOST_WIDE_INT eltpos;
6191 tree value = ce->value;
6193 bitsize = tree_low_cst (TYPE_SIZE (TREE_TYPE (value)), 1);
6194 if (cleared && initializer_zerop (value))
6195 continue;
6197 if (ce->index)
6198 eltpos = tree_low_cst (ce->index, 1);
6199 else
6200 eltpos = i;
6202 if (vector)
6204 /* Vector CONSTRUCTORs should only be built from smaller
6205 vectors in the case of BLKmode vectors. */
6206 gcc_assert (TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE);
6207 RTVEC_ELT (vector, eltpos)
6208 = expand_normal (value);
6210 else
6212 enum machine_mode value_mode =
6213 TREE_CODE (TREE_TYPE (value)) == VECTOR_TYPE
6214 ? TYPE_MODE (TREE_TYPE (value))
6215 : eltmode;
6216 bitpos = eltpos * elt_size;
6217 store_constructor_field (target, bitsize, bitpos,
6218 value_mode, value, type,
6219 cleared, alias);
6223 if (vector)
6224 emit_insn (GEN_FCN (icode)
6225 (target,
6226 gen_rtx_PARALLEL (GET_MODE (target), vector)));
6227 break;
6230 default:
6231 gcc_unreachable ();
6235 /* Store the value of EXP (an expression tree)
6236 into a subfield of TARGET which has mode MODE and occupies
6237 BITSIZE bits, starting BITPOS bits from the start of TARGET.
6238 If MODE is VOIDmode, it means that we are storing into a bit-field.
6240 BITREGION_START is bitpos of the first bitfield in this region.
6241 BITREGION_END is the bitpos of the ending bitfield in this region.
6242 These two fields are 0, if the C++ memory model does not apply,
6243 or we are not interested in keeping track of bitfield regions.
6245 Always return const0_rtx unless we have something particular to
6246 return.
6248 TYPE is the type of the underlying object,
6250 ALIAS_SET is the alias set for the destination. This value will
6251 (in general) be different from that for TARGET, since TARGET is a
6252 reference to the containing structure.
6254 If NONTEMPORAL is true, try generating a nontemporal store. */
6256 static rtx
6257 store_field (rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos,
6258 unsigned HOST_WIDE_INT bitregion_start,
6259 unsigned HOST_WIDE_INT bitregion_end,
6260 enum machine_mode mode, tree exp, tree type,
6261 alias_set_type alias_set, bool nontemporal)
6263 if (TREE_CODE (exp) == ERROR_MARK)
6264 return const0_rtx;
6266 /* If we have nothing to store, do nothing unless the expression has
6267 side-effects. */
6268 if (bitsize == 0)
6269 return expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
6271 /* If we are storing into an unaligned field of an aligned union that is
6272 in a register, we may have the mode of TARGET being an integer mode but
6273 MODE == BLKmode. In that case, get an aligned object whose size and
6274 alignment are the same as TARGET and store TARGET into it (we can avoid
6275 the store if the field being stored is the entire width of TARGET). Then
6276 call ourselves recursively to store the field into a BLKmode version of
6277 that object. Finally, load from the object into TARGET. This is not
6278 very efficient in general, but should only be slightly more expensive
6279 than the otherwise-required unaligned accesses. Perhaps this can be
6280 cleaned up later. It's tempting to make OBJECT readonly, but it's set
6281 twice, once with emit_move_insn and once via store_field. */
6283 if (mode == BLKmode
6284 && (REG_P (target) || GET_CODE (target) == SUBREG))
6286 rtx object = assign_temp (type, 0, 1, 1);
6287 rtx blk_object = adjust_address (object, BLKmode, 0);
6289 if (bitsize != (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (target)))
6290 emit_move_insn (object, target);
6292 store_field (blk_object, bitsize, bitpos,
6293 bitregion_start, bitregion_end,
6294 mode, exp, type, alias_set, nontemporal);
6296 emit_move_insn (target, object);
6298 /* We want to return the BLKmode version of the data. */
6299 return blk_object;
6302 if (GET_CODE (target) == CONCAT)
6304 /* We're storing into a struct containing a single __complex. */
6306 gcc_assert (!bitpos);
6307 return store_expr (exp, target, 0, nontemporal);
6310 /* If the structure is in a register or if the component
6311 is a bit field, we cannot use addressing to access it.
6312 Use bit-field techniques or SUBREG to store in it. */
6314 if (mode == VOIDmode
6315 || (mode != BLKmode && ! direct_store[(int) mode]
6316 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
6317 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
6318 || REG_P (target)
6319 || GET_CODE (target) == SUBREG
6320 /* If the field isn't aligned enough to store as an ordinary memref,
6321 store it as a bit field. */
6322 || (mode != BLKmode
6323 && ((((MEM_ALIGN (target) < GET_MODE_ALIGNMENT (mode))
6324 || bitpos % GET_MODE_ALIGNMENT (mode))
6325 && SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (target)))
6326 || (bitpos % BITS_PER_UNIT != 0)))
6327 || (bitsize >= 0 && mode != BLKmode
6328 && GET_MODE_BITSIZE (mode) > bitsize)
6329 /* If the RHS and field are a constant size and the size of the
6330 RHS isn't the same size as the bitfield, we must use bitfield
6331 operations. */
6332 || (bitsize >= 0
6333 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
6334 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) != 0)
6335 /* If we are expanding a MEM_REF of a non-BLKmode non-addressable
6336 decl we must use bitfield operations. */
6337 || (bitsize >= 0
6338 && TREE_CODE (exp) == MEM_REF
6339 && TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
6340 && DECL_P (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
6341 && !TREE_ADDRESSABLE (TREE_OPERAND (TREE_OPERAND (exp, 0),0 ))
6342 && DECL_MODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)) != BLKmode))
6344 rtx temp;
6345 gimple nop_def;
6347 /* If EXP is a NOP_EXPR of precision less than its mode, then that
6348 implies a mask operation. If the precision is the same size as
6349 the field we're storing into, that mask is redundant. This is
6350 particularly common with bit field assignments generated by the
6351 C front end. */
6352 nop_def = get_def_for_expr (exp, NOP_EXPR);
6353 if (nop_def)
6355 tree type = TREE_TYPE (exp);
6356 if (INTEGRAL_TYPE_P (type)
6357 && TYPE_PRECISION (type) < GET_MODE_BITSIZE (TYPE_MODE (type))
6358 && bitsize == TYPE_PRECISION (type))
6360 tree op = gimple_assign_rhs1 (nop_def);
6361 type = TREE_TYPE (op);
6362 if (INTEGRAL_TYPE_P (type) && TYPE_PRECISION (type) >= bitsize)
6363 exp = op;
6367 temp = expand_normal (exp);
6369 /* If BITSIZE is narrower than the size of the type of EXP
6370 we will be narrowing TEMP. Normally, what's wanted are the
6371 low-order bits. However, if EXP's type is a record and this is
6372 big-endian machine, we want the upper BITSIZE bits. */
6373 if (BYTES_BIG_ENDIAN && GET_MODE_CLASS (GET_MODE (temp)) == MODE_INT
6374 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (temp))
6375 && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
6376 temp = expand_shift (RSHIFT_EXPR, GET_MODE (temp), temp,
6377 GET_MODE_BITSIZE (GET_MODE (temp)) - bitsize,
6378 NULL_RTX, 1);
6380 /* Unless MODE is VOIDmode or BLKmode, convert TEMP to
6381 MODE. */
6382 if (mode != VOIDmode && mode != BLKmode
6383 && mode != TYPE_MODE (TREE_TYPE (exp)))
6384 temp = convert_modes (mode, TYPE_MODE (TREE_TYPE (exp)), temp, 1);
6386 /* If the modes of TEMP and TARGET are both BLKmode, both
6387 must be in memory and BITPOS must be aligned on a byte
6388 boundary. If so, we simply do a block copy. Likewise
6389 for a BLKmode-like TARGET. */
6390 if (GET_MODE (temp) == BLKmode
6391 && (GET_MODE (target) == BLKmode
6392 || (MEM_P (target)
6393 && GET_MODE_CLASS (GET_MODE (target)) == MODE_INT
6394 && (bitpos % BITS_PER_UNIT) == 0
6395 && (bitsize % BITS_PER_UNIT) == 0)))
6397 gcc_assert (MEM_P (target) && MEM_P (temp)
6398 && (bitpos % BITS_PER_UNIT) == 0);
6400 target = adjust_address (target, VOIDmode, bitpos / BITS_PER_UNIT);
6401 emit_block_move (target, temp,
6402 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
6403 / BITS_PER_UNIT),
6404 BLOCK_OP_NORMAL);
6406 return const0_rtx;
6409 /* Store the value in the bitfield. */
6410 store_bit_field (target, bitsize, bitpos,
6411 bitregion_start, bitregion_end,
6412 mode, temp);
6414 return const0_rtx;
6416 else
6418 /* Now build a reference to just the desired component. */
6419 rtx to_rtx = adjust_address (target, mode, bitpos / BITS_PER_UNIT);
6421 if (to_rtx == target)
6422 to_rtx = copy_rtx (to_rtx);
6424 if (!MEM_SCALAR_P (to_rtx))
6425 MEM_IN_STRUCT_P (to_rtx) = 1;
6426 if (!MEM_KEEP_ALIAS_SET_P (to_rtx) && MEM_ALIAS_SET (to_rtx) != 0)
6427 set_mem_alias_set (to_rtx, alias_set);
6429 return store_expr (exp, to_rtx, 0, nontemporal);
6433 /* Given an expression EXP that may be a COMPONENT_REF, a BIT_FIELD_REF,
6434 an ARRAY_REF, or an ARRAY_RANGE_REF, look for nested operations of these
6435 codes and find the ultimate containing object, which we return.
6437 We set *PBITSIZE to the size in bits that we want, *PBITPOS to the
6438 bit position, and *PUNSIGNEDP to the signedness of the field.
6439 If the position of the field is variable, we store a tree
6440 giving the variable offset (in units) in *POFFSET.
6441 This offset is in addition to the bit position.
6442 If the position is not variable, we store 0 in *POFFSET.
6444 If any of the extraction expressions is volatile,
6445 we store 1 in *PVOLATILEP. Otherwise we don't change that.
6447 If the field is a non-BLKmode bit-field, *PMODE is set to VOIDmode.
6448 Otherwise, it is a mode that can be used to access the field.
6450 If the field describes a variable-sized object, *PMODE is set to
6451 BLKmode and *PBITSIZE is set to -1. An access cannot be made in
6452 this case, but the address of the object can be found.
6454 If KEEP_ALIGNING is true and the target is STRICT_ALIGNMENT, we don't
6455 look through nodes that serve as markers of a greater alignment than
6456 the one that can be deduced from the expression. These nodes make it
6457 possible for front-ends to prevent temporaries from being created by
6458 the middle-end on alignment considerations. For that purpose, the
6459 normal operating mode at high-level is to always pass FALSE so that
6460 the ultimate containing object is really returned; moreover, the
6461 associated predicate handled_component_p will always return TRUE
6462 on these nodes, thus indicating that they are essentially handled
6463 by get_inner_reference. TRUE should only be passed when the caller
6464 is scanning the expression in order to build another representation
6465 and specifically knows how to handle these nodes; as such, this is
6466 the normal operating mode in the RTL expanders. */
6468 tree
6469 get_inner_reference (tree exp, HOST_WIDE_INT *pbitsize,
6470 HOST_WIDE_INT *pbitpos, tree *poffset,
6471 enum machine_mode *pmode, int *punsignedp,
6472 int *pvolatilep, bool keep_aligning)
6474 tree size_tree = 0;
6475 enum machine_mode mode = VOIDmode;
6476 bool blkmode_bitfield = false;
6477 tree offset = size_zero_node;
6478 double_int bit_offset = double_int_zero;
6480 /* First get the mode, signedness, and size. We do this from just the
6481 outermost expression. */
6482 *pbitsize = -1;
6483 if (TREE_CODE (exp) == COMPONENT_REF)
6485 tree field = TREE_OPERAND (exp, 1);
6486 size_tree = DECL_SIZE (field);
6487 if (!DECL_BIT_FIELD (field))
6488 mode = DECL_MODE (field);
6489 else if (DECL_MODE (field) == BLKmode)
6490 blkmode_bitfield = true;
6491 else if (TREE_THIS_VOLATILE (exp)
6492 && flag_strict_volatile_bitfields > 0)
6493 /* Volatile bitfields should be accessed in the mode of the
6494 field's type, not the mode computed based on the bit
6495 size. */
6496 mode = TYPE_MODE (DECL_BIT_FIELD_TYPE (field));
6498 *punsignedp = DECL_UNSIGNED (field);
6500 else if (TREE_CODE (exp) == BIT_FIELD_REF)
6502 size_tree = TREE_OPERAND (exp, 1);
6503 *punsignedp = (! INTEGRAL_TYPE_P (TREE_TYPE (exp))
6504 || TYPE_UNSIGNED (TREE_TYPE (exp)));
6506 /* For vector types, with the correct size of access, use the mode of
6507 inner type. */
6508 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == VECTOR_TYPE
6509 && TREE_TYPE (exp) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)))
6510 && tree_int_cst_equal (size_tree, TYPE_SIZE (TREE_TYPE (exp))))
6511 mode = TYPE_MODE (TREE_TYPE (exp));
6513 else
6515 mode = TYPE_MODE (TREE_TYPE (exp));
6516 *punsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
6518 if (mode == BLKmode)
6519 size_tree = TYPE_SIZE (TREE_TYPE (exp));
6520 else
6521 *pbitsize = GET_MODE_BITSIZE (mode);
6524 if (size_tree != 0)
6526 if (! host_integerp (size_tree, 1))
6527 mode = BLKmode, *pbitsize = -1;
6528 else
6529 *pbitsize = tree_low_cst (size_tree, 1);
6532 /* Compute cumulative bit-offset for nested component-refs and array-refs,
6533 and find the ultimate containing object. */
6534 while (1)
6536 switch (TREE_CODE (exp))
6538 case BIT_FIELD_REF:
6539 bit_offset
6540 = double_int_add (bit_offset,
6541 tree_to_double_int (TREE_OPERAND (exp, 2)));
6542 break;
6544 case COMPONENT_REF:
6546 tree field = TREE_OPERAND (exp, 1);
6547 tree this_offset = component_ref_field_offset (exp);
6549 /* If this field hasn't been filled in yet, don't go past it.
6550 This should only happen when folding expressions made during
6551 type construction. */
6552 if (this_offset == 0)
6553 break;
6555 offset = size_binop (PLUS_EXPR, offset, this_offset);
6556 bit_offset = double_int_add (bit_offset,
6557 tree_to_double_int
6558 (DECL_FIELD_BIT_OFFSET (field)));
6560 /* ??? Right now we don't do anything with DECL_OFFSET_ALIGN. */
6562 break;
6564 case ARRAY_REF:
6565 case ARRAY_RANGE_REF:
6567 tree index = TREE_OPERAND (exp, 1);
6568 tree low_bound = array_ref_low_bound (exp);
6569 tree unit_size = array_ref_element_size (exp);
6571 /* We assume all arrays have sizes that are a multiple of a byte.
6572 First subtract the lower bound, if any, in the type of the
6573 index, then convert to sizetype and multiply by the size of
6574 the array element. */
6575 if (! integer_zerop (low_bound))
6576 index = fold_build2 (MINUS_EXPR, TREE_TYPE (index),
6577 index, low_bound);
6579 offset = size_binop (PLUS_EXPR, offset,
6580 size_binop (MULT_EXPR,
6581 fold_convert (sizetype, index),
6582 unit_size));
6584 break;
6586 case REALPART_EXPR:
6587 break;
6589 case IMAGPART_EXPR:
6590 bit_offset = double_int_add (bit_offset,
6591 uhwi_to_double_int (*pbitsize));
6592 break;
6594 case VIEW_CONVERT_EXPR:
6595 if (keep_aligning && STRICT_ALIGNMENT
6596 && (TYPE_ALIGN (TREE_TYPE (exp))
6597 > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0))))
6598 && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0)))
6599 < BIGGEST_ALIGNMENT)
6600 && (TYPE_ALIGN_OK (TREE_TYPE (exp))
6601 || TYPE_ALIGN_OK (TREE_TYPE (TREE_OPERAND (exp, 0)))))
6602 goto done;
6603 break;
6605 case MEM_REF:
6606 /* Hand back the decl for MEM[&decl, off]. */
6607 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR)
6609 tree off = TREE_OPERAND (exp, 1);
6610 if (!integer_zerop (off))
6612 double_int boff, coff = mem_ref_offset (exp);
6613 boff = double_int_lshift (coff,
6614 BITS_PER_UNIT == 8
6615 ? 3 : exact_log2 (BITS_PER_UNIT),
6616 HOST_BITS_PER_DOUBLE_INT, true);
6617 bit_offset = double_int_add (bit_offset, boff);
6619 exp = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
6621 goto done;
6623 default:
6624 goto done;
6627 /* If any reference in the chain is volatile, the effect is volatile. */
6628 if (TREE_THIS_VOLATILE (exp))
6629 *pvolatilep = 1;
6631 exp = TREE_OPERAND (exp, 0);
6633 done:
6635 /* If OFFSET is constant, see if we can return the whole thing as a
6636 constant bit position. Make sure to handle overflow during
6637 this conversion. */
6638 if (TREE_CODE (offset) == INTEGER_CST)
6640 double_int tem = tree_to_double_int (offset);
6641 tem = double_int_sext (tem, TYPE_PRECISION (sizetype));
6642 tem = double_int_lshift (tem,
6643 BITS_PER_UNIT == 8
6644 ? 3 : exact_log2 (BITS_PER_UNIT),
6645 HOST_BITS_PER_DOUBLE_INT, true);
6646 tem = double_int_add (tem, bit_offset);
6647 if (double_int_fits_in_shwi_p (tem))
6649 *pbitpos = double_int_to_shwi (tem);
6650 *poffset = offset = NULL_TREE;
6654 /* Otherwise, split it up. */
6655 if (offset)
6657 *pbitpos = double_int_to_shwi (bit_offset);
6658 *poffset = offset;
6661 /* We can use BLKmode for a byte-aligned BLKmode bitfield. */
6662 if (mode == VOIDmode
6663 && blkmode_bitfield
6664 && (*pbitpos % BITS_PER_UNIT) == 0
6665 && (*pbitsize % BITS_PER_UNIT) == 0)
6666 *pmode = BLKmode;
6667 else
6668 *pmode = mode;
6670 return exp;
6673 /* Given an expression EXP that may be a COMPONENT_REF, an ARRAY_REF or an
6674 ARRAY_RANGE_REF, look for whether EXP or any nested component-refs within
6675 EXP is marked as PACKED. */
6677 bool
6678 contains_packed_reference (const_tree exp)
6680 bool packed_p = false;
6682 while (1)
6684 switch (TREE_CODE (exp))
6686 case COMPONENT_REF:
6688 tree field = TREE_OPERAND (exp, 1);
6689 packed_p = DECL_PACKED (field)
6690 || TYPE_PACKED (TREE_TYPE (field))
6691 || TYPE_PACKED (TREE_TYPE (exp));
6692 if (packed_p)
6693 goto done;
6695 break;
6697 case BIT_FIELD_REF:
6698 case ARRAY_REF:
6699 case ARRAY_RANGE_REF:
6700 case REALPART_EXPR:
6701 case IMAGPART_EXPR:
6702 case VIEW_CONVERT_EXPR:
6703 break;
6705 default:
6706 goto done;
6708 exp = TREE_OPERAND (exp, 0);
6710 done:
6711 return packed_p;
6714 /* Return a tree of sizetype representing the size, in bytes, of the element
6715 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6717 tree
6718 array_ref_element_size (tree exp)
6720 tree aligned_size = TREE_OPERAND (exp, 3);
6721 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
6722 location_t loc = EXPR_LOCATION (exp);
6724 /* If a size was specified in the ARRAY_REF, it's the size measured
6725 in alignment units of the element type. So multiply by that value. */
6726 if (aligned_size)
6728 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6729 sizetype from another type of the same width and signedness. */
6730 if (TREE_TYPE (aligned_size) != sizetype)
6731 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
6732 return size_binop_loc (loc, MULT_EXPR, aligned_size,
6733 size_int (TYPE_ALIGN_UNIT (elmt_type)));
6736 /* Otherwise, take the size from that of the element type. Substitute
6737 any PLACEHOLDER_EXPR that we have. */
6738 else
6739 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
6742 /* Return a tree representing the lower bound of the array mentioned in
6743 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6745 tree
6746 array_ref_low_bound (tree exp)
6748 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
6750 /* If a lower bound is specified in EXP, use it. */
6751 if (TREE_OPERAND (exp, 2))
6752 return TREE_OPERAND (exp, 2);
6754 /* Otherwise, if there is a domain type and it has a lower bound, use it,
6755 substituting for a PLACEHOLDER_EXPR as needed. */
6756 if (domain_type && TYPE_MIN_VALUE (domain_type))
6757 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
6759 /* Otherwise, return a zero of the appropriate type. */
6760 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
6763 /* Return a tree representing the upper bound of the array mentioned in
6764 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6766 tree
6767 array_ref_up_bound (tree exp)
6769 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
6771 /* If there is a domain type and it has an upper bound, use it, substituting
6772 for a PLACEHOLDER_EXPR as needed. */
6773 if (domain_type && TYPE_MAX_VALUE (domain_type))
6774 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
6776 /* Otherwise fail. */
6777 return NULL_TREE;
6780 /* Return a tree representing the offset, in bytes, of the field referenced
6781 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
6783 tree
6784 component_ref_field_offset (tree exp)
6786 tree aligned_offset = TREE_OPERAND (exp, 2);
6787 tree field = TREE_OPERAND (exp, 1);
6788 location_t loc = EXPR_LOCATION (exp);
6790 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
6791 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
6792 value. */
6793 if (aligned_offset)
6795 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6796 sizetype from another type of the same width and signedness. */
6797 if (TREE_TYPE (aligned_offset) != sizetype)
6798 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
6799 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
6800 size_int (DECL_OFFSET_ALIGN (field)
6801 / BITS_PER_UNIT));
6804 /* Otherwise, take the offset from that of the field. Substitute
6805 any PLACEHOLDER_EXPR that we have. */
6806 else
6807 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
6810 /* Alignment in bits the TARGET of an assignment may be assumed to have. */
6812 static unsigned HOST_WIDE_INT
6813 target_align (const_tree target)
6815 /* We might have a chain of nested references with intermediate misaligning
6816 bitfields components, so need to recurse to find out. */
6818 unsigned HOST_WIDE_INT this_align, outer_align;
6820 switch (TREE_CODE (target))
6822 case BIT_FIELD_REF:
6823 return 1;
6825 case COMPONENT_REF:
6826 this_align = DECL_ALIGN (TREE_OPERAND (target, 1));
6827 outer_align = target_align (TREE_OPERAND (target, 0));
6828 return MIN (this_align, outer_align);
6830 case ARRAY_REF:
6831 case ARRAY_RANGE_REF:
6832 this_align = TYPE_ALIGN (TREE_TYPE (target));
6833 outer_align = target_align (TREE_OPERAND (target, 0));
6834 return MIN (this_align, outer_align);
6836 CASE_CONVERT:
6837 case NON_LVALUE_EXPR:
6838 case VIEW_CONVERT_EXPR:
6839 this_align = TYPE_ALIGN (TREE_TYPE (target));
6840 outer_align = target_align (TREE_OPERAND (target, 0));
6841 return MAX (this_align, outer_align);
6843 default:
6844 return TYPE_ALIGN (TREE_TYPE (target));
6849 /* Given an rtx VALUE that may contain additions and multiplications, return
6850 an equivalent value that just refers to a register, memory, or constant.
6851 This is done by generating instructions to perform the arithmetic and
6852 returning a pseudo-register containing the value.
6854 The returned value may be a REG, SUBREG, MEM or constant. */
6857 force_operand (rtx value, rtx target)
6859 rtx op1, op2;
6860 /* Use subtarget as the target for operand 0 of a binary operation. */
6861 rtx subtarget = get_subtarget (target);
6862 enum rtx_code code = GET_CODE (value);
6864 /* Check for subreg applied to an expression produced by loop optimizer. */
6865 if (code == SUBREG
6866 && !REG_P (SUBREG_REG (value))
6867 && !MEM_P (SUBREG_REG (value)))
6869 value
6870 = simplify_gen_subreg (GET_MODE (value),
6871 force_reg (GET_MODE (SUBREG_REG (value)),
6872 force_operand (SUBREG_REG (value),
6873 NULL_RTX)),
6874 GET_MODE (SUBREG_REG (value)),
6875 SUBREG_BYTE (value));
6876 code = GET_CODE (value);
6879 /* Check for a PIC address load. */
6880 if ((code == PLUS || code == MINUS)
6881 && XEXP (value, 0) == pic_offset_table_rtx
6882 && (GET_CODE (XEXP (value, 1)) == SYMBOL_REF
6883 || GET_CODE (XEXP (value, 1)) == LABEL_REF
6884 || GET_CODE (XEXP (value, 1)) == CONST))
6886 if (!subtarget)
6887 subtarget = gen_reg_rtx (GET_MODE (value));
6888 emit_move_insn (subtarget, value);
6889 return subtarget;
6892 if (ARITHMETIC_P (value))
6894 op2 = XEXP (value, 1);
6895 if (!CONSTANT_P (op2) && !(REG_P (op2) && op2 != subtarget))
6896 subtarget = 0;
6897 if (code == MINUS && CONST_INT_P (op2))
6899 code = PLUS;
6900 op2 = negate_rtx (GET_MODE (value), op2);
6903 /* Check for an addition with OP2 a constant integer and our first
6904 operand a PLUS of a virtual register and something else. In that
6905 case, we want to emit the sum of the virtual register and the
6906 constant first and then add the other value. This allows virtual
6907 register instantiation to simply modify the constant rather than
6908 creating another one around this addition. */
6909 if (code == PLUS && CONST_INT_P (op2)
6910 && GET_CODE (XEXP (value, 0)) == PLUS
6911 && REG_P (XEXP (XEXP (value, 0), 0))
6912 && REGNO (XEXP (XEXP (value, 0), 0)) >= FIRST_VIRTUAL_REGISTER
6913 && REGNO (XEXP (XEXP (value, 0), 0)) <= LAST_VIRTUAL_REGISTER)
6915 rtx temp = expand_simple_binop (GET_MODE (value), code,
6916 XEXP (XEXP (value, 0), 0), op2,
6917 subtarget, 0, OPTAB_LIB_WIDEN);
6918 return expand_simple_binop (GET_MODE (value), code, temp,
6919 force_operand (XEXP (XEXP (value,
6920 0), 1), 0),
6921 target, 0, OPTAB_LIB_WIDEN);
6924 op1 = force_operand (XEXP (value, 0), subtarget);
6925 op2 = force_operand (op2, NULL_RTX);
6926 switch (code)
6928 case MULT:
6929 return expand_mult (GET_MODE (value), op1, op2, target, 1);
6930 case DIV:
6931 if (!INTEGRAL_MODE_P (GET_MODE (value)))
6932 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6933 target, 1, OPTAB_LIB_WIDEN);
6934 else
6935 return expand_divmod (0,
6936 FLOAT_MODE_P (GET_MODE (value))
6937 ? RDIV_EXPR : TRUNC_DIV_EXPR,
6938 GET_MODE (value), op1, op2, target, 0);
6939 case MOD:
6940 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
6941 target, 0);
6942 case UDIV:
6943 return expand_divmod (0, TRUNC_DIV_EXPR, GET_MODE (value), op1, op2,
6944 target, 1);
6945 case UMOD:
6946 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
6947 target, 1);
6948 case ASHIFTRT:
6949 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6950 target, 0, OPTAB_LIB_WIDEN);
6951 default:
6952 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6953 target, 1, OPTAB_LIB_WIDEN);
6956 if (UNARY_P (value))
6958 if (!target)
6959 target = gen_reg_rtx (GET_MODE (value));
6960 op1 = force_operand (XEXP (value, 0), NULL_RTX);
6961 switch (code)
6963 case ZERO_EXTEND:
6964 case SIGN_EXTEND:
6965 case TRUNCATE:
6966 case FLOAT_EXTEND:
6967 case FLOAT_TRUNCATE:
6968 convert_move (target, op1, code == ZERO_EXTEND);
6969 return target;
6971 case FIX:
6972 case UNSIGNED_FIX:
6973 expand_fix (target, op1, code == UNSIGNED_FIX);
6974 return target;
6976 case FLOAT:
6977 case UNSIGNED_FLOAT:
6978 expand_float (target, op1, code == UNSIGNED_FLOAT);
6979 return target;
6981 default:
6982 return expand_simple_unop (GET_MODE (value), code, op1, target, 0);
6986 #ifdef INSN_SCHEDULING
6987 /* On machines that have insn scheduling, we want all memory reference to be
6988 explicit, so we need to deal with such paradoxical SUBREGs. */
6989 if (paradoxical_subreg_p (value) && MEM_P (SUBREG_REG (value)))
6990 value
6991 = simplify_gen_subreg (GET_MODE (value),
6992 force_reg (GET_MODE (SUBREG_REG (value)),
6993 force_operand (SUBREG_REG (value),
6994 NULL_RTX)),
6995 GET_MODE (SUBREG_REG (value)),
6996 SUBREG_BYTE (value));
6997 #endif
6999 return value;
7002 /* Subroutine of expand_expr: return nonzero iff there is no way that
7003 EXP can reference X, which is being modified. TOP_P is nonzero if this
7004 call is going to be used to determine whether we need a temporary
7005 for EXP, as opposed to a recursive call to this function.
7007 It is always safe for this routine to return zero since it merely
7008 searches for optimization opportunities. */
7011 safe_from_p (const_rtx x, tree exp, int top_p)
7013 rtx exp_rtl = 0;
7014 int i, nops;
7016 if (x == 0
7017 /* If EXP has varying size, we MUST use a target since we currently
7018 have no way of allocating temporaries of variable size
7019 (except for arrays that have TYPE_ARRAY_MAX_SIZE set).
7020 So we assume here that something at a higher level has prevented a
7021 clash. This is somewhat bogus, but the best we can do. Only
7022 do this when X is BLKmode and when we are at the top level. */
7023 || (top_p && TREE_TYPE (exp) != 0 && COMPLETE_TYPE_P (TREE_TYPE (exp))
7024 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST
7025 && (TREE_CODE (TREE_TYPE (exp)) != ARRAY_TYPE
7026 || TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)) == NULL_TREE
7027 || TREE_CODE (TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)))
7028 != INTEGER_CST)
7029 && GET_MODE (x) == BLKmode)
7030 /* If X is in the outgoing argument area, it is always safe. */
7031 || (MEM_P (x)
7032 && (XEXP (x, 0) == virtual_outgoing_args_rtx
7033 || (GET_CODE (XEXP (x, 0)) == PLUS
7034 && XEXP (XEXP (x, 0), 0) == virtual_outgoing_args_rtx))))
7035 return 1;
7037 /* If this is a subreg of a hard register, declare it unsafe, otherwise,
7038 find the underlying pseudo. */
7039 if (GET_CODE (x) == SUBREG)
7041 x = SUBREG_REG (x);
7042 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
7043 return 0;
7046 /* Now look at our tree code and possibly recurse. */
7047 switch (TREE_CODE_CLASS (TREE_CODE (exp)))
7049 case tcc_declaration:
7050 exp_rtl = DECL_RTL_IF_SET (exp);
7051 break;
7053 case tcc_constant:
7054 return 1;
7056 case tcc_exceptional:
7057 if (TREE_CODE (exp) == TREE_LIST)
7059 while (1)
7061 if (TREE_VALUE (exp) && !safe_from_p (x, TREE_VALUE (exp), 0))
7062 return 0;
7063 exp = TREE_CHAIN (exp);
7064 if (!exp)
7065 return 1;
7066 if (TREE_CODE (exp) != TREE_LIST)
7067 return safe_from_p (x, exp, 0);
7070 else if (TREE_CODE (exp) == CONSTRUCTOR)
7072 constructor_elt *ce;
7073 unsigned HOST_WIDE_INT idx;
7075 FOR_EACH_VEC_ELT (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce)
7076 if ((ce->index != NULL_TREE && !safe_from_p (x, ce->index, 0))
7077 || !safe_from_p (x, ce->value, 0))
7078 return 0;
7079 return 1;
7081 else if (TREE_CODE (exp) == ERROR_MARK)
7082 return 1; /* An already-visited SAVE_EXPR? */
7083 else
7084 return 0;
7086 case tcc_statement:
7087 /* The only case we look at here is the DECL_INITIAL inside a
7088 DECL_EXPR. */
7089 return (TREE_CODE (exp) != DECL_EXPR
7090 || TREE_CODE (DECL_EXPR_DECL (exp)) != VAR_DECL
7091 || !DECL_INITIAL (DECL_EXPR_DECL (exp))
7092 || safe_from_p (x, DECL_INITIAL (DECL_EXPR_DECL (exp)), 0));
7094 case tcc_binary:
7095 case tcc_comparison:
7096 if (!safe_from_p (x, TREE_OPERAND (exp, 1), 0))
7097 return 0;
7098 /* Fall through. */
7100 case tcc_unary:
7101 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
7103 case tcc_expression:
7104 case tcc_reference:
7105 case tcc_vl_exp:
7106 /* Now do code-specific tests. EXP_RTL is set to any rtx we find in
7107 the expression. If it is set, we conflict iff we are that rtx or
7108 both are in memory. Otherwise, we check all operands of the
7109 expression recursively. */
7111 switch (TREE_CODE (exp))
7113 case ADDR_EXPR:
7114 /* If the operand is static or we are static, we can't conflict.
7115 Likewise if we don't conflict with the operand at all. */
7116 if (staticp (TREE_OPERAND (exp, 0))
7117 || TREE_STATIC (exp)
7118 || safe_from_p (x, TREE_OPERAND (exp, 0), 0))
7119 return 1;
7121 /* Otherwise, the only way this can conflict is if we are taking
7122 the address of a DECL a that address if part of X, which is
7123 very rare. */
7124 exp = TREE_OPERAND (exp, 0);
7125 if (DECL_P (exp))
7127 if (!DECL_RTL_SET_P (exp)
7128 || !MEM_P (DECL_RTL (exp)))
7129 return 0;
7130 else
7131 exp_rtl = XEXP (DECL_RTL (exp), 0);
7133 break;
7135 case MEM_REF:
7136 if (MEM_P (x)
7137 && alias_sets_conflict_p (MEM_ALIAS_SET (x),
7138 get_alias_set (exp)))
7139 return 0;
7140 break;
7142 case CALL_EXPR:
7143 /* Assume that the call will clobber all hard registers and
7144 all of memory. */
7145 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
7146 || MEM_P (x))
7147 return 0;
7148 break;
7150 case WITH_CLEANUP_EXPR:
7151 case CLEANUP_POINT_EXPR:
7152 /* Lowered by gimplify.c. */
7153 gcc_unreachable ();
7155 case SAVE_EXPR:
7156 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
7158 default:
7159 break;
7162 /* If we have an rtx, we do not need to scan our operands. */
7163 if (exp_rtl)
7164 break;
7166 nops = TREE_OPERAND_LENGTH (exp);
7167 for (i = 0; i < nops; i++)
7168 if (TREE_OPERAND (exp, i) != 0
7169 && ! safe_from_p (x, TREE_OPERAND (exp, i), 0))
7170 return 0;
7172 break;
7174 case tcc_type:
7175 /* Should never get a type here. */
7176 gcc_unreachable ();
7179 /* If we have an rtl, find any enclosed object. Then see if we conflict
7180 with it. */
7181 if (exp_rtl)
7183 if (GET_CODE (exp_rtl) == SUBREG)
7185 exp_rtl = SUBREG_REG (exp_rtl);
7186 if (REG_P (exp_rtl)
7187 && REGNO (exp_rtl) < FIRST_PSEUDO_REGISTER)
7188 return 0;
7191 /* If the rtl is X, then it is not safe. Otherwise, it is unless both
7192 are memory and they conflict. */
7193 return ! (rtx_equal_p (x, exp_rtl)
7194 || (MEM_P (x) && MEM_P (exp_rtl)
7195 && true_dependence (exp_rtl, VOIDmode, x,
7196 rtx_addr_varies_p)));
7199 /* If we reach here, it is safe. */
7200 return 1;
7204 /* Return the highest power of two that EXP is known to be a multiple of.
7205 This is used in updating alignment of MEMs in array references. */
7207 unsigned HOST_WIDE_INT
7208 highest_pow2_factor (const_tree exp)
7210 unsigned HOST_WIDE_INT c0, c1;
7212 switch (TREE_CODE (exp))
7214 case INTEGER_CST:
7215 /* We can find the lowest bit that's a one. If the low
7216 HOST_BITS_PER_WIDE_INT bits are zero, return BIGGEST_ALIGNMENT.
7217 We need to handle this case since we can find it in a COND_EXPR,
7218 a MIN_EXPR, or a MAX_EXPR. If the constant overflows, we have an
7219 erroneous program, so return BIGGEST_ALIGNMENT to avoid any
7220 later ICE. */
7221 if (TREE_OVERFLOW (exp))
7222 return BIGGEST_ALIGNMENT;
7223 else
7225 /* Note: tree_low_cst is intentionally not used here,
7226 we don't care about the upper bits. */
7227 c0 = TREE_INT_CST_LOW (exp);
7228 c0 &= -c0;
7229 return c0 ? c0 : BIGGEST_ALIGNMENT;
7231 break;
7233 case PLUS_EXPR: case MINUS_EXPR: case MIN_EXPR: case MAX_EXPR:
7234 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
7235 c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
7236 return MIN (c0, c1);
7238 case MULT_EXPR:
7239 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
7240 c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
7241 return c0 * c1;
7243 case ROUND_DIV_EXPR: case TRUNC_DIV_EXPR: case FLOOR_DIV_EXPR:
7244 case CEIL_DIV_EXPR:
7245 if (integer_pow2p (TREE_OPERAND (exp, 1))
7246 && host_integerp (TREE_OPERAND (exp, 1), 1))
7248 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
7249 c1 = tree_low_cst (TREE_OPERAND (exp, 1), 1);
7250 return MAX (1, c0 / c1);
7252 break;
7254 case BIT_AND_EXPR:
7255 /* The highest power of two of a bit-and expression is the maximum of
7256 that of its operands. We typically get here for a complex LHS and
7257 a constant negative power of two on the RHS to force an explicit
7258 alignment, so don't bother looking at the LHS. */
7259 return highest_pow2_factor (TREE_OPERAND (exp, 1));
7261 CASE_CONVERT:
7262 case SAVE_EXPR:
7263 return highest_pow2_factor (TREE_OPERAND (exp, 0));
7265 case COMPOUND_EXPR:
7266 return highest_pow2_factor (TREE_OPERAND (exp, 1));
7268 case COND_EXPR:
7269 c0 = highest_pow2_factor (TREE_OPERAND (exp, 1));
7270 c1 = highest_pow2_factor (TREE_OPERAND (exp, 2));
7271 return MIN (c0, c1);
7273 default:
7274 break;
7277 return 1;
7280 /* Similar, except that the alignment requirements of TARGET are
7281 taken into account. Assume it is at least as aligned as its
7282 type, unless it is a COMPONENT_REF in which case the layout of
7283 the structure gives the alignment. */
7285 static unsigned HOST_WIDE_INT
7286 highest_pow2_factor_for_target (const_tree target, const_tree exp)
7288 unsigned HOST_WIDE_INT talign = target_align (target) / BITS_PER_UNIT;
7289 unsigned HOST_WIDE_INT factor = highest_pow2_factor (exp);
7291 return MAX (factor, talign);
7294 /* Subroutine of expand_expr. Expand the two operands of a binary
7295 expression EXP0 and EXP1 placing the results in OP0 and OP1.
7296 The value may be stored in TARGET if TARGET is nonzero. The
7297 MODIFIER argument is as documented by expand_expr. */
7299 static void
7300 expand_operands (tree exp0, tree exp1, rtx target, rtx *op0, rtx *op1,
7301 enum expand_modifier modifier)
7303 if (! safe_from_p (target, exp1, 1))
7304 target = 0;
7305 if (operand_equal_p (exp0, exp1, 0))
7307 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
7308 *op1 = copy_rtx (*op0);
7310 else
7312 /* If we need to preserve evaluation order, copy exp0 into its own
7313 temporary variable so that it can't be clobbered by exp1. */
7314 if (flag_evaluation_order && TREE_SIDE_EFFECTS (exp1))
7315 exp0 = save_expr (exp0);
7316 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
7317 *op1 = expand_expr (exp1, NULL_RTX, VOIDmode, modifier);
7322 /* Return a MEM that contains constant EXP. DEFER is as for
7323 output_constant_def and MODIFIER is as for expand_expr. */
7325 static rtx
7326 expand_expr_constant (tree exp, int defer, enum expand_modifier modifier)
7328 rtx mem;
7330 mem = output_constant_def (exp, defer);
7331 if (modifier != EXPAND_INITIALIZER)
7332 mem = use_anchored_address (mem);
7333 return mem;
7336 /* A subroutine of expand_expr_addr_expr. Evaluate the address of EXP.
7337 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7339 static rtx
7340 expand_expr_addr_expr_1 (tree exp, rtx target, enum machine_mode tmode,
7341 enum expand_modifier modifier, addr_space_t as)
7343 rtx result, subtarget;
7344 tree inner, offset;
7345 HOST_WIDE_INT bitsize, bitpos;
7346 int volatilep, unsignedp;
7347 enum machine_mode mode1;
7349 /* If we are taking the address of a constant and are at the top level,
7350 we have to use output_constant_def since we can't call force_const_mem
7351 at top level. */
7352 /* ??? This should be considered a front-end bug. We should not be
7353 generating ADDR_EXPR of something that isn't an LVALUE. The only
7354 exception here is STRING_CST. */
7355 if (CONSTANT_CLASS_P (exp))
7356 return XEXP (expand_expr_constant (exp, 0, modifier), 0);
7358 /* Everything must be something allowed by is_gimple_addressable. */
7359 switch (TREE_CODE (exp))
7361 case INDIRECT_REF:
7362 /* This case will happen via recursion for &a->b. */
7363 return expand_expr (TREE_OPERAND (exp, 0), target, tmode, modifier);
7365 case MEM_REF:
7367 tree tem = TREE_OPERAND (exp, 0);
7368 if (!integer_zerop (TREE_OPERAND (exp, 1)))
7369 tem = fold_build_pointer_plus (tem, TREE_OPERAND (exp, 1));
7370 return expand_expr (tem, target, tmode, modifier);
7373 case CONST_DECL:
7374 /* Expand the initializer like constants above. */
7375 return XEXP (expand_expr_constant (DECL_INITIAL (exp), 0, modifier), 0);
7377 case REALPART_EXPR:
7378 /* The real part of the complex number is always first, therefore
7379 the address is the same as the address of the parent object. */
7380 offset = 0;
7381 bitpos = 0;
7382 inner = TREE_OPERAND (exp, 0);
7383 break;
7385 case IMAGPART_EXPR:
7386 /* The imaginary part of the complex number is always second.
7387 The expression is therefore always offset by the size of the
7388 scalar type. */
7389 offset = 0;
7390 bitpos = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp)));
7391 inner = TREE_OPERAND (exp, 0);
7392 break;
7394 default:
7395 /* If the object is a DECL, then expand it for its rtl. Don't bypass
7396 expand_expr, as that can have various side effects; LABEL_DECLs for
7397 example, may not have their DECL_RTL set yet. Expand the rtl of
7398 CONSTRUCTORs too, which should yield a memory reference for the
7399 constructor's contents. Assume language specific tree nodes can
7400 be expanded in some interesting way. */
7401 gcc_assert (TREE_CODE (exp) < LAST_AND_UNUSED_TREE_CODE);
7402 if (DECL_P (exp)
7403 || TREE_CODE (exp) == CONSTRUCTOR
7404 || TREE_CODE (exp) == COMPOUND_LITERAL_EXPR)
7406 result = expand_expr (exp, target, tmode,
7407 modifier == EXPAND_INITIALIZER
7408 ? EXPAND_INITIALIZER : EXPAND_CONST_ADDRESS);
7410 /* If the DECL isn't in memory, then the DECL wasn't properly
7411 marked TREE_ADDRESSABLE, which will be either a front-end
7412 or a tree optimizer bug. */
7414 if (TREE_ADDRESSABLE (exp)
7415 && ! MEM_P (result)
7416 && ! targetm.calls.allocate_stack_slots_for_args())
7418 error ("local frame unavailable (naked function?)");
7419 return result;
7421 else
7422 gcc_assert (MEM_P (result));
7423 result = XEXP (result, 0);
7425 /* ??? Is this needed anymore? */
7426 if (DECL_P (exp) && !TREE_USED (exp) == 0)
7428 assemble_external (exp);
7429 TREE_USED (exp) = 1;
7432 if (modifier != EXPAND_INITIALIZER
7433 && modifier != EXPAND_CONST_ADDRESS
7434 && modifier != EXPAND_SUM)
7435 result = force_operand (result, target);
7436 return result;
7439 /* Pass FALSE as the last argument to get_inner_reference although
7440 we are expanding to RTL. The rationale is that we know how to
7441 handle "aligning nodes" here: we can just bypass them because
7442 they won't change the final object whose address will be returned
7443 (they actually exist only for that purpose). */
7444 inner = get_inner_reference (exp, &bitsize, &bitpos, &offset,
7445 &mode1, &unsignedp, &volatilep, false);
7446 break;
7449 /* We must have made progress. */
7450 gcc_assert (inner != exp);
7452 subtarget = offset || bitpos ? NULL_RTX : target;
7453 /* For VIEW_CONVERT_EXPR, where the outer alignment is bigger than
7454 inner alignment, force the inner to be sufficiently aligned. */
7455 if (CONSTANT_CLASS_P (inner)
7456 && TYPE_ALIGN (TREE_TYPE (inner)) < TYPE_ALIGN (TREE_TYPE (exp)))
7458 inner = copy_node (inner);
7459 TREE_TYPE (inner) = copy_node (TREE_TYPE (inner));
7460 TYPE_ALIGN (TREE_TYPE (inner)) = TYPE_ALIGN (TREE_TYPE (exp));
7461 TYPE_USER_ALIGN (TREE_TYPE (inner)) = 1;
7463 result = expand_expr_addr_expr_1 (inner, subtarget, tmode, modifier, as);
7465 if (offset)
7467 rtx tmp;
7469 if (modifier != EXPAND_NORMAL)
7470 result = force_operand (result, NULL);
7471 tmp = expand_expr (offset, NULL_RTX, tmode,
7472 modifier == EXPAND_INITIALIZER
7473 ? EXPAND_INITIALIZER : EXPAND_NORMAL);
7475 result = convert_memory_address_addr_space (tmode, result, as);
7476 tmp = convert_memory_address_addr_space (tmode, tmp, as);
7478 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
7479 result = simplify_gen_binary (PLUS, tmode, result, tmp);
7480 else
7482 subtarget = bitpos ? NULL_RTX : target;
7483 result = expand_simple_binop (tmode, PLUS, result, tmp, subtarget,
7484 1, OPTAB_LIB_WIDEN);
7488 if (bitpos)
7490 /* Someone beforehand should have rejected taking the address
7491 of such an object. */
7492 gcc_assert ((bitpos % BITS_PER_UNIT) == 0);
7494 result = plus_constant (result, bitpos / BITS_PER_UNIT);
7495 if (modifier < EXPAND_SUM)
7496 result = force_operand (result, target);
7499 return result;
7502 /* A subroutine of expand_expr. Evaluate EXP, which is an ADDR_EXPR.
7503 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7505 static rtx
7506 expand_expr_addr_expr (tree exp, rtx target, enum machine_mode tmode,
7507 enum expand_modifier modifier)
7509 addr_space_t as = ADDR_SPACE_GENERIC;
7510 enum machine_mode address_mode = Pmode;
7511 enum machine_mode pointer_mode = ptr_mode;
7512 enum machine_mode rmode;
7513 rtx result;
7515 /* Target mode of VOIDmode says "whatever's natural". */
7516 if (tmode == VOIDmode)
7517 tmode = TYPE_MODE (TREE_TYPE (exp));
7519 if (POINTER_TYPE_P (TREE_TYPE (exp)))
7521 as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
7522 address_mode = targetm.addr_space.address_mode (as);
7523 pointer_mode = targetm.addr_space.pointer_mode (as);
7526 /* We can get called with some Weird Things if the user does silliness
7527 like "(short) &a". In that case, convert_memory_address won't do
7528 the right thing, so ignore the given target mode. */
7529 if (tmode != address_mode && tmode != pointer_mode)
7530 tmode = address_mode;
7532 result = expand_expr_addr_expr_1 (TREE_OPERAND (exp, 0), target,
7533 tmode, modifier, as);
7535 /* Despite expand_expr claims concerning ignoring TMODE when not
7536 strictly convenient, stuff breaks if we don't honor it. Note
7537 that combined with the above, we only do this for pointer modes. */
7538 rmode = GET_MODE (result);
7539 if (rmode == VOIDmode)
7540 rmode = tmode;
7541 if (rmode != tmode)
7542 result = convert_memory_address_addr_space (tmode, result, as);
7544 return result;
7547 /* Generate code for computing CONSTRUCTOR EXP.
7548 An rtx for the computed value is returned. If AVOID_TEMP_MEM
7549 is TRUE, instead of creating a temporary variable in memory
7550 NULL is returned and the caller needs to handle it differently. */
7552 static rtx
7553 expand_constructor (tree exp, rtx target, enum expand_modifier modifier,
7554 bool avoid_temp_mem)
7556 tree type = TREE_TYPE (exp);
7557 enum machine_mode mode = TYPE_MODE (type);
7559 /* Try to avoid creating a temporary at all. This is possible
7560 if all of the initializer is zero.
7561 FIXME: try to handle all [0..255] initializers we can handle
7562 with memset. */
7563 if (TREE_STATIC (exp)
7564 && !TREE_ADDRESSABLE (exp)
7565 && target != 0 && mode == BLKmode
7566 && all_zeros_p (exp))
7568 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
7569 return target;
7572 /* All elts simple constants => refer to a constant in memory. But
7573 if this is a non-BLKmode mode, let it store a field at a time
7574 since that should make a CONST_INT or CONST_DOUBLE when we
7575 fold. Likewise, if we have a target we can use, it is best to
7576 store directly into the target unless the type is large enough
7577 that memcpy will be used. If we are making an initializer and
7578 all operands are constant, put it in memory as well.
7580 FIXME: Avoid trying to fill vector constructors piece-meal.
7581 Output them with output_constant_def below unless we're sure
7582 they're zeros. This should go away when vector initializers
7583 are treated like VECTOR_CST instead of arrays. */
7584 if ((TREE_STATIC (exp)
7585 && ((mode == BLKmode
7586 && ! (target != 0 && safe_from_p (target, exp, 1)))
7587 || TREE_ADDRESSABLE (exp)
7588 || (host_integerp (TYPE_SIZE_UNIT (type), 1)
7589 && (! MOVE_BY_PIECES_P
7590 (tree_low_cst (TYPE_SIZE_UNIT (type), 1),
7591 TYPE_ALIGN (type)))
7592 && ! mostly_zeros_p (exp))))
7593 || ((modifier == EXPAND_INITIALIZER || modifier == EXPAND_CONST_ADDRESS)
7594 && TREE_CONSTANT (exp)))
7596 rtx constructor;
7598 if (avoid_temp_mem)
7599 return NULL_RTX;
7601 constructor = expand_expr_constant (exp, 1, modifier);
7603 if (modifier != EXPAND_CONST_ADDRESS
7604 && modifier != EXPAND_INITIALIZER
7605 && modifier != EXPAND_SUM)
7606 constructor = validize_mem (constructor);
7608 return constructor;
7611 /* Handle calls that pass values in multiple non-contiguous
7612 locations. The Irix 6 ABI has examples of this. */
7613 if (target == 0 || ! safe_from_p (target, exp, 1)
7614 || GET_CODE (target) == PARALLEL || modifier == EXPAND_STACK_PARM)
7616 if (avoid_temp_mem)
7617 return NULL_RTX;
7619 target
7620 = assign_temp (build_qualified_type (type, (TYPE_QUALS (type)
7621 | (TREE_READONLY (exp)
7622 * TYPE_QUAL_CONST))),
7623 0, TREE_ADDRESSABLE (exp), 1);
7626 store_constructor (exp, target, 0, int_expr_size (exp));
7627 return target;
7631 /* expand_expr: generate code for computing expression EXP.
7632 An rtx for the computed value is returned. The value is never null.
7633 In the case of a void EXP, const0_rtx is returned.
7635 The value may be stored in TARGET if TARGET is nonzero.
7636 TARGET is just a suggestion; callers must assume that
7637 the rtx returned may not be the same as TARGET.
7639 If TARGET is CONST0_RTX, it means that the value will be ignored.
7641 If TMODE is not VOIDmode, it suggests generating the
7642 result in mode TMODE. But this is done only when convenient.
7643 Otherwise, TMODE is ignored and the value generated in its natural mode.
7644 TMODE is just a suggestion; callers must assume that
7645 the rtx returned may not have mode TMODE.
7647 Note that TARGET may have neither TMODE nor MODE. In that case, it
7648 probably will not be used.
7650 If MODIFIER is EXPAND_SUM then when EXP is an addition
7651 we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
7652 or a nest of (PLUS ...) and (MINUS ...) where the terms are
7653 products as above, or REG or MEM, or constant.
7654 Ordinarily in such cases we would output mul or add instructions
7655 and then return a pseudo reg containing the sum.
7657 EXPAND_INITIALIZER is much like EXPAND_SUM except that
7658 it also marks a label as absolutely required (it can't be dead).
7659 It also makes a ZERO_EXTEND or SIGN_EXTEND instead of emitting extend insns.
7660 This is used for outputting expressions used in initializers.
7662 EXPAND_CONST_ADDRESS says that it is okay to return a MEM
7663 with a constant address even if that address is not normally legitimate.
7664 EXPAND_INITIALIZER and EXPAND_SUM also have this effect.
7666 EXPAND_STACK_PARM is used when expanding to a TARGET on the stack for
7667 a call parameter. Such targets require special care as we haven't yet
7668 marked TARGET so that it's safe from being trashed by libcalls. We
7669 don't want to use TARGET for anything but the final result;
7670 Intermediate values must go elsewhere. Additionally, calls to
7671 emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
7673 If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
7674 address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
7675 DECL_RTL of the VAR_DECL. *ALT_RTL is also set if EXP is a
7676 COMPOUND_EXPR whose second argument is such a VAR_DECL, and so on
7677 recursively. */
7680 expand_expr_real (tree exp, rtx target, enum machine_mode tmode,
7681 enum expand_modifier modifier, rtx *alt_rtl)
7683 rtx ret;
7685 /* Handle ERROR_MARK before anybody tries to access its type. */
7686 if (TREE_CODE (exp) == ERROR_MARK
7687 || (TREE_CODE (TREE_TYPE (exp)) == ERROR_MARK))
7689 ret = CONST0_RTX (tmode);
7690 return ret ? ret : const0_rtx;
7693 /* If this is an expression of some kind and it has an associated line
7694 number, then emit the line number before expanding the expression.
7696 We need to save and restore the file and line information so that
7697 errors discovered during expansion are emitted with the right
7698 information. It would be better of the diagnostic routines
7699 used the file/line information embedded in the tree nodes rather
7700 than globals. */
7701 if (cfun && EXPR_HAS_LOCATION (exp))
7703 location_t saved_location = input_location;
7704 location_t saved_curr_loc = get_curr_insn_source_location ();
7705 tree saved_block = get_curr_insn_block ();
7706 input_location = EXPR_LOCATION (exp);
7707 set_curr_insn_source_location (input_location);
7709 /* Record where the insns produced belong. */
7710 set_curr_insn_block (TREE_BLOCK (exp));
7712 ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
7714 input_location = saved_location;
7715 set_curr_insn_block (saved_block);
7716 set_curr_insn_source_location (saved_curr_loc);
7718 else
7720 ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
7723 return ret;
7727 expand_expr_real_2 (sepops ops, rtx target, enum machine_mode tmode,
7728 enum expand_modifier modifier)
7730 rtx op0, op1, op2, temp;
7731 tree type;
7732 int unsignedp;
7733 enum machine_mode mode;
7734 enum tree_code code = ops->code;
7735 optab this_optab;
7736 rtx subtarget, original_target;
7737 int ignore;
7738 bool reduce_bit_field;
7739 location_t loc = ops->location;
7740 tree treeop0, treeop1, treeop2;
7741 #define REDUCE_BIT_FIELD(expr) (reduce_bit_field \
7742 ? reduce_to_bit_field_precision ((expr), \
7743 target, \
7744 type) \
7745 : (expr))
7747 type = ops->type;
7748 mode = TYPE_MODE (type);
7749 unsignedp = TYPE_UNSIGNED (type);
7751 treeop0 = ops->op0;
7752 treeop1 = ops->op1;
7753 treeop2 = ops->op2;
7755 /* We should be called only on simple (binary or unary) expressions,
7756 exactly those that are valid in gimple expressions that aren't
7757 GIMPLE_SINGLE_RHS (or invalid). */
7758 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_UNARY_RHS
7759 || get_gimple_rhs_class (code) == GIMPLE_BINARY_RHS
7760 || get_gimple_rhs_class (code) == GIMPLE_TERNARY_RHS);
7762 ignore = (target == const0_rtx
7763 || ((CONVERT_EXPR_CODE_P (code)
7764 || code == COND_EXPR || code == VIEW_CONVERT_EXPR)
7765 && TREE_CODE (type) == VOID_TYPE));
7767 /* We should be called only if we need the result. */
7768 gcc_assert (!ignore);
7770 /* An operation in what may be a bit-field type needs the
7771 result to be reduced to the precision of the bit-field type,
7772 which is narrower than that of the type's mode. */
7773 reduce_bit_field = (INTEGRAL_TYPE_P (type)
7774 && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type));
7776 if (reduce_bit_field && modifier == EXPAND_STACK_PARM)
7777 target = 0;
7779 /* Use subtarget as the target for operand 0 of a binary operation. */
7780 subtarget = get_subtarget (target);
7781 original_target = target;
7783 switch (code)
7785 case NON_LVALUE_EXPR:
7786 case PAREN_EXPR:
7787 CASE_CONVERT:
7788 if (treeop0 == error_mark_node)
7789 return const0_rtx;
7791 if (TREE_CODE (type) == UNION_TYPE)
7793 tree valtype = TREE_TYPE (treeop0);
7795 /* If both input and output are BLKmode, this conversion isn't doing
7796 anything except possibly changing memory attribute. */
7797 if (mode == BLKmode && TYPE_MODE (valtype) == BLKmode)
7799 rtx result = expand_expr (treeop0, target, tmode,
7800 modifier);
7802 result = copy_rtx (result);
7803 set_mem_attributes (result, type, 0);
7804 return result;
7807 if (target == 0)
7809 if (TYPE_MODE (type) != BLKmode)
7810 target = gen_reg_rtx (TYPE_MODE (type));
7811 else
7812 target = assign_temp (type, 0, 1, 1);
7815 if (MEM_P (target))
7816 /* Store data into beginning of memory target. */
7817 store_expr (treeop0,
7818 adjust_address (target, TYPE_MODE (valtype), 0),
7819 modifier == EXPAND_STACK_PARM,
7820 false);
7822 else
7824 gcc_assert (REG_P (target));
7826 /* Store this field into a union of the proper type. */
7827 store_field (target,
7828 MIN ((int_size_in_bytes (TREE_TYPE
7829 (treeop0))
7830 * BITS_PER_UNIT),
7831 (HOST_WIDE_INT) GET_MODE_BITSIZE (mode)),
7832 0, 0, 0, TYPE_MODE (valtype), treeop0,
7833 type, 0, false);
7836 /* Return the entire union. */
7837 return target;
7840 if (mode == TYPE_MODE (TREE_TYPE (treeop0)))
7842 op0 = expand_expr (treeop0, target, VOIDmode,
7843 modifier);
7845 /* If the signedness of the conversion differs and OP0 is
7846 a promoted SUBREG, clear that indication since we now
7847 have to do the proper extension. */
7848 if (TYPE_UNSIGNED (TREE_TYPE (treeop0)) != unsignedp
7849 && GET_CODE (op0) == SUBREG)
7850 SUBREG_PROMOTED_VAR_P (op0) = 0;
7852 return REDUCE_BIT_FIELD (op0);
7855 op0 = expand_expr (treeop0, NULL_RTX, mode,
7856 modifier == EXPAND_SUM ? EXPAND_NORMAL : modifier);
7857 if (GET_MODE (op0) == mode)
7860 /* If OP0 is a constant, just convert it into the proper mode. */
7861 else if (CONSTANT_P (op0))
7863 tree inner_type = TREE_TYPE (treeop0);
7864 enum machine_mode inner_mode = GET_MODE (op0);
7866 if (inner_mode == VOIDmode)
7867 inner_mode = TYPE_MODE (inner_type);
7869 if (modifier == EXPAND_INITIALIZER)
7870 op0 = simplify_gen_subreg (mode, op0, inner_mode,
7871 subreg_lowpart_offset (mode,
7872 inner_mode));
7873 else
7874 op0= convert_modes (mode, inner_mode, op0,
7875 TYPE_UNSIGNED (inner_type));
7878 else if (modifier == EXPAND_INITIALIZER)
7879 op0 = gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND, mode, op0);
7881 else if (target == 0)
7882 op0 = convert_to_mode (mode, op0,
7883 TYPE_UNSIGNED (TREE_TYPE
7884 (treeop0)));
7885 else
7887 convert_move (target, op0,
7888 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
7889 op0 = target;
7892 return REDUCE_BIT_FIELD (op0);
7894 case ADDR_SPACE_CONVERT_EXPR:
7896 tree treeop0_type = TREE_TYPE (treeop0);
7897 addr_space_t as_to;
7898 addr_space_t as_from;
7900 gcc_assert (POINTER_TYPE_P (type));
7901 gcc_assert (POINTER_TYPE_P (treeop0_type));
7903 as_to = TYPE_ADDR_SPACE (TREE_TYPE (type));
7904 as_from = TYPE_ADDR_SPACE (TREE_TYPE (treeop0_type));
7906 /* Conversions between pointers to the same address space should
7907 have been implemented via CONVERT_EXPR / NOP_EXPR. */
7908 gcc_assert (as_to != as_from);
7910 /* Ask target code to handle conversion between pointers
7911 to overlapping address spaces. */
7912 if (targetm.addr_space.subset_p (as_to, as_from)
7913 || targetm.addr_space.subset_p (as_from, as_to))
7915 op0 = expand_expr (treeop0, NULL_RTX, VOIDmode, modifier);
7916 op0 = targetm.addr_space.convert (op0, treeop0_type, type);
7917 gcc_assert (op0);
7918 return op0;
7921 /* For disjoint address spaces, converting anything but
7922 a null pointer invokes undefined behaviour. We simply
7923 always return a null pointer here. */
7924 return CONST0_RTX (mode);
7927 case POINTER_PLUS_EXPR:
7928 /* Even though the sizetype mode and the pointer's mode can be different
7929 expand is able to handle this correctly and get the correct result out
7930 of the PLUS_EXPR code. */
7931 /* Make sure to sign-extend the sizetype offset in a POINTER_PLUS_EXPR
7932 if sizetype precision is smaller than pointer precision. */
7933 if (TYPE_PRECISION (sizetype) < TYPE_PRECISION (type))
7934 treeop1 = fold_convert_loc (loc, type,
7935 fold_convert_loc (loc, ssizetype,
7936 treeop1));
7937 case PLUS_EXPR:
7938 /* If we are adding a constant, a VAR_DECL that is sp, fp, or ap, and
7939 something else, make sure we add the register to the constant and
7940 then to the other thing. This case can occur during strength
7941 reduction and doing it this way will produce better code if the
7942 frame pointer or argument pointer is eliminated.
7944 fold-const.c will ensure that the constant is always in the inner
7945 PLUS_EXPR, so the only case we need to do anything about is if
7946 sp, ap, or fp is our second argument, in which case we must swap
7947 the innermost first argument and our second argument. */
7949 if (TREE_CODE (treeop0) == PLUS_EXPR
7950 && TREE_CODE (TREE_OPERAND (treeop0, 1)) == INTEGER_CST
7951 && TREE_CODE (treeop1) == VAR_DECL
7952 && (DECL_RTL (treeop1) == frame_pointer_rtx
7953 || DECL_RTL (treeop1) == stack_pointer_rtx
7954 || DECL_RTL (treeop1) == arg_pointer_rtx))
7956 tree t = treeop1;
7958 treeop1 = TREE_OPERAND (treeop0, 0);
7959 TREE_OPERAND (treeop0, 0) = t;
7962 /* If the result is to be ptr_mode and we are adding an integer to
7963 something, we might be forming a constant. So try to use
7964 plus_constant. If it produces a sum and we can't accept it,
7965 use force_operand. This allows P = &ARR[const] to generate
7966 efficient code on machines where a SYMBOL_REF is not a valid
7967 address.
7969 If this is an EXPAND_SUM call, always return the sum. */
7970 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER
7971 || (mode == ptr_mode && (unsignedp || ! flag_trapv)))
7973 if (modifier == EXPAND_STACK_PARM)
7974 target = 0;
7975 if (TREE_CODE (treeop0) == INTEGER_CST
7976 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT
7977 && TREE_CONSTANT (treeop1))
7979 rtx constant_part;
7981 op1 = expand_expr (treeop1, subtarget, VOIDmode,
7982 EXPAND_SUM);
7983 /* Use immed_double_const to ensure that the constant is
7984 truncated according to the mode of OP1, then sign extended
7985 to a HOST_WIDE_INT. Using the constant directly can result
7986 in non-canonical RTL in a 64x32 cross compile. */
7987 constant_part
7988 = immed_double_const (TREE_INT_CST_LOW (treeop0),
7989 (HOST_WIDE_INT) 0,
7990 TYPE_MODE (TREE_TYPE (treeop1)));
7991 op1 = plus_constant (op1, INTVAL (constant_part));
7992 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7993 op1 = force_operand (op1, target);
7994 return REDUCE_BIT_FIELD (op1);
7997 else if (TREE_CODE (treeop1) == INTEGER_CST
7998 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT
7999 && TREE_CONSTANT (treeop0))
8001 rtx constant_part;
8003 op0 = expand_expr (treeop0, subtarget, VOIDmode,
8004 (modifier == EXPAND_INITIALIZER
8005 ? EXPAND_INITIALIZER : EXPAND_SUM));
8006 if (! CONSTANT_P (op0))
8008 op1 = expand_expr (treeop1, NULL_RTX,
8009 VOIDmode, modifier);
8010 /* Return a PLUS if modifier says it's OK. */
8011 if (modifier == EXPAND_SUM
8012 || modifier == EXPAND_INITIALIZER)
8013 return simplify_gen_binary (PLUS, mode, op0, op1);
8014 goto binop2;
8016 /* Use immed_double_const to ensure that the constant is
8017 truncated according to the mode of OP1, then sign extended
8018 to a HOST_WIDE_INT. Using the constant directly can result
8019 in non-canonical RTL in a 64x32 cross compile. */
8020 constant_part
8021 = immed_double_const (TREE_INT_CST_LOW (treeop1),
8022 (HOST_WIDE_INT) 0,
8023 TYPE_MODE (TREE_TYPE (treeop0)));
8024 op0 = plus_constant (op0, INTVAL (constant_part));
8025 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8026 op0 = force_operand (op0, target);
8027 return REDUCE_BIT_FIELD (op0);
8031 /* Use TER to expand pointer addition of a negated value
8032 as pointer subtraction. */
8033 if ((POINTER_TYPE_P (TREE_TYPE (treeop0))
8034 || (TREE_CODE (TREE_TYPE (treeop0)) == VECTOR_TYPE
8035 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (treeop0)))))
8036 && TREE_CODE (treeop1) == SSA_NAME
8037 && TYPE_MODE (TREE_TYPE (treeop0))
8038 == TYPE_MODE (TREE_TYPE (treeop1)))
8040 gimple def = get_def_for_expr (treeop1, NEGATE_EXPR);
8041 if (def)
8043 treeop1 = gimple_assign_rhs1 (def);
8044 code = MINUS_EXPR;
8045 goto do_minus;
8049 /* No sense saving up arithmetic to be done
8050 if it's all in the wrong mode to form part of an address.
8051 And force_operand won't know whether to sign-extend or
8052 zero-extend. */
8053 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8054 || mode != ptr_mode)
8056 expand_operands (treeop0, treeop1,
8057 subtarget, &op0, &op1, EXPAND_NORMAL);
8058 if (op0 == const0_rtx)
8059 return op1;
8060 if (op1 == const0_rtx)
8061 return op0;
8062 goto binop2;
8065 expand_operands (treeop0, treeop1,
8066 subtarget, &op0, &op1, modifier);
8067 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
8069 case MINUS_EXPR:
8070 do_minus:
8071 /* For initializers, we are allowed to return a MINUS of two
8072 symbolic constants. Here we handle all cases when both operands
8073 are constant. */
8074 /* Handle difference of two symbolic constants,
8075 for the sake of an initializer. */
8076 if ((modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
8077 && really_constant_p (treeop0)
8078 && really_constant_p (treeop1))
8080 expand_operands (treeop0, treeop1,
8081 NULL_RTX, &op0, &op1, modifier);
8083 /* If the last operand is a CONST_INT, use plus_constant of
8084 the negated constant. Else make the MINUS. */
8085 if (CONST_INT_P (op1))
8086 return REDUCE_BIT_FIELD (plus_constant (op0, - INTVAL (op1)));
8087 else
8088 return REDUCE_BIT_FIELD (gen_rtx_MINUS (mode, op0, op1));
8091 /* No sense saving up arithmetic to be done
8092 if it's all in the wrong mode to form part of an address.
8093 And force_operand won't know whether to sign-extend or
8094 zero-extend. */
8095 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8096 || mode != ptr_mode)
8097 goto binop;
8099 expand_operands (treeop0, treeop1,
8100 subtarget, &op0, &op1, modifier);
8102 /* Convert A - const to A + (-const). */
8103 if (CONST_INT_P (op1))
8105 op1 = negate_rtx (mode, op1);
8106 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
8109 goto binop2;
8111 case WIDEN_MULT_PLUS_EXPR:
8112 case WIDEN_MULT_MINUS_EXPR:
8113 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8114 op2 = expand_normal (treeop2);
8115 target = expand_widen_pattern_expr (ops, op0, op1, op2,
8116 target, unsignedp);
8117 return target;
8119 case WIDEN_MULT_EXPR:
8120 /* If first operand is constant, swap them.
8121 Thus the following special case checks need only
8122 check the second operand. */
8123 if (TREE_CODE (treeop0) == INTEGER_CST)
8125 tree t1 = treeop0;
8126 treeop0 = treeop1;
8127 treeop1 = t1;
8130 /* First, check if we have a multiplication of one signed and one
8131 unsigned operand. */
8132 if (TREE_CODE (treeop1) != INTEGER_CST
8133 && (TYPE_UNSIGNED (TREE_TYPE (treeop0))
8134 != TYPE_UNSIGNED (TREE_TYPE (treeop1))))
8136 enum machine_mode innermode = TYPE_MODE (TREE_TYPE (treeop0));
8137 this_optab = usmul_widen_optab;
8138 if (find_widening_optab_handler (this_optab, mode, innermode, 0)
8139 != CODE_FOR_nothing)
8141 if (TYPE_UNSIGNED (TREE_TYPE (treeop0)))
8142 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1,
8143 EXPAND_NORMAL);
8144 else
8145 expand_operands (treeop0, treeop1, NULL_RTX, &op1, &op0,
8146 EXPAND_NORMAL);
8147 goto binop3;
8150 /* Check for a multiplication with matching signedness. */
8151 else if ((TREE_CODE (treeop1) == INTEGER_CST
8152 && int_fits_type_p (treeop1, TREE_TYPE (treeop0)))
8153 || (TYPE_UNSIGNED (TREE_TYPE (treeop1))
8154 == TYPE_UNSIGNED (TREE_TYPE (treeop0))))
8156 tree op0type = TREE_TYPE (treeop0);
8157 enum machine_mode innermode = TYPE_MODE (op0type);
8158 bool zextend_p = TYPE_UNSIGNED (op0type);
8159 optab other_optab = zextend_p ? smul_widen_optab : umul_widen_optab;
8160 this_optab = zextend_p ? umul_widen_optab : smul_widen_optab;
8162 if (TREE_CODE (treeop0) != INTEGER_CST)
8164 if (find_widening_optab_handler (this_optab, mode, innermode, 0)
8165 != CODE_FOR_nothing)
8167 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1,
8168 EXPAND_NORMAL);
8169 temp = expand_widening_mult (mode, op0, op1, target,
8170 unsignedp, this_optab);
8171 return REDUCE_BIT_FIELD (temp);
8173 if (find_widening_optab_handler (other_optab, mode, innermode, 0)
8174 != CODE_FOR_nothing
8175 && innermode == word_mode)
8177 rtx htem, hipart;
8178 op0 = expand_normal (treeop0);
8179 if (TREE_CODE (treeop1) == INTEGER_CST)
8180 op1 = convert_modes (innermode, mode,
8181 expand_normal (treeop1), unsignedp);
8182 else
8183 op1 = expand_normal (treeop1);
8184 temp = expand_binop (mode, other_optab, op0, op1, target,
8185 unsignedp, OPTAB_LIB_WIDEN);
8186 hipart = gen_highpart (innermode, temp);
8187 htem = expand_mult_highpart_adjust (innermode, hipart,
8188 op0, op1, hipart,
8189 zextend_p);
8190 if (htem != hipart)
8191 emit_move_insn (hipart, htem);
8192 return REDUCE_BIT_FIELD (temp);
8196 treeop0 = fold_build1 (CONVERT_EXPR, type, treeop0);
8197 treeop1 = fold_build1 (CONVERT_EXPR, type, treeop1);
8198 expand_operands (treeop0, treeop1, subtarget, &op0, &op1, EXPAND_NORMAL);
8199 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
8201 case FMA_EXPR:
8203 optab opt = fma_optab;
8204 gimple def0, def2;
8206 /* If there is no insn for FMA, emit it as __builtin_fma{,f,l}
8207 call. */
8208 if (optab_handler (fma_optab, mode) == CODE_FOR_nothing)
8210 tree fn = mathfn_built_in (TREE_TYPE (treeop0), BUILT_IN_FMA);
8211 tree call_expr;
8213 gcc_assert (fn != NULL_TREE);
8214 call_expr = build_call_expr (fn, 3, treeop0, treeop1, treeop2);
8215 return expand_builtin (call_expr, target, subtarget, mode, false);
8218 def0 = get_def_for_expr (treeop0, NEGATE_EXPR);
8219 def2 = get_def_for_expr (treeop2, NEGATE_EXPR);
8221 op0 = op2 = NULL;
8223 if (def0 && def2
8224 && optab_handler (fnms_optab, mode) != CODE_FOR_nothing)
8226 opt = fnms_optab;
8227 op0 = expand_normal (gimple_assign_rhs1 (def0));
8228 op2 = expand_normal (gimple_assign_rhs1 (def2));
8230 else if (def0
8231 && optab_handler (fnma_optab, mode) != CODE_FOR_nothing)
8233 opt = fnma_optab;
8234 op0 = expand_normal (gimple_assign_rhs1 (def0));
8236 else if (def2
8237 && optab_handler (fms_optab, mode) != CODE_FOR_nothing)
8239 opt = fms_optab;
8240 op2 = expand_normal (gimple_assign_rhs1 (def2));
8243 if (op0 == NULL)
8244 op0 = expand_expr (treeop0, subtarget, VOIDmode, EXPAND_NORMAL);
8245 if (op2 == NULL)
8246 op2 = expand_normal (treeop2);
8247 op1 = expand_normal (treeop1);
8249 return expand_ternary_op (TYPE_MODE (type), opt,
8250 op0, op1, op2, target, 0);
8253 case MULT_EXPR:
8254 /* If this is a fixed-point operation, then we cannot use the code
8255 below because "expand_mult" doesn't support sat/no-sat fixed-point
8256 multiplications. */
8257 if (ALL_FIXED_POINT_MODE_P (mode))
8258 goto binop;
8260 /* If first operand is constant, swap them.
8261 Thus the following special case checks need only
8262 check the second operand. */
8263 if (TREE_CODE (treeop0) == INTEGER_CST)
8265 tree t1 = treeop0;
8266 treeop0 = treeop1;
8267 treeop1 = t1;
8270 /* Attempt to return something suitable for generating an
8271 indexed address, for machines that support that. */
8273 if (modifier == EXPAND_SUM && mode == ptr_mode
8274 && host_integerp (treeop1, 0))
8276 tree exp1 = treeop1;
8278 op0 = expand_expr (treeop0, subtarget, VOIDmode,
8279 EXPAND_SUM);
8281 if (!REG_P (op0))
8282 op0 = force_operand (op0, NULL_RTX);
8283 if (!REG_P (op0))
8284 op0 = copy_to_mode_reg (mode, op0);
8286 return REDUCE_BIT_FIELD (gen_rtx_MULT (mode, op0,
8287 gen_int_mode (tree_low_cst (exp1, 0),
8288 TYPE_MODE (TREE_TYPE (exp1)))));
8291 if (modifier == EXPAND_STACK_PARM)
8292 target = 0;
8294 expand_operands (treeop0, treeop1, subtarget, &op0, &op1, EXPAND_NORMAL);
8295 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
8297 case TRUNC_DIV_EXPR:
8298 case FLOOR_DIV_EXPR:
8299 case CEIL_DIV_EXPR:
8300 case ROUND_DIV_EXPR:
8301 case EXACT_DIV_EXPR:
8302 /* If this is a fixed-point operation, then we cannot use the code
8303 below because "expand_divmod" doesn't support sat/no-sat fixed-point
8304 divisions. */
8305 if (ALL_FIXED_POINT_MODE_P (mode))
8306 goto binop;
8308 if (modifier == EXPAND_STACK_PARM)
8309 target = 0;
8310 /* Possible optimization: compute the dividend with EXPAND_SUM
8311 then if the divisor is constant can optimize the case
8312 where some terms of the dividend have coeffs divisible by it. */
8313 expand_operands (treeop0, treeop1,
8314 subtarget, &op0, &op1, EXPAND_NORMAL);
8315 return expand_divmod (0, code, mode, op0, op1, target, unsignedp);
8317 case RDIV_EXPR:
8318 goto binop;
8320 case TRUNC_MOD_EXPR:
8321 case FLOOR_MOD_EXPR:
8322 case CEIL_MOD_EXPR:
8323 case ROUND_MOD_EXPR:
8324 if (modifier == EXPAND_STACK_PARM)
8325 target = 0;
8326 expand_operands (treeop0, treeop1,
8327 subtarget, &op0, &op1, EXPAND_NORMAL);
8328 return expand_divmod (1, code, mode, op0, op1, target, unsignedp);
8330 case FIXED_CONVERT_EXPR:
8331 op0 = expand_normal (treeop0);
8332 if (target == 0 || modifier == EXPAND_STACK_PARM)
8333 target = gen_reg_rtx (mode);
8335 if ((TREE_CODE (TREE_TYPE (treeop0)) == INTEGER_TYPE
8336 && TYPE_UNSIGNED (TREE_TYPE (treeop0)))
8337 || (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type)))
8338 expand_fixed_convert (target, op0, 1, TYPE_SATURATING (type));
8339 else
8340 expand_fixed_convert (target, op0, 0, TYPE_SATURATING (type));
8341 return target;
8343 case FIX_TRUNC_EXPR:
8344 op0 = expand_normal (treeop0);
8345 if (target == 0 || modifier == EXPAND_STACK_PARM)
8346 target = gen_reg_rtx (mode);
8347 expand_fix (target, op0, unsignedp);
8348 return target;
8350 case FLOAT_EXPR:
8351 op0 = expand_normal (treeop0);
8352 if (target == 0 || modifier == EXPAND_STACK_PARM)
8353 target = gen_reg_rtx (mode);
8354 /* expand_float can't figure out what to do if FROM has VOIDmode.
8355 So give it the correct mode. With -O, cse will optimize this. */
8356 if (GET_MODE (op0) == VOIDmode)
8357 op0 = copy_to_mode_reg (TYPE_MODE (TREE_TYPE (treeop0)),
8358 op0);
8359 expand_float (target, op0,
8360 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
8361 return target;
8363 case NEGATE_EXPR:
8364 op0 = expand_expr (treeop0, subtarget,
8365 VOIDmode, EXPAND_NORMAL);
8366 if (modifier == EXPAND_STACK_PARM)
8367 target = 0;
8368 temp = expand_unop (mode,
8369 optab_for_tree_code (NEGATE_EXPR, type,
8370 optab_default),
8371 op0, target, 0);
8372 gcc_assert (temp);
8373 return REDUCE_BIT_FIELD (temp);
8375 case ABS_EXPR:
8376 op0 = expand_expr (treeop0, subtarget,
8377 VOIDmode, EXPAND_NORMAL);
8378 if (modifier == EXPAND_STACK_PARM)
8379 target = 0;
8381 /* ABS_EXPR is not valid for complex arguments. */
8382 gcc_assert (GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
8383 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT);
8385 /* Unsigned abs is simply the operand. Testing here means we don't
8386 risk generating incorrect code below. */
8387 if (TYPE_UNSIGNED (type))
8388 return op0;
8390 return expand_abs (mode, op0, target, unsignedp,
8391 safe_from_p (target, treeop0, 1));
8393 case MAX_EXPR:
8394 case MIN_EXPR:
8395 target = original_target;
8396 if (target == 0
8397 || modifier == EXPAND_STACK_PARM
8398 || (MEM_P (target) && MEM_VOLATILE_P (target))
8399 || GET_MODE (target) != mode
8400 || (REG_P (target)
8401 && REGNO (target) < FIRST_PSEUDO_REGISTER))
8402 target = gen_reg_rtx (mode);
8403 expand_operands (treeop0, treeop1,
8404 target, &op0, &op1, EXPAND_NORMAL);
8406 /* First try to do it with a special MIN or MAX instruction.
8407 If that does not win, use a conditional jump to select the proper
8408 value. */
8409 this_optab = optab_for_tree_code (code, type, optab_default);
8410 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
8411 OPTAB_WIDEN);
8412 if (temp != 0)
8413 return temp;
8415 /* At this point, a MEM target is no longer useful; we will get better
8416 code without it. */
8418 if (! REG_P (target))
8419 target = gen_reg_rtx (mode);
8421 /* If op1 was placed in target, swap op0 and op1. */
8422 if (target != op0 && target == op1)
8424 temp = op0;
8425 op0 = op1;
8426 op1 = temp;
8429 /* We generate better code and avoid problems with op1 mentioning
8430 target by forcing op1 into a pseudo if it isn't a constant. */
8431 if (! CONSTANT_P (op1))
8432 op1 = force_reg (mode, op1);
8435 enum rtx_code comparison_code;
8436 rtx cmpop1 = op1;
8438 if (code == MAX_EXPR)
8439 comparison_code = unsignedp ? GEU : GE;
8440 else
8441 comparison_code = unsignedp ? LEU : LE;
8443 /* Canonicalize to comparisons against 0. */
8444 if (op1 == const1_rtx)
8446 /* Converting (a >= 1 ? a : 1) into (a > 0 ? a : 1)
8447 or (a != 0 ? a : 1) for unsigned.
8448 For MIN we are safe converting (a <= 1 ? a : 1)
8449 into (a <= 0 ? a : 1) */
8450 cmpop1 = const0_rtx;
8451 if (code == MAX_EXPR)
8452 comparison_code = unsignedp ? NE : GT;
8454 if (op1 == constm1_rtx && !unsignedp)
8456 /* Converting (a >= -1 ? a : -1) into (a >= 0 ? a : -1)
8457 and (a <= -1 ? a : -1) into (a < 0 ? a : -1) */
8458 cmpop1 = const0_rtx;
8459 if (code == MIN_EXPR)
8460 comparison_code = LT;
8462 #ifdef HAVE_conditional_move
8463 /* Use a conditional move if possible. */
8464 if (can_conditionally_move_p (mode))
8466 rtx insn;
8468 /* ??? Same problem as in expmed.c: emit_conditional_move
8469 forces a stack adjustment via compare_from_rtx, and we
8470 lose the stack adjustment if the sequence we are about
8471 to create is discarded. */
8472 do_pending_stack_adjust ();
8474 start_sequence ();
8476 /* Try to emit the conditional move. */
8477 insn = emit_conditional_move (target, comparison_code,
8478 op0, cmpop1, mode,
8479 op0, op1, mode,
8480 unsignedp);
8482 /* If we could do the conditional move, emit the sequence,
8483 and return. */
8484 if (insn)
8486 rtx seq = get_insns ();
8487 end_sequence ();
8488 emit_insn (seq);
8489 return target;
8492 /* Otherwise discard the sequence and fall back to code with
8493 branches. */
8494 end_sequence ();
8496 #endif
8497 if (target != op0)
8498 emit_move_insn (target, op0);
8500 temp = gen_label_rtx ();
8501 do_compare_rtx_and_jump (target, cmpop1, comparison_code,
8502 unsignedp, mode, NULL_RTX, NULL_RTX, temp,
8503 -1);
8505 emit_move_insn (target, op1);
8506 emit_label (temp);
8507 return target;
8509 case BIT_NOT_EXPR:
8510 op0 = expand_expr (treeop0, subtarget,
8511 VOIDmode, EXPAND_NORMAL);
8512 if (modifier == EXPAND_STACK_PARM)
8513 target = 0;
8514 /* In case we have to reduce the result to bitfield precision
8515 expand this as XOR with a proper constant instead. */
8516 if (reduce_bit_field)
8517 temp = expand_binop (mode, xor_optab, op0,
8518 immed_double_int_const
8519 (double_int_mask (TYPE_PRECISION (type)), mode),
8520 target, 1, OPTAB_LIB_WIDEN);
8521 else
8522 temp = expand_unop (mode, one_cmpl_optab, op0, target, 1);
8523 gcc_assert (temp);
8524 return temp;
8526 /* ??? Can optimize bitwise operations with one arg constant.
8527 Can optimize (a bitwise1 n) bitwise2 (a bitwise3 b)
8528 and (a bitwise1 b) bitwise2 b (etc)
8529 but that is probably not worth while. */
8531 case BIT_AND_EXPR:
8532 case BIT_IOR_EXPR:
8533 case BIT_XOR_EXPR:
8534 goto binop;
8536 case LROTATE_EXPR:
8537 case RROTATE_EXPR:
8538 gcc_assert (VECTOR_MODE_P (TYPE_MODE (type))
8539 || (GET_MODE_PRECISION (TYPE_MODE (type))
8540 == TYPE_PRECISION (type)));
8541 /* fall through */
8543 case LSHIFT_EXPR:
8544 case RSHIFT_EXPR:
8545 /* If this is a fixed-point operation, then we cannot use the code
8546 below because "expand_shift" doesn't support sat/no-sat fixed-point
8547 shifts. */
8548 if (ALL_FIXED_POINT_MODE_P (mode))
8549 goto binop;
8551 if (! safe_from_p (subtarget, treeop1, 1))
8552 subtarget = 0;
8553 if (modifier == EXPAND_STACK_PARM)
8554 target = 0;
8555 op0 = expand_expr (treeop0, subtarget,
8556 VOIDmode, EXPAND_NORMAL);
8557 temp = expand_variable_shift (code, mode, op0, treeop1, target,
8558 unsignedp);
8559 if (code == LSHIFT_EXPR)
8560 temp = REDUCE_BIT_FIELD (temp);
8561 return temp;
8563 /* Could determine the answer when only additive constants differ. Also,
8564 the addition of one can be handled by changing the condition. */
8565 case LT_EXPR:
8566 case LE_EXPR:
8567 case GT_EXPR:
8568 case GE_EXPR:
8569 case EQ_EXPR:
8570 case NE_EXPR:
8571 case UNORDERED_EXPR:
8572 case ORDERED_EXPR:
8573 case UNLT_EXPR:
8574 case UNLE_EXPR:
8575 case UNGT_EXPR:
8576 case UNGE_EXPR:
8577 case UNEQ_EXPR:
8578 case LTGT_EXPR:
8579 temp = do_store_flag (ops,
8580 modifier != EXPAND_STACK_PARM ? target : NULL_RTX,
8581 tmode != VOIDmode ? tmode : mode);
8582 if (temp)
8583 return temp;
8585 /* Use a compare and a jump for BLKmode comparisons, or for function
8586 type comparisons is HAVE_canonicalize_funcptr_for_compare. */
8588 if ((target == 0
8589 || modifier == EXPAND_STACK_PARM
8590 || ! safe_from_p (target, treeop0, 1)
8591 || ! safe_from_p (target, treeop1, 1)
8592 /* Make sure we don't have a hard reg (such as function's return
8593 value) live across basic blocks, if not optimizing. */
8594 || (!optimize && REG_P (target)
8595 && REGNO (target) < FIRST_PSEUDO_REGISTER)))
8596 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
8598 emit_move_insn (target, const0_rtx);
8600 op1 = gen_label_rtx ();
8601 jumpifnot_1 (code, treeop0, treeop1, op1, -1);
8603 if (TYPE_PRECISION (type) == 1 && !TYPE_UNSIGNED (type))
8604 emit_move_insn (target, constm1_rtx);
8605 else
8606 emit_move_insn (target, const1_rtx);
8608 emit_label (op1);
8609 return target;
8611 case COMPLEX_EXPR:
8612 /* Get the rtx code of the operands. */
8613 op0 = expand_normal (treeop0);
8614 op1 = expand_normal (treeop1);
8616 if (!target)
8617 target = gen_reg_rtx (TYPE_MODE (type));
8619 /* Move the real (op0) and imaginary (op1) parts to their location. */
8620 write_complex_part (target, op0, false);
8621 write_complex_part (target, op1, true);
8623 return target;
8625 case WIDEN_SUM_EXPR:
8627 tree oprnd0 = treeop0;
8628 tree oprnd1 = treeop1;
8630 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8631 target = expand_widen_pattern_expr (ops, op0, NULL_RTX, op1,
8632 target, unsignedp);
8633 return target;
8636 case REDUC_MAX_EXPR:
8637 case REDUC_MIN_EXPR:
8638 case REDUC_PLUS_EXPR:
8640 op0 = expand_normal (treeop0);
8641 this_optab = optab_for_tree_code (code, type, optab_default);
8642 temp = expand_unop (mode, this_optab, op0, target, unsignedp);
8643 gcc_assert (temp);
8644 return temp;
8647 case VEC_LSHIFT_EXPR:
8648 case VEC_RSHIFT_EXPR:
8650 target = expand_vec_shift_expr (ops, target);
8651 return target;
8654 case VEC_UNPACK_HI_EXPR:
8655 case VEC_UNPACK_LO_EXPR:
8657 op0 = expand_normal (treeop0);
8658 temp = expand_widen_pattern_expr (ops, op0, NULL_RTX, NULL_RTX,
8659 target, unsignedp);
8660 gcc_assert (temp);
8661 return temp;
8664 case VEC_UNPACK_FLOAT_HI_EXPR:
8665 case VEC_UNPACK_FLOAT_LO_EXPR:
8667 op0 = expand_normal (treeop0);
8668 /* The signedness is determined from input operand. */
8669 temp = expand_widen_pattern_expr
8670 (ops, op0, NULL_RTX, NULL_RTX,
8671 target, TYPE_UNSIGNED (TREE_TYPE (treeop0)));
8673 gcc_assert (temp);
8674 return temp;
8677 case VEC_WIDEN_MULT_HI_EXPR:
8678 case VEC_WIDEN_MULT_LO_EXPR:
8680 tree oprnd0 = treeop0;
8681 tree oprnd1 = treeop1;
8683 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8684 target = expand_widen_pattern_expr (ops, op0, op1, NULL_RTX,
8685 target, unsignedp);
8686 gcc_assert (target);
8687 return target;
8690 case VEC_WIDEN_LSHIFT_HI_EXPR:
8691 case VEC_WIDEN_LSHIFT_LO_EXPR:
8693 tree oprnd0 = treeop0;
8694 tree oprnd1 = treeop1;
8696 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8697 target = expand_widen_pattern_expr (ops, op0, op1, NULL_RTX,
8698 target, unsignedp);
8699 gcc_assert (target);
8700 return target;
8703 case VEC_PACK_TRUNC_EXPR:
8704 case VEC_PACK_SAT_EXPR:
8705 case VEC_PACK_FIX_TRUNC_EXPR:
8706 mode = TYPE_MODE (TREE_TYPE (treeop0));
8707 goto binop;
8709 case VEC_PERM_EXPR:
8710 expand_operands (treeop0, treeop1, target, &op0, &op1, EXPAND_NORMAL);
8711 op2 = expand_normal (treeop2);
8713 /* Careful here: if the target doesn't support integral vector modes,
8714 a constant selection vector could wind up smooshed into a normal
8715 integral constant. */
8716 if (CONSTANT_P (op2) && GET_CODE (op2) != CONST_VECTOR)
8718 tree sel_type = TREE_TYPE (treeop2);
8719 enum machine_mode vmode
8720 = mode_for_vector (TYPE_MODE (TREE_TYPE (sel_type)),
8721 TYPE_VECTOR_SUBPARTS (sel_type));
8722 gcc_assert (GET_MODE_CLASS (vmode) == MODE_VECTOR_INT);
8723 op2 = simplify_subreg (vmode, op2, TYPE_MODE (sel_type), 0);
8724 gcc_assert (op2 && GET_CODE (op2) == CONST_VECTOR);
8726 else
8727 gcc_assert (GET_MODE_CLASS (GET_MODE (op2)) == MODE_VECTOR_INT);
8729 temp = expand_vec_perm (mode, op0, op1, op2, target);
8730 gcc_assert (temp);
8731 return temp;
8733 case DOT_PROD_EXPR:
8735 tree oprnd0 = treeop0;
8736 tree oprnd1 = treeop1;
8737 tree oprnd2 = treeop2;
8738 rtx op2;
8740 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8741 op2 = expand_normal (oprnd2);
8742 target = expand_widen_pattern_expr (ops, op0, op1, op2,
8743 target, unsignedp);
8744 return target;
8747 case REALIGN_LOAD_EXPR:
8749 tree oprnd0 = treeop0;
8750 tree oprnd1 = treeop1;
8751 tree oprnd2 = treeop2;
8752 rtx op2;
8754 this_optab = optab_for_tree_code (code, type, optab_default);
8755 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8756 op2 = expand_normal (oprnd2);
8757 temp = expand_ternary_op (mode, this_optab, op0, op1, op2,
8758 target, unsignedp);
8759 gcc_assert (temp);
8760 return temp;
8763 case COND_EXPR:
8764 /* A COND_EXPR with its type being VOID_TYPE represents a
8765 conditional jump and is handled in
8766 expand_gimple_cond_expr. */
8767 gcc_assert (!VOID_TYPE_P (type));
8769 /* Note that COND_EXPRs whose type is a structure or union
8770 are required to be constructed to contain assignments of
8771 a temporary variable, so that we can evaluate them here
8772 for side effect only. If type is void, we must do likewise. */
8774 gcc_assert (!TREE_ADDRESSABLE (type)
8775 && !ignore
8776 && TREE_TYPE (treeop1) != void_type_node
8777 && TREE_TYPE (treeop2) != void_type_node);
8779 /* If we are not to produce a result, we have no target. Otherwise,
8780 if a target was specified use it; it will not be used as an
8781 intermediate target unless it is safe. If no target, use a
8782 temporary. */
8784 if (modifier != EXPAND_STACK_PARM
8785 && original_target
8786 && safe_from_p (original_target, treeop0, 1)
8787 && GET_MODE (original_target) == mode
8788 #ifdef HAVE_conditional_move
8789 && (! can_conditionally_move_p (mode)
8790 || REG_P (original_target))
8791 #endif
8792 && !MEM_P (original_target))
8793 temp = original_target;
8794 else
8795 temp = assign_temp (type, 0, 0, 1);
8797 do_pending_stack_adjust ();
8798 NO_DEFER_POP;
8799 op0 = gen_label_rtx ();
8800 op1 = gen_label_rtx ();
8801 jumpifnot (treeop0, op0, -1);
8802 store_expr (treeop1, temp,
8803 modifier == EXPAND_STACK_PARM,
8804 false);
8806 emit_jump_insn (gen_jump (op1));
8807 emit_barrier ();
8808 emit_label (op0);
8809 store_expr (treeop2, temp,
8810 modifier == EXPAND_STACK_PARM,
8811 false);
8813 emit_label (op1);
8814 OK_DEFER_POP;
8815 return temp;
8817 case VEC_COND_EXPR:
8818 target = expand_vec_cond_expr (type, treeop0, treeop1, treeop2, target);
8819 return target;
8821 default:
8822 gcc_unreachable ();
8825 /* Here to do an ordinary binary operator. */
8826 binop:
8827 expand_operands (treeop0, treeop1,
8828 subtarget, &op0, &op1, EXPAND_NORMAL);
8829 binop2:
8830 this_optab = optab_for_tree_code (code, type, optab_default);
8831 binop3:
8832 if (modifier == EXPAND_STACK_PARM)
8833 target = 0;
8834 temp = expand_binop (mode, this_optab, op0, op1, target,
8835 unsignedp, OPTAB_LIB_WIDEN);
8836 gcc_assert (temp);
8837 /* Bitwise operations do not need bitfield reduction as we expect their
8838 operands being properly truncated. */
8839 if (code == BIT_XOR_EXPR
8840 || code == BIT_AND_EXPR
8841 || code == BIT_IOR_EXPR)
8842 return temp;
8843 return REDUCE_BIT_FIELD (temp);
8845 #undef REDUCE_BIT_FIELD
8848 expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
8849 enum expand_modifier modifier, rtx *alt_rtl)
8851 rtx op0, op1, temp, decl_rtl;
8852 tree type;
8853 int unsignedp;
8854 enum machine_mode mode;
8855 enum tree_code code = TREE_CODE (exp);
8856 rtx subtarget, original_target;
8857 int ignore;
8858 tree context;
8859 bool reduce_bit_field;
8860 location_t loc = EXPR_LOCATION (exp);
8861 struct separate_ops ops;
8862 tree treeop0, treeop1, treeop2;
8863 tree ssa_name = NULL_TREE;
8864 gimple g;
8866 type = TREE_TYPE (exp);
8867 mode = TYPE_MODE (type);
8868 unsignedp = TYPE_UNSIGNED (type);
8870 treeop0 = treeop1 = treeop2 = NULL_TREE;
8871 if (!VL_EXP_CLASS_P (exp))
8872 switch (TREE_CODE_LENGTH (code))
8874 default:
8875 case 3: treeop2 = TREE_OPERAND (exp, 2);
8876 case 2: treeop1 = TREE_OPERAND (exp, 1);
8877 case 1: treeop0 = TREE_OPERAND (exp, 0);
8878 case 0: break;
8880 ops.code = code;
8881 ops.type = type;
8882 ops.op0 = treeop0;
8883 ops.op1 = treeop1;
8884 ops.op2 = treeop2;
8885 ops.location = loc;
8887 ignore = (target == const0_rtx
8888 || ((CONVERT_EXPR_CODE_P (code)
8889 || code == COND_EXPR || code == VIEW_CONVERT_EXPR)
8890 && TREE_CODE (type) == VOID_TYPE));
8892 /* An operation in what may be a bit-field type needs the
8893 result to be reduced to the precision of the bit-field type,
8894 which is narrower than that of the type's mode. */
8895 reduce_bit_field = (!ignore
8896 && INTEGRAL_TYPE_P (type)
8897 && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type));
8899 /* If we are going to ignore this result, we need only do something
8900 if there is a side-effect somewhere in the expression. If there
8901 is, short-circuit the most common cases here. Note that we must
8902 not call expand_expr with anything but const0_rtx in case this
8903 is an initial expansion of a size that contains a PLACEHOLDER_EXPR. */
8905 if (ignore)
8907 if (! TREE_SIDE_EFFECTS (exp))
8908 return const0_rtx;
8910 /* Ensure we reference a volatile object even if value is ignored, but
8911 don't do this if all we are doing is taking its address. */
8912 if (TREE_THIS_VOLATILE (exp)
8913 && TREE_CODE (exp) != FUNCTION_DECL
8914 && mode != VOIDmode && mode != BLKmode
8915 && modifier != EXPAND_CONST_ADDRESS)
8917 temp = expand_expr (exp, NULL_RTX, VOIDmode, modifier);
8918 if (MEM_P (temp))
8919 copy_to_reg (temp);
8920 return const0_rtx;
8923 if (TREE_CODE_CLASS (code) == tcc_unary
8924 || code == COMPONENT_REF || code == INDIRECT_REF)
8925 return expand_expr (treeop0, const0_rtx, VOIDmode,
8926 modifier);
8928 else if (TREE_CODE_CLASS (code) == tcc_binary
8929 || TREE_CODE_CLASS (code) == tcc_comparison
8930 || code == ARRAY_REF || code == ARRAY_RANGE_REF)
8932 expand_expr (treeop0, const0_rtx, VOIDmode, modifier);
8933 expand_expr (treeop1, const0_rtx, VOIDmode, modifier);
8934 return const0_rtx;
8936 else if (code == BIT_FIELD_REF)
8938 expand_expr (treeop0, const0_rtx, VOIDmode, modifier);
8939 expand_expr (treeop1, const0_rtx, VOIDmode, modifier);
8940 expand_expr (treeop2, const0_rtx, VOIDmode, modifier);
8941 return const0_rtx;
8944 target = 0;
8947 if (reduce_bit_field && modifier == EXPAND_STACK_PARM)
8948 target = 0;
8950 /* Use subtarget as the target for operand 0 of a binary operation. */
8951 subtarget = get_subtarget (target);
8952 original_target = target;
8954 switch (code)
8956 case LABEL_DECL:
8958 tree function = decl_function_context (exp);
8960 temp = label_rtx (exp);
8961 temp = gen_rtx_LABEL_REF (Pmode, temp);
8963 if (function != current_function_decl
8964 && function != 0)
8965 LABEL_REF_NONLOCAL_P (temp) = 1;
8967 temp = gen_rtx_MEM (FUNCTION_MODE, temp);
8968 return temp;
8971 case SSA_NAME:
8972 /* ??? ivopts calls expander, without any preparation from
8973 out-of-ssa. So fake instructions as if this was an access to the
8974 base variable. This unnecessarily allocates a pseudo, see how we can
8975 reuse it, if partition base vars have it set already. */
8976 if (!currently_expanding_to_rtl)
8977 return expand_expr_real_1 (SSA_NAME_VAR (exp), target, tmode, modifier,
8978 NULL);
8980 g = get_gimple_for_ssa_name (exp);
8981 /* For EXPAND_INITIALIZER try harder to get something simpler. */
8982 if (g == NULL
8983 && modifier == EXPAND_INITIALIZER
8984 && !SSA_NAME_IS_DEFAULT_DEF (exp)
8985 && (optimize || DECL_IGNORED_P (SSA_NAME_VAR (exp)))
8986 && stmt_is_replaceable_p (SSA_NAME_DEF_STMT (exp)))
8987 g = SSA_NAME_DEF_STMT (exp);
8988 if (g)
8989 return expand_expr_real (gimple_assign_rhs_to_tree (g), target, tmode,
8990 modifier, NULL);
8992 ssa_name = exp;
8993 decl_rtl = get_rtx_for_ssa_name (ssa_name);
8994 exp = SSA_NAME_VAR (ssa_name);
8995 goto expand_decl_rtl;
8997 case PARM_DECL:
8998 case VAR_DECL:
8999 /* If a static var's type was incomplete when the decl was written,
9000 but the type is complete now, lay out the decl now. */
9001 if (DECL_SIZE (exp) == 0
9002 && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (TREE_TYPE (exp))
9003 && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
9004 layout_decl (exp, 0);
9006 /* ... fall through ... */
9008 case FUNCTION_DECL:
9009 case RESULT_DECL:
9010 decl_rtl = DECL_RTL (exp);
9011 expand_decl_rtl:
9012 gcc_assert (decl_rtl);
9013 decl_rtl = copy_rtx (decl_rtl);
9014 /* Record writes to register variables. */
9015 if (modifier == EXPAND_WRITE
9016 && REG_P (decl_rtl)
9017 && HARD_REGISTER_P (decl_rtl))
9018 add_to_hard_reg_set (&crtl->asm_clobbers,
9019 GET_MODE (decl_rtl), REGNO (decl_rtl));
9021 /* Ensure variable marked as used even if it doesn't go through
9022 a parser. If it hasn't be used yet, write out an external
9023 definition. */
9024 if (! TREE_USED (exp))
9026 assemble_external (exp);
9027 TREE_USED (exp) = 1;
9030 /* Show we haven't gotten RTL for this yet. */
9031 temp = 0;
9033 /* Variables inherited from containing functions should have
9034 been lowered by this point. */
9035 context = decl_function_context (exp);
9036 gcc_assert (!context
9037 || context == current_function_decl
9038 || TREE_STATIC (exp)
9039 || DECL_EXTERNAL (exp)
9040 /* ??? C++ creates functions that are not TREE_STATIC. */
9041 || TREE_CODE (exp) == FUNCTION_DECL);
9043 /* This is the case of an array whose size is to be determined
9044 from its initializer, while the initializer is still being parsed.
9045 See expand_decl. */
9047 if (MEM_P (decl_rtl) && REG_P (XEXP (decl_rtl, 0)))
9048 temp = validize_mem (decl_rtl);
9050 /* If DECL_RTL is memory, we are in the normal case and the
9051 address is not valid, get the address into a register. */
9053 else if (MEM_P (decl_rtl) && modifier != EXPAND_INITIALIZER)
9055 if (alt_rtl)
9056 *alt_rtl = decl_rtl;
9057 decl_rtl = use_anchored_address (decl_rtl);
9058 if (modifier != EXPAND_CONST_ADDRESS
9059 && modifier != EXPAND_SUM
9060 && !memory_address_addr_space_p (DECL_MODE (exp),
9061 XEXP (decl_rtl, 0),
9062 MEM_ADDR_SPACE (decl_rtl)))
9063 temp = replace_equiv_address (decl_rtl,
9064 copy_rtx (XEXP (decl_rtl, 0)));
9067 /* If we got something, return it. But first, set the alignment
9068 if the address is a register. */
9069 if (temp != 0)
9071 if (MEM_P (temp) && REG_P (XEXP (temp, 0)))
9072 mark_reg_pointer (XEXP (temp, 0), DECL_ALIGN (exp));
9074 return temp;
9077 /* If the mode of DECL_RTL does not match that of the decl,
9078 there are two cases: we are dealing with a BLKmode value
9079 that is returned in a register, or we are dealing with
9080 a promoted value. In the latter case, return a SUBREG
9081 of the wanted mode, but mark it so that we know that it
9082 was already extended. */
9083 if (REG_P (decl_rtl)
9084 && DECL_MODE (exp) != BLKmode
9085 && GET_MODE (decl_rtl) != DECL_MODE (exp))
9087 enum machine_mode pmode;
9089 /* Get the signedness to be used for this variable. Ensure we get
9090 the same mode we got when the variable was declared. */
9091 if (code == SSA_NAME
9092 && (g = SSA_NAME_DEF_STMT (ssa_name))
9093 && gimple_code (g) == GIMPLE_CALL)
9095 gcc_assert (!gimple_call_internal_p (g));
9096 pmode = promote_function_mode (type, mode, &unsignedp,
9097 gimple_call_fntype (g),
9100 else
9101 pmode = promote_decl_mode (exp, &unsignedp);
9102 gcc_assert (GET_MODE (decl_rtl) == pmode);
9104 temp = gen_lowpart_SUBREG (mode, decl_rtl);
9105 SUBREG_PROMOTED_VAR_P (temp) = 1;
9106 SUBREG_PROMOTED_UNSIGNED_SET (temp, unsignedp);
9107 return temp;
9110 return decl_rtl;
9112 case INTEGER_CST:
9113 temp = immed_double_const (TREE_INT_CST_LOW (exp),
9114 TREE_INT_CST_HIGH (exp), mode);
9116 return temp;
9118 case VECTOR_CST:
9120 tree tmp = NULL_TREE;
9121 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT
9122 || GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT
9123 || GET_MODE_CLASS (mode) == MODE_VECTOR_FRACT
9124 || GET_MODE_CLASS (mode) == MODE_VECTOR_UFRACT
9125 || GET_MODE_CLASS (mode) == MODE_VECTOR_ACCUM
9126 || GET_MODE_CLASS (mode) == MODE_VECTOR_UACCUM)
9127 return const_vector_from_tree (exp);
9128 if (GET_MODE_CLASS (mode) == MODE_INT)
9130 tree type_for_mode = lang_hooks.types.type_for_mode (mode, 1);
9131 if (type_for_mode)
9132 tmp = fold_unary_loc (loc, VIEW_CONVERT_EXPR, type_for_mode, exp);
9134 if (!tmp)
9135 tmp = build_constructor_from_list (type,
9136 TREE_VECTOR_CST_ELTS (exp));
9137 return expand_expr (tmp, ignore ? const0_rtx : target,
9138 tmode, modifier);
9141 case CONST_DECL:
9142 return expand_expr (DECL_INITIAL (exp), target, VOIDmode, modifier);
9144 case REAL_CST:
9145 /* If optimized, generate immediate CONST_DOUBLE
9146 which will be turned into memory by reload if necessary.
9148 We used to force a register so that loop.c could see it. But
9149 this does not allow gen_* patterns to perform optimizations with
9150 the constants. It also produces two insns in cases like "x = 1.0;".
9151 On most machines, floating-point constants are not permitted in
9152 many insns, so we'd end up copying it to a register in any case.
9154 Now, we do the copying in expand_binop, if appropriate. */
9155 return CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (exp),
9156 TYPE_MODE (TREE_TYPE (exp)));
9158 case FIXED_CST:
9159 return CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (exp),
9160 TYPE_MODE (TREE_TYPE (exp)));
9162 case COMPLEX_CST:
9163 /* Handle evaluating a complex constant in a CONCAT target. */
9164 if (original_target && GET_CODE (original_target) == CONCAT)
9166 enum machine_mode mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
9167 rtx rtarg, itarg;
9169 rtarg = XEXP (original_target, 0);
9170 itarg = XEXP (original_target, 1);
9172 /* Move the real and imaginary parts separately. */
9173 op0 = expand_expr (TREE_REALPART (exp), rtarg, mode, EXPAND_NORMAL);
9174 op1 = expand_expr (TREE_IMAGPART (exp), itarg, mode, EXPAND_NORMAL);
9176 if (op0 != rtarg)
9177 emit_move_insn (rtarg, op0);
9178 if (op1 != itarg)
9179 emit_move_insn (itarg, op1);
9181 return original_target;
9184 /* ... fall through ... */
9186 case STRING_CST:
9187 temp = expand_expr_constant (exp, 1, modifier);
9189 /* temp contains a constant address.
9190 On RISC machines where a constant address isn't valid,
9191 make some insns to get that address into a register. */
9192 if (modifier != EXPAND_CONST_ADDRESS
9193 && modifier != EXPAND_INITIALIZER
9194 && modifier != EXPAND_SUM
9195 && ! memory_address_addr_space_p (mode, XEXP (temp, 0),
9196 MEM_ADDR_SPACE (temp)))
9197 return replace_equiv_address (temp,
9198 copy_rtx (XEXP (temp, 0)));
9199 return temp;
9201 case SAVE_EXPR:
9203 tree val = treeop0;
9204 rtx ret = expand_expr_real_1 (val, target, tmode, modifier, alt_rtl);
9206 if (!SAVE_EXPR_RESOLVED_P (exp))
9208 /* We can indeed still hit this case, typically via builtin
9209 expanders calling save_expr immediately before expanding
9210 something. Assume this means that we only have to deal
9211 with non-BLKmode values. */
9212 gcc_assert (GET_MODE (ret) != BLKmode);
9214 val = build_decl (EXPR_LOCATION (exp),
9215 VAR_DECL, NULL, TREE_TYPE (exp));
9216 DECL_ARTIFICIAL (val) = 1;
9217 DECL_IGNORED_P (val) = 1;
9218 treeop0 = val;
9219 TREE_OPERAND (exp, 0) = treeop0;
9220 SAVE_EXPR_RESOLVED_P (exp) = 1;
9222 if (!CONSTANT_P (ret))
9223 ret = copy_to_reg (ret);
9224 SET_DECL_RTL (val, ret);
9227 return ret;
9231 case CONSTRUCTOR:
9232 /* If we don't need the result, just ensure we evaluate any
9233 subexpressions. */
9234 if (ignore)
9236 unsigned HOST_WIDE_INT idx;
9237 tree value;
9239 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
9240 expand_expr (value, const0_rtx, VOIDmode, EXPAND_NORMAL);
9242 return const0_rtx;
9245 return expand_constructor (exp, target, modifier, false);
9247 case TARGET_MEM_REF:
9249 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (exp));
9250 struct mem_address addr;
9251 enum insn_code icode;
9252 unsigned int align;
9254 get_address_description (exp, &addr);
9255 op0 = addr_for_mem_ref (&addr, as, true);
9256 op0 = memory_address_addr_space (mode, op0, as);
9257 temp = gen_rtx_MEM (mode, op0);
9258 set_mem_attributes (temp, exp, 0);
9259 set_mem_addr_space (temp, as);
9260 align = get_object_or_type_alignment (exp);
9261 if (mode != BLKmode
9262 && align < GET_MODE_ALIGNMENT (mode)
9263 /* If the target does not have special handling for unaligned
9264 loads of mode then it can use regular moves for them. */
9265 && ((icode = optab_handler (movmisalign_optab, mode))
9266 != CODE_FOR_nothing))
9268 struct expand_operand ops[2];
9270 /* We've already validated the memory, and we're creating a
9271 new pseudo destination. The predicates really can't fail,
9272 nor can the generator. */
9273 create_output_operand (&ops[0], NULL_RTX, mode);
9274 create_fixed_operand (&ops[1], temp);
9275 expand_insn (icode, 2, ops);
9276 return ops[0].value;
9278 return temp;
9281 case MEM_REF:
9283 addr_space_t as
9284 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 1))));
9285 enum machine_mode address_mode;
9286 tree base = TREE_OPERAND (exp, 0);
9287 gimple def_stmt;
9288 enum insn_code icode;
9289 unsigned align;
9290 /* Handle expansion of non-aliased memory with non-BLKmode. That
9291 might end up in a register. */
9292 if (TREE_CODE (base) == ADDR_EXPR)
9294 HOST_WIDE_INT offset = mem_ref_offset (exp).low;
9295 tree bit_offset;
9296 base = TREE_OPERAND (base, 0);
9297 if (!DECL_P (base))
9299 HOST_WIDE_INT off;
9300 base = get_addr_base_and_unit_offset (base, &off);
9301 gcc_assert (base);
9302 offset += off;
9304 /* If we are expanding a MEM_REF of a non-BLKmode non-addressable
9305 decl we must use bitfield operations. */
9306 if (DECL_P (base)
9307 && !TREE_ADDRESSABLE (base)
9308 && DECL_MODE (base) != BLKmode
9309 && DECL_RTL_SET_P (base)
9310 && !MEM_P (DECL_RTL (base)))
9312 tree bftype;
9313 if (offset == 0
9314 && host_integerp (TYPE_SIZE (TREE_TYPE (exp)), 1)
9315 && (GET_MODE_BITSIZE (DECL_MODE (base))
9316 == TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (exp)))))
9317 return expand_expr (build1 (VIEW_CONVERT_EXPR,
9318 TREE_TYPE (exp), base),
9319 target, tmode, modifier);
9320 bit_offset = bitsize_int (offset * BITS_PER_UNIT);
9321 bftype = TREE_TYPE (base);
9322 if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
9323 bftype = TREE_TYPE (exp);
9324 return expand_expr (build3 (BIT_FIELD_REF, bftype,
9325 base,
9326 TYPE_SIZE (TREE_TYPE (exp)),
9327 bit_offset),
9328 target, tmode, modifier);
9331 address_mode = targetm.addr_space.address_mode (as);
9332 base = TREE_OPERAND (exp, 0);
9333 if ((def_stmt = get_def_for_expr (base, BIT_AND_EXPR)))
9335 tree mask = gimple_assign_rhs2 (def_stmt);
9336 base = build2 (BIT_AND_EXPR, TREE_TYPE (base),
9337 gimple_assign_rhs1 (def_stmt), mask);
9338 TREE_OPERAND (exp, 0) = base;
9340 align = get_object_or_type_alignment (exp);
9341 op0 = expand_expr (base, NULL_RTX, VOIDmode, EXPAND_SUM);
9342 op0 = memory_address_addr_space (address_mode, op0, as);
9343 if (!integer_zerop (TREE_OPERAND (exp, 1)))
9345 rtx off
9346 = immed_double_int_const (mem_ref_offset (exp), address_mode);
9347 op0 = simplify_gen_binary (PLUS, address_mode, op0, off);
9349 op0 = memory_address_addr_space (mode, op0, as);
9350 temp = gen_rtx_MEM (mode, op0);
9351 set_mem_attributes (temp, exp, 0);
9352 set_mem_addr_space (temp, as);
9353 if (TREE_THIS_VOLATILE (exp))
9354 MEM_VOLATILE_P (temp) = 1;
9355 if (mode != BLKmode
9356 && align < GET_MODE_ALIGNMENT (mode)
9357 /* If the target does not have special handling for unaligned
9358 loads of mode then it can use regular moves for them. */
9359 && ((icode = optab_handler (movmisalign_optab, mode))
9360 != CODE_FOR_nothing))
9362 struct expand_operand ops[2];
9364 /* We've already validated the memory, and we're creating a
9365 new pseudo destination. The predicates really can't fail,
9366 nor can the generator. */
9367 create_output_operand (&ops[0], NULL_RTX, mode);
9368 create_fixed_operand (&ops[1], temp);
9369 expand_insn (icode, 2, ops);
9370 return ops[0].value;
9372 return temp;
9375 case ARRAY_REF:
9378 tree array = treeop0;
9379 tree index = treeop1;
9381 /* Fold an expression like: "foo"[2].
9382 This is not done in fold so it won't happen inside &.
9383 Don't fold if this is for wide characters since it's too
9384 difficult to do correctly and this is a very rare case. */
9386 if (modifier != EXPAND_CONST_ADDRESS
9387 && modifier != EXPAND_INITIALIZER
9388 && modifier != EXPAND_MEMORY)
9390 tree t = fold_read_from_constant_string (exp);
9392 if (t)
9393 return expand_expr (t, target, tmode, modifier);
9396 /* If this is a constant index into a constant array,
9397 just get the value from the array. Handle both the cases when
9398 we have an explicit constructor and when our operand is a variable
9399 that was declared const. */
9401 if (modifier != EXPAND_CONST_ADDRESS
9402 && modifier != EXPAND_INITIALIZER
9403 && modifier != EXPAND_MEMORY
9404 && TREE_CODE (array) == CONSTRUCTOR
9405 && ! TREE_SIDE_EFFECTS (array)
9406 && TREE_CODE (index) == INTEGER_CST)
9408 unsigned HOST_WIDE_INT ix;
9409 tree field, value;
9411 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (array), ix,
9412 field, value)
9413 if (tree_int_cst_equal (field, index))
9415 if (!TREE_SIDE_EFFECTS (value))
9416 return expand_expr (fold (value), target, tmode, modifier);
9417 break;
9421 else if (optimize >= 1
9422 && modifier != EXPAND_CONST_ADDRESS
9423 && modifier != EXPAND_INITIALIZER
9424 && modifier != EXPAND_MEMORY
9425 && TREE_READONLY (array) && ! TREE_SIDE_EFFECTS (array)
9426 && TREE_CODE (array) == VAR_DECL && DECL_INITIAL (array)
9427 && TREE_CODE (DECL_INITIAL (array)) != ERROR_MARK
9428 && const_value_known_p (array))
9430 if (TREE_CODE (index) == INTEGER_CST)
9432 tree init = DECL_INITIAL (array);
9434 if (TREE_CODE (init) == CONSTRUCTOR)
9436 unsigned HOST_WIDE_INT ix;
9437 tree field, value;
9439 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), ix,
9440 field, value)
9441 if (tree_int_cst_equal (field, index))
9443 if (TREE_SIDE_EFFECTS (value))
9444 break;
9446 if (TREE_CODE (value) == CONSTRUCTOR)
9448 /* If VALUE is a CONSTRUCTOR, this
9449 optimization is only useful if
9450 this doesn't store the CONSTRUCTOR
9451 into memory. If it does, it is more
9452 efficient to just load the data from
9453 the array directly. */
9454 rtx ret = expand_constructor (value, target,
9455 modifier, true);
9456 if (ret == NULL_RTX)
9457 break;
9460 return expand_expr (fold (value), target, tmode,
9461 modifier);
9464 else if(TREE_CODE (init) == STRING_CST)
9466 tree index1 = index;
9467 tree low_bound = array_ref_low_bound (exp);
9468 index1 = fold_convert_loc (loc, sizetype,
9469 treeop1);
9471 /* Optimize the special-case of a zero lower bound.
9473 We convert the low_bound to sizetype to avoid some problems
9474 with constant folding. (E.g. suppose the lower bound is 1,
9475 and its mode is QI. Without the conversion,l (ARRAY
9476 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
9477 +INDEX), which becomes (ARRAY+255+INDEX). Opps!) */
9479 if (! integer_zerop (low_bound))
9480 index1 = size_diffop_loc (loc, index1,
9481 fold_convert_loc (loc, sizetype,
9482 low_bound));
9484 if (0 > compare_tree_int (index1,
9485 TREE_STRING_LENGTH (init)))
9487 tree type = TREE_TYPE (TREE_TYPE (init));
9488 enum machine_mode mode = TYPE_MODE (type);
9490 if (GET_MODE_CLASS (mode) == MODE_INT
9491 && GET_MODE_SIZE (mode) == 1)
9492 return gen_int_mode (TREE_STRING_POINTER (init)
9493 [TREE_INT_CST_LOW (index1)],
9494 mode);
9500 goto normal_inner_ref;
9502 case COMPONENT_REF:
9503 /* If the operand is a CONSTRUCTOR, we can just extract the
9504 appropriate field if it is present. */
9505 if (TREE_CODE (treeop0) == CONSTRUCTOR)
9507 unsigned HOST_WIDE_INT idx;
9508 tree field, value;
9510 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (treeop0),
9511 idx, field, value)
9512 if (field == treeop1
9513 /* We can normally use the value of the field in the
9514 CONSTRUCTOR. However, if this is a bitfield in
9515 an integral mode that we can fit in a HOST_WIDE_INT,
9516 we must mask only the number of bits in the bitfield,
9517 since this is done implicitly by the constructor. If
9518 the bitfield does not meet either of those conditions,
9519 we can't do this optimization. */
9520 && (! DECL_BIT_FIELD (field)
9521 || ((GET_MODE_CLASS (DECL_MODE (field)) == MODE_INT)
9522 && (GET_MODE_PRECISION (DECL_MODE (field))
9523 <= HOST_BITS_PER_WIDE_INT))))
9525 if (DECL_BIT_FIELD (field)
9526 && modifier == EXPAND_STACK_PARM)
9527 target = 0;
9528 op0 = expand_expr (value, target, tmode, modifier);
9529 if (DECL_BIT_FIELD (field))
9531 HOST_WIDE_INT bitsize = TREE_INT_CST_LOW (DECL_SIZE (field));
9532 enum machine_mode imode = TYPE_MODE (TREE_TYPE (field));
9534 if (TYPE_UNSIGNED (TREE_TYPE (field)))
9536 op1 = GEN_INT (((HOST_WIDE_INT) 1 << bitsize) - 1);
9537 op0 = expand_and (imode, op0, op1, target);
9539 else
9541 int count = GET_MODE_PRECISION (imode) - bitsize;
9543 op0 = expand_shift (LSHIFT_EXPR, imode, op0, count,
9544 target, 0);
9545 op0 = expand_shift (RSHIFT_EXPR, imode, op0, count,
9546 target, 0);
9550 return op0;
9553 goto normal_inner_ref;
9555 case BIT_FIELD_REF:
9556 case ARRAY_RANGE_REF:
9557 normal_inner_ref:
9559 enum machine_mode mode1, mode2;
9560 HOST_WIDE_INT bitsize, bitpos;
9561 tree offset;
9562 int volatilep = 0, must_force_mem;
9563 bool packedp = false;
9564 tree tem = get_inner_reference (exp, &bitsize, &bitpos, &offset,
9565 &mode1, &unsignedp, &volatilep, true);
9566 rtx orig_op0, memloc;
9568 /* If we got back the original object, something is wrong. Perhaps
9569 we are evaluating an expression too early. In any event, don't
9570 infinitely recurse. */
9571 gcc_assert (tem != exp);
9573 if (TYPE_PACKED (TREE_TYPE (TREE_OPERAND (exp, 0)))
9574 || (TREE_CODE (TREE_OPERAND (exp, 1)) == FIELD_DECL
9575 && DECL_PACKED (TREE_OPERAND (exp, 1))))
9576 packedp = true;
9578 /* If TEM's type is a union of variable size, pass TARGET to the inner
9579 computation, since it will need a temporary and TARGET is known
9580 to have to do. This occurs in unchecked conversion in Ada. */
9581 orig_op0 = op0
9582 = expand_expr (tem,
9583 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
9584 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
9585 != INTEGER_CST)
9586 && modifier != EXPAND_STACK_PARM
9587 ? target : NULL_RTX),
9588 VOIDmode,
9589 (modifier == EXPAND_INITIALIZER
9590 || modifier == EXPAND_CONST_ADDRESS
9591 || modifier == EXPAND_STACK_PARM)
9592 ? modifier : EXPAND_NORMAL);
9595 /* If the bitfield is volatile, we want to access it in the
9596 field's mode, not the computed mode.
9597 If a MEM has VOIDmode (external with incomplete type),
9598 use BLKmode for it instead. */
9599 if (MEM_P (op0))
9601 if (volatilep && flag_strict_volatile_bitfields > 0)
9602 op0 = adjust_address (op0, mode1, 0);
9603 else if (GET_MODE (op0) == VOIDmode)
9604 op0 = adjust_address (op0, BLKmode, 0);
9607 mode2
9608 = CONSTANT_P (op0) ? TYPE_MODE (TREE_TYPE (tem)) : GET_MODE (op0);
9610 /* If we have either an offset, a BLKmode result, or a reference
9611 outside the underlying object, we must force it to memory.
9612 Such a case can occur in Ada if we have unchecked conversion
9613 of an expression from a scalar type to an aggregate type or
9614 for an ARRAY_RANGE_REF whose type is BLKmode, or if we were
9615 passed a partially uninitialized object or a view-conversion
9616 to a larger size. */
9617 must_force_mem = (offset
9618 || mode1 == BLKmode
9619 || bitpos + bitsize > GET_MODE_BITSIZE (mode2));
9621 /* Handle CONCAT first. */
9622 if (GET_CODE (op0) == CONCAT && !must_force_mem)
9624 if (bitpos == 0
9625 && bitsize == GET_MODE_BITSIZE (GET_MODE (op0)))
9626 return op0;
9627 if (bitpos == 0
9628 && bitsize == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
9629 && bitsize)
9631 op0 = XEXP (op0, 0);
9632 mode2 = GET_MODE (op0);
9634 else if (bitpos == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
9635 && bitsize == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 1)))
9636 && bitpos
9637 && bitsize)
9639 op0 = XEXP (op0, 1);
9640 bitpos = 0;
9641 mode2 = GET_MODE (op0);
9643 else
9644 /* Otherwise force into memory. */
9645 must_force_mem = 1;
9648 /* If this is a constant, put it in a register if it is a legitimate
9649 constant and we don't need a memory reference. */
9650 if (CONSTANT_P (op0)
9651 && mode2 != BLKmode
9652 && targetm.legitimate_constant_p (mode2, op0)
9653 && !must_force_mem)
9654 op0 = force_reg (mode2, op0);
9656 /* Otherwise, if this is a constant, try to force it to the constant
9657 pool. Note that back-ends, e.g. MIPS, may refuse to do so if it
9658 is a legitimate constant. */
9659 else if (CONSTANT_P (op0) && (memloc = force_const_mem (mode2, op0)))
9660 op0 = validize_mem (memloc);
9662 /* Otherwise, if this is a constant or the object is not in memory
9663 and need be, put it there. */
9664 else if (CONSTANT_P (op0) || (!MEM_P (op0) && must_force_mem))
9666 tree nt = build_qualified_type (TREE_TYPE (tem),
9667 (TYPE_QUALS (TREE_TYPE (tem))
9668 | TYPE_QUAL_CONST));
9669 memloc = assign_temp (nt, 1, 1, 1);
9670 emit_move_insn (memloc, op0);
9671 op0 = memloc;
9674 if (offset)
9676 enum machine_mode address_mode;
9677 rtx offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode,
9678 EXPAND_SUM);
9680 gcc_assert (MEM_P (op0));
9682 address_mode
9683 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (op0));
9684 if (GET_MODE (offset_rtx) != address_mode)
9685 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
9687 if (GET_MODE (op0) == BLKmode
9688 /* A constant address in OP0 can have VOIDmode, we must
9689 not try to call force_reg in that case. */
9690 && GET_MODE (XEXP (op0, 0)) != VOIDmode
9691 && bitsize != 0
9692 && (bitpos % bitsize) == 0
9693 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
9694 && MEM_ALIGN (op0) == GET_MODE_ALIGNMENT (mode1))
9696 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
9697 bitpos = 0;
9700 op0 = offset_address (op0, offset_rtx,
9701 highest_pow2_factor (offset));
9704 /* If OFFSET is making OP0 more aligned than BIGGEST_ALIGNMENT,
9705 record its alignment as BIGGEST_ALIGNMENT. */
9706 if (MEM_P (op0) && bitpos == 0 && offset != 0
9707 && is_aligning_offset (offset, tem))
9708 set_mem_align (op0, BIGGEST_ALIGNMENT);
9710 /* Don't forget about volatility even if this is a bitfield. */
9711 if (MEM_P (op0) && volatilep && ! MEM_VOLATILE_P (op0))
9713 if (op0 == orig_op0)
9714 op0 = copy_rtx (op0);
9716 MEM_VOLATILE_P (op0) = 1;
9719 /* In cases where an aligned union has an unaligned object
9720 as a field, we might be extracting a BLKmode value from
9721 an integer-mode (e.g., SImode) object. Handle this case
9722 by doing the extract into an object as wide as the field
9723 (which we know to be the width of a basic mode), then
9724 storing into memory, and changing the mode to BLKmode. */
9725 if (mode1 == VOIDmode
9726 || REG_P (op0) || GET_CODE (op0) == SUBREG
9727 || (mode1 != BLKmode && ! direct_load[(int) mode1]
9728 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
9729 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT
9730 && modifier != EXPAND_CONST_ADDRESS
9731 && modifier != EXPAND_INITIALIZER)
9732 /* If the field is volatile, we always want an aligned
9733 access. Do this in following two situations:
9734 1. the access is not already naturally
9735 aligned, otherwise "normal" (non-bitfield) volatile fields
9736 become non-addressable.
9737 2. the bitsize is narrower than the access size. Need
9738 to extract bitfields from the access. */
9739 || (volatilep && flag_strict_volatile_bitfields > 0
9740 && (bitpos % GET_MODE_ALIGNMENT (mode) != 0
9741 || (mode1 != BLKmode
9742 && bitsize < GET_MODE_SIZE (mode1) * BITS_PER_UNIT)))
9743 /* If the field isn't aligned enough to fetch as a memref,
9744 fetch it as a bit field. */
9745 || (mode1 != BLKmode
9746 && (((TYPE_ALIGN (TREE_TYPE (tem)) < GET_MODE_ALIGNMENT (mode)
9747 || (bitpos % GET_MODE_ALIGNMENT (mode) != 0)
9748 || (MEM_P (op0)
9749 && (MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode1)
9750 || (bitpos % GET_MODE_ALIGNMENT (mode1) != 0))))
9751 && ((modifier == EXPAND_CONST_ADDRESS
9752 || modifier == EXPAND_INITIALIZER)
9753 ? STRICT_ALIGNMENT
9754 : SLOW_UNALIGNED_ACCESS (mode1, MEM_ALIGN (op0))))
9755 || (bitpos % BITS_PER_UNIT != 0)))
9756 /* If the type and the field are a constant size and the
9757 size of the type isn't the same size as the bitfield,
9758 we must use bitfield operations. */
9759 || (bitsize >= 0
9760 && TYPE_SIZE (TREE_TYPE (exp))
9761 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
9762 && 0 != compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)),
9763 bitsize)))
9765 enum machine_mode ext_mode = mode;
9767 if (ext_mode == BLKmode
9768 && ! (target != 0 && MEM_P (op0)
9769 && MEM_P (target)
9770 && bitpos % BITS_PER_UNIT == 0))
9771 ext_mode = mode_for_size (bitsize, MODE_INT, 1);
9773 if (ext_mode == BLKmode)
9775 if (target == 0)
9776 target = assign_temp (type, 0, 1, 1);
9778 if (bitsize == 0)
9779 return target;
9781 /* In this case, BITPOS must start at a byte boundary and
9782 TARGET, if specified, must be a MEM. */
9783 gcc_assert (MEM_P (op0)
9784 && (!target || MEM_P (target))
9785 && !(bitpos % BITS_PER_UNIT));
9787 emit_block_move (target,
9788 adjust_address (op0, VOIDmode,
9789 bitpos / BITS_PER_UNIT),
9790 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
9791 / BITS_PER_UNIT),
9792 (modifier == EXPAND_STACK_PARM
9793 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
9795 return target;
9798 op0 = validize_mem (op0);
9800 if (MEM_P (op0) && REG_P (XEXP (op0, 0)))
9801 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
9803 op0 = extract_bit_field (op0, bitsize, bitpos, unsignedp, packedp,
9804 (modifier == EXPAND_STACK_PARM
9805 ? NULL_RTX : target),
9806 ext_mode, ext_mode);
9808 /* If the result is a record type and BITSIZE is narrower than
9809 the mode of OP0, an integral mode, and this is a big endian
9810 machine, we must put the field into the high-order bits. */
9811 if (TREE_CODE (type) == RECORD_TYPE && BYTES_BIG_ENDIAN
9812 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
9813 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (op0)))
9814 op0 = expand_shift (LSHIFT_EXPR, GET_MODE (op0), op0,
9815 GET_MODE_BITSIZE (GET_MODE (op0))
9816 - bitsize, op0, 1);
9818 /* If the result type is BLKmode, store the data into a temporary
9819 of the appropriate type, but with the mode corresponding to the
9820 mode for the data we have (op0's mode). It's tempting to make
9821 this a constant type, since we know it's only being stored once,
9822 but that can cause problems if we are taking the address of this
9823 COMPONENT_REF because the MEM of any reference via that address
9824 will have flags corresponding to the type, which will not
9825 necessarily be constant. */
9826 if (mode == BLKmode)
9828 HOST_WIDE_INT size = GET_MODE_BITSIZE (ext_mode);
9829 rtx new_rtx;
9831 /* If the reference doesn't use the alias set of its type,
9832 we cannot create the temporary using that type. */
9833 if (component_uses_parent_alias_set (exp))
9835 new_rtx = assign_stack_local (ext_mode, size, 0);
9836 set_mem_alias_set (new_rtx, get_alias_set (exp));
9838 else
9839 new_rtx = assign_stack_temp_for_type (ext_mode, size, 0, type);
9841 emit_move_insn (new_rtx, op0);
9842 op0 = copy_rtx (new_rtx);
9843 PUT_MODE (op0, BLKmode);
9844 set_mem_attributes (op0, exp, 1);
9847 return op0;
9850 /* If the result is BLKmode, use that to access the object
9851 now as well. */
9852 if (mode == BLKmode)
9853 mode1 = BLKmode;
9855 /* Get a reference to just this component. */
9856 if (modifier == EXPAND_CONST_ADDRESS
9857 || modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
9858 op0 = adjust_address_nv (op0, mode1, bitpos / BITS_PER_UNIT);
9859 else
9860 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
9862 if (op0 == orig_op0)
9863 op0 = copy_rtx (op0);
9865 set_mem_attributes (op0, exp, 0);
9866 if (REG_P (XEXP (op0, 0)))
9867 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
9869 MEM_VOLATILE_P (op0) |= volatilep;
9870 if (mode == mode1 || mode1 == BLKmode || mode1 == tmode
9871 || modifier == EXPAND_CONST_ADDRESS
9872 || modifier == EXPAND_INITIALIZER)
9873 return op0;
9874 else if (target == 0)
9875 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
9877 convert_move (target, op0, unsignedp);
9878 return target;
9881 case OBJ_TYPE_REF:
9882 return expand_expr (OBJ_TYPE_REF_EXPR (exp), target, tmode, modifier);
9884 case CALL_EXPR:
9885 /* All valid uses of __builtin_va_arg_pack () are removed during
9886 inlining. */
9887 if (CALL_EXPR_VA_ARG_PACK (exp))
9888 error ("%Kinvalid use of %<__builtin_va_arg_pack ()%>", exp);
9890 tree fndecl = get_callee_fndecl (exp), attr;
9892 if (fndecl
9893 && (attr = lookup_attribute ("error",
9894 DECL_ATTRIBUTES (fndecl))) != NULL)
9895 error ("%Kcall to %qs declared with attribute error: %s",
9896 exp, identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 1)),
9897 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
9898 if (fndecl
9899 && (attr = lookup_attribute ("warning",
9900 DECL_ATTRIBUTES (fndecl))) != NULL)
9901 warning_at (tree_nonartificial_location (exp),
9902 0, "%Kcall to %qs declared with attribute warning: %s",
9903 exp, identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 1)),
9904 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
9906 /* Check for a built-in function. */
9907 if (fndecl && DECL_BUILT_IN (fndecl))
9909 gcc_assert (DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_FRONTEND);
9910 return expand_builtin (exp, target, subtarget, tmode, ignore);
9913 return expand_call (exp, target, ignore);
9915 case VIEW_CONVERT_EXPR:
9916 op0 = NULL_RTX;
9918 /* If we are converting to BLKmode, try to avoid an intermediate
9919 temporary by fetching an inner memory reference. */
9920 if (mode == BLKmode
9921 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
9922 && TYPE_MODE (TREE_TYPE (treeop0)) != BLKmode
9923 && handled_component_p (treeop0))
9925 enum machine_mode mode1;
9926 HOST_WIDE_INT bitsize, bitpos;
9927 tree offset;
9928 int unsignedp;
9929 int volatilep = 0;
9930 tree tem
9931 = get_inner_reference (treeop0, &bitsize, &bitpos,
9932 &offset, &mode1, &unsignedp, &volatilep,
9933 true);
9934 rtx orig_op0;
9936 /* ??? We should work harder and deal with non-zero offsets. */
9937 if (!offset
9938 && (bitpos % BITS_PER_UNIT) == 0
9939 && bitsize >= 0
9940 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) == 0)
9942 /* See the normal_inner_ref case for the rationale. */
9943 orig_op0
9944 = expand_expr (tem,
9945 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
9946 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
9947 != INTEGER_CST)
9948 && modifier != EXPAND_STACK_PARM
9949 ? target : NULL_RTX),
9950 VOIDmode,
9951 (modifier == EXPAND_INITIALIZER
9952 || modifier == EXPAND_CONST_ADDRESS
9953 || modifier == EXPAND_STACK_PARM)
9954 ? modifier : EXPAND_NORMAL);
9956 if (MEM_P (orig_op0))
9958 op0 = orig_op0;
9960 /* Get a reference to just this component. */
9961 if (modifier == EXPAND_CONST_ADDRESS
9962 || modifier == EXPAND_SUM
9963 || modifier == EXPAND_INITIALIZER)
9964 op0 = adjust_address_nv (op0, mode, bitpos / BITS_PER_UNIT);
9965 else
9966 op0 = adjust_address (op0, mode, bitpos / BITS_PER_UNIT);
9968 if (op0 == orig_op0)
9969 op0 = copy_rtx (op0);
9971 set_mem_attributes (op0, treeop0, 0);
9972 if (REG_P (XEXP (op0, 0)))
9973 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
9975 MEM_VOLATILE_P (op0) |= volatilep;
9980 if (!op0)
9981 op0 = expand_expr (treeop0,
9982 NULL_RTX, VOIDmode, modifier);
9984 /* If the input and output modes are both the same, we are done. */
9985 if (mode == GET_MODE (op0))
9987 /* If neither mode is BLKmode, and both modes are the same size
9988 then we can use gen_lowpart. */
9989 else if (mode != BLKmode && GET_MODE (op0) != BLKmode
9990 && (GET_MODE_PRECISION (mode)
9991 == GET_MODE_PRECISION (GET_MODE (op0)))
9992 && !COMPLEX_MODE_P (GET_MODE (op0)))
9994 if (GET_CODE (op0) == SUBREG)
9995 op0 = force_reg (GET_MODE (op0), op0);
9996 temp = gen_lowpart_common (mode, op0);
9997 if (temp)
9998 op0 = temp;
9999 else
10001 if (!REG_P (op0) && !MEM_P (op0))
10002 op0 = force_reg (GET_MODE (op0), op0);
10003 op0 = gen_lowpart (mode, op0);
10006 /* If both types are integral, convert from one mode to the other. */
10007 else if (INTEGRAL_TYPE_P (type) && INTEGRAL_TYPE_P (TREE_TYPE (treeop0)))
10008 op0 = convert_modes (mode, GET_MODE (op0), op0,
10009 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
10010 /* As a last resort, spill op0 to memory, and reload it in a
10011 different mode. */
10012 else if (!MEM_P (op0))
10014 /* If the operand is not a MEM, force it into memory. Since we
10015 are going to be changing the mode of the MEM, don't call
10016 force_const_mem for constants because we don't allow pool
10017 constants to change mode. */
10018 tree inner_type = TREE_TYPE (treeop0);
10020 gcc_assert (!TREE_ADDRESSABLE (exp));
10022 if (target == 0 || GET_MODE (target) != TYPE_MODE (inner_type))
10023 target
10024 = assign_stack_temp_for_type
10025 (TYPE_MODE (inner_type),
10026 GET_MODE_SIZE (TYPE_MODE (inner_type)), 0, inner_type);
10028 emit_move_insn (target, op0);
10029 op0 = target;
10032 /* At this point, OP0 is in the correct mode. If the output type is
10033 such that the operand is known to be aligned, indicate that it is.
10034 Otherwise, we need only be concerned about alignment for non-BLKmode
10035 results. */
10036 if (MEM_P (op0))
10038 op0 = copy_rtx (op0);
10040 if (TYPE_ALIGN_OK (type))
10041 set_mem_align (op0, MAX (MEM_ALIGN (op0), TYPE_ALIGN (type)));
10042 else if (STRICT_ALIGNMENT
10043 && mode != BLKmode
10044 && MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode))
10046 tree inner_type = TREE_TYPE (treeop0);
10047 HOST_WIDE_INT temp_size
10048 = MAX (int_size_in_bytes (inner_type),
10049 (HOST_WIDE_INT) GET_MODE_SIZE (mode));
10050 rtx new_rtx
10051 = assign_stack_temp_for_type (mode, temp_size, 0, type);
10052 rtx new_with_op0_mode
10053 = adjust_address (new_rtx, GET_MODE (op0), 0);
10055 gcc_assert (!TREE_ADDRESSABLE (exp));
10057 if (GET_MODE (op0) == BLKmode)
10058 emit_block_move (new_with_op0_mode, op0,
10059 GEN_INT (GET_MODE_SIZE (mode)),
10060 (modifier == EXPAND_STACK_PARM
10061 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
10062 else
10063 emit_move_insn (new_with_op0_mode, op0);
10065 op0 = new_rtx;
10068 op0 = adjust_address (op0, mode, 0);
10071 return op0;
10073 case MODIFY_EXPR:
10075 tree lhs = treeop0;
10076 tree rhs = treeop1;
10077 gcc_assert (ignore);
10079 /* Check for |= or &= of a bitfield of size one into another bitfield
10080 of size 1. In this case, (unless we need the result of the
10081 assignment) we can do this more efficiently with a
10082 test followed by an assignment, if necessary.
10084 ??? At this point, we can't get a BIT_FIELD_REF here. But if
10085 things change so we do, this code should be enhanced to
10086 support it. */
10087 if (TREE_CODE (lhs) == COMPONENT_REF
10088 && (TREE_CODE (rhs) == BIT_IOR_EXPR
10089 || TREE_CODE (rhs) == BIT_AND_EXPR)
10090 && TREE_OPERAND (rhs, 0) == lhs
10091 && TREE_CODE (TREE_OPERAND (rhs, 1)) == COMPONENT_REF
10092 && integer_onep (DECL_SIZE (TREE_OPERAND (lhs, 1)))
10093 && integer_onep (DECL_SIZE (TREE_OPERAND (TREE_OPERAND (rhs, 1), 1))))
10095 rtx label = gen_label_rtx ();
10096 int value = TREE_CODE (rhs) == BIT_IOR_EXPR;
10097 do_jump (TREE_OPERAND (rhs, 1),
10098 value ? label : 0,
10099 value ? 0 : label, -1);
10100 expand_assignment (lhs, build_int_cst (TREE_TYPE (rhs), value),
10101 MOVE_NONTEMPORAL (exp));
10102 do_pending_stack_adjust ();
10103 emit_label (label);
10104 return const0_rtx;
10107 expand_assignment (lhs, rhs, MOVE_NONTEMPORAL (exp));
10108 return const0_rtx;
10111 case ADDR_EXPR:
10112 return expand_expr_addr_expr (exp, target, tmode, modifier);
10114 case REALPART_EXPR:
10115 op0 = expand_normal (treeop0);
10116 return read_complex_part (op0, false);
10118 case IMAGPART_EXPR:
10119 op0 = expand_normal (treeop0);
10120 return read_complex_part (op0, true);
10122 case RETURN_EXPR:
10123 case LABEL_EXPR:
10124 case GOTO_EXPR:
10125 case SWITCH_EXPR:
10126 case ASM_EXPR:
10127 /* Expanded in cfgexpand.c. */
10128 gcc_unreachable ();
10130 case TRY_CATCH_EXPR:
10131 case CATCH_EXPR:
10132 case EH_FILTER_EXPR:
10133 case TRY_FINALLY_EXPR:
10134 /* Lowered by tree-eh.c. */
10135 gcc_unreachable ();
10137 case WITH_CLEANUP_EXPR:
10138 case CLEANUP_POINT_EXPR:
10139 case TARGET_EXPR:
10140 case CASE_LABEL_EXPR:
10141 case VA_ARG_EXPR:
10142 case BIND_EXPR:
10143 case INIT_EXPR:
10144 case CONJ_EXPR:
10145 case COMPOUND_EXPR:
10146 case PREINCREMENT_EXPR:
10147 case PREDECREMENT_EXPR:
10148 case POSTINCREMENT_EXPR:
10149 case POSTDECREMENT_EXPR:
10150 case LOOP_EXPR:
10151 case EXIT_EXPR:
10152 /* Lowered by gimplify.c. */
10153 gcc_unreachable ();
10155 case FDESC_EXPR:
10156 /* Function descriptors are not valid except for as
10157 initialization constants, and should not be expanded. */
10158 gcc_unreachable ();
10160 case WITH_SIZE_EXPR:
10161 /* WITH_SIZE_EXPR expands to its first argument. The caller should
10162 have pulled out the size to use in whatever context it needed. */
10163 return expand_expr_real (treeop0, original_target, tmode,
10164 modifier, alt_rtl);
10166 case COMPOUND_LITERAL_EXPR:
10168 /* Initialize the anonymous variable declared in the compound
10169 literal, then return the variable. */
10170 tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
10172 /* Create RTL for this variable. */
10173 if (!DECL_RTL_SET_P (decl))
10175 if (DECL_HARD_REGISTER (decl))
10176 /* The user specified an assembler name for this variable.
10177 Set that up now. */
10178 rest_of_decl_compilation (decl, 0, 0);
10179 else
10180 expand_decl (decl);
10183 return expand_expr_real (decl, original_target, tmode,
10184 modifier, alt_rtl);
10187 default:
10188 return expand_expr_real_2 (&ops, target, tmode, modifier);
10192 /* Subroutine of above: reduce EXP to the precision of TYPE (in the
10193 signedness of TYPE), possibly returning the result in TARGET. */
10194 static rtx
10195 reduce_to_bit_field_precision (rtx exp, rtx target, tree type)
10197 HOST_WIDE_INT prec = TYPE_PRECISION (type);
10198 if (target && GET_MODE (target) != GET_MODE (exp))
10199 target = 0;
10200 /* For constant values, reduce using build_int_cst_type. */
10201 if (CONST_INT_P (exp))
10203 HOST_WIDE_INT value = INTVAL (exp);
10204 tree t = build_int_cst_type (type, value);
10205 return expand_expr (t, target, VOIDmode, EXPAND_NORMAL);
10207 else if (TYPE_UNSIGNED (type))
10209 rtx mask = immed_double_int_const (double_int_mask (prec),
10210 GET_MODE (exp));
10211 return expand_and (GET_MODE (exp), exp, mask, target);
10213 else
10215 int count = GET_MODE_PRECISION (GET_MODE (exp)) - prec;
10216 exp = expand_shift (LSHIFT_EXPR, GET_MODE (exp),
10217 exp, count, target, 0);
10218 return expand_shift (RSHIFT_EXPR, GET_MODE (exp),
10219 exp, count, target, 0);
10223 /* Subroutine of above: returns 1 if OFFSET corresponds to an offset that
10224 when applied to the address of EXP produces an address known to be
10225 aligned more than BIGGEST_ALIGNMENT. */
10227 static int
10228 is_aligning_offset (const_tree offset, const_tree exp)
10230 /* Strip off any conversions. */
10231 while (CONVERT_EXPR_P (offset))
10232 offset = TREE_OPERAND (offset, 0);
10234 /* We must now have a BIT_AND_EXPR with a constant that is one less than
10235 power of 2 and which is larger than BIGGEST_ALIGNMENT. */
10236 if (TREE_CODE (offset) != BIT_AND_EXPR
10237 || !host_integerp (TREE_OPERAND (offset, 1), 1)
10238 || compare_tree_int (TREE_OPERAND (offset, 1),
10239 BIGGEST_ALIGNMENT / BITS_PER_UNIT) <= 0
10240 || !exact_log2 (tree_low_cst (TREE_OPERAND (offset, 1), 1) + 1) < 0)
10241 return 0;
10243 /* Look at the first operand of BIT_AND_EXPR and strip any conversion.
10244 It must be NEGATE_EXPR. Then strip any more conversions. */
10245 offset = TREE_OPERAND (offset, 0);
10246 while (CONVERT_EXPR_P (offset))
10247 offset = TREE_OPERAND (offset, 0);
10249 if (TREE_CODE (offset) != NEGATE_EXPR)
10250 return 0;
10252 offset = TREE_OPERAND (offset, 0);
10253 while (CONVERT_EXPR_P (offset))
10254 offset = TREE_OPERAND (offset, 0);
10256 /* This must now be the address of EXP. */
10257 return TREE_CODE (offset) == ADDR_EXPR && TREE_OPERAND (offset, 0) == exp;
10260 /* Return the tree node if an ARG corresponds to a string constant or zero
10261 if it doesn't. If we return nonzero, set *PTR_OFFSET to the offset
10262 in bytes within the string that ARG is accessing. The type of the
10263 offset will be `sizetype'. */
10265 tree
10266 string_constant (tree arg, tree *ptr_offset)
10268 tree array, offset, lower_bound;
10269 STRIP_NOPS (arg);
10271 if (TREE_CODE (arg) == ADDR_EXPR)
10273 if (TREE_CODE (TREE_OPERAND (arg, 0)) == STRING_CST)
10275 *ptr_offset = size_zero_node;
10276 return TREE_OPERAND (arg, 0);
10278 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL)
10280 array = TREE_OPERAND (arg, 0);
10281 offset = size_zero_node;
10283 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == ARRAY_REF)
10285 array = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
10286 offset = TREE_OPERAND (TREE_OPERAND (arg, 0), 1);
10287 if (TREE_CODE (array) != STRING_CST
10288 && TREE_CODE (array) != VAR_DECL)
10289 return 0;
10291 /* Check if the array has a nonzero lower bound. */
10292 lower_bound = array_ref_low_bound (TREE_OPERAND (arg, 0));
10293 if (!integer_zerop (lower_bound))
10295 /* If the offset and base aren't both constants, return 0. */
10296 if (TREE_CODE (lower_bound) != INTEGER_CST)
10297 return 0;
10298 if (TREE_CODE (offset) != INTEGER_CST)
10299 return 0;
10300 /* Adjust offset by the lower bound. */
10301 offset = size_diffop (fold_convert (sizetype, offset),
10302 fold_convert (sizetype, lower_bound));
10305 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == MEM_REF)
10307 array = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
10308 offset = TREE_OPERAND (TREE_OPERAND (arg, 0), 1);
10309 if (TREE_CODE (array) != ADDR_EXPR)
10310 return 0;
10311 array = TREE_OPERAND (array, 0);
10312 if (TREE_CODE (array) != STRING_CST
10313 && TREE_CODE (array) != VAR_DECL)
10314 return 0;
10316 else
10317 return 0;
10319 else if (TREE_CODE (arg) == PLUS_EXPR || TREE_CODE (arg) == POINTER_PLUS_EXPR)
10321 tree arg0 = TREE_OPERAND (arg, 0);
10322 tree arg1 = TREE_OPERAND (arg, 1);
10324 STRIP_NOPS (arg0);
10325 STRIP_NOPS (arg1);
10327 if (TREE_CODE (arg0) == ADDR_EXPR
10328 && (TREE_CODE (TREE_OPERAND (arg0, 0)) == STRING_CST
10329 || TREE_CODE (TREE_OPERAND (arg0, 0)) == VAR_DECL))
10331 array = TREE_OPERAND (arg0, 0);
10332 offset = arg1;
10334 else if (TREE_CODE (arg1) == ADDR_EXPR
10335 && (TREE_CODE (TREE_OPERAND (arg1, 0)) == STRING_CST
10336 || TREE_CODE (TREE_OPERAND (arg1, 0)) == VAR_DECL))
10338 array = TREE_OPERAND (arg1, 0);
10339 offset = arg0;
10341 else
10342 return 0;
10344 else
10345 return 0;
10347 if (TREE_CODE (array) == STRING_CST)
10349 *ptr_offset = fold_convert (sizetype, offset);
10350 return array;
10352 else if (TREE_CODE (array) == VAR_DECL
10353 || TREE_CODE (array) == CONST_DECL)
10355 int length;
10357 /* Variables initialized to string literals can be handled too. */
10358 if (!const_value_known_p (array)
10359 || !DECL_INITIAL (array)
10360 || TREE_CODE (DECL_INITIAL (array)) != STRING_CST)
10361 return 0;
10363 /* Avoid const char foo[4] = "abcde"; */
10364 if (DECL_SIZE_UNIT (array) == NULL_TREE
10365 || TREE_CODE (DECL_SIZE_UNIT (array)) != INTEGER_CST
10366 || (length = TREE_STRING_LENGTH (DECL_INITIAL (array))) <= 0
10367 || compare_tree_int (DECL_SIZE_UNIT (array), length) < 0)
10368 return 0;
10370 /* If variable is bigger than the string literal, OFFSET must be constant
10371 and inside of the bounds of the string literal. */
10372 offset = fold_convert (sizetype, offset);
10373 if (compare_tree_int (DECL_SIZE_UNIT (array), length) > 0
10374 && (! host_integerp (offset, 1)
10375 || compare_tree_int (offset, length) >= 0))
10376 return 0;
10378 *ptr_offset = offset;
10379 return DECL_INITIAL (array);
10382 return 0;
10385 /* Generate code to calculate OPS, and exploded expression
10386 using a store-flag instruction and return an rtx for the result.
10387 OPS reflects a comparison.
10389 If TARGET is nonzero, store the result there if convenient.
10391 Return zero if there is no suitable set-flag instruction
10392 available on this machine.
10394 Once expand_expr has been called on the arguments of the comparison,
10395 we are committed to doing the store flag, since it is not safe to
10396 re-evaluate the expression. We emit the store-flag insn by calling
10397 emit_store_flag, but only expand the arguments if we have a reason
10398 to believe that emit_store_flag will be successful. If we think that
10399 it will, but it isn't, we have to simulate the store-flag with a
10400 set/jump/set sequence. */
10402 static rtx
10403 do_store_flag (sepops ops, rtx target, enum machine_mode mode)
10405 enum rtx_code code;
10406 tree arg0, arg1, type;
10407 tree tem;
10408 enum machine_mode operand_mode;
10409 int unsignedp;
10410 rtx op0, op1;
10411 rtx subtarget = target;
10412 location_t loc = ops->location;
10414 arg0 = ops->op0;
10415 arg1 = ops->op1;
10417 /* Don't crash if the comparison was erroneous. */
10418 if (arg0 == error_mark_node || arg1 == error_mark_node)
10419 return const0_rtx;
10421 type = TREE_TYPE (arg0);
10422 operand_mode = TYPE_MODE (type);
10423 unsignedp = TYPE_UNSIGNED (type);
10425 /* We won't bother with BLKmode store-flag operations because it would mean
10426 passing a lot of information to emit_store_flag. */
10427 if (operand_mode == BLKmode)
10428 return 0;
10430 /* We won't bother with store-flag operations involving function pointers
10431 when function pointers must be canonicalized before comparisons. */
10432 #ifdef HAVE_canonicalize_funcptr_for_compare
10433 if (HAVE_canonicalize_funcptr_for_compare
10434 && ((TREE_CODE (TREE_TYPE (arg0)) == POINTER_TYPE
10435 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg0)))
10436 == FUNCTION_TYPE))
10437 || (TREE_CODE (TREE_TYPE (arg1)) == POINTER_TYPE
10438 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg1)))
10439 == FUNCTION_TYPE))))
10440 return 0;
10441 #endif
10443 STRIP_NOPS (arg0);
10444 STRIP_NOPS (arg1);
10446 /* For vector typed comparisons emit code to generate the desired
10447 all-ones or all-zeros mask. Conveniently use the VEC_COND_EXPR
10448 expander for this. */
10449 if (TREE_CODE (ops->type) == VECTOR_TYPE)
10451 tree ifexp = build2 (ops->code, ops->type, arg0, arg1);
10452 tree if_true = constant_boolean_node (true, ops->type);
10453 tree if_false = constant_boolean_node (false, ops->type);
10454 return expand_vec_cond_expr (ops->type, ifexp, if_true, if_false, target);
10457 /* For vector typed comparisons emit code to generate the desired
10458 all-ones or all-zeros mask. Conveniently use the VEC_COND_EXPR
10459 expander for this. */
10460 if (TREE_CODE (ops->type) == VECTOR_TYPE)
10462 tree ifexp = build2 (ops->code, ops->type, arg0, arg1);
10463 tree if_true = constant_boolean_node (true, ops->type);
10464 tree if_false = constant_boolean_node (false, ops->type);
10465 return expand_vec_cond_expr (ops->type, ifexp, if_true, if_false, target);
10468 /* Get the rtx comparison code to use. We know that EXP is a comparison
10469 operation of some type. Some comparisons against 1 and -1 can be
10470 converted to comparisons with zero. Do so here so that the tests
10471 below will be aware that we have a comparison with zero. These
10472 tests will not catch constants in the first operand, but constants
10473 are rarely passed as the first operand. */
10475 switch (ops->code)
10477 case EQ_EXPR:
10478 code = EQ;
10479 break;
10480 case NE_EXPR:
10481 code = NE;
10482 break;
10483 case LT_EXPR:
10484 if (integer_onep (arg1))
10485 arg1 = integer_zero_node, code = unsignedp ? LEU : LE;
10486 else
10487 code = unsignedp ? LTU : LT;
10488 break;
10489 case LE_EXPR:
10490 if (! unsignedp && integer_all_onesp (arg1))
10491 arg1 = integer_zero_node, code = LT;
10492 else
10493 code = unsignedp ? LEU : LE;
10494 break;
10495 case GT_EXPR:
10496 if (! unsignedp && integer_all_onesp (arg1))
10497 arg1 = integer_zero_node, code = GE;
10498 else
10499 code = unsignedp ? GTU : GT;
10500 break;
10501 case GE_EXPR:
10502 if (integer_onep (arg1))
10503 arg1 = integer_zero_node, code = unsignedp ? GTU : GT;
10504 else
10505 code = unsignedp ? GEU : GE;
10506 break;
10508 case UNORDERED_EXPR:
10509 code = UNORDERED;
10510 break;
10511 case ORDERED_EXPR:
10512 code = ORDERED;
10513 break;
10514 case UNLT_EXPR:
10515 code = UNLT;
10516 break;
10517 case UNLE_EXPR:
10518 code = UNLE;
10519 break;
10520 case UNGT_EXPR:
10521 code = UNGT;
10522 break;
10523 case UNGE_EXPR:
10524 code = UNGE;
10525 break;
10526 case UNEQ_EXPR:
10527 code = UNEQ;
10528 break;
10529 case LTGT_EXPR:
10530 code = LTGT;
10531 break;
10533 default:
10534 gcc_unreachable ();
10537 /* Put a constant second. */
10538 if (TREE_CODE (arg0) == REAL_CST || TREE_CODE (arg0) == INTEGER_CST
10539 || TREE_CODE (arg0) == FIXED_CST)
10541 tem = arg0; arg0 = arg1; arg1 = tem;
10542 code = swap_condition (code);
10545 /* If this is an equality or inequality test of a single bit, we can
10546 do this by shifting the bit being tested to the low-order bit and
10547 masking the result with the constant 1. If the condition was EQ,
10548 we xor it with 1. This does not require an scc insn and is faster
10549 than an scc insn even if we have it.
10551 The code to make this transformation was moved into fold_single_bit_test,
10552 so we just call into the folder and expand its result. */
10554 if ((code == NE || code == EQ)
10555 && integer_zerop (arg1)
10556 && (TYPE_PRECISION (ops->type) != 1 || TYPE_UNSIGNED (ops->type)))
10558 gimple srcstmt = get_def_for_expr (arg0, BIT_AND_EXPR);
10559 if (srcstmt
10560 && integer_pow2p (gimple_assign_rhs2 (srcstmt)))
10562 enum tree_code tcode = code == NE ? NE_EXPR : EQ_EXPR;
10563 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
10564 tree temp = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg1),
10565 gimple_assign_rhs1 (srcstmt),
10566 gimple_assign_rhs2 (srcstmt));
10567 temp = fold_single_bit_test (loc, tcode, temp, arg1, type);
10568 if (temp)
10569 return expand_expr (temp, target, VOIDmode, EXPAND_NORMAL);
10573 if (! get_subtarget (target)
10574 || GET_MODE (subtarget) != operand_mode)
10575 subtarget = 0;
10577 expand_operands (arg0, arg1, subtarget, &op0, &op1, EXPAND_NORMAL);
10579 if (target == 0)
10580 target = gen_reg_rtx (mode);
10582 /* Try a cstore if possible. */
10583 return emit_store_flag_force (target, code, op0, op1,
10584 operand_mode, unsignedp,
10585 (TYPE_PRECISION (ops->type) == 1
10586 && !TYPE_UNSIGNED (ops->type)) ? -1 : 1);
10590 /* Stubs in case we haven't got a casesi insn. */
10591 #ifndef HAVE_casesi
10592 # define HAVE_casesi 0
10593 # define gen_casesi(a, b, c, d, e) (0)
10594 # define CODE_FOR_casesi CODE_FOR_nothing
10595 #endif
10597 /* Attempt to generate a casesi instruction. Returns 1 if successful,
10598 0 otherwise (i.e. if there is no casesi instruction). */
10600 try_casesi (tree index_type, tree index_expr, tree minval, tree range,
10601 rtx table_label ATTRIBUTE_UNUSED, rtx default_label,
10602 rtx fallback_label ATTRIBUTE_UNUSED)
10604 struct expand_operand ops[5];
10605 enum machine_mode index_mode = SImode;
10606 int index_bits = GET_MODE_BITSIZE (index_mode);
10607 rtx op1, op2, index;
10609 if (! HAVE_casesi)
10610 return 0;
10612 /* Convert the index to SImode. */
10613 if (GET_MODE_BITSIZE (TYPE_MODE (index_type)) > GET_MODE_BITSIZE (index_mode))
10615 enum machine_mode omode = TYPE_MODE (index_type);
10616 rtx rangertx = expand_normal (range);
10618 /* We must handle the endpoints in the original mode. */
10619 index_expr = build2 (MINUS_EXPR, index_type,
10620 index_expr, minval);
10621 minval = integer_zero_node;
10622 index = expand_normal (index_expr);
10623 if (default_label)
10624 emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
10625 omode, 1, default_label);
10626 /* Now we can safely truncate. */
10627 index = convert_to_mode (index_mode, index, 0);
10629 else
10631 if (TYPE_MODE (index_type) != index_mode)
10633 index_type = lang_hooks.types.type_for_size (index_bits, 0);
10634 index_expr = fold_convert (index_type, index_expr);
10637 index = expand_normal (index_expr);
10640 do_pending_stack_adjust ();
10642 op1 = expand_normal (minval);
10643 op2 = expand_normal (range);
10645 create_input_operand (&ops[0], index, index_mode);
10646 create_convert_operand_from_type (&ops[1], op1, TREE_TYPE (minval));
10647 create_convert_operand_from_type (&ops[2], op2, TREE_TYPE (range));
10648 create_fixed_operand (&ops[3], table_label);
10649 create_fixed_operand (&ops[4], (default_label
10650 ? default_label
10651 : fallback_label));
10652 expand_jump_insn (CODE_FOR_casesi, 5, ops);
10653 return 1;
10656 /* Attempt to generate a tablejump instruction; same concept. */
10657 #ifndef HAVE_tablejump
10658 #define HAVE_tablejump 0
10659 #define gen_tablejump(x, y) (0)
10660 #endif
10662 /* Subroutine of the next function.
10664 INDEX is the value being switched on, with the lowest value
10665 in the table already subtracted.
10666 MODE is its expected mode (needed if INDEX is constant).
10667 RANGE is the length of the jump table.
10668 TABLE_LABEL is a CODE_LABEL rtx for the table itself.
10670 DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
10671 index value is out of range. */
10673 static void
10674 do_tablejump (rtx index, enum machine_mode mode, rtx range, rtx table_label,
10675 rtx default_label)
10677 rtx temp, vector;
10679 if (INTVAL (range) > cfun->cfg->max_jumptable_ents)
10680 cfun->cfg->max_jumptable_ents = INTVAL (range);
10682 /* Do an unsigned comparison (in the proper mode) between the index
10683 expression and the value which represents the length of the range.
10684 Since we just finished subtracting the lower bound of the range
10685 from the index expression, this comparison allows us to simultaneously
10686 check that the original index expression value is both greater than
10687 or equal to the minimum value of the range and less than or equal to
10688 the maximum value of the range. */
10690 if (default_label)
10691 emit_cmp_and_jump_insns (index, range, GTU, NULL_RTX, mode, 1,
10692 default_label);
10694 /* If index is in range, it must fit in Pmode.
10695 Convert to Pmode so we can index with it. */
10696 if (mode != Pmode)
10697 index = convert_to_mode (Pmode, index, 1);
10699 /* Don't let a MEM slip through, because then INDEX that comes
10700 out of PIC_CASE_VECTOR_ADDRESS won't be a valid address,
10701 and break_out_memory_refs will go to work on it and mess it up. */
10702 #ifdef PIC_CASE_VECTOR_ADDRESS
10703 if (flag_pic && !REG_P (index))
10704 index = copy_to_mode_reg (Pmode, index);
10705 #endif
10707 /* ??? The only correct use of CASE_VECTOR_MODE is the one inside the
10708 GET_MODE_SIZE, because this indicates how large insns are. The other
10709 uses should all be Pmode, because they are addresses. This code
10710 could fail if addresses and insns are not the same size. */
10711 index = gen_rtx_PLUS (Pmode,
10712 gen_rtx_MULT (Pmode, index,
10713 GEN_INT (GET_MODE_SIZE (CASE_VECTOR_MODE))),
10714 gen_rtx_LABEL_REF (Pmode, table_label));
10715 #ifdef PIC_CASE_VECTOR_ADDRESS
10716 if (flag_pic)
10717 index = PIC_CASE_VECTOR_ADDRESS (index);
10718 else
10719 #endif
10720 index = memory_address (CASE_VECTOR_MODE, index);
10721 temp = gen_reg_rtx (CASE_VECTOR_MODE);
10722 vector = gen_const_mem (CASE_VECTOR_MODE, index);
10723 convert_move (temp, vector, 0);
10725 emit_jump_insn (gen_tablejump (temp, table_label));
10727 /* If we are generating PIC code or if the table is PC-relative, the
10728 table and JUMP_INSN must be adjacent, so don't output a BARRIER. */
10729 if (! CASE_VECTOR_PC_RELATIVE && ! flag_pic)
10730 emit_barrier ();
10734 try_tablejump (tree index_type, tree index_expr, tree minval, tree range,
10735 rtx table_label, rtx default_label)
10737 rtx index;
10739 if (! HAVE_tablejump)
10740 return 0;
10742 index_expr = fold_build2 (MINUS_EXPR, index_type,
10743 fold_convert (index_type, index_expr),
10744 fold_convert (index_type, minval));
10745 index = expand_normal (index_expr);
10746 do_pending_stack_adjust ();
10748 do_tablejump (index, TYPE_MODE (index_type),
10749 convert_modes (TYPE_MODE (index_type),
10750 TYPE_MODE (TREE_TYPE (range)),
10751 expand_normal (range),
10752 TYPE_UNSIGNED (TREE_TYPE (range))),
10753 table_label, default_label);
10754 return 1;
10757 /* Return a CONST_VECTOR rtx for a VECTOR_CST tree. */
10758 static rtx
10759 const_vector_from_tree (tree exp)
10761 rtvec v;
10762 int units, i;
10763 tree link, elt;
10764 enum machine_mode inner, mode;
10766 mode = TYPE_MODE (TREE_TYPE (exp));
10768 if (initializer_zerop (exp))
10769 return CONST0_RTX (mode);
10771 units = GET_MODE_NUNITS (mode);
10772 inner = GET_MODE_INNER (mode);
10774 v = rtvec_alloc (units);
10776 link = TREE_VECTOR_CST_ELTS (exp);
10777 for (i = 0; link; link = TREE_CHAIN (link), ++i)
10779 elt = TREE_VALUE (link);
10781 if (TREE_CODE (elt) == REAL_CST)
10782 RTVEC_ELT (v, i) = CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (elt),
10783 inner);
10784 else if (TREE_CODE (elt) == FIXED_CST)
10785 RTVEC_ELT (v, i) = CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (elt),
10786 inner);
10787 else
10788 RTVEC_ELT (v, i) = immed_double_int_const (tree_to_double_int (elt),
10789 inner);
10792 /* Initialize remaining elements to 0. */
10793 for (; i < units; ++i)
10794 RTVEC_ELT (v, i) = CONST0_RTX (inner);
10796 return gen_rtx_CONST_VECTOR (mode, v);
10799 /* Build a decl for a personality function given a language prefix. */
10801 tree
10802 build_personality_function (const char *lang)
10804 const char *unwind_and_version;
10805 tree decl, type;
10806 char *name;
10808 switch (targetm_common.except_unwind_info (&global_options))
10810 case UI_NONE:
10811 return NULL;
10812 case UI_SJLJ:
10813 unwind_and_version = "_sj0";
10814 break;
10815 case UI_DWARF2:
10816 case UI_TARGET:
10817 unwind_and_version = "_v0";
10818 break;
10819 default:
10820 gcc_unreachable ();
10823 name = ACONCAT (("__", lang, "_personality", unwind_and_version, NULL));
10825 type = build_function_type_list (integer_type_node, integer_type_node,
10826 long_long_unsigned_type_node,
10827 ptr_type_node, ptr_type_node, NULL_TREE);
10828 decl = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
10829 get_identifier (name), type);
10830 DECL_ARTIFICIAL (decl) = 1;
10831 DECL_EXTERNAL (decl) = 1;
10832 TREE_PUBLIC (decl) = 1;
10834 /* Zap the nonsensical SYMBOL_REF_DECL for this. What we're left with
10835 are the flags assigned by targetm.encode_section_info. */
10836 SET_SYMBOL_REF_DECL (XEXP (DECL_RTL (decl), 0), NULL);
10838 return decl;
10841 /* Extracts the personality function of DECL and returns the corresponding
10842 libfunc. */
10845 get_personality_function (tree decl)
10847 tree personality = DECL_FUNCTION_PERSONALITY (decl);
10848 enum eh_personality_kind pk;
10850 pk = function_needs_eh_personality (DECL_STRUCT_FUNCTION (decl));
10851 if (pk == eh_personality_none)
10852 return NULL;
10854 if (!personality
10855 && pk == eh_personality_any)
10856 personality = lang_hooks.eh_personality ();
10858 if (pk == eh_personality_lang)
10859 gcc_assert (personality != NULL_TREE);
10861 return XEXP (DECL_RTL (personality), 0);
10864 #include "gt-expr.h"