* var-tracking.c (insn_stack_adjust_offset_pre_post): If insn has a
[official-gcc.git] / gcc / expr.c
blob11902b832b2823fbdc243dd5a19119f1456292e2
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
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 "real.h"
28 #include "rtl.h"
29 #include "tree.h"
30 #include "flags.h"
31 #include "regs.h"
32 #include "hard-reg-set.h"
33 #include "except.h"
34 #include "function.h"
35 #include "insn-config.h"
36 #include "insn-attr.h"
37 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
38 #include "expr.h"
39 #include "optabs.h"
40 #include "libfuncs.h"
41 #include "recog.h"
42 #include "reload.h"
43 #include "output.h"
44 #include "typeclass.h"
45 #include "toplev.h"
46 #include "ggc.h"
47 #include "langhooks.h"
48 #include "intl.h"
49 #include "tm_p.h"
50 #include "tree-iterator.h"
51 #include "tree-pass.h"
52 #include "tree-flow.h"
53 #include "target.h"
54 #include "timevar.h"
55 #include "df.h"
56 #include "diagnostic.h"
58 /* Decide whether a function's arguments should be processed
59 from first to last or from last to first.
61 They should if the stack and args grow in opposite directions, but
62 only if we have push insns. */
64 #ifdef PUSH_ROUNDING
66 #ifndef PUSH_ARGS_REVERSED
67 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
68 #define PUSH_ARGS_REVERSED /* If it's last to first. */
69 #endif
70 #endif
72 #endif
74 #ifndef STACK_PUSH_CODE
75 #ifdef STACK_GROWS_DOWNWARD
76 #define STACK_PUSH_CODE PRE_DEC
77 #else
78 #define STACK_PUSH_CODE PRE_INC
79 #endif
80 #endif
83 /* If this is nonzero, we do not bother generating VOLATILE
84 around volatile memory references, and we are willing to
85 output indirect addresses. If cse is to follow, we reject
86 indirect addresses so a useful potential cse is generated;
87 if it is used only once, instruction combination will produce
88 the same indirect address eventually. */
89 int cse_not_expected;
91 /* This structure is used by move_by_pieces to describe the move to
92 be performed. */
93 struct move_by_pieces
95 rtx to;
96 rtx to_addr;
97 int autinc_to;
98 int explicit_inc_to;
99 rtx from;
100 rtx from_addr;
101 int autinc_from;
102 int explicit_inc_from;
103 unsigned HOST_WIDE_INT len;
104 HOST_WIDE_INT offset;
105 int reverse;
108 /* This structure is used by store_by_pieces to describe the clear to
109 be performed. */
111 struct store_by_pieces
113 rtx to;
114 rtx to_addr;
115 int autinc_to;
116 int explicit_inc_to;
117 unsigned HOST_WIDE_INT len;
118 HOST_WIDE_INT offset;
119 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode);
120 void *constfundata;
121 int reverse;
124 static unsigned HOST_WIDE_INT move_by_pieces_ninsns (unsigned HOST_WIDE_INT,
125 unsigned int,
126 unsigned int);
127 static void move_by_pieces_1 (rtx (*) (rtx, ...), enum machine_mode,
128 struct move_by_pieces *);
129 static bool block_move_libcall_safe_for_call_parm (void);
130 static bool emit_block_move_via_movmem (rtx, rtx, rtx, unsigned, unsigned, HOST_WIDE_INT);
131 static tree emit_block_move_libcall_fn (int);
132 static void emit_block_move_via_loop (rtx, rtx, rtx, unsigned);
133 static rtx clear_by_pieces_1 (void *, HOST_WIDE_INT, enum machine_mode);
134 static void clear_by_pieces (rtx, unsigned HOST_WIDE_INT, unsigned int);
135 static void store_by_pieces_1 (struct store_by_pieces *, unsigned int);
136 static void store_by_pieces_2 (rtx (*) (rtx, ...), enum machine_mode,
137 struct store_by_pieces *);
138 static tree clear_storage_libcall_fn (int);
139 static rtx compress_float_constant (rtx, rtx);
140 static rtx get_subtarget (rtx);
141 static void store_constructor_field (rtx, unsigned HOST_WIDE_INT,
142 HOST_WIDE_INT, enum machine_mode,
143 tree, tree, int, alias_set_type);
144 static void store_constructor (tree, rtx, int, HOST_WIDE_INT);
145 static rtx store_field (rtx, HOST_WIDE_INT, HOST_WIDE_INT, enum machine_mode,
146 tree, tree, alias_set_type, bool);
148 static unsigned HOST_WIDE_INT highest_pow2_factor_for_target (const_tree, const_tree);
150 static int is_aligning_offset (const_tree, const_tree);
151 static void expand_operands (tree, tree, rtx, rtx*, rtx*,
152 enum expand_modifier);
153 static rtx reduce_to_bit_field_precision (rtx, rtx, tree);
154 static rtx do_store_flag (tree, rtx, enum machine_mode, int);
155 #ifdef PUSH_ROUNDING
156 static void emit_single_push_insn (enum machine_mode, rtx, tree);
157 #endif
158 static void do_tablejump (rtx, enum machine_mode, rtx, rtx, rtx);
159 static rtx const_vector_from_tree (tree);
160 static void write_complex_part (rtx, rtx, bool);
162 /* Record for each mode whether we can move a register directly to or
163 from an object of that mode in memory. If we can't, we won't try
164 to use that mode directly when accessing a field of that mode. */
166 static char direct_load[NUM_MACHINE_MODES];
167 static char direct_store[NUM_MACHINE_MODES];
169 /* Record for each mode whether we can float-extend from memory. */
171 static bool float_extend_from_mem[NUM_MACHINE_MODES][NUM_MACHINE_MODES];
173 /* This macro is used to determine whether move_by_pieces should be called
174 to perform a structure copy. */
175 #ifndef MOVE_BY_PIECES_P
176 #define MOVE_BY_PIECES_P(SIZE, ALIGN) \
177 (move_by_pieces_ninsns (SIZE, ALIGN, MOVE_MAX_PIECES + 1) \
178 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
179 #endif
181 /* This macro is used to determine whether clear_by_pieces should be
182 called to clear storage. */
183 #ifndef CLEAR_BY_PIECES_P
184 #define CLEAR_BY_PIECES_P(SIZE, ALIGN) \
185 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
186 < (unsigned int) CLEAR_RATIO (optimize_insn_for_speed_p ()))
187 #endif
189 /* This macro is used to determine whether store_by_pieces should be
190 called to "memset" storage with byte values other than zero. */
191 #ifndef SET_BY_PIECES_P
192 #define SET_BY_PIECES_P(SIZE, ALIGN) \
193 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
194 < (unsigned int) SET_RATIO (optimize_insn_for_speed_p ()))
195 #endif
197 /* This macro is used to determine whether store_by_pieces should be
198 called to "memcpy" storage when the source is a constant string. */
199 #ifndef STORE_BY_PIECES_P
200 #define STORE_BY_PIECES_P(SIZE, ALIGN) \
201 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
202 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
203 #endif
205 /* This array records the insn_code of insns to perform block moves. */
206 enum insn_code movmem_optab[NUM_MACHINE_MODES];
208 /* This array records the insn_code of insns to perform block sets. */
209 enum insn_code setmem_optab[NUM_MACHINE_MODES];
211 /* These arrays record the insn_code of three different kinds of insns
212 to perform block compares. */
213 enum insn_code cmpstr_optab[NUM_MACHINE_MODES];
214 enum insn_code cmpstrn_optab[NUM_MACHINE_MODES];
215 enum insn_code cmpmem_optab[NUM_MACHINE_MODES];
217 /* Synchronization primitives. */
218 enum insn_code sync_add_optab[NUM_MACHINE_MODES];
219 enum insn_code sync_sub_optab[NUM_MACHINE_MODES];
220 enum insn_code sync_ior_optab[NUM_MACHINE_MODES];
221 enum insn_code sync_and_optab[NUM_MACHINE_MODES];
222 enum insn_code sync_xor_optab[NUM_MACHINE_MODES];
223 enum insn_code sync_nand_optab[NUM_MACHINE_MODES];
224 enum insn_code sync_old_add_optab[NUM_MACHINE_MODES];
225 enum insn_code sync_old_sub_optab[NUM_MACHINE_MODES];
226 enum insn_code sync_old_ior_optab[NUM_MACHINE_MODES];
227 enum insn_code sync_old_and_optab[NUM_MACHINE_MODES];
228 enum insn_code sync_old_xor_optab[NUM_MACHINE_MODES];
229 enum insn_code sync_old_nand_optab[NUM_MACHINE_MODES];
230 enum insn_code sync_new_add_optab[NUM_MACHINE_MODES];
231 enum insn_code sync_new_sub_optab[NUM_MACHINE_MODES];
232 enum insn_code sync_new_ior_optab[NUM_MACHINE_MODES];
233 enum insn_code sync_new_and_optab[NUM_MACHINE_MODES];
234 enum insn_code sync_new_xor_optab[NUM_MACHINE_MODES];
235 enum insn_code sync_new_nand_optab[NUM_MACHINE_MODES];
236 enum insn_code sync_compare_and_swap[NUM_MACHINE_MODES];
237 enum insn_code sync_compare_and_swap_cc[NUM_MACHINE_MODES];
238 enum insn_code sync_lock_test_and_set[NUM_MACHINE_MODES];
239 enum insn_code sync_lock_release[NUM_MACHINE_MODES];
241 /* SLOW_UNALIGNED_ACCESS is nonzero if unaligned accesses are very slow. */
243 #ifndef SLOW_UNALIGNED_ACCESS
244 #define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT
245 #endif
247 /* This is run to set up which modes can be used
248 directly in memory and to initialize the block move optab. It is run
249 at the beginning of compilation and when the target is reinitialized. */
251 void
252 init_expr_target (void)
254 rtx insn, pat;
255 enum machine_mode mode;
256 int num_clobbers;
257 rtx mem, mem1;
258 rtx reg;
260 /* Try indexing by frame ptr and try by stack ptr.
261 It is known that on the Convex the stack ptr isn't a valid index.
262 With luck, one or the other is valid on any machine. */
263 mem = gen_rtx_MEM (VOIDmode, stack_pointer_rtx);
264 mem1 = gen_rtx_MEM (VOIDmode, frame_pointer_rtx);
266 /* A scratch register we can modify in-place below to avoid
267 useless RTL allocations. */
268 reg = gen_rtx_REG (VOIDmode, -1);
270 insn = rtx_alloc (INSN);
271 pat = gen_rtx_SET (0, NULL_RTX, NULL_RTX);
272 PATTERN (insn) = pat;
274 for (mode = VOIDmode; (int) mode < NUM_MACHINE_MODES;
275 mode = (enum machine_mode) ((int) mode + 1))
277 int regno;
279 direct_load[(int) mode] = direct_store[(int) mode] = 0;
280 PUT_MODE (mem, mode);
281 PUT_MODE (mem1, mode);
282 PUT_MODE (reg, mode);
284 /* See if there is some register that can be used in this mode and
285 directly loaded or stored from memory. */
287 if (mode != VOIDmode && mode != BLKmode)
288 for (regno = 0; regno < FIRST_PSEUDO_REGISTER
289 && (direct_load[(int) mode] == 0 || direct_store[(int) mode] == 0);
290 regno++)
292 if (! HARD_REGNO_MODE_OK (regno, mode))
293 continue;
295 SET_REGNO (reg, regno);
297 SET_SRC (pat) = mem;
298 SET_DEST (pat) = reg;
299 if (recog (pat, insn, &num_clobbers) >= 0)
300 direct_load[(int) mode] = 1;
302 SET_SRC (pat) = mem1;
303 SET_DEST (pat) = reg;
304 if (recog (pat, insn, &num_clobbers) >= 0)
305 direct_load[(int) mode] = 1;
307 SET_SRC (pat) = reg;
308 SET_DEST (pat) = mem;
309 if (recog (pat, insn, &num_clobbers) >= 0)
310 direct_store[(int) mode] = 1;
312 SET_SRC (pat) = reg;
313 SET_DEST (pat) = mem1;
314 if (recog (pat, insn, &num_clobbers) >= 0)
315 direct_store[(int) mode] = 1;
319 mem = gen_rtx_MEM (VOIDmode, gen_rtx_raw_REG (Pmode, 10000));
321 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
322 mode = GET_MODE_WIDER_MODE (mode))
324 enum machine_mode srcmode;
325 for (srcmode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); srcmode != mode;
326 srcmode = GET_MODE_WIDER_MODE (srcmode))
328 enum insn_code ic;
330 ic = can_extend_p (mode, srcmode, 0);
331 if (ic == CODE_FOR_nothing)
332 continue;
334 PUT_MODE (mem, srcmode);
336 if ((*insn_data[ic].operand[1].predicate) (mem, srcmode))
337 float_extend_from_mem[mode][srcmode] = true;
342 /* This is run at the start of compiling a function. */
344 void
345 init_expr (void)
347 memset (&crtl->expr, 0, sizeof (crtl->expr));
350 /* Copy data from FROM to TO, where the machine modes are not the same.
351 Both modes may be integer, or both may be floating, or both may be
352 fixed-point.
353 UNSIGNEDP should be nonzero if FROM is an unsigned type.
354 This causes zero-extension instead of sign-extension. */
356 void
357 convert_move (rtx to, rtx from, int unsignedp)
359 enum machine_mode to_mode = GET_MODE (to);
360 enum machine_mode from_mode = GET_MODE (from);
361 int to_real = SCALAR_FLOAT_MODE_P (to_mode);
362 int from_real = SCALAR_FLOAT_MODE_P (from_mode);
363 enum insn_code code;
364 rtx libcall;
366 /* rtx code for making an equivalent value. */
367 enum rtx_code equiv_code = (unsignedp < 0 ? UNKNOWN
368 : (unsignedp ? ZERO_EXTEND : SIGN_EXTEND));
371 gcc_assert (to_real == from_real);
372 gcc_assert (to_mode != BLKmode);
373 gcc_assert (from_mode != BLKmode);
375 /* If the source and destination are already the same, then there's
376 nothing to do. */
377 if (to == from)
378 return;
380 /* If FROM is a SUBREG that indicates that we have already done at least
381 the required extension, strip it. We don't handle such SUBREGs as
382 TO here. */
384 if (GET_CODE (from) == SUBREG && SUBREG_PROMOTED_VAR_P (from)
385 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (from)))
386 >= GET_MODE_SIZE (to_mode))
387 && SUBREG_PROMOTED_UNSIGNED_P (from) == unsignedp)
388 from = gen_lowpart (to_mode, from), from_mode = to_mode;
390 gcc_assert (GET_CODE (to) != SUBREG || !SUBREG_PROMOTED_VAR_P (to));
392 if (to_mode == from_mode
393 || (from_mode == VOIDmode && CONSTANT_P (from)))
395 emit_move_insn (to, from);
396 return;
399 if (VECTOR_MODE_P (to_mode) || VECTOR_MODE_P (from_mode))
401 gcc_assert (GET_MODE_BITSIZE (from_mode) == GET_MODE_BITSIZE (to_mode));
403 if (VECTOR_MODE_P (to_mode))
404 from = simplify_gen_subreg (to_mode, from, GET_MODE (from), 0);
405 else
406 to = simplify_gen_subreg (from_mode, to, GET_MODE (to), 0);
408 emit_move_insn (to, from);
409 return;
412 if (GET_CODE (to) == CONCAT && GET_CODE (from) == CONCAT)
414 convert_move (XEXP (to, 0), XEXP (from, 0), unsignedp);
415 convert_move (XEXP (to, 1), XEXP (from, 1), unsignedp);
416 return;
419 if (to_real)
421 rtx value, insns;
422 convert_optab tab;
424 gcc_assert ((GET_MODE_PRECISION (from_mode)
425 != GET_MODE_PRECISION (to_mode))
426 || (DECIMAL_FLOAT_MODE_P (from_mode)
427 != DECIMAL_FLOAT_MODE_P (to_mode)));
429 if (GET_MODE_PRECISION (from_mode) == GET_MODE_PRECISION (to_mode))
430 /* Conversion between decimal float and binary float, same size. */
431 tab = DECIMAL_FLOAT_MODE_P (from_mode) ? trunc_optab : sext_optab;
432 else if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode))
433 tab = sext_optab;
434 else
435 tab = trunc_optab;
437 /* Try converting directly if the insn is supported. */
439 code = convert_optab_handler (tab, to_mode, from_mode)->insn_code;
440 if (code != CODE_FOR_nothing)
442 emit_unop_insn (code, to, from,
443 tab == sext_optab ? FLOAT_EXTEND : FLOAT_TRUNCATE);
444 return;
447 /* Otherwise use a libcall. */
448 libcall = convert_optab_libfunc (tab, to_mode, from_mode);
450 /* Is this conversion implemented yet? */
451 gcc_assert (libcall);
453 start_sequence ();
454 value = emit_library_call_value (libcall, NULL_RTX, LCT_CONST, to_mode,
455 1, from, from_mode);
456 insns = get_insns ();
457 end_sequence ();
458 emit_libcall_block (insns, to, value,
459 tab == trunc_optab ? gen_rtx_FLOAT_TRUNCATE (to_mode,
460 from)
461 : gen_rtx_FLOAT_EXTEND (to_mode, from));
462 return;
465 /* Handle pointer conversion. */ /* SPEE 900220. */
466 /* Targets are expected to provide conversion insns between PxImode and
467 xImode for all MODE_PARTIAL_INT modes they use, but no others. */
468 if (GET_MODE_CLASS (to_mode) == MODE_PARTIAL_INT)
470 enum machine_mode full_mode
471 = smallest_mode_for_size (GET_MODE_BITSIZE (to_mode), MODE_INT);
473 gcc_assert (convert_optab_handler (trunc_optab, to_mode, full_mode)->insn_code
474 != CODE_FOR_nothing);
476 if (full_mode != from_mode)
477 from = convert_to_mode (full_mode, from, unsignedp);
478 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, full_mode)->insn_code,
479 to, from, UNKNOWN);
480 return;
482 if (GET_MODE_CLASS (from_mode) == MODE_PARTIAL_INT)
484 rtx new_from;
485 enum machine_mode full_mode
486 = smallest_mode_for_size (GET_MODE_BITSIZE (from_mode), MODE_INT);
488 gcc_assert (convert_optab_handler (sext_optab, full_mode, from_mode)->insn_code
489 != CODE_FOR_nothing);
491 if (to_mode == full_mode)
493 emit_unop_insn (convert_optab_handler (sext_optab, full_mode, from_mode)->insn_code,
494 to, from, UNKNOWN);
495 return;
498 new_from = gen_reg_rtx (full_mode);
499 emit_unop_insn (convert_optab_handler (sext_optab, full_mode, from_mode)->insn_code,
500 new_from, from, UNKNOWN);
502 /* else proceed to integer conversions below. */
503 from_mode = full_mode;
504 from = new_from;
507 /* Make sure both are fixed-point modes or both are not. */
508 gcc_assert (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode) ==
509 ALL_SCALAR_FIXED_POINT_MODE_P (to_mode));
510 if (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode))
512 /* If we widen from_mode to to_mode and they are in the same class,
513 we won't saturate the result.
514 Otherwise, always saturate the result to play safe. */
515 if (GET_MODE_CLASS (from_mode) == GET_MODE_CLASS (to_mode)
516 && GET_MODE_SIZE (from_mode) < GET_MODE_SIZE (to_mode))
517 expand_fixed_convert (to, from, 0, 0);
518 else
519 expand_fixed_convert (to, from, 0, 1);
520 return;
523 /* Now both modes are integers. */
525 /* Handle expanding beyond a word. */
526 if (GET_MODE_BITSIZE (from_mode) < GET_MODE_BITSIZE (to_mode)
527 && GET_MODE_BITSIZE (to_mode) > BITS_PER_WORD)
529 rtx insns;
530 rtx lowpart;
531 rtx fill_value;
532 rtx lowfrom;
533 int i;
534 enum machine_mode lowpart_mode;
535 int nwords = CEIL (GET_MODE_SIZE (to_mode), UNITS_PER_WORD);
537 /* Try converting directly if the insn is supported. */
538 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
539 != CODE_FOR_nothing)
541 /* If FROM is a SUBREG, put it into a register. Do this
542 so that we always generate the same set of insns for
543 better cse'ing; if an intermediate assignment occurred,
544 we won't be doing the operation directly on the SUBREG. */
545 if (optimize > 0 && GET_CODE (from) == SUBREG)
546 from = force_reg (from_mode, from);
547 emit_unop_insn (code, to, from, equiv_code);
548 return;
550 /* Next, try converting via full word. */
551 else if (GET_MODE_BITSIZE (from_mode) < BITS_PER_WORD
552 && ((code = can_extend_p (to_mode, word_mode, unsignedp))
553 != CODE_FOR_nothing))
555 rtx word_to = gen_reg_rtx (word_mode);
556 if (REG_P (to))
558 if (reg_overlap_mentioned_p (to, from))
559 from = force_reg (from_mode, from);
560 emit_clobber (to);
562 convert_move (word_to, from, unsignedp);
563 emit_unop_insn (code, to, word_to, equiv_code);
564 return;
567 /* No special multiword conversion insn; do it by hand. */
568 start_sequence ();
570 /* Since we will turn this into a no conflict block, we must ensure
571 that the source does not overlap the target. */
573 if (reg_overlap_mentioned_p (to, from))
574 from = force_reg (from_mode, from);
576 /* Get a copy of FROM widened to a word, if necessary. */
577 if (GET_MODE_BITSIZE (from_mode) < BITS_PER_WORD)
578 lowpart_mode = word_mode;
579 else
580 lowpart_mode = from_mode;
582 lowfrom = convert_to_mode (lowpart_mode, from, unsignedp);
584 lowpart = gen_lowpart (lowpart_mode, to);
585 emit_move_insn (lowpart, lowfrom);
587 /* Compute the value to put in each remaining word. */
588 if (unsignedp)
589 fill_value = const0_rtx;
590 else
592 #ifdef HAVE_slt
593 if (HAVE_slt
594 && insn_data[(int) CODE_FOR_slt].operand[0].mode == word_mode
595 && STORE_FLAG_VALUE == -1)
597 emit_cmp_insn (lowfrom, const0_rtx, NE, NULL_RTX,
598 lowpart_mode, 0);
599 fill_value = gen_reg_rtx (word_mode);
600 emit_insn (gen_slt (fill_value));
602 else
603 #endif
605 fill_value
606 = expand_shift (RSHIFT_EXPR, lowpart_mode, lowfrom,
607 size_int (GET_MODE_BITSIZE (lowpart_mode) - 1),
608 NULL_RTX, 0);
609 fill_value = convert_to_mode (word_mode, fill_value, 1);
613 /* Fill the remaining words. */
614 for (i = GET_MODE_SIZE (lowpart_mode) / UNITS_PER_WORD; i < nwords; i++)
616 int index = (WORDS_BIG_ENDIAN ? nwords - i - 1 : i);
617 rtx subword = operand_subword (to, index, 1, to_mode);
619 gcc_assert (subword);
621 if (fill_value != subword)
622 emit_move_insn (subword, fill_value);
625 insns = get_insns ();
626 end_sequence ();
628 emit_insn (insns);
629 return;
632 /* Truncating multi-word to a word or less. */
633 if (GET_MODE_BITSIZE (from_mode) > BITS_PER_WORD
634 && GET_MODE_BITSIZE (to_mode) <= BITS_PER_WORD)
636 if (!((MEM_P (from)
637 && ! MEM_VOLATILE_P (from)
638 && direct_load[(int) to_mode]
639 && ! mode_dependent_address_p (XEXP (from, 0)))
640 || REG_P (from)
641 || GET_CODE (from) == SUBREG))
642 from = force_reg (from_mode, from);
643 convert_move (to, gen_lowpart (word_mode, from), 0);
644 return;
647 /* Now follow all the conversions between integers
648 no more than a word long. */
650 /* For truncation, usually we can just refer to FROM in a narrower mode. */
651 if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode)
652 && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (to_mode),
653 GET_MODE_BITSIZE (from_mode)))
655 if (!((MEM_P (from)
656 && ! MEM_VOLATILE_P (from)
657 && direct_load[(int) to_mode]
658 && ! mode_dependent_address_p (XEXP (from, 0)))
659 || REG_P (from)
660 || GET_CODE (from) == SUBREG))
661 from = force_reg (from_mode, from);
662 if (REG_P (from) && REGNO (from) < FIRST_PSEUDO_REGISTER
663 && ! HARD_REGNO_MODE_OK (REGNO (from), to_mode))
664 from = copy_to_reg (from);
665 emit_move_insn (to, gen_lowpart (to_mode, from));
666 return;
669 /* Handle extension. */
670 if (GET_MODE_BITSIZE (to_mode) > GET_MODE_BITSIZE (from_mode))
672 /* Convert directly if that works. */
673 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
674 != CODE_FOR_nothing)
676 emit_unop_insn (code, to, from, equiv_code);
677 return;
679 else
681 enum machine_mode intermediate;
682 rtx tmp;
683 tree shift_amount;
685 /* Search for a mode to convert via. */
686 for (intermediate = from_mode; intermediate != VOIDmode;
687 intermediate = GET_MODE_WIDER_MODE (intermediate))
688 if (((can_extend_p (to_mode, intermediate, unsignedp)
689 != CODE_FOR_nothing)
690 || (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (intermediate)
691 && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (to_mode),
692 GET_MODE_BITSIZE (intermediate))))
693 && (can_extend_p (intermediate, from_mode, unsignedp)
694 != CODE_FOR_nothing))
696 convert_move (to, convert_to_mode (intermediate, from,
697 unsignedp), unsignedp);
698 return;
701 /* No suitable intermediate mode.
702 Generate what we need with shifts. */
703 shift_amount = build_int_cst (NULL_TREE,
704 GET_MODE_BITSIZE (to_mode)
705 - GET_MODE_BITSIZE (from_mode));
706 from = gen_lowpart (to_mode, force_reg (from_mode, from));
707 tmp = expand_shift (LSHIFT_EXPR, to_mode, from, shift_amount,
708 to, unsignedp);
709 tmp = expand_shift (RSHIFT_EXPR, to_mode, tmp, shift_amount,
710 to, unsignedp);
711 if (tmp != to)
712 emit_move_insn (to, tmp);
713 return;
717 /* Support special truncate insns for certain modes. */
718 if (convert_optab_handler (trunc_optab, to_mode, from_mode)->insn_code != CODE_FOR_nothing)
720 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, from_mode)->insn_code,
721 to, from, UNKNOWN);
722 return;
725 /* Handle truncation of volatile memrefs, and so on;
726 the things that couldn't be truncated directly,
727 and for which there was no special instruction.
729 ??? Code above formerly short-circuited this, for most integer
730 mode pairs, with a force_reg in from_mode followed by a recursive
731 call to this routine. Appears always to have been wrong. */
732 if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode))
734 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from));
735 emit_move_insn (to, temp);
736 return;
739 /* Mode combination is not recognized. */
740 gcc_unreachable ();
743 /* Return an rtx for a value that would result
744 from converting X to mode MODE.
745 Both X and MODE may be floating, or both integer.
746 UNSIGNEDP is nonzero if X is an unsigned value.
747 This can be done by referring to a part of X in place
748 or by copying to a new temporary with conversion. */
751 convert_to_mode (enum machine_mode mode, rtx x, int unsignedp)
753 return convert_modes (mode, VOIDmode, x, unsignedp);
756 /* Return an rtx for a value that would result
757 from converting X from mode OLDMODE to mode MODE.
758 Both modes may be floating, or both integer.
759 UNSIGNEDP is nonzero if X is an unsigned value.
761 This can be done by referring to a part of X in place
762 or by copying to a new temporary with conversion.
764 You can give VOIDmode for OLDMODE, if you are sure X has a nonvoid mode. */
767 convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int unsignedp)
769 rtx temp;
771 /* If FROM is a SUBREG that indicates that we have already done at least
772 the required extension, strip it. */
774 if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
775 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) >= GET_MODE_SIZE (mode)
776 && SUBREG_PROMOTED_UNSIGNED_P (x) == unsignedp)
777 x = gen_lowpart (mode, x);
779 if (GET_MODE (x) != VOIDmode)
780 oldmode = GET_MODE (x);
782 if (mode == oldmode)
783 return x;
785 /* There is one case that we must handle specially: If we are converting
786 a CONST_INT into a mode whose size is twice HOST_BITS_PER_WIDE_INT and
787 we are to interpret the constant as unsigned, gen_lowpart will do
788 the wrong if the constant appears negative. What we want to do is
789 make the high-order word of the constant zero, not all ones. */
791 if (unsignedp && GET_MODE_CLASS (mode) == MODE_INT
792 && GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT
793 && GET_CODE (x) == CONST_INT && INTVAL (x) < 0)
795 HOST_WIDE_INT val = INTVAL (x);
797 if (oldmode != VOIDmode
798 && HOST_BITS_PER_WIDE_INT > GET_MODE_BITSIZE (oldmode))
800 int width = GET_MODE_BITSIZE (oldmode);
802 /* We need to zero extend VAL. */
803 val &= ((HOST_WIDE_INT) 1 << width) - 1;
806 return immed_double_const (val, (HOST_WIDE_INT) 0, mode);
809 /* We can do this with a gen_lowpart if both desired and current modes
810 are integer, and this is either a constant integer, a register, or a
811 non-volatile MEM. Except for the constant case where MODE is no
812 wider than HOST_BITS_PER_WIDE_INT, we must be narrowing the operand. */
814 if ((GET_CODE (x) == CONST_INT
815 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
816 || (GET_MODE_CLASS (mode) == MODE_INT
817 && GET_MODE_CLASS (oldmode) == MODE_INT
818 && (GET_CODE (x) == CONST_DOUBLE
819 || (GET_MODE_SIZE (mode) <= GET_MODE_SIZE (oldmode)
820 && ((MEM_P (x) && ! MEM_VOLATILE_P (x)
821 && direct_load[(int) mode])
822 || (REG_P (x)
823 && (! HARD_REGISTER_P (x)
824 || HARD_REGNO_MODE_OK (REGNO (x), mode))
825 && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
826 GET_MODE_BITSIZE (GET_MODE (x)))))))))
828 /* ?? If we don't know OLDMODE, we have to assume here that
829 X does not need sign- or zero-extension. This may not be
830 the case, but it's the best we can do. */
831 if (GET_CODE (x) == CONST_INT && oldmode != VOIDmode
832 && GET_MODE_SIZE (mode) > GET_MODE_SIZE (oldmode))
834 HOST_WIDE_INT val = INTVAL (x);
835 int width = GET_MODE_BITSIZE (oldmode);
837 /* We must sign or zero-extend in this case. Start by
838 zero-extending, then sign extend if we need to. */
839 val &= ((HOST_WIDE_INT) 1 << width) - 1;
840 if (! unsignedp
841 && (val & ((HOST_WIDE_INT) 1 << (width - 1))))
842 val |= (HOST_WIDE_INT) (-1) << width;
844 return gen_int_mode (val, mode);
847 return gen_lowpart (mode, x);
850 /* Converting from integer constant into mode is always equivalent to an
851 subreg operation. */
852 if (VECTOR_MODE_P (mode) && GET_MODE (x) == VOIDmode)
854 gcc_assert (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (oldmode));
855 return simplify_gen_subreg (mode, x, oldmode, 0);
858 temp = gen_reg_rtx (mode);
859 convert_move (temp, x, unsignedp);
860 return temp;
863 /* STORE_MAX_PIECES is the number of bytes at a time that we can
864 store efficiently. Due to internal GCC limitations, this is
865 MOVE_MAX_PIECES limited by the number of bytes GCC can represent
866 for an immediate constant. */
868 #define STORE_MAX_PIECES MIN (MOVE_MAX_PIECES, 2 * sizeof (HOST_WIDE_INT))
870 /* Determine whether the LEN bytes can be moved by using several move
871 instructions. Return nonzero if a call to move_by_pieces should
872 succeed. */
875 can_move_by_pieces (unsigned HOST_WIDE_INT len,
876 unsigned int align ATTRIBUTE_UNUSED)
878 return MOVE_BY_PIECES_P (len, align);
881 /* Generate several move instructions to copy LEN bytes from block FROM to
882 block TO. (These are MEM rtx's with BLKmode).
884 If PUSH_ROUNDING is defined and TO is NULL, emit_single_push_insn is
885 used to push FROM to the stack.
887 ALIGN is maximum stack alignment we can assume.
889 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
890 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
891 stpcpy. */
894 move_by_pieces (rtx to, rtx from, unsigned HOST_WIDE_INT len,
895 unsigned int align, int endp)
897 struct move_by_pieces data;
898 rtx to_addr, from_addr = XEXP (from, 0);
899 unsigned int max_size = MOVE_MAX_PIECES + 1;
900 enum machine_mode mode = VOIDmode, tmode;
901 enum insn_code icode;
903 align = MIN (to ? MEM_ALIGN (to) : align, MEM_ALIGN (from));
905 data.offset = 0;
906 data.from_addr = from_addr;
907 if (to)
909 to_addr = XEXP (to, 0);
910 data.to = to;
911 data.autinc_to
912 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
913 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
914 data.reverse
915 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
917 else
919 to_addr = NULL_RTX;
920 data.to = NULL_RTX;
921 data.autinc_to = 1;
922 #ifdef STACK_GROWS_DOWNWARD
923 data.reverse = 1;
924 #else
925 data.reverse = 0;
926 #endif
928 data.to_addr = to_addr;
929 data.from = from;
930 data.autinc_from
931 = (GET_CODE (from_addr) == PRE_INC || GET_CODE (from_addr) == PRE_DEC
932 || GET_CODE (from_addr) == POST_INC
933 || GET_CODE (from_addr) == POST_DEC);
935 data.explicit_inc_from = 0;
936 data.explicit_inc_to = 0;
937 if (data.reverse) data.offset = len;
938 data.len = len;
940 /* If copying requires more than two move insns,
941 copy addresses to registers (to make displacements shorter)
942 and use post-increment if available. */
943 if (!(data.autinc_from && data.autinc_to)
944 && move_by_pieces_ninsns (len, align, max_size) > 2)
946 /* Find the mode of the largest move... */
947 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
948 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
949 if (GET_MODE_SIZE (tmode) < max_size)
950 mode = tmode;
952 if (USE_LOAD_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_from)
954 data.from_addr = copy_addr_to_reg (plus_constant (from_addr, len));
955 data.autinc_from = 1;
956 data.explicit_inc_from = -1;
958 if (USE_LOAD_POST_INCREMENT (mode) && ! data.autinc_from)
960 data.from_addr = copy_addr_to_reg (from_addr);
961 data.autinc_from = 1;
962 data.explicit_inc_from = 1;
964 if (!data.autinc_from && CONSTANT_P (from_addr))
965 data.from_addr = copy_addr_to_reg (from_addr);
966 if (USE_STORE_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_to)
968 data.to_addr = copy_addr_to_reg (plus_constant (to_addr, len));
969 data.autinc_to = 1;
970 data.explicit_inc_to = -1;
972 if (USE_STORE_POST_INCREMENT (mode) && ! data.reverse && ! data.autinc_to)
974 data.to_addr = copy_addr_to_reg (to_addr);
975 data.autinc_to = 1;
976 data.explicit_inc_to = 1;
978 if (!data.autinc_to && CONSTANT_P (to_addr))
979 data.to_addr = copy_addr_to_reg (to_addr);
982 tmode = mode_for_size (MOVE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
983 if (align >= GET_MODE_ALIGNMENT (tmode))
984 align = GET_MODE_ALIGNMENT (tmode);
985 else
987 enum machine_mode xmode;
989 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
990 tmode != VOIDmode;
991 xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
992 if (GET_MODE_SIZE (tmode) > MOVE_MAX_PIECES
993 || SLOW_UNALIGNED_ACCESS (tmode, align))
994 break;
996 align = MAX (align, GET_MODE_ALIGNMENT (xmode));
999 /* First move what we can in the largest integer mode, then go to
1000 successively smaller modes. */
1002 while (max_size > 1)
1004 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
1005 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
1006 if (GET_MODE_SIZE (tmode) < max_size)
1007 mode = tmode;
1009 if (mode == VOIDmode)
1010 break;
1012 icode = optab_handler (mov_optab, mode)->insn_code;
1013 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
1014 move_by_pieces_1 (GEN_FCN (icode), mode, &data);
1016 max_size = GET_MODE_SIZE (mode);
1019 /* The code above should have handled everything. */
1020 gcc_assert (!data.len);
1022 if (endp)
1024 rtx to1;
1026 gcc_assert (!data.reverse);
1027 if (data.autinc_to)
1029 if (endp == 2)
1031 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
1032 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
1033 else
1034 data.to_addr = copy_addr_to_reg (plus_constant (data.to_addr,
1035 -1));
1037 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
1038 data.offset);
1040 else
1042 if (endp == 2)
1043 --data.offset;
1044 to1 = adjust_address (data.to, QImode, data.offset);
1046 return to1;
1048 else
1049 return data.to;
1052 /* Return number of insns required to move L bytes by pieces.
1053 ALIGN (in bits) is maximum alignment we can assume. */
1055 static unsigned HOST_WIDE_INT
1056 move_by_pieces_ninsns (unsigned HOST_WIDE_INT l, unsigned int align,
1057 unsigned int max_size)
1059 unsigned HOST_WIDE_INT n_insns = 0;
1060 enum machine_mode tmode;
1062 tmode = mode_for_size (MOVE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
1063 if (align >= GET_MODE_ALIGNMENT (tmode))
1064 align = GET_MODE_ALIGNMENT (tmode);
1065 else
1067 enum machine_mode tmode, xmode;
1069 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
1070 tmode != VOIDmode;
1071 xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
1072 if (GET_MODE_SIZE (tmode) > MOVE_MAX_PIECES
1073 || SLOW_UNALIGNED_ACCESS (tmode, align))
1074 break;
1076 align = MAX (align, GET_MODE_ALIGNMENT (xmode));
1079 while (max_size > 1)
1081 enum machine_mode mode = VOIDmode;
1082 enum insn_code icode;
1084 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
1085 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
1086 if (GET_MODE_SIZE (tmode) < max_size)
1087 mode = tmode;
1089 if (mode == VOIDmode)
1090 break;
1092 icode = optab_handler (mov_optab, mode)->insn_code;
1093 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
1094 n_insns += l / GET_MODE_SIZE (mode), l %= GET_MODE_SIZE (mode);
1096 max_size = GET_MODE_SIZE (mode);
1099 gcc_assert (!l);
1100 return n_insns;
1103 /* Subroutine of move_by_pieces. Move as many bytes as appropriate
1104 with move instructions for mode MODE. GENFUN is the gen_... function
1105 to make a move insn for that mode. DATA has all the other info. */
1107 static void
1108 move_by_pieces_1 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
1109 struct move_by_pieces *data)
1111 unsigned int size = GET_MODE_SIZE (mode);
1112 rtx to1 = NULL_RTX, from1;
1114 while (data->len >= size)
1116 if (data->reverse)
1117 data->offset -= size;
1119 if (data->to)
1121 if (data->autinc_to)
1122 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
1123 data->offset);
1124 else
1125 to1 = adjust_address (data->to, mode, data->offset);
1128 if (data->autinc_from)
1129 from1 = adjust_automodify_address (data->from, mode, data->from_addr,
1130 data->offset);
1131 else
1132 from1 = adjust_address (data->from, mode, data->offset);
1134 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
1135 emit_insn (gen_add2_insn (data->to_addr,
1136 GEN_INT (-(HOST_WIDE_INT)size)));
1137 if (HAVE_PRE_DECREMENT && data->explicit_inc_from < 0)
1138 emit_insn (gen_add2_insn (data->from_addr,
1139 GEN_INT (-(HOST_WIDE_INT)size)));
1141 if (data->to)
1142 emit_insn ((*genfun) (to1, from1));
1143 else
1145 #ifdef PUSH_ROUNDING
1146 emit_single_push_insn (mode, from1, NULL);
1147 #else
1148 gcc_unreachable ();
1149 #endif
1152 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
1153 emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
1154 if (HAVE_POST_INCREMENT && data->explicit_inc_from > 0)
1155 emit_insn (gen_add2_insn (data->from_addr, GEN_INT (size)));
1157 if (! data->reverse)
1158 data->offset += size;
1160 data->len -= size;
1164 /* Emit code to move a block Y to a block X. This may be done with
1165 string-move instructions, with multiple scalar move instructions,
1166 or with a library call.
1168 Both X and Y must be MEM rtx's (perhaps inside VOLATILE) with mode BLKmode.
1169 SIZE is an rtx that says how long they are.
1170 ALIGN is the maximum alignment we can assume they have.
1171 METHOD describes what kind of copy this is, and what mechanisms may be used.
1173 Return the address of the new block, if memcpy is called and returns it,
1174 0 otherwise. */
1177 emit_block_move_hints (rtx x, rtx y, rtx size, enum block_op_methods method,
1178 unsigned int expected_align, HOST_WIDE_INT expected_size)
1180 bool may_use_call;
1181 rtx retval = 0;
1182 unsigned int align;
1184 switch (method)
1186 case BLOCK_OP_NORMAL:
1187 case BLOCK_OP_TAILCALL:
1188 may_use_call = true;
1189 break;
1191 case BLOCK_OP_CALL_PARM:
1192 may_use_call = block_move_libcall_safe_for_call_parm ();
1194 /* Make inhibit_defer_pop nonzero around the library call
1195 to force it to pop the arguments right away. */
1196 NO_DEFER_POP;
1197 break;
1199 case BLOCK_OP_NO_LIBCALL:
1200 may_use_call = false;
1201 break;
1203 default:
1204 gcc_unreachable ();
1207 align = MIN (MEM_ALIGN (x), MEM_ALIGN (y));
1209 gcc_assert (MEM_P (x));
1210 gcc_assert (MEM_P (y));
1211 gcc_assert (size);
1213 /* Make sure we've got BLKmode addresses; store_one_arg can decide that
1214 block copy is more efficient for other large modes, e.g. DCmode. */
1215 x = adjust_address (x, BLKmode, 0);
1216 y = adjust_address (y, BLKmode, 0);
1218 /* Set MEM_SIZE as appropriate for this block copy. The main place this
1219 can be incorrect is coming from __builtin_memcpy. */
1220 if (GET_CODE (size) == CONST_INT)
1222 if (INTVAL (size) == 0)
1223 return 0;
1225 x = shallow_copy_rtx (x);
1226 y = shallow_copy_rtx (y);
1227 set_mem_size (x, size);
1228 set_mem_size (y, size);
1231 if (GET_CODE (size) == CONST_INT && MOVE_BY_PIECES_P (INTVAL (size), align))
1232 move_by_pieces (x, y, INTVAL (size), align, 0);
1233 else if (emit_block_move_via_movmem (x, y, size, align,
1234 expected_align, expected_size))
1236 else if (may_use_call)
1237 retval = emit_block_move_via_libcall (x, y, size,
1238 method == BLOCK_OP_TAILCALL);
1239 else
1240 emit_block_move_via_loop (x, y, size, align);
1242 if (method == BLOCK_OP_CALL_PARM)
1243 OK_DEFER_POP;
1245 return retval;
1249 emit_block_move (rtx x, rtx y, rtx size, enum block_op_methods method)
1251 return emit_block_move_hints (x, y, size, method, 0, -1);
1254 /* A subroutine of emit_block_move. Returns true if calling the
1255 block move libcall will not clobber any parameters which may have
1256 already been placed on the stack. */
1258 static bool
1259 block_move_libcall_safe_for_call_parm (void)
1261 #if defined (REG_PARM_STACK_SPACE)
1262 tree fn;
1263 #endif
1265 /* If arguments are pushed on the stack, then they're safe. */
1266 if (PUSH_ARGS)
1267 return true;
1269 /* If registers go on the stack anyway, any argument is sure to clobber
1270 an outgoing argument. */
1271 #if defined (REG_PARM_STACK_SPACE)
1272 fn = emit_block_move_libcall_fn (false);
1273 if (OUTGOING_REG_PARM_STACK_SPACE ((!fn ? NULL_TREE : TREE_TYPE (fn)))
1274 && REG_PARM_STACK_SPACE (fn) != 0)
1275 return false;
1276 #endif
1278 /* If any argument goes in memory, then it might clobber an outgoing
1279 argument. */
1281 CUMULATIVE_ARGS args_so_far;
1282 tree fn, arg;
1284 fn = emit_block_move_libcall_fn (false);
1285 INIT_CUMULATIVE_ARGS (args_so_far, TREE_TYPE (fn), NULL_RTX, 0, 3);
1287 arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
1288 for ( ; arg != void_list_node ; arg = TREE_CHAIN (arg))
1290 enum machine_mode mode = TYPE_MODE (TREE_VALUE (arg));
1291 rtx tmp = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
1292 if (!tmp || !REG_P (tmp))
1293 return false;
1294 if (targetm.calls.arg_partial_bytes (&args_so_far, mode, NULL, 1))
1295 return false;
1296 FUNCTION_ARG_ADVANCE (args_so_far, mode, NULL_TREE, 1);
1299 return true;
1302 /* A subroutine of emit_block_move. Expand a movmem pattern;
1303 return true if successful. */
1305 static bool
1306 emit_block_move_via_movmem (rtx x, rtx y, rtx size, unsigned int align,
1307 unsigned int expected_align, HOST_WIDE_INT expected_size)
1309 rtx opalign = GEN_INT (align / BITS_PER_UNIT);
1310 int save_volatile_ok = volatile_ok;
1311 enum machine_mode mode;
1313 if (expected_align < align)
1314 expected_align = align;
1316 /* Since this is a move insn, we don't care about volatility. */
1317 volatile_ok = 1;
1319 /* Try the most limited insn first, because there's no point
1320 including more than one in the machine description unless
1321 the more limited one has some advantage. */
1323 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
1324 mode = GET_MODE_WIDER_MODE (mode))
1326 enum insn_code code = movmem_optab[(int) mode];
1327 insn_operand_predicate_fn pred;
1329 if (code != CODE_FOR_nothing
1330 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
1331 here because if SIZE is less than the mode mask, as it is
1332 returned by the macro, it will definitely be less than the
1333 actual mode mask. */
1334 && ((GET_CODE (size) == CONST_INT
1335 && ((unsigned HOST_WIDE_INT) INTVAL (size)
1336 <= (GET_MODE_MASK (mode) >> 1)))
1337 || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD)
1338 && ((pred = insn_data[(int) code].operand[0].predicate) == 0
1339 || (*pred) (x, BLKmode))
1340 && ((pred = insn_data[(int) code].operand[1].predicate) == 0
1341 || (*pred) (y, BLKmode))
1342 && ((pred = insn_data[(int) code].operand[3].predicate) == 0
1343 || (*pred) (opalign, VOIDmode)))
1345 rtx op2;
1346 rtx last = get_last_insn ();
1347 rtx pat;
1349 op2 = convert_to_mode (mode, size, 1);
1350 pred = insn_data[(int) code].operand[2].predicate;
1351 if (pred != 0 && ! (*pred) (op2, mode))
1352 op2 = copy_to_mode_reg (mode, op2);
1354 /* ??? When called via emit_block_move_for_call, it'd be
1355 nice if there were some way to inform the backend, so
1356 that it doesn't fail the expansion because it thinks
1357 emitting the libcall would be more efficient. */
1359 if (insn_data[(int) code].n_operands == 4)
1360 pat = GEN_FCN ((int) code) (x, y, op2, opalign);
1361 else
1362 pat = GEN_FCN ((int) code) (x, y, op2, opalign,
1363 GEN_INT (expected_align
1364 / BITS_PER_UNIT),
1365 GEN_INT (expected_size));
1366 if (pat)
1368 emit_insn (pat);
1369 volatile_ok = save_volatile_ok;
1370 return true;
1372 else
1373 delete_insns_since (last);
1377 volatile_ok = save_volatile_ok;
1378 return false;
1381 /* A subroutine of emit_block_move. Expand a call to memcpy.
1382 Return the return value from memcpy, 0 otherwise. */
1385 emit_block_move_via_libcall (rtx dst, rtx src, rtx size, bool tailcall)
1387 rtx dst_addr, src_addr;
1388 tree call_expr, fn, src_tree, dst_tree, size_tree;
1389 enum machine_mode size_mode;
1390 rtx retval;
1392 /* Emit code to copy the addresses of DST and SRC and SIZE into new
1393 pseudos. We can then place those new pseudos into a VAR_DECL and
1394 use them later. */
1396 dst_addr = copy_to_mode_reg (Pmode, XEXP (dst, 0));
1397 src_addr = copy_to_mode_reg (Pmode, XEXP (src, 0));
1399 dst_addr = convert_memory_address (ptr_mode, dst_addr);
1400 src_addr = convert_memory_address (ptr_mode, src_addr);
1402 dst_tree = make_tree (ptr_type_node, dst_addr);
1403 src_tree = make_tree (ptr_type_node, src_addr);
1405 size_mode = TYPE_MODE (sizetype);
1407 size = convert_to_mode (size_mode, size, 1);
1408 size = copy_to_mode_reg (size_mode, size);
1410 /* It is incorrect to use the libcall calling conventions to call
1411 memcpy in this context. This could be a user call to memcpy and
1412 the user may wish to examine the return value from memcpy. For
1413 targets where libcalls and normal calls have different conventions
1414 for returning pointers, we could end up generating incorrect code. */
1416 size_tree = make_tree (sizetype, size);
1418 fn = emit_block_move_libcall_fn (true);
1419 call_expr = build_call_expr (fn, 3, dst_tree, src_tree, size_tree);
1420 CALL_EXPR_TAILCALL (call_expr) = tailcall;
1422 retval = expand_normal (call_expr);
1424 return retval;
1427 /* A subroutine of emit_block_move_via_libcall. Create the tree node
1428 for the function we use for block copies. The first time FOR_CALL
1429 is true, we call assemble_external. */
1431 static GTY(()) tree block_move_fn;
1433 void
1434 init_block_move_fn (const char *asmspec)
1436 if (!block_move_fn)
1438 tree args, fn;
1440 fn = get_identifier ("memcpy");
1441 args = build_function_type_list (ptr_type_node, ptr_type_node,
1442 const_ptr_type_node, sizetype,
1443 NULL_TREE);
1445 fn = build_decl (FUNCTION_DECL, fn, args);
1446 DECL_EXTERNAL (fn) = 1;
1447 TREE_PUBLIC (fn) = 1;
1448 DECL_ARTIFICIAL (fn) = 1;
1449 TREE_NOTHROW (fn) = 1;
1450 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
1451 DECL_VISIBILITY_SPECIFIED (fn) = 1;
1453 block_move_fn = fn;
1456 if (asmspec)
1457 set_user_assembler_name (block_move_fn, asmspec);
1460 static tree
1461 emit_block_move_libcall_fn (int for_call)
1463 static bool emitted_extern;
1465 if (!block_move_fn)
1466 init_block_move_fn (NULL);
1468 if (for_call && !emitted_extern)
1470 emitted_extern = true;
1471 make_decl_rtl (block_move_fn);
1472 assemble_external (block_move_fn);
1475 return block_move_fn;
1478 /* A subroutine of emit_block_move. Copy the data via an explicit
1479 loop. This is used only when libcalls are forbidden. */
1480 /* ??? It'd be nice to copy in hunks larger than QImode. */
1482 static void
1483 emit_block_move_via_loop (rtx x, rtx y, rtx size,
1484 unsigned int align ATTRIBUTE_UNUSED)
1486 rtx cmp_label, top_label, iter, x_addr, y_addr, tmp;
1487 enum machine_mode iter_mode;
1489 iter_mode = GET_MODE (size);
1490 if (iter_mode == VOIDmode)
1491 iter_mode = word_mode;
1493 top_label = gen_label_rtx ();
1494 cmp_label = gen_label_rtx ();
1495 iter = gen_reg_rtx (iter_mode);
1497 emit_move_insn (iter, const0_rtx);
1499 x_addr = force_operand (XEXP (x, 0), NULL_RTX);
1500 y_addr = force_operand (XEXP (y, 0), NULL_RTX);
1501 do_pending_stack_adjust ();
1503 emit_jump (cmp_label);
1504 emit_label (top_label);
1506 tmp = convert_modes (Pmode, iter_mode, iter, true);
1507 x_addr = gen_rtx_PLUS (Pmode, x_addr, tmp);
1508 y_addr = gen_rtx_PLUS (Pmode, y_addr, tmp);
1509 x = change_address (x, QImode, x_addr);
1510 y = change_address (y, QImode, y_addr);
1512 emit_move_insn (x, y);
1514 tmp = expand_simple_binop (iter_mode, PLUS, iter, const1_rtx, iter,
1515 true, OPTAB_LIB_WIDEN);
1516 if (tmp != iter)
1517 emit_move_insn (iter, tmp);
1519 emit_label (cmp_label);
1521 emit_cmp_and_jump_insns (iter, size, LT, NULL_RTX, iter_mode,
1522 true, top_label);
1525 /* Copy all or part of a value X into registers starting at REGNO.
1526 The number of registers to be filled is NREGS. */
1528 void
1529 move_block_to_reg (int regno, rtx x, int nregs, enum machine_mode mode)
1531 int i;
1532 #ifdef HAVE_load_multiple
1533 rtx pat;
1534 rtx last;
1535 #endif
1537 if (nregs == 0)
1538 return;
1540 if (CONSTANT_P (x) && ! LEGITIMATE_CONSTANT_P (x))
1541 x = validize_mem (force_const_mem (mode, x));
1543 /* See if the machine can do this with a load multiple insn. */
1544 #ifdef HAVE_load_multiple
1545 if (HAVE_load_multiple)
1547 last = get_last_insn ();
1548 pat = gen_load_multiple (gen_rtx_REG (word_mode, regno), x,
1549 GEN_INT (nregs));
1550 if (pat)
1552 emit_insn (pat);
1553 return;
1555 else
1556 delete_insns_since (last);
1558 #endif
1560 for (i = 0; i < nregs; i++)
1561 emit_move_insn (gen_rtx_REG (word_mode, regno + i),
1562 operand_subword_force (x, i, mode));
1565 /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
1566 The number of registers to be filled is NREGS. */
1568 void
1569 move_block_from_reg (int regno, rtx x, int nregs)
1571 int i;
1573 if (nregs == 0)
1574 return;
1576 /* See if the machine can do this with a store multiple insn. */
1577 #ifdef HAVE_store_multiple
1578 if (HAVE_store_multiple)
1580 rtx last = get_last_insn ();
1581 rtx pat = gen_store_multiple (x, gen_rtx_REG (word_mode, regno),
1582 GEN_INT (nregs));
1583 if (pat)
1585 emit_insn (pat);
1586 return;
1588 else
1589 delete_insns_since (last);
1591 #endif
1593 for (i = 0; i < nregs; i++)
1595 rtx tem = operand_subword (x, i, 1, BLKmode);
1597 gcc_assert (tem);
1599 emit_move_insn (tem, gen_rtx_REG (word_mode, regno + i));
1603 /* Generate a PARALLEL rtx for a new non-consecutive group of registers from
1604 ORIG, where ORIG is a non-consecutive group of registers represented by
1605 a PARALLEL. The clone is identical to the original except in that the
1606 original set of registers is replaced by a new set of pseudo registers.
1607 The new set has the same modes as the original set. */
1610 gen_group_rtx (rtx orig)
1612 int i, length;
1613 rtx *tmps;
1615 gcc_assert (GET_CODE (orig) == PARALLEL);
1617 length = XVECLEN (orig, 0);
1618 tmps = XALLOCAVEC (rtx, length);
1620 /* Skip a NULL entry in first slot. */
1621 i = XEXP (XVECEXP (orig, 0, 0), 0) ? 0 : 1;
1623 if (i)
1624 tmps[0] = 0;
1626 for (; i < length; i++)
1628 enum machine_mode mode = GET_MODE (XEXP (XVECEXP (orig, 0, i), 0));
1629 rtx offset = XEXP (XVECEXP (orig, 0, i), 1);
1631 tmps[i] = gen_rtx_EXPR_LIST (VOIDmode, gen_reg_rtx (mode), offset);
1634 return gen_rtx_PARALLEL (GET_MODE (orig), gen_rtvec_v (length, tmps));
1637 /* A subroutine of emit_group_load. Arguments as for emit_group_load,
1638 except that values are placed in TMPS[i], and must later be moved
1639 into corresponding XEXP (XVECEXP (DST, 0, i), 0) element. */
1641 static void
1642 emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize)
1644 rtx src;
1645 int start, i;
1646 enum machine_mode m = GET_MODE (orig_src);
1648 gcc_assert (GET_CODE (dst) == PARALLEL);
1650 if (m != VOIDmode
1651 && !SCALAR_INT_MODE_P (m)
1652 && !MEM_P (orig_src)
1653 && GET_CODE (orig_src) != CONCAT)
1655 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_src));
1656 if (imode == BLKmode)
1657 src = assign_stack_temp (GET_MODE (orig_src), ssize, 0);
1658 else
1659 src = gen_reg_rtx (imode);
1660 if (imode != BLKmode)
1661 src = gen_lowpart (GET_MODE (orig_src), src);
1662 emit_move_insn (src, orig_src);
1663 /* ...and back again. */
1664 if (imode != BLKmode)
1665 src = gen_lowpart (imode, src);
1666 emit_group_load_1 (tmps, dst, src, type, ssize);
1667 return;
1670 /* Check for a NULL entry, used to indicate that the parameter goes
1671 both on the stack and in registers. */
1672 if (XEXP (XVECEXP (dst, 0, 0), 0))
1673 start = 0;
1674 else
1675 start = 1;
1677 /* Process the pieces. */
1678 for (i = start; i < XVECLEN (dst, 0); i++)
1680 enum machine_mode mode = GET_MODE (XEXP (XVECEXP (dst, 0, i), 0));
1681 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (dst, 0, i), 1));
1682 unsigned int bytelen = GET_MODE_SIZE (mode);
1683 int shift = 0;
1685 /* Handle trailing fragments that run over the size of the struct. */
1686 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
1688 /* Arrange to shift the fragment to where it belongs.
1689 extract_bit_field loads to the lsb of the reg. */
1690 if (
1691 #ifdef BLOCK_REG_PADDING
1692 BLOCK_REG_PADDING (GET_MODE (orig_src), type, i == start)
1693 == (BYTES_BIG_ENDIAN ? upward : downward)
1694 #else
1695 BYTES_BIG_ENDIAN
1696 #endif
1698 shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
1699 bytelen = ssize - bytepos;
1700 gcc_assert (bytelen > 0);
1703 /* If we won't be loading directly from memory, protect the real source
1704 from strange tricks we might play; but make sure that the source can
1705 be loaded directly into the destination. */
1706 src = orig_src;
1707 if (!MEM_P (orig_src)
1708 && (!CONSTANT_P (orig_src)
1709 || (GET_MODE (orig_src) != mode
1710 && GET_MODE (orig_src) != VOIDmode)))
1712 if (GET_MODE (orig_src) == VOIDmode)
1713 src = gen_reg_rtx (mode);
1714 else
1715 src = gen_reg_rtx (GET_MODE (orig_src));
1717 emit_move_insn (src, orig_src);
1720 /* Optimize the access just a bit. */
1721 if (MEM_P (src)
1722 && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (src))
1723 || MEM_ALIGN (src) >= GET_MODE_ALIGNMENT (mode))
1724 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
1725 && bytelen == GET_MODE_SIZE (mode))
1727 tmps[i] = gen_reg_rtx (mode);
1728 emit_move_insn (tmps[i], adjust_address (src, mode, bytepos));
1730 else if (COMPLEX_MODE_P (mode)
1731 && GET_MODE (src) == mode
1732 && bytelen == GET_MODE_SIZE (mode))
1733 /* Let emit_move_complex do the bulk of the work. */
1734 tmps[i] = src;
1735 else if (GET_CODE (src) == CONCAT)
1737 unsigned int slen = GET_MODE_SIZE (GET_MODE (src));
1738 unsigned int slen0 = GET_MODE_SIZE (GET_MODE (XEXP (src, 0)));
1740 if ((bytepos == 0 && bytelen == slen0)
1741 || (bytepos != 0 && bytepos + bytelen <= slen))
1743 /* The following assumes that the concatenated objects all
1744 have the same size. In this case, a simple calculation
1745 can be used to determine the object and the bit field
1746 to be extracted. */
1747 tmps[i] = XEXP (src, bytepos / slen0);
1748 if (! CONSTANT_P (tmps[i])
1749 && (!REG_P (tmps[i]) || GET_MODE (tmps[i]) != mode))
1750 tmps[i] = extract_bit_field (tmps[i], bytelen * BITS_PER_UNIT,
1751 (bytepos % slen0) * BITS_PER_UNIT,
1752 1, NULL_RTX, mode, mode);
1754 else
1756 rtx mem;
1758 gcc_assert (!bytepos);
1759 mem = assign_stack_temp (GET_MODE (src), slen, 0);
1760 emit_move_insn (mem, src);
1761 tmps[i] = extract_bit_field (mem, bytelen * BITS_PER_UNIT,
1762 0, 1, NULL_RTX, mode, mode);
1765 /* FIXME: A SIMD parallel will eventually lead to a subreg of a
1766 SIMD register, which is currently broken. While we get GCC
1767 to emit proper RTL for these cases, let's dump to memory. */
1768 else if (VECTOR_MODE_P (GET_MODE (dst))
1769 && REG_P (src))
1771 int slen = GET_MODE_SIZE (GET_MODE (src));
1772 rtx mem;
1774 mem = assign_stack_temp (GET_MODE (src), slen, 0);
1775 emit_move_insn (mem, src);
1776 tmps[i] = adjust_address (mem, mode, (int) bytepos);
1778 else if (CONSTANT_P (src) && GET_MODE (dst) != BLKmode
1779 && XVECLEN (dst, 0) > 1)
1780 tmps[i] = simplify_gen_subreg (mode, src, GET_MODE(dst), bytepos);
1781 else if (CONSTANT_P (src))
1783 HOST_WIDE_INT len = (HOST_WIDE_INT) bytelen;
1785 if (len == ssize)
1786 tmps[i] = src;
1787 else
1789 rtx first, second;
1791 gcc_assert (2 * len == ssize);
1792 split_double (src, &first, &second);
1793 if (i)
1794 tmps[i] = second;
1795 else
1796 tmps[i] = first;
1799 else if (REG_P (src) && GET_MODE (src) == mode)
1800 tmps[i] = src;
1801 else
1802 tmps[i] = extract_bit_field (src, bytelen * BITS_PER_UNIT,
1803 bytepos * BITS_PER_UNIT, 1, NULL_RTX,
1804 mode, mode);
1806 if (shift)
1807 tmps[i] = expand_shift (LSHIFT_EXPR, mode, tmps[i],
1808 build_int_cst (NULL_TREE, shift), tmps[i], 0);
1812 /* Emit code to move a block SRC of type TYPE to a block DST,
1813 where DST is non-consecutive registers represented by a PARALLEL.
1814 SSIZE represents the total size of block ORIG_SRC in bytes, or -1
1815 if not known. */
1817 void
1818 emit_group_load (rtx dst, rtx src, tree type, int ssize)
1820 rtx *tmps;
1821 int i;
1823 tmps = XALLOCAVEC (rtx, XVECLEN (dst, 0));
1824 emit_group_load_1 (tmps, dst, src, type, ssize);
1826 /* Copy the extracted pieces into the proper (probable) hard regs. */
1827 for (i = 0; i < XVECLEN (dst, 0); i++)
1829 rtx d = XEXP (XVECEXP (dst, 0, i), 0);
1830 if (d == NULL)
1831 continue;
1832 emit_move_insn (d, tmps[i]);
1836 /* Similar, but load SRC into new pseudos in a format that looks like
1837 PARALLEL. This can later be fed to emit_group_move to get things
1838 in the right place. */
1841 emit_group_load_into_temps (rtx parallel, rtx src, tree type, int ssize)
1843 rtvec vec;
1844 int i;
1846 vec = rtvec_alloc (XVECLEN (parallel, 0));
1847 emit_group_load_1 (&RTVEC_ELT (vec, 0), parallel, src, type, ssize);
1849 /* Convert the vector to look just like the original PARALLEL, except
1850 with the computed values. */
1851 for (i = 0; i < XVECLEN (parallel, 0); i++)
1853 rtx e = XVECEXP (parallel, 0, i);
1854 rtx d = XEXP (e, 0);
1856 if (d)
1858 d = force_reg (GET_MODE (d), RTVEC_ELT (vec, i));
1859 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), d, XEXP (e, 1));
1861 RTVEC_ELT (vec, i) = e;
1864 return gen_rtx_PARALLEL (GET_MODE (parallel), vec);
1867 /* Emit code to move a block SRC to block DST, where SRC and DST are
1868 non-consecutive groups of registers, each represented by a PARALLEL. */
1870 void
1871 emit_group_move (rtx dst, rtx src)
1873 int i;
1875 gcc_assert (GET_CODE (src) == PARALLEL
1876 && GET_CODE (dst) == PARALLEL
1877 && XVECLEN (src, 0) == XVECLEN (dst, 0));
1879 /* Skip first entry if NULL. */
1880 for (i = XEXP (XVECEXP (src, 0, 0), 0) ? 0 : 1; i < XVECLEN (src, 0); i++)
1881 emit_move_insn (XEXP (XVECEXP (dst, 0, i), 0),
1882 XEXP (XVECEXP (src, 0, i), 0));
1885 /* Move a group of registers represented by a PARALLEL into pseudos. */
1888 emit_group_move_into_temps (rtx src)
1890 rtvec vec = rtvec_alloc (XVECLEN (src, 0));
1891 int i;
1893 for (i = 0; i < XVECLEN (src, 0); i++)
1895 rtx e = XVECEXP (src, 0, i);
1896 rtx d = XEXP (e, 0);
1898 if (d)
1899 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), copy_to_reg (d), XEXP (e, 1));
1900 RTVEC_ELT (vec, i) = e;
1903 return gen_rtx_PARALLEL (GET_MODE (src), vec);
1906 /* Emit code to move a block SRC to a block ORIG_DST of type TYPE,
1907 where SRC is non-consecutive registers represented by a PARALLEL.
1908 SSIZE represents the total size of block ORIG_DST, or -1 if not
1909 known. */
1911 void
1912 emit_group_store (rtx orig_dst, rtx src, tree type ATTRIBUTE_UNUSED, int ssize)
1914 rtx *tmps, dst;
1915 int start, finish, i;
1916 enum machine_mode m = GET_MODE (orig_dst);
1918 gcc_assert (GET_CODE (src) == PARALLEL);
1920 if (!SCALAR_INT_MODE_P (m)
1921 && !MEM_P (orig_dst) && GET_CODE (orig_dst) != CONCAT)
1923 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_dst));
1924 if (imode == BLKmode)
1925 dst = assign_stack_temp (GET_MODE (orig_dst), ssize, 0);
1926 else
1927 dst = gen_reg_rtx (imode);
1928 emit_group_store (dst, src, type, ssize);
1929 if (imode != BLKmode)
1930 dst = gen_lowpart (GET_MODE (orig_dst), dst);
1931 emit_move_insn (orig_dst, dst);
1932 return;
1935 /* Check for a NULL entry, used to indicate that the parameter goes
1936 both on the stack and in registers. */
1937 if (XEXP (XVECEXP (src, 0, 0), 0))
1938 start = 0;
1939 else
1940 start = 1;
1941 finish = XVECLEN (src, 0);
1943 tmps = XALLOCAVEC (rtx, finish);
1945 /* Copy the (probable) hard regs into pseudos. */
1946 for (i = start; i < finish; i++)
1948 rtx reg = XEXP (XVECEXP (src, 0, i), 0);
1949 if (!REG_P (reg) || REGNO (reg) < FIRST_PSEUDO_REGISTER)
1951 tmps[i] = gen_reg_rtx (GET_MODE (reg));
1952 emit_move_insn (tmps[i], reg);
1954 else
1955 tmps[i] = reg;
1958 /* If we won't be storing directly into memory, protect the real destination
1959 from strange tricks we might play. */
1960 dst = orig_dst;
1961 if (GET_CODE (dst) == PARALLEL)
1963 rtx temp;
1965 /* We can get a PARALLEL dst if there is a conditional expression in
1966 a return statement. In that case, the dst and src are the same,
1967 so no action is necessary. */
1968 if (rtx_equal_p (dst, src))
1969 return;
1971 /* It is unclear if we can ever reach here, but we may as well handle
1972 it. Allocate a temporary, and split this into a store/load to/from
1973 the temporary. */
1975 temp = assign_stack_temp (GET_MODE (dst), ssize, 0);
1976 emit_group_store (temp, src, type, ssize);
1977 emit_group_load (dst, temp, type, ssize);
1978 return;
1980 else if (!MEM_P (dst) && GET_CODE (dst) != CONCAT)
1982 enum machine_mode outer = GET_MODE (dst);
1983 enum machine_mode inner;
1984 HOST_WIDE_INT bytepos;
1985 bool done = false;
1986 rtx temp;
1988 if (!REG_P (dst) || REGNO (dst) < FIRST_PSEUDO_REGISTER)
1989 dst = gen_reg_rtx (outer);
1991 /* Make life a bit easier for combine. */
1992 /* If the first element of the vector is the low part
1993 of the destination mode, use a paradoxical subreg to
1994 initialize the destination. */
1995 if (start < finish)
1997 inner = GET_MODE (tmps[start]);
1998 bytepos = subreg_lowpart_offset (inner, outer);
1999 if (INTVAL (XEXP (XVECEXP (src, 0, start), 1)) == bytepos)
2001 temp = simplify_gen_subreg (outer, tmps[start],
2002 inner, 0);
2003 if (temp)
2005 emit_move_insn (dst, temp);
2006 done = true;
2007 start++;
2012 /* If the first element wasn't the low part, try the last. */
2013 if (!done
2014 && start < finish - 1)
2016 inner = GET_MODE (tmps[finish - 1]);
2017 bytepos = subreg_lowpart_offset (inner, outer);
2018 if (INTVAL (XEXP (XVECEXP (src, 0, finish - 1), 1)) == bytepos)
2020 temp = simplify_gen_subreg (outer, tmps[finish - 1],
2021 inner, 0);
2022 if (temp)
2024 emit_move_insn (dst, temp);
2025 done = true;
2026 finish--;
2031 /* Otherwise, simply initialize the result to zero. */
2032 if (!done)
2033 emit_move_insn (dst, CONST0_RTX (outer));
2036 /* Process the pieces. */
2037 for (i = start; i < finish; i++)
2039 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (src, 0, i), 1));
2040 enum machine_mode mode = GET_MODE (tmps[i]);
2041 unsigned int bytelen = GET_MODE_SIZE (mode);
2042 unsigned int adj_bytelen = bytelen;
2043 rtx dest = dst;
2045 /* Handle trailing fragments that run over the size of the struct. */
2046 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2047 adj_bytelen = ssize - bytepos;
2049 if (GET_CODE (dst) == CONCAT)
2051 if (bytepos + adj_bytelen
2052 <= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2053 dest = XEXP (dst, 0);
2054 else if (bytepos >= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2056 bytepos -= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0)));
2057 dest = XEXP (dst, 1);
2059 else
2061 enum machine_mode dest_mode = GET_MODE (dest);
2062 enum machine_mode tmp_mode = GET_MODE (tmps[i]);
2064 gcc_assert (bytepos == 0 && XVECLEN (src, 0));
2066 if (GET_MODE_ALIGNMENT (dest_mode)
2067 >= GET_MODE_ALIGNMENT (tmp_mode))
2069 dest = assign_stack_temp (dest_mode,
2070 GET_MODE_SIZE (dest_mode),
2072 emit_move_insn (adjust_address (dest,
2073 tmp_mode,
2074 bytepos),
2075 tmps[i]);
2076 dst = dest;
2078 else
2080 dest = assign_stack_temp (tmp_mode,
2081 GET_MODE_SIZE (tmp_mode),
2083 emit_move_insn (dest, tmps[i]);
2084 dst = adjust_address (dest, dest_mode, bytepos);
2086 break;
2090 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2092 /* store_bit_field always takes its value from the lsb.
2093 Move the fragment to the lsb if it's not already there. */
2094 if (
2095 #ifdef BLOCK_REG_PADDING
2096 BLOCK_REG_PADDING (GET_MODE (orig_dst), type, i == start)
2097 == (BYTES_BIG_ENDIAN ? upward : downward)
2098 #else
2099 BYTES_BIG_ENDIAN
2100 #endif
2103 int shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
2104 tmps[i] = expand_shift (RSHIFT_EXPR, mode, tmps[i],
2105 build_int_cst (NULL_TREE, shift),
2106 tmps[i], 0);
2108 bytelen = adj_bytelen;
2111 /* Optimize the access just a bit. */
2112 if (MEM_P (dest)
2113 && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (dest))
2114 || MEM_ALIGN (dest) >= GET_MODE_ALIGNMENT (mode))
2115 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
2116 && bytelen == GET_MODE_SIZE (mode))
2117 emit_move_insn (adjust_address (dest, mode, bytepos), tmps[i]);
2118 else
2119 store_bit_field (dest, bytelen * BITS_PER_UNIT, bytepos * BITS_PER_UNIT,
2120 mode, tmps[i]);
2123 /* Copy from the pseudo into the (probable) hard reg. */
2124 if (orig_dst != dst)
2125 emit_move_insn (orig_dst, dst);
2128 /* Generate code to copy a BLKmode object of TYPE out of a
2129 set of registers starting with SRCREG into TGTBLK. If TGTBLK
2130 is null, a stack temporary is created. TGTBLK is returned.
2132 The purpose of this routine is to handle functions that return
2133 BLKmode structures in registers. Some machines (the PA for example)
2134 want to return all small structures in registers regardless of the
2135 structure's alignment. */
2138 copy_blkmode_from_reg (rtx tgtblk, rtx srcreg, tree type)
2140 unsigned HOST_WIDE_INT bytes = int_size_in_bytes (type);
2141 rtx src = NULL, dst = NULL;
2142 unsigned HOST_WIDE_INT bitsize = MIN (TYPE_ALIGN (type), BITS_PER_WORD);
2143 unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0;
2144 enum machine_mode copy_mode;
2146 if (tgtblk == 0)
2148 tgtblk = assign_temp (build_qualified_type (type,
2149 (TYPE_QUALS (type)
2150 | TYPE_QUAL_CONST)),
2151 0, 1, 1);
2152 preserve_temp_slots (tgtblk);
2155 /* This code assumes srcreg is at least a full word. If it isn't, copy it
2156 into a new pseudo which is a full word. */
2158 if (GET_MODE (srcreg) != BLKmode
2159 && GET_MODE_SIZE (GET_MODE (srcreg)) < UNITS_PER_WORD)
2160 srcreg = convert_to_mode (word_mode, srcreg, TYPE_UNSIGNED (type));
2162 /* If the structure doesn't take up a whole number of words, see whether
2163 SRCREG is padded on the left or on the right. If it's on the left,
2164 set PADDING_CORRECTION to the number of bits to skip.
2166 In most ABIs, the structure will be returned at the least end of
2167 the register, which translates to right padding on little-endian
2168 targets and left padding on big-endian targets. The opposite
2169 holds if the structure is returned at the most significant
2170 end of the register. */
2171 if (bytes % UNITS_PER_WORD != 0
2172 && (targetm.calls.return_in_msb (type)
2173 ? !BYTES_BIG_ENDIAN
2174 : BYTES_BIG_ENDIAN))
2175 padding_correction
2176 = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD) * BITS_PER_UNIT));
2178 /* Copy the structure BITSIZE bits at a time. If the target lives in
2179 memory, take care of not reading/writing past its end by selecting
2180 a copy mode suited to BITSIZE. This should always be possible given
2181 how it is computed.
2183 We could probably emit more efficient code for machines which do not use
2184 strict alignment, but it doesn't seem worth the effort at the current
2185 time. */
2187 copy_mode = word_mode;
2188 if (MEM_P (tgtblk))
2190 enum machine_mode mem_mode = mode_for_size (bitsize, MODE_INT, 1);
2191 if (mem_mode != BLKmode)
2192 copy_mode = mem_mode;
2195 for (bitpos = 0, xbitpos = padding_correction;
2196 bitpos < bytes * BITS_PER_UNIT;
2197 bitpos += bitsize, xbitpos += bitsize)
2199 /* We need a new source operand each time xbitpos is on a
2200 word boundary and when xbitpos == padding_correction
2201 (the first time through). */
2202 if (xbitpos % BITS_PER_WORD == 0
2203 || xbitpos == padding_correction)
2204 src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD,
2205 GET_MODE (srcreg));
2207 /* We need a new destination operand each time bitpos is on
2208 a word boundary. */
2209 if (bitpos % BITS_PER_WORD == 0)
2210 dst = operand_subword (tgtblk, bitpos / BITS_PER_WORD, 1, BLKmode);
2212 /* Use xbitpos for the source extraction (right justified) and
2213 bitpos for the destination store (left justified). */
2214 store_bit_field (dst, bitsize, bitpos % BITS_PER_WORD, copy_mode,
2215 extract_bit_field (src, bitsize,
2216 xbitpos % BITS_PER_WORD, 1,
2217 NULL_RTX, copy_mode, copy_mode));
2220 return tgtblk;
2223 /* Add a USE expression for REG to the (possibly empty) list pointed
2224 to by CALL_FUSAGE. REG must denote a hard register. */
2226 void
2227 use_reg (rtx *call_fusage, rtx reg)
2229 gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
2231 *call_fusage
2232 = gen_rtx_EXPR_LIST (VOIDmode,
2233 gen_rtx_USE (VOIDmode, reg), *call_fusage);
2236 /* Add USE expressions to *CALL_FUSAGE for each of NREGS consecutive regs,
2237 starting at REGNO. All of these registers must be hard registers. */
2239 void
2240 use_regs (rtx *call_fusage, int regno, int nregs)
2242 int i;
2244 gcc_assert (regno + nregs <= FIRST_PSEUDO_REGISTER);
2246 for (i = 0; i < nregs; i++)
2247 use_reg (call_fusage, regno_reg_rtx[regno + i]);
2250 /* Add USE expressions to *CALL_FUSAGE for each REG contained in the
2251 PARALLEL REGS. This is for calls that pass values in multiple
2252 non-contiguous locations. The Irix 6 ABI has examples of this. */
2254 void
2255 use_group_regs (rtx *call_fusage, rtx regs)
2257 int i;
2259 for (i = 0; i < XVECLEN (regs, 0); i++)
2261 rtx reg = XEXP (XVECEXP (regs, 0, i), 0);
2263 /* A NULL entry means the parameter goes both on the stack and in
2264 registers. This can also be a MEM for targets that pass values
2265 partially on the stack and partially in registers. */
2266 if (reg != 0 && REG_P (reg))
2267 use_reg (call_fusage, reg);
2272 /* Determine whether the LEN bytes generated by CONSTFUN can be
2273 stored to memory using several move instructions. CONSTFUNDATA is
2274 a pointer which will be passed as argument in every CONSTFUN call.
2275 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2276 a memset operation and false if it's a copy of a constant string.
2277 Return nonzero if a call to store_by_pieces should succeed. */
2280 can_store_by_pieces (unsigned HOST_WIDE_INT len,
2281 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2282 void *constfundata, unsigned int align, bool memsetp)
2284 unsigned HOST_WIDE_INT l;
2285 unsigned int max_size;
2286 HOST_WIDE_INT offset = 0;
2287 enum machine_mode mode, tmode;
2288 enum insn_code icode;
2289 int reverse;
2290 rtx cst;
2292 if (len == 0)
2293 return 1;
2295 if (! (memsetp
2296 ? SET_BY_PIECES_P (len, align)
2297 : STORE_BY_PIECES_P (len, align)))
2298 return 0;
2300 tmode = mode_for_size (STORE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
2301 if (align >= GET_MODE_ALIGNMENT (tmode))
2302 align = GET_MODE_ALIGNMENT (tmode);
2303 else
2305 enum machine_mode xmode;
2307 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
2308 tmode != VOIDmode;
2309 xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
2310 if (GET_MODE_SIZE (tmode) > STORE_MAX_PIECES
2311 || SLOW_UNALIGNED_ACCESS (tmode, align))
2312 break;
2314 align = MAX (align, GET_MODE_ALIGNMENT (xmode));
2317 /* We would first store what we can in the largest integer mode, then go to
2318 successively smaller modes. */
2320 for (reverse = 0;
2321 reverse <= (HAVE_PRE_DECREMENT || HAVE_POST_DECREMENT);
2322 reverse++)
2324 l = len;
2325 mode = VOIDmode;
2326 max_size = STORE_MAX_PIECES + 1;
2327 while (max_size > 1)
2329 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2330 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
2331 if (GET_MODE_SIZE (tmode) < max_size)
2332 mode = tmode;
2334 if (mode == VOIDmode)
2335 break;
2337 icode = optab_handler (mov_optab, mode)->insn_code;
2338 if (icode != CODE_FOR_nothing
2339 && align >= GET_MODE_ALIGNMENT (mode))
2341 unsigned int size = GET_MODE_SIZE (mode);
2343 while (l >= size)
2345 if (reverse)
2346 offset -= size;
2348 cst = (*constfun) (constfundata, offset, mode);
2349 if (!LEGITIMATE_CONSTANT_P (cst))
2350 return 0;
2352 if (!reverse)
2353 offset += size;
2355 l -= size;
2359 max_size = GET_MODE_SIZE (mode);
2362 /* The code above should have handled everything. */
2363 gcc_assert (!l);
2366 return 1;
2369 /* Generate several move instructions to store LEN bytes generated by
2370 CONSTFUN to block TO. (A MEM rtx with BLKmode). CONSTFUNDATA is a
2371 pointer which will be passed as argument in every CONSTFUN call.
2372 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2373 a memset operation and false if it's a copy of a constant string.
2374 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
2375 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
2376 stpcpy. */
2379 store_by_pieces (rtx to, unsigned HOST_WIDE_INT len,
2380 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2381 void *constfundata, unsigned int align, bool memsetp, int endp)
2383 struct store_by_pieces data;
2385 if (len == 0)
2387 gcc_assert (endp != 2);
2388 return to;
2391 gcc_assert (memsetp
2392 ? SET_BY_PIECES_P (len, align)
2393 : STORE_BY_PIECES_P (len, align));
2394 data.constfun = constfun;
2395 data.constfundata = constfundata;
2396 data.len = len;
2397 data.to = to;
2398 store_by_pieces_1 (&data, align);
2399 if (endp)
2401 rtx to1;
2403 gcc_assert (!data.reverse);
2404 if (data.autinc_to)
2406 if (endp == 2)
2408 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
2409 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
2410 else
2411 data.to_addr = copy_addr_to_reg (plus_constant (data.to_addr,
2412 -1));
2414 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
2415 data.offset);
2417 else
2419 if (endp == 2)
2420 --data.offset;
2421 to1 = adjust_address (data.to, QImode, data.offset);
2423 return to1;
2425 else
2426 return data.to;
2429 /* Generate several move instructions to clear LEN bytes of block TO. (A MEM
2430 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2432 static void
2433 clear_by_pieces (rtx to, unsigned HOST_WIDE_INT len, unsigned int align)
2435 struct store_by_pieces data;
2437 if (len == 0)
2438 return;
2440 data.constfun = clear_by_pieces_1;
2441 data.constfundata = NULL;
2442 data.len = len;
2443 data.to = to;
2444 store_by_pieces_1 (&data, align);
2447 /* Callback routine for clear_by_pieces.
2448 Return const0_rtx unconditionally. */
2450 static rtx
2451 clear_by_pieces_1 (void *data ATTRIBUTE_UNUSED,
2452 HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
2453 enum machine_mode mode ATTRIBUTE_UNUSED)
2455 return const0_rtx;
2458 /* Subroutine of clear_by_pieces and store_by_pieces.
2459 Generate several move instructions to store LEN bytes of block TO. (A MEM
2460 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2462 static void
2463 store_by_pieces_1 (struct store_by_pieces *data ATTRIBUTE_UNUSED,
2464 unsigned int align ATTRIBUTE_UNUSED)
2466 rtx to_addr = XEXP (data->to, 0);
2467 unsigned int max_size = STORE_MAX_PIECES + 1;
2468 enum machine_mode mode = VOIDmode, tmode;
2469 enum insn_code icode;
2471 data->offset = 0;
2472 data->to_addr = to_addr;
2473 data->autinc_to
2474 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
2475 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
2477 data->explicit_inc_to = 0;
2478 data->reverse
2479 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
2480 if (data->reverse)
2481 data->offset = data->len;
2483 /* If storing requires more than two move insns,
2484 copy addresses to registers (to make displacements shorter)
2485 and use post-increment if available. */
2486 if (!data->autinc_to
2487 && move_by_pieces_ninsns (data->len, align, max_size) > 2)
2489 /* Determine the main mode we'll be using. */
2490 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2491 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
2492 if (GET_MODE_SIZE (tmode) < max_size)
2493 mode = tmode;
2495 if (USE_STORE_PRE_DECREMENT (mode) && data->reverse && ! data->autinc_to)
2497 data->to_addr = copy_addr_to_reg (plus_constant (to_addr, data->len));
2498 data->autinc_to = 1;
2499 data->explicit_inc_to = -1;
2502 if (USE_STORE_POST_INCREMENT (mode) && ! data->reverse
2503 && ! data->autinc_to)
2505 data->to_addr = copy_addr_to_reg (to_addr);
2506 data->autinc_to = 1;
2507 data->explicit_inc_to = 1;
2510 if ( !data->autinc_to && CONSTANT_P (to_addr))
2511 data->to_addr = copy_addr_to_reg (to_addr);
2514 tmode = mode_for_size (STORE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
2515 if (align >= GET_MODE_ALIGNMENT (tmode))
2516 align = GET_MODE_ALIGNMENT (tmode);
2517 else
2519 enum machine_mode xmode;
2521 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
2522 tmode != VOIDmode;
2523 xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
2524 if (GET_MODE_SIZE (tmode) > STORE_MAX_PIECES
2525 || SLOW_UNALIGNED_ACCESS (tmode, align))
2526 break;
2528 align = MAX (align, GET_MODE_ALIGNMENT (xmode));
2531 /* First store what we can in the largest integer mode, then go to
2532 successively smaller modes. */
2534 while (max_size > 1)
2536 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2537 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
2538 if (GET_MODE_SIZE (tmode) < max_size)
2539 mode = tmode;
2541 if (mode == VOIDmode)
2542 break;
2544 icode = optab_handler (mov_optab, mode)->insn_code;
2545 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
2546 store_by_pieces_2 (GEN_FCN (icode), mode, data);
2548 max_size = GET_MODE_SIZE (mode);
2551 /* The code above should have handled everything. */
2552 gcc_assert (!data->len);
2555 /* Subroutine of store_by_pieces_1. Store as many bytes as appropriate
2556 with move instructions for mode MODE. GENFUN is the gen_... function
2557 to make a move insn for that mode. DATA has all the other info. */
2559 static void
2560 store_by_pieces_2 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
2561 struct store_by_pieces *data)
2563 unsigned int size = GET_MODE_SIZE (mode);
2564 rtx to1, cst;
2566 while (data->len >= size)
2568 if (data->reverse)
2569 data->offset -= size;
2571 if (data->autinc_to)
2572 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
2573 data->offset);
2574 else
2575 to1 = adjust_address (data->to, mode, data->offset);
2577 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
2578 emit_insn (gen_add2_insn (data->to_addr,
2579 GEN_INT (-(HOST_WIDE_INT) size)));
2581 cst = (*data->constfun) (data->constfundata, data->offset, mode);
2582 emit_insn ((*genfun) (to1, cst));
2584 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
2585 emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
2587 if (! data->reverse)
2588 data->offset += size;
2590 data->len -= size;
2594 /* Write zeros through the storage of OBJECT. If OBJECT has BLKmode, SIZE is
2595 its length in bytes. */
2598 clear_storage_hints (rtx object, rtx size, enum block_op_methods method,
2599 unsigned int expected_align, HOST_WIDE_INT expected_size)
2601 enum machine_mode mode = GET_MODE (object);
2602 unsigned int align;
2604 gcc_assert (method == BLOCK_OP_NORMAL || method == BLOCK_OP_TAILCALL);
2606 /* If OBJECT is not BLKmode and SIZE is the same size as its mode,
2607 just move a zero. Otherwise, do this a piece at a time. */
2608 if (mode != BLKmode
2609 && GET_CODE (size) == CONST_INT
2610 && INTVAL (size) == (HOST_WIDE_INT) GET_MODE_SIZE (mode))
2612 rtx zero = CONST0_RTX (mode);
2613 if (zero != NULL)
2615 emit_move_insn (object, zero);
2616 return NULL;
2619 if (COMPLEX_MODE_P (mode))
2621 zero = CONST0_RTX (GET_MODE_INNER (mode));
2622 if (zero != NULL)
2624 write_complex_part (object, zero, 0);
2625 write_complex_part (object, zero, 1);
2626 return NULL;
2631 if (size == const0_rtx)
2632 return NULL;
2634 align = MEM_ALIGN (object);
2636 if (GET_CODE (size) == CONST_INT
2637 && CLEAR_BY_PIECES_P (INTVAL (size), align))
2638 clear_by_pieces (object, INTVAL (size), align);
2639 else if (set_storage_via_setmem (object, size, const0_rtx, align,
2640 expected_align, expected_size))
2642 else
2643 return set_storage_via_libcall (object, size, const0_rtx,
2644 method == BLOCK_OP_TAILCALL);
2646 return NULL;
2650 clear_storage (rtx object, rtx size, enum block_op_methods method)
2652 return clear_storage_hints (object, size, method, 0, -1);
2656 /* A subroutine of clear_storage. Expand a call to memset.
2657 Return the return value of memset, 0 otherwise. */
2660 set_storage_via_libcall (rtx object, rtx size, rtx val, bool tailcall)
2662 tree call_expr, fn, object_tree, size_tree, val_tree;
2663 enum machine_mode size_mode;
2664 rtx retval;
2666 /* Emit code to copy OBJECT and SIZE into new pseudos. We can then
2667 place those into new pseudos into a VAR_DECL and use them later. */
2669 object = copy_to_mode_reg (Pmode, XEXP (object, 0));
2671 size_mode = TYPE_MODE (sizetype);
2672 size = convert_to_mode (size_mode, size, 1);
2673 size = copy_to_mode_reg (size_mode, size);
2675 /* It is incorrect to use the libcall calling conventions to call
2676 memset in this context. This could be a user call to memset and
2677 the user may wish to examine the return value from memset. For
2678 targets where libcalls and normal calls have different conventions
2679 for returning pointers, we could end up generating incorrect code. */
2681 object_tree = make_tree (ptr_type_node, object);
2682 if (GET_CODE (val) != CONST_INT)
2683 val = convert_to_mode (TYPE_MODE (integer_type_node), val, 1);
2684 size_tree = make_tree (sizetype, size);
2685 val_tree = make_tree (integer_type_node, val);
2687 fn = clear_storage_libcall_fn (true);
2688 call_expr = build_call_expr (fn, 3,
2689 object_tree, integer_zero_node, size_tree);
2690 CALL_EXPR_TAILCALL (call_expr) = tailcall;
2692 retval = expand_normal (call_expr);
2694 return retval;
2697 /* A subroutine of set_storage_via_libcall. Create the tree node
2698 for the function we use for block clears. The first time FOR_CALL
2699 is true, we call assemble_external. */
2701 static GTY(()) tree block_clear_fn;
2703 void
2704 init_block_clear_fn (const char *asmspec)
2706 if (!block_clear_fn)
2708 tree fn, args;
2710 fn = get_identifier ("memset");
2711 args = build_function_type_list (ptr_type_node, ptr_type_node,
2712 integer_type_node, sizetype,
2713 NULL_TREE);
2715 fn = build_decl (FUNCTION_DECL, fn, args);
2716 DECL_EXTERNAL (fn) = 1;
2717 TREE_PUBLIC (fn) = 1;
2718 DECL_ARTIFICIAL (fn) = 1;
2719 TREE_NOTHROW (fn) = 1;
2720 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
2721 DECL_VISIBILITY_SPECIFIED (fn) = 1;
2723 block_clear_fn = fn;
2726 if (asmspec)
2727 set_user_assembler_name (block_clear_fn, asmspec);
2730 static tree
2731 clear_storage_libcall_fn (int for_call)
2733 static bool emitted_extern;
2735 if (!block_clear_fn)
2736 init_block_clear_fn (NULL);
2738 if (for_call && !emitted_extern)
2740 emitted_extern = true;
2741 make_decl_rtl (block_clear_fn);
2742 assemble_external (block_clear_fn);
2745 return block_clear_fn;
2748 /* Expand a setmem pattern; return true if successful. */
2750 bool
2751 set_storage_via_setmem (rtx object, rtx size, rtx val, unsigned int align,
2752 unsigned int expected_align, HOST_WIDE_INT expected_size)
2754 /* Try the most limited insn first, because there's no point
2755 including more than one in the machine description unless
2756 the more limited one has some advantage. */
2758 rtx opalign = GEN_INT (align / BITS_PER_UNIT);
2759 enum machine_mode mode;
2761 if (expected_align < align)
2762 expected_align = align;
2764 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
2765 mode = GET_MODE_WIDER_MODE (mode))
2767 enum insn_code code = setmem_optab[(int) mode];
2768 insn_operand_predicate_fn pred;
2770 if (code != CODE_FOR_nothing
2771 /* We don't need MODE to be narrower than
2772 BITS_PER_HOST_WIDE_INT here because if SIZE is less than
2773 the mode mask, as it is returned by the macro, it will
2774 definitely be less than the actual mode mask. */
2775 && ((GET_CODE (size) == CONST_INT
2776 && ((unsigned HOST_WIDE_INT) INTVAL (size)
2777 <= (GET_MODE_MASK (mode) >> 1)))
2778 || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD)
2779 && ((pred = insn_data[(int) code].operand[0].predicate) == 0
2780 || (*pred) (object, BLKmode))
2781 && ((pred = insn_data[(int) code].operand[3].predicate) == 0
2782 || (*pred) (opalign, VOIDmode)))
2784 rtx opsize, opchar;
2785 enum machine_mode char_mode;
2786 rtx last = get_last_insn ();
2787 rtx pat;
2789 opsize = convert_to_mode (mode, size, 1);
2790 pred = insn_data[(int) code].operand[1].predicate;
2791 if (pred != 0 && ! (*pred) (opsize, mode))
2792 opsize = copy_to_mode_reg (mode, opsize);
2794 opchar = val;
2795 char_mode = insn_data[(int) code].operand[2].mode;
2796 if (char_mode != VOIDmode)
2798 opchar = convert_to_mode (char_mode, opchar, 1);
2799 pred = insn_data[(int) code].operand[2].predicate;
2800 if (pred != 0 && ! (*pred) (opchar, char_mode))
2801 opchar = copy_to_mode_reg (char_mode, opchar);
2804 if (insn_data[(int) code].n_operands == 4)
2805 pat = GEN_FCN ((int) code) (object, opsize, opchar, opalign);
2806 else
2807 pat = GEN_FCN ((int) code) (object, opsize, opchar, opalign,
2808 GEN_INT (expected_align
2809 / BITS_PER_UNIT),
2810 GEN_INT (expected_size));
2811 if (pat)
2813 emit_insn (pat);
2814 return true;
2816 else
2817 delete_insns_since (last);
2821 return false;
2825 /* Write to one of the components of the complex value CPLX. Write VAL to
2826 the real part if IMAG_P is false, and the imaginary part if its true. */
2828 static void
2829 write_complex_part (rtx cplx, rtx val, bool imag_p)
2831 enum machine_mode cmode;
2832 enum machine_mode imode;
2833 unsigned ibitsize;
2835 if (GET_CODE (cplx) == CONCAT)
2837 emit_move_insn (XEXP (cplx, imag_p), val);
2838 return;
2841 cmode = GET_MODE (cplx);
2842 imode = GET_MODE_INNER (cmode);
2843 ibitsize = GET_MODE_BITSIZE (imode);
2845 /* For MEMs simplify_gen_subreg may generate an invalid new address
2846 because, e.g., the original address is considered mode-dependent
2847 by the target, which restricts simplify_subreg from invoking
2848 adjust_address_nv. Instead of preparing fallback support for an
2849 invalid address, we call adjust_address_nv directly. */
2850 if (MEM_P (cplx))
2852 emit_move_insn (adjust_address_nv (cplx, imode,
2853 imag_p ? GET_MODE_SIZE (imode) : 0),
2854 val);
2855 return;
2858 /* If the sub-object is at least word sized, then we know that subregging
2859 will work. This special case is important, since store_bit_field
2860 wants to operate on integer modes, and there's rarely an OImode to
2861 correspond to TCmode. */
2862 if (ibitsize >= BITS_PER_WORD
2863 /* For hard regs we have exact predicates. Assume we can split
2864 the original object if it spans an even number of hard regs.
2865 This special case is important for SCmode on 64-bit platforms
2866 where the natural size of floating-point regs is 32-bit. */
2867 || (REG_P (cplx)
2868 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2869 && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0))
2871 rtx part = simplify_gen_subreg (imode, cplx, cmode,
2872 imag_p ? GET_MODE_SIZE (imode) : 0);
2873 if (part)
2875 emit_move_insn (part, val);
2876 return;
2878 else
2879 /* simplify_gen_subreg may fail for sub-word MEMs. */
2880 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2883 store_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0, imode, val);
2886 /* Extract one of the components of the complex value CPLX. Extract the
2887 real part if IMAG_P is false, and the imaginary part if it's true. */
2889 static rtx
2890 read_complex_part (rtx cplx, bool imag_p)
2892 enum machine_mode cmode, imode;
2893 unsigned ibitsize;
2895 if (GET_CODE (cplx) == CONCAT)
2896 return XEXP (cplx, imag_p);
2898 cmode = GET_MODE (cplx);
2899 imode = GET_MODE_INNER (cmode);
2900 ibitsize = GET_MODE_BITSIZE (imode);
2902 /* Special case reads from complex constants that got spilled to memory. */
2903 if (MEM_P (cplx) && GET_CODE (XEXP (cplx, 0)) == SYMBOL_REF)
2905 tree decl = SYMBOL_REF_DECL (XEXP (cplx, 0));
2906 if (decl && TREE_CODE (decl) == COMPLEX_CST)
2908 tree part = imag_p ? TREE_IMAGPART (decl) : TREE_REALPART (decl);
2909 if (CONSTANT_CLASS_P (part))
2910 return expand_expr (part, NULL_RTX, imode, EXPAND_NORMAL);
2914 /* For MEMs simplify_gen_subreg may generate an invalid new address
2915 because, e.g., the original address is considered mode-dependent
2916 by the target, which restricts simplify_subreg from invoking
2917 adjust_address_nv. Instead of preparing fallback support for an
2918 invalid address, we call adjust_address_nv directly. */
2919 if (MEM_P (cplx))
2920 return adjust_address_nv (cplx, imode,
2921 imag_p ? GET_MODE_SIZE (imode) : 0);
2923 /* If the sub-object is at least word sized, then we know that subregging
2924 will work. This special case is important, since extract_bit_field
2925 wants to operate on integer modes, and there's rarely an OImode to
2926 correspond to TCmode. */
2927 if (ibitsize >= BITS_PER_WORD
2928 /* For hard regs we have exact predicates. Assume we can split
2929 the original object if it spans an even number of hard regs.
2930 This special case is important for SCmode on 64-bit platforms
2931 where the natural size of floating-point regs is 32-bit. */
2932 || (REG_P (cplx)
2933 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2934 && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0))
2936 rtx ret = simplify_gen_subreg (imode, cplx, cmode,
2937 imag_p ? GET_MODE_SIZE (imode) : 0);
2938 if (ret)
2939 return ret;
2940 else
2941 /* simplify_gen_subreg may fail for sub-word MEMs. */
2942 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2945 return extract_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0,
2946 true, NULL_RTX, imode, imode);
2949 /* A subroutine of emit_move_insn_1. Yet another lowpart generator.
2950 NEW_MODE and OLD_MODE are the same size. Return NULL if X cannot be
2951 represented in NEW_MODE. If FORCE is true, this will never happen, as
2952 we'll force-create a SUBREG if needed. */
2954 static rtx
2955 emit_move_change_mode (enum machine_mode new_mode,
2956 enum machine_mode old_mode, rtx x, bool force)
2958 rtx ret;
2960 if (push_operand (x, GET_MODE (x)))
2962 ret = gen_rtx_MEM (new_mode, XEXP (x, 0));
2963 MEM_COPY_ATTRIBUTES (ret, x);
2965 else if (MEM_P (x))
2967 /* We don't have to worry about changing the address since the
2968 size in bytes is supposed to be the same. */
2969 if (reload_in_progress)
2971 /* Copy the MEM to change the mode and move any
2972 substitutions from the old MEM to the new one. */
2973 ret = adjust_address_nv (x, new_mode, 0);
2974 copy_replacements (x, ret);
2976 else
2977 ret = adjust_address (x, new_mode, 0);
2979 else
2981 /* Note that we do want simplify_subreg's behavior of validating
2982 that the new mode is ok for a hard register. If we were to use
2983 simplify_gen_subreg, we would create the subreg, but would
2984 probably run into the target not being able to implement it. */
2985 /* Except, of course, when FORCE is true, when this is exactly what
2986 we want. Which is needed for CCmodes on some targets. */
2987 if (force)
2988 ret = simplify_gen_subreg (new_mode, x, old_mode, 0);
2989 else
2990 ret = simplify_subreg (new_mode, x, old_mode, 0);
2993 return ret;
2996 /* A subroutine of emit_move_insn_1. Generate a move from Y into X using
2997 an integer mode of the same size as MODE. Returns the instruction
2998 emitted, or NULL if such a move could not be generated. */
3000 static rtx
3001 emit_move_via_integer (enum machine_mode mode, rtx x, rtx y, bool force)
3003 enum machine_mode imode;
3004 enum insn_code code;
3006 /* There must exist a mode of the exact size we require. */
3007 imode = int_mode_for_mode (mode);
3008 if (imode == BLKmode)
3009 return NULL_RTX;
3011 /* The target must support moves in this mode. */
3012 code = optab_handler (mov_optab, imode)->insn_code;
3013 if (code == CODE_FOR_nothing)
3014 return NULL_RTX;
3016 x = emit_move_change_mode (imode, mode, x, force);
3017 if (x == NULL_RTX)
3018 return NULL_RTX;
3019 y = emit_move_change_mode (imode, mode, y, force);
3020 if (y == NULL_RTX)
3021 return NULL_RTX;
3022 return emit_insn (GEN_FCN (code) (x, y));
3025 /* A subroutine of emit_move_insn_1. X is a push_operand in MODE.
3026 Return an equivalent MEM that does not use an auto-increment. */
3028 static rtx
3029 emit_move_resolve_push (enum machine_mode mode, rtx x)
3031 enum rtx_code code = GET_CODE (XEXP (x, 0));
3032 HOST_WIDE_INT adjust;
3033 rtx temp;
3035 adjust = GET_MODE_SIZE (mode);
3036 #ifdef PUSH_ROUNDING
3037 adjust = PUSH_ROUNDING (adjust);
3038 #endif
3039 if (code == PRE_DEC || code == POST_DEC)
3040 adjust = -adjust;
3041 else if (code == PRE_MODIFY || code == POST_MODIFY)
3043 rtx expr = XEXP (XEXP (x, 0), 1);
3044 HOST_WIDE_INT val;
3046 gcc_assert (GET_CODE (expr) == PLUS || GET_CODE (expr) == MINUS);
3047 gcc_assert (GET_CODE (XEXP (expr, 1)) == CONST_INT);
3048 val = INTVAL (XEXP (expr, 1));
3049 if (GET_CODE (expr) == MINUS)
3050 val = -val;
3051 gcc_assert (adjust == val || adjust == -val);
3052 adjust = val;
3055 /* Do not use anti_adjust_stack, since we don't want to update
3056 stack_pointer_delta. */
3057 temp = expand_simple_binop (Pmode, PLUS, stack_pointer_rtx,
3058 GEN_INT (adjust), stack_pointer_rtx,
3059 0, OPTAB_LIB_WIDEN);
3060 if (temp != stack_pointer_rtx)
3061 emit_move_insn (stack_pointer_rtx, temp);
3063 switch (code)
3065 case PRE_INC:
3066 case PRE_DEC:
3067 case PRE_MODIFY:
3068 temp = stack_pointer_rtx;
3069 break;
3070 case POST_INC:
3071 case POST_DEC:
3072 case POST_MODIFY:
3073 temp = plus_constant (stack_pointer_rtx, -adjust);
3074 break;
3075 default:
3076 gcc_unreachable ();
3079 return replace_equiv_address (x, temp);
3082 /* A subroutine of emit_move_complex. Generate a move from Y into X.
3083 X is known to satisfy push_operand, and MODE is known to be complex.
3084 Returns the last instruction emitted. */
3087 emit_move_complex_push (enum machine_mode mode, rtx x, rtx y)
3089 enum machine_mode submode = GET_MODE_INNER (mode);
3090 bool imag_first;
3092 #ifdef PUSH_ROUNDING
3093 unsigned int submodesize = GET_MODE_SIZE (submode);
3095 /* In case we output to the stack, but the size is smaller than the
3096 machine can push exactly, we need to use move instructions. */
3097 if (PUSH_ROUNDING (submodesize) != submodesize)
3099 x = emit_move_resolve_push (mode, x);
3100 return emit_move_insn (x, y);
3102 #endif
3104 /* Note that the real part always precedes the imag part in memory
3105 regardless of machine's endianness. */
3106 switch (GET_CODE (XEXP (x, 0)))
3108 case PRE_DEC:
3109 case POST_DEC:
3110 imag_first = true;
3111 break;
3112 case PRE_INC:
3113 case POST_INC:
3114 imag_first = false;
3115 break;
3116 default:
3117 gcc_unreachable ();
3120 emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3121 read_complex_part (y, imag_first));
3122 return emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3123 read_complex_part (y, !imag_first));
3126 /* A subroutine of emit_move_complex. Perform the move from Y to X
3127 via two moves of the parts. Returns the last instruction emitted. */
3130 emit_move_complex_parts (rtx x, rtx y)
3132 /* Show the output dies here. This is necessary for SUBREGs
3133 of pseudos since we cannot track their lifetimes correctly;
3134 hard regs shouldn't appear here except as return values. */
3135 if (!reload_completed && !reload_in_progress
3136 && REG_P (x) && !reg_overlap_mentioned_p (x, y))
3137 emit_clobber (x);
3139 write_complex_part (x, read_complex_part (y, false), false);
3140 write_complex_part (x, read_complex_part (y, true), true);
3142 return get_last_insn ();
3145 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3146 MODE is known to be complex. Returns the last instruction emitted. */
3148 static rtx
3149 emit_move_complex (enum machine_mode mode, rtx x, rtx y)
3151 bool try_int;
3153 /* Need to take special care for pushes, to maintain proper ordering
3154 of the data, and possibly extra padding. */
3155 if (push_operand (x, mode))
3156 return emit_move_complex_push (mode, x, y);
3158 /* See if we can coerce the target into moving both values at once. */
3160 /* Move floating point as parts. */
3161 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
3162 && optab_handler (mov_optab, GET_MODE_INNER (mode))->insn_code != CODE_FOR_nothing)
3163 try_int = false;
3164 /* Not possible if the values are inherently not adjacent. */
3165 else if (GET_CODE (x) == CONCAT || GET_CODE (y) == CONCAT)
3166 try_int = false;
3167 /* Is possible if both are registers (or subregs of registers). */
3168 else if (register_operand (x, mode) && register_operand (y, mode))
3169 try_int = true;
3170 /* If one of the operands is a memory, and alignment constraints
3171 are friendly enough, we may be able to do combined memory operations.
3172 We do not attempt this if Y is a constant because that combination is
3173 usually better with the by-parts thing below. */
3174 else if ((MEM_P (x) ? !CONSTANT_P (y) : MEM_P (y))
3175 && (!STRICT_ALIGNMENT
3176 || get_mode_alignment (mode) == BIGGEST_ALIGNMENT))
3177 try_int = true;
3178 else
3179 try_int = false;
3181 if (try_int)
3183 rtx ret;
3185 /* For memory to memory moves, optimal behavior can be had with the
3186 existing block move logic. */
3187 if (MEM_P (x) && MEM_P (y))
3189 emit_block_move (x, y, GEN_INT (GET_MODE_SIZE (mode)),
3190 BLOCK_OP_NO_LIBCALL);
3191 return get_last_insn ();
3194 ret = emit_move_via_integer (mode, x, y, true);
3195 if (ret)
3196 return ret;
3199 return emit_move_complex_parts (x, y);
3202 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3203 MODE is known to be MODE_CC. Returns the last instruction emitted. */
3205 static rtx
3206 emit_move_ccmode (enum machine_mode mode, rtx x, rtx y)
3208 rtx ret;
3210 /* Assume all MODE_CC modes are equivalent; if we have movcc, use it. */
3211 if (mode != CCmode)
3213 enum insn_code code = optab_handler (mov_optab, CCmode)->insn_code;
3214 if (code != CODE_FOR_nothing)
3216 x = emit_move_change_mode (CCmode, mode, x, true);
3217 y = emit_move_change_mode (CCmode, mode, y, true);
3218 return emit_insn (GEN_FCN (code) (x, y));
3222 /* Otherwise, find the MODE_INT mode of the same width. */
3223 ret = emit_move_via_integer (mode, x, y, false);
3224 gcc_assert (ret != NULL);
3225 return ret;
3228 /* Return true if word I of OP lies entirely in the
3229 undefined bits of a paradoxical subreg. */
3231 static bool
3232 undefined_operand_subword_p (const_rtx op, int i)
3234 enum machine_mode innermode, innermostmode;
3235 int offset;
3236 if (GET_CODE (op) != SUBREG)
3237 return false;
3238 innermode = GET_MODE (op);
3239 innermostmode = GET_MODE (SUBREG_REG (op));
3240 offset = i * UNITS_PER_WORD + SUBREG_BYTE (op);
3241 /* The SUBREG_BYTE represents offset, as if the value were stored in
3242 memory, except for a paradoxical subreg where we define
3243 SUBREG_BYTE to be 0; undo this exception as in
3244 simplify_subreg. */
3245 if (SUBREG_BYTE (op) == 0
3246 && GET_MODE_SIZE (innermostmode) < GET_MODE_SIZE (innermode))
3248 int difference = (GET_MODE_SIZE (innermostmode) - GET_MODE_SIZE (innermode));
3249 if (WORDS_BIG_ENDIAN)
3250 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
3251 if (BYTES_BIG_ENDIAN)
3252 offset += difference % UNITS_PER_WORD;
3254 if (offset >= GET_MODE_SIZE (innermostmode)
3255 || offset <= -GET_MODE_SIZE (word_mode))
3256 return true;
3257 return false;
3260 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3261 MODE is any multi-word or full-word mode that lacks a move_insn
3262 pattern. Note that you will get better code if you define such
3263 patterns, even if they must turn into multiple assembler instructions. */
3265 static rtx
3266 emit_move_multi_word (enum machine_mode mode, rtx x, rtx y)
3268 rtx last_insn = 0;
3269 rtx seq, inner;
3270 bool need_clobber;
3271 int i;
3273 gcc_assert (GET_MODE_SIZE (mode) >= UNITS_PER_WORD);
3275 /* If X is a push on the stack, do the push now and replace
3276 X with a reference to the stack pointer. */
3277 if (push_operand (x, mode))
3278 x = emit_move_resolve_push (mode, x);
3280 /* If we are in reload, see if either operand is a MEM whose address
3281 is scheduled for replacement. */
3282 if (reload_in_progress && MEM_P (x)
3283 && (inner = find_replacement (&XEXP (x, 0))) != XEXP (x, 0))
3284 x = replace_equiv_address_nv (x, inner);
3285 if (reload_in_progress && MEM_P (y)
3286 && (inner = find_replacement (&XEXP (y, 0))) != XEXP (y, 0))
3287 y = replace_equiv_address_nv (y, inner);
3289 start_sequence ();
3291 need_clobber = false;
3292 for (i = 0;
3293 i < (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
3294 i++)
3296 rtx xpart = operand_subword (x, i, 1, mode);
3297 rtx ypart;
3299 /* Do not generate code for a move if it would come entirely
3300 from the undefined bits of a paradoxical subreg. */
3301 if (undefined_operand_subword_p (y, i))
3302 continue;
3304 ypart = operand_subword (y, i, 1, mode);
3306 /* If we can't get a part of Y, put Y into memory if it is a
3307 constant. Otherwise, force it into a register. Then we must
3308 be able to get a part of Y. */
3309 if (ypart == 0 && CONSTANT_P (y))
3311 y = use_anchored_address (force_const_mem (mode, y));
3312 ypart = operand_subword (y, i, 1, mode);
3314 else if (ypart == 0)
3315 ypart = operand_subword_force (y, i, mode);
3317 gcc_assert (xpart && ypart);
3319 need_clobber |= (GET_CODE (xpart) == SUBREG);
3321 last_insn = emit_move_insn (xpart, ypart);
3324 seq = get_insns ();
3325 end_sequence ();
3327 /* Show the output dies here. This is necessary for SUBREGs
3328 of pseudos since we cannot track their lifetimes correctly;
3329 hard regs shouldn't appear here except as return values.
3330 We never want to emit such a clobber after reload. */
3331 if (x != y
3332 && ! (reload_in_progress || reload_completed)
3333 && need_clobber != 0)
3334 emit_clobber (x);
3336 emit_insn (seq);
3338 return last_insn;
3341 /* Low level part of emit_move_insn.
3342 Called just like emit_move_insn, but assumes X and Y
3343 are basically valid. */
3346 emit_move_insn_1 (rtx x, rtx y)
3348 enum machine_mode mode = GET_MODE (x);
3349 enum insn_code code;
3351 gcc_assert ((unsigned int) mode < (unsigned int) MAX_MACHINE_MODE);
3353 code = optab_handler (mov_optab, mode)->insn_code;
3354 if (code != CODE_FOR_nothing)
3355 return emit_insn (GEN_FCN (code) (x, y));
3357 /* Expand complex moves by moving real part and imag part. */
3358 if (COMPLEX_MODE_P (mode))
3359 return emit_move_complex (mode, x, y);
3361 if (GET_MODE_CLASS (mode) == MODE_DECIMAL_FLOAT
3362 || ALL_FIXED_POINT_MODE_P (mode))
3364 rtx result = emit_move_via_integer (mode, x, y, true);
3366 /* If we can't find an integer mode, use multi words. */
3367 if (result)
3368 return result;
3369 else
3370 return emit_move_multi_word (mode, x, y);
3373 if (GET_MODE_CLASS (mode) == MODE_CC)
3374 return emit_move_ccmode (mode, x, y);
3376 /* Try using a move pattern for the corresponding integer mode. This is
3377 only safe when simplify_subreg can convert MODE constants into integer
3378 constants. At present, it can only do this reliably if the value
3379 fits within a HOST_WIDE_INT. */
3380 if (!CONSTANT_P (y) || GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
3382 rtx ret = emit_move_via_integer (mode, x, y, false);
3383 if (ret)
3384 return ret;
3387 return emit_move_multi_word (mode, x, y);
3390 /* Generate code to copy Y into X.
3391 Both Y and X must have the same mode, except that
3392 Y can be a constant with VOIDmode.
3393 This mode cannot be BLKmode; use emit_block_move for that.
3395 Return the last instruction emitted. */
3398 emit_move_insn (rtx x, rtx y)
3400 enum machine_mode mode = GET_MODE (x);
3401 rtx y_cst = NULL_RTX;
3402 rtx last_insn, set;
3404 gcc_assert (mode != BLKmode
3405 && (GET_MODE (y) == mode || GET_MODE (y) == VOIDmode));
3407 if (CONSTANT_P (y))
3409 if (optimize
3410 && SCALAR_FLOAT_MODE_P (GET_MODE (x))
3411 && (last_insn = compress_float_constant (x, y)))
3412 return last_insn;
3414 y_cst = y;
3416 if (!LEGITIMATE_CONSTANT_P (y))
3418 y = force_const_mem (mode, y);
3420 /* If the target's cannot_force_const_mem prevented the spill,
3421 assume that the target's move expanders will also take care
3422 of the non-legitimate constant. */
3423 if (!y)
3424 y = y_cst;
3425 else
3426 y = use_anchored_address (y);
3430 /* If X or Y are memory references, verify that their addresses are valid
3431 for the machine. */
3432 if (MEM_P (x)
3433 && (! memory_address_p (GET_MODE (x), XEXP (x, 0))
3434 && ! push_operand (x, GET_MODE (x))))
3435 x = validize_mem (x);
3437 if (MEM_P (y)
3438 && ! memory_address_p (GET_MODE (y), XEXP (y, 0)))
3439 y = validize_mem (y);
3441 gcc_assert (mode != BLKmode);
3443 last_insn = emit_move_insn_1 (x, y);
3445 if (y_cst && REG_P (x)
3446 && (set = single_set (last_insn)) != NULL_RTX
3447 && SET_DEST (set) == x
3448 && ! rtx_equal_p (y_cst, SET_SRC (set)))
3449 set_unique_reg_note (last_insn, REG_EQUAL, y_cst);
3451 return last_insn;
3454 /* If Y is representable exactly in a narrower mode, and the target can
3455 perform the extension directly from constant or memory, then emit the
3456 move as an extension. */
3458 static rtx
3459 compress_float_constant (rtx x, rtx y)
3461 enum machine_mode dstmode = GET_MODE (x);
3462 enum machine_mode orig_srcmode = GET_MODE (y);
3463 enum machine_mode srcmode;
3464 REAL_VALUE_TYPE r;
3465 int oldcost, newcost;
3466 bool speed = optimize_insn_for_speed_p ();
3468 REAL_VALUE_FROM_CONST_DOUBLE (r, y);
3470 if (LEGITIMATE_CONSTANT_P (y))
3471 oldcost = rtx_cost (y, SET, speed);
3472 else
3473 oldcost = rtx_cost (force_const_mem (dstmode, y), SET, speed);
3475 for (srcmode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_srcmode));
3476 srcmode != orig_srcmode;
3477 srcmode = GET_MODE_WIDER_MODE (srcmode))
3479 enum insn_code ic;
3480 rtx trunc_y, last_insn;
3482 /* Skip if the target can't extend this way. */
3483 ic = can_extend_p (dstmode, srcmode, 0);
3484 if (ic == CODE_FOR_nothing)
3485 continue;
3487 /* Skip if the narrowed value isn't exact. */
3488 if (! exact_real_truncate (srcmode, &r))
3489 continue;
3491 trunc_y = CONST_DOUBLE_FROM_REAL_VALUE (r, srcmode);
3493 if (LEGITIMATE_CONSTANT_P (trunc_y))
3495 /* Skip if the target needs extra instructions to perform
3496 the extension. */
3497 if (! (*insn_data[ic].operand[1].predicate) (trunc_y, srcmode))
3498 continue;
3499 /* This is valid, but may not be cheaper than the original. */
3500 newcost = rtx_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y), SET, speed);
3501 if (oldcost < newcost)
3502 continue;
3504 else if (float_extend_from_mem[dstmode][srcmode])
3506 trunc_y = force_const_mem (srcmode, trunc_y);
3507 /* This is valid, but may not be cheaper than the original. */
3508 newcost = rtx_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y), SET, speed);
3509 if (oldcost < newcost)
3510 continue;
3511 trunc_y = validize_mem (trunc_y);
3513 else
3514 continue;
3516 /* For CSE's benefit, force the compressed constant pool entry
3517 into a new pseudo. This constant may be used in different modes,
3518 and if not, combine will put things back together for us. */
3519 trunc_y = force_reg (srcmode, trunc_y);
3520 emit_unop_insn (ic, x, trunc_y, UNKNOWN);
3521 last_insn = get_last_insn ();
3523 if (REG_P (x))
3524 set_unique_reg_note (last_insn, REG_EQUAL, y);
3526 return last_insn;
3529 return NULL_RTX;
3532 /* Pushing data onto the stack. */
3534 /* Push a block of length SIZE (perhaps variable)
3535 and return an rtx to address the beginning of the block.
3536 The value may be virtual_outgoing_args_rtx.
3538 EXTRA is the number of bytes of padding to push in addition to SIZE.
3539 BELOW nonzero means this padding comes at low addresses;
3540 otherwise, the padding comes at high addresses. */
3543 push_block (rtx size, int extra, int below)
3545 rtx temp;
3547 size = convert_modes (Pmode, ptr_mode, size, 1);
3548 if (CONSTANT_P (size))
3549 anti_adjust_stack (plus_constant (size, extra));
3550 else if (REG_P (size) && extra == 0)
3551 anti_adjust_stack (size);
3552 else
3554 temp = copy_to_mode_reg (Pmode, size);
3555 if (extra != 0)
3556 temp = expand_binop (Pmode, add_optab, temp, GEN_INT (extra),
3557 temp, 0, OPTAB_LIB_WIDEN);
3558 anti_adjust_stack (temp);
3561 #ifndef STACK_GROWS_DOWNWARD
3562 if (0)
3563 #else
3564 if (1)
3565 #endif
3567 temp = virtual_outgoing_args_rtx;
3568 if (extra != 0 && below)
3569 temp = plus_constant (temp, extra);
3571 else
3573 if (GET_CODE (size) == CONST_INT)
3574 temp = plus_constant (virtual_outgoing_args_rtx,
3575 -INTVAL (size) - (below ? 0 : extra));
3576 else if (extra != 0 && !below)
3577 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3578 negate_rtx (Pmode, plus_constant (size, extra)));
3579 else
3580 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3581 negate_rtx (Pmode, size));
3584 return memory_address (GET_CLASS_NARROWEST_MODE (MODE_INT), temp);
3587 #ifdef PUSH_ROUNDING
3589 /* Emit single push insn. */
3591 static void
3592 emit_single_push_insn (enum machine_mode mode, rtx x, tree type)
3594 rtx dest_addr;
3595 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode));
3596 rtx dest;
3597 enum insn_code icode;
3598 insn_operand_predicate_fn pred;
3600 stack_pointer_delta += PUSH_ROUNDING (GET_MODE_SIZE (mode));
3601 /* If there is push pattern, use it. Otherwise try old way of throwing
3602 MEM representing push operation to move expander. */
3603 icode = optab_handler (push_optab, mode)->insn_code;
3604 if (icode != CODE_FOR_nothing)
3606 if (((pred = insn_data[(int) icode].operand[0].predicate)
3607 && !((*pred) (x, mode))))
3608 x = force_reg (mode, x);
3609 emit_insn (GEN_FCN (icode) (x));
3610 return;
3612 if (GET_MODE_SIZE (mode) == rounded_size)
3613 dest_addr = gen_rtx_fmt_e (STACK_PUSH_CODE, Pmode, stack_pointer_rtx);
3614 /* If we are to pad downward, adjust the stack pointer first and
3615 then store X into the stack location using an offset. This is
3616 because emit_move_insn does not know how to pad; it does not have
3617 access to type. */
3618 else if (FUNCTION_ARG_PADDING (mode, type) == downward)
3620 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode);
3621 HOST_WIDE_INT offset;
3623 emit_move_insn (stack_pointer_rtx,
3624 expand_binop (Pmode,
3625 #ifdef STACK_GROWS_DOWNWARD
3626 sub_optab,
3627 #else
3628 add_optab,
3629 #endif
3630 stack_pointer_rtx,
3631 GEN_INT (rounded_size),
3632 NULL_RTX, 0, OPTAB_LIB_WIDEN));
3634 offset = (HOST_WIDE_INT) padding_size;
3635 #ifdef STACK_GROWS_DOWNWARD
3636 if (STACK_PUSH_CODE == POST_DEC)
3637 /* We have already decremented the stack pointer, so get the
3638 previous value. */
3639 offset += (HOST_WIDE_INT) rounded_size;
3640 #else
3641 if (STACK_PUSH_CODE == POST_INC)
3642 /* We have already incremented the stack pointer, so get the
3643 previous value. */
3644 offset -= (HOST_WIDE_INT) rounded_size;
3645 #endif
3646 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT (offset));
3648 else
3650 #ifdef STACK_GROWS_DOWNWARD
3651 /* ??? This seems wrong if STACK_PUSH_CODE == POST_DEC. */
3652 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3653 GEN_INT (-(HOST_WIDE_INT) rounded_size));
3654 #else
3655 /* ??? This seems wrong if STACK_PUSH_CODE == POST_INC. */
3656 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3657 GEN_INT (rounded_size));
3658 #endif
3659 dest_addr = gen_rtx_PRE_MODIFY (Pmode, stack_pointer_rtx, dest_addr);
3662 dest = gen_rtx_MEM (mode, dest_addr);
3664 if (type != 0)
3666 set_mem_attributes (dest, type, 1);
3668 if (flag_optimize_sibling_calls)
3669 /* Function incoming arguments may overlap with sibling call
3670 outgoing arguments and we cannot allow reordering of reads
3671 from function arguments with stores to outgoing arguments
3672 of sibling calls. */
3673 set_mem_alias_set (dest, 0);
3675 emit_move_insn (dest, x);
3677 #endif
3679 /* Generate code to push X onto the stack, assuming it has mode MODE and
3680 type TYPE.
3681 MODE is redundant except when X is a CONST_INT (since they don't
3682 carry mode info).
3683 SIZE is an rtx for the size of data to be copied (in bytes),
3684 needed only if X is BLKmode.
3686 ALIGN (in bits) is maximum alignment we can assume.
3688 If PARTIAL and REG are both nonzero, then copy that many of the first
3689 bytes of X into registers starting with REG, and push the rest of X.
3690 The amount of space pushed is decreased by PARTIAL bytes.
3691 REG must be a hard register in this case.
3692 If REG is zero but PARTIAL is not, take any all others actions for an
3693 argument partially in registers, but do not actually load any
3694 registers.
3696 EXTRA is the amount in bytes of extra space to leave next to this arg.
3697 This is ignored if an argument block has already been allocated.
3699 On a machine that lacks real push insns, ARGS_ADDR is the address of
3700 the bottom of the argument block for this call. We use indexing off there
3701 to store the arg. On machines with push insns, ARGS_ADDR is 0 when a
3702 argument block has not been preallocated.
3704 ARGS_SO_FAR is the size of args previously pushed for this call.
3706 REG_PARM_STACK_SPACE is nonzero if functions require stack space
3707 for arguments passed in registers. If nonzero, it will be the number
3708 of bytes required. */
3710 void
3711 emit_push_insn (rtx x, enum machine_mode mode, tree type, rtx size,
3712 unsigned int align, int partial, rtx reg, int extra,
3713 rtx args_addr, rtx args_so_far, int reg_parm_stack_space,
3714 rtx alignment_pad)
3716 rtx xinner;
3717 enum direction stack_direction
3718 #ifdef STACK_GROWS_DOWNWARD
3719 = downward;
3720 #else
3721 = upward;
3722 #endif
3724 /* Decide where to pad the argument: `downward' for below,
3725 `upward' for above, or `none' for don't pad it.
3726 Default is below for small data on big-endian machines; else above. */
3727 enum direction where_pad = FUNCTION_ARG_PADDING (mode, type);
3729 /* Invert direction if stack is post-decrement.
3730 FIXME: why? */
3731 if (STACK_PUSH_CODE == POST_DEC)
3732 if (where_pad != none)
3733 where_pad = (where_pad == downward ? upward : downward);
3735 xinner = x;
3737 if (mode == BLKmode
3738 || (STRICT_ALIGNMENT && align < GET_MODE_ALIGNMENT (mode)))
3740 /* Copy a block into the stack, entirely or partially. */
3742 rtx temp;
3743 int used;
3744 int offset;
3745 int skip;
3747 offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
3748 used = partial - offset;
3750 if (mode != BLKmode)
3752 /* A value is to be stored in an insufficiently aligned
3753 stack slot; copy via a suitably aligned slot if
3754 necessary. */
3755 size = GEN_INT (GET_MODE_SIZE (mode));
3756 if (!MEM_P (xinner))
3758 temp = assign_temp (type, 0, 1, 1);
3759 emit_move_insn (temp, xinner);
3760 xinner = temp;
3764 gcc_assert (size);
3766 /* USED is now the # of bytes we need not copy to the stack
3767 because registers will take care of them. */
3769 if (partial != 0)
3770 xinner = adjust_address (xinner, BLKmode, used);
3772 /* If the partial register-part of the arg counts in its stack size,
3773 skip the part of stack space corresponding to the registers.
3774 Otherwise, start copying to the beginning of the stack space,
3775 by setting SKIP to 0. */
3776 skip = (reg_parm_stack_space == 0) ? 0 : used;
3778 #ifdef PUSH_ROUNDING
3779 /* Do it with several push insns if that doesn't take lots of insns
3780 and if there is no difficulty with push insns that skip bytes
3781 on the stack for alignment purposes. */
3782 if (args_addr == 0
3783 && PUSH_ARGS
3784 && GET_CODE (size) == CONST_INT
3785 && skip == 0
3786 && MEM_ALIGN (xinner) >= align
3787 && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size) - used, align))
3788 /* Here we avoid the case of a structure whose weak alignment
3789 forces many pushes of a small amount of data,
3790 and such small pushes do rounding that causes trouble. */
3791 && ((! SLOW_UNALIGNED_ACCESS (word_mode, align))
3792 || align >= BIGGEST_ALIGNMENT
3793 || (PUSH_ROUNDING (align / BITS_PER_UNIT)
3794 == (align / BITS_PER_UNIT)))
3795 && PUSH_ROUNDING (INTVAL (size)) == INTVAL (size))
3797 /* Push padding now if padding above and stack grows down,
3798 or if padding below and stack grows up.
3799 But if space already allocated, this has already been done. */
3800 if (extra && args_addr == 0
3801 && where_pad != none && where_pad != stack_direction)
3802 anti_adjust_stack (GEN_INT (extra));
3804 move_by_pieces (NULL, xinner, INTVAL (size) - used, align, 0);
3806 else
3807 #endif /* PUSH_ROUNDING */
3809 rtx target;
3811 /* Otherwise make space on the stack and copy the data
3812 to the address of that space. */
3814 /* Deduct words put into registers from the size we must copy. */
3815 if (partial != 0)
3817 if (GET_CODE (size) == CONST_INT)
3818 size = GEN_INT (INTVAL (size) - used);
3819 else
3820 size = expand_binop (GET_MODE (size), sub_optab, size,
3821 GEN_INT (used), NULL_RTX, 0,
3822 OPTAB_LIB_WIDEN);
3825 /* Get the address of the stack space.
3826 In this case, we do not deal with EXTRA separately.
3827 A single stack adjust will do. */
3828 if (! args_addr)
3830 temp = push_block (size, extra, where_pad == downward);
3831 extra = 0;
3833 else if (GET_CODE (args_so_far) == CONST_INT)
3834 temp = memory_address (BLKmode,
3835 plus_constant (args_addr,
3836 skip + INTVAL (args_so_far)));
3837 else
3838 temp = memory_address (BLKmode,
3839 plus_constant (gen_rtx_PLUS (Pmode,
3840 args_addr,
3841 args_so_far),
3842 skip));
3844 if (!ACCUMULATE_OUTGOING_ARGS)
3846 /* If the source is referenced relative to the stack pointer,
3847 copy it to another register to stabilize it. We do not need
3848 to do this if we know that we won't be changing sp. */
3850 if (reg_mentioned_p (virtual_stack_dynamic_rtx, temp)
3851 || reg_mentioned_p (virtual_outgoing_args_rtx, temp))
3852 temp = copy_to_reg (temp);
3855 target = gen_rtx_MEM (BLKmode, temp);
3857 /* We do *not* set_mem_attributes here, because incoming arguments
3858 may overlap with sibling call outgoing arguments and we cannot
3859 allow reordering of reads from function arguments with stores
3860 to outgoing arguments of sibling calls. We do, however, want
3861 to record the alignment of the stack slot. */
3862 /* ALIGN may well be better aligned than TYPE, e.g. due to
3863 PARM_BOUNDARY. Assume the caller isn't lying. */
3864 set_mem_align (target, align);
3866 emit_block_move (target, xinner, size, BLOCK_OP_CALL_PARM);
3869 else if (partial > 0)
3871 /* Scalar partly in registers. */
3873 int size = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
3874 int i;
3875 int not_stack;
3876 /* # bytes of start of argument
3877 that we must make space for but need not store. */
3878 int offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
3879 int args_offset = INTVAL (args_so_far);
3880 int skip;
3882 /* Push padding now if padding above and stack grows down,
3883 or if padding below and stack grows up.
3884 But if space already allocated, this has already been done. */
3885 if (extra && args_addr == 0
3886 && where_pad != none && where_pad != stack_direction)
3887 anti_adjust_stack (GEN_INT (extra));
3889 /* If we make space by pushing it, we might as well push
3890 the real data. Otherwise, we can leave OFFSET nonzero
3891 and leave the space uninitialized. */
3892 if (args_addr == 0)
3893 offset = 0;
3895 /* Now NOT_STACK gets the number of words that we don't need to
3896 allocate on the stack. Convert OFFSET to words too. */
3897 not_stack = (partial - offset) / UNITS_PER_WORD;
3898 offset /= UNITS_PER_WORD;
3900 /* If the partial register-part of the arg counts in its stack size,
3901 skip the part of stack space corresponding to the registers.
3902 Otherwise, start copying to the beginning of the stack space,
3903 by setting SKIP to 0. */
3904 skip = (reg_parm_stack_space == 0) ? 0 : not_stack;
3906 if (CONSTANT_P (x) && ! LEGITIMATE_CONSTANT_P (x))
3907 x = validize_mem (force_const_mem (mode, x));
3909 /* If X is a hard register in a non-integer mode, copy it into a pseudo;
3910 SUBREGs of such registers are not allowed. */
3911 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
3912 && GET_MODE_CLASS (GET_MODE (x)) != MODE_INT))
3913 x = copy_to_reg (x);
3915 /* Loop over all the words allocated on the stack for this arg. */
3916 /* We can do it by words, because any scalar bigger than a word
3917 has a size a multiple of a word. */
3918 #ifndef PUSH_ARGS_REVERSED
3919 for (i = not_stack; i < size; i++)
3920 #else
3921 for (i = size - 1; i >= not_stack; i--)
3922 #endif
3923 if (i >= not_stack + offset)
3924 emit_push_insn (operand_subword_force (x, i, mode),
3925 word_mode, NULL_TREE, NULL_RTX, align, 0, NULL_RTX,
3926 0, args_addr,
3927 GEN_INT (args_offset + ((i - not_stack + skip)
3928 * UNITS_PER_WORD)),
3929 reg_parm_stack_space, alignment_pad);
3931 else
3933 rtx addr;
3934 rtx dest;
3936 /* Push padding now if padding above and stack grows down,
3937 or if padding below and stack grows up.
3938 But if space already allocated, this has already been done. */
3939 if (extra && args_addr == 0
3940 && where_pad != none && where_pad != stack_direction)
3941 anti_adjust_stack (GEN_INT (extra));
3943 #ifdef PUSH_ROUNDING
3944 if (args_addr == 0 && PUSH_ARGS)
3945 emit_single_push_insn (mode, x, type);
3946 else
3947 #endif
3949 if (GET_CODE (args_so_far) == CONST_INT)
3950 addr
3951 = memory_address (mode,
3952 plus_constant (args_addr,
3953 INTVAL (args_so_far)));
3954 else
3955 addr = memory_address (mode, gen_rtx_PLUS (Pmode, args_addr,
3956 args_so_far));
3957 dest = gen_rtx_MEM (mode, addr);
3959 /* We do *not* set_mem_attributes here, because incoming arguments
3960 may overlap with sibling call outgoing arguments and we cannot
3961 allow reordering of reads from function arguments with stores
3962 to outgoing arguments of sibling calls. We do, however, want
3963 to record the alignment of the stack slot. */
3964 /* ALIGN may well be better aligned than TYPE, e.g. due to
3965 PARM_BOUNDARY. Assume the caller isn't lying. */
3966 set_mem_align (dest, align);
3968 emit_move_insn (dest, x);
3972 /* If part should go in registers, copy that part
3973 into the appropriate registers. Do this now, at the end,
3974 since mem-to-mem copies above may do function calls. */
3975 if (partial > 0 && reg != 0)
3977 /* Handle calls that pass values in multiple non-contiguous locations.
3978 The Irix 6 ABI has examples of this. */
3979 if (GET_CODE (reg) == PARALLEL)
3980 emit_group_load (reg, x, type, -1);
3981 else
3983 gcc_assert (partial % UNITS_PER_WORD == 0);
3984 move_block_to_reg (REGNO (reg), x, partial / UNITS_PER_WORD, mode);
3988 if (extra && args_addr == 0 && where_pad == stack_direction)
3989 anti_adjust_stack (GEN_INT (extra));
3991 if (alignment_pad && args_addr == 0)
3992 anti_adjust_stack (alignment_pad);
3995 /* Return X if X can be used as a subtarget in a sequence of arithmetic
3996 operations. */
3998 static rtx
3999 get_subtarget (rtx x)
4001 return (optimize
4002 || x == 0
4003 /* Only registers can be subtargets. */
4004 || !REG_P (x)
4005 /* Don't use hard regs to avoid extending their life. */
4006 || REGNO (x) < FIRST_PSEUDO_REGISTER
4007 ? 0 : x);
4010 /* A subroutine of expand_assignment. Optimize FIELD op= VAL, where
4011 FIELD is a bitfield. Returns true if the optimization was successful,
4012 and there's nothing else to do. */
4014 static bool
4015 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize,
4016 unsigned HOST_WIDE_INT bitpos,
4017 enum machine_mode mode1, rtx str_rtx,
4018 tree to, tree src)
4020 enum machine_mode str_mode = GET_MODE (str_rtx);
4021 unsigned int str_bitsize = GET_MODE_BITSIZE (str_mode);
4022 tree op0, op1;
4023 rtx value, result;
4024 optab binop;
4026 if (mode1 != VOIDmode
4027 || bitsize >= BITS_PER_WORD
4028 || str_bitsize > BITS_PER_WORD
4029 || TREE_SIDE_EFFECTS (to)
4030 || TREE_THIS_VOLATILE (to))
4031 return false;
4033 STRIP_NOPS (src);
4034 if (!BINARY_CLASS_P (src)
4035 || TREE_CODE (TREE_TYPE (src)) != INTEGER_TYPE)
4036 return false;
4038 op0 = TREE_OPERAND (src, 0);
4039 op1 = TREE_OPERAND (src, 1);
4040 STRIP_NOPS (op0);
4042 if (!operand_equal_p (to, op0, 0))
4043 return false;
4045 if (MEM_P (str_rtx))
4047 unsigned HOST_WIDE_INT offset1;
4049 if (str_bitsize == 0 || str_bitsize > BITS_PER_WORD)
4050 str_mode = word_mode;
4051 str_mode = get_best_mode (bitsize, bitpos,
4052 MEM_ALIGN (str_rtx), str_mode, 0);
4053 if (str_mode == VOIDmode)
4054 return false;
4055 str_bitsize = GET_MODE_BITSIZE (str_mode);
4057 offset1 = bitpos;
4058 bitpos %= str_bitsize;
4059 offset1 = (offset1 - bitpos) / BITS_PER_UNIT;
4060 str_rtx = adjust_address (str_rtx, str_mode, offset1);
4062 else if (!REG_P (str_rtx) && GET_CODE (str_rtx) != SUBREG)
4063 return false;
4065 /* If the bit field covers the whole REG/MEM, store_field
4066 will likely generate better code. */
4067 if (bitsize >= str_bitsize)
4068 return false;
4070 /* We can't handle fields split across multiple entities. */
4071 if (bitpos + bitsize > str_bitsize)
4072 return false;
4074 if (BYTES_BIG_ENDIAN)
4075 bitpos = str_bitsize - bitpos - bitsize;
4077 switch (TREE_CODE (src))
4079 case PLUS_EXPR:
4080 case MINUS_EXPR:
4081 /* For now, just optimize the case of the topmost bitfield
4082 where we don't need to do any masking and also
4083 1 bit bitfields where xor can be used.
4084 We might win by one instruction for the other bitfields
4085 too if insv/extv instructions aren't used, so that
4086 can be added later. */
4087 if (bitpos + bitsize != str_bitsize
4088 && (bitsize != 1 || TREE_CODE (op1) != INTEGER_CST))
4089 break;
4091 value = expand_expr (op1, NULL_RTX, str_mode, EXPAND_NORMAL);
4092 value = convert_modes (str_mode,
4093 TYPE_MODE (TREE_TYPE (op1)), value,
4094 TYPE_UNSIGNED (TREE_TYPE (op1)));
4096 /* We may be accessing data outside the field, which means
4097 we can alias adjacent data. */
4098 if (MEM_P (str_rtx))
4100 str_rtx = shallow_copy_rtx (str_rtx);
4101 set_mem_alias_set (str_rtx, 0);
4102 set_mem_expr (str_rtx, 0);
4105 binop = TREE_CODE (src) == PLUS_EXPR ? add_optab : sub_optab;
4106 if (bitsize == 1 && bitpos + bitsize != str_bitsize)
4108 value = expand_and (str_mode, value, const1_rtx, NULL);
4109 binop = xor_optab;
4111 value = expand_shift (LSHIFT_EXPR, str_mode, value,
4112 build_int_cst (NULL_TREE, bitpos),
4113 NULL_RTX, 1);
4114 result = expand_binop (str_mode, binop, str_rtx,
4115 value, str_rtx, 1, OPTAB_WIDEN);
4116 if (result != str_rtx)
4117 emit_move_insn (str_rtx, result);
4118 return true;
4120 case BIT_IOR_EXPR:
4121 case BIT_XOR_EXPR:
4122 if (TREE_CODE (op1) != INTEGER_CST)
4123 break;
4124 value = expand_expr (op1, NULL_RTX, GET_MODE (str_rtx), EXPAND_NORMAL);
4125 value = convert_modes (GET_MODE (str_rtx),
4126 TYPE_MODE (TREE_TYPE (op1)), value,
4127 TYPE_UNSIGNED (TREE_TYPE (op1)));
4129 /* We may be accessing data outside the field, which means
4130 we can alias adjacent data. */
4131 if (MEM_P (str_rtx))
4133 str_rtx = shallow_copy_rtx (str_rtx);
4134 set_mem_alias_set (str_rtx, 0);
4135 set_mem_expr (str_rtx, 0);
4138 binop = TREE_CODE (src) == BIT_IOR_EXPR ? ior_optab : xor_optab;
4139 if (bitpos + bitsize != GET_MODE_BITSIZE (GET_MODE (str_rtx)))
4141 rtx mask = GEN_INT (((unsigned HOST_WIDE_INT) 1 << bitsize)
4142 - 1);
4143 value = expand_and (GET_MODE (str_rtx), value, mask,
4144 NULL_RTX);
4146 value = expand_shift (LSHIFT_EXPR, GET_MODE (str_rtx), value,
4147 build_int_cst (NULL_TREE, bitpos),
4148 NULL_RTX, 1);
4149 result = expand_binop (GET_MODE (str_rtx), binop, str_rtx,
4150 value, str_rtx, 1, OPTAB_WIDEN);
4151 if (result != str_rtx)
4152 emit_move_insn (str_rtx, result);
4153 return true;
4155 default:
4156 break;
4159 return false;
4163 /* Expand an assignment that stores the value of FROM into TO. If NONTEMPORAL
4164 is true, try generating a nontemporal store. */
4166 void
4167 expand_assignment (tree to, tree from, bool nontemporal)
4169 rtx to_rtx = 0;
4170 rtx result;
4172 /* Don't crash if the lhs of the assignment was erroneous. */
4173 if (TREE_CODE (to) == ERROR_MARK)
4175 result = expand_normal (from);
4176 return;
4179 /* Optimize away no-op moves without side-effects. */
4180 if (operand_equal_p (to, from, 0))
4181 return;
4183 /* Assignment of a structure component needs special treatment
4184 if the structure component's rtx is not simply a MEM.
4185 Assignment of an array element at a constant index, and assignment of
4186 an array element in an unaligned packed structure field, has the same
4187 problem. */
4188 if (handled_component_p (to)
4189 || TREE_CODE (TREE_TYPE (to)) == ARRAY_TYPE)
4191 enum machine_mode mode1;
4192 HOST_WIDE_INT bitsize, bitpos;
4193 tree offset;
4194 int unsignedp;
4195 int volatilep = 0;
4196 tree tem;
4198 push_temp_slots ();
4199 tem = get_inner_reference (to, &bitsize, &bitpos, &offset, &mode1,
4200 &unsignedp, &volatilep, true);
4202 /* If we are going to use store_bit_field and extract_bit_field,
4203 make sure to_rtx will be safe for multiple use. */
4205 to_rtx = expand_normal (tem);
4207 if (offset != 0)
4209 rtx offset_rtx;
4211 if (!MEM_P (to_rtx))
4213 /* We can get constant negative offsets into arrays with broken
4214 user code. Translate this to a trap instead of ICEing. */
4215 gcc_assert (TREE_CODE (offset) == INTEGER_CST);
4216 expand_builtin_trap ();
4217 to_rtx = gen_rtx_MEM (BLKmode, const0_rtx);
4220 offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode, EXPAND_SUM);
4221 #ifdef POINTERS_EXTEND_UNSIGNED
4222 if (GET_MODE (offset_rtx) != Pmode)
4223 offset_rtx = convert_to_mode (Pmode, offset_rtx, 0);
4224 #else
4225 if (GET_MODE (offset_rtx) != ptr_mode)
4226 offset_rtx = convert_to_mode (ptr_mode, offset_rtx, 0);
4227 #endif
4229 /* A constant address in TO_RTX can have VOIDmode, we must not try
4230 to call force_reg for that case. Avoid that case. */
4231 if (MEM_P (to_rtx)
4232 && GET_MODE (to_rtx) == BLKmode
4233 && GET_MODE (XEXP (to_rtx, 0)) != VOIDmode
4234 && bitsize > 0
4235 && (bitpos % bitsize) == 0
4236 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
4237 && MEM_ALIGN (to_rtx) == GET_MODE_ALIGNMENT (mode1))
4239 to_rtx = adjust_address (to_rtx, mode1, bitpos / BITS_PER_UNIT);
4240 bitpos = 0;
4243 to_rtx = offset_address (to_rtx, offset_rtx,
4244 highest_pow2_factor_for_target (to,
4245 offset));
4248 /* Handle expand_expr of a complex value returning a CONCAT. */
4249 if (GET_CODE (to_rtx) == CONCAT)
4251 if (TREE_CODE (TREE_TYPE (from)) == COMPLEX_TYPE)
4253 gcc_assert (bitpos == 0);
4254 result = store_expr (from, to_rtx, false, nontemporal);
4256 else
4258 gcc_assert (bitpos == 0 || bitpos == GET_MODE_BITSIZE (mode1));
4259 result = store_expr (from, XEXP (to_rtx, bitpos != 0), false,
4260 nontemporal);
4263 else
4265 if (MEM_P (to_rtx))
4267 /* If the field is at offset zero, we could have been given the
4268 DECL_RTX of the parent struct. Don't munge it. */
4269 to_rtx = shallow_copy_rtx (to_rtx);
4271 set_mem_attributes_minus_bitpos (to_rtx, to, 0, bitpos);
4273 /* Deal with volatile and readonly fields. The former is only
4274 done for MEM. Also set MEM_KEEP_ALIAS_SET_P if needed. */
4275 if (volatilep)
4276 MEM_VOLATILE_P (to_rtx) = 1;
4277 if (component_uses_parent_alias_set (to))
4278 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
4281 if (optimize_bitfield_assignment_op (bitsize, bitpos, mode1,
4282 to_rtx, to, from))
4283 result = NULL;
4284 else
4285 result = store_field (to_rtx, bitsize, bitpos, mode1, from,
4286 TREE_TYPE (tem), get_alias_set (to),
4287 nontemporal);
4290 if (result)
4291 preserve_temp_slots (result);
4292 free_temp_slots ();
4293 pop_temp_slots ();
4294 return;
4297 /* If the rhs is a function call and its value is not an aggregate,
4298 call the function before we start to compute the lhs.
4299 This is needed for correct code for cases such as
4300 val = setjmp (buf) on machines where reference to val
4301 requires loading up part of an address in a separate insn.
4303 Don't do this if TO is a VAR_DECL or PARM_DECL whose DECL_RTL is REG
4304 since it might be a promoted variable where the zero- or sign- extension
4305 needs to be done. Handling this in the normal way is safe because no
4306 computation is done before the call. */
4307 if (TREE_CODE (from) == CALL_EXPR && ! aggregate_value_p (from, from)
4308 && COMPLETE_TYPE_P (TREE_TYPE (from))
4309 && TREE_CODE (TYPE_SIZE (TREE_TYPE (from))) == INTEGER_CST
4310 && ! ((TREE_CODE (to) == VAR_DECL || TREE_CODE (to) == PARM_DECL)
4311 && REG_P (DECL_RTL (to))))
4313 rtx value;
4315 push_temp_slots ();
4316 value = expand_normal (from);
4317 if (to_rtx == 0)
4318 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
4320 /* Handle calls that return values in multiple non-contiguous locations.
4321 The Irix 6 ABI has examples of this. */
4322 if (GET_CODE (to_rtx) == PARALLEL)
4323 emit_group_load (to_rtx, value, TREE_TYPE (from),
4324 int_size_in_bytes (TREE_TYPE (from)));
4325 else if (GET_MODE (to_rtx) == BLKmode)
4326 emit_block_move (to_rtx, value, expr_size (from), BLOCK_OP_NORMAL);
4327 else
4329 if (POINTER_TYPE_P (TREE_TYPE (to)))
4330 value = convert_memory_address (GET_MODE (to_rtx), value);
4331 emit_move_insn (to_rtx, value);
4333 preserve_temp_slots (to_rtx);
4334 free_temp_slots ();
4335 pop_temp_slots ();
4336 return;
4339 /* Ordinary treatment. Expand TO to get a REG or MEM rtx.
4340 Don't re-expand if it was expanded already (in COMPONENT_REF case). */
4342 if (to_rtx == 0)
4343 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
4345 /* Don't move directly into a return register. */
4346 if (TREE_CODE (to) == RESULT_DECL
4347 && (REG_P (to_rtx) || GET_CODE (to_rtx) == PARALLEL))
4349 rtx temp;
4351 push_temp_slots ();
4352 temp = expand_expr (from, NULL_RTX, GET_MODE (to_rtx), EXPAND_NORMAL);
4354 if (GET_CODE (to_rtx) == PARALLEL)
4355 emit_group_load (to_rtx, temp, TREE_TYPE (from),
4356 int_size_in_bytes (TREE_TYPE (from)));
4357 else
4358 emit_move_insn (to_rtx, temp);
4360 preserve_temp_slots (to_rtx);
4361 free_temp_slots ();
4362 pop_temp_slots ();
4363 return;
4366 /* In case we are returning the contents of an object which overlaps
4367 the place the value is being stored, use a safe function when copying
4368 a value through a pointer into a structure value return block. */
4369 if (TREE_CODE (to) == RESULT_DECL && TREE_CODE (from) == INDIRECT_REF
4370 && cfun->returns_struct
4371 && !cfun->returns_pcc_struct)
4373 rtx from_rtx, size;
4375 push_temp_slots ();
4376 size = expr_size (from);
4377 from_rtx = expand_normal (from);
4379 emit_library_call (memmove_libfunc, LCT_NORMAL,
4380 VOIDmode, 3, XEXP (to_rtx, 0), Pmode,
4381 XEXP (from_rtx, 0), Pmode,
4382 convert_to_mode (TYPE_MODE (sizetype),
4383 size, TYPE_UNSIGNED (sizetype)),
4384 TYPE_MODE (sizetype));
4386 preserve_temp_slots (to_rtx);
4387 free_temp_slots ();
4388 pop_temp_slots ();
4389 return;
4392 /* Compute FROM and store the value in the rtx we got. */
4394 push_temp_slots ();
4395 result = store_expr (from, to_rtx, 0, nontemporal);
4396 preserve_temp_slots (result);
4397 free_temp_slots ();
4398 pop_temp_slots ();
4399 return;
4402 /* Emits nontemporal store insn that moves FROM to TO. Returns true if this
4403 succeeded, false otherwise. */
4405 static bool
4406 emit_storent_insn (rtx to, rtx from)
4408 enum machine_mode mode = GET_MODE (to), imode;
4409 enum insn_code code = optab_handler (storent_optab, mode)->insn_code;
4410 rtx pattern;
4412 if (code == CODE_FOR_nothing)
4413 return false;
4415 imode = insn_data[code].operand[0].mode;
4416 if (!insn_data[code].operand[0].predicate (to, imode))
4417 return false;
4419 imode = insn_data[code].operand[1].mode;
4420 if (!insn_data[code].operand[1].predicate (from, imode))
4422 from = copy_to_mode_reg (imode, from);
4423 if (!insn_data[code].operand[1].predicate (from, imode))
4424 return false;
4427 pattern = GEN_FCN (code) (to, from);
4428 if (pattern == NULL_RTX)
4429 return false;
4431 emit_insn (pattern);
4432 return true;
4435 /* Generate code for computing expression EXP,
4436 and storing the value into TARGET.
4438 If the mode is BLKmode then we may return TARGET itself.
4439 It turns out that in BLKmode it doesn't cause a problem.
4440 because C has no operators that could combine two different
4441 assignments into the same BLKmode object with different values
4442 with no sequence point. Will other languages need this to
4443 be more thorough?
4445 If CALL_PARAM_P is nonzero, this is a store into a call param on the
4446 stack, and block moves may need to be treated specially.
4448 If NONTEMPORAL is true, try using a nontemporal store instruction. */
4451 store_expr (tree exp, rtx target, int call_param_p, bool nontemporal)
4453 rtx temp;
4454 rtx alt_rtl = NULL_RTX;
4455 int dont_return_target = 0;
4457 if (VOID_TYPE_P (TREE_TYPE (exp)))
4459 /* C++ can generate ?: expressions with a throw expression in one
4460 branch and an rvalue in the other. Here, we resolve attempts to
4461 store the throw expression's nonexistent result. */
4462 gcc_assert (!call_param_p);
4463 expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
4464 return NULL_RTX;
4466 if (TREE_CODE (exp) == COMPOUND_EXPR)
4468 /* Perform first part of compound expression, then assign from second
4469 part. */
4470 expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode,
4471 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
4472 return store_expr (TREE_OPERAND (exp, 1), target, call_param_p,
4473 nontemporal);
4475 else if (TREE_CODE (exp) == COND_EXPR && GET_MODE (target) == BLKmode)
4477 /* For conditional expression, get safe form of the target. Then
4478 test the condition, doing the appropriate assignment on either
4479 side. This avoids the creation of unnecessary temporaries.
4480 For non-BLKmode, it is more efficient not to do this. */
4482 rtx lab1 = gen_label_rtx (), lab2 = gen_label_rtx ();
4484 do_pending_stack_adjust ();
4485 NO_DEFER_POP;
4486 jumpifnot (TREE_OPERAND (exp, 0), lab1);
4487 store_expr (TREE_OPERAND (exp, 1), target, call_param_p,
4488 nontemporal);
4489 emit_jump_insn (gen_jump (lab2));
4490 emit_barrier ();
4491 emit_label (lab1);
4492 store_expr (TREE_OPERAND (exp, 2), target, call_param_p,
4493 nontemporal);
4494 emit_label (lab2);
4495 OK_DEFER_POP;
4497 return NULL_RTX;
4499 else if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
4500 /* If this is a scalar in a register that is stored in a wider mode
4501 than the declared mode, compute the result into its declared mode
4502 and then convert to the wider mode. Our value is the computed
4503 expression. */
4505 rtx inner_target = 0;
4507 /* We can do the conversion inside EXP, which will often result
4508 in some optimizations. Do the conversion in two steps: first
4509 change the signedness, if needed, then the extend. But don't
4510 do this if the type of EXP is a subtype of something else
4511 since then the conversion might involve more than just
4512 converting modes. */
4513 if (INTEGRAL_TYPE_P (TREE_TYPE (exp))
4514 && TREE_TYPE (TREE_TYPE (exp)) == 0
4515 && GET_MODE_PRECISION (GET_MODE (target))
4516 == TYPE_PRECISION (TREE_TYPE (exp)))
4518 if (TYPE_UNSIGNED (TREE_TYPE (exp))
4519 != SUBREG_PROMOTED_UNSIGNED_P (target))
4521 /* Some types, e.g. Fortran's logical*4, won't have a signed
4522 version, so use the mode instead. */
4523 tree ntype
4524 = (signed_or_unsigned_type_for
4525 (SUBREG_PROMOTED_UNSIGNED_P (target), TREE_TYPE (exp)));
4526 if (ntype == NULL)
4527 ntype = lang_hooks.types.type_for_mode
4528 (TYPE_MODE (TREE_TYPE (exp)),
4529 SUBREG_PROMOTED_UNSIGNED_P (target));
4531 exp = fold_convert (ntype, exp);
4534 exp = fold_convert (lang_hooks.types.type_for_mode
4535 (GET_MODE (SUBREG_REG (target)),
4536 SUBREG_PROMOTED_UNSIGNED_P (target)),
4537 exp);
4539 inner_target = SUBREG_REG (target);
4542 temp = expand_expr (exp, inner_target, VOIDmode,
4543 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
4545 /* If TEMP is a VOIDmode constant, use convert_modes to make
4546 sure that we properly convert it. */
4547 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
4549 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
4550 temp, SUBREG_PROMOTED_UNSIGNED_P (target));
4551 temp = convert_modes (GET_MODE (SUBREG_REG (target)),
4552 GET_MODE (target), temp,
4553 SUBREG_PROMOTED_UNSIGNED_P (target));
4556 convert_move (SUBREG_REG (target), temp,
4557 SUBREG_PROMOTED_UNSIGNED_P (target));
4559 return NULL_RTX;
4561 else if (TREE_CODE (exp) == STRING_CST
4562 && !nontemporal && !call_param_p
4563 && TREE_STRING_LENGTH (exp) > 0
4564 && TYPE_MODE (TREE_TYPE (exp)) == BLKmode)
4566 /* Optimize initialization of an array with a STRING_CST. */
4567 HOST_WIDE_INT exp_len, str_copy_len;
4568 rtx dest_mem;
4570 exp_len = int_expr_size (exp);
4571 if (exp_len <= 0)
4572 goto normal_expr;
4574 str_copy_len = strlen (TREE_STRING_POINTER (exp));
4575 if (str_copy_len < TREE_STRING_LENGTH (exp) - 1)
4576 goto normal_expr;
4578 str_copy_len = TREE_STRING_LENGTH (exp);
4579 if ((STORE_MAX_PIECES & (STORE_MAX_PIECES - 1)) == 0)
4581 str_copy_len += STORE_MAX_PIECES - 1;
4582 str_copy_len &= ~(STORE_MAX_PIECES - 1);
4584 str_copy_len = MIN (str_copy_len, exp_len);
4585 if (!can_store_by_pieces (str_copy_len, builtin_strncpy_read_str,
4586 CONST_CAST(char *, TREE_STRING_POINTER (exp)),
4587 MEM_ALIGN (target), false))
4588 goto normal_expr;
4590 dest_mem = target;
4592 dest_mem = store_by_pieces (dest_mem,
4593 str_copy_len, builtin_strncpy_read_str,
4594 CONST_CAST(char *, TREE_STRING_POINTER (exp)),
4595 MEM_ALIGN (target), false,
4596 exp_len > str_copy_len ? 1 : 0);
4597 if (exp_len > str_copy_len)
4598 clear_storage (adjust_address (dest_mem, BLKmode, 0),
4599 GEN_INT (exp_len - str_copy_len),
4600 BLOCK_OP_NORMAL);
4601 return NULL_RTX;
4603 else
4605 rtx tmp_target;
4607 normal_expr:
4608 /* If we want to use a nontemporal store, force the value to
4609 register first. */
4610 tmp_target = nontemporal ? NULL_RTX : target;
4611 temp = expand_expr_real (exp, tmp_target, GET_MODE (target),
4612 (call_param_p
4613 ? EXPAND_STACK_PARM : EXPAND_NORMAL),
4614 &alt_rtl);
4615 /* Return TARGET if it's a specified hardware register.
4616 If TARGET is a volatile mem ref, either return TARGET
4617 or return a reg copied *from* TARGET; ANSI requires this.
4619 Otherwise, if TEMP is not TARGET, return TEMP
4620 if it is constant (for efficiency),
4621 or if we really want the correct value. */
4622 if (!(target && REG_P (target)
4623 && REGNO (target) < FIRST_PSEUDO_REGISTER)
4624 && !(MEM_P (target) && MEM_VOLATILE_P (target))
4625 && ! rtx_equal_p (temp, target)
4626 && CONSTANT_P (temp))
4627 dont_return_target = 1;
4630 /* If TEMP is a VOIDmode constant and the mode of the type of EXP is not
4631 the same as that of TARGET, adjust the constant. This is needed, for
4632 example, in case it is a CONST_DOUBLE and we want only a word-sized
4633 value. */
4634 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode
4635 && TREE_CODE (exp) != ERROR_MARK
4636 && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
4637 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
4638 temp, TYPE_UNSIGNED (TREE_TYPE (exp)));
4640 /* If value was not generated in the target, store it there.
4641 Convert the value to TARGET's type first if necessary and emit the
4642 pending incrementations that have been queued when expanding EXP.
4643 Note that we cannot emit the whole queue blindly because this will
4644 effectively disable the POST_INC optimization later.
4646 If TEMP and TARGET compare equal according to rtx_equal_p, but
4647 one or both of them are volatile memory refs, we have to distinguish
4648 two cases:
4649 - expand_expr has used TARGET. In this case, we must not generate
4650 another copy. This can be detected by TARGET being equal according
4651 to == .
4652 - expand_expr has not used TARGET - that means that the source just
4653 happens to have the same RTX form. Since temp will have been created
4654 by expand_expr, it will compare unequal according to == .
4655 We must generate a copy in this case, to reach the correct number
4656 of volatile memory references. */
4658 if ((! rtx_equal_p (temp, target)
4659 || (temp != target && (side_effects_p (temp)
4660 || side_effects_p (target))))
4661 && TREE_CODE (exp) != ERROR_MARK
4662 /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET,
4663 but TARGET is not valid memory reference, TEMP will differ
4664 from TARGET although it is really the same location. */
4665 && !(alt_rtl && rtx_equal_p (alt_rtl, target))
4666 /* If there's nothing to copy, don't bother. Don't call
4667 expr_size unless necessary, because some front-ends (C++)
4668 expr_size-hook must not be given objects that are not
4669 supposed to be bit-copied or bit-initialized. */
4670 && expr_size (exp) != const0_rtx)
4672 if (GET_MODE (temp) != GET_MODE (target)
4673 && GET_MODE (temp) != VOIDmode)
4675 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
4676 if (dont_return_target)
4678 /* In this case, we will return TEMP,
4679 so make sure it has the proper mode.
4680 But don't forget to store the value into TARGET. */
4681 temp = convert_to_mode (GET_MODE (target), temp, unsignedp);
4682 emit_move_insn (target, temp);
4684 else if (GET_MODE (target) == BLKmode
4685 || GET_MODE (temp) == BLKmode)
4686 emit_block_move (target, temp, expr_size (exp),
4687 (call_param_p
4688 ? BLOCK_OP_CALL_PARM
4689 : BLOCK_OP_NORMAL));
4690 else
4691 convert_move (target, temp, unsignedp);
4694 else if (GET_MODE (temp) == BLKmode && TREE_CODE (exp) == STRING_CST)
4696 /* Handle copying a string constant into an array. The string
4697 constant may be shorter than the array. So copy just the string's
4698 actual length, and clear the rest. First get the size of the data
4699 type of the string, which is actually the size of the target. */
4700 rtx size = expr_size (exp);
4702 if (GET_CODE (size) == CONST_INT
4703 && INTVAL (size) < TREE_STRING_LENGTH (exp))
4704 emit_block_move (target, temp, size,
4705 (call_param_p
4706 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4707 else
4709 /* Compute the size of the data to copy from the string. */
4710 tree copy_size
4711 = size_binop (MIN_EXPR,
4712 make_tree (sizetype, size),
4713 size_int (TREE_STRING_LENGTH (exp)));
4714 rtx copy_size_rtx
4715 = expand_expr (copy_size, NULL_RTX, VOIDmode,
4716 (call_param_p
4717 ? EXPAND_STACK_PARM : EXPAND_NORMAL));
4718 rtx label = 0;
4720 /* Copy that much. */
4721 copy_size_rtx = convert_to_mode (ptr_mode, copy_size_rtx,
4722 TYPE_UNSIGNED (sizetype));
4723 emit_block_move (target, temp, copy_size_rtx,
4724 (call_param_p
4725 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4727 /* Figure out how much is left in TARGET that we have to clear.
4728 Do all calculations in ptr_mode. */
4729 if (GET_CODE (copy_size_rtx) == CONST_INT)
4731 size = plus_constant (size, -INTVAL (copy_size_rtx));
4732 target = adjust_address (target, BLKmode,
4733 INTVAL (copy_size_rtx));
4735 else
4737 size = expand_binop (TYPE_MODE (sizetype), sub_optab, size,
4738 copy_size_rtx, NULL_RTX, 0,
4739 OPTAB_LIB_WIDEN);
4741 #ifdef POINTERS_EXTEND_UNSIGNED
4742 if (GET_MODE (copy_size_rtx) != Pmode)
4743 copy_size_rtx = convert_to_mode (Pmode, copy_size_rtx,
4744 TYPE_UNSIGNED (sizetype));
4745 #endif
4747 target = offset_address (target, copy_size_rtx,
4748 highest_pow2_factor (copy_size));
4749 label = gen_label_rtx ();
4750 emit_cmp_and_jump_insns (size, const0_rtx, LT, NULL_RTX,
4751 GET_MODE (size), 0, label);
4754 if (size != const0_rtx)
4755 clear_storage (target, size, BLOCK_OP_NORMAL);
4757 if (label)
4758 emit_label (label);
4761 /* Handle calls that return values in multiple non-contiguous locations.
4762 The Irix 6 ABI has examples of this. */
4763 else if (GET_CODE (target) == PARALLEL)
4764 emit_group_load (target, temp, TREE_TYPE (exp),
4765 int_size_in_bytes (TREE_TYPE (exp)));
4766 else if (GET_MODE (temp) == BLKmode)
4767 emit_block_move (target, temp, expr_size (exp),
4768 (call_param_p
4769 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4770 else if (nontemporal
4771 && emit_storent_insn (target, temp))
4772 /* If we managed to emit a nontemporal store, there is nothing else to
4773 do. */
4775 else
4777 temp = force_operand (temp, target);
4778 if (temp != target)
4779 emit_move_insn (target, temp);
4783 return NULL_RTX;
4786 /* Helper for categorize_ctor_elements. Identical interface. */
4788 static bool
4789 categorize_ctor_elements_1 (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
4790 HOST_WIDE_INT *p_elt_count,
4791 bool *p_must_clear)
4793 unsigned HOST_WIDE_INT idx;
4794 HOST_WIDE_INT nz_elts, elt_count;
4795 tree value, purpose;
4797 /* Whether CTOR is a valid constant initializer, in accordance with what
4798 initializer_constant_valid_p does. If inferred from the constructor
4799 elements, true until proven otherwise. */
4800 bool const_from_elts_p = constructor_static_from_elts_p (ctor);
4801 bool const_p = const_from_elts_p ? true : TREE_STATIC (ctor);
4803 nz_elts = 0;
4804 elt_count = 0;
4806 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), idx, purpose, value)
4808 HOST_WIDE_INT mult;
4810 mult = 1;
4811 if (TREE_CODE (purpose) == RANGE_EXPR)
4813 tree lo_index = TREE_OPERAND (purpose, 0);
4814 tree hi_index = TREE_OPERAND (purpose, 1);
4816 if (host_integerp (lo_index, 1) && host_integerp (hi_index, 1))
4817 mult = (tree_low_cst (hi_index, 1)
4818 - tree_low_cst (lo_index, 1) + 1);
4821 switch (TREE_CODE (value))
4823 case CONSTRUCTOR:
4825 HOST_WIDE_INT nz = 0, ic = 0;
4827 bool const_elt_p
4828 = categorize_ctor_elements_1 (value, &nz, &ic, p_must_clear);
4830 nz_elts += mult * nz;
4831 elt_count += mult * ic;
4833 if (const_from_elts_p && const_p)
4834 const_p = const_elt_p;
4836 break;
4838 case INTEGER_CST:
4839 case REAL_CST:
4840 case FIXED_CST:
4841 if (!initializer_zerop (value))
4842 nz_elts += mult;
4843 elt_count += mult;
4844 break;
4846 case STRING_CST:
4847 nz_elts += mult * TREE_STRING_LENGTH (value);
4848 elt_count += mult * TREE_STRING_LENGTH (value);
4849 break;
4851 case COMPLEX_CST:
4852 if (!initializer_zerop (TREE_REALPART (value)))
4853 nz_elts += mult;
4854 if (!initializer_zerop (TREE_IMAGPART (value)))
4855 nz_elts += mult;
4856 elt_count += mult;
4857 break;
4859 case VECTOR_CST:
4861 tree v;
4862 for (v = TREE_VECTOR_CST_ELTS (value); v; v = TREE_CHAIN (v))
4864 if (!initializer_zerop (TREE_VALUE (v)))
4865 nz_elts += mult;
4866 elt_count += mult;
4869 break;
4871 default:
4872 nz_elts += mult;
4873 elt_count += mult;
4875 if (const_from_elts_p && const_p)
4876 const_p = initializer_constant_valid_p (value, TREE_TYPE (value))
4877 != NULL_TREE;
4878 break;
4882 if (!*p_must_clear
4883 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
4884 || TREE_CODE (TREE_TYPE (ctor)) == QUAL_UNION_TYPE))
4886 tree init_sub_type;
4887 bool clear_this = true;
4889 if (!VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (ctor)))
4891 /* We don't expect more than one element of the union to be
4892 initialized. Not sure what we should do otherwise... */
4893 gcc_assert (VEC_length (constructor_elt, CONSTRUCTOR_ELTS (ctor))
4894 == 1);
4896 init_sub_type = TREE_TYPE (VEC_index (constructor_elt,
4897 CONSTRUCTOR_ELTS (ctor),
4898 0)->value);
4900 /* ??? We could look at each element of the union, and find the
4901 largest element. Which would avoid comparing the size of the
4902 initialized element against any tail padding in the union.
4903 Doesn't seem worth the effort... */
4904 if (simple_cst_equal (TYPE_SIZE (TREE_TYPE (ctor)),
4905 TYPE_SIZE (init_sub_type)) == 1)
4907 /* And now we have to find out if the element itself is fully
4908 constructed. E.g. for union { struct { int a, b; } s; } u
4909 = { .s = { .a = 1 } }. */
4910 if (elt_count == count_type_elements (init_sub_type, false))
4911 clear_this = false;
4915 *p_must_clear = clear_this;
4918 *p_nz_elts += nz_elts;
4919 *p_elt_count += elt_count;
4921 return const_p;
4924 /* Examine CTOR to discover:
4925 * how many scalar fields are set to nonzero values,
4926 and place it in *P_NZ_ELTS;
4927 * how many scalar fields in total are in CTOR,
4928 and place it in *P_ELT_COUNT.
4929 * if a type is a union, and the initializer from the constructor
4930 is not the largest element in the union, then set *p_must_clear.
4932 Return whether or not CTOR is a valid static constant initializer, the same
4933 as "initializer_constant_valid_p (CTOR, TREE_TYPE (CTOR)) != 0". */
4935 bool
4936 categorize_ctor_elements (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
4937 HOST_WIDE_INT *p_elt_count,
4938 bool *p_must_clear)
4940 *p_nz_elts = 0;
4941 *p_elt_count = 0;
4942 *p_must_clear = false;
4944 return
4945 categorize_ctor_elements_1 (ctor, p_nz_elts, p_elt_count, p_must_clear);
4948 /* Count the number of scalars in TYPE. Return -1 on overflow or
4949 variable-sized. If ALLOW_FLEXARR is true, don't count flexible
4950 array member at the end of the structure. */
4952 HOST_WIDE_INT
4953 count_type_elements (const_tree type, bool allow_flexarr)
4955 const HOST_WIDE_INT max = ~((HOST_WIDE_INT)1 << (HOST_BITS_PER_WIDE_INT-1));
4956 switch (TREE_CODE (type))
4958 case ARRAY_TYPE:
4960 tree telts = array_type_nelts (type);
4961 if (telts && host_integerp (telts, 1))
4963 HOST_WIDE_INT n = tree_low_cst (telts, 1) + 1;
4964 HOST_WIDE_INT m = count_type_elements (TREE_TYPE (type), false);
4965 if (n == 0)
4966 return 0;
4967 else if (max / n > m)
4968 return n * m;
4970 return -1;
4973 case RECORD_TYPE:
4975 HOST_WIDE_INT n = 0, t;
4976 tree f;
4978 for (f = TYPE_FIELDS (type); f ; f = TREE_CHAIN (f))
4979 if (TREE_CODE (f) == FIELD_DECL)
4981 t = count_type_elements (TREE_TYPE (f), false);
4982 if (t < 0)
4984 /* Check for structures with flexible array member. */
4985 tree tf = TREE_TYPE (f);
4986 if (allow_flexarr
4987 && TREE_CHAIN (f) == NULL
4988 && TREE_CODE (tf) == ARRAY_TYPE
4989 && TYPE_DOMAIN (tf)
4990 && TYPE_MIN_VALUE (TYPE_DOMAIN (tf))
4991 && integer_zerop (TYPE_MIN_VALUE (TYPE_DOMAIN (tf)))
4992 && !TYPE_MAX_VALUE (TYPE_DOMAIN (tf))
4993 && int_size_in_bytes (type) >= 0)
4994 break;
4996 return -1;
4998 n += t;
5001 return n;
5004 case UNION_TYPE:
5005 case QUAL_UNION_TYPE:
5006 return -1;
5008 case COMPLEX_TYPE:
5009 return 2;
5011 case VECTOR_TYPE:
5012 return TYPE_VECTOR_SUBPARTS (type);
5014 case INTEGER_TYPE:
5015 case REAL_TYPE:
5016 case FIXED_POINT_TYPE:
5017 case ENUMERAL_TYPE:
5018 case BOOLEAN_TYPE:
5019 case POINTER_TYPE:
5020 case OFFSET_TYPE:
5021 case REFERENCE_TYPE:
5022 return 1;
5024 case ERROR_MARK:
5025 return 0;
5027 case VOID_TYPE:
5028 case METHOD_TYPE:
5029 case FUNCTION_TYPE:
5030 case LANG_TYPE:
5031 default:
5032 gcc_unreachable ();
5036 /* Return 1 if EXP contains mostly (3/4) zeros. */
5038 static int
5039 mostly_zeros_p (const_tree exp)
5041 if (TREE_CODE (exp) == CONSTRUCTOR)
5044 HOST_WIDE_INT nz_elts, count, elts;
5045 bool must_clear;
5047 categorize_ctor_elements (exp, &nz_elts, &count, &must_clear);
5048 if (must_clear)
5049 return 1;
5051 elts = count_type_elements (TREE_TYPE (exp), false);
5053 return nz_elts < elts / 4;
5056 return initializer_zerop (exp);
5059 /* Return 1 if EXP contains all zeros. */
5061 static int
5062 all_zeros_p (const_tree exp)
5064 if (TREE_CODE (exp) == CONSTRUCTOR)
5067 HOST_WIDE_INT nz_elts, count;
5068 bool must_clear;
5070 categorize_ctor_elements (exp, &nz_elts, &count, &must_clear);
5071 return nz_elts == 0;
5074 return initializer_zerop (exp);
5077 /* Helper function for store_constructor.
5078 TARGET, BITSIZE, BITPOS, MODE, EXP are as for store_field.
5079 TYPE is the type of the CONSTRUCTOR, not the element type.
5080 CLEARED is as for store_constructor.
5081 ALIAS_SET is the alias set to use for any stores.
5083 This provides a recursive shortcut back to store_constructor when it isn't
5084 necessary to go through store_field. This is so that we can pass through
5085 the cleared field to let store_constructor know that we may not have to
5086 clear a substructure if the outer structure has already been cleared. */
5088 static void
5089 store_constructor_field (rtx target, unsigned HOST_WIDE_INT bitsize,
5090 HOST_WIDE_INT bitpos, enum machine_mode mode,
5091 tree exp, tree type, int cleared,
5092 alias_set_type alias_set)
5094 if (TREE_CODE (exp) == CONSTRUCTOR
5095 /* We can only call store_constructor recursively if the size and
5096 bit position are on a byte boundary. */
5097 && bitpos % BITS_PER_UNIT == 0
5098 && (bitsize > 0 && bitsize % BITS_PER_UNIT == 0)
5099 /* If we have a nonzero bitpos for a register target, then we just
5100 let store_field do the bitfield handling. This is unlikely to
5101 generate unnecessary clear instructions anyways. */
5102 && (bitpos == 0 || MEM_P (target)))
5104 if (MEM_P (target))
5105 target
5106 = adjust_address (target,
5107 GET_MODE (target) == BLKmode
5108 || 0 != (bitpos
5109 % GET_MODE_ALIGNMENT (GET_MODE (target)))
5110 ? BLKmode : VOIDmode, bitpos / BITS_PER_UNIT);
5113 /* Update the alias set, if required. */
5114 if (MEM_P (target) && ! MEM_KEEP_ALIAS_SET_P (target)
5115 && MEM_ALIAS_SET (target) != 0)
5117 target = copy_rtx (target);
5118 set_mem_alias_set (target, alias_set);
5121 store_constructor (exp, target, cleared, bitsize / BITS_PER_UNIT);
5123 else
5124 store_field (target, bitsize, bitpos, mode, exp, type, alias_set, false);
5127 /* Store the value of constructor EXP into the rtx TARGET.
5128 TARGET is either a REG or a MEM; we know it cannot conflict, since
5129 safe_from_p has been called.
5130 CLEARED is true if TARGET is known to have been zero'd.
5131 SIZE is the number of bytes of TARGET we are allowed to modify: this
5132 may not be the same as the size of EXP if we are assigning to a field
5133 which has been packed to exclude padding bits. */
5135 static void
5136 store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
5138 tree type = TREE_TYPE (exp);
5139 #ifdef WORD_REGISTER_OPERATIONS
5140 HOST_WIDE_INT exp_size = int_size_in_bytes (type);
5141 #endif
5143 switch (TREE_CODE (type))
5145 case RECORD_TYPE:
5146 case UNION_TYPE:
5147 case QUAL_UNION_TYPE:
5149 unsigned HOST_WIDE_INT idx;
5150 tree field, value;
5152 /* If size is zero or the target is already cleared, do nothing. */
5153 if (size == 0 || cleared)
5154 cleared = 1;
5155 /* We either clear the aggregate or indicate the value is dead. */
5156 else if ((TREE_CODE (type) == UNION_TYPE
5157 || TREE_CODE (type) == QUAL_UNION_TYPE)
5158 && ! CONSTRUCTOR_ELTS (exp))
5159 /* If the constructor is empty, clear the union. */
5161 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
5162 cleared = 1;
5165 /* If we are building a static constructor into a register,
5166 set the initial value as zero so we can fold the value into
5167 a constant. But if more than one register is involved,
5168 this probably loses. */
5169 else if (REG_P (target) && TREE_STATIC (exp)
5170 && GET_MODE_SIZE (GET_MODE (target)) <= UNITS_PER_WORD)
5172 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5173 cleared = 1;
5176 /* If the constructor has fewer fields than the structure or
5177 if we are initializing the structure to mostly zeros, clear
5178 the whole structure first. Don't do this if TARGET is a
5179 register whose mode size isn't equal to SIZE since
5180 clear_storage can't handle this case. */
5181 else if (size > 0
5182 && (((int)VEC_length (constructor_elt, CONSTRUCTOR_ELTS (exp))
5183 != fields_length (type))
5184 || mostly_zeros_p (exp))
5185 && (!REG_P (target)
5186 || ((HOST_WIDE_INT) GET_MODE_SIZE (GET_MODE (target))
5187 == size)))
5189 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5190 cleared = 1;
5193 if (REG_P (target) && !cleared)
5194 emit_clobber (target);
5196 /* Store each element of the constructor into the
5197 corresponding field of TARGET. */
5198 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, field, value)
5200 enum machine_mode mode;
5201 HOST_WIDE_INT bitsize;
5202 HOST_WIDE_INT bitpos = 0;
5203 tree offset;
5204 rtx to_rtx = target;
5206 /* Just ignore missing fields. We cleared the whole
5207 structure, above, if any fields are missing. */
5208 if (field == 0)
5209 continue;
5211 if (cleared && initializer_zerop (value))
5212 continue;
5214 if (host_integerp (DECL_SIZE (field), 1))
5215 bitsize = tree_low_cst (DECL_SIZE (field), 1);
5216 else
5217 bitsize = -1;
5219 mode = DECL_MODE (field);
5220 if (DECL_BIT_FIELD (field))
5221 mode = VOIDmode;
5223 offset = DECL_FIELD_OFFSET (field);
5224 if (host_integerp (offset, 0)
5225 && host_integerp (bit_position (field), 0))
5227 bitpos = int_bit_position (field);
5228 offset = 0;
5230 else
5231 bitpos = tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 0);
5233 if (offset)
5235 rtx offset_rtx;
5237 offset
5238 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (offset,
5239 make_tree (TREE_TYPE (exp),
5240 target));
5242 offset_rtx = expand_normal (offset);
5243 gcc_assert (MEM_P (to_rtx));
5245 #ifdef POINTERS_EXTEND_UNSIGNED
5246 if (GET_MODE (offset_rtx) != Pmode)
5247 offset_rtx = convert_to_mode (Pmode, offset_rtx, 0);
5248 #else
5249 if (GET_MODE (offset_rtx) != ptr_mode)
5250 offset_rtx = convert_to_mode (ptr_mode, offset_rtx, 0);
5251 #endif
5253 to_rtx = offset_address (to_rtx, offset_rtx,
5254 highest_pow2_factor (offset));
5257 #ifdef WORD_REGISTER_OPERATIONS
5258 /* If this initializes a field that is smaller than a
5259 word, at the start of a word, try to widen it to a full
5260 word. This special case allows us to output C++ member
5261 function initializations in a form that the optimizers
5262 can understand. */
5263 if (REG_P (target)
5264 && bitsize < BITS_PER_WORD
5265 && bitpos % BITS_PER_WORD == 0
5266 && GET_MODE_CLASS (mode) == MODE_INT
5267 && TREE_CODE (value) == INTEGER_CST
5268 && exp_size >= 0
5269 && bitpos + BITS_PER_WORD <= exp_size * BITS_PER_UNIT)
5271 tree type = TREE_TYPE (value);
5273 if (TYPE_PRECISION (type) < BITS_PER_WORD)
5275 type = lang_hooks.types.type_for_size
5276 (BITS_PER_WORD, TYPE_UNSIGNED (type));
5277 value = fold_convert (type, value);
5280 if (BYTES_BIG_ENDIAN)
5281 value
5282 = fold_build2 (LSHIFT_EXPR, type, value,
5283 build_int_cst (type,
5284 BITS_PER_WORD - bitsize));
5285 bitsize = BITS_PER_WORD;
5286 mode = word_mode;
5288 #endif
5290 if (MEM_P (to_rtx) && !MEM_KEEP_ALIAS_SET_P (to_rtx)
5291 && DECL_NONADDRESSABLE_P (field))
5293 to_rtx = copy_rtx (to_rtx);
5294 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
5297 store_constructor_field (to_rtx, bitsize, bitpos, mode,
5298 value, type, cleared,
5299 get_alias_set (TREE_TYPE (field)));
5301 break;
5303 case ARRAY_TYPE:
5305 tree value, index;
5306 unsigned HOST_WIDE_INT i;
5307 int need_to_clear;
5308 tree domain;
5309 tree elttype = TREE_TYPE (type);
5310 int const_bounds_p;
5311 HOST_WIDE_INT minelt = 0;
5312 HOST_WIDE_INT maxelt = 0;
5314 domain = TYPE_DOMAIN (type);
5315 const_bounds_p = (TYPE_MIN_VALUE (domain)
5316 && TYPE_MAX_VALUE (domain)
5317 && host_integerp (TYPE_MIN_VALUE (domain), 0)
5318 && host_integerp (TYPE_MAX_VALUE (domain), 0));
5320 /* If we have constant bounds for the range of the type, get them. */
5321 if (const_bounds_p)
5323 minelt = tree_low_cst (TYPE_MIN_VALUE (domain), 0);
5324 maxelt = tree_low_cst (TYPE_MAX_VALUE (domain), 0);
5327 /* If the constructor has fewer elements than the array, clear
5328 the whole array first. Similarly if this is static
5329 constructor of a non-BLKmode object. */
5330 if (cleared)
5331 need_to_clear = 0;
5332 else if (REG_P (target) && TREE_STATIC (exp))
5333 need_to_clear = 1;
5334 else
5336 unsigned HOST_WIDE_INT idx;
5337 tree index, value;
5338 HOST_WIDE_INT count = 0, zero_count = 0;
5339 need_to_clear = ! const_bounds_p;
5341 /* This loop is a more accurate version of the loop in
5342 mostly_zeros_p (it handles RANGE_EXPR in an index). It
5343 is also needed to check for missing elements. */
5344 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, index, value)
5346 HOST_WIDE_INT this_node_count;
5348 if (need_to_clear)
5349 break;
5351 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
5353 tree lo_index = TREE_OPERAND (index, 0);
5354 tree hi_index = TREE_OPERAND (index, 1);
5356 if (! host_integerp (lo_index, 1)
5357 || ! host_integerp (hi_index, 1))
5359 need_to_clear = 1;
5360 break;
5363 this_node_count = (tree_low_cst (hi_index, 1)
5364 - tree_low_cst (lo_index, 1) + 1);
5366 else
5367 this_node_count = 1;
5369 count += this_node_count;
5370 if (mostly_zeros_p (value))
5371 zero_count += this_node_count;
5374 /* Clear the entire array first if there are any missing
5375 elements, or if the incidence of zero elements is >=
5376 75%. */
5377 if (! need_to_clear
5378 && (count < maxelt - minelt + 1
5379 || 4 * zero_count >= 3 * count))
5380 need_to_clear = 1;
5383 if (need_to_clear && size > 0)
5385 if (REG_P (target))
5386 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5387 else
5388 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5389 cleared = 1;
5392 if (!cleared && REG_P (target))
5393 /* Inform later passes that the old value is dead. */
5394 emit_clobber (target);
5396 /* Store each element of the constructor into the
5397 corresponding element of TARGET, determined by counting the
5398 elements. */
5399 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), i, index, value)
5401 enum machine_mode mode;
5402 HOST_WIDE_INT bitsize;
5403 HOST_WIDE_INT bitpos;
5404 int unsignedp;
5405 rtx xtarget = target;
5407 if (cleared && initializer_zerop (value))
5408 continue;
5410 unsignedp = TYPE_UNSIGNED (elttype);
5411 mode = TYPE_MODE (elttype);
5412 if (mode == BLKmode)
5413 bitsize = (host_integerp (TYPE_SIZE (elttype), 1)
5414 ? tree_low_cst (TYPE_SIZE (elttype), 1)
5415 : -1);
5416 else
5417 bitsize = GET_MODE_BITSIZE (mode);
5419 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
5421 tree lo_index = TREE_OPERAND (index, 0);
5422 tree hi_index = TREE_OPERAND (index, 1);
5423 rtx index_r, pos_rtx;
5424 HOST_WIDE_INT lo, hi, count;
5425 tree position;
5427 /* If the range is constant and "small", unroll the loop. */
5428 if (const_bounds_p
5429 && host_integerp (lo_index, 0)
5430 && host_integerp (hi_index, 0)
5431 && (lo = tree_low_cst (lo_index, 0),
5432 hi = tree_low_cst (hi_index, 0),
5433 count = hi - lo + 1,
5434 (!MEM_P (target)
5435 || count <= 2
5436 || (host_integerp (TYPE_SIZE (elttype), 1)
5437 && (tree_low_cst (TYPE_SIZE (elttype), 1) * count
5438 <= 40 * 8)))))
5440 lo -= minelt; hi -= minelt;
5441 for (; lo <= hi; lo++)
5443 bitpos = lo * tree_low_cst (TYPE_SIZE (elttype), 0);
5445 if (MEM_P (target)
5446 && !MEM_KEEP_ALIAS_SET_P (target)
5447 && TREE_CODE (type) == ARRAY_TYPE
5448 && TYPE_NONALIASED_COMPONENT (type))
5450 target = copy_rtx (target);
5451 MEM_KEEP_ALIAS_SET_P (target) = 1;
5454 store_constructor_field
5455 (target, bitsize, bitpos, mode, value, type, cleared,
5456 get_alias_set (elttype));
5459 else
5461 rtx loop_start = gen_label_rtx ();
5462 rtx loop_end = gen_label_rtx ();
5463 tree exit_cond;
5465 expand_normal (hi_index);
5466 unsignedp = TYPE_UNSIGNED (domain);
5468 index = build_decl (VAR_DECL, NULL_TREE, domain);
5470 index_r
5471 = gen_reg_rtx (promote_mode (domain, DECL_MODE (index),
5472 &unsignedp, 0));
5473 SET_DECL_RTL (index, index_r);
5474 store_expr (lo_index, index_r, 0, false);
5476 /* Build the head of the loop. */
5477 do_pending_stack_adjust ();
5478 emit_label (loop_start);
5480 /* Assign value to element index. */
5481 position =
5482 fold_convert (ssizetype,
5483 fold_build2 (MINUS_EXPR,
5484 TREE_TYPE (index),
5485 index,
5486 TYPE_MIN_VALUE (domain)));
5488 position =
5489 size_binop (MULT_EXPR, position,
5490 fold_convert (ssizetype,
5491 TYPE_SIZE_UNIT (elttype)));
5493 pos_rtx = expand_normal (position);
5494 xtarget = offset_address (target, pos_rtx,
5495 highest_pow2_factor (position));
5496 xtarget = adjust_address (xtarget, mode, 0);
5497 if (TREE_CODE (value) == CONSTRUCTOR)
5498 store_constructor (value, xtarget, cleared,
5499 bitsize / BITS_PER_UNIT);
5500 else
5501 store_expr (value, xtarget, 0, false);
5503 /* Generate a conditional jump to exit the loop. */
5504 exit_cond = build2 (LT_EXPR, integer_type_node,
5505 index, hi_index);
5506 jumpif (exit_cond, loop_end);
5508 /* Update the loop counter, and jump to the head of
5509 the loop. */
5510 expand_assignment (index,
5511 build2 (PLUS_EXPR, TREE_TYPE (index),
5512 index, integer_one_node),
5513 false);
5515 emit_jump (loop_start);
5517 /* Build the end of the loop. */
5518 emit_label (loop_end);
5521 else if ((index != 0 && ! host_integerp (index, 0))
5522 || ! host_integerp (TYPE_SIZE (elttype), 1))
5524 tree position;
5526 if (index == 0)
5527 index = ssize_int (1);
5529 if (minelt)
5530 index = fold_convert (ssizetype,
5531 fold_build2 (MINUS_EXPR,
5532 TREE_TYPE (index),
5533 index,
5534 TYPE_MIN_VALUE (domain)));
5536 position =
5537 size_binop (MULT_EXPR, index,
5538 fold_convert (ssizetype,
5539 TYPE_SIZE_UNIT (elttype)));
5540 xtarget = offset_address (target,
5541 expand_normal (position),
5542 highest_pow2_factor (position));
5543 xtarget = adjust_address (xtarget, mode, 0);
5544 store_expr (value, xtarget, 0, false);
5546 else
5548 if (index != 0)
5549 bitpos = ((tree_low_cst (index, 0) - minelt)
5550 * tree_low_cst (TYPE_SIZE (elttype), 1));
5551 else
5552 bitpos = (i * tree_low_cst (TYPE_SIZE (elttype), 1));
5554 if (MEM_P (target) && !MEM_KEEP_ALIAS_SET_P (target)
5555 && TREE_CODE (type) == ARRAY_TYPE
5556 && TYPE_NONALIASED_COMPONENT (type))
5558 target = copy_rtx (target);
5559 MEM_KEEP_ALIAS_SET_P (target) = 1;
5561 store_constructor_field (target, bitsize, bitpos, mode, value,
5562 type, cleared, get_alias_set (elttype));
5565 break;
5568 case VECTOR_TYPE:
5570 unsigned HOST_WIDE_INT idx;
5571 constructor_elt *ce;
5572 int i;
5573 int need_to_clear;
5574 int icode = 0;
5575 tree elttype = TREE_TYPE (type);
5576 int elt_size = tree_low_cst (TYPE_SIZE (elttype), 1);
5577 enum machine_mode eltmode = TYPE_MODE (elttype);
5578 HOST_WIDE_INT bitsize;
5579 HOST_WIDE_INT bitpos;
5580 rtvec vector = NULL;
5581 unsigned n_elts;
5583 gcc_assert (eltmode != BLKmode);
5585 n_elts = TYPE_VECTOR_SUBPARTS (type);
5586 if (REG_P (target) && VECTOR_MODE_P (GET_MODE (target)))
5588 enum machine_mode mode = GET_MODE (target);
5590 icode = (int) optab_handler (vec_init_optab, mode)->insn_code;
5591 if (icode != CODE_FOR_nothing)
5593 unsigned int i;
5595 vector = rtvec_alloc (n_elts);
5596 for (i = 0; i < n_elts; i++)
5597 RTVEC_ELT (vector, i) = CONST0_RTX (GET_MODE_INNER (mode));
5601 /* If the constructor has fewer elements than the vector,
5602 clear the whole array first. Similarly if this is static
5603 constructor of a non-BLKmode object. */
5604 if (cleared)
5605 need_to_clear = 0;
5606 else if (REG_P (target) && TREE_STATIC (exp))
5607 need_to_clear = 1;
5608 else
5610 unsigned HOST_WIDE_INT count = 0, zero_count = 0;
5611 tree value;
5613 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
5615 int n_elts_here = tree_low_cst
5616 (int_const_binop (TRUNC_DIV_EXPR,
5617 TYPE_SIZE (TREE_TYPE (value)),
5618 TYPE_SIZE (elttype), 0), 1);
5620 count += n_elts_here;
5621 if (mostly_zeros_p (value))
5622 zero_count += n_elts_here;
5625 /* Clear the entire vector first if there are any missing elements,
5626 or if the incidence of zero elements is >= 75%. */
5627 need_to_clear = (count < n_elts || 4 * zero_count >= 3 * count);
5630 if (need_to_clear && size > 0 && !vector)
5632 if (REG_P (target))
5633 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5634 else
5635 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5636 cleared = 1;
5639 /* Inform later passes that the old value is dead. */
5640 if (!cleared && !vector && REG_P (target))
5641 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5643 /* Store each element of the constructor into the corresponding
5644 element of TARGET, determined by counting the elements. */
5645 for (idx = 0, i = 0;
5646 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce);
5647 idx++, i += bitsize / elt_size)
5649 HOST_WIDE_INT eltpos;
5650 tree value = ce->value;
5652 bitsize = tree_low_cst (TYPE_SIZE (TREE_TYPE (value)), 1);
5653 if (cleared && initializer_zerop (value))
5654 continue;
5656 if (ce->index)
5657 eltpos = tree_low_cst (ce->index, 1);
5658 else
5659 eltpos = i;
5661 if (vector)
5663 /* Vector CONSTRUCTORs should only be built from smaller
5664 vectors in the case of BLKmode vectors. */
5665 gcc_assert (TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE);
5666 RTVEC_ELT (vector, eltpos)
5667 = expand_normal (value);
5669 else
5671 enum machine_mode value_mode =
5672 TREE_CODE (TREE_TYPE (value)) == VECTOR_TYPE
5673 ? TYPE_MODE (TREE_TYPE (value))
5674 : eltmode;
5675 bitpos = eltpos * elt_size;
5676 store_constructor_field (target, bitsize, bitpos,
5677 value_mode, value, type,
5678 cleared, get_alias_set (elttype));
5682 if (vector)
5683 emit_insn (GEN_FCN (icode)
5684 (target,
5685 gen_rtx_PARALLEL (GET_MODE (target), vector)));
5686 break;
5689 default:
5690 gcc_unreachable ();
5694 /* Store the value of EXP (an expression tree)
5695 into a subfield of TARGET which has mode MODE and occupies
5696 BITSIZE bits, starting BITPOS bits from the start of TARGET.
5697 If MODE is VOIDmode, it means that we are storing into a bit-field.
5699 Always return const0_rtx unless we have something particular to
5700 return.
5702 TYPE is the type of the underlying object,
5704 ALIAS_SET is the alias set for the destination. This value will
5705 (in general) be different from that for TARGET, since TARGET is a
5706 reference to the containing structure.
5708 If NONTEMPORAL is true, try generating a nontemporal store. */
5710 static rtx
5711 store_field (rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos,
5712 enum machine_mode mode, tree exp, tree type,
5713 alias_set_type alias_set, bool nontemporal)
5715 HOST_WIDE_INT width_mask = 0;
5717 if (TREE_CODE (exp) == ERROR_MARK)
5718 return const0_rtx;
5720 /* If we have nothing to store, do nothing unless the expression has
5721 side-effects. */
5722 if (bitsize == 0)
5723 return expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
5724 else if (bitsize >= 0 && bitsize < HOST_BITS_PER_WIDE_INT)
5725 width_mask = ((HOST_WIDE_INT) 1 << bitsize) - 1;
5727 /* If we are storing into an unaligned field of an aligned union that is
5728 in a register, we may have the mode of TARGET being an integer mode but
5729 MODE == BLKmode. In that case, get an aligned object whose size and
5730 alignment are the same as TARGET and store TARGET into it (we can avoid
5731 the store if the field being stored is the entire width of TARGET). Then
5732 call ourselves recursively to store the field into a BLKmode version of
5733 that object. Finally, load from the object into TARGET. This is not
5734 very efficient in general, but should only be slightly more expensive
5735 than the otherwise-required unaligned accesses. Perhaps this can be
5736 cleaned up later. It's tempting to make OBJECT readonly, but it's set
5737 twice, once with emit_move_insn and once via store_field. */
5739 if (mode == BLKmode
5740 && (REG_P (target) || GET_CODE (target) == SUBREG))
5742 rtx object = assign_temp (type, 0, 1, 1);
5743 rtx blk_object = adjust_address (object, BLKmode, 0);
5745 if (bitsize != (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (target)))
5746 emit_move_insn (object, target);
5748 store_field (blk_object, bitsize, bitpos, mode, exp, type, alias_set,
5749 nontemporal);
5751 emit_move_insn (target, object);
5753 /* We want to return the BLKmode version of the data. */
5754 return blk_object;
5757 if (GET_CODE (target) == CONCAT)
5759 /* We're storing into a struct containing a single __complex. */
5761 gcc_assert (!bitpos);
5762 return store_expr (exp, target, 0, nontemporal);
5765 /* If the structure is in a register or if the component
5766 is a bit field, we cannot use addressing to access it.
5767 Use bit-field techniques or SUBREG to store in it. */
5769 if (mode == VOIDmode
5770 || (mode != BLKmode && ! direct_store[(int) mode]
5771 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
5772 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
5773 || REG_P (target)
5774 || GET_CODE (target) == SUBREG
5775 /* If the field isn't aligned enough to store as an ordinary memref,
5776 store it as a bit field. */
5777 || (mode != BLKmode
5778 && ((((MEM_ALIGN (target) < GET_MODE_ALIGNMENT (mode))
5779 || bitpos % GET_MODE_ALIGNMENT (mode))
5780 && SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (target)))
5781 || (bitpos % BITS_PER_UNIT != 0)))
5782 /* If the RHS and field are a constant size and the size of the
5783 RHS isn't the same size as the bitfield, we must use bitfield
5784 operations. */
5785 || (bitsize >= 0
5786 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
5787 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) != 0))
5789 rtx temp;
5791 /* If EXP is a NOP_EXPR of precision less than its mode, then that
5792 implies a mask operation. If the precision is the same size as
5793 the field we're storing into, that mask is redundant. This is
5794 particularly common with bit field assignments generated by the
5795 C front end. */
5796 if (TREE_CODE (exp) == NOP_EXPR)
5798 tree type = TREE_TYPE (exp);
5799 if (INTEGRAL_TYPE_P (type)
5800 && TYPE_PRECISION (type) < GET_MODE_BITSIZE (TYPE_MODE (type))
5801 && bitsize == TYPE_PRECISION (type))
5803 type = TREE_TYPE (TREE_OPERAND (exp, 0));
5804 if (INTEGRAL_TYPE_P (type) && TYPE_PRECISION (type) >= bitsize)
5805 exp = TREE_OPERAND (exp, 0);
5809 temp = expand_normal (exp);
5811 /* If BITSIZE is narrower than the size of the type of EXP
5812 we will be narrowing TEMP. Normally, what's wanted are the
5813 low-order bits. However, if EXP's type is a record and this is
5814 big-endian machine, we want the upper BITSIZE bits. */
5815 if (BYTES_BIG_ENDIAN && GET_MODE_CLASS (GET_MODE (temp)) == MODE_INT
5816 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (temp))
5817 && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
5818 temp = expand_shift (RSHIFT_EXPR, GET_MODE (temp), temp,
5819 size_int (GET_MODE_BITSIZE (GET_MODE (temp))
5820 - bitsize),
5821 NULL_RTX, 1);
5823 /* Unless MODE is VOIDmode or BLKmode, convert TEMP to
5824 MODE. */
5825 if (mode != VOIDmode && mode != BLKmode
5826 && mode != TYPE_MODE (TREE_TYPE (exp)))
5827 temp = convert_modes (mode, TYPE_MODE (TREE_TYPE (exp)), temp, 1);
5829 /* If the modes of TEMP and TARGET are both BLKmode, both
5830 must be in memory and BITPOS must be aligned on a byte
5831 boundary. If so, we simply do a block copy. Likewise
5832 for a BLKmode-like TARGET. */
5833 if (GET_MODE (temp) == BLKmode
5834 && (GET_MODE (target) == BLKmode
5835 || (MEM_P (target)
5836 && GET_MODE_CLASS (GET_MODE (target)) == MODE_INT
5837 && (bitpos % BITS_PER_UNIT) == 0
5838 && (bitsize % BITS_PER_UNIT) == 0)))
5840 gcc_assert (MEM_P (target) && MEM_P (temp)
5841 && (bitpos % BITS_PER_UNIT) == 0);
5843 target = adjust_address (target, VOIDmode, bitpos / BITS_PER_UNIT);
5844 emit_block_move (target, temp,
5845 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
5846 / BITS_PER_UNIT),
5847 BLOCK_OP_NORMAL);
5849 return const0_rtx;
5852 /* Store the value in the bitfield. */
5853 store_bit_field (target, bitsize, bitpos, mode, temp);
5855 return const0_rtx;
5857 else
5859 /* Now build a reference to just the desired component. */
5860 rtx to_rtx = adjust_address (target, mode, bitpos / BITS_PER_UNIT);
5862 if (to_rtx == target)
5863 to_rtx = copy_rtx (to_rtx);
5865 MEM_SET_IN_STRUCT_P (to_rtx, 1);
5866 if (!MEM_KEEP_ALIAS_SET_P (to_rtx) && MEM_ALIAS_SET (to_rtx) != 0)
5867 set_mem_alias_set (to_rtx, alias_set);
5869 return store_expr (exp, to_rtx, 0, nontemporal);
5873 /* Given an expression EXP that may be a COMPONENT_REF, a BIT_FIELD_REF,
5874 an ARRAY_REF, or an ARRAY_RANGE_REF, look for nested operations of these
5875 codes and find the ultimate containing object, which we return.
5877 We set *PBITSIZE to the size in bits that we want, *PBITPOS to the
5878 bit position, and *PUNSIGNEDP to the signedness of the field.
5879 If the position of the field is variable, we store a tree
5880 giving the variable offset (in units) in *POFFSET.
5881 This offset is in addition to the bit position.
5882 If the position is not variable, we store 0 in *POFFSET.
5884 If any of the extraction expressions is volatile,
5885 we store 1 in *PVOLATILEP. Otherwise we don't change that.
5887 If the field is a non-BLKmode bit-field, *PMODE is set to VOIDmode.
5888 Otherwise, it is a mode that can be used to access the field.
5890 If the field describes a variable-sized object, *PMODE is set to
5891 BLKmode and *PBITSIZE is set to -1. An access cannot be made in
5892 this case, but the address of the object can be found.
5894 If KEEP_ALIGNING is true and the target is STRICT_ALIGNMENT, we don't
5895 look through nodes that serve as markers of a greater alignment than
5896 the one that can be deduced from the expression. These nodes make it
5897 possible for front-ends to prevent temporaries from being created by
5898 the middle-end on alignment considerations. For that purpose, the
5899 normal operating mode at high-level is to always pass FALSE so that
5900 the ultimate containing object is really returned; moreover, the
5901 associated predicate handled_component_p will always return TRUE
5902 on these nodes, thus indicating that they are essentially handled
5903 by get_inner_reference. TRUE should only be passed when the caller
5904 is scanning the expression in order to build another representation
5905 and specifically knows how to handle these nodes; as such, this is
5906 the normal operating mode in the RTL expanders. */
5908 tree
5909 get_inner_reference (tree exp, HOST_WIDE_INT *pbitsize,
5910 HOST_WIDE_INT *pbitpos, tree *poffset,
5911 enum machine_mode *pmode, int *punsignedp,
5912 int *pvolatilep, bool keep_aligning)
5914 tree size_tree = 0;
5915 enum machine_mode mode = VOIDmode;
5916 bool blkmode_bitfield = false;
5917 tree offset = size_zero_node;
5918 tree bit_offset = bitsize_zero_node;
5920 /* First get the mode, signedness, and size. We do this from just the
5921 outermost expression. */
5922 if (TREE_CODE (exp) == COMPONENT_REF)
5924 tree field = TREE_OPERAND (exp, 1);
5925 size_tree = DECL_SIZE (field);
5926 if (!DECL_BIT_FIELD (field))
5927 mode = DECL_MODE (field);
5928 else if (DECL_MODE (field) == BLKmode)
5929 blkmode_bitfield = true;
5931 *punsignedp = DECL_UNSIGNED (field);
5933 else if (TREE_CODE (exp) == BIT_FIELD_REF)
5935 size_tree = TREE_OPERAND (exp, 1);
5936 *punsignedp = (! INTEGRAL_TYPE_P (TREE_TYPE (exp))
5937 || TYPE_UNSIGNED (TREE_TYPE (exp)));
5939 /* For vector types, with the correct size of access, use the mode of
5940 inner type. */
5941 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == VECTOR_TYPE
5942 && TREE_TYPE (exp) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)))
5943 && tree_int_cst_equal (size_tree, TYPE_SIZE (TREE_TYPE (exp))))
5944 mode = TYPE_MODE (TREE_TYPE (exp));
5946 else
5948 mode = TYPE_MODE (TREE_TYPE (exp));
5949 *punsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
5951 if (mode == BLKmode)
5952 size_tree = TYPE_SIZE (TREE_TYPE (exp));
5953 else
5954 *pbitsize = GET_MODE_BITSIZE (mode);
5957 if (size_tree != 0)
5959 if (! host_integerp (size_tree, 1))
5960 mode = BLKmode, *pbitsize = -1;
5961 else
5962 *pbitsize = tree_low_cst (size_tree, 1);
5965 /* Compute cumulative bit-offset for nested component-refs and array-refs,
5966 and find the ultimate containing object. */
5967 while (1)
5969 switch (TREE_CODE (exp))
5971 case BIT_FIELD_REF:
5972 bit_offset = size_binop (PLUS_EXPR, bit_offset,
5973 TREE_OPERAND (exp, 2));
5974 break;
5976 case COMPONENT_REF:
5978 tree field = TREE_OPERAND (exp, 1);
5979 tree this_offset = component_ref_field_offset (exp);
5981 /* If this field hasn't been filled in yet, don't go past it.
5982 This should only happen when folding expressions made during
5983 type construction. */
5984 if (this_offset == 0)
5985 break;
5987 offset = size_binop (PLUS_EXPR, offset, this_offset);
5988 bit_offset = size_binop (PLUS_EXPR, bit_offset,
5989 DECL_FIELD_BIT_OFFSET (field));
5991 /* ??? Right now we don't do anything with DECL_OFFSET_ALIGN. */
5993 break;
5995 case ARRAY_REF:
5996 case ARRAY_RANGE_REF:
5998 tree index = TREE_OPERAND (exp, 1);
5999 tree low_bound = array_ref_low_bound (exp);
6000 tree unit_size = array_ref_element_size (exp);
6002 /* We assume all arrays have sizes that are a multiple of a byte.
6003 First subtract the lower bound, if any, in the type of the
6004 index, then convert to sizetype and multiply by the size of
6005 the array element. */
6006 if (! integer_zerop (low_bound))
6007 index = fold_build2 (MINUS_EXPR, TREE_TYPE (index),
6008 index, low_bound);
6010 offset = size_binop (PLUS_EXPR, offset,
6011 size_binop (MULT_EXPR,
6012 fold_convert (sizetype, index),
6013 unit_size));
6015 break;
6017 case REALPART_EXPR:
6018 break;
6020 case IMAGPART_EXPR:
6021 bit_offset = size_binop (PLUS_EXPR, bit_offset,
6022 bitsize_int (*pbitsize));
6023 break;
6025 case VIEW_CONVERT_EXPR:
6026 if (keep_aligning && STRICT_ALIGNMENT
6027 && (TYPE_ALIGN (TREE_TYPE (exp))
6028 > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0))))
6029 && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0)))
6030 < BIGGEST_ALIGNMENT)
6031 && (TYPE_ALIGN_OK (TREE_TYPE (exp))
6032 || TYPE_ALIGN_OK (TREE_TYPE (TREE_OPERAND (exp, 0)))))
6033 goto done;
6034 break;
6036 default:
6037 goto done;
6040 /* If any reference in the chain is volatile, the effect is volatile. */
6041 if (TREE_THIS_VOLATILE (exp))
6042 *pvolatilep = 1;
6044 exp = TREE_OPERAND (exp, 0);
6046 done:
6048 /* If OFFSET is constant, see if we can return the whole thing as a
6049 constant bit position. Make sure to handle overflow during
6050 this conversion. */
6051 if (host_integerp (offset, 0))
6053 double_int tem = double_int_mul (tree_to_double_int (offset),
6054 uhwi_to_double_int (BITS_PER_UNIT));
6055 tem = double_int_add (tem, tree_to_double_int (bit_offset));
6056 if (double_int_fits_in_shwi_p (tem))
6058 *pbitpos = double_int_to_shwi (tem);
6059 *poffset = offset = NULL_TREE;
6063 /* Otherwise, split it up. */
6064 if (offset)
6066 *pbitpos = tree_low_cst (bit_offset, 0);
6067 *poffset = offset;
6070 /* We can use BLKmode for a byte-aligned BLKmode bitfield. */
6071 if (mode == VOIDmode
6072 && blkmode_bitfield
6073 && (*pbitpos % BITS_PER_UNIT) == 0
6074 && (*pbitsize % BITS_PER_UNIT) == 0)
6075 *pmode = BLKmode;
6076 else
6077 *pmode = mode;
6079 return exp;
6082 /* Given an expression EXP that may be a COMPONENT_REF, an ARRAY_REF or an
6083 ARRAY_RANGE_REF, look for whether EXP or any nested component-refs within
6084 EXP is marked as PACKED. */
6086 bool
6087 contains_packed_reference (const_tree exp)
6089 bool packed_p = false;
6091 while (1)
6093 switch (TREE_CODE (exp))
6095 case COMPONENT_REF:
6097 tree field = TREE_OPERAND (exp, 1);
6098 packed_p = DECL_PACKED (field)
6099 || TYPE_PACKED (TREE_TYPE (field))
6100 || TYPE_PACKED (TREE_TYPE (exp));
6101 if (packed_p)
6102 goto done;
6104 break;
6106 case BIT_FIELD_REF:
6107 case ARRAY_REF:
6108 case ARRAY_RANGE_REF:
6109 case REALPART_EXPR:
6110 case IMAGPART_EXPR:
6111 case VIEW_CONVERT_EXPR:
6112 break;
6114 default:
6115 goto done;
6117 exp = TREE_OPERAND (exp, 0);
6119 done:
6120 return packed_p;
6123 /* Return a tree of sizetype representing the size, in bytes, of the element
6124 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6126 tree
6127 array_ref_element_size (tree exp)
6129 tree aligned_size = TREE_OPERAND (exp, 3);
6130 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
6132 /* If a size was specified in the ARRAY_REF, it's the size measured
6133 in alignment units of the element type. So multiply by that value. */
6134 if (aligned_size)
6136 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6137 sizetype from another type of the same width and signedness. */
6138 if (TREE_TYPE (aligned_size) != sizetype)
6139 aligned_size = fold_convert (sizetype, aligned_size);
6140 return size_binop (MULT_EXPR, aligned_size,
6141 size_int (TYPE_ALIGN_UNIT (elmt_type)));
6144 /* Otherwise, take the size from that of the element type. Substitute
6145 any PLACEHOLDER_EXPR that we have. */
6146 else
6147 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
6150 /* Return a tree representing the lower bound of the array mentioned in
6151 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6153 tree
6154 array_ref_low_bound (tree exp)
6156 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
6158 /* If a lower bound is specified in EXP, use it. */
6159 if (TREE_OPERAND (exp, 2))
6160 return TREE_OPERAND (exp, 2);
6162 /* Otherwise, if there is a domain type and it has a lower bound, use it,
6163 substituting for a PLACEHOLDER_EXPR as needed. */
6164 if (domain_type && TYPE_MIN_VALUE (domain_type))
6165 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
6167 /* Otherwise, return a zero of the appropriate type. */
6168 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
6171 /* Return a tree representing the upper bound of the array mentioned in
6172 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6174 tree
6175 array_ref_up_bound (tree exp)
6177 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
6179 /* If there is a domain type and it has an upper bound, use it, substituting
6180 for a PLACEHOLDER_EXPR as needed. */
6181 if (domain_type && TYPE_MAX_VALUE (domain_type))
6182 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
6184 /* Otherwise fail. */
6185 return NULL_TREE;
6188 /* Return a tree representing the offset, in bytes, of the field referenced
6189 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
6191 tree
6192 component_ref_field_offset (tree exp)
6194 tree aligned_offset = TREE_OPERAND (exp, 2);
6195 tree field = TREE_OPERAND (exp, 1);
6197 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
6198 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
6199 value. */
6200 if (aligned_offset)
6202 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6203 sizetype from another type of the same width and signedness. */
6204 if (TREE_TYPE (aligned_offset) != sizetype)
6205 aligned_offset = fold_convert (sizetype, aligned_offset);
6206 return size_binop (MULT_EXPR, aligned_offset,
6207 size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT));
6210 /* Otherwise, take the offset from that of the field. Substitute
6211 any PLACEHOLDER_EXPR that we have. */
6212 else
6213 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
6216 /* Return 1 if T is an expression that get_inner_reference handles. */
6219 handled_component_p (const_tree t)
6221 switch (TREE_CODE (t))
6223 case BIT_FIELD_REF:
6224 case COMPONENT_REF:
6225 case ARRAY_REF:
6226 case ARRAY_RANGE_REF:
6227 case VIEW_CONVERT_EXPR:
6228 case REALPART_EXPR:
6229 case IMAGPART_EXPR:
6230 return 1;
6232 default:
6233 return 0;
6237 /* Given an rtx VALUE that may contain additions and multiplications, return
6238 an equivalent value that just refers to a register, memory, or constant.
6239 This is done by generating instructions to perform the arithmetic and
6240 returning a pseudo-register containing the value.
6242 The returned value may be a REG, SUBREG, MEM or constant. */
6245 force_operand (rtx value, rtx target)
6247 rtx op1, op2;
6248 /* Use subtarget as the target for operand 0 of a binary operation. */
6249 rtx subtarget = get_subtarget (target);
6250 enum rtx_code code = GET_CODE (value);
6252 /* Check for subreg applied to an expression produced by loop optimizer. */
6253 if (code == SUBREG
6254 && !REG_P (SUBREG_REG (value))
6255 && !MEM_P (SUBREG_REG (value)))
6257 value
6258 = simplify_gen_subreg (GET_MODE (value),
6259 force_reg (GET_MODE (SUBREG_REG (value)),
6260 force_operand (SUBREG_REG (value),
6261 NULL_RTX)),
6262 GET_MODE (SUBREG_REG (value)),
6263 SUBREG_BYTE (value));
6264 code = GET_CODE (value);
6267 /* Check for a PIC address load. */
6268 if ((code == PLUS || code == MINUS)
6269 && XEXP (value, 0) == pic_offset_table_rtx
6270 && (GET_CODE (XEXP (value, 1)) == SYMBOL_REF
6271 || GET_CODE (XEXP (value, 1)) == LABEL_REF
6272 || GET_CODE (XEXP (value, 1)) == CONST))
6274 if (!subtarget)
6275 subtarget = gen_reg_rtx (GET_MODE (value));
6276 emit_move_insn (subtarget, value);
6277 return subtarget;
6280 if (ARITHMETIC_P (value))
6282 op2 = XEXP (value, 1);
6283 if (!CONSTANT_P (op2) && !(REG_P (op2) && op2 != subtarget))
6284 subtarget = 0;
6285 if (code == MINUS && GET_CODE (op2) == CONST_INT)
6287 code = PLUS;
6288 op2 = negate_rtx (GET_MODE (value), op2);
6291 /* Check for an addition with OP2 a constant integer and our first
6292 operand a PLUS of a virtual register and something else. In that
6293 case, we want to emit the sum of the virtual register and the
6294 constant first and then add the other value. This allows virtual
6295 register instantiation to simply modify the constant rather than
6296 creating another one around this addition. */
6297 if (code == PLUS && GET_CODE (op2) == CONST_INT
6298 && GET_CODE (XEXP (value, 0)) == PLUS
6299 && REG_P (XEXP (XEXP (value, 0), 0))
6300 && REGNO (XEXP (XEXP (value, 0), 0)) >= FIRST_VIRTUAL_REGISTER
6301 && REGNO (XEXP (XEXP (value, 0), 0)) <= LAST_VIRTUAL_REGISTER)
6303 rtx temp = expand_simple_binop (GET_MODE (value), code,
6304 XEXP (XEXP (value, 0), 0), op2,
6305 subtarget, 0, OPTAB_LIB_WIDEN);
6306 return expand_simple_binop (GET_MODE (value), code, temp,
6307 force_operand (XEXP (XEXP (value,
6308 0), 1), 0),
6309 target, 0, OPTAB_LIB_WIDEN);
6312 op1 = force_operand (XEXP (value, 0), subtarget);
6313 op2 = force_operand (op2, NULL_RTX);
6314 switch (code)
6316 case MULT:
6317 return expand_mult (GET_MODE (value), op1, op2, target, 1);
6318 case DIV:
6319 if (!INTEGRAL_MODE_P (GET_MODE (value)))
6320 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6321 target, 1, OPTAB_LIB_WIDEN);
6322 else
6323 return expand_divmod (0,
6324 FLOAT_MODE_P (GET_MODE (value))
6325 ? RDIV_EXPR : TRUNC_DIV_EXPR,
6326 GET_MODE (value), op1, op2, target, 0);
6327 case MOD:
6328 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
6329 target, 0);
6330 case UDIV:
6331 return expand_divmod (0, TRUNC_DIV_EXPR, GET_MODE (value), op1, op2,
6332 target, 1);
6333 case UMOD:
6334 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
6335 target, 1);
6336 case ASHIFTRT:
6337 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6338 target, 0, OPTAB_LIB_WIDEN);
6339 default:
6340 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6341 target, 1, OPTAB_LIB_WIDEN);
6344 if (UNARY_P (value))
6346 if (!target)
6347 target = gen_reg_rtx (GET_MODE (value));
6348 op1 = force_operand (XEXP (value, 0), NULL_RTX);
6349 switch (code)
6351 case ZERO_EXTEND:
6352 case SIGN_EXTEND:
6353 case TRUNCATE:
6354 case FLOAT_EXTEND:
6355 case FLOAT_TRUNCATE:
6356 convert_move (target, op1, code == ZERO_EXTEND);
6357 return target;
6359 case FIX:
6360 case UNSIGNED_FIX:
6361 expand_fix (target, op1, code == UNSIGNED_FIX);
6362 return target;
6364 case FLOAT:
6365 case UNSIGNED_FLOAT:
6366 expand_float (target, op1, code == UNSIGNED_FLOAT);
6367 return target;
6369 default:
6370 return expand_simple_unop (GET_MODE (value), code, op1, target, 0);
6374 #ifdef INSN_SCHEDULING
6375 /* On machines that have insn scheduling, we want all memory reference to be
6376 explicit, so we need to deal with such paradoxical SUBREGs. */
6377 if (GET_CODE (value) == SUBREG && MEM_P (SUBREG_REG (value))
6378 && (GET_MODE_SIZE (GET_MODE (value))
6379 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (value)))))
6380 value
6381 = simplify_gen_subreg (GET_MODE (value),
6382 force_reg (GET_MODE (SUBREG_REG (value)),
6383 force_operand (SUBREG_REG (value),
6384 NULL_RTX)),
6385 GET_MODE (SUBREG_REG (value)),
6386 SUBREG_BYTE (value));
6387 #endif
6389 return value;
6392 /* Subroutine of expand_expr: return nonzero iff there is no way that
6393 EXP can reference X, which is being modified. TOP_P is nonzero if this
6394 call is going to be used to determine whether we need a temporary
6395 for EXP, as opposed to a recursive call to this function.
6397 It is always safe for this routine to return zero since it merely
6398 searches for optimization opportunities. */
6401 safe_from_p (const_rtx x, tree exp, int top_p)
6403 rtx exp_rtl = 0;
6404 int i, nops;
6406 if (x == 0
6407 /* If EXP has varying size, we MUST use a target since we currently
6408 have no way of allocating temporaries of variable size
6409 (except for arrays that have TYPE_ARRAY_MAX_SIZE set).
6410 So we assume here that something at a higher level has prevented a
6411 clash. This is somewhat bogus, but the best we can do. Only
6412 do this when X is BLKmode and when we are at the top level. */
6413 || (top_p && TREE_TYPE (exp) != 0 && COMPLETE_TYPE_P (TREE_TYPE (exp))
6414 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST
6415 && (TREE_CODE (TREE_TYPE (exp)) != ARRAY_TYPE
6416 || TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)) == NULL_TREE
6417 || TREE_CODE (TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)))
6418 != INTEGER_CST)
6419 && GET_MODE (x) == BLKmode)
6420 /* If X is in the outgoing argument area, it is always safe. */
6421 || (MEM_P (x)
6422 && (XEXP (x, 0) == virtual_outgoing_args_rtx
6423 || (GET_CODE (XEXP (x, 0)) == PLUS
6424 && XEXP (XEXP (x, 0), 0) == virtual_outgoing_args_rtx))))
6425 return 1;
6427 /* If this is a subreg of a hard register, declare it unsafe, otherwise,
6428 find the underlying pseudo. */
6429 if (GET_CODE (x) == SUBREG)
6431 x = SUBREG_REG (x);
6432 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
6433 return 0;
6436 /* Now look at our tree code and possibly recurse. */
6437 switch (TREE_CODE_CLASS (TREE_CODE (exp)))
6439 case tcc_declaration:
6440 exp_rtl = DECL_RTL_IF_SET (exp);
6441 break;
6443 case tcc_constant:
6444 return 1;
6446 case tcc_exceptional:
6447 if (TREE_CODE (exp) == TREE_LIST)
6449 while (1)
6451 if (TREE_VALUE (exp) && !safe_from_p (x, TREE_VALUE (exp), 0))
6452 return 0;
6453 exp = TREE_CHAIN (exp);
6454 if (!exp)
6455 return 1;
6456 if (TREE_CODE (exp) != TREE_LIST)
6457 return safe_from_p (x, exp, 0);
6460 else if (TREE_CODE (exp) == CONSTRUCTOR)
6462 constructor_elt *ce;
6463 unsigned HOST_WIDE_INT idx;
6465 for (idx = 0;
6466 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce);
6467 idx++)
6468 if ((ce->index != NULL_TREE && !safe_from_p (x, ce->index, 0))
6469 || !safe_from_p (x, ce->value, 0))
6470 return 0;
6471 return 1;
6473 else if (TREE_CODE (exp) == ERROR_MARK)
6474 return 1; /* An already-visited SAVE_EXPR? */
6475 else
6476 return 0;
6478 case tcc_statement:
6479 /* The only case we look at here is the DECL_INITIAL inside a
6480 DECL_EXPR. */
6481 return (TREE_CODE (exp) != DECL_EXPR
6482 || TREE_CODE (DECL_EXPR_DECL (exp)) != VAR_DECL
6483 || !DECL_INITIAL (DECL_EXPR_DECL (exp))
6484 || safe_from_p (x, DECL_INITIAL (DECL_EXPR_DECL (exp)), 0));
6486 case tcc_binary:
6487 case tcc_comparison:
6488 if (!safe_from_p (x, TREE_OPERAND (exp, 1), 0))
6489 return 0;
6490 /* Fall through. */
6492 case tcc_unary:
6493 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
6495 case tcc_expression:
6496 case tcc_reference:
6497 case tcc_vl_exp:
6498 /* Now do code-specific tests. EXP_RTL is set to any rtx we find in
6499 the expression. If it is set, we conflict iff we are that rtx or
6500 both are in memory. Otherwise, we check all operands of the
6501 expression recursively. */
6503 switch (TREE_CODE (exp))
6505 case ADDR_EXPR:
6506 /* If the operand is static or we are static, we can't conflict.
6507 Likewise if we don't conflict with the operand at all. */
6508 if (staticp (TREE_OPERAND (exp, 0))
6509 || TREE_STATIC (exp)
6510 || safe_from_p (x, TREE_OPERAND (exp, 0), 0))
6511 return 1;
6513 /* Otherwise, the only way this can conflict is if we are taking
6514 the address of a DECL a that address if part of X, which is
6515 very rare. */
6516 exp = TREE_OPERAND (exp, 0);
6517 if (DECL_P (exp))
6519 if (!DECL_RTL_SET_P (exp)
6520 || !MEM_P (DECL_RTL (exp)))
6521 return 0;
6522 else
6523 exp_rtl = XEXP (DECL_RTL (exp), 0);
6525 break;
6527 case MISALIGNED_INDIRECT_REF:
6528 case ALIGN_INDIRECT_REF:
6529 case INDIRECT_REF:
6530 if (MEM_P (x)
6531 && alias_sets_conflict_p (MEM_ALIAS_SET (x),
6532 get_alias_set (exp)))
6533 return 0;
6534 break;
6536 case CALL_EXPR:
6537 /* Assume that the call will clobber all hard registers and
6538 all of memory. */
6539 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
6540 || MEM_P (x))
6541 return 0;
6542 break;
6544 case WITH_CLEANUP_EXPR:
6545 case CLEANUP_POINT_EXPR:
6546 /* Lowered by gimplify.c. */
6547 gcc_unreachable ();
6549 case SAVE_EXPR:
6550 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
6552 default:
6553 break;
6556 /* If we have an rtx, we do not need to scan our operands. */
6557 if (exp_rtl)
6558 break;
6560 nops = TREE_OPERAND_LENGTH (exp);
6561 for (i = 0; i < nops; i++)
6562 if (TREE_OPERAND (exp, i) != 0
6563 && ! safe_from_p (x, TREE_OPERAND (exp, i), 0))
6564 return 0;
6566 break;
6568 case tcc_type:
6569 /* Should never get a type here. */
6570 gcc_unreachable ();
6573 /* If we have an rtl, find any enclosed object. Then see if we conflict
6574 with it. */
6575 if (exp_rtl)
6577 if (GET_CODE (exp_rtl) == SUBREG)
6579 exp_rtl = SUBREG_REG (exp_rtl);
6580 if (REG_P (exp_rtl)
6581 && REGNO (exp_rtl) < FIRST_PSEUDO_REGISTER)
6582 return 0;
6585 /* If the rtl is X, then it is not safe. Otherwise, it is unless both
6586 are memory and they conflict. */
6587 return ! (rtx_equal_p (x, exp_rtl)
6588 || (MEM_P (x) && MEM_P (exp_rtl)
6589 && true_dependence (exp_rtl, VOIDmode, x,
6590 rtx_addr_varies_p)));
6593 /* If we reach here, it is safe. */
6594 return 1;
6598 /* Return the highest power of two that EXP is known to be a multiple of.
6599 This is used in updating alignment of MEMs in array references. */
6601 unsigned HOST_WIDE_INT
6602 highest_pow2_factor (const_tree exp)
6604 unsigned HOST_WIDE_INT c0, c1;
6606 switch (TREE_CODE (exp))
6608 case INTEGER_CST:
6609 /* We can find the lowest bit that's a one. If the low
6610 HOST_BITS_PER_WIDE_INT bits are zero, return BIGGEST_ALIGNMENT.
6611 We need to handle this case since we can find it in a COND_EXPR,
6612 a MIN_EXPR, or a MAX_EXPR. If the constant overflows, we have an
6613 erroneous program, so return BIGGEST_ALIGNMENT to avoid any
6614 later ICE. */
6615 if (TREE_OVERFLOW (exp))
6616 return BIGGEST_ALIGNMENT;
6617 else
6619 /* Note: tree_low_cst is intentionally not used here,
6620 we don't care about the upper bits. */
6621 c0 = TREE_INT_CST_LOW (exp);
6622 c0 &= -c0;
6623 return c0 ? c0 : BIGGEST_ALIGNMENT;
6625 break;
6627 case PLUS_EXPR: case MINUS_EXPR: case MIN_EXPR: case MAX_EXPR:
6628 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
6629 c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
6630 return MIN (c0, c1);
6632 case MULT_EXPR:
6633 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
6634 c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
6635 return c0 * c1;
6637 case ROUND_DIV_EXPR: case TRUNC_DIV_EXPR: case FLOOR_DIV_EXPR:
6638 case CEIL_DIV_EXPR:
6639 if (integer_pow2p (TREE_OPERAND (exp, 1))
6640 && host_integerp (TREE_OPERAND (exp, 1), 1))
6642 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
6643 c1 = tree_low_cst (TREE_OPERAND (exp, 1), 1);
6644 return MAX (1, c0 / c1);
6646 break;
6648 case BIT_AND_EXPR:
6649 /* The highest power of two of a bit-and expression is the maximum of
6650 that of its operands. We typically get here for a complex LHS and
6651 a constant negative power of two on the RHS to force an explicit
6652 alignment, so don't bother looking at the LHS. */
6653 return highest_pow2_factor (TREE_OPERAND (exp, 1));
6655 CASE_CONVERT:
6656 case SAVE_EXPR:
6657 return highest_pow2_factor (TREE_OPERAND (exp, 0));
6659 case COMPOUND_EXPR:
6660 return highest_pow2_factor (TREE_OPERAND (exp, 1));
6662 case COND_EXPR:
6663 c0 = highest_pow2_factor (TREE_OPERAND (exp, 1));
6664 c1 = highest_pow2_factor (TREE_OPERAND (exp, 2));
6665 return MIN (c0, c1);
6667 default:
6668 break;
6671 return 1;
6674 /* Similar, except that the alignment requirements of TARGET are
6675 taken into account. Assume it is at least as aligned as its
6676 type, unless it is a COMPONENT_REF in which case the layout of
6677 the structure gives the alignment. */
6679 static unsigned HOST_WIDE_INT
6680 highest_pow2_factor_for_target (const_tree target, const_tree exp)
6682 unsigned HOST_WIDE_INT target_align, factor;
6684 factor = highest_pow2_factor (exp);
6685 if (TREE_CODE (target) == COMPONENT_REF)
6686 target_align = DECL_ALIGN_UNIT (TREE_OPERAND (target, 1));
6687 else
6688 target_align = TYPE_ALIGN_UNIT (TREE_TYPE (target));
6689 return MAX (factor, target_align);
6692 /* Return &VAR expression for emulated thread local VAR. */
6694 static tree
6695 emutls_var_address (tree var)
6697 tree emuvar = emutls_decl (var);
6698 tree fn = built_in_decls [BUILT_IN_EMUTLS_GET_ADDRESS];
6699 tree arg = build_fold_addr_expr_with_type (emuvar, ptr_type_node);
6700 tree arglist = build_tree_list (NULL_TREE, arg);
6701 tree call = build_function_call_expr (fn, arglist);
6702 return fold_convert (build_pointer_type (TREE_TYPE (var)), call);
6706 /* Subroutine of expand_expr. Expand the two operands of a binary
6707 expression EXP0 and EXP1 placing the results in OP0 and OP1.
6708 The value may be stored in TARGET if TARGET is nonzero. The
6709 MODIFIER argument is as documented by expand_expr. */
6711 static void
6712 expand_operands (tree exp0, tree exp1, rtx target, rtx *op0, rtx *op1,
6713 enum expand_modifier modifier)
6715 if (! safe_from_p (target, exp1, 1))
6716 target = 0;
6717 if (operand_equal_p (exp0, exp1, 0))
6719 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
6720 *op1 = copy_rtx (*op0);
6722 else
6724 /* If we need to preserve evaluation order, copy exp0 into its own
6725 temporary variable so that it can't be clobbered by exp1. */
6726 if (flag_evaluation_order && TREE_SIDE_EFFECTS (exp1))
6727 exp0 = save_expr (exp0);
6728 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
6729 *op1 = expand_expr (exp1, NULL_RTX, VOIDmode, modifier);
6734 /* Return a MEM that contains constant EXP. DEFER is as for
6735 output_constant_def and MODIFIER is as for expand_expr. */
6737 static rtx
6738 expand_expr_constant (tree exp, int defer, enum expand_modifier modifier)
6740 rtx mem;
6742 mem = output_constant_def (exp, defer);
6743 if (modifier != EXPAND_INITIALIZER)
6744 mem = use_anchored_address (mem);
6745 return mem;
6748 /* A subroutine of expand_expr_addr_expr. Evaluate the address of EXP.
6749 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
6751 static rtx
6752 expand_expr_addr_expr_1 (tree exp, rtx target, enum machine_mode tmode,
6753 enum expand_modifier modifier)
6755 rtx result, subtarget;
6756 tree inner, offset;
6757 HOST_WIDE_INT bitsize, bitpos;
6758 int volatilep, unsignedp;
6759 enum machine_mode mode1;
6761 /* If we are taking the address of a constant and are at the top level,
6762 we have to use output_constant_def since we can't call force_const_mem
6763 at top level. */
6764 /* ??? This should be considered a front-end bug. We should not be
6765 generating ADDR_EXPR of something that isn't an LVALUE. The only
6766 exception here is STRING_CST. */
6767 if (CONSTANT_CLASS_P (exp))
6768 return XEXP (expand_expr_constant (exp, 0, modifier), 0);
6770 /* Everything must be something allowed by is_gimple_addressable. */
6771 switch (TREE_CODE (exp))
6773 case INDIRECT_REF:
6774 /* This case will happen via recursion for &a->b. */
6775 return expand_expr (TREE_OPERAND (exp, 0), target, tmode, modifier);
6777 case CONST_DECL:
6778 /* Recurse and make the output_constant_def clause above handle this. */
6779 return expand_expr_addr_expr_1 (DECL_INITIAL (exp), target,
6780 tmode, modifier);
6782 case REALPART_EXPR:
6783 /* The real part of the complex number is always first, therefore
6784 the address is the same as the address of the parent object. */
6785 offset = 0;
6786 bitpos = 0;
6787 inner = TREE_OPERAND (exp, 0);
6788 break;
6790 case IMAGPART_EXPR:
6791 /* The imaginary part of the complex number is always second.
6792 The expression is therefore always offset by the size of the
6793 scalar type. */
6794 offset = 0;
6795 bitpos = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp)));
6796 inner = TREE_OPERAND (exp, 0);
6797 break;
6799 case VAR_DECL:
6800 /* TLS emulation hook - replace __thread VAR's &VAR with
6801 __emutls_get_address (&_emutls.VAR). */
6802 if (! targetm.have_tls
6803 && TREE_CODE (exp) == VAR_DECL
6804 && DECL_THREAD_LOCAL_P (exp))
6806 exp = emutls_var_address (exp);
6807 return expand_expr (exp, target, tmode, modifier);
6809 /* Fall through. */
6811 default:
6812 /* If the object is a DECL, then expand it for its rtl. Don't bypass
6813 expand_expr, as that can have various side effects; LABEL_DECLs for
6814 example, may not have their DECL_RTL set yet. Expand the rtl of
6815 CONSTRUCTORs too, which should yield a memory reference for the
6816 constructor's contents. Assume language specific tree nodes can
6817 be expanded in some interesting way. */
6818 if (DECL_P (exp)
6819 || TREE_CODE (exp) == CONSTRUCTOR
6820 || TREE_CODE (exp) >= LAST_AND_UNUSED_TREE_CODE)
6822 result = expand_expr (exp, target, tmode,
6823 modifier == EXPAND_INITIALIZER
6824 ? EXPAND_INITIALIZER : EXPAND_CONST_ADDRESS);
6826 /* If the DECL isn't in memory, then the DECL wasn't properly
6827 marked TREE_ADDRESSABLE, which will be either a front-end
6828 or a tree optimizer bug. */
6829 gcc_assert (MEM_P (result));
6830 result = XEXP (result, 0);
6832 /* ??? Is this needed anymore? */
6833 if (DECL_P (exp) && !TREE_USED (exp) == 0)
6835 assemble_external (exp);
6836 TREE_USED (exp) = 1;
6839 if (modifier != EXPAND_INITIALIZER
6840 && modifier != EXPAND_CONST_ADDRESS)
6841 result = force_operand (result, target);
6842 return result;
6845 /* Pass FALSE as the last argument to get_inner_reference although
6846 we are expanding to RTL. The rationale is that we know how to
6847 handle "aligning nodes" here: we can just bypass them because
6848 they won't change the final object whose address will be returned
6849 (they actually exist only for that purpose). */
6850 inner = get_inner_reference (exp, &bitsize, &bitpos, &offset,
6851 &mode1, &unsignedp, &volatilep, false);
6852 break;
6855 /* We must have made progress. */
6856 gcc_assert (inner != exp);
6858 subtarget = offset || bitpos ? NULL_RTX : target;
6859 result = expand_expr_addr_expr_1 (inner, subtarget, tmode, modifier);
6861 if (offset)
6863 rtx tmp;
6865 if (modifier != EXPAND_NORMAL)
6866 result = force_operand (result, NULL);
6867 tmp = expand_expr (offset, NULL_RTX, tmode,
6868 modifier == EXPAND_INITIALIZER
6869 ? EXPAND_INITIALIZER : EXPAND_NORMAL);
6871 result = convert_memory_address (tmode, result);
6872 tmp = convert_memory_address (tmode, tmp);
6874 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
6875 result = gen_rtx_PLUS (tmode, result, tmp);
6876 else
6878 subtarget = bitpos ? NULL_RTX : target;
6879 result = expand_simple_binop (tmode, PLUS, result, tmp, subtarget,
6880 1, OPTAB_LIB_WIDEN);
6884 if (bitpos)
6886 /* Someone beforehand should have rejected taking the address
6887 of such an object. */
6888 gcc_assert ((bitpos % BITS_PER_UNIT) == 0);
6890 result = plus_constant (result, bitpos / BITS_PER_UNIT);
6891 if (modifier < EXPAND_SUM)
6892 result = force_operand (result, target);
6895 return result;
6898 /* A subroutine of expand_expr. Evaluate EXP, which is an ADDR_EXPR.
6899 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
6901 static rtx
6902 expand_expr_addr_expr (tree exp, rtx target, enum machine_mode tmode,
6903 enum expand_modifier modifier)
6905 enum machine_mode rmode;
6906 rtx result;
6908 /* Target mode of VOIDmode says "whatever's natural". */
6909 if (tmode == VOIDmode)
6910 tmode = TYPE_MODE (TREE_TYPE (exp));
6912 /* We can get called with some Weird Things if the user does silliness
6913 like "(short) &a". In that case, convert_memory_address won't do
6914 the right thing, so ignore the given target mode. */
6915 if (tmode != Pmode && tmode != ptr_mode)
6916 tmode = Pmode;
6918 result = expand_expr_addr_expr_1 (TREE_OPERAND (exp, 0), target,
6919 tmode, modifier);
6921 /* Despite expand_expr claims concerning ignoring TMODE when not
6922 strictly convenient, stuff breaks if we don't honor it. Note
6923 that combined with the above, we only do this for pointer modes. */
6924 rmode = GET_MODE (result);
6925 if (rmode == VOIDmode)
6926 rmode = tmode;
6927 if (rmode != tmode)
6928 result = convert_memory_address (tmode, result);
6930 return result;
6933 /* Generate code for computing CONSTRUCTOR EXP.
6934 An rtx for the computed value is returned. If AVOID_TEMP_MEM
6935 is TRUE, instead of creating a temporary variable in memory
6936 NULL is returned and the caller needs to handle it differently. */
6938 static rtx
6939 expand_constructor (tree exp, rtx target, enum expand_modifier modifier,
6940 bool avoid_temp_mem)
6942 tree type = TREE_TYPE (exp);
6943 enum machine_mode mode = TYPE_MODE (type);
6945 /* Try to avoid creating a temporary at all. This is possible
6946 if all of the initializer is zero.
6947 FIXME: try to handle all [0..255] initializers we can handle
6948 with memset. */
6949 if (TREE_STATIC (exp)
6950 && !TREE_ADDRESSABLE (exp)
6951 && target != 0 && mode == BLKmode
6952 && all_zeros_p (exp))
6954 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
6955 return target;
6958 /* All elts simple constants => refer to a constant in memory. But
6959 if this is a non-BLKmode mode, let it store a field at a time
6960 since that should make a CONST_INT or CONST_DOUBLE when we
6961 fold. Likewise, if we have a target we can use, it is best to
6962 store directly into the target unless the type is large enough
6963 that memcpy will be used. If we are making an initializer and
6964 all operands are constant, put it in memory as well.
6966 FIXME: Avoid trying to fill vector constructors piece-meal.
6967 Output them with output_constant_def below unless we're sure
6968 they're zeros. This should go away when vector initializers
6969 are treated like VECTOR_CST instead of arrays. */
6970 if ((TREE_STATIC (exp)
6971 && ((mode == BLKmode
6972 && ! (target != 0 && safe_from_p (target, exp, 1)))
6973 || TREE_ADDRESSABLE (exp)
6974 || (host_integerp (TYPE_SIZE_UNIT (type), 1)
6975 && (! MOVE_BY_PIECES_P
6976 (tree_low_cst (TYPE_SIZE_UNIT (type), 1),
6977 TYPE_ALIGN (type)))
6978 && ! mostly_zeros_p (exp))))
6979 || ((modifier == EXPAND_INITIALIZER || modifier == EXPAND_CONST_ADDRESS)
6980 && TREE_CONSTANT (exp)))
6982 rtx constructor;
6984 if (avoid_temp_mem)
6985 return NULL_RTX;
6987 constructor = expand_expr_constant (exp, 1, modifier);
6989 if (modifier != EXPAND_CONST_ADDRESS
6990 && modifier != EXPAND_INITIALIZER
6991 && modifier != EXPAND_SUM)
6992 constructor = validize_mem (constructor);
6994 return constructor;
6997 /* Handle calls that pass values in multiple non-contiguous
6998 locations. The Irix 6 ABI has examples of this. */
6999 if (target == 0 || ! safe_from_p (target, exp, 1)
7000 || GET_CODE (target) == PARALLEL || modifier == EXPAND_STACK_PARM)
7002 if (avoid_temp_mem)
7003 return NULL_RTX;
7005 target
7006 = assign_temp (build_qualified_type (type, (TYPE_QUALS (type)
7007 | (TREE_READONLY (exp)
7008 * TYPE_QUAL_CONST))),
7009 0, TREE_ADDRESSABLE (exp), 1);
7012 store_constructor (exp, target, 0, int_expr_size (exp));
7013 return target;
7017 /* expand_expr: generate code for computing expression EXP.
7018 An rtx for the computed value is returned. The value is never null.
7019 In the case of a void EXP, const0_rtx is returned.
7021 The value may be stored in TARGET if TARGET is nonzero.
7022 TARGET is just a suggestion; callers must assume that
7023 the rtx returned may not be the same as TARGET.
7025 If TARGET is CONST0_RTX, it means that the value will be ignored.
7027 If TMODE is not VOIDmode, it suggests generating the
7028 result in mode TMODE. But this is done only when convenient.
7029 Otherwise, TMODE is ignored and the value generated in its natural mode.
7030 TMODE is just a suggestion; callers must assume that
7031 the rtx returned may not have mode TMODE.
7033 Note that TARGET may have neither TMODE nor MODE. In that case, it
7034 probably will not be used.
7036 If MODIFIER is EXPAND_SUM then when EXP is an addition
7037 we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
7038 or a nest of (PLUS ...) and (MINUS ...) where the terms are
7039 products as above, or REG or MEM, or constant.
7040 Ordinarily in such cases we would output mul or add instructions
7041 and then return a pseudo reg containing the sum.
7043 EXPAND_INITIALIZER is much like EXPAND_SUM except that
7044 it also marks a label as absolutely required (it can't be dead).
7045 It also makes a ZERO_EXTEND or SIGN_EXTEND instead of emitting extend insns.
7046 This is used for outputting expressions used in initializers.
7048 EXPAND_CONST_ADDRESS says that it is okay to return a MEM
7049 with a constant address even if that address is not normally legitimate.
7050 EXPAND_INITIALIZER and EXPAND_SUM also have this effect.
7052 EXPAND_STACK_PARM is used when expanding to a TARGET on the stack for
7053 a call parameter. Such targets require special care as we haven't yet
7054 marked TARGET so that it's safe from being trashed by libcalls. We
7055 don't want to use TARGET for anything but the final result;
7056 Intermediate values must go elsewhere. Additionally, calls to
7057 emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
7059 If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
7060 address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
7061 DECL_RTL of the VAR_DECL. *ALT_RTL is also set if EXP is a
7062 COMPOUND_EXPR whose second argument is such a VAR_DECL, and so on
7063 recursively. */
7065 static rtx expand_expr_real_1 (tree, rtx, enum machine_mode,
7066 enum expand_modifier, rtx *);
7069 expand_expr_real (tree exp, rtx target, enum machine_mode tmode,
7070 enum expand_modifier modifier, rtx *alt_rtl)
7072 int rn = -1;
7073 rtx ret, last = NULL;
7075 /* Handle ERROR_MARK before anybody tries to access its type. */
7076 if (TREE_CODE (exp) == ERROR_MARK
7077 || (TREE_CODE (TREE_TYPE (exp)) == ERROR_MARK))
7079 ret = CONST0_RTX (tmode);
7080 return ret ? ret : const0_rtx;
7083 if (flag_non_call_exceptions)
7085 rn = lookup_expr_eh_region (exp);
7087 /* If rn < 0, then either (1) tree-ssa not used or (2) doesn't throw. */
7088 if (rn >= 0)
7089 last = get_last_insn ();
7092 /* If this is an expression of some kind and it has an associated line
7093 number, then emit the line number before expanding the expression.
7095 We need to save and restore the file and line information so that
7096 errors discovered during expansion are emitted with the right
7097 information. It would be better of the diagnostic routines
7098 used the file/line information embedded in the tree nodes rather
7099 than globals. */
7100 if (cfun && EXPR_HAS_LOCATION (exp))
7102 location_t saved_location = input_location;
7103 input_location = EXPR_LOCATION (exp);
7104 set_curr_insn_source_location (input_location);
7106 /* Record where the insns produced belong. */
7107 set_curr_insn_block (TREE_BLOCK (exp));
7109 ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
7111 input_location = saved_location;
7113 else
7115 ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
7118 /* If using non-call exceptions, mark all insns that may trap.
7119 expand_call() will mark CALL_INSNs before we get to this code,
7120 but it doesn't handle libcalls, and these may trap. */
7121 if (rn >= 0)
7123 rtx insn;
7124 for (insn = next_real_insn (last); insn;
7125 insn = next_real_insn (insn))
7127 if (! find_reg_note (insn, REG_EH_REGION, NULL_RTX)
7128 /* If we want exceptions for non-call insns, any
7129 may_trap_p instruction may throw. */
7130 && GET_CODE (PATTERN (insn)) != CLOBBER
7131 && GET_CODE (PATTERN (insn)) != USE
7132 && (CALL_P (insn) || may_trap_p (PATTERN (insn))))
7133 add_reg_note (insn, REG_EH_REGION, GEN_INT (rn));
7137 return ret;
7140 static rtx
7141 expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
7142 enum expand_modifier modifier, rtx *alt_rtl)
7144 rtx op0, op1, op2, temp, decl_rtl;
7145 tree type;
7146 int unsignedp;
7147 enum machine_mode mode;
7148 enum tree_code code = TREE_CODE (exp);
7149 optab this_optab;
7150 rtx subtarget, original_target;
7151 int ignore;
7152 tree context, subexp0, subexp1;
7153 bool reduce_bit_field;
7154 #define REDUCE_BIT_FIELD(expr) (reduce_bit_field \
7155 ? reduce_to_bit_field_precision ((expr), \
7156 target, \
7157 type) \
7158 : (expr))
7160 type = TREE_TYPE (exp);
7161 mode = TYPE_MODE (type);
7162 unsignedp = TYPE_UNSIGNED (type);
7164 ignore = (target == const0_rtx
7165 || ((CONVERT_EXPR_CODE_P (code)
7166 || code == COND_EXPR || code == VIEW_CONVERT_EXPR)
7167 && TREE_CODE (type) == VOID_TYPE));
7169 /* An operation in what may be a bit-field type needs the
7170 result to be reduced to the precision of the bit-field type,
7171 which is narrower than that of the type's mode. */
7172 reduce_bit_field = (!ignore
7173 && TREE_CODE (type) == INTEGER_TYPE
7174 && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type));
7176 /* If we are going to ignore this result, we need only do something
7177 if there is a side-effect somewhere in the expression. If there
7178 is, short-circuit the most common cases here. Note that we must
7179 not call expand_expr with anything but const0_rtx in case this
7180 is an initial expansion of a size that contains a PLACEHOLDER_EXPR. */
7182 if (ignore)
7184 if (! TREE_SIDE_EFFECTS (exp))
7185 return const0_rtx;
7187 /* Ensure we reference a volatile object even if value is ignored, but
7188 don't do this if all we are doing is taking its address. */
7189 if (TREE_THIS_VOLATILE (exp)
7190 && TREE_CODE (exp) != FUNCTION_DECL
7191 && mode != VOIDmode && mode != BLKmode
7192 && modifier != EXPAND_CONST_ADDRESS)
7194 temp = expand_expr (exp, NULL_RTX, VOIDmode, modifier);
7195 if (MEM_P (temp))
7196 temp = copy_to_reg (temp);
7197 return const0_rtx;
7200 if (TREE_CODE_CLASS (code) == tcc_unary
7201 || code == COMPONENT_REF || code == INDIRECT_REF)
7202 return expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode,
7203 modifier);
7205 else if (TREE_CODE_CLASS (code) == tcc_binary
7206 || TREE_CODE_CLASS (code) == tcc_comparison
7207 || code == ARRAY_REF || code == ARRAY_RANGE_REF)
7209 expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, modifier);
7210 expand_expr (TREE_OPERAND (exp, 1), const0_rtx, VOIDmode, modifier);
7211 return const0_rtx;
7213 else if (code == BIT_FIELD_REF)
7215 expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, modifier);
7216 expand_expr (TREE_OPERAND (exp, 1), const0_rtx, VOIDmode, modifier);
7217 expand_expr (TREE_OPERAND (exp, 2), const0_rtx, VOIDmode, modifier);
7218 return const0_rtx;
7221 target = 0;
7224 if (reduce_bit_field && modifier == EXPAND_STACK_PARM)
7225 target = 0;
7227 /* Use subtarget as the target for operand 0 of a binary operation. */
7228 subtarget = get_subtarget (target);
7229 original_target = target;
7231 switch (code)
7233 case LABEL_DECL:
7235 tree function = decl_function_context (exp);
7237 temp = label_rtx (exp);
7238 temp = gen_rtx_LABEL_REF (Pmode, temp);
7240 if (function != current_function_decl
7241 && function != 0)
7242 LABEL_REF_NONLOCAL_P (temp) = 1;
7244 temp = gen_rtx_MEM (FUNCTION_MODE, temp);
7245 return temp;
7248 case SSA_NAME:
7249 return expand_expr_real_1 (SSA_NAME_VAR (exp), target, tmode, modifier,
7250 NULL);
7252 case PARM_DECL:
7253 case VAR_DECL:
7254 /* If a static var's type was incomplete when the decl was written,
7255 but the type is complete now, lay out the decl now. */
7256 if (DECL_SIZE (exp) == 0
7257 && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (TREE_TYPE (exp))
7258 && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
7259 layout_decl (exp, 0);
7261 /* TLS emulation hook - replace __thread vars with
7262 *__emutls_get_address (&_emutls.var). */
7263 if (! targetm.have_tls
7264 && TREE_CODE (exp) == VAR_DECL
7265 && DECL_THREAD_LOCAL_P (exp))
7267 exp = build_fold_indirect_ref (emutls_var_address (exp));
7268 return expand_expr_real_1 (exp, target, tmode, modifier, NULL);
7271 /* ... fall through ... */
7273 case FUNCTION_DECL:
7274 case RESULT_DECL:
7275 decl_rtl = DECL_RTL (exp);
7276 gcc_assert (decl_rtl);
7277 decl_rtl = copy_rtx (decl_rtl);
7279 /* Ensure variable marked as used even if it doesn't go through
7280 a parser. If it hasn't be used yet, write out an external
7281 definition. */
7282 if (! TREE_USED (exp))
7284 assemble_external (exp);
7285 TREE_USED (exp) = 1;
7288 /* Show we haven't gotten RTL for this yet. */
7289 temp = 0;
7291 /* Variables inherited from containing functions should have
7292 been lowered by this point. */
7293 context = decl_function_context (exp);
7294 gcc_assert (!context
7295 || context == current_function_decl
7296 || TREE_STATIC (exp)
7297 /* ??? C++ creates functions that are not TREE_STATIC. */
7298 || TREE_CODE (exp) == FUNCTION_DECL);
7300 /* This is the case of an array whose size is to be determined
7301 from its initializer, while the initializer is still being parsed.
7302 See expand_decl. */
7304 if (MEM_P (decl_rtl) && REG_P (XEXP (decl_rtl, 0)))
7305 temp = validize_mem (decl_rtl);
7307 /* If DECL_RTL is memory, we are in the normal case and the
7308 address is not valid, get the address into a register. */
7310 else if (MEM_P (decl_rtl) && modifier != EXPAND_INITIALIZER)
7312 if (alt_rtl)
7313 *alt_rtl = decl_rtl;
7314 decl_rtl = use_anchored_address (decl_rtl);
7315 if (modifier != EXPAND_CONST_ADDRESS
7316 && modifier != EXPAND_SUM
7317 && !memory_address_p (DECL_MODE (exp), XEXP (decl_rtl, 0)))
7318 temp = replace_equiv_address (decl_rtl,
7319 copy_rtx (XEXP (decl_rtl, 0)));
7322 /* If we got something, return it. But first, set the alignment
7323 if the address is a register. */
7324 if (temp != 0)
7326 if (MEM_P (temp) && REG_P (XEXP (temp, 0)))
7327 mark_reg_pointer (XEXP (temp, 0), DECL_ALIGN (exp));
7329 return temp;
7332 /* If the mode of DECL_RTL does not match that of the decl, it
7333 must be a promoted value. We return a SUBREG of the wanted mode,
7334 but mark it so that we know that it was already extended. */
7336 if (REG_P (decl_rtl)
7337 && GET_MODE (decl_rtl) != DECL_MODE (exp))
7339 enum machine_mode pmode;
7341 /* Get the signedness used for this variable. Ensure we get the
7342 same mode we got when the variable was declared. */
7343 pmode = promote_mode (type, DECL_MODE (exp), &unsignedp,
7344 (TREE_CODE (exp) == RESULT_DECL
7345 || TREE_CODE (exp) == PARM_DECL) ? 1 : 0);
7346 gcc_assert (GET_MODE (decl_rtl) == pmode);
7348 temp = gen_lowpart_SUBREG (mode, decl_rtl);
7349 SUBREG_PROMOTED_VAR_P (temp) = 1;
7350 SUBREG_PROMOTED_UNSIGNED_SET (temp, unsignedp);
7351 return temp;
7354 return decl_rtl;
7356 case INTEGER_CST:
7357 temp = immed_double_const (TREE_INT_CST_LOW (exp),
7358 TREE_INT_CST_HIGH (exp), mode);
7360 return temp;
7362 case VECTOR_CST:
7364 tree tmp = NULL_TREE;
7365 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT
7366 || GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT
7367 || GET_MODE_CLASS (mode) == MODE_VECTOR_FRACT
7368 || GET_MODE_CLASS (mode) == MODE_VECTOR_UFRACT
7369 || GET_MODE_CLASS (mode) == MODE_VECTOR_ACCUM
7370 || GET_MODE_CLASS (mode) == MODE_VECTOR_UACCUM)
7371 return const_vector_from_tree (exp);
7372 if (GET_MODE_CLASS (mode) == MODE_INT)
7374 tree type_for_mode = lang_hooks.types.type_for_mode (mode, 1);
7375 if (type_for_mode)
7376 tmp = fold_unary (VIEW_CONVERT_EXPR, type_for_mode, exp);
7378 if (!tmp)
7379 tmp = build_constructor_from_list (type,
7380 TREE_VECTOR_CST_ELTS (exp));
7381 return expand_expr (tmp, ignore ? const0_rtx : target,
7382 tmode, modifier);
7385 case CONST_DECL:
7386 return expand_expr (DECL_INITIAL (exp), target, VOIDmode, modifier);
7388 case REAL_CST:
7389 /* If optimized, generate immediate CONST_DOUBLE
7390 which will be turned into memory by reload if necessary.
7392 We used to force a register so that loop.c could see it. But
7393 this does not allow gen_* patterns to perform optimizations with
7394 the constants. It also produces two insns in cases like "x = 1.0;".
7395 On most machines, floating-point constants are not permitted in
7396 many insns, so we'd end up copying it to a register in any case.
7398 Now, we do the copying in expand_binop, if appropriate. */
7399 return CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (exp),
7400 TYPE_MODE (TREE_TYPE (exp)));
7402 case FIXED_CST:
7403 return CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (exp),
7404 TYPE_MODE (TREE_TYPE (exp)));
7406 case COMPLEX_CST:
7407 /* Handle evaluating a complex constant in a CONCAT target. */
7408 if (original_target && GET_CODE (original_target) == CONCAT)
7410 enum machine_mode mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
7411 rtx rtarg, itarg;
7413 rtarg = XEXP (original_target, 0);
7414 itarg = XEXP (original_target, 1);
7416 /* Move the real and imaginary parts separately. */
7417 op0 = expand_expr (TREE_REALPART (exp), rtarg, mode, EXPAND_NORMAL);
7418 op1 = expand_expr (TREE_IMAGPART (exp), itarg, mode, EXPAND_NORMAL);
7420 if (op0 != rtarg)
7421 emit_move_insn (rtarg, op0);
7422 if (op1 != itarg)
7423 emit_move_insn (itarg, op1);
7425 return original_target;
7428 /* ... fall through ... */
7430 case STRING_CST:
7431 temp = expand_expr_constant (exp, 1, modifier);
7433 /* temp contains a constant address.
7434 On RISC machines where a constant address isn't valid,
7435 make some insns to get that address into a register. */
7436 if (modifier != EXPAND_CONST_ADDRESS
7437 && modifier != EXPAND_INITIALIZER
7438 && modifier != EXPAND_SUM
7439 && ! memory_address_p (mode, XEXP (temp, 0)))
7440 return replace_equiv_address (temp,
7441 copy_rtx (XEXP (temp, 0)));
7442 return temp;
7444 case SAVE_EXPR:
7446 tree val = TREE_OPERAND (exp, 0);
7447 rtx ret = expand_expr_real_1 (val, target, tmode, modifier, alt_rtl);
7449 if (!SAVE_EXPR_RESOLVED_P (exp))
7451 /* We can indeed still hit this case, typically via builtin
7452 expanders calling save_expr immediately before expanding
7453 something. Assume this means that we only have to deal
7454 with non-BLKmode values. */
7455 gcc_assert (GET_MODE (ret) != BLKmode);
7457 val = build_decl (VAR_DECL, NULL, TREE_TYPE (exp));
7458 DECL_ARTIFICIAL (val) = 1;
7459 DECL_IGNORED_P (val) = 1;
7460 TREE_OPERAND (exp, 0) = val;
7461 SAVE_EXPR_RESOLVED_P (exp) = 1;
7463 if (!CONSTANT_P (ret))
7464 ret = copy_to_reg (ret);
7465 SET_DECL_RTL (val, ret);
7468 return ret;
7471 case GOTO_EXPR:
7472 if (TREE_CODE (TREE_OPERAND (exp, 0)) == LABEL_DECL)
7473 expand_goto (TREE_OPERAND (exp, 0));
7474 else
7475 expand_computed_goto (TREE_OPERAND (exp, 0));
7476 return const0_rtx;
7478 case CONSTRUCTOR:
7479 /* If we don't need the result, just ensure we evaluate any
7480 subexpressions. */
7481 if (ignore)
7483 unsigned HOST_WIDE_INT idx;
7484 tree value;
7486 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
7487 expand_expr (value, const0_rtx, VOIDmode, EXPAND_NORMAL);
7489 return const0_rtx;
7492 return expand_constructor (exp, target, modifier, false);
7494 case MISALIGNED_INDIRECT_REF:
7495 case ALIGN_INDIRECT_REF:
7496 case INDIRECT_REF:
7498 tree exp1 = TREE_OPERAND (exp, 0);
7500 if (modifier != EXPAND_WRITE)
7502 tree t;
7504 t = fold_read_from_constant_string (exp);
7505 if (t)
7506 return expand_expr (t, target, tmode, modifier);
7509 op0 = expand_expr (exp1, NULL_RTX, VOIDmode, EXPAND_SUM);
7510 op0 = memory_address (mode, op0);
7512 if (code == ALIGN_INDIRECT_REF)
7514 int align = TYPE_ALIGN_UNIT (type);
7515 op0 = gen_rtx_AND (Pmode, op0, GEN_INT (-align));
7516 op0 = memory_address (mode, op0);
7519 temp = gen_rtx_MEM (mode, op0);
7521 set_mem_attributes (temp, exp, 0);
7523 /* Resolve the misalignment now, so that we don't have to remember
7524 to resolve it later. Of course, this only works for reads. */
7525 /* ??? When we get around to supporting writes, we'll have to handle
7526 this in store_expr directly. The vectorizer isn't generating
7527 those yet, however. */
7528 if (code == MISALIGNED_INDIRECT_REF)
7530 int icode;
7531 rtx reg, insn;
7533 gcc_assert (modifier == EXPAND_NORMAL
7534 || modifier == EXPAND_STACK_PARM);
7536 /* The vectorizer should have already checked the mode. */
7537 icode = optab_handler (movmisalign_optab, mode)->insn_code;
7538 gcc_assert (icode != CODE_FOR_nothing);
7540 /* We've already validated the memory, and we're creating a
7541 new pseudo destination. The predicates really can't fail. */
7542 reg = gen_reg_rtx (mode);
7544 /* Nor can the insn generator. */
7545 insn = GEN_FCN (icode) (reg, temp);
7546 emit_insn (insn);
7548 return reg;
7551 return temp;
7554 case TARGET_MEM_REF:
7556 struct mem_address addr;
7558 get_address_description (exp, &addr);
7559 op0 = addr_for_mem_ref (&addr, true);
7560 op0 = memory_address (mode, op0);
7561 temp = gen_rtx_MEM (mode, op0);
7562 set_mem_attributes (temp, TMR_ORIGINAL (exp), 0);
7564 return temp;
7566 case ARRAY_REF:
7569 tree array = TREE_OPERAND (exp, 0);
7570 tree index = TREE_OPERAND (exp, 1);
7572 /* Fold an expression like: "foo"[2].
7573 This is not done in fold so it won't happen inside &.
7574 Don't fold if this is for wide characters since it's too
7575 difficult to do correctly and this is a very rare case. */
7577 if (modifier != EXPAND_CONST_ADDRESS
7578 && modifier != EXPAND_INITIALIZER
7579 && modifier != EXPAND_MEMORY)
7581 tree t = fold_read_from_constant_string (exp);
7583 if (t)
7584 return expand_expr (t, target, tmode, modifier);
7587 /* If this is a constant index into a constant array,
7588 just get the value from the array. Handle both the cases when
7589 we have an explicit constructor and when our operand is a variable
7590 that was declared const. */
7592 if (modifier != EXPAND_CONST_ADDRESS
7593 && modifier != EXPAND_INITIALIZER
7594 && modifier != EXPAND_MEMORY
7595 && TREE_CODE (array) == CONSTRUCTOR
7596 && ! TREE_SIDE_EFFECTS (array)
7597 && TREE_CODE (index) == INTEGER_CST)
7599 unsigned HOST_WIDE_INT ix;
7600 tree field, value;
7602 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (array), ix,
7603 field, value)
7604 if (tree_int_cst_equal (field, index))
7606 if (!TREE_SIDE_EFFECTS (value))
7607 return expand_expr (fold (value), target, tmode, modifier);
7608 break;
7612 else if (optimize >= 1
7613 && modifier != EXPAND_CONST_ADDRESS
7614 && modifier != EXPAND_INITIALIZER
7615 && modifier != EXPAND_MEMORY
7616 && TREE_READONLY (array) && ! TREE_SIDE_EFFECTS (array)
7617 && TREE_CODE (array) == VAR_DECL && DECL_INITIAL (array)
7618 && TREE_CODE (DECL_INITIAL (array)) != ERROR_MARK
7619 && targetm.binds_local_p (array))
7621 if (TREE_CODE (index) == INTEGER_CST)
7623 tree init = DECL_INITIAL (array);
7625 if (TREE_CODE (init) == CONSTRUCTOR)
7627 unsigned HOST_WIDE_INT ix;
7628 tree field, value;
7630 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), ix,
7631 field, value)
7632 if (tree_int_cst_equal (field, index))
7634 if (TREE_SIDE_EFFECTS (value))
7635 break;
7637 if (TREE_CODE (value) == CONSTRUCTOR)
7639 /* If VALUE is a CONSTRUCTOR, this
7640 optimization is only useful if
7641 this doesn't store the CONSTRUCTOR
7642 into memory. If it does, it is more
7643 efficient to just load the data from
7644 the array directly. */
7645 rtx ret = expand_constructor (value, target,
7646 modifier, true);
7647 if (ret == NULL_RTX)
7648 break;
7651 return expand_expr (fold (value), target, tmode,
7652 modifier);
7655 else if(TREE_CODE (init) == STRING_CST)
7657 tree index1 = index;
7658 tree low_bound = array_ref_low_bound (exp);
7659 index1 = fold_convert (sizetype, TREE_OPERAND (exp, 1));
7661 /* Optimize the special-case of a zero lower bound.
7663 We convert the low_bound to sizetype to avoid some problems
7664 with constant folding. (E.g. suppose the lower bound is 1,
7665 and its mode is QI. Without the conversion,l (ARRAY
7666 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
7667 +INDEX), which becomes (ARRAY+255+INDEX). Opps!) */
7669 if (! integer_zerop (low_bound))
7670 index1 = size_diffop (index1, fold_convert (sizetype,
7671 low_bound));
7673 if (0 > compare_tree_int (index1,
7674 TREE_STRING_LENGTH (init)))
7676 tree type = TREE_TYPE (TREE_TYPE (init));
7677 enum machine_mode mode = TYPE_MODE (type);
7679 if (GET_MODE_CLASS (mode) == MODE_INT
7680 && GET_MODE_SIZE (mode) == 1)
7681 return gen_int_mode (TREE_STRING_POINTER (init)
7682 [TREE_INT_CST_LOW (index1)],
7683 mode);
7689 goto normal_inner_ref;
7691 case COMPONENT_REF:
7692 /* If the operand is a CONSTRUCTOR, we can just extract the
7693 appropriate field if it is present. */
7694 if (TREE_CODE (TREE_OPERAND (exp, 0)) == CONSTRUCTOR)
7696 unsigned HOST_WIDE_INT idx;
7697 tree field, value;
7699 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (TREE_OPERAND (exp, 0)),
7700 idx, field, value)
7701 if (field == TREE_OPERAND (exp, 1)
7702 /* We can normally use the value of the field in the
7703 CONSTRUCTOR. However, if this is a bitfield in
7704 an integral mode that we can fit in a HOST_WIDE_INT,
7705 we must mask only the number of bits in the bitfield,
7706 since this is done implicitly by the constructor. If
7707 the bitfield does not meet either of those conditions,
7708 we can't do this optimization. */
7709 && (! DECL_BIT_FIELD (field)
7710 || ((GET_MODE_CLASS (DECL_MODE (field)) == MODE_INT)
7711 && (GET_MODE_BITSIZE (DECL_MODE (field))
7712 <= HOST_BITS_PER_WIDE_INT))))
7714 if (DECL_BIT_FIELD (field)
7715 && modifier == EXPAND_STACK_PARM)
7716 target = 0;
7717 op0 = expand_expr (value, target, tmode, modifier);
7718 if (DECL_BIT_FIELD (field))
7720 HOST_WIDE_INT bitsize = TREE_INT_CST_LOW (DECL_SIZE (field));
7721 enum machine_mode imode = TYPE_MODE (TREE_TYPE (field));
7723 if (TYPE_UNSIGNED (TREE_TYPE (field)))
7725 op1 = GEN_INT (((HOST_WIDE_INT) 1 << bitsize) - 1);
7726 op0 = expand_and (imode, op0, op1, target);
7728 else
7730 tree count
7731 = build_int_cst (NULL_TREE,
7732 GET_MODE_BITSIZE (imode) - bitsize);
7734 op0 = expand_shift (LSHIFT_EXPR, imode, op0, count,
7735 target, 0);
7736 op0 = expand_shift (RSHIFT_EXPR, imode, op0, count,
7737 target, 0);
7741 return op0;
7744 goto normal_inner_ref;
7746 case BIT_FIELD_REF:
7747 case ARRAY_RANGE_REF:
7748 normal_inner_ref:
7750 enum machine_mode mode1, mode2;
7751 HOST_WIDE_INT bitsize, bitpos;
7752 tree offset;
7753 int volatilep = 0, must_force_mem;
7754 tree tem = get_inner_reference (exp, &bitsize, &bitpos, &offset,
7755 &mode1, &unsignedp, &volatilep, true);
7756 rtx orig_op0, memloc;
7758 /* If we got back the original object, something is wrong. Perhaps
7759 we are evaluating an expression too early. In any event, don't
7760 infinitely recurse. */
7761 gcc_assert (tem != exp);
7763 /* If TEM's type is a union of variable size, pass TARGET to the inner
7764 computation, since it will need a temporary and TARGET is known
7765 to have to do. This occurs in unchecked conversion in Ada. */
7766 orig_op0 = op0
7767 = expand_expr (tem,
7768 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
7769 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
7770 != INTEGER_CST)
7771 && modifier != EXPAND_STACK_PARM
7772 ? target : NULL_RTX),
7773 VOIDmode,
7774 (modifier == EXPAND_INITIALIZER
7775 || modifier == EXPAND_CONST_ADDRESS
7776 || modifier == EXPAND_STACK_PARM)
7777 ? modifier : EXPAND_NORMAL);
7779 mode2
7780 = CONSTANT_P (op0) ? TYPE_MODE (TREE_TYPE (tem)) : GET_MODE (op0);
7782 /* If we have either an offset, a BLKmode result, or a reference
7783 outside the underlying object, we must force it to memory.
7784 Such a case can occur in Ada if we have unchecked conversion
7785 of an expression from a scalar type to an aggregate type or
7786 for an ARRAY_RANGE_REF whose type is BLKmode, or if we were
7787 passed a partially uninitialized object or a view-conversion
7788 to a larger size. */
7789 must_force_mem = (offset
7790 || mode1 == BLKmode
7791 || bitpos + bitsize > GET_MODE_BITSIZE (mode2));
7793 /* If this is a constant, put it in a register if it is a legitimate
7794 constant and we don't need a memory reference. */
7795 if (CONSTANT_P (op0)
7796 && mode2 != BLKmode
7797 && LEGITIMATE_CONSTANT_P (op0)
7798 && !must_force_mem)
7799 op0 = force_reg (mode2, op0);
7801 /* Otherwise, if this is a constant, try to force it to the constant
7802 pool. Note that back-ends, e.g. MIPS, may refuse to do so if it
7803 is a legitimate constant. */
7804 else if (CONSTANT_P (op0) && (memloc = force_const_mem (mode2, op0)))
7805 op0 = validize_mem (memloc);
7807 /* Otherwise, if this is a constant or the object is not in memory
7808 and need be, put it there. */
7809 else if (CONSTANT_P (op0) || (!MEM_P (op0) && must_force_mem))
7811 tree nt = build_qualified_type (TREE_TYPE (tem),
7812 (TYPE_QUALS (TREE_TYPE (tem))
7813 | TYPE_QUAL_CONST));
7814 memloc = assign_temp (nt, 1, 1, 1);
7815 emit_move_insn (memloc, op0);
7816 op0 = memloc;
7819 if (offset)
7821 rtx offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode,
7822 EXPAND_SUM);
7824 gcc_assert (MEM_P (op0));
7826 #ifdef POINTERS_EXTEND_UNSIGNED
7827 if (GET_MODE (offset_rtx) != Pmode)
7828 offset_rtx = convert_to_mode (Pmode, offset_rtx, 0);
7829 #else
7830 if (GET_MODE (offset_rtx) != ptr_mode)
7831 offset_rtx = convert_to_mode (ptr_mode, offset_rtx, 0);
7832 #endif
7834 if (GET_MODE (op0) == BLKmode
7835 /* A constant address in OP0 can have VOIDmode, we must
7836 not try to call force_reg in that case. */
7837 && GET_MODE (XEXP (op0, 0)) != VOIDmode
7838 && bitsize != 0
7839 && (bitpos % bitsize) == 0
7840 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
7841 && MEM_ALIGN (op0) == GET_MODE_ALIGNMENT (mode1))
7843 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
7844 bitpos = 0;
7847 op0 = offset_address (op0, offset_rtx,
7848 highest_pow2_factor (offset));
7851 /* If OFFSET is making OP0 more aligned than BIGGEST_ALIGNMENT,
7852 record its alignment as BIGGEST_ALIGNMENT. */
7853 if (MEM_P (op0) && bitpos == 0 && offset != 0
7854 && is_aligning_offset (offset, tem))
7855 set_mem_align (op0, BIGGEST_ALIGNMENT);
7857 /* Don't forget about volatility even if this is a bitfield. */
7858 if (MEM_P (op0) && volatilep && ! MEM_VOLATILE_P (op0))
7860 if (op0 == orig_op0)
7861 op0 = copy_rtx (op0);
7863 MEM_VOLATILE_P (op0) = 1;
7866 /* The following code doesn't handle CONCAT.
7867 Assume only bitpos == 0 can be used for CONCAT, due to
7868 one element arrays having the same mode as its element. */
7869 if (GET_CODE (op0) == CONCAT)
7871 gcc_assert (bitpos == 0
7872 && bitsize == GET_MODE_BITSIZE (GET_MODE (op0)));
7873 return op0;
7876 /* In cases where an aligned union has an unaligned object
7877 as a field, we might be extracting a BLKmode value from
7878 an integer-mode (e.g., SImode) object. Handle this case
7879 by doing the extract into an object as wide as the field
7880 (which we know to be the width of a basic mode), then
7881 storing into memory, and changing the mode to BLKmode. */
7882 if (mode1 == VOIDmode
7883 || REG_P (op0) || GET_CODE (op0) == SUBREG
7884 || (mode1 != BLKmode && ! direct_load[(int) mode1]
7885 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
7886 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT
7887 && modifier != EXPAND_CONST_ADDRESS
7888 && modifier != EXPAND_INITIALIZER)
7889 /* If the field isn't aligned enough to fetch as a memref,
7890 fetch it as a bit field. */
7891 || (mode1 != BLKmode
7892 && (((TYPE_ALIGN (TREE_TYPE (tem)) < GET_MODE_ALIGNMENT (mode)
7893 || (bitpos % GET_MODE_ALIGNMENT (mode) != 0)
7894 || (MEM_P (op0)
7895 && (MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode1)
7896 || (bitpos % GET_MODE_ALIGNMENT (mode1) != 0))))
7897 && ((modifier == EXPAND_CONST_ADDRESS
7898 || modifier == EXPAND_INITIALIZER)
7899 ? STRICT_ALIGNMENT
7900 : SLOW_UNALIGNED_ACCESS (mode1, MEM_ALIGN (op0))))
7901 || (bitpos % BITS_PER_UNIT != 0)))
7902 /* If the type and the field are a constant size and the
7903 size of the type isn't the same size as the bitfield,
7904 we must use bitfield operations. */
7905 || (bitsize >= 0
7906 && TYPE_SIZE (TREE_TYPE (exp))
7907 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
7908 && 0 != compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)),
7909 bitsize)))
7911 enum machine_mode ext_mode = mode;
7913 if (ext_mode == BLKmode
7914 && ! (target != 0 && MEM_P (op0)
7915 && MEM_P (target)
7916 && bitpos % BITS_PER_UNIT == 0))
7917 ext_mode = mode_for_size (bitsize, MODE_INT, 1);
7919 if (ext_mode == BLKmode)
7921 if (target == 0)
7922 target = assign_temp (type, 0, 1, 1);
7924 if (bitsize == 0)
7925 return target;
7927 /* In this case, BITPOS must start at a byte boundary and
7928 TARGET, if specified, must be a MEM. */
7929 gcc_assert (MEM_P (op0)
7930 && (!target || MEM_P (target))
7931 && !(bitpos % BITS_PER_UNIT));
7933 emit_block_move (target,
7934 adjust_address (op0, VOIDmode,
7935 bitpos / BITS_PER_UNIT),
7936 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
7937 / BITS_PER_UNIT),
7938 (modifier == EXPAND_STACK_PARM
7939 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
7941 return target;
7944 op0 = validize_mem (op0);
7946 if (MEM_P (op0) && REG_P (XEXP (op0, 0)))
7947 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
7949 op0 = extract_bit_field (op0, bitsize, bitpos, unsignedp,
7950 (modifier == EXPAND_STACK_PARM
7951 ? NULL_RTX : target),
7952 ext_mode, ext_mode);
7954 /* If the result is a record type and BITSIZE is narrower than
7955 the mode of OP0, an integral mode, and this is a big endian
7956 machine, we must put the field into the high-order bits. */
7957 if (TREE_CODE (type) == RECORD_TYPE && BYTES_BIG_ENDIAN
7958 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
7959 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (op0)))
7960 op0 = expand_shift (LSHIFT_EXPR, GET_MODE (op0), op0,
7961 size_int (GET_MODE_BITSIZE (GET_MODE (op0))
7962 - bitsize),
7963 op0, 1);
7965 /* If the result type is BLKmode, store the data into a temporary
7966 of the appropriate type, but with the mode corresponding to the
7967 mode for the data we have (op0's mode). It's tempting to make
7968 this a constant type, since we know it's only being stored once,
7969 but that can cause problems if we are taking the address of this
7970 COMPONENT_REF because the MEM of any reference via that address
7971 will have flags corresponding to the type, which will not
7972 necessarily be constant. */
7973 if (mode == BLKmode)
7975 HOST_WIDE_INT size = GET_MODE_BITSIZE (ext_mode);
7976 rtx new_rtx;
7978 /* If the reference doesn't use the alias set of its type,
7979 we cannot create the temporary using that type. */
7980 if (component_uses_parent_alias_set (exp))
7982 new_rtx = assign_stack_local (ext_mode, size, 0);
7983 set_mem_alias_set (new_rtx, get_alias_set (exp));
7985 else
7986 new_rtx = assign_stack_temp_for_type (ext_mode, size, 0, type);
7988 emit_move_insn (new_rtx, op0);
7989 op0 = copy_rtx (new_rtx);
7990 PUT_MODE (op0, BLKmode);
7991 set_mem_attributes (op0, exp, 1);
7994 return op0;
7997 /* If the result is BLKmode, use that to access the object
7998 now as well. */
7999 if (mode == BLKmode)
8000 mode1 = BLKmode;
8002 /* Get a reference to just this component. */
8003 if (modifier == EXPAND_CONST_ADDRESS
8004 || modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
8005 op0 = adjust_address_nv (op0, mode1, bitpos / BITS_PER_UNIT);
8006 else
8007 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
8009 if (op0 == orig_op0)
8010 op0 = copy_rtx (op0);
8012 set_mem_attributes (op0, exp, 0);
8013 if (REG_P (XEXP (op0, 0)))
8014 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
8016 MEM_VOLATILE_P (op0) |= volatilep;
8017 if (mode == mode1 || mode1 == BLKmode || mode1 == tmode
8018 || modifier == EXPAND_CONST_ADDRESS
8019 || modifier == EXPAND_INITIALIZER)
8020 return op0;
8021 else if (target == 0)
8022 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
8024 convert_move (target, op0, unsignedp);
8025 return target;
8028 case OBJ_TYPE_REF:
8029 return expand_expr (OBJ_TYPE_REF_EXPR (exp), target, tmode, modifier);
8031 case CALL_EXPR:
8032 /* All valid uses of __builtin_va_arg_pack () are removed during
8033 inlining. */
8034 if (CALL_EXPR_VA_ARG_PACK (exp))
8035 error ("%Kinvalid use of %<__builtin_va_arg_pack ()%>", exp);
8037 tree fndecl = get_callee_fndecl (exp), attr;
8039 if (fndecl
8040 && (attr = lookup_attribute ("error",
8041 DECL_ATTRIBUTES (fndecl))) != NULL)
8042 error ("%Kcall to %qs declared with attribute error: %s",
8043 exp, lang_hooks.decl_printable_name (fndecl, 1),
8044 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
8045 if (fndecl
8046 && (attr = lookup_attribute ("warning",
8047 DECL_ATTRIBUTES (fndecl))) != NULL)
8048 warning (0, "%Kcall to %qs declared with attribute warning: %s",
8049 exp, lang_hooks.decl_printable_name (fndecl, 1),
8050 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
8052 /* Check for a built-in function. */
8053 if (fndecl && DECL_BUILT_IN (fndecl))
8055 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_FRONTEND)
8056 return lang_hooks.expand_expr (exp, original_target,
8057 tmode, modifier, alt_rtl);
8058 else
8059 return expand_builtin (exp, target, subtarget, tmode, ignore);
8062 return expand_call (exp, target, ignore);
8064 case PAREN_EXPR:
8065 CASE_CONVERT:
8066 if (TREE_OPERAND (exp, 0) == error_mark_node)
8067 return const0_rtx;
8069 if (TREE_CODE (type) == UNION_TYPE)
8071 tree valtype = TREE_TYPE (TREE_OPERAND (exp, 0));
8073 /* If both input and output are BLKmode, this conversion isn't doing
8074 anything except possibly changing memory attribute. */
8075 if (mode == BLKmode && TYPE_MODE (valtype) == BLKmode)
8077 rtx result = expand_expr (TREE_OPERAND (exp, 0), target, tmode,
8078 modifier);
8080 result = copy_rtx (result);
8081 set_mem_attributes (result, exp, 0);
8082 return result;
8085 if (target == 0)
8087 if (TYPE_MODE (type) != BLKmode)
8088 target = gen_reg_rtx (TYPE_MODE (type));
8089 else
8090 target = assign_temp (type, 0, 1, 1);
8093 if (MEM_P (target))
8094 /* Store data into beginning of memory target. */
8095 store_expr (TREE_OPERAND (exp, 0),
8096 adjust_address (target, TYPE_MODE (valtype), 0),
8097 modifier == EXPAND_STACK_PARM,
8098 false);
8100 else
8102 gcc_assert (REG_P (target));
8104 /* Store this field into a union of the proper type. */
8105 store_field (target,
8106 MIN ((int_size_in_bytes (TREE_TYPE
8107 (TREE_OPERAND (exp, 0)))
8108 * BITS_PER_UNIT),
8109 (HOST_WIDE_INT) GET_MODE_BITSIZE (mode)),
8110 0, TYPE_MODE (valtype), TREE_OPERAND (exp, 0),
8111 type, 0, false);
8114 /* Return the entire union. */
8115 return target;
8118 if (mode == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))))
8120 op0 = expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode,
8121 modifier);
8123 /* If the signedness of the conversion differs and OP0 is
8124 a promoted SUBREG, clear that indication since we now
8125 have to do the proper extension. */
8126 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))) != unsignedp
8127 && GET_CODE (op0) == SUBREG)
8128 SUBREG_PROMOTED_VAR_P (op0) = 0;
8130 return REDUCE_BIT_FIELD (op0);
8133 op0 = expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, mode,
8134 modifier == EXPAND_SUM ? EXPAND_NORMAL : modifier);
8135 if (GET_MODE (op0) == mode)
8138 /* If OP0 is a constant, just convert it into the proper mode. */
8139 else if (CONSTANT_P (op0))
8141 tree inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
8142 enum machine_mode inner_mode = TYPE_MODE (inner_type);
8144 if (modifier == EXPAND_INITIALIZER)
8145 op0 = simplify_gen_subreg (mode, op0, inner_mode,
8146 subreg_lowpart_offset (mode,
8147 inner_mode));
8148 else
8149 op0= convert_modes (mode, inner_mode, op0,
8150 TYPE_UNSIGNED (inner_type));
8153 else if (modifier == EXPAND_INITIALIZER)
8154 op0 = gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND, mode, op0);
8156 else if (target == 0)
8157 op0 = convert_to_mode (mode, op0,
8158 TYPE_UNSIGNED (TREE_TYPE
8159 (TREE_OPERAND (exp, 0))));
8160 else
8162 convert_move (target, op0,
8163 TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))));
8164 op0 = target;
8167 return REDUCE_BIT_FIELD (op0);
8169 case VIEW_CONVERT_EXPR:
8170 op0 = NULL_RTX;
8172 /* If we are converting to BLKmode, try to avoid an intermediate
8173 temporary by fetching an inner memory reference. */
8174 if (mode == BLKmode
8175 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
8176 && TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))) != BLKmode
8177 && handled_component_p (TREE_OPERAND (exp, 0)))
8179 enum machine_mode mode1;
8180 HOST_WIDE_INT bitsize, bitpos;
8181 tree offset;
8182 int unsignedp;
8183 int volatilep = 0;
8184 tree tem
8185 = get_inner_reference (TREE_OPERAND (exp, 0), &bitsize, &bitpos,
8186 &offset, &mode1, &unsignedp, &volatilep,
8187 true);
8188 rtx orig_op0;
8190 /* ??? We should work harder and deal with non-zero offsets. */
8191 if (!offset
8192 && (bitpos % BITS_PER_UNIT) == 0
8193 && bitsize >= 0
8194 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) == 0)
8196 /* See the normal_inner_ref case for the rationale. */
8197 orig_op0
8198 = expand_expr (tem,
8199 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
8200 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
8201 != INTEGER_CST)
8202 && modifier != EXPAND_STACK_PARM
8203 ? target : NULL_RTX),
8204 VOIDmode,
8205 (modifier == EXPAND_INITIALIZER
8206 || modifier == EXPAND_CONST_ADDRESS
8207 || modifier == EXPAND_STACK_PARM)
8208 ? modifier : EXPAND_NORMAL);
8210 if (MEM_P (orig_op0))
8212 op0 = orig_op0;
8214 /* Get a reference to just this component. */
8215 if (modifier == EXPAND_CONST_ADDRESS
8216 || modifier == EXPAND_SUM
8217 || modifier == EXPAND_INITIALIZER)
8218 op0 = adjust_address_nv (op0, mode, bitpos / BITS_PER_UNIT);
8219 else
8220 op0 = adjust_address (op0, mode, bitpos / BITS_PER_UNIT);
8222 if (op0 == orig_op0)
8223 op0 = copy_rtx (op0);
8225 set_mem_attributes (op0, TREE_OPERAND (exp, 0), 0);
8226 if (REG_P (XEXP (op0, 0)))
8227 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
8229 MEM_VOLATILE_P (op0) |= volatilep;
8234 if (!op0)
8235 op0 = expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, mode, modifier);
8237 /* If the input and output modes are both the same, we are done. */
8238 if (mode == GET_MODE (op0))
8240 /* If neither mode is BLKmode, and both modes are the same size
8241 then we can use gen_lowpart. */
8242 else if (mode != BLKmode && GET_MODE (op0) != BLKmode
8243 && GET_MODE_SIZE (mode) == GET_MODE_SIZE (GET_MODE (op0)))
8245 if (GET_CODE (op0) == SUBREG)
8246 op0 = force_reg (GET_MODE (op0), op0);
8247 op0 = gen_lowpart (mode, op0);
8249 /* If both modes are integral, then we can convert from one to the
8250 other. */
8251 else if (SCALAR_INT_MODE_P (GET_MODE (op0)) && SCALAR_INT_MODE_P (mode))
8252 op0 = convert_modes (mode, GET_MODE (op0), op0,
8253 TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))));
8254 /* As a last resort, spill op0 to memory, and reload it in a
8255 different mode. */
8256 else if (!MEM_P (op0))
8258 /* If the operand is not a MEM, force it into memory. Since we
8259 are going to be changing the mode of the MEM, don't call
8260 force_const_mem for constants because we don't allow pool
8261 constants to change mode. */
8262 tree inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
8264 gcc_assert (!TREE_ADDRESSABLE (exp));
8266 if (target == 0 || GET_MODE (target) != TYPE_MODE (inner_type))
8267 target
8268 = assign_stack_temp_for_type
8269 (TYPE_MODE (inner_type),
8270 GET_MODE_SIZE (TYPE_MODE (inner_type)), 0, inner_type);
8272 emit_move_insn (target, op0);
8273 op0 = target;
8276 /* At this point, OP0 is in the correct mode. If the output type is
8277 such that the operand is known to be aligned, indicate that it is.
8278 Otherwise, we need only be concerned about alignment for non-BLKmode
8279 results. */
8280 if (MEM_P (op0))
8282 op0 = copy_rtx (op0);
8284 if (TYPE_ALIGN_OK (type))
8285 set_mem_align (op0, MAX (MEM_ALIGN (op0), TYPE_ALIGN (type)));
8286 else if (STRICT_ALIGNMENT
8287 && mode != BLKmode
8288 && MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode))
8290 tree inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
8291 HOST_WIDE_INT temp_size
8292 = MAX (int_size_in_bytes (inner_type),
8293 (HOST_WIDE_INT) GET_MODE_SIZE (mode));
8294 rtx new_rtx
8295 = assign_stack_temp_for_type (mode, temp_size, 0, type);
8296 rtx new_with_op0_mode
8297 = adjust_address (new_rtx, GET_MODE (op0), 0);
8299 gcc_assert (!TREE_ADDRESSABLE (exp));
8301 if (GET_MODE (op0) == BLKmode)
8302 emit_block_move (new_with_op0_mode, op0,
8303 GEN_INT (GET_MODE_SIZE (mode)),
8304 (modifier == EXPAND_STACK_PARM
8305 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
8306 else
8307 emit_move_insn (new_with_op0_mode, op0);
8309 op0 = new_rtx;
8312 op0 = adjust_address (op0, mode, 0);
8315 return op0;
8317 case POINTER_PLUS_EXPR:
8318 /* Even though the sizetype mode and the pointer's mode can be different
8319 expand is able to handle this correctly and get the correct result out
8320 of the PLUS_EXPR code. */
8321 case PLUS_EXPR:
8323 /* Check if this is a case for multiplication and addition. */
8324 if ((TREE_CODE (type) == INTEGER_TYPE
8325 || TREE_CODE (type) == FIXED_POINT_TYPE)
8326 && TREE_CODE (TREE_OPERAND (exp, 0)) == MULT_EXPR)
8328 tree subsubexp0, subsubexp1;
8329 enum tree_code code0, code1, this_code;
8331 subexp0 = TREE_OPERAND (exp, 0);
8332 subsubexp0 = TREE_OPERAND (subexp0, 0);
8333 subsubexp1 = TREE_OPERAND (subexp0, 1);
8334 code0 = TREE_CODE (subsubexp0);
8335 code1 = TREE_CODE (subsubexp1);
8336 this_code = TREE_CODE (type) == INTEGER_TYPE ? NOP_EXPR
8337 : FIXED_CONVERT_EXPR;
8338 if (code0 == this_code && code1 == this_code
8339 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subsubexp0, 0)))
8340 < TYPE_PRECISION (TREE_TYPE (subsubexp0)))
8341 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subsubexp0, 0)))
8342 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subsubexp1, 0))))
8343 && (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (subsubexp0, 0)))
8344 == TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (subsubexp1, 0)))))
8346 tree op0type = TREE_TYPE (TREE_OPERAND (subsubexp0, 0));
8347 enum machine_mode innermode = TYPE_MODE (op0type);
8348 bool zextend_p = TYPE_UNSIGNED (op0type);
8349 bool sat_p = TYPE_SATURATING (TREE_TYPE (subsubexp0));
8350 if (sat_p == 0)
8351 this_optab = zextend_p ? umadd_widen_optab : smadd_widen_optab;
8352 else
8353 this_optab = zextend_p ? usmadd_widen_optab
8354 : ssmadd_widen_optab;
8355 if (mode == GET_MODE_2XWIDER_MODE (innermode)
8356 && (optab_handler (this_optab, mode)->insn_code
8357 != CODE_FOR_nothing))
8359 expand_operands (TREE_OPERAND (subsubexp0, 0),
8360 TREE_OPERAND (subsubexp1, 0),
8361 NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8362 op2 = expand_expr (TREE_OPERAND (exp, 1), subtarget,
8363 VOIDmode, EXPAND_NORMAL);
8364 temp = expand_ternary_op (mode, this_optab, op0, op1, op2,
8365 target, unsignedp);
8366 gcc_assert (temp);
8367 return REDUCE_BIT_FIELD (temp);
8372 /* If we are adding a constant, a VAR_DECL that is sp, fp, or ap, and
8373 something else, make sure we add the register to the constant and
8374 then to the other thing. This case can occur during strength
8375 reduction and doing it this way will produce better code if the
8376 frame pointer or argument pointer is eliminated.
8378 fold-const.c will ensure that the constant is always in the inner
8379 PLUS_EXPR, so the only case we need to do anything about is if
8380 sp, ap, or fp is our second argument, in which case we must swap
8381 the innermost first argument and our second argument. */
8383 if (TREE_CODE (TREE_OPERAND (exp, 0)) == PLUS_EXPR
8384 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 1)) == INTEGER_CST
8385 && TREE_CODE (TREE_OPERAND (exp, 1)) == VAR_DECL
8386 && (DECL_RTL (TREE_OPERAND (exp, 1)) == frame_pointer_rtx
8387 || DECL_RTL (TREE_OPERAND (exp, 1)) == stack_pointer_rtx
8388 || DECL_RTL (TREE_OPERAND (exp, 1)) == arg_pointer_rtx))
8390 tree t = TREE_OPERAND (exp, 1);
8392 TREE_OPERAND (exp, 1) = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
8393 TREE_OPERAND (TREE_OPERAND (exp, 0), 0) = t;
8396 /* If the result is to be ptr_mode and we are adding an integer to
8397 something, we might be forming a constant. So try to use
8398 plus_constant. If it produces a sum and we can't accept it,
8399 use force_operand. This allows P = &ARR[const] to generate
8400 efficient code on machines where a SYMBOL_REF is not a valid
8401 address.
8403 If this is an EXPAND_SUM call, always return the sum. */
8404 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER
8405 || (mode == ptr_mode && (unsignedp || ! flag_trapv)))
8407 if (modifier == EXPAND_STACK_PARM)
8408 target = 0;
8409 if (TREE_CODE (TREE_OPERAND (exp, 0)) == INTEGER_CST
8410 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
8411 && TREE_CONSTANT (TREE_OPERAND (exp, 1)))
8413 rtx constant_part;
8415 op1 = expand_expr (TREE_OPERAND (exp, 1), subtarget, VOIDmode,
8416 EXPAND_SUM);
8417 /* Use immed_double_const to ensure that the constant is
8418 truncated according to the mode of OP1, then sign extended
8419 to a HOST_WIDE_INT. Using the constant directly can result
8420 in non-canonical RTL in a 64x32 cross compile. */
8421 constant_part
8422 = immed_double_const (TREE_INT_CST_LOW (TREE_OPERAND (exp, 0)),
8423 (HOST_WIDE_INT) 0,
8424 TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 1))));
8425 op1 = plus_constant (op1, INTVAL (constant_part));
8426 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8427 op1 = force_operand (op1, target);
8428 return REDUCE_BIT_FIELD (op1);
8431 else if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
8432 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
8433 && TREE_CONSTANT (TREE_OPERAND (exp, 0)))
8435 rtx constant_part;
8437 op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode,
8438 (modifier == EXPAND_INITIALIZER
8439 ? EXPAND_INITIALIZER : EXPAND_SUM));
8440 if (! CONSTANT_P (op0))
8442 op1 = expand_expr (TREE_OPERAND (exp, 1), NULL_RTX,
8443 VOIDmode, modifier);
8444 /* Return a PLUS if modifier says it's OK. */
8445 if (modifier == EXPAND_SUM
8446 || modifier == EXPAND_INITIALIZER)
8447 return simplify_gen_binary (PLUS, mode, op0, op1);
8448 goto binop2;
8450 /* Use immed_double_const to ensure that the constant is
8451 truncated according to the mode of OP1, then sign extended
8452 to a HOST_WIDE_INT. Using the constant directly can result
8453 in non-canonical RTL in a 64x32 cross compile. */
8454 constant_part
8455 = immed_double_const (TREE_INT_CST_LOW (TREE_OPERAND (exp, 1)),
8456 (HOST_WIDE_INT) 0,
8457 TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))));
8458 op0 = plus_constant (op0, INTVAL (constant_part));
8459 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8460 op0 = force_operand (op0, target);
8461 return REDUCE_BIT_FIELD (op0);
8465 /* No sense saving up arithmetic to be done
8466 if it's all in the wrong mode to form part of an address.
8467 And force_operand won't know whether to sign-extend or
8468 zero-extend. */
8469 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8470 || mode != ptr_mode)
8472 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8473 subtarget, &op0, &op1, 0);
8474 if (op0 == const0_rtx)
8475 return op1;
8476 if (op1 == const0_rtx)
8477 return op0;
8478 goto binop2;
8481 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8482 subtarget, &op0, &op1, modifier);
8483 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
8485 case MINUS_EXPR:
8486 /* Check if this is a case for multiplication and subtraction. */
8487 if ((TREE_CODE (type) == INTEGER_TYPE
8488 || TREE_CODE (type) == FIXED_POINT_TYPE)
8489 && TREE_CODE (TREE_OPERAND (exp, 1)) == MULT_EXPR)
8491 tree subsubexp0, subsubexp1;
8492 enum tree_code code0, code1, this_code;
8494 subexp1 = TREE_OPERAND (exp, 1);
8495 subsubexp0 = TREE_OPERAND (subexp1, 0);
8496 subsubexp1 = TREE_OPERAND (subexp1, 1);
8497 code0 = TREE_CODE (subsubexp0);
8498 code1 = TREE_CODE (subsubexp1);
8499 this_code = TREE_CODE (type) == INTEGER_TYPE ? NOP_EXPR
8500 : FIXED_CONVERT_EXPR;
8501 if (code0 == this_code && code1 == this_code
8502 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subsubexp0, 0)))
8503 < TYPE_PRECISION (TREE_TYPE (subsubexp0)))
8504 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subsubexp0, 0)))
8505 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subsubexp1, 0))))
8506 && (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (subsubexp0, 0)))
8507 == TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (subsubexp1, 0)))))
8509 tree op0type = TREE_TYPE (TREE_OPERAND (subsubexp0, 0));
8510 enum machine_mode innermode = TYPE_MODE (op0type);
8511 bool zextend_p = TYPE_UNSIGNED (op0type);
8512 bool sat_p = TYPE_SATURATING (TREE_TYPE (subsubexp0));
8513 if (sat_p == 0)
8514 this_optab = zextend_p ? umsub_widen_optab : smsub_widen_optab;
8515 else
8516 this_optab = zextend_p ? usmsub_widen_optab
8517 : ssmsub_widen_optab;
8518 if (mode == GET_MODE_2XWIDER_MODE (innermode)
8519 && (optab_handler (this_optab, mode)->insn_code
8520 != CODE_FOR_nothing))
8522 expand_operands (TREE_OPERAND (subsubexp0, 0),
8523 TREE_OPERAND (subsubexp1, 0),
8524 NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8525 op2 = expand_expr (TREE_OPERAND (exp, 0), subtarget,
8526 VOIDmode, EXPAND_NORMAL);
8527 temp = expand_ternary_op (mode, this_optab, op0, op1, op2,
8528 target, unsignedp);
8529 gcc_assert (temp);
8530 return REDUCE_BIT_FIELD (temp);
8535 /* For initializers, we are allowed to return a MINUS of two
8536 symbolic constants. Here we handle all cases when both operands
8537 are constant. */
8538 /* Handle difference of two symbolic constants,
8539 for the sake of an initializer. */
8540 if ((modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
8541 && really_constant_p (TREE_OPERAND (exp, 0))
8542 && really_constant_p (TREE_OPERAND (exp, 1)))
8544 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8545 NULL_RTX, &op0, &op1, modifier);
8547 /* If the last operand is a CONST_INT, use plus_constant of
8548 the negated constant. Else make the MINUS. */
8549 if (GET_CODE (op1) == CONST_INT)
8550 return REDUCE_BIT_FIELD (plus_constant (op0, - INTVAL (op1)));
8551 else
8552 return REDUCE_BIT_FIELD (gen_rtx_MINUS (mode, op0, op1));
8555 /* No sense saving up arithmetic to be done
8556 if it's all in the wrong mode to form part of an address.
8557 And force_operand won't know whether to sign-extend or
8558 zero-extend. */
8559 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
8560 || mode != ptr_mode)
8561 goto binop;
8563 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8564 subtarget, &op0, &op1, modifier);
8566 /* Convert A - const to A + (-const). */
8567 if (GET_CODE (op1) == CONST_INT)
8569 op1 = negate_rtx (mode, op1);
8570 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
8573 goto binop2;
8575 case MULT_EXPR:
8576 /* If this is a fixed-point operation, then we cannot use the code
8577 below because "expand_mult" doesn't support sat/no-sat fixed-point
8578 multiplications. */
8579 if (ALL_FIXED_POINT_MODE_P (mode))
8580 goto binop;
8582 /* If first operand is constant, swap them.
8583 Thus the following special case checks need only
8584 check the second operand. */
8585 if (TREE_CODE (TREE_OPERAND (exp, 0)) == INTEGER_CST)
8587 tree t1 = TREE_OPERAND (exp, 0);
8588 TREE_OPERAND (exp, 0) = TREE_OPERAND (exp, 1);
8589 TREE_OPERAND (exp, 1) = t1;
8592 /* Attempt to return something suitable for generating an
8593 indexed address, for machines that support that. */
8595 if (modifier == EXPAND_SUM && mode == ptr_mode
8596 && host_integerp (TREE_OPERAND (exp, 1), 0))
8598 tree exp1 = TREE_OPERAND (exp, 1);
8600 op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode,
8601 EXPAND_SUM);
8603 if (!REG_P (op0))
8604 op0 = force_operand (op0, NULL_RTX);
8605 if (!REG_P (op0))
8606 op0 = copy_to_mode_reg (mode, op0);
8608 return REDUCE_BIT_FIELD (gen_rtx_MULT (mode, op0,
8609 gen_int_mode (tree_low_cst (exp1, 0),
8610 TYPE_MODE (TREE_TYPE (exp1)))));
8613 if (modifier == EXPAND_STACK_PARM)
8614 target = 0;
8616 /* Check for multiplying things that have been extended
8617 from a narrower type. If this machine supports multiplying
8618 in that narrower type with a result in the desired type,
8619 do it that way, and avoid the explicit type-conversion. */
8621 subexp0 = TREE_OPERAND (exp, 0);
8622 subexp1 = TREE_OPERAND (exp, 1);
8623 /* First, check if we have a multiplication of one signed and one
8624 unsigned operand. */
8625 if (TREE_CODE (subexp0) == NOP_EXPR
8626 && TREE_CODE (subexp1) == NOP_EXPR
8627 && TREE_CODE (type) == INTEGER_TYPE
8628 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subexp0, 0)))
8629 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))))
8630 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subexp0, 0)))
8631 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (subexp1, 0))))
8632 && (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (subexp0, 0)))
8633 != TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (subexp1, 0)))))
8635 enum machine_mode innermode
8636 = TYPE_MODE (TREE_TYPE (TREE_OPERAND (subexp0, 0)));
8637 this_optab = usmul_widen_optab;
8638 if (mode == GET_MODE_WIDER_MODE (innermode))
8640 if (optab_handler (this_optab, mode)->insn_code != CODE_FOR_nothing)
8642 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (subexp0, 0))))
8643 expand_operands (TREE_OPERAND (subexp0, 0),
8644 TREE_OPERAND (subexp1, 0),
8645 NULL_RTX, &op0, &op1, 0);
8646 else
8647 expand_operands (TREE_OPERAND (subexp0, 0),
8648 TREE_OPERAND (subexp1, 0),
8649 NULL_RTX, &op1, &op0, 0);
8651 goto binop3;
8655 /* Check for a multiplication with matching signedness. */
8656 else if (TREE_CODE (TREE_OPERAND (exp, 0)) == NOP_EXPR
8657 && TREE_CODE (type) == INTEGER_TYPE
8658 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
8659 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))))
8660 && ((TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
8661 && int_fits_type_p (TREE_OPERAND (exp, 1),
8662 TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
8663 /* Don't use a widening multiply if a shift will do. */
8664 && ((GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 1))))
8665 > HOST_BITS_PER_WIDE_INT)
8666 || exact_log2 (TREE_INT_CST_LOW (TREE_OPERAND (exp, 1))) < 0))
8668 (TREE_CODE (TREE_OPERAND (exp, 1)) == NOP_EXPR
8669 && (TYPE_PRECISION (TREE_TYPE
8670 (TREE_OPERAND (TREE_OPERAND (exp, 1), 0)))
8671 == TYPE_PRECISION (TREE_TYPE
8672 (TREE_OPERAND
8673 (TREE_OPERAND (exp, 0), 0))))
8674 /* If both operands are extended, they must either both
8675 be zero-extended or both be sign-extended. */
8676 && (TYPE_UNSIGNED (TREE_TYPE
8677 (TREE_OPERAND (TREE_OPERAND (exp, 1), 0)))
8678 == TYPE_UNSIGNED (TREE_TYPE
8679 (TREE_OPERAND
8680 (TREE_OPERAND (exp, 0), 0)))))))
8682 tree op0type = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0));
8683 enum machine_mode innermode = TYPE_MODE (op0type);
8684 bool zextend_p = TYPE_UNSIGNED (op0type);
8685 optab other_optab = zextend_p ? smul_widen_optab : umul_widen_optab;
8686 this_optab = zextend_p ? umul_widen_optab : smul_widen_optab;
8688 if (mode == GET_MODE_2XWIDER_MODE (innermode))
8690 if (optab_handler (this_optab, mode)->insn_code != CODE_FOR_nothing)
8692 if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
8693 expand_operands (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
8694 TREE_OPERAND (exp, 1),
8695 NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8696 else
8697 expand_operands (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
8698 TREE_OPERAND (TREE_OPERAND (exp, 1), 0),
8699 NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8700 goto binop3;
8702 else if (optab_handler (other_optab, mode)->insn_code != CODE_FOR_nothing
8703 && innermode == word_mode)
8705 rtx htem, hipart;
8706 op0 = expand_normal (TREE_OPERAND (TREE_OPERAND (exp, 0), 0));
8707 if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
8708 op1 = convert_modes (innermode, mode,
8709 expand_normal (TREE_OPERAND (exp, 1)),
8710 unsignedp);
8711 else
8712 op1 = expand_normal (TREE_OPERAND (TREE_OPERAND (exp, 1), 0));
8713 temp = expand_binop (mode, other_optab, op0, op1, target,
8714 unsignedp, OPTAB_LIB_WIDEN);
8715 hipart = gen_highpart (innermode, temp);
8716 htem = expand_mult_highpart_adjust (innermode, hipart,
8717 op0, op1, hipart,
8718 zextend_p);
8719 if (htem != hipart)
8720 emit_move_insn (hipart, htem);
8721 return REDUCE_BIT_FIELD (temp);
8725 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8726 subtarget, &op0, &op1, 0);
8727 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
8729 case TRUNC_DIV_EXPR:
8730 case FLOOR_DIV_EXPR:
8731 case CEIL_DIV_EXPR:
8732 case ROUND_DIV_EXPR:
8733 case EXACT_DIV_EXPR:
8734 /* If this is a fixed-point operation, then we cannot use the code
8735 below because "expand_divmod" doesn't support sat/no-sat fixed-point
8736 divisions. */
8737 if (ALL_FIXED_POINT_MODE_P (mode))
8738 goto binop;
8740 if (modifier == EXPAND_STACK_PARM)
8741 target = 0;
8742 /* Possible optimization: compute the dividend with EXPAND_SUM
8743 then if the divisor is constant can optimize the case
8744 where some terms of the dividend have coeffs divisible by it. */
8745 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8746 subtarget, &op0, &op1, 0);
8747 return expand_divmod (0, code, mode, op0, op1, target, unsignedp);
8749 case RDIV_EXPR:
8750 goto binop;
8752 case TRUNC_MOD_EXPR:
8753 case FLOOR_MOD_EXPR:
8754 case CEIL_MOD_EXPR:
8755 case ROUND_MOD_EXPR:
8756 if (modifier == EXPAND_STACK_PARM)
8757 target = 0;
8758 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8759 subtarget, &op0, &op1, 0);
8760 return expand_divmod (1, code, mode, op0, op1, target, unsignedp);
8762 case FIXED_CONVERT_EXPR:
8763 op0 = expand_normal (TREE_OPERAND (exp, 0));
8764 if (target == 0 || modifier == EXPAND_STACK_PARM)
8765 target = gen_reg_rtx (mode);
8767 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == INTEGER_TYPE
8768 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))))
8769 || (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type)))
8770 expand_fixed_convert (target, op0, 1, TYPE_SATURATING (type));
8771 else
8772 expand_fixed_convert (target, op0, 0, TYPE_SATURATING (type));
8773 return target;
8775 case FIX_TRUNC_EXPR:
8776 op0 = expand_normal (TREE_OPERAND (exp, 0));
8777 if (target == 0 || modifier == EXPAND_STACK_PARM)
8778 target = gen_reg_rtx (mode);
8779 expand_fix (target, op0, unsignedp);
8780 return target;
8782 case FLOAT_EXPR:
8783 op0 = expand_normal (TREE_OPERAND (exp, 0));
8784 if (target == 0 || modifier == EXPAND_STACK_PARM)
8785 target = gen_reg_rtx (mode);
8786 /* expand_float can't figure out what to do if FROM has VOIDmode.
8787 So give it the correct mode. With -O, cse will optimize this. */
8788 if (GET_MODE (op0) == VOIDmode)
8789 op0 = copy_to_mode_reg (TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))),
8790 op0);
8791 expand_float (target, op0,
8792 TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))));
8793 return target;
8795 case NEGATE_EXPR:
8796 op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget,
8797 VOIDmode, EXPAND_NORMAL);
8798 if (modifier == EXPAND_STACK_PARM)
8799 target = 0;
8800 temp = expand_unop (mode,
8801 optab_for_tree_code (NEGATE_EXPR, type,
8802 optab_default),
8803 op0, target, 0);
8804 gcc_assert (temp);
8805 return REDUCE_BIT_FIELD (temp);
8807 case ABS_EXPR:
8808 op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget,
8809 VOIDmode, EXPAND_NORMAL);
8810 if (modifier == EXPAND_STACK_PARM)
8811 target = 0;
8813 /* ABS_EXPR is not valid for complex arguments. */
8814 gcc_assert (GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
8815 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT);
8817 /* Unsigned abs is simply the operand. Testing here means we don't
8818 risk generating incorrect code below. */
8819 if (TYPE_UNSIGNED (type))
8820 return op0;
8822 return expand_abs (mode, op0, target, unsignedp,
8823 safe_from_p (target, TREE_OPERAND (exp, 0), 1));
8825 case MAX_EXPR:
8826 case MIN_EXPR:
8827 target = original_target;
8828 if (target == 0
8829 || modifier == EXPAND_STACK_PARM
8830 || (MEM_P (target) && MEM_VOLATILE_P (target))
8831 || GET_MODE (target) != mode
8832 || (REG_P (target)
8833 && REGNO (target) < FIRST_PSEUDO_REGISTER))
8834 target = gen_reg_rtx (mode);
8835 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8836 target, &op0, &op1, 0);
8838 /* First try to do it with a special MIN or MAX instruction.
8839 If that does not win, use a conditional jump to select the proper
8840 value. */
8841 this_optab = optab_for_tree_code (code, type, optab_default);
8842 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
8843 OPTAB_WIDEN);
8844 if (temp != 0)
8845 return temp;
8847 /* At this point, a MEM target is no longer useful; we will get better
8848 code without it. */
8850 if (! REG_P (target))
8851 target = gen_reg_rtx (mode);
8853 /* If op1 was placed in target, swap op0 and op1. */
8854 if (target != op0 && target == op1)
8856 temp = op0;
8857 op0 = op1;
8858 op1 = temp;
8861 /* We generate better code and avoid problems with op1 mentioning
8862 target by forcing op1 into a pseudo if it isn't a constant. */
8863 if (! CONSTANT_P (op1))
8864 op1 = force_reg (mode, op1);
8867 enum rtx_code comparison_code;
8868 rtx cmpop1 = op1;
8870 if (code == MAX_EXPR)
8871 comparison_code = unsignedp ? GEU : GE;
8872 else
8873 comparison_code = unsignedp ? LEU : LE;
8875 /* Canonicalize to comparisons against 0. */
8876 if (op1 == const1_rtx)
8878 /* Converting (a >= 1 ? a : 1) into (a > 0 ? a : 1)
8879 or (a != 0 ? a : 1) for unsigned.
8880 For MIN we are safe converting (a <= 1 ? a : 1)
8881 into (a <= 0 ? a : 1) */
8882 cmpop1 = const0_rtx;
8883 if (code == MAX_EXPR)
8884 comparison_code = unsignedp ? NE : GT;
8886 if (op1 == constm1_rtx && !unsignedp)
8888 /* Converting (a >= -1 ? a : -1) into (a >= 0 ? a : -1)
8889 and (a <= -1 ? a : -1) into (a < 0 ? a : -1) */
8890 cmpop1 = const0_rtx;
8891 if (code == MIN_EXPR)
8892 comparison_code = LT;
8894 #ifdef HAVE_conditional_move
8895 /* Use a conditional move if possible. */
8896 if (can_conditionally_move_p (mode))
8898 rtx insn;
8900 /* ??? Same problem as in expmed.c: emit_conditional_move
8901 forces a stack adjustment via compare_from_rtx, and we
8902 lose the stack adjustment if the sequence we are about
8903 to create is discarded. */
8904 do_pending_stack_adjust ();
8906 start_sequence ();
8908 /* Try to emit the conditional move. */
8909 insn = emit_conditional_move (target, comparison_code,
8910 op0, cmpop1, mode,
8911 op0, op1, mode,
8912 unsignedp);
8914 /* If we could do the conditional move, emit the sequence,
8915 and return. */
8916 if (insn)
8918 rtx seq = get_insns ();
8919 end_sequence ();
8920 emit_insn (seq);
8921 return target;
8924 /* Otherwise discard the sequence and fall back to code with
8925 branches. */
8926 end_sequence ();
8928 #endif
8929 if (target != op0)
8930 emit_move_insn (target, op0);
8932 temp = gen_label_rtx ();
8933 do_compare_rtx_and_jump (target, cmpop1, comparison_code,
8934 unsignedp, mode, NULL_RTX, NULL_RTX, temp);
8936 emit_move_insn (target, op1);
8937 emit_label (temp);
8938 return target;
8940 case BIT_NOT_EXPR:
8941 op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget,
8942 VOIDmode, EXPAND_NORMAL);
8943 if (modifier == EXPAND_STACK_PARM)
8944 target = 0;
8945 temp = expand_unop (mode, one_cmpl_optab, op0, target, 1);
8946 gcc_assert (temp);
8947 return temp;
8949 /* ??? Can optimize bitwise operations with one arg constant.
8950 Can optimize (a bitwise1 n) bitwise2 (a bitwise3 b)
8951 and (a bitwise1 b) bitwise2 b (etc)
8952 but that is probably not worth while. */
8954 /* BIT_AND_EXPR is for bitwise anding. TRUTH_AND_EXPR is for anding two
8955 boolean values when we want in all cases to compute both of them. In
8956 general it is fastest to do TRUTH_AND_EXPR by computing both operands
8957 as actual zero-or-1 values and then bitwise anding. In cases where
8958 there cannot be any side effects, better code would be made by
8959 treating TRUTH_AND_EXPR like TRUTH_ANDIF_EXPR; but the question is
8960 how to recognize those cases. */
8962 case TRUTH_AND_EXPR:
8963 code = BIT_AND_EXPR;
8964 case BIT_AND_EXPR:
8965 goto binop;
8967 case TRUTH_OR_EXPR:
8968 code = BIT_IOR_EXPR;
8969 case BIT_IOR_EXPR:
8970 goto binop;
8972 case TRUTH_XOR_EXPR:
8973 code = BIT_XOR_EXPR;
8974 case BIT_XOR_EXPR:
8975 goto binop;
8977 case LROTATE_EXPR:
8978 case RROTATE_EXPR:
8979 gcc_assert (VECTOR_MODE_P (TYPE_MODE (type))
8980 || (GET_MODE_PRECISION (TYPE_MODE (type))
8981 == TYPE_PRECISION (type)));
8982 /* fall through */
8984 case LSHIFT_EXPR:
8985 case RSHIFT_EXPR:
8986 /* If this is a fixed-point operation, then we cannot use the code
8987 below because "expand_shift" doesn't support sat/no-sat fixed-point
8988 shifts. */
8989 if (ALL_FIXED_POINT_MODE_P (mode))
8990 goto binop;
8992 if (! safe_from_p (subtarget, TREE_OPERAND (exp, 1), 1))
8993 subtarget = 0;
8994 if (modifier == EXPAND_STACK_PARM)
8995 target = 0;
8996 op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget,
8997 VOIDmode, EXPAND_NORMAL);
8998 temp = expand_shift (code, mode, op0, TREE_OPERAND (exp, 1), target,
8999 unsignedp);
9000 if (code == LSHIFT_EXPR)
9001 temp = REDUCE_BIT_FIELD (temp);
9002 return temp;
9004 /* Could determine the answer when only additive constants differ. Also,
9005 the addition of one can be handled by changing the condition. */
9006 case LT_EXPR:
9007 case LE_EXPR:
9008 case GT_EXPR:
9009 case GE_EXPR:
9010 case EQ_EXPR:
9011 case NE_EXPR:
9012 case UNORDERED_EXPR:
9013 case ORDERED_EXPR:
9014 case UNLT_EXPR:
9015 case UNLE_EXPR:
9016 case UNGT_EXPR:
9017 case UNGE_EXPR:
9018 case UNEQ_EXPR:
9019 case LTGT_EXPR:
9020 temp = do_store_flag (exp,
9021 modifier != EXPAND_STACK_PARM ? target : NULL_RTX,
9022 tmode != VOIDmode ? tmode : mode, 0);
9023 if (temp != 0)
9024 return temp;
9026 /* For foo != 0, load foo, and if it is nonzero load 1 instead. */
9027 if (code == NE_EXPR && integer_zerop (TREE_OPERAND (exp, 1))
9028 && original_target
9029 && REG_P (original_target)
9030 && (GET_MODE (original_target)
9031 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))))
9033 temp = expand_expr (TREE_OPERAND (exp, 0), original_target,
9034 VOIDmode, EXPAND_NORMAL);
9036 /* If temp is constant, we can just compute the result. */
9037 if (GET_CODE (temp) == CONST_INT)
9039 if (INTVAL (temp) != 0)
9040 emit_move_insn (target, const1_rtx);
9041 else
9042 emit_move_insn (target, const0_rtx);
9044 return target;
9047 if (temp != original_target)
9049 enum machine_mode mode1 = GET_MODE (temp);
9050 if (mode1 == VOIDmode)
9051 mode1 = tmode != VOIDmode ? tmode : mode;
9053 temp = copy_to_mode_reg (mode1, temp);
9056 op1 = gen_label_rtx ();
9057 emit_cmp_and_jump_insns (temp, const0_rtx, EQ, NULL_RTX,
9058 GET_MODE (temp), unsignedp, op1);
9059 emit_move_insn (temp, const1_rtx);
9060 emit_label (op1);
9061 return temp;
9064 /* If no set-flag instruction, must generate a conditional store
9065 into a temporary variable. Drop through and handle this
9066 like && and ||. */
9067 /* Although TRUTH_{AND,OR}IF_EXPR aren't present in GIMPLE, they
9068 are occassionally created by folding during expansion. */
9069 case TRUTH_ANDIF_EXPR:
9070 case TRUTH_ORIF_EXPR:
9071 if (! ignore
9072 && (target == 0
9073 || modifier == EXPAND_STACK_PARM
9074 || ! safe_from_p (target, exp, 1)
9075 /* Make sure we don't have a hard reg (such as function's return
9076 value) live across basic blocks, if not optimizing. */
9077 || (!optimize && REG_P (target)
9078 && REGNO (target) < FIRST_PSEUDO_REGISTER)))
9079 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
9081 if (target)
9082 emit_move_insn (target, const0_rtx);
9084 op1 = gen_label_rtx ();
9085 jumpifnot (exp, op1);
9087 if (target)
9088 emit_move_insn (target, const1_rtx);
9090 emit_label (op1);
9091 return ignore ? const0_rtx : target;
9093 case TRUTH_NOT_EXPR:
9094 if (modifier == EXPAND_STACK_PARM)
9095 target = 0;
9096 op0 = expand_expr (TREE_OPERAND (exp, 0), target,
9097 VOIDmode, EXPAND_NORMAL);
9098 /* The parser is careful to generate TRUTH_NOT_EXPR
9099 only with operands that are always zero or one. */
9100 temp = expand_binop (mode, xor_optab, op0, const1_rtx,
9101 target, 1, OPTAB_LIB_WIDEN);
9102 gcc_assert (temp);
9103 return temp;
9105 case STATEMENT_LIST:
9107 tree_stmt_iterator iter;
9109 gcc_assert (ignore);
9111 for (iter = tsi_start (exp); !tsi_end_p (iter); tsi_next (&iter))
9112 expand_expr (tsi_stmt (iter), const0_rtx, VOIDmode, modifier);
9114 return const0_rtx;
9116 case COND_EXPR:
9117 /* A COND_EXPR with its type being VOID_TYPE represents a
9118 conditional jump and is handled in
9119 expand_gimple_cond_expr. */
9120 gcc_assert (!VOID_TYPE_P (TREE_TYPE (exp)));
9122 /* Note that COND_EXPRs whose type is a structure or union
9123 are required to be constructed to contain assignments of
9124 a temporary variable, so that we can evaluate them here
9125 for side effect only. If type is void, we must do likewise. */
9127 gcc_assert (!TREE_ADDRESSABLE (type)
9128 && !ignore
9129 && TREE_TYPE (TREE_OPERAND (exp, 1)) != void_type_node
9130 && TREE_TYPE (TREE_OPERAND (exp, 2)) != void_type_node);
9132 /* If we are not to produce a result, we have no target. Otherwise,
9133 if a target was specified use it; it will not be used as an
9134 intermediate target unless it is safe. If no target, use a
9135 temporary. */
9137 if (modifier != EXPAND_STACK_PARM
9138 && original_target
9139 && safe_from_p (original_target, TREE_OPERAND (exp, 0), 1)
9140 && GET_MODE (original_target) == mode
9141 #ifdef HAVE_conditional_move
9142 && (! can_conditionally_move_p (mode)
9143 || REG_P (original_target))
9144 #endif
9145 && !MEM_P (original_target))
9146 temp = original_target;
9147 else
9148 temp = assign_temp (type, 0, 0, 1);
9150 do_pending_stack_adjust ();
9151 NO_DEFER_POP;
9152 op0 = gen_label_rtx ();
9153 op1 = gen_label_rtx ();
9154 jumpifnot (TREE_OPERAND (exp, 0), op0);
9155 store_expr (TREE_OPERAND (exp, 1), temp,
9156 modifier == EXPAND_STACK_PARM,
9157 false);
9159 emit_jump_insn (gen_jump (op1));
9160 emit_barrier ();
9161 emit_label (op0);
9162 store_expr (TREE_OPERAND (exp, 2), temp,
9163 modifier == EXPAND_STACK_PARM,
9164 false);
9166 emit_label (op1);
9167 OK_DEFER_POP;
9168 return temp;
9170 case VEC_COND_EXPR:
9171 target = expand_vec_cond_expr (exp, target);
9172 return target;
9174 case MODIFY_EXPR:
9176 tree lhs = TREE_OPERAND (exp, 0);
9177 tree rhs = TREE_OPERAND (exp, 1);
9178 gcc_assert (ignore);
9180 /* Check for |= or &= of a bitfield of size one into another bitfield
9181 of size 1. In this case, (unless we need the result of the
9182 assignment) we can do this more efficiently with a
9183 test followed by an assignment, if necessary.
9185 ??? At this point, we can't get a BIT_FIELD_REF here. But if
9186 things change so we do, this code should be enhanced to
9187 support it. */
9188 if (TREE_CODE (lhs) == COMPONENT_REF
9189 && (TREE_CODE (rhs) == BIT_IOR_EXPR
9190 || TREE_CODE (rhs) == BIT_AND_EXPR)
9191 && TREE_OPERAND (rhs, 0) == lhs
9192 && TREE_CODE (TREE_OPERAND (rhs, 1)) == COMPONENT_REF
9193 && integer_onep (DECL_SIZE (TREE_OPERAND (lhs, 1)))
9194 && integer_onep (DECL_SIZE (TREE_OPERAND (TREE_OPERAND (rhs, 1), 1))))
9196 rtx label = gen_label_rtx ();
9197 int value = TREE_CODE (rhs) == BIT_IOR_EXPR;
9198 do_jump (TREE_OPERAND (rhs, 1),
9199 value ? label : 0,
9200 value ? 0 : label);
9201 expand_assignment (lhs, build_int_cst (TREE_TYPE (rhs), value),
9202 MOVE_NONTEMPORAL (exp));
9203 do_pending_stack_adjust ();
9204 emit_label (label);
9205 return const0_rtx;
9208 expand_assignment (lhs, rhs, MOVE_NONTEMPORAL (exp));
9209 return const0_rtx;
9212 case RETURN_EXPR:
9213 if (!TREE_OPERAND (exp, 0))
9214 expand_null_return ();
9215 else
9216 expand_return (TREE_OPERAND (exp, 0));
9217 return const0_rtx;
9219 case ADDR_EXPR:
9220 return expand_expr_addr_expr (exp, target, tmode, modifier);
9222 case COMPLEX_EXPR:
9223 /* Get the rtx code of the operands. */
9224 op0 = expand_normal (TREE_OPERAND (exp, 0));
9225 op1 = expand_normal (TREE_OPERAND (exp, 1));
9227 if (!target)
9228 target = gen_reg_rtx (TYPE_MODE (TREE_TYPE (exp)));
9230 /* Move the real (op0) and imaginary (op1) parts to their location. */
9231 write_complex_part (target, op0, false);
9232 write_complex_part (target, op1, true);
9234 return target;
9236 case REALPART_EXPR:
9237 op0 = expand_normal (TREE_OPERAND (exp, 0));
9238 return read_complex_part (op0, false);
9240 case IMAGPART_EXPR:
9241 op0 = expand_normal (TREE_OPERAND (exp, 0));
9242 return read_complex_part (op0, true);
9244 case RESX_EXPR:
9245 expand_resx_expr (exp);
9246 return const0_rtx;
9248 case TRY_CATCH_EXPR:
9249 case CATCH_EXPR:
9250 case EH_FILTER_EXPR:
9251 case TRY_FINALLY_EXPR:
9252 /* Lowered by tree-eh.c. */
9253 gcc_unreachable ();
9255 case WITH_CLEANUP_EXPR:
9256 case CLEANUP_POINT_EXPR:
9257 case TARGET_EXPR:
9258 case CASE_LABEL_EXPR:
9259 case VA_ARG_EXPR:
9260 case BIND_EXPR:
9261 case INIT_EXPR:
9262 case CONJ_EXPR:
9263 case COMPOUND_EXPR:
9264 case PREINCREMENT_EXPR:
9265 case PREDECREMENT_EXPR:
9266 case POSTINCREMENT_EXPR:
9267 case POSTDECREMENT_EXPR:
9268 case LOOP_EXPR:
9269 case EXIT_EXPR:
9270 /* Lowered by gimplify.c. */
9271 gcc_unreachable ();
9273 case CHANGE_DYNAMIC_TYPE_EXPR:
9274 /* This is ignored at the RTL level. The tree level set
9275 DECL_POINTER_ALIAS_SET of any variable to be 0, which is
9276 overkill for the RTL layer but is all that we can
9277 represent. */
9278 return const0_rtx;
9280 case EXC_PTR_EXPR:
9281 return get_exception_pointer ();
9283 case FILTER_EXPR:
9284 return get_exception_filter ();
9286 case FDESC_EXPR:
9287 /* Function descriptors are not valid except for as
9288 initialization constants, and should not be expanded. */
9289 gcc_unreachable ();
9291 case SWITCH_EXPR:
9292 expand_case (exp);
9293 return const0_rtx;
9295 case LABEL_EXPR:
9296 expand_label (TREE_OPERAND (exp, 0));
9297 return const0_rtx;
9299 case ASM_EXPR:
9300 expand_asm_expr (exp);
9301 return const0_rtx;
9303 case WITH_SIZE_EXPR:
9304 /* WITH_SIZE_EXPR expands to its first argument. The caller should
9305 have pulled out the size to use in whatever context it needed. */
9306 return expand_expr_real (TREE_OPERAND (exp, 0), original_target, tmode,
9307 modifier, alt_rtl);
9309 case REALIGN_LOAD_EXPR:
9311 tree oprnd0 = TREE_OPERAND (exp, 0);
9312 tree oprnd1 = TREE_OPERAND (exp, 1);
9313 tree oprnd2 = TREE_OPERAND (exp, 2);
9314 rtx op2;
9316 this_optab = optab_for_tree_code (code, type, optab_default);
9317 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
9318 op2 = expand_normal (oprnd2);
9319 temp = expand_ternary_op (mode, this_optab, op0, op1, op2,
9320 target, unsignedp);
9321 gcc_assert (temp);
9322 return temp;
9325 case DOT_PROD_EXPR:
9327 tree oprnd0 = TREE_OPERAND (exp, 0);
9328 tree oprnd1 = TREE_OPERAND (exp, 1);
9329 tree oprnd2 = TREE_OPERAND (exp, 2);
9330 rtx op2;
9332 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
9333 op2 = expand_normal (oprnd2);
9334 target = expand_widen_pattern_expr (exp, op0, op1, op2,
9335 target, unsignedp);
9336 return target;
9339 case WIDEN_SUM_EXPR:
9341 tree oprnd0 = TREE_OPERAND (exp, 0);
9342 tree oprnd1 = TREE_OPERAND (exp, 1);
9344 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, 0);
9345 target = expand_widen_pattern_expr (exp, op0, NULL_RTX, op1,
9346 target, unsignedp);
9347 return target;
9350 case REDUC_MAX_EXPR:
9351 case REDUC_MIN_EXPR:
9352 case REDUC_PLUS_EXPR:
9354 op0 = expand_normal (TREE_OPERAND (exp, 0));
9355 this_optab = optab_for_tree_code (code, type, optab_default);
9356 temp = expand_unop (mode, this_optab, op0, target, unsignedp);
9357 gcc_assert (temp);
9358 return temp;
9361 case VEC_EXTRACT_EVEN_EXPR:
9362 case VEC_EXTRACT_ODD_EXPR:
9364 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
9365 NULL_RTX, &op0, &op1, 0);
9366 this_optab = optab_for_tree_code (code, type, optab_default);
9367 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
9368 OPTAB_WIDEN);
9369 gcc_assert (temp);
9370 return temp;
9373 case VEC_INTERLEAVE_HIGH_EXPR:
9374 case VEC_INTERLEAVE_LOW_EXPR:
9376 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
9377 NULL_RTX, &op0, &op1, 0);
9378 this_optab = optab_for_tree_code (code, type, optab_default);
9379 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
9380 OPTAB_WIDEN);
9381 gcc_assert (temp);
9382 return temp;
9385 case VEC_LSHIFT_EXPR:
9386 case VEC_RSHIFT_EXPR:
9388 target = expand_vec_shift_expr (exp, target);
9389 return target;
9392 case VEC_UNPACK_HI_EXPR:
9393 case VEC_UNPACK_LO_EXPR:
9395 op0 = expand_normal (TREE_OPERAND (exp, 0));
9396 this_optab = optab_for_tree_code (code, type, optab_default);
9397 temp = expand_widen_pattern_expr (exp, op0, NULL_RTX, NULL_RTX,
9398 target, unsignedp);
9399 gcc_assert (temp);
9400 return temp;
9403 case VEC_UNPACK_FLOAT_HI_EXPR:
9404 case VEC_UNPACK_FLOAT_LO_EXPR:
9406 op0 = expand_normal (TREE_OPERAND (exp, 0));
9407 /* The signedness is determined from input operand. */
9408 this_optab = optab_for_tree_code (code,
9409 TREE_TYPE (TREE_OPERAND (exp, 0)),
9410 optab_default);
9411 temp = expand_widen_pattern_expr
9412 (exp, op0, NULL_RTX, NULL_RTX,
9413 target, TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))));
9415 gcc_assert (temp);
9416 return temp;
9419 case VEC_WIDEN_MULT_HI_EXPR:
9420 case VEC_WIDEN_MULT_LO_EXPR:
9422 tree oprnd0 = TREE_OPERAND (exp, 0);
9423 tree oprnd1 = TREE_OPERAND (exp, 1);
9425 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, 0);
9426 target = expand_widen_pattern_expr (exp, op0, op1, NULL_RTX,
9427 target, unsignedp);
9428 gcc_assert (target);
9429 return target;
9432 case VEC_PACK_TRUNC_EXPR:
9433 case VEC_PACK_SAT_EXPR:
9434 case VEC_PACK_FIX_TRUNC_EXPR:
9435 mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
9436 goto binop;
9438 default:
9439 return lang_hooks.expand_expr (exp, original_target, tmode,
9440 modifier, alt_rtl);
9443 /* Here to do an ordinary binary operator. */
9444 binop:
9445 expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
9446 subtarget, &op0, &op1, 0);
9447 binop2:
9448 this_optab = optab_for_tree_code (code, type, optab_default);
9449 binop3:
9450 if (modifier == EXPAND_STACK_PARM)
9451 target = 0;
9452 temp = expand_binop (mode, this_optab, op0, op1, target,
9453 unsignedp, OPTAB_LIB_WIDEN);
9454 gcc_assert (temp);
9455 return REDUCE_BIT_FIELD (temp);
9457 #undef REDUCE_BIT_FIELD
9459 /* Subroutine of above: reduce EXP to the precision of TYPE (in the
9460 signedness of TYPE), possibly returning the result in TARGET. */
9461 static rtx
9462 reduce_to_bit_field_precision (rtx exp, rtx target, tree type)
9464 HOST_WIDE_INT prec = TYPE_PRECISION (type);
9465 if (target && GET_MODE (target) != GET_MODE (exp))
9466 target = 0;
9467 /* For constant values, reduce using build_int_cst_type. */
9468 if (GET_CODE (exp) == CONST_INT)
9470 HOST_WIDE_INT value = INTVAL (exp);
9471 tree t = build_int_cst_type (type, value);
9472 return expand_expr (t, target, VOIDmode, EXPAND_NORMAL);
9474 else if (TYPE_UNSIGNED (type))
9476 rtx mask;
9477 if (prec < HOST_BITS_PER_WIDE_INT)
9478 mask = immed_double_const (((unsigned HOST_WIDE_INT) 1 << prec) - 1, 0,
9479 GET_MODE (exp));
9480 else
9481 mask = immed_double_const ((unsigned HOST_WIDE_INT) -1,
9482 ((unsigned HOST_WIDE_INT) 1
9483 << (prec - HOST_BITS_PER_WIDE_INT)) - 1,
9484 GET_MODE (exp));
9485 return expand_and (GET_MODE (exp), exp, mask, target);
9487 else
9489 tree count = build_int_cst (NULL_TREE,
9490 GET_MODE_BITSIZE (GET_MODE (exp)) - prec);
9491 exp = expand_shift (LSHIFT_EXPR, GET_MODE (exp), exp, count, target, 0);
9492 return expand_shift (RSHIFT_EXPR, GET_MODE (exp), exp, count, target, 0);
9496 /* Subroutine of above: returns 1 if OFFSET corresponds to an offset that
9497 when applied to the address of EXP produces an address known to be
9498 aligned more than BIGGEST_ALIGNMENT. */
9500 static int
9501 is_aligning_offset (const_tree offset, const_tree exp)
9503 /* Strip off any conversions. */
9504 while (CONVERT_EXPR_P (offset))
9505 offset = TREE_OPERAND (offset, 0);
9507 /* We must now have a BIT_AND_EXPR with a constant that is one less than
9508 power of 2 and which is larger than BIGGEST_ALIGNMENT. */
9509 if (TREE_CODE (offset) != BIT_AND_EXPR
9510 || !host_integerp (TREE_OPERAND (offset, 1), 1)
9511 || compare_tree_int (TREE_OPERAND (offset, 1),
9512 BIGGEST_ALIGNMENT / BITS_PER_UNIT) <= 0
9513 || !exact_log2 (tree_low_cst (TREE_OPERAND (offset, 1), 1) + 1) < 0)
9514 return 0;
9516 /* Look at the first operand of BIT_AND_EXPR and strip any conversion.
9517 It must be NEGATE_EXPR. Then strip any more conversions. */
9518 offset = TREE_OPERAND (offset, 0);
9519 while (CONVERT_EXPR_P (offset))
9520 offset = TREE_OPERAND (offset, 0);
9522 if (TREE_CODE (offset) != NEGATE_EXPR)
9523 return 0;
9525 offset = TREE_OPERAND (offset, 0);
9526 while (CONVERT_EXPR_P (offset))
9527 offset = TREE_OPERAND (offset, 0);
9529 /* This must now be the address of EXP. */
9530 return TREE_CODE (offset) == ADDR_EXPR && TREE_OPERAND (offset, 0) == exp;
9533 /* Return the tree node if an ARG corresponds to a string constant or zero
9534 if it doesn't. If we return nonzero, set *PTR_OFFSET to the offset
9535 in bytes within the string that ARG is accessing. The type of the
9536 offset will be `sizetype'. */
9538 tree
9539 string_constant (tree arg, tree *ptr_offset)
9541 tree array, offset, lower_bound;
9542 STRIP_NOPS (arg);
9544 if (TREE_CODE (arg) == ADDR_EXPR)
9546 if (TREE_CODE (TREE_OPERAND (arg, 0)) == STRING_CST)
9548 *ptr_offset = size_zero_node;
9549 return TREE_OPERAND (arg, 0);
9551 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL)
9553 array = TREE_OPERAND (arg, 0);
9554 offset = size_zero_node;
9556 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == ARRAY_REF)
9558 array = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
9559 offset = TREE_OPERAND (TREE_OPERAND (arg, 0), 1);
9560 if (TREE_CODE (array) != STRING_CST
9561 && TREE_CODE (array) != VAR_DECL)
9562 return 0;
9564 /* Check if the array has a nonzero lower bound. */
9565 lower_bound = array_ref_low_bound (TREE_OPERAND (arg, 0));
9566 if (!integer_zerop (lower_bound))
9568 /* If the offset and base aren't both constants, return 0. */
9569 if (TREE_CODE (lower_bound) != INTEGER_CST)
9570 return 0;
9571 if (TREE_CODE (offset) != INTEGER_CST)
9572 return 0;
9573 /* Adjust offset by the lower bound. */
9574 offset = size_diffop (fold_convert (sizetype, offset),
9575 fold_convert (sizetype, lower_bound));
9578 else
9579 return 0;
9581 else if (TREE_CODE (arg) == PLUS_EXPR || TREE_CODE (arg) == POINTER_PLUS_EXPR)
9583 tree arg0 = TREE_OPERAND (arg, 0);
9584 tree arg1 = TREE_OPERAND (arg, 1);
9586 STRIP_NOPS (arg0);
9587 STRIP_NOPS (arg1);
9589 if (TREE_CODE (arg0) == ADDR_EXPR
9590 && (TREE_CODE (TREE_OPERAND (arg0, 0)) == STRING_CST
9591 || TREE_CODE (TREE_OPERAND (arg0, 0)) == VAR_DECL))
9593 array = TREE_OPERAND (arg0, 0);
9594 offset = arg1;
9596 else if (TREE_CODE (arg1) == ADDR_EXPR
9597 && (TREE_CODE (TREE_OPERAND (arg1, 0)) == STRING_CST
9598 || TREE_CODE (TREE_OPERAND (arg1, 0)) == VAR_DECL))
9600 array = TREE_OPERAND (arg1, 0);
9601 offset = arg0;
9603 else
9604 return 0;
9606 else
9607 return 0;
9609 if (TREE_CODE (array) == STRING_CST)
9611 *ptr_offset = fold_convert (sizetype, offset);
9612 return array;
9614 else if (TREE_CODE (array) == VAR_DECL)
9616 int length;
9618 /* Variables initialized to string literals can be handled too. */
9619 if (DECL_INITIAL (array) == NULL_TREE
9620 || TREE_CODE (DECL_INITIAL (array)) != STRING_CST)
9621 return 0;
9623 /* If they are read-only, non-volatile and bind locally. */
9624 if (! TREE_READONLY (array)
9625 || TREE_SIDE_EFFECTS (array)
9626 || ! targetm.binds_local_p (array))
9627 return 0;
9629 /* Avoid const char foo[4] = "abcde"; */
9630 if (DECL_SIZE_UNIT (array) == NULL_TREE
9631 || TREE_CODE (DECL_SIZE_UNIT (array)) != INTEGER_CST
9632 || (length = TREE_STRING_LENGTH (DECL_INITIAL (array))) <= 0
9633 || compare_tree_int (DECL_SIZE_UNIT (array), length) < 0)
9634 return 0;
9636 /* If variable is bigger than the string literal, OFFSET must be constant
9637 and inside of the bounds of the string literal. */
9638 offset = fold_convert (sizetype, offset);
9639 if (compare_tree_int (DECL_SIZE_UNIT (array), length) > 0
9640 && (! host_integerp (offset, 1)
9641 || compare_tree_int (offset, length) >= 0))
9642 return 0;
9644 *ptr_offset = offset;
9645 return DECL_INITIAL (array);
9648 return 0;
9651 /* Generate code to calculate EXP using a store-flag instruction
9652 and return an rtx for the result. EXP is either a comparison
9653 or a TRUTH_NOT_EXPR whose operand is a comparison.
9655 If TARGET is nonzero, store the result there if convenient.
9657 If ONLY_CHEAP is nonzero, only do this if it is likely to be very
9658 cheap.
9660 Return zero if there is no suitable set-flag instruction
9661 available on this machine.
9663 Once expand_expr has been called on the arguments of the comparison,
9664 we are committed to doing the store flag, since it is not safe to
9665 re-evaluate the expression. We emit the store-flag insn by calling
9666 emit_store_flag, but only expand the arguments if we have a reason
9667 to believe that emit_store_flag will be successful. If we think that
9668 it will, but it isn't, we have to simulate the store-flag with a
9669 set/jump/set sequence. */
9671 static rtx
9672 do_store_flag (tree exp, rtx target, enum machine_mode mode, int only_cheap)
9674 enum rtx_code code;
9675 tree arg0, arg1, type;
9676 tree tem;
9677 enum machine_mode operand_mode;
9678 int invert = 0;
9679 int unsignedp;
9680 rtx op0, op1;
9681 enum insn_code icode;
9682 rtx subtarget = target;
9683 rtx result, label;
9685 /* If this is a TRUTH_NOT_EXPR, set a flag indicating we must invert the
9686 result at the end. We can't simply invert the test since it would
9687 have already been inverted if it were valid. This case occurs for
9688 some floating-point comparisons. */
9690 if (TREE_CODE (exp) == TRUTH_NOT_EXPR)
9691 invert = 1, exp = TREE_OPERAND (exp, 0);
9693 arg0 = TREE_OPERAND (exp, 0);
9694 arg1 = TREE_OPERAND (exp, 1);
9696 /* Don't crash if the comparison was erroneous. */
9697 if (arg0 == error_mark_node || arg1 == error_mark_node)
9698 return const0_rtx;
9700 type = TREE_TYPE (arg0);
9701 operand_mode = TYPE_MODE (type);
9702 unsignedp = TYPE_UNSIGNED (type);
9704 /* We won't bother with BLKmode store-flag operations because it would mean
9705 passing a lot of information to emit_store_flag. */
9706 if (operand_mode == BLKmode)
9707 return 0;
9709 /* We won't bother with store-flag operations involving function pointers
9710 when function pointers must be canonicalized before comparisons. */
9711 #ifdef HAVE_canonicalize_funcptr_for_compare
9712 if (HAVE_canonicalize_funcptr_for_compare
9713 && ((TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == POINTER_TYPE
9714 && (TREE_CODE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))))
9715 == FUNCTION_TYPE))
9716 || (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 1))) == POINTER_TYPE
9717 && (TREE_CODE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 1))))
9718 == FUNCTION_TYPE))))
9719 return 0;
9720 #endif
9722 STRIP_NOPS (arg0);
9723 STRIP_NOPS (arg1);
9725 /* Get the rtx comparison code to use. We know that EXP is a comparison
9726 operation of some type. Some comparisons against 1 and -1 can be
9727 converted to comparisons with zero. Do so here so that the tests
9728 below will be aware that we have a comparison with zero. These
9729 tests will not catch constants in the first operand, but constants
9730 are rarely passed as the first operand. */
9732 switch (TREE_CODE (exp))
9734 case EQ_EXPR:
9735 code = EQ;
9736 break;
9737 case NE_EXPR:
9738 code = NE;
9739 break;
9740 case LT_EXPR:
9741 if (integer_onep (arg1))
9742 arg1 = integer_zero_node, code = unsignedp ? LEU : LE;
9743 else
9744 code = unsignedp ? LTU : LT;
9745 break;
9746 case LE_EXPR:
9747 if (! unsignedp && integer_all_onesp (arg1))
9748 arg1 = integer_zero_node, code = LT;
9749 else
9750 code = unsignedp ? LEU : LE;
9751 break;
9752 case GT_EXPR:
9753 if (! unsignedp && integer_all_onesp (arg1))
9754 arg1 = integer_zero_node, code = GE;
9755 else
9756 code = unsignedp ? GTU : GT;
9757 break;
9758 case GE_EXPR:
9759 if (integer_onep (arg1))
9760 arg1 = integer_zero_node, code = unsignedp ? GTU : GT;
9761 else
9762 code = unsignedp ? GEU : GE;
9763 break;
9765 case UNORDERED_EXPR:
9766 code = UNORDERED;
9767 break;
9768 case ORDERED_EXPR:
9769 code = ORDERED;
9770 break;
9771 case UNLT_EXPR:
9772 code = UNLT;
9773 break;
9774 case UNLE_EXPR:
9775 code = UNLE;
9776 break;
9777 case UNGT_EXPR:
9778 code = UNGT;
9779 break;
9780 case UNGE_EXPR:
9781 code = UNGE;
9782 break;
9783 case UNEQ_EXPR:
9784 code = UNEQ;
9785 break;
9786 case LTGT_EXPR:
9787 code = LTGT;
9788 break;
9790 default:
9791 gcc_unreachable ();
9794 /* Put a constant second. */
9795 if (TREE_CODE (arg0) == REAL_CST || TREE_CODE (arg0) == INTEGER_CST
9796 || TREE_CODE (arg0) == FIXED_CST)
9798 tem = arg0; arg0 = arg1; arg1 = tem;
9799 code = swap_condition (code);
9802 /* If this is an equality or inequality test of a single bit, we can
9803 do this by shifting the bit being tested to the low-order bit and
9804 masking the result with the constant 1. If the condition was EQ,
9805 we xor it with 1. This does not require an scc insn and is faster
9806 than an scc insn even if we have it.
9808 The code to make this transformation was moved into fold_single_bit_test,
9809 so we just call into the folder and expand its result. */
9811 if ((code == NE || code == EQ)
9812 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
9813 && integer_pow2p (TREE_OPERAND (arg0, 1)))
9815 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
9816 return expand_expr (fold_single_bit_test (code == NE ? NE_EXPR : EQ_EXPR,
9817 arg0, arg1, type),
9818 target, VOIDmode, EXPAND_NORMAL);
9821 /* Now see if we are likely to be able to do this. Return if not. */
9822 if (! can_compare_p (code, operand_mode, ccp_store_flag))
9823 return 0;
9825 icode = setcc_gen_code[(int) code];
9827 if (icode == CODE_FOR_nothing)
9829 enum machine_mode wmode;
9831 for (wmode = operand_mode;
9832 icode == CODE_FOR_nothing && wmode != VOIDmode;
9833 wmode = GET_MODE_WIDER_MODE (wmode))
9834 icode = optab_handler (cstore_optab, wmode)->insn_code;
9837 if (icode == CODE_FOR_nothing
9838 || (only_cheap && insn_data[(int) icode].operand[0].mode != mode))
9840 /* We can only do this if it is one of the special cases that
9841 can be handled without an scc insn. */
9842 if ((code == LT && integer_zerop (arg1))
9843 || (! only_cheap && code == GE && integer_zerop (arg1)))
9845 else if (! only_cheap && (code == NE || code == EQ)
9846 && TREE_CODE (type) != REAL_TYPE
9847 && ((optab_handler (abs_optab, operand_mode)->insn_code
9848 != CODE_FOR_nothing)
9849 || (optab_handler (ffs_optab, operand_mode)->insn_code
9850 != CODE_FOR_nothing)))
9852 else
9853 return 0;
9856 if (! get_subtarget (target)
9857 || GET_MODE (subtarget) != operand_mode)
9858 subtarget = 0;
9860 expand_operands (arg0, arg1, subtarget, &op0, &op1, 0);
9862 if (target == 0)
9863 target = gen_reg_rtx (mode);
9865 result = emit_store_flag (target, code, op0, op1,
9866 operand_mode, unsignedp, 1);
9868 if (result)
9870 if (invert)
9871 result = expand_binop (mode, xor_optab, result, const1_rtx,
9872 result, 0, OPTAB_LIB_WIDEN);
9873 return result;
9876 /* If this failed, we have to do this with set/compare/jump/set code. */
9877 if (!REG_P (target)
9878 || reg_mentioned_p (target, op0) || reg_mentioned_p (target, op1))
9879 target = gen_reg_rtx (GET_MODE (target));
9881 emit_move_insn (target, invert ? const0_rtx : const1_rtx);
9882 label = gen_label_rtx ();
9883 do_compare_rtx_and_jump (op0, op1, code, unsignedp, operand_mode, NULL_RTX,
9884 NULL_RTX, label);
9886 emit_move_insn (target, invert ? const1_rtx : const0_rtx);
9887 emit_label (label);
9889 return target;
9893 /* Stubs in case we haven't got a casesi insn. */
9894 #ifndef HAVE_casesi
9895 # define HAVE_casesi 0
9896 # define gen_casesi(a, b, c, d, e) (0)
9897 # define CODE_FOR_casesi CODE_FOR_nothing
9898 #endif
9900 /* If the machine does not have a case insn that compares the bounds,
9901 this means extra overhead for dispatch tables, which raises the
9902 threshold for using them. */
9903 #ifndef CASE_VALUES_THRESHOLD
9904 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
9905 #endif /* CASE_VALUES_THRESHOLD */
9907 unsigned int
9908 case_values_threshold (void)
9910 return CASE_VALUES_THRESHOLD;
9913 /* Attempt to generate a casesi instruction. Returns 1 if successful,
9914 0 otherwise (i.e. if there is no casesi instruction). */
9916 try_casesi (tree index_type, tree index_expr, tree minval, tree range,
9917 rtx table_label ATTRIBUTE_UNUSED, rtx default_label,
9918 rtx fallback_label ATTRIBUTE_UNUSED)
9920 enum machine_mode index_mode = SImode;
9921 int index_bits = GET_MODE_BITSIZE (index_mode);
9922 rtx op1, op2, index;
9923 enum machine_mode op_mode;
9925 if (! HAVE_casesi)
9926 return 0;
9928 /* Convert the index to SImode. */
9929 if (GET_MODE_BITSIZE (TYPE_MODE (index_type)) > GET_MODE_BITSIZE (index_mode))
9931 enum machine_mode omode = TYPE_MODE (index_type);
9932 rtx rangertx = expand_normal (range);
9934 /* We must handle the endpoints in the original mode. */
9935 index_expr = build2 (MINUS_EXPR, index_type,
9936 index_expr, minval);
9937 minval = integer_zero_node;
9938 index = expand_normal (index_expr);
9939 if (default_label)
9940 emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
9941 omode, 1, default_label);
9942 /* Now we can safely truncate. */
9943 index = convert_to_mode (index_mode, index, 0);
9945 else
9947 if (TYPE_MODE (index_type) != index_mode)
9949 index_type = lang_hooks.types.type_for_size (index_bits, 0);
9950 index_expr = fold_convert (index_type, index_expr);
9953 index = expand_normal (index_expr);
9956 do_pending_stack_adjust ();
9958 op_mode = insn_data[(int) CODE_FOR_casesi].operand[0].mode;
9959 if (! (*insn_data[(int) CODE_FOR_casesi].operand[0].predicate)
9960 (index, op_mode))
9961 index = copy_to_mode_reg (op_mode, index);
9963 op1 = expand_normal (minval);
9965 op_mode = insn_data[(int) CODE_FOR_casesi].operand[1].mode;
9966 op1 = convert_modes (op_mode, TYPE_MODE (TREE_TYPE (minval)),
9967 op1, TYPE_UNSIGNED (TREE_TYPE (minval)));
9968 if (! (*insn_data[(int) CODE_FOR_casesi].operand[1].predicate)
9969 (op1, op_mode))
9970 op1 = copy_to_mode_reg (op_mode, op1);
9972 op2 = expand_normal (range);
9974 op_mode = insn_data[(int) CODE_FOR_casesi].operand[2].mode;
9975 op2 = convert_modes (op_mode, TYPE_MODE (TREE_TYPE (range)),
9976 op2, TYPE_UNSIGNED (TREE_TYPE (range)));
9977 if (! (*insn_data[(int) CODE_FOR_casesi].operand[2].predicate)
9978 (op2, op_mode))
9979 op2 = copy_to_mode_reg (op_mode, op2);
9981 emit_jump_insn (gen_casesi (index, op1, op2,
9982 table_label, !default_label
9983 ? fallback_label : default_label));
9984 return 1;
9987 /* Attempt to generate a tablejump instruction; same concept. */
9988 #ifndef HAVE_tablejump
9989 #define HAVE_tablejump 0
9990 #define gen_tablejump(x, y) (0)
9991 #endif
9993 /* Subroutine of the next function.
9995 INDEX is the value being switched on, with the lowest value
9996 in the table already subtracted.
9997 MODE is its expected mode (needed if INDEX is constant).
9998 RANGE is the length of the jump table.
9999 TABLE_LABEL is a CODE_LABEL rtx for the table itself.
10001 DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
10002 index value is out of range. */
10004 static void
10005 do_tablejump (rtx index, enum machine_mode mode, rtx range, rtx table_label,
10006 rtx default_label)
10008 rtx temp, vector;
10010 if (INTVAL (range) > cfun->cfg->max_jumptable_ents)
10011 cfun->cfg->max_jumptable_ents = INTVAL (range);
10013 /* Do an unsigned comparison (in the proper mode) between the index
10014 expression and the value which represents the length of the range.
10015 Since we just finished subtracting the lower bound of the range
10016 from the index expression, this comparison allows us to simultaneously
10017 check that the original index expression value is both greater than
10018 or equal to the minimum value of the range and less than or equal to
10019 the maximum value of the range. */
10021 if (default_label)
10022 emit_cmp_and_jump_insns (index, range, GTU, NULL_RTX, mode, 1,
10023 default_label);
10025 /* If index is in range, it must fit in Pmode.
10026 Convert to Pmode so we can index with it. */
10027 if (mode != Pmode)
10028 index = convert_to_mode (Pmode, index, 1);
10030 /* Don't let a MEM slip through, because then INDEX that comes
10031 out of PIC_CASE_VECTOR_ADDRESS won't be a valid address,
10032 and break_out_memory_refs will go to work on it and mess it up. */
10033 #ifdef PIC_CASE_VECTOR_ADDRESS
10034 if (flag_pic && !REG_P (index))
10035 index = copy_to_mode_reg (Pmode, index);
10036 #endif
10038 /* ??? The only correct use of CASE_VECTOR_MODE is the one inside the
10039 GET_MODE_SIZE, because this indicates how large insns are. The other
10040 uses should all be Pmode, because they are addresses. This code
10041 could fail if addresses and insns are not the same size. */
10042 index = gen_rtx_PLUS (Pmode,
10043 gen_rtx_MULT (Pmode, index,
10044 GEN_INT (GET_MODE_SIZE (CASE_VECTOR_MODE))),
10045 gen_rtx_LABEL_REF (Pmode, table_label));
10046 #ifdef PIC_CASE_VECTOR_ADDRESS
10047 if (flag_pic)
10048 index = PIC_CASE_VECTOR_ADDRESS (index);
10049 else
10050 #endif
10051 index = memory_address (CASE_VECTOR_MODE, index);
10052 temp = gen_reg_rtx (CASE_VECTOR_MODE);
10053 vector = gen_const_mem (CASE_VECTOR_MODE, index);
10054 convert_move (temp, vector, 0);
10056 emit_jump_insn (gen_tablejump (temp, table_label));
10058 /* If we are generating PIC code or if the table is PC-relative, the
10059 table and JUMP_INSN must be adjacent, so don't output a BARRIER. */
10060 if (! CASE_VECTOR_PC_RELATIVE && ! flag_pic)
10061 emit_barrier ();
10065 try_tablejump (tree index_type, tree index_expr, tree minval, tree range,
10066 rtx table_label, rtx default_label)
10068 rtx index;
10070 if (! HAVE_tablejump)
10071 return 0;
10073 index_expr = fold_build2 (MINUS_EXPR, index_type,
10074 fold_convert (index_type, index_expr),
10075 fold_convert (index_type, minval));
10076 index = expand_normal (index_expr);
10077 do_pending_stack_adjust ();
10079 do_tablejump (index, TYPE_MODE (index_type),
10080 convert_modes (TYPE_MODE (index_type),
10081 TYPE_MODE (TREE_TYPE (range)),
10082 expand_normal (range),
10083 TYPE_UNSIGNED (TREE_TYPE (range))),
10084 table_label, default_label);
10085 return 1;
10088 /* Nonzero if the mode is a valid vector mode for this architecture.
10089 This returns nonzero even if there is no hardware support for the
10090 vector mode, but we can emulate with narrower modes. */
10093 vector_mode_valid_p (enum machine_mode mode)
10095 enum mode_class mclass = GET_MODE_CLASS (mode);
10096 enum machine_mode innermode;
10098 /* Doh! What's going on? */
10099 if (mclass != MODE_VECTOR_INT
10100 && mclass != MODE_VECTOR_FLOAT
10101 && mclass != MODE_VECTOR_FRACT
10102 && mclass != MODE_VECTOR_UFRACT
10103 && mclass != MODE_VECTOR_ACCUM
10104 && mclass != MODE_VECTOR_UACCUM)
10105 return 0;
10107 /* Hardware support. Woo hoo! */
10108 if (targetm.vector_mode_supported_p (mode))
10109 return 1;
10111 innermode = GET_MODE_INNER (mode);
10113 /* We should probably return 1 if requesting V4DI and we have no DI,
10114 but we have V2DI, but this is probably very unlikely. */
10116 /* If we have support for the inner mode, we can safely emulate it.
10117 We may not have V2DI, but me can emulate with a pair of DIs. */
10118 return targetm.scalar_mode_supported_p (innermode);
10121 /* Return a CONST_VECTOR rtx for a VECTOR_CST tree. */
10122 static rtx
10123 const_vector_from_tree (tree exp)
10125 rtvec v;
10126 int units, i;
10127 tree link, elt;
10128 enum machine_mode inner, mode;
10130 mode = TYPE_MODE (TREE_TYPE (exp));
10132 if (initializer_zerop (exp))
10133 return CONST0_RTX (mode);
10135 units = GET_MODE_NUNITS (mode);
10136 inner = GET_MODE_INNER (mode);
10138 v = rtvec_alloc (units);
10140 link = TREE_VECTOR_CST_ELTS (exp);
10141 for (i = 0; link; link = TREE_CHAIN (link), ++i)
10143 elt = TREE_VALUE (link);
10145 if (TREE_CODE (elt) == REAL_CST)
10146 RTVEC_ELT (v, i) = CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (elt),
10147 inner);
10148 else if (TREE_CODE (elt) == FIXED_CST)
10149 RTVEC_ELT (v, i) = CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (elt),
10150 inner);
10151 else
10152 RTVEC_ELT (v, i) = immed_double_const (TREE_INT_CST_LOW (elt),
10153 TREE_INT_CST_HIGH (elt),
10154 inner);
10157 /* Initialize remaining elements to 0. */
10158 for (; i < units; ++i)
10159 RTVEC_ELT (v, i) = CONST0_RTX (inner);
10161 return gen_rtx_CONST_VECTOR (mode, v);
10163 #include "gt-expr.h"