* expr.c (expand_expr_addr_expr_1): Detect a user request for a
[official-gcc.git] / gcc / expr.c
blob0d88a21fded2f3ede9f1b9111ab2a05f90d75e21
1 /* Convert tree expression to rtl instructions, for GNU compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "machmode.h"
27 #include "rtl.h"
28 #include "tree.h"
29 #include "flags.h"
30 #include "regs.h"
31 #include "hard-reg-set.h"
32 #include "except.h"
33 #include "function.h"
34 #include "insn-config.h"
35 #include "insn-attr.h"
36 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
37 #include "expr.h"
38 #include "optabs.h"
39 #include "libfuncs.h"
40 #include "recog.h"
41 #include "reload.h"
42 #include "output.h"
43 #include "typeclass.h"
44 #include "toplev.h"
45 #include "langhooks.h"
46 #include "intl.h"
47 #include "tm_p.h"
48 #include "tree-iterator.h"
49 #include "tree-pass.h"
50 #include "tree-flow.h"
51 #include "target.h"
52 #include "common/common-target.h"
53 #include "timevar.h"
54 #include "df.h"
55 #include "diagnostic.h"
56 #include "ssaexpand.h"
57 #include "target-globals.h"
58 #include "params.h"
60 /* Decide whether a function's arguments should be processed
61 from first to last or from last to first.
63 They should if the stack and args grow in opposite directions, but
64 only if we have push insns. */
66 #ifdef PUSH_ROUNDING
68 #ifndef PUSH_ARGS_REVERSED
69 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
70 #define PUSH_ARGS_REVERSED /* If it's last to first. */
71 #endif
72 #endif
74 #endif
76 #ifndef STACK_PUSH_CODE
77 #ifdef STACK_GROWS_DOWNWARD
78 #define STACK_PUSH_CODE PRE_DEC
79 #else
80 #define STACK_PUSH_CODE PRE_INC
81 #endif
82 #endif
85 /* If this is nonzero, we do not bother generating VOLATILE
86 around volatile memory references, and we are willing to
87 output indirect addresses. If cse is to follow, we reject
88 indirect addresses so a useful potential cse is generated;
89 if it is used only once, instruction combination will produce
90 the same indirect address eventually. */
91 int cse_not_expected;
93 /* This structure is used by move_by_pieces to describe the move to
94 be performed. */
95 struct move_by_pieces_d
97 rtx to;
98 rtx to_addr;
99 int autinc_to;
100 int explicit_inc_to;
101 rtx from;
102 rtx from_addr;
103 int autinc_from;
104 int explicit_inc_from;
105 unsigned HOST_WIDE_INT len;
106 HOST_WIDE_INT offset;
107 int reverse;
110 /* This structure is used by store_by_pieces to describe the clear to
111 be performed. */
113 struct store_by_pieces_d
115 rtx to;
116 rtx to_addr;
117 int autinc_to;
118 int explicit_inc_to;
119 unsigned HOST_WIDE_INT len;
120 HOST_WIDE_INT offset;
121 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode);
122 void *constfundata;
123 int reverse;
126 static unsigned HOST_WIDE_INT move_by_pieces_ninsns (unsigned HOST_WIDE_INT,
127 unsigned int,
128 unsigned int);
129 static void move_by_pieces_1 (rtx (*) (rtx, ...), enum machine_mode,
130 struct move_by_pieces_d *);
131 static bool block_move_libcall_safe_for_call_parm (void);
132 static bool emit_block_move_via_movmem (rtx, rtx, rtx, unsigned, unsigned, HOST_WIDE_INT);
133 static tree emit_block_move_libcall_fn (int);
134 static void emit_block_move_via_loop (rtx, rtx, rtx, unsigned);
135 static rtx clear_by_pieces_1 (void *, HOST_WIDE_INT, enum machine_mode);
136 static void clear_by_pieces (rtx, unsigned HOST_WIDE_INT, unsigned int);
137 static void store_by_pieces_1 (struct store_by_pieces_d *, unsigned int);
138 static void store_by_pieces_2 (rtx (*) (rtx, ...), enum machine_mode,
139 struct store_by_pieces_d *);
140 static tree clear_storage_libcall_fn (int);
141 static rtx compress_float_constant (rtx, rtx);
142 static rtx get_subtarget (rtx);
143 static void store_constructor_field (rtx, unsigned HOST_WIDE_INT,
144 HOST_WIDE_INT, enum machine_mode,
145 tree, tree, int, alias_set_type);
146 static void store_constructor (tree, rtx, int, HOST_WIDE_INT);
147 static rtx store_field (rtx, HOST_WIDE_INT, HOST_WIDE_INT,
148 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT,
149 enum machine_mode,
150 tree, tree, alias_set_type, bool);
152 static unsigned HOST_WIDE_INT highest_pow2_factor_for_target (const_tree, const_tree);
154 static int is_aligning_offset (const_tree, const_tree);
155 static void expand_operands (tree, tree, rtx, rtx*, rtx*,
156 enum expand_modifier);
157 static rtx reduce_to_bit_field_precision (rtx, rtx, tree);
158 static rtx do_store_flag (sepops, rtx, enum machine_mode);
159 #ifdef PUSH_ROUNDING
160 static void emit_single_push_insn (enum machine_mode, rtx, tree);
161 #endif
162 static void do_tablejump (rtx, enum machine_mode, rtx, rtx, rtx);
163 static rtx const_vector_from_tree (tree);
164 static void write_complex_part (rtx, rtx, bool);
166 /* This macro is used to determine whether move_by_pieces should be called
167 to perform a structure copy. */
168 #ifndef MOVE_BY_PIECES_P
169 #define MOVE_BY_PIECES_P(SIZE, ALIGN) \
170 (move_by_pieces_ninsns (SIZE, ALIGN, MOVE_MAX_PIECES + 1) \
171 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
172 #endif
174 /* This macro is used to determine whether clear_by_pieces should be
175 called to clear storage. */
176 #ifndef CLEAR_BY_PIECES_P
177 #define CLEAR_BY_PIECES_P(SIZE, ALIGN) \
178 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
179 < (unsigned int) CLEAR_RATIO (optimize_insn_for_speed_p ()))
180 #endif
182 /* This macro is used to determine whether store_by_pieces should be
183 called to "memset" storage with byte values other than zero. */
184 #ifndef SET_BY_PIECES_P
185 #define SET_BY_PIECES_P(SIZE, ALIGN) \
186 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
187 < (unsigned int) SET_RATIO (optimize_insn_for_speed_p ()))
188 #endif
190 /* This macro is used to determine whether store_by_pieces should be
191 called to "memcpy" storage when the source is a constant string. */
192 #ifndef STORE_BY_PIECES_P
193 #define STORE_BY_PIECES_P(SIZE, ALIGN) \
194 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
195 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
196 #endif
198 /* SLOW_UNALIGNED_ACCESS is nonzero if unaligned accesses are very slow. */
200 #ifndef SLOW_UNALIGNED_ACCESS
201 #define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT
202 #endif
204 /* This is run to set up which modes can be used
205 directly in memory and to initialize the block move optab. It is run
206 at the beginning of compilation and when the target is reinitialized. */
208 void
209 init_expr_target (void)
211 rtx insn, pat;
212 enum machine_mode mode;
213 int num_clobbers;
214 rtx mem, mem1;
215 rtx reg;
217 /* Try indexing by frame ptr and try by stack ptr.
218 It is known that on the Convex the stack ptr isn't a valid index.
219 With luck, one or the other is valid on any machine. */
220 mem = gen_rtx_MEM (VOIDmode, stack_pointer_rtx);
221 mem1 = gen_rtx_MEM (VOIDmode, frame_pointer_rtx);
223 /* A scratch register we can modify in-place below to avoid
224 useless RTL allocations. */
225 reg = gen_rtx_REG (VOIDmode, -1);
227 insn = rtx_alloc (INSN);
228 pat = gen_rtx_SET (VOIDmode, NULL_RTX, NULL_RTX);
229 PATTERN (insn) = pat;
231 for (mode = VOIDmode; (int) mode < NUM_MACHINE_MODES;
232 mode = (enum machine_mode) ((int) mode + 1))
234 int regno;
236 direct_load[(int) mode] = direct_store[(int) mode] = 0;
237 PUT_MODE (mem, mode);
238 PUT_MODE (mem1, mode);
239 PUT_MODE (reg, mode);
241 /* See if there is some register that can be used in this mode and
242 directly loaded or stored from memory. */
244 if (mode != VOIDmode && mode != BLKmode)
245 for (regno = 0; regno < FIRST_PSEUDO_REGISTER
246 && (direct_load[(int) mode] == 0 || direct_store[(int) mode] == 0);
247 regno++)
249 if (! HARD_REGNO_MODE_OK (regno, mode))
250 continue;
252 SET_REGNO (reg, regno);
254 SET_SRC (pat) = mem;
255 SET_DEST (pat) = reg;
256 if (recog (pat, insn, &num_clobbers) >= 0)
257 direct_load[(int) mode] = 1;
259 SET_SRC (pat) = mem1;
260 SET_DEST (pat) = reg;
261 if (recog (pat, insn, &num_clobbers) >= 0)
262 direct_load[(int) mode] = 1;
264 SET_SRC (pat) = reg;
265 SET_DEST (pat) = mem;
266 if (recog (pat, insn, &num_clobbers) >= 0)
267 direct_store[(int) mode] = 1;
269 SET_SRC (pat) = reg;
270 SET_DEST (pat) = mem1;
271 if (recog (pat, insn, &num_clobbers) >= 0)
272 direct_store[(int) mode] = 1;
276 mem = gen_rtx_MEM (VOIDmode, gen_rtx_raw_REG (Pmode, 10000));
278 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
279 mode = GET_MODE_WIDER_MODE (mode))
281 enum machine_mode srcmode;
282 for (srcmode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); srcmode != mode;
283 srcmode = GET_MODE_WIDER_MODE (srcmode))
285 enum insn_code ic;
287 ic = can_extend_p (mode, srcmode, 0);
288 if (ic == CODE_FOR_nothing)
289 continue;
291 PUT_MODE (mem, srcmode);
293 if (insn_operand_matches (ic, 1, mem))
294 float_extend_from_mem[mode][srcmode] = true;
299 /* This is run at the start of compiling a function. */
301 void
302 init_expr (void)
304 memset (&crtl->expr, 0, sizeof (crtl->expr));
307 /* Copy data from FROM to TO, where the machine modes are not the same.
308 Both modes may be integer, or both may be floating, or both may be
309 fixed-point.
310 UNSIGNEDP should be nonzero if FROM is an unsigned type.
311 This causes zero-extension instead of sign-extension. */
313 void
314 convert_move (rtx to, rtx from, int unsignedp)
316 enum machine_mode to_mode = GET_MODE (to);
317 enum machine_mode from_mode = GET_MODE (from);
318 int to_real = SCALAR_FLOAT_MODE_P (to_mode);
319 int from_real = SCALAR_FLOAT_MODE_P (from_mode);
320 enum insn_code code;
321 rtx libcall;
323 /* rtx code for making an equivalent value. */
324 enum rtx_code equiv_code = (unsignedp < 0 ? UNKNOWN
325 : (unsignedp ? ZERO_EXTEND : SIGN_EXTEND));
328 gcc_assert (to_real == from_real);
329 gcc_assert (to_mode != BLKmode);
330 gcc_assert (from_mode != BLKmode);
332 /* If the source and destination are already the same, then there's
333 nothing to do. */
334 if (to == from)
335 return;
337 /* If FROM is a SUBREG that indicates that we have already done at least
338 the required extension, strip it. We don't handle such SUBREGs as
339 TO here. */
341 if (GET_CODE (from) == SUBREG && SUBREG_PROMOTED_VAR_P (from)
342 && (GET_MODE_PRECISION (GET_MODE (SUBREG_REG (from)))
343 >= GET_MODE_PRECISION (to_mode))
344 && SUBREG_PROMOTED_UNSIGNED_P (from) == unsignedp)
345 from = gen_lowpart (to_mode, from), from_mode = to_mode;
347 gcc_assert (GET_CODE (to) != SUBREG || !SUBREG_PROMOTED_VAR_P (to));
349 if (to_mode == from_mode
350 || (from_mode == VOIDmode && CONSTANT_P (from)))
352 emit_move_insn (to, from);
353 return;
356 if (VECTOR_MODE_P (to_mode) || VECTOR_MODE_P (from_mode))
358 gcc_assert (GET_MODE_BITSIZE (from_mode) == GET_MODE_BITSIZE (to_mode));
360 if (VECTOR_MODE_P (to_mode))
361 from = simplify_gen_subreg (to_mode, from, GET_MODE (from), 0);
362 else
363 to = simplify_gen_subreg (from_mode, to, GET_MODE (to), 0);
365 emit_move_insn (to, from);
366 return;
369 if (GET_CODE (to) == CONCAT && GET_CODE (from) == CONCAT)
371 convert_move (XEXP (to, 0), XEXP (from, 0), unsignedp);
372 convert_move (XEXP (to, 1), XEXP (from, 1), unsignedp);
373 return;
376 if (to_real)
378 rtx value, insns;
379 convert_optab tab;
381 gcc_assert ((GET_MODE_PRECISION (from_mode)
382 != GET_MODE_PRECISION (to_mode))
383 || (DECIMAL_FLOAT_MODE_P (from_mode)
384 != DECIMAL_FLOAT_MODE_P (to_mode)));
386 if (GET_MODE_PRECISION (from_mode) == GET_MODE_PRECISION (to_mode))
387 /* Conversion between decimal float and binary float, same size. */
388 tab = DECIMAL_FLOAT_MODE_P (from_mode) ? trunc_optab : sext_optab;
389 else if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode))
390 tab = sext_optab;
391 else
392 tab = trunc_optab;
394 /* Try converting directly if the insn is supported. */
396 code = convert_optab_handler (tab, to_mode, from_mode);
397 if (code != CODE_FOR_nothing)
399 emit_unop_insn (code, to, from,
400 tab == sext_optab ? FLOAT_EXTEND : FLOAT_TRUNCATE);
401 return;
404 /* Otherwise use a libcall. */
405 libcall = convert_optab_libfunc (tab, to_mode, from_mode);
407 /* Is this conversion implemented yet? */
408 gcc_assert (libcall);
410 start_sequence ();
411 value = emit_library_call_value (libcall, NULL_RTX, LCT_CONST, to_mode,
412 1, from, from_mode);
413 insns = get_insns ();
414 end_sequence ();
415 emit_libcall_block (insns, to, value,
416 tab == trunc_optab ? gen_rtx_FLOAT_TRUNCATE (to_mode,
417 from)
418 : gen_rtx_FLOAT_EXTEND (to_mode, from));
419 return;
422 /* Handle pointer conversion. */ /* SPEE 900220. */
423 /* Targets are expected to provide conversion insns between PxImode and
424 xImode for all MODE_PARTIAL_INT modes they use, but no others. */
425 if (GET_MODE_CLASS (to_mode) == MODE_PARTIAL_INT)
427 enum machine_mode full_mode
428 = smallest_mode_for_size (GET_MODE_BITSIZE (to_mode), MODE_INT);
430 gcc_assert (convert_optab_handler (trunc_optab, to_mode, full_mode)
431 != CODE_FOR_nothing);
433 if (full_mode != from_mode)
434 from = convert_to_mode (full_mode, from, unsignedp);
435 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, full_mode),
436 to, from, UNKNOWN);
437 return;
439 if (GET_MODE_CLASS (from_mode) == MODE_PARTIAL_INT)
441 rtx new_from;
442 enum machine_mode full_mode
443 = smallest_mode_for_size (GET_MODE_BITSIZE (from_mode), MODE_INT);
445 gcc_assert (convert_optab_handler (sext_optab, full_mode, from_mode)
446 != CODE_FOR_nothing);
448 if (to_mode == full_mode)
450 emit_unop_insn (convert_optab_handler (sext_optab, full_mode,
451 from_mode),
452 to, from, UNKNOWN);
453 return;
456 new_from = gen_reg_rtx (full_mode);
457 emit_unop_insn (convert_optab_handler (sext_optab, full_mode, from_mode),
458 new_from, from, UNKNOWN);
460 /* else proceed to integer conversions below. */
461 from_mode = full_mode;
462 from = new_from;
465 /* Make sure both are fixed-point modes or both are not. */
466 gcc_assert (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode) ==
467 ALL_SCALAR_FIXED_POINT_MODE_P (to_mode));
468 if (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode))
470 /* If we widen from_mode to to_mode and they are in the same class,
471 we won't saturate the result.
472 Otherwise, always saturate the result to play safe. */
473 if (GET_MODE_CLASS (from_mode) == GET_MODE_CLASS (to_mode)
474 && GET_MODE_SIZE (from_mode) < GET_MODE_SIZE (to_mode))
475 expand_fixed_convert (to, from, 0, 0);
476 else
477 expand_fixed_convert (to, from, 0, 1);
478 return;
481 /* Now both modes are integers. */
483 /* Handle expanding beyond a word. */
484 if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode)
485 && GET_MODE_PRECISION (to_mode) > BITS_PER_WORD)
487 rtx insns;
488 rtx lowpart;
489 rtx fill_value;
490 rtx lowfrom;
491 int i;
492 enum machine_mode lowpart_mode;
493 int nwords = CEIL (GET_MODE_SIZE (to_mode), UNITS_PER_WORD);
495 /* Try converting directly if the insn is supported. */
496 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
497 != CODE_FOR_nothing)
499 /* If FROM is a SUBREG, put it into a register. Do this
500 so that we always generate the same set of insns for
501 better cse'ing; if an intermediate assignment occurred,
502 we won't be doing the operation directly on the SUBREG. */
503 if (optimize > 0 && GET_CODE (from) == SUBREG)
504 from = force_reg (from_mode, from);
505 emit_unop_insn (code, to, from, equiv_code);
506 return;
508 /* Next, try converting via full word. */
509 else if (GET_MODE_PRECISION (from_mode) < BITS_PER_WORD
510 && ((code = can_extend_p (to_mode, word_mode, unsignedp))
511 != CODE_FOR_nothing))
513 rtx word_to = gen_reg_rtx (word_mode);
514 if (REG_P (to))
516 if (reg_overlap_mentioned_p (to, from))
517 from = force_reg (from_mode, from);
518 emit_clobber (to);
520 convert_move (word_to, from, unsignedp);
521 emit_unop_insn (code, to, word_to, equiv_code);
522 return;
525 /* No special multiword conversion insn; do it by hand. */
526 start_sequence ();
528 /* Since we will turn this into a no conflict block, we must ensure
529 that the source does not overlap the target. */
531 if (reg_overlap_mentioned_p (to, from))
532 from = force_reg (from_mode, from);
534 /* Get a copy of FROM widened to a word, if necessary. */
535 if (GET_MODE_PRECISION (from_mode) < BITS_PER_WORD)
536 lowpart_mode = word_mode;
537 else
538 lowpart_mode = from_mode;
540 lowfrom = convert_to_mode (lowpart_mode, from, unsignedp);
542 lowpart = gen_lowpart (lowpart_mode, to);
543 emit_move_insn (lowpart, lowfrom);
545 /* Compute the value to put in each remaining word. */
546 if (unsignedp)
547 fill_value = const0_rtx;
548 else
549 fill_value = emit_store_flag (gen_reg_rtx (word_mode),
550 LT, lowfrom, const0_rtx,
551 VOIDmode, 0, -1);
553 /* Fill the remaining words. */
554 for (i = GET_MODE_SIZE (lowpart_mode) / UNITS_PER_WORD; i < nwords; i++)
556 int index = (WORDS_BIG_ENDIAN ? nwords - i - 1 : i);
557 rtx subword = operand_subword (to, index, 1, to_mode);
559 gcc_assert (subword);
561 if (fill_value != subword)
562 emit_move_insn (subword, fill_value);
565 insns = get_insns ();
566 end_sequence ();
568 emit_insn (insns);
569 return;
572 /* Truncating multi-word to a word or less. */
573 if (GET_MODE_PRECISION (from_mode) > BITS_PER_WORD
574 && GET_MODE_PRECISION (to_mode) <= BITS_PER_WORD)
576 if (!((MEM_P (from)
577 && ! MEM_VOLATILE_P (from)
578 && direct_load[(int) to_mode]
579 && ! mode_dependent_address_p (XEXP (from, 0)))
580 || REG_P (from)
581 || GET_CODE (from) == SUBREG))
582 from = force_reg (from_mode, from);
583 convert_move (to, gen_lowpart (word_mode, from), 0);
584 return;
587 /* Now follow all the conversions between integers
588 no more than a word long. */
590 /* For truncation, usually we can just refer to FROM in a narrower mode. */
591 if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode)
592 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode, from_mode))
594 if (!((MEM_P (from)
595 && ! MEM_VOLATILE_P (from)
596 && direct_load[(int) to_mode]
597 && ! mode_dependent_address_p (XEXP (from, 0)))
598 || REG_P (from)
599 || GET_CODE (from) == SUBREG))
600 from = force_reg (from_mode, from);
601 if (REG_P (from) && REGNO (from) < FIRST_PSEUDO_REGISTER
602 && ! HARD_REGNO_MODE_OK (REGNO (from), to_mode))
603 from = copy_to_reg (from);
604 emit_move_insn (to, gen_lowpart (to_mode, from));
605 return;
608 /* Handle extension. */
609 if (GET_MODE_PRECISION (to_mode) > GET_MODE_PRECISION (from_mode))
611 /* Convert directly if that works. */
612 if ((code = can_extend_p (to_mode, from_mode, unsignedp))
613 != CODE_FOR_nothing)
615 emit_unop_insn (code, to, from, equiv_code);
616 return;
618 else
620 enum machine_mode intermediate;
621 rtx tmp;
622 int shift_amount;
624 /* Search for a mode to convert via. */
625 for (intermediate = from_mode; intermediate != VOIDmode;
626 intermediate = GET_MODE_WIDER_MODE (intermediate))
627 if (((can_extend_p (to_mode, intermediate, unsignedp)
628 != CODE_FOR_nothing)
629 || (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (intermediate)
630 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode, intermediate)))
631 && (can_extend_p (intermediate, from_mode, unsignedp)
632 != CODE_FOR_nothing))
634 convert_move (to, convert_to_mode (intermediate, from,
635 unsignedp), unsignedp);
636 return;
639 /* No suitable intermediate mode.
640 Generate what we need with shifts. */
641 shift_amount = (GET_MODE_PRECISION (to_mode)
642 - GET_MODE_PRECISION (from_mode));
643 from = gen_lowpart (to_mode, force_reg (from_mode, from));
644 tmp = expand_shift (LSHIFT_EXPR, to_mode, from, shift_amount,
645 to, unsignedp);
646 tmp = expand_shift (RSHIFT_EXPR, to_mode, tmp, shift_amount,
647 to, unsignedp);
648 if (tmp != to)
649 emit_move_insn (to, tmp);
650 return;
654 /* Support special truncate insns for certain modes. */
655 if (convert_optab_handler (trunc_optab, to_mode,
656 from_mode) != CODE_FOR_nothing)
658 emit_unop_insn (convert_optab_handler (trunc_optab, to_mode, from_mode),
659 to, from, UNKNOWN);
660 return;
663 /* Handle truncation of volatile memrefs, and so on;
664 the things that couldn't be truncated directly,
665 and for which there was no special instruction.
667 ??? Code above formerly short-circuited this, for most integer
668 mode pairs, with a force_reg in from_mode followed by a recursive
669 call to this routine. Appears always to have been wrong. */
670 if (GET_MODE_PRECISION (to_mode) < GET_MODE_PRECISION (from_mode))
672 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from));
673 emit_move_insn (to, temp);
674 return;
677 /* Mode combination is not recognized. */
678 gcc_unreachable ();
681 /* Return an rtx for a value that would result
682 from converting X to mode MODE.
683 Both X and MODE may be floating, or both integer.
684 UNSIGNEDP is nonzero if X is an unsigned value.
685 This can be done by referring to a part of X in place
686 or by copying to a new temporary with conversion. */
689 convert_to_mode (enum machine_mode mode, rtx x, int unsignedp)
691 return convert_modes (mode, VOIDmode, x, unsignedp);
694 /* Return an rtx for a value that would result
695 from converting X from mode OLDMODE to mode MODE.
696 Both modes may be floating, or both integer.
697 UNSIGNEDP is nonzero if X is an unsigned value.
699 This can be done by referring to a part of X in place
700 or by copying to a new temporary with conversion.
702 You can give VOIDmode for OLDMODE, if you are sure X has a nonvoid mode. */
705 convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int unsignedp)
707 rtx temp;
709 /* If FROM is a SUBREG that indicates that we have already done at least
710 the required extension, strip it. */
712 if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
713 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) >= GET_MODE_SIZE (mode)
714 && SUBREG_PROMOTED_UNSIGNED_P (x) == unsignedp)
715 x = gen_lowpart (mode, x);
717 if (GET_MODE (x) != VOIDmode)
718 oldmode = GET_MODE (x);
720 if (mode == oldmode)
721 return x;
723 /* There is one case that we must handle specially: If we are converting
724 a CONST_INT into a mode whose size is twice HOST_BITS_PER_WIDE_INT and
725 we are to interpret the constant as unsigned, gen_lowpart will do
726 the wrong if the constant appears negative. What we want to do is
727 make the high-order word of the constant zero, not all ones. */
729 if (unsignedp && GET_MODE_CLASS (mode) == MODE_INT
730 && GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT
731 && CONST_INT_P (x) && INTVAL (x) < 0)
733 double_int val = uhwi_to_double_int (INTVAL (x));
735 /* We need to zero extend VAL. */
736 if (oldmode != VOIDmode)
737 val = double_int_zext (val, GET_MODE_BITSIZE (oldmode));
739 return immed_double_int_const (val, mode);
742 /* We can do this with a gen_lowpart if both desired and current modes
743 are integer, and this is either a constant integer, a register, or a
744 non-volatile MEM. Except for the constant case where MODE is no
745 wider than HOST_BITS_PER_WIDE_INT, we must be narrowing the operand. */
747 if ((CONST_INT_P (x)
748 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT)
749 || (GET_MODE_CLASS (mode) == MODE_INT
750 && GET_MODE_CLASS (oldmode) == MODE_INT
751 && (GET_CODE (x) == CONST_DOUBLE
752 || (GET_MODE_PRECISION (mode) <= GET_MODE_PRECISION (oldmode)
753 && ((MEM_P (x) && ! MEM_VOLATILE_P (x)
754 && direct_load[(int) mode])
755 || (REG_P (x)
756 && (! HARD_REGISTER_P (x)
757 || HARD_REGNO_MODE_OK (REGNO (x), mode))
758 && TRULY_NOOP_TRUNCATION_MODES_P (mode,
759 GET_MODE (x))))))))
761 /* ?? If we don't know OLDMODE, we have to assume here that
762 X does not need sign- or zero-extension. This may not be
763 the case, but it's the best we can do. */
764 if (CONST_INT_P (x) && oldmode != VOIDmode
765 && GET_MODE_PRECISION (mode) > GET_MODE_PRECISION (oldmode))
767 HOST_WIDE_INT val = INTVAL (x);
769 /* We must sign or zero-extend in this case. Start by
770 zero-extending, then sign extend if we need to. */
771 val &= GET_MODE_MASK (oldmode);
772 if (! unsignedp
773 && val_signbit_known_set_p (oldmode, val))
774 val |= ~GET_MODE_MASK (oldmode);
776 return gen_int_mode (val, mode);
779 return gen_lowpart (mode, x);
782 /* Converting from integer constant into mode is always equivalent to an
783 subreg operation. */
784 if (VECTOR_MODE_P (mode) && GET_MODE (x) == VOIDmode)
786 gcc_assert (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (oldmode));
787 return simplify_gen_subreg (mode, x, oldmode, 0);
790 temp = gen_reg_rtx (mode);
791 convert_move (temp, x, unsignedp);
792 return temp;
795 /* Return the largest alignment we can use for doing a move (or store)
796 of MAX_PIECES. ALIGN is the largest alignment we could use. */
798 static unsigned int
799 alignment_for_piecewise_move (unsigned int max_pieces, unsigned int align)
801 enum machine_mode tmode;
803 tmode = mode_for_size (max_pieces * BITS_PER_UNIT, MODE_INT, 1);
804 if (align >= GET_MODE_ALIGNMENT (tmode))
805 align = GET_MODE_ALIGNMENT (tmode);
806 else
808 enum machine_mode tmode, xmode;
810 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
811 tmode != VOIDmode;
812 xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
813 if (GET_MODE_SIZE (tmode) > max_pieces
814 || SLOW_UNALIGNED_ACCESS (tmode, align))
815 break;
817 align = MAX (align, GET_MODE_ALIGNMENT (xmode));
820 return align;
823 /* Return the widest integer mode no wider than SIZE. If no such mode
824 can be found, return VOIDmode. */
826 static enum machine_mode
827 widest_int_mode_for_size (unsigned int size)
829 enum machine_mode tmode, mode = VOIDmode;
831 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
832 tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
833 if (GET_MODE_SIZE (tmode) < size)
834 mode = tmode;
836 return mode;
839 /* STORE_MAX_PIECES is the number of bytes at a time that we can
840 store efficiently. Due to internal GCC limitations, this is
841 MOVE_MAX_PIECES limited by the number of bytes GCC can represent
842 for an immediate constant. */
844 #define STORE_MAX_PIECES MIN (MOVE_MAX_PIECES, 2 * sizeof (HOST_WIDE_INT))
846 /* Determine whether the LEN bytes can be moved by using several move
847 instructions. Return nonzero if a call to move_by_pieces should
848 succeed. */
851 can_move_by_pieces (unsigned HOST_WIDE_INT len,
852 unsigned int align ATTRIBUTE_UNUSED)
854 return MOVE_BY_PIECES_P (len, align);
857 /* Generate several move instructions to copy LEN bytes from block FROM to
858 block TO. (These are MEM rtx's with BLKmode).
860 If PUSH_ROUNDING is defined and TO is NULL, emit_single_push_insn is
861 used to push FROM to the stack.
863 ALIGN is maximum stack alignment we can assume.
865 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
866 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
867 stpcpy. */
870 move_by_pieces (rtx to, rtx from, unsigned HOST_WIDE_INT len,
871 unsigned int align, int endp)
873 struct move_by_pieces_d data;
874 enum machine_mode to_addr_mode, from_addr_mode
875 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (from));
876 rtx to_addr, from_addr = XEXP (from, 0);
877 unsigned int max_size = MOVE_MAX_PIECES + 1;
878 enum insn_code icode;
880 align = MIN (to ? MEM_ALIGN (to) : align, MEM_ALIGN (from));
882 data.offset = 0;
883 data.from_addr = from_addr;
884 if (to)
886 to_addr_mode = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to));
887 to_addr = XEXP (to, 0);
888 data.to = to;
889 data.autinc_to
890 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
891 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
892 data.reverse
893 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
895 else
897 to_addr_mode = VOIDmode;
898 to_addr = NULL_RTX;
899 data.to = NULL_RTX;
900 data.autinc_to = 1;
901 #ifdef STACK_GROWS_DOWNWARD
902 data.reverse = 1;
903 #else
904 data.reverse = 0;
905 #endif
907 data.to_addr = to_addr;
908 data.from = from;
909 data.autinc_from
910 = (GET_CODE (from_addr) == PRE_INC || GET_CODE (from_addr) == PRE_DEC
911 || GET_CODE (from_addr) == POST_INC
912 || GET_CODE (from_addr) == POST_DEC);
914 data.explicit_inc_from = 0;
915 data.explicit_inc_to = 0;
916 if (data.reverse) data.offset = len;
917 data.len = len;
919 /* If copying requires more than two move insns,
920 copy addresses to registers (to make displacements shorter)
921 and use post-increment if available. */
922 if (!(data.autinc_from && data.autinc_to)
923 && move_by_pieces_ninsns (len, align, max_size) > 2)
925 /* Find the mode of the largest move...
926 MODE might not be used depending on the definitions of the
927 USE_* macros below. */
928 enum machine_mode mode ATTRIBUTE_UNUSED
929 = widest_int_mode_for_size (max_size);
931 if (USE_LOAD_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_from)
933 data.from_addr = copy_to_mode_reg (from_addr_mode,
934 plus_constant (from_addr, len));
935 data.autinc_from = 1;
936 data.explicit_inc_from = -1;
938 if (USE_LOAD_POST_INCREMENT (mode) && ! data.autinc_from)
940 data.from_addr = copy_to_mode_reg (from_addr_mode, from_addr);
941 data.autinc_from = 1;
942 data.explicit_inc_from = 1;
944 if (!data.autinc_from && CONSTANT_P (from_addr))
945 data.from_addr = copy_to_mode_reg (from_addr_mode, from_addr);
946 if (USE_STORE_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_to)
948 data.to_addr = copy_to_mode_reg (to_addr_mode,
949 plus_constant (to_addr, len));
950 data.autinc_to = 1;
951 data.explicit_inc_to = -1;
953 if (USE_STORE_POST_INCREMENT (mode) && ! data.reverse && ! data.autinc_to)
955 data.to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
956 data.autinc_to = 1;
957 data.explicit_inc_to = 1;
959 if (!data.autinc_to && CONSTANT_P (to_addr))
960 data.to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
963 align = alignment_for_piecewise_move (MOVE_MAX_PIECES, align);
965 /* First move what we can in the largest integer mode, then go to
966 successively smaller modes. */
968 while (max_size > 1)
970 enum machine_mode mode = widest_int_mode_for_size (max_size);
972 if (mode == VOIDmode)
973 break;
975 icode = optab_handler (mov_optab, mode);
976 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
977 move_by_pieces_1 (GEN_FCN (icode), mode, &data);
979 max_size = GET_MODE_SIZE (mode);
982 /* The code above should have handled everything. */
983 gcc_assert (!data.len);
985 if (endp)
987 rtx to1;
989 gcc_assert (!data.reverse);
990 if (data.autinc_to)
992 if (endp == 2)
994 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
995 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
996 else
997 data.to_addr = copy_to_mode_reg (to_addr_mode,
998 plus_constant (data.to_addr,
999 -1));
1001 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
1002 data.offset);
1004 else
1006 if (endp == 2)
1007 --data.offset;
1008 to1 = adjust_address (data.to, QImode, data.offset);
1010 return to1;
1012 else
1013 return data.to;
1016 /* Return number of insns required to move L bytes by pieces.
1017 ALIGN (in bits) is maximum alignment we can assume. */
1019 static unsigned HOST_WIDE_INT
1020 move_by_pieces_ninsns (unsigned HOST_WIDE_INT l, unsigned int align,
1021 unsigned int max_size)
1023 unsigned HOST_WIDE_INT n_insns = 0;
1025 align = alignment_for_piecewise_move (MOVE_MAX_PIECES, align);
1027 while (max_size > 1)
1029 enum machine_mode mode;
1030 enum insn_code icode;
1032 mode = widest_int_mode_for_size (max_size);
1034 if (mode == VOIDmode)
1035 break;
1037 icode = optab_handler (mov_optab, mode);
1038 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
1039 n_insns += l / GET_MODE_SIZE (mode), l %= GET_MODE_SIZE (mode);
1041 max_size = GET_MODE_SIZE (mode);
1044 gcc_assert (!l);
1045 return n_insns;
1048 /* Subroutine of move_by_pieces. Move as many bytes as appropriate
1049 with move instructions for mode MODE. GENFUN is the gen_... function
1050 to make a move insn for that mode. DATA has all the other info. */
1052 static void
1053 move_by_pieces_1 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
1054 struct move_by_pieces_d *data)
1056 unsigned int size = GET_MODE_SIZE (mode);
1057 rtx to1 = NULL_RTX, from1;
1059 while (data->len >= size)
1061 if (data->reverse)
1062 data->offset -= size;
1064 if (data->to)
1066 if (data->autinc_to)
1067 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
1068 data->offset);
1069 else
1070 to1 = adjust_address (data->to, mode, data->offset);
1073 if (data->autinc_from)
1074 from1 = adjust_automodify_address (data->from, mode, data->from_addr,
1075 data->offset);
1076 else
1077 from1 = adjust_address (data->from, mode, data->offset);
1079 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
1080 emit_insn (gen_add2_insn (data->to_addr,
1081 GEN_INT (-(HOST_WIDE_INT)size)));
1082 if (HAVE_PRE_DECREMENT && data->explicit_inc_from < 0)
1083 emit_insn (gen_add2_insn (data->from_addr,
1084 GEN_INT (-(HOST_WIDE_INT)size)));
1086 if (data->to)
1087 emit_insn ((*genfun) (to1, from1));
1088 else
1090 #ifdef PUSH_ROUNDING
1091 emit_single_push_insn (mode, from1, NULL);
1092 #else
1093 gcc_unreachable ();
1094 #endif
1097 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
1098 emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
1099 if (HAVE_POST_INCREMENT && data->explicit_inc_from > 0)
1100 emit_insn (gen_add2_insn (data->from_addr, GEN_INT (size)));
1102 if (! data->reverse)
1103 data->offset += size;
1105 data->len -= size;
1109 /* Emit code to move a block Y to a block X. This may be done with
1110 string-move instructions, with multiple scalar move instructions,
1111 or with a library call.
1113 Both X and Y must be MEM rtx's (perhaps inside VOLATILE) with mode BLKmode.
1114 SIZE is an rtx that says how long they are.
1115 ALIGN is the maximum alignment we can assume they have.
1116 METHOD describes what kind of copy this is, and what mechanisms may be used.
1118 Return the address of the new block, if memcpy is called and returns it,
1119 0 otherwise. */
1122 emit_block_move_hints (rtx x, rtx y, rtx size, enum block_op_methods method,
1123 unsigned int expected_align, HOST_WIDE_INT expected_size)
1125 bool may_use_call;
1126 rtx retval = 0;
1127 unsigned int align;
1129 gcc_assert (size);
1130 if (CONST_INT_P (size)
1131 && INTVAL (size) == 0)
1132 return 0;
1134 switch (method)
1136 case BLOCK_OP_NORMAL:
1137 case BLOCK_OP_TAILCALL:
1138 may_use_call = true;
1139 break;
1141 case BLOCK_OP_CALL_PARM:
1142 may_use_call = block_move_libcall_safe_for_call_parm ();
1144 /* Make inhibit_defer_pop nonzero around the library call
1145 to force it to pop the arguments right away. */
1146 NO_DEFER_POP;
1147 break;
1149 case BLOCK_OP_NO_LIBCALL:
1150 may_use_call = false;
1151 break;
1153 default:
1154 gcc_unreachable ();
1157 gcc_assert (MEM_P (x) && MEM_P (y));
1158 align = MIN (MEM_ALIGN (x), MEM_ALIGN (y));
1159 gcc_assert (align >= BITS_PER_UNIT);
1161 /* Make sure we've got BLKmode addresses; store_one_arg can decide that
1162 block copy is more efficient for other large modes, e.g. DCmode. */
1163 x = adjust_address (x, BLKmode, 0);
1164 y = adjust_address (y, BLKmode, 0);
1166 /* Set MEM_SIZE as appropriate for this block copy. The main place this
1167 can be incorrect is coming from __builtin_memcpy. */
1168 if (CONST_INT_P (size))
1170 x = shallow_copy_rtx (x);
1171 y = shallow_copy_rtx (y);
1172 set_mem_size (x, INTVAL (size));
1173 set_mem_size (y, INTVAL (size));
1176 if (CONST_INT_P (size) && MOVE_BY_PIECES_P (INTVAL (size), align))
1177 move_by_pieces (x, y, INTVAL (size), align, 0);
1178 else if (emit_block_move_via_movmem (x, y, size, align,
1179 expected_align, expected_size))
1181 else if (may_use_call
1182 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (x))
1183 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (y)))
1185 /* Since x and y are passed to a libcall, mark the corresponding
1186 tree EXPR as addressable. */
1187 tree y_expr = MEM_EXPR (y);
1188 tree x_expr = MEM_EXPR (x);
1189 if (y_expr)
1190 mark_addressable (y_expr);
1191 if (x_expr)
1192 mark_addressable (x_expr);
1193 retval = emit_block_move_via_libcall (x, y, size,
1194 method == BLOCK_OP_TAILCALL);
1197 else
1198 emit_block_move_via_loop (x, y, size, align);
1200 if (method == BLOCK_OP_CALL_PARM)
1201 OK_DEFER_POP;
1203 return retval;
1207 emit_block_move (rtx x, rtx y, rtx size, enum block_op_methods method)
1209 return emit_block_move_hints (x, y, size, method, 0, -1);
1212 /* A subroutine of emit_block_move. Returns true if calling the
1213 block move libcall will not clobber any parameters which may have
1214 already been placed on the stack. */
1216 static bool
1217 block_move_libcall_safe_for_call_parm (void)
1219 #if defined (REG_PARM_STACK_SPACE)
1220 tree fn;
1221 #endif
1223 /* If arguments are pushed on the stack, then they're safe. */
1224 if (PUSH_ARGS)
1225 return true;
1227 /* If registers go on the stack anyway, any argument is sure to clobber
1228 an outgoing argument. */
1229 #if defined (REG_PARM_STACK_SPACE)
1230 fn = emit_block_move_libcall_fn (false);
1231 /* Avoid set but not used warning if *REG_PARM_STACK_SPACE doesn't
1232 depend on its argument. */
1233 (void) fn;
1234 if (OUTGOING_REG_PARM_STACK_SPACE ((!fn ? NULL_TREE : TREE_TYPE (fn)))
1235 && REG_PARM_STACK_SPACE (fn) != 0)
1236 return false;
1237 #endif
1239 /* If any argument goes in memory, then it might clobber an outgoing
1240 argument. */
1242 CUMULATIVE_ARGS args_so_far_v;
1243 cumulative_args_t args_so_far;
1244 tree fn, arg;
1246 fn = emit_block_move_libcall_fn (false);
1247 INIT_CUMULATIVE_ARGS (args_so_far_v, TREE_TYPE (fn), NULL_RTX, 0, 3);
1248 args_so_far = pack_cumulative_args (&args_so_far_v);
1250 arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
1251 for ( ; arg != void_list_node ; arg = TREE_CHAIN (arg))
1253 enum machine_mode mode = TYPE_MODE (TREE_VALUE (arg));
1254 rtx tmp = targetm.calls.function_arg (args_so_far, mode,
1255 NULL_TREE, true);
1256 if (!tmp || !REG_P (tmp))
1257 return false;
1258 if (targetm.calls.arg_partial_bytes (args_so_far, mode, NULL, 1))
1259 return false;
1260 targetm.calls.function_arg_advance (args_so_far, mode,
1261 NULL_TREE, true);
1264 return true;
1267 /* A subroutine of emit_block_move. Expand a movmem pattern;
1268 return true if successful. */
1270 static bool
1271 emit_block_move_via_movmem (rtx x, rtx y, rtx size, unsigned int align,
1272 unsigned int expected_align, HOST_WIDE_INT expected_size)
1274 int save_volatile_ok = volatile_ok;
1275 enum machine_mode mode;
1277 if (expected_align < align)
1278 expected_align = align;
1280 /* Since this is a move insn, we don't care about volatility. */
1281 volatile_ok = 1;
1283 /* Try the most limited insn first, because there's no point
1284 including more than one in the machine description unless
1285 the more limited one has some advantage. */
1287 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
1288 mode = GET_MODE_WIDER_MODE (mode))
1290 enum insn_code code = direct_optab_handler (movmem_optab, mode);
1292 if (code != CODE_FOR_nothing
1293 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
1294 here because if SIZE is less than the mode mask, as it is
1295 returned by the macro, it will definitely be less than the
1296 actual mode mask. */
1297 && ((CONST_INT_P (size)
1298 && ((unsigned HOST_WIDE_INT) INTVAL (size)
1299 <= (GET_MODE_MASK (mode) >> 1)))
1300 || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD))
1302 struct expand_operand ops[6];
1303 unsigned int nops;
1305 /* ??? When called via emit_block_move_for_call, it'd be
1306 nice if there were some way to inform the backend, so
1307 that it doesn't fail the expansion because it thinks
1308 emitting the libcall would be more efficient. */
1309 nops = insn_data[(int) code].n_generator_args;
1310 gcc_assert (nops == 4 || nops == 6);
1312 create_fixed_operand (&ops[0], x);
1313 create_fixed_operand (&ops[1], y);
1314 /* The check above guarantees that this size conversion is valid. */
1315 create_convert_operand_to (&ops[2], size, mode, true);
1316 create_integer_operand (&ops[3], align / BITS_PER_UNIT);
1317 if (nops == 6)
1319 create_integer_operand (&ops[4], expected_align / BITS_PER_UNIT);
1320 create_integer_operand (&ops[5], expected_size);
1322 if (maybe_expand_insn (code, nops, ops))
1324 volatile_ok = save_volatile_ok;
1325 return true;
1330 volatile_ok = save_volatile_ok;
1331 return false;
1334 /* A subroutine of emit_block_move. Expand a call to memcpy.
1335 Return the return value from memcpy, 0 otherwise. */
1338 emit_block_move_via_libcall (rtx dst, rtx src, rtx size, bool tailcall)
1340 rtx dst_addr, src_addr;
1341 tree call_expr, fn, src_tree, dst_tree, size_tree;
1342 enum machine_mode size_mode;
1343 rtx retval;
1345 /* Emit code to copy the addresses of DST and SRC and SIZE into new
1346 pseudos. We can then place those new pseudos into a VAR_DECL and
1347 use them later. */
1349 dst_addr = copy_to_mode_reg (Pmode, XEXP (dst, 0));
1350 src_addr = copy_to_mode_reg (Pmode, XEXP (src, 0));
1352 dst_addr = convert_memory_address (ptr_mode, dst_addr);
1353 src_addr = convert_memory_address (ptr_mode, src_addr);
1355 dst_tree = make_tree (ptr_type_node, dst_addr);
1356 src_tree = make_tree (ptr_type_node, src_addr);
1358 size_mode = TYPE_MODE (sizetype);
1360 size = convert_to_mode (size_mode, size, 1);
1361 size = copy_to_mode_reg (size_mode, size);
1363 /* It is incorrect to use the libcall calling conventions to call
1364 memcpy in this context. This could be a user call to memcpy and
1365 the user may wish to examine the return value from memcpy. For
1366 targets where libcalls and normal calls have different conventions
1367 for returning pointers, we could end up generating incorrect code. */
1369 size_tree = make_tree (sizetype, size);
1371 fn = emit_block_move_libcall_fn (true);
1372 call_expr = build_call_expr (fn, 3, dst_tree, src_tree, size_tree);
1373 CALL_EXPR_TAILCALL (call_expr) = tailcall;
1375 retval = expand_normal (call_expr);
1377 return retval;
1380 /* A subroutine of emit_block_move_via_libcall. Create the tree node
1381 for the function we use for block copies. The first time FOR_CALL
1382 is true, we call assemble_external. */
1384 static GTY(()) tree block_move_fn;
1386 void
1387 init_block_move_fn (const char *asmspec)
1389 if (!block_move_fn)
1391 tree args, fn;
1393 fn = get_identifier ("memcpy");
1394 args = build_function_type_list (ptr_type_node, ptr_type_node,
1395 const_ptr_type_node, sizetype,
1396 NULL_TREE);
1398 fn = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, fn, args);
1399 DECL_EXTERNAL (fn) = 1;
1400 TREE_PUBLIC (fn) = 1;
1401 DECL_ARTIFICIAL (fn) = 1;
1402 TREE_NOTHROW (fn) = 1;
1403 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
1404 DECL_VISIBILITY_SPECIFIED (fn) = 1;
1406 block_move_fn = fn;
1409 if (asmspec)
1410 set_user_assembler_name (block_move_fn, asmspec);
1413 static tree
1414 emit_block_move_libcall_fn (int for_call)
1416 static bool emitted_extern;
1418 if (!block_move_fn)
1419 init_block_move_fn (NULL);
1421 if (for_call && !emitted_extern)
1423 emitted_extern = true;
1424 make_decl_rtl (block_move_fn);
1425 assemble_external (block_move_fn);
1428 return block_move_fn;
1431 /* A subroutine of emit_block_move. Copy the data via an explicit
1432 loop. This is used only when libcalls are forbidden. */
1433 /* ??? It'd be nice to copy in hunks larger than QImode. */
1435 static void
1436 emit_block_move_via_loop (rtx x, rtx y, rtx size,
1437 unsigned int align ATTRIBUTE_UNUSED)
1439 rtx cmp_label, top_label, iter, x_addr, y_addr, tmp;
1440 enum machine_mode x_addr_mode
1441 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (x));
1442 enum machine_mode y_addr_mode
1443 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (y));
1444 enum machine_mode iter_mode;
1446 iter_mode = GET_MODE (size);
1447 if (iter_mode == VOIDmode)
1448 iter_mode = word_mode;
1450 top_label = gen_label_rtx ();
1451 cmp_label = gen_label_rtx ();
1452 iter = gen_reg_rtx (iter_mode);
1454 emit_move_insn (iter, const0_rtx);
1456 x_addr = force_operand (XEXP (x, 0), NULL_RTX);
1457 y_addr = force_operand (XEXP (y, 0), NULL_RTX);
1458 do_pending_stack_adjust ();
1460 emit_jump (cmp_label);
1461 emit_label (top_label);
1463 tmp = convert_modes (x_addr_mode, iter_mode, iter, true);
1464 x_addr = gen_rtx_PLUS (x_addr_mode, x_addr, tmp);
1466 if (x_addr_mode != y_addr_mode)
1467 tmp = convert_modes (y_addr_mode, iter_mode, iter, true);
1468 y_addr = gen_rtx_PLUS (y_addr_mode, y_addr, tmp);
1470 x = change_address (x, QImode, x_addr);
1471 y = change_address (y, QImode, y_addr);
1473 emit_move_insn (x, y);
1475 tmp = expand_simple_binop (iter_mode, PLUS, iter, const1_rtx, iter,
1476 true, OPTAB_LIB_WIDEN);
1477 if (tmp != iter)
1478 emit_move_insn (iter, tmp);
1480 emit_label (cmp_label);
1482 emit_cmp_and_jump_insns (iter, size, LT, NULL_RTX, iter_mode,
1483 true, top_label);
1486 /* Copy all or part of a value X into registers starting at REGNO.
1487 The number of registers to be filled is NREGS. */
1489 void
1490 move_block_to_reg (int regno, rtx x, int nregs, enum machine_mode mode)
1492 int i;
1493 #ifdef HAVE_load_multiple
1494 rtx pat;
1495 rtx last;
1496 #endif
1498 if (nregs == 0)
1499 return;
1501 if (CONSTANT_P (x) && !targetm.legitimate_constant_p (mode, x))
1502 x = validize_mem (force_const_mem (mode, x));
1504 /* See if the machine can do this with a load multiple insn. */
1505 #ifdef HAVE_load_multiple
1506 if (HAVE_load_multiple)
1508 last = get_last_insn ();
1509 pat = gen_load_multiple (gen_rtx_REG (word_mode, regno), x,
1510 GEN_INT (nregs));
1511 if (pat)
1513 emit_insn (pat);
1514 return;
1516 else
1517 delete_insns_since (last);
1519 #endif
1521 for (i = 0; i < nregs; i++)
1522 emit_move_insn (gen_rtx_REG (word_mode, regno + i),
1523 operand_subword_force (x, i, mode));
1526 /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
1527 The number of registers to be filled is NREGS. */
1529 void
1530 move_block_from_reg (int regno, rtx x, int nregs)
1532 int i;
1534 if (nregs == 0)
1535 return;
1537 /* See if the machine can do this with a store multiple insn. */
1538 #ifdef HAVE_store_multiple
1539 if (HAVE_store_multiple)
1541 rtx last = get_last_insn ();
1542 rtx pat = gen_store_multiple (x, gen_rtx_REG (word_mode, regno),
1543 GEN_INT (nregs));
1544 if (pat)
1546 emit_insn (pat);
1547 return;
1549 else
1550 delete_insns_since (last);
1552 #endif
1554 for (i = 0; i < nregs; i++)
1556 rtx tem = operand_subword (x, i, 1, BLKmode);
1558 gcc_assert (tem);
1560 emit_move_insn (tem, gen_rtx_REG (word_mode, regno + i));
1564 /* Generate a PARALLEL rtx for a new non-consecutive group of registers from
1565 ORIG, where ORIG is a non-consecutive group of registers represented by
1566 a PARALLEL. The clone is identical to the original except in that the
1567 original set of registers is replaced by a new set of pseudo registers.
1568 The new set has the same modes as the original set. */
1571 gen_group_rtx (rtx orig)
1573 int i, length;
1574 rtx *tmps;
1576 gcc_assert (GET_CODE (orig) == PARALLEL);
1578 length = XVECLEN (orig, 0);
1579 tmps = XALLOCAVEC (rtx, length);
1581 /* Skip a NULL entry in first slot. */
1582 i = XEXP (XVECEXP (orig, 0, 0), 0) ? 0 : 1;
1584 if (i)
1585 tmps[0] = 0;
1587 for (; i < length; i++)
1589 enum machine_mode mode = GET_MODE (XEXP (XVECEXP (orig, 0, i), 0));
1590 rtx offset = XEXP (XVECEXP (orig, 0, i), 1);
1592 tmps[i] = gen_rtx_EXPR_LIST (VOIDmode, gen_reg_rtx (mode), offset);
1595 return gen_rtx_PARALLEL (GET_MODE (orig), gen_rtvec_v (length, tmps));
1598 /* A subroutine of emit_group_load. Arguments as for emit_group_load,
1599 except that values are placed in TMPS[i], and must later be moved
1600 into corresponding XEXP (XVECEXP (DST, 0, i), 0) element. */
1602 static void
1603 emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize)
1605 rtx src;
1606 int start, i;
1607 enum machine_mode m = GET_MODE (orig_src);
1609 gcc_assert (GET_CODE (dst) == PARALLEL);
1611 if (m != VOIDmode
1612 && !SCALAR_INT_MODE_P (m)
1613 && !MEM_P (orig_src)
1614 && GET_CODE (orig_src) != CONCAT)
1616 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_src));
1617 if (imode == BLKmode)
1618 src = assign_stack_temp (GET_MODE (orig_src), ssize, 0);
1619 else
1620 src = gen_reg_rtx (imode);
1621 if (imode != BLKmode)
1622 src = gen_lowpart (GET_MODE (orig_src), src);
1623 emit_move_insn (src, orig_src);
1624 /* ...and back again. */
1625 if (imode != BLKmode)
1626 src = gen_lowpart (imode, src);
1627 emit_group_load_1 (tmps, dst, src, type, ssize);
1628 return;
1631 /* Check for a NULL entry, used to indicate that the parameter goes
1632 both on the stack and in registers. */
1633 if (XEXP (XVECEXP (dst, 0, 0), 0))
1634 start = 0;
1635 else
1636 start = 1;
1638 /* Process the pieces. */
1639 for (i = start; i < XVECLEN (dst, 0); i++)
1641 enum machine_mode mode = GET_MODE (XEXP (XVECEXP (dst, 0, i), 0));
1642 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (dst, 0, i), 1));
1643 unsigned int bytelen = GET_MODE_SIZE (mode);
1644 int shift = 0;
1646 /* Handle trailing fragments that run over the size of the struct. */
1647 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
1649 /* Arrange to shift the fragment to where it belongs.
1650 extract_bit_field loads to the lsb of the reg. */
1651 if (
1652 #ifdef BLOCK_REG_PADDING
1653 BLOCK_REG_PADDING (GET_MODE (orig_src), type, i == start)
1654 == (BYTES_BIG_ENDIAN ? upward : downward)
1655 #else
1656 BYTES_BIG_ENDIAN
1657 #endif
1659 shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
1660 bytelen = ssize - bytepos;
1661 gcc_assert (bytelen > 0);
1664 /* If we won't be loading directly from memory, protect the real source
1665 from strange tricks we might play; but make sure that the source can
1666 be loaded directly into the destination. */
1667 src = orig_src;
1668 if (!MEM_P (orig_src)
1669 && (!CONSTANT_P (orig_src)
1670 || (GET_MODE (orig_src) != mode
1671 && GET_MODE (orig_src) != VOIDmode)))
1673 if (GET_MODE (orig_src) == VOIDmode)
1674 src = gen_reg_rtx (mode);
1675 else
1676 src = gen_reg_rtx (GET_MODE (orig_src));
1678 emit_move_insn (src, orig_src);
1681 /* Optimize the access just a bit. */
1682 if (MEM_P (src)
1683 && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (src))
1684 || MEM_ALIGN (src) >= GET_MODE_ALIGNMENT (mode))
1685 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
1686 && bytelen == GET_MODE_SIZE (mode))
1688 tmps[i] = gen_reg_rtx (mode);
1689 emit_move_insn (tmps[i], adjust_address (src, mode, bytepos));
1691 else if (COMPLEX_MODE_P (mode)
1692 && GET_MODE (src) == mode
1693 && bytelen == GET_MODE_SIZE (mode))
1694 /* Let emit_move_complex do the bulk of the work. */
1695 tmps[i] = src;
1696 else if (GET_CODE (src) == CONCAT)
1698 unsigned int slen = GET_MODE_SIZE (GET_MODE (src));
1699 unsigned int slen0 = GET_MODE_SIZE (GET_MODE (XEXP (src, 0)));
1701 if ((bytepos == 0 && bytelen == slen0)
1702 || (bytepos != 0 && bytepos + bytelen <= slen))
1704 /* The following assumes that the concatenated objects all
1705 have the same size. In this case, a simple calculation
1706 can be used to determine the object and the bit field
1707 to be extracted. */
1708 tmps[i] = XEXP (src, bytepos / slen0);
1709 if (! CONSTANT_P (tmps[i])
1710 && (!REG_P (tmps[i]) || GET_MODE (tmps[i]) != mode))
1711 tmps[i] = extract_bit_field (tmps[i], bytelen * BITS_PER_UNIT,
1712 (bytepos % slen0) * BITS_PER_UNIT,
1713 1, false, NULL_RTX, mode, mode);
1715 else
1717 rtx mem;
1719 gcc_assert (!bytepos);
1720 mem = assign_stack_temp (GET_MODE (src), slen, 0);
1721 emit_move_insn (mem, src);
1722 tmps[i] = extract_bit_field (mem, bytelen * BITS_PER_UNIT,
1723 0, 1, false, NULL_RTX, mode, mode);
1726 /* FIXME: A SIMD parallel will eventually lead to a subreg of a
1727 SIMD register, which is currently broken. While we get GCC
1728 to emit proper RTL for these cases, let's dump to memory. */
1729 else if (VECTOR_MODE_P (GET_MODE (dst))
1730 && REG_P (src))
1732 int slen = GET_MODE_SIZE (GET_MODE (src));
1733 rtx mem;
1735 mem = assign_stack_temp (GET_MODE (src), slen, 0);
1736 emit_move_insn (mem, src);
1737 tmps[i] = adjust_address (mem, mode, (int) bytepos);
1739 else if (CONSTANT_P (src) && GET_MODE (dst) != BLKmode
1740 && XVECLEN (dst, 0) > 1)
1741 tmps[i] = simplify_gen_subreg (mode, src, GET_MODE(dst), bytepos);
1742 else if (CONSTANT_P (src))
1744 HOST_WIDE_INT len = (HOST_WIDE_INT) bytelen;
1746 if (len == ssize)
1747 tmps[i] = src;
1748 else
1750 rtx first, second;
1752 gcc_assert (2 * len == ssize);
1753 split_double (src, &first, &second);
1754 if (i)
1755 tmps[i] = second;
1756 else
1757 tmps[i] = first;
1760 else if (REG_P (src) && GET_MODE (src) == mode)
1761 tmps[i] = src;
1762 else
1763 tmps[i] = extract_bit_field (src, bytelen * BITS_PER_UNIT,
1764 bytepos * BITS_PER_UNIT, 1, false, NULL_RTX,
1765 mode, mode);
1767 if (shift)
1768 tmps[i] = expand_shift (LSHIFT_EXPR, mode, tmps[i],
1769 shift, tmps[i], 0);
1773 /* Emit code to move a block SRC of type TYPE to a block DST,
1774 where DST is non-consecutive registers represented by a PARALLEL.
1775 SSIZE represents the total size of block ORIG_SRC in bytes, or -1
1776 if not known. */
1778 void
1779 emit_group_load (rtx dst, rtx src, tree type, int ssize)
1781 rtx *tmps;
1782 int i;
1784 tmps = XALLOCAVEC (rtx, XVECLEN (dst, 0));
1785 emit_group_load_1 (tmps, dst, src, type, ssize);
1787 /* Copy the extracted pieces into the proper (probable) hard regs. */
1788 for (i = 0; i < XVECLEN (dst, 0); i++)
1790 rtx d = XEXP (XVECEXP (dst, 0, i), 0);
1791 if (d == NULL)
1792 continue;
1793 emit_move_insn (d, tmps[i]);
1797 /* Similar, but load SRC into new pseudos in a format that looks like
1798 PARALLEL. This can later be fed to emit_group_move to get things
1799 in the right place. */
1802 emit_group_load_into_temps (rtx parallel, rtx src, tree type, int ssize)
1804 rtvec vec;
1805 int i;
1807 vec = rtvec_alloc (XVECLEN (parallel, 0));
1808 emit_group_load_1 (&RTVEC_ELT (vec, 0), parallel, src, type, ssize);
1810 /* Convert the vector to look just like the original PARALLEL, except
1811 with the computed values. */
1812 for (i = 0; i < XVECLEN (parallel, 0); i++)
1814 rtx e = XVECEXP (parallel, 0, i);
1815 rtx d = XEXP (e, 0);
1817 if (d)
1819 d = force_reg (GET_MODE (d), RTVEC_ELT (vec, i));
1820 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), d, XEXP (e, 1));
1822 RTVEC_ELT (vec, i) = e;
1825 return gen_rtx_PARALLEL (GET_MODE (parallel), vec);
1828 /* Emit code to move a block SRC to block DST, where SRC and DST are
1829 non-consecutive groups of registers, each represented by a PARALLEL. */
1831 void
1832 emit_group_move (rtx dst, rtx src)
1834 int i;
1836 gcc_assert (GET_CODE (src) == PARALLEL
1837 && GET_CODE (dst) == PARALLEL
1838 && XVECLEN (src, 0) == XVECLEN (dst, 0));
1840 /* Skip first entry if NULL. */
1841 for (i = XEXP (XVECEXP (src, 0, 0), 0) ? 0 : 1; i < XVECLEN (src, 0); i++)
1842 emit_move_insn (XEXP (XVECEXP (dst, 0, i), 0),
1843 XEXP (XVECEXP (src, 0, i), 0));
1846 /* Move a group of registers represented by a PARALLEL into pseudos. */
1849 emit_group_move_into_temps (rtx src)
1851 rtvec vec = rtvec_alloc (XVECLEN (src, 0));
1852 int i;
1854 for (i = 0; i < XVECLEN (src, 0); i++)
1856 rtx e = XVECEXP (src, 0, i);
1857 rtx d = XEXP (e, 0);
1859 if (d)
1860 e = alloc_EXPR_LIST (REG_NOTE_KIND (e), copy_to_reg (d), XEXP (e, 1));
1861 RTVEC_ELT (vec, i) = e;
1864 return gen_rtx_PARALLEL (GET_MODE (src), vec);
1867 /* Emit code to move a block SRC to a block ORIG_DST of type TYPE,
1868 where SRC is non-consecutive registers represented by a PARALLEL.
1869 SSIZE represents the total size of block ORIG_DST, or -1 if not
1870 known. */
1872 void
1873 emit_group_store (rtx orig_dst, rtx src, tree type ATTRIBUTE_UNUSED, int ssize)
1875 rtx *tmps, dst;
1876 int start, finish, i;
1877 enum machine_mode m = GET_MODE (orig_dst);
1879 gcc_assert (GET_CODE (src) == PARALLEL);
1881 if (!SCALAR_INT_MODE_P (m)
1882 && !MEM_P (orig_dst) && GET_CODE (orig_dst) != CONCAT)
1884 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_dst));
1885 if (imode == BLKmode)
1886 dst = assign_stack_temp (GET_MODE (orig_dst), ssize, 0);
1887 else
1888 dst = gen_reg_rtx (imode);
1889 emit_group_store (dst, src, type, ssize);
1890 if (imode != BLKmode)
1891 dst = gen_lowpart (GET_MODE (orig_dst), dst);
1892 emit_move_insn (orig_dst, dst);
1893 return;
1896 /* Check for a NULL entry, used to indicate that the parameter goes
1897 both on the stack and in registers. */
1898 if (XEXP (XVECEXP (src, 0, 0), 0))
1899 start = 0;
1900 else
1901 start = 1;
1902 finish = XVECLEN (src, 0);
1904 tmps = XALLOCAVEC (rtx, finish);
1906 /* Copy the (probable) hard regs into pseudos. */
1907 for (i = start; i < finish; i++)
1909 rtx reg = XEXP (XVECEXP (src, 0, i), 0);
1910 if (!REG_P (reg) || REGNO (reg) < FIRST_PSEUDO_REGISTER)
1912 tmps[i] = gen_reg_rtx (GET_MODE (reg));
1913 emit_move_insn (tmps[i], reg);
1915 else
1916 tmps[i] = reg;
1919 /* If we won't be storing directly into memory, protect the real destination
1920 from strange tricks we might play. */
1921 dst = orig_dst;
1922 if (GET_CODE (dst) == PARALLEL)
1924 rtx temp;
1926 /* We can get a PARALLEL dst if there is a conditional expression in
1927 a return statement. In that case, the dst and src are the same,
1928 so no action is necessary. */
1929 if (rtx_equal_p (dst, src))
1930 return;
1932 /* It is unclear if we can ever reach here, but we may as well handle
1933 it. Allocate a temporary, and split this into a store/load to/from
1934 the temporary. */
1936 temp = assign_stack_temp (GET_MODE (dst), ssize, 0);
1937 emit_group_store (temp, src, type, ssize);
1938 emit_group_load (dst, temp, type, ssize);
1939 return;
1941 else if (!MEM_P (dst) && GET_CODE (dst) != CONCAT)
1943 enum machine_mode outer = GET_MODE (dst);
1944 enum machine_mode inner;
1945 HOST_WIDE_INT bytepos;
1946 bool done = false;
1947 rtx temp;
1949 if (!REG_P (dst) || REGNO (dst) < FIRST_PSEUDO_REGISTER)
1950 dst = gen_reg_rtx (outer);
1952 /* Make life a bit easier for combine. */
1953 /* If the first element of the vector is the low part
1954 of the destination mode, use a paradoxical subreg to
1955 initialize the destination. */
1956 if (start < finish)
1958 inner = GET_MODE (tmps[start]);
1959 bytepos = subreg_lowpart_offset (inner, outer);
1960 if (INTVAL (XEXP (XVECEXP (src, 0, start), 1)) == bytepos)
1962 temp = simplify_gen_subreg (outer, tmps[start],
1963 inner, 0);
1964 if (temp)
1966 emit_move_insn (dst, temp);
1967 done = true;
1968 start++;
1973 /* If the first element wasn't the low part, try the last. */
1974 if (!done
1975 && start < finish - 1)
1977 inner = GET_MODE (tmps[finish - 1]);
1978 bytepos = subreg_lowpart_offset (inner, outer);
1979 if (INTVAL (XEXP (XVECEXP (src, 0, finish - 1), 1)) == bytepos)
1981 temp = simplify_gen_subreg (outer, tmps[finish - 1],
1982 inner, 0);
1983 if (temp)
1985 emit_move_insn (dst, temp);
1986 done = true;
1987 finish--;
1992 /* Otherwise, simply initialize the result to zero. */
1993 if (!done)
1994 emit_move_insn (dst, CONST0_RTX (outer));
1997 /* Process the pieces. */
1998 for (i = start; i < finish; i++)
2000 HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (src, 0, i), 1));
2001 enum machine_mode mode = GET_MODE (tmps[i]);
2002 unsigned int bytelen = GET_MODE_SIZE (mode);
2003 unsigned int adj_bytelen = bytelen;
2004 rtx dest = dst;
2006 /* Handle trailing fragments that run over the size of the struct. */
2007 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2008 adj_bytelen = ssize - bytepos;
2010 if (GET_CODE (dst) == CONCAT)
2012 if (bytepos + adj_bytelen
2013 <= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2014 dest = XEXP (dst, 0);
2015 else if (bytepos >= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
2017 bytepos -= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0)));
2018 dest = XEXP (dst, 1);
2020 else
2022 enum machine_mode dest_mode = GET_MODE (dest);
2023 enum machine_mode tmp_mode = GET_MODE (tmps[i]);
2025 gcc_assert (bytepos == 0 && XVECLEN (src, 0));
2027 if (GET_MODE_ALIGNMENT (dest_mode)
2028 >= GET_MODE_ALIGNMENT (tmp_mode))
2030 dest = assign_stack_temp (dest_mode,
2031 GET_MODE_SIZE (dest_mode),
2033 emit_move_insn (adjust_address (dest,
2034 tmp_mode,
2035 bytepos),
2036 tmps[i]);
2037 dst = dest;
2039 else
2041 dest = assign_stack_temp (tmp_mode,
2042 GET_MODE_SIZE (tmp_mode),
2044 emit_move_insn (dest, tmps[i]);
2045 dst = adjust_address (dest, dest_mode, bytepos);
2047 break;
2051 if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
2053 /* store_bit_field always takes its value from the lsb.
2054 Move the fragment to the lsb if it's not already there. */
2055 if (
2056 #ifdef BLOCK_REG_PADDING
2057 BLOCK_REG_PADDING (GET_MODE (orig_dst), type, i == start)
2058 == (BYTES_BIG_ENDIAN ? upward : downward)
2059 #else
2060 BYTES_BIG_ENDIAN
2061 #endif
2064 int shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
2065 tmps[i] = expand_shift (RSHIFT_EXPR, mode, tmps[i],
2066 shift, tmps[i], 0);
2068 bytelen = adj_bytelen;
2071 /* Optimize the access just a bit. */
2072 if (MEM_P (dest)
2073 && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (dest))
2074 || MEM_ALIGN (dest) >= GET_MODE_ALIGNMENT (mode))
2075 && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
2076 && bytelen == GET_MODE_SIZE (mode))
2077 emit_move_insn (adjust_address (dest, mode, bytepos), tmps[i]);
2078 else
2079 store_bit_field (dest, bytelen * BITS_PER_UNIT, bytepos * BITS_PER_UNIT,
2080 0, 0, mode, tmps[i]);
2083 /* Copy from the pseudo into the (probable) hard reg. */
2084 if (orig_dst != dst)
2085 emit_move_insn (orig_dst, dst);
2088 /* Generate code to copy a BLKmode object of TYPE out of a
2089 set of registers starting with SRCREG into TGTBLK. If TGTBLK
2090 is null, a stack temporary is created. TGTBLK is returned.
2092 The purpose of this routine is to handle functions that return
2093 BLKmode structures in registers. Some machines (the PA for example)
2094 want to return all small structures in registers regardless of the
2095 structure's alignment. */
2098 copy_blkmode_from_reg (rtx tgtblk, rtx srcreg, tree type)
2100 unsigned HOST_WIDE_INT bytes = int_size_in_bytes (type);
2101 rtx src = NULL, dst = NULL;
2102 unsigned HOST_WIDE_INT bitsize = MIN (TYPE_ALIGN (type), BITS_PER_WORD);
2103 unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0;
2104 enum machine_mode copy_mode;
2106 if (tgtblk == 0)
2108 tgtblk = assign_temp (build_qualified_type (type,
2109 (TYPE_QUALS (type)
2110 | TYPE_QUAL_CONST)),
2111 0, 1, 1);
2112 preserve_temp_slots (tgtblk);
2115 /* This code assumes srcreg is at least a full word. If it isn't, copy it
2116 into a new pseudo which is a full word. */
2118 if (GET_MODE (srcreg) != BLKmode
2119 && GET_MODE_SIZE (GET_MODE (srcreg)) < UNITS_PER_WORD)
2120 srcreg = convert_to_mode (word_mode, srcreg, TYPE_UNSIGNED (type));
2122 /* If the structure doesn't take up a whole number of words, see whether
2123 SRCREG is padded on the left or on the right. If it's on the left,
2124 set PADDING_CORRECTION to the number of bits to skip.
2126 In most ABIs, the structure will be returned at the least end of
2127 the register, which translates to right padding on little-endian
2128 targets and left padding on big-endian targets. The opposite
2129 holds if the structure is returned at the most significant
2130 end of the register. */
2131 if (bytes % UNITS_PER_WORD != 0
2132 && (targetm.calls.return_in_msb (type)
2133 ? !BYTES_BIG_ENDIAN
2134 : BYTES_BIG_ENDIAN))
2135 padding_correction
2136 = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD) * BITS_PER_UNIT));
2138 /* Copy the structure BITSIZE bits at a time. If the target lives in
2139 memory, take care of not reading/writing past its end by selecting
2140 a copy mode suited to BITSIZE. This should always be possible given
2141 how it is computed.
2143 We could probably emit more efficient code for machines which do not use
2144 strict alignment, but it doesn't seem worth the effort at the current
2145 time. */
2147 copy_mode = word_mode;
2148 if (MEM_P (tgtblk))
2150 enum machine_mode mem_mode = mode_for_size (bitsize, MODE_INT, 1);
2151 if (mem_mode != BLKmode)
2152 copy_mode = mem_mode;
2155 for (bitpos = 0, xbitpos = padding_correction;
2156 bitpos < bytes * BITS_PER_UNIT;
2157 bitpos += bitsize, xbitpos += bitsize)
2159 /* We need a new source operand each time xbitpos is on a
2160 word boundary and when xbitpos == padding_correction
2161 (the first time through). */
2162 if (xbitpos % BITS_PER_WORD == 0
2163 || xbitpos == padding_correction)
2164 src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD,
2165 GET_MODE (srcreg));
2167 /* We need a new destination operand each time bitpos is on
2168 a word boundary. */
2169 if (bitpos % BITS_PER_WORD == 0)
2170 dst = operand_subword (tgtblk, bitpos / BITS_PER_WORD, 1, BLKmode);
2172 /* Use xbitpos for the source extraction (right justified) and
2173 bitpos for the destination store (left justified). */
2174 store_bit_field (dst, bitsize, bitpos % BITS_PER_WORD, 0, 0, copy_mode,
2175 extract_bit_field (src, bitsize,
2176 xbitpos % BITS_PER_WORD, 1, false,
2177 NULL_RTX, copy_mode, copy_mode));
2180 return tgtblk;
2183 /* Add a USE expression for REG to the (possibly empty) list pointed
2184 to by CALL_FUSAGE. REG must denote a hard register. */
2186 void
2187 use_reg (rtx *call_fusage, rtx reg)
2189 gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
2191 *call_fusage
2192 = gen_rtx_EXPR_LIST (VOIDmode,
2193 gen_rtx_USE (VOIDmode, reg), *call_fusage);
2196 /* Add USE expressions to *CALL_FUSAGE for each of NREGS consecutive regs,
2197 starting at REGNO. All of these registers must be hard registers. */
2199 void
2200 use_regs (rtx *call_fusage, int regno, int nregs)
2202 int i;
2204 gcc_assert (regno + nregs <= FIRST_PSEUDO_REGISTER);
2206 for (i = 0; i < nregs; i++)
2207 use_reg (call_fusage, regno_reg_rtx[regno + i]);
2210 /* Add USE expressions to *CALL_FUSAGE for each REG contained in the
2211 PARALLEL REGS. This is for calls that pass values in multiple
2212 non-contiguous locations. The Irix 6 ABI has examples of this. */
2214 void
2215 use_group_regs (rtx *call_fusage, rtx regs)
2217 int i;
2219 for (i = 0; i < XVECLEN (regs, 0); i++)
2221 rtx reg = XEXP (XVECEXP (regs, 0, i), 0);
2223 /* A NULL entry means the parameter goes both on the stack and in
2224 registers. This can also be a MEM for targets that pass values
2225 partially on the stack and partially in registers. */
2226 if (reg != 0 && REG_P (reg))
2227 use_reg (call_fusage, reg);
2231 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2232 assigment and the code of the expresion on the RHS is CODE. Return
2233 NULL otherwise. */
2235 static gimple
2236 get_def_for_expr (tree name, enum tree_code code)
2238 gimple def_stmt;
2240 if (TREE_CODE (name) != SSA_NAME)
2241 return NULL;
2243 def_stmt = get_gimple_for_ssa_name (name);
2244 if (!def_stmt
2245 || gimple_assign_rhs_code (def_stmt) != code)
2246 return NULL;
2248 return def_stmt;
2252 /* Determine whether the LEN bytes generated by CONSTFUN can be
2253 stored to memory using several move instructions. CONSTFUNDATA is
2254 a pointer which will be passed as argument in every CONSTFUN call.
2255 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2256 a memset operation and false if it's a copy of a constant string.
2257 Return nonzero if a call to store_by_pieces should succeed. */
2260 can_store_by_pieces (unsigned HOST_WIDE_INT len,
2261 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2262 void *constfundata, unsigned int align, bool memsetp)
2264 unsigned HOST_WIDE_INT l;
2265 unsigned int max_size;
2266 HOST_WIDE_INT offset = 0;
2267 enum machine_mode mode;
2268 enum insn_code icode;
2269 int reverse;
2270 /* cst is set but not used if LEGITIMATE_CONSTANT doesn't use it. */
2271 rtx cst ATTRIBUTE_UNUSED;
2273 if (len == 0)
2274 return 1;
2276 if (! (memsetp
2277 ? SET_BY_PIECES_P (len, align)
2278 : STORE_BY_PIECES_P (len, align)))
2279 return 0;
2281 align = alignment_for_piecewise_move (STORE_MAX_PIECES, align);
2283 /* We would first store what we can in the largest integer mode, then go to
2284 successively smaller modes. */
2286 for (reverse = 0;
2287 reverse <= (HAVE_PRE_DECREMENT || HAVE_POST_DECREMENT);
2288 reverse++)
2290 l = len;
2291 max_size = STORE_MAX_PIECES + 1;
2292 while (max_size > 1)
2294 mode = widest_int_mode_for_size (max_size);
2296 if (mode == VOIDmode)
2297 break;
2299 icode = optab_handler (mov_optab, mode);
2300 if (icode != CODE_FOR_nothing
2301 && align >= GET_MODE_ALIGNMENT (mode))
2303 unsigned int size = GET_MODE_SIZE (mode);
2305 while (l >= size)
2307 if (reverse)
2308 offset -= size;
2310 cst = (*constfun) (constfundata, offset, mode);
2311 if (!targetm.legitimate_constant_p (mode, cst))
2312 return 0;
2314 if (!reverse)
2315 offset += size;
2317 l -= size;
2321 max_size = GET_MODE_SIZE (mode);
2324 /* The code above should have handled everything. */
2325 gcc_assert (!l);
2328 return 1;
2331 /* Generate several move instructions to store LEN bytes generated by
2332 CONSTFUN to block TO. (A MEM rtx with BLKmode). CONSTFUNDATA is a
2333 pointer which will be passed as argument in every CONSTFUN call.
2334 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2335 a memset operation and false if it's a copy of a constant string.
2336 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
2337 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
2338 stpcpy. */
2341 store_by_pieces (rtx to, unsigned HOST_WIDE_INT len,
2342 rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2343 void *constfundata, unsigned int align, bool memsetp, int endp)
2345 enum machine_mode to_addr_mode
2346 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to));
2347 struct store_by_pieces_d data;
2349 if (len == 0)
2351 gcc_assert (endp != 2);
2352 return to;
2355 gcc_assert (memsetp
2356 ? SET_BY_PIECES_P (len, align)
2357 : STORE_BY_PIECES_P (len, align));
2358 data.constfun = constfun;
2359 data.constfundata = constfundata;
2360 data.len = len;
2361 data.to = to;
2362 store_by_pieces_1 (&data, align);
2363 if (endp)
2365 rtx to1;
2367 gcc_assert (!data.reverse);
2368 if (data.autinc_to)
2370 if (endp == 2)
2372 if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
2373 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
2374 else
2375 data.to_addr = copy_to_mode_reg (to_addr_mode,
2376 plus_constant (data.to_addr,
2377 -1));
2379 to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
2380 data.offset);
2382 else
2384 if (endp == 2)
2385 --data.offset;
2386 to1 = adjust_address (data.to, QImode, data.offset);
2388 return to1;
2390 else
2391 return data.to;
2394 /* Generate several move instructions to clear LEN bytes of block TO. (A MEM
2395 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2397 static void
2398 clear_by_pieces (rtx to, unsigned HOST_WIDE_INT len, unsigned int align)
2400 struct store_by_pieces_d data;
2402 if (len == 0)
2403 return;
2405 data.constfun = clear_by_pieces_1;
2406 data.constfundata = NULL;
2407 data.len = len;
2408 data.to = to;
2409 store_by_pieces_1 (&data, align);
2412 /* Callback routine for clear_by_pieces.
2413 Return const0_rtx unconditionally. */
2415 static rtx
2416 clear_by_pieces_1 (void *data ATTRIBUTE_UNUSED,
2417 HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
2418 enum machine_mode mode ATTRIBUTE_UNUSED)
2420 return const0_rtx;
2423 /* Subroutine of clear_by_pieces and store_by_pieces.
2424 Generate several move instructions to store LEN bytes of block TO. (A MEM
2425 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2427 static void
2428 store_by_pieces_1 (struct store_by_pieces_d *data ATTRIBUTE_UNUSED,
2429 unsigned int align ATTRIBUTE_UNUSED)
2431 enum machine_mode to_addr_mode
2432 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (data->to));
2433 rtx to_addr = XEXP (data->to, 0);
2434 unsigned int max_size = STORE_MAX_PIECES + 1;
2435 enum insn_code icode;
2437 data->offset = 0;
2438 data->to_addr = to_addr;
2439 data->autinc_to
2440 = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
2441 || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
2443 data->explicit_inc_to = 0;
2444 data->reverse
2445 = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
2446 if (data->reverse)
2447 data->offset = data->len;
2449 /* If storing requires more than two move insns,
2450 copy addresses to registers (to make displacements shorter)
2451 and use post-increment if available. */
2452 if (!data->autinc_to
2453 && move_by_pieces_ninsns (data->len, align, max_size) > 2)
2455 /* Determine the main mode we'll be using.
2456 MODE might not be used depending on the definitions of the
2457 USE_* macros below. */
2458 enum machine_mode mode ATTRIBUTE_UNUSED
2459 = widest_int_mode_for_size (max_size);
2461 if (USE_STORE_PRE_DECREMENT (mode) && data->reverse && ! data->autinc_to)
2463 data->to_addr = copy_to_mode_reg (to_addr_mode,
2464 plus_constant (to_addr, data->len));
2465 data->autinc_to = 1;
2466 data->explicit_inc_to = -1;
2469 if (USE_STORE_POST_INCREMENT (mode) && ! data->reverse
2470 && ! data->autinc_to)
2472 data->to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
2473 data->autinc_to = 1;
2474 data->explicit_inc_to = 1;
2477 if ( !data->autinc_to && CONSTANT_P (to_addr))
2478 data->to_addr = copy_to_mode_reg (to_addr_mode, to_addr);
2481 align = alignment_for_piecewise_move (STORE_MAX_PIECES, align);
2483 /* First store what we can in the largest integer mode, then go to
2484 successively smaller modes. */
2486 while (max_size > 1)
2488 enum machine_mode mode = widest_int_mode_for_size (max_size);
2490 if (mode == VOIDmode)
2491 break;
2493 icode = optab_handler (mov_optab, mode);
2494 if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
2495 store_by_pieces_2 (GEN_FCN (icode), mode, data);
2497 max_size = GET_MODE_SIZE (mode);
2500 /* The code above should have handled everything. */
2501 gcc_assert (!data->len);
2504 /* Subroutine of store_by_pieces_1. Store as many bytes as appropriate
2505 with move instructions for mode MODE. GENFUN is the gen_... function
2506 to make a move insn for that mode. DATA has all the other info. */
2508 static void
2509 store_by_pieces_2 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
2510 struct store_by_pieces_d *data)
2512 unsigned int size = GET_MODE_SIZE (mode);
2513 rtx to1, cst;
2515 while (data->len >= size)
2517 if (data->reverse)
2518 data->offset -= size;
2520 if (data->autinc_to)
2521 to1 = adjust_automodify_address (data->to, mode, data->to_addr,
2522 data->offset);
2523 else
2524 to1 = adjust_address (data->to, mode, data->offset);
2526 if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
2527 emit_insn (gen_add2_insn (data->to_addr,
2528 GEN_INT (-(HOST_WIDE_INT) size)));
2530 cst = (*data->constfun) (data->constfundata, data->offset, mode);
2531 emit_insn ((*genfun) (to1, cst));
2533 if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
2534 emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
2536 if (! data->reverse)
2537 data->offset += size;
2539 data->len -= size;
2543 /* Write zeros through the storage of OBJECT. If OBJECT has BLKmode, SIZE is
2544 its length in bytes. */
2547 clear_storage_hints (rtx object, rtx size, enum block_op_methods method,
2548 unsigned int expected_align, HOST_WIDE_INT expected_size)
2550 enum machine_mode mode = GET_MODE (object);
2551 unsigned int align;
2553 gcc_assert (method == BLOCK_OP_NORMAL || method == BLOCK_OP_TAILCALL);
2555 /* If OBJECT is not BLKmode and SIZE is the same size as its mode,
2556 just move a zero. Otherwise, do this a piece at a time. */
2557 if (mode != BLKmode
2558 && CONST_INT_P (size)
2559 && INTVAL (size) == (HOST_WIDE_INT) GET_MODE_SIZE (mode))
2561 rtx zero = CONST0_RTX (mode);
2562 if (zero != NULL)
2564 emit_move_insn (object, zero);
2565 return NULL;
2568 if (COMPLEX_MODE_P (mode))
2570 zero = CONST0_RTX (GET_MODE_INNER (mode));
2571 if (zero != NULL)
2573 write_complex_part (object, zero, 0);
2574 write_complex_part (object, zero, 1);
2575 return NULL;
2580 if (size == const0_rtx)
2581 return NULL;
2583 align = MEM_ALIGN (object);
2585 if (CONST_INT_P (size)
2586 && CLEAR_BY_PIECES_P (INTVAL (size), align))
2587 clear_by_pieces (object, INTVAL (size), align);
2588 else if (set_storage_via_setmem (object, size, const0_rtx, align,
2589 expected_align, expected_size))
2591 else if (ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (object)))
2592 return set_storage_via_libcall (object, size, const0_rtx,
2593 method == BLOCK_OP_TAILCALL);
2594 else
2595 gcc_unreachable ();
2597 return NULL;
2601 clear_storage (rtx object, rtx size, enum block_op_methods method)
2603 return clear_storage_hints (object, size, method, 0, -1);
2607 /* A subroutine of clear_storage. Expand a call to memset.
2608 Return the return value of memset, 0 otherwise. */
2611 set_storage_via_libcall (rtx object, rtx size, rtx val, bool tailcall)
2613 tree call_expr, fn, object_tree, size_tree, val_tree;
2614 enum machine_mode size_mode;
2615 rtx retval;
2617 /* Emit code to copy OBJECT and SIZE into new pseudos. We can then
2618 place those into new pseudos into a VAR_DECL and use them later. */
2620 object = copy_to_mode_reg (Pmode, XEXP (object, 0));
2622 size_mode = TYPE_MODE (sizetype);
2623 size = convert_to_mode (size_mode, size, 1);
2624 size = copy_to_mode_reg (size_mode, size);
2626 /* It is incorrect to use the libcall calling conventions to call
2627 memset in this context. This could be a user call to memset and
2628 the user may wish to examine the return value from memset. For
2629 targets where libcalls and normal calls have different conventions
2630 for returning pointers, we could end up generating incorrect code. */
2632 object_tree = make_tree (ptr_type_node, object);
2633 if (!CONST_INT_P (val))
2634 val = convert_to_mode (TYPE_MODE (integer_type_node), val, 1);
2635 size_tree = make_tree (sizetype, size);
2636 val_tree = make_tree (integer_type_node, val);
2638 fn = clear_storage_libcall_fn (true);
2639 call_expr = build_call_expr (fn, 3, object_tree, val_tree, size_tree);
2640 CALL_EXPR_TAILCALL (call_expr) = tailcall;
2642 retval = expand_normal (call_expr);
2644 return retval;
2647 /* A subroutine of set_storage_via_libcall. Create the tree node
2648 for the function we use for block clears. The first time FOR_CALL
2649 is true, we call assemble_external. */
2651 tree block_clear_fn;
2653 void
2654 init_block_clear_fn (const char *asmspec)
2656 if (!block_clear_fn)
2658 tree fn, args;
2660 fn = get_identifier ("memset");
2661 args = build_function_type_list (ptr_type_node, ptr_type_node,
2662 integer_type_node, sizetype,
2663 NULL_TREE);
2665 fn = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, fn, args);
2666 DECL_EXTERNAL (fn) = 1;
2667 TREE_PUBLIC (fn) = 1;
2668 DECL_ARTIFICIAL (fn) = 1;
2669 TREE_NOTHROW (fn) = 1;
2670 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
2671 DECL_VISIBILITY_SPECIFIED (fn) = 1;
2673 block_clear_fn = fn;
2676 if (asmspec)
2677 set_user_assembler_name (block_clear_fn, asmspec);
2680 static tree
2681 clear_storage_libcall_fn (int for_call)
2683 static bool emitted_extern;
2685 if (!block_clear_fn)
2686 init_block_clear_fn (NULL);
2688 if (for_call && !emitted_extern)
2690 emitted_extern = true;
2691 make_decl_rtl (block_clear_fn);
2692 assemble_external (block_clear_fn);
2695 return block_clear_fn;
2698 /* Expand a setmem pattern; return true if successful. */
2700 bool
2701 set_storage_via_setmem (rtx object, rtx size, rtx val, unsigned int align,
2702 unsigned int expected_align, HOST_WIDE_INT expected_size)
2704 /* Try the most limited insn first, because there's no point
2705 including more than one in the machine description unless
2706 the more limited one has some advantage. */
2708 enum machine_mode mode;
2710 if (expected_align < align)
2711 expected_align = align;
2713 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
2714 mode = GET_MODE_WIDER_MODE (mode))
2716 enum insn_code code = direct_optab_handler (setmem_optab, mode);
2718 if (code != CODE_FOR_nothing
2719 /* We don't need MODE to be narrower than
2720 BITS_PER_HOST_WIDE_INT here because if SIZE is less than
2721 the mode mask, as it is returned by the macro, it will
2722 definitely be less than the actual mode mask. */
2723 && ((CONST_INT_P (size)
2724 && ((unsigned HOST_WIDE_INT) INTVAL (size)
2725 <= (GET_MODE_MASK (mode) >> 1)))
2726 || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD))
2728 struct expand_operand ops[6];
2729 unsigned int nops;
2731 nops = insn_data[(int) code].n_generator_args;
2732 gcc_assert (nops == 4 || nops == 6);
2734 create_fixed_operand (&ops[0], object);
2735 /* The check above guarantees that this size conversion is valid. */
2736 create_convert_operand_to (&ops[1], size, mode, true);
2737 create_convert_operand_from (&ops[2], val, byte_mode, true);
2738 create_integer_operand (&ops[3], align / BITS_PER_UNIT);
2739 if (nops == 6)
2741 create_integer_operand (&ops[4], expected_align / BITS_PER_UNIT);
2742 create_integer_operand (&ops[5], expected_size);
2744 if (maybe_expand_insn (code, nops, ops))
2745 return true;
2749 return false;
2753 /* Write to one of the components of the complex value CPLX. Write VAL to
2754 the real part if IMAG_P is false, and the imaginary part if its true. */
2756 static void
2757 write_complex_part (rtx cplx, rtx val, bool imag_p)
2759 enum machine_mode cmode;
2760 enum machine_mode imode;
2761 unsigned ibitsize;
2763 if (GET_CODE (cplx) == CONCAT)
2765 emit_move_insn (XEXP (cplx, imag_p), val);
2766 return;
2769 cmode = GET_MODE (cplx);
2770 imode = GET_MODE_INNER (cmode);
2771 ibitsize = GET_MODE_BITSIZE (imode);
2773 /* For MEMs simplify_gen_subreg may generate an invalid new address
2774 because, e.g., the original address is considered mode-dependent
2775 by the target, which restricts simplify_subreg from invoking
2776 adjust_address_nv. Instead of preparing fallback support for an
2777 invalid address, we call adjust_address_nv directly. */
2778 if (MEM_P (cplx))
2780 emit_move_insn (adjust_address_nv (cplx, imode,
2781 imag_p ? GET_MODE_SIZE (imode) : 0),
2782 val);
2783 return;
2786 /* If the sub-object is at least word sized, then we know that subregging
2787 will work. This special case is important, since store_bit_field
2788 wants to operate on integer modes, and there's rarely an OImode to
2789 correspond to TCmode. */
2790 if (ibitsize >= BITS_PER_WORD
2791 /* For hard regs we have exact predicates. Assume we can split
2792 the original object if it spans an even number of hard regs.
2793 This special case is important for SCmode on 64-bit platforms
2794 where the natural size of floating-point regs is 32-bit. */
2795 || (REG_P (cplx)
2796 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2797 && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0))
2799 rtx part = simplify_gen_subreg (imode, cplx, cmode,
2800 imag_p ? GET_MODE_SIZE (imode) : 0);
2801 if (part)
2803 emit_move_insn (part, val);
2804 return;
2806 else
2807 /* simplify_gen_subreg may fail for sub-word MEMs. */
2808 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2811 store_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0, 0, 0, imode, val);
2814 /* Extract one of the components of the complex value CPLX. Extract the
2815 real part if IMAG_P is false, and the imaginary part if it's true. */
2817 static rtx
2818 read_complex_part (rtx cplx, bool imag_p)
2820 enum machine_mode cmode, imode;
2821 unsigned ibitsize;
2823 if (GET_CODE (cplx) == CONCAT)
2824 return XEXP (cplx, imag_p);
2826 cmode = GET_MODE (cplx);
2827 imode = GET_MODE_INNER (cmode);
2828 ibitsize = GET_MODE_BITSIZE (imode);
2830 /* Special case reads from complex constants that got spilled to memory. */
2831 if (MEM_P (cplx) && GET_CODE (XEXP (cplx, 0)) == SYMBOL_REF)
2833 tree decl = SYMBOL_REF_DECL (XEXP (cplx, 0));
2834 if (decl && TREE_CODE (decl) == COMPLEX_CST)
2836 tree part = imag_p ? TREE_IMAGPART (decl) : TREE_REALPART (decl);
2837 if (CONSTANT_CLASS_P (part))
2838 return expand_expr (part, NULL_RTX, imode, EXPAND_NORMAL);
2842 /* For MEMs simplify_gen_subreg may generate an invalid new address
2843 because, e.g., the original address is considered mode-dependent
2844 by the target, which restricts simplify_subreg from invoking
2845 adjust_address_nv. Instead of preparing fallback support for an
2846 invalid address, we call adjust_address_nv directly. */
2847 if (MEM_P (cplx))
2848 return adjust_address_nv (cplx, imode,
2849 imag_p ? GET_MODE_SIZE (imode) : 0);
2851 /* If the sub-object is at least word sized, then we know that subregging
2852 will work. This special case is important, since extract_bit_field
2853 wants to operate on integer modes, and there's rarely an OImode to
2854 correspond to TCmode. */
2855 if (ibitsize >= BITS_PER_WORD
2856 /* For hard regs we have exact predicates. Assume we can split
2857 the original object if it spans an even number of hard regs.
2858 This special case is important for SCmode on 64-bit platforms
2859 where the natural size of floating-point regs is 32-bit. */
2860 || (REG_P (cplx)
2861 && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2862 && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0))
2864 rtx ret = simplify_gen_subreg (imode, cplx, cmode,
2865 imag_p ? GET_MODE_SIZE (imode) : 0);
2866 if (ret)
2867 return ret;
2868 else
2869 /* simplify_gen_subreg may fail for sub-word MEMs. */
2870 gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2873 return extract_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0,
2874 true, false, NULL_RTX, imode, imode);
2877 /* A subroutine of emit_move_insn_1. Yet another lowpart generator.
2878 NEW_MODE and OLD_MODE are the same size. Return NULL if X cannot be
2879 represented in NEW_MODE. If FORCE is true, this will never happen, as
2880 we'll force-create a SUBREG if needed. */
2882 static rtx
2883 emit_move_change_mode (enum machine_mode new_mode,
2884 enum machine_mode old_mode, rtx x, bool force)
2886 rtx ret;
2888 if (push_operand (x, GET_MODE (x)))
2890 ret = gen_rtx_MEM (new_mode, XEXP (x, 0));
2891 MEM_COPY_ATTRIBUTES (ret, x);
2893 else if (MEM_P (x))
2895 /* We don't have to worry about changing the address since the
2896 size in bytes is supposed to be the same. */
2897 if (reload_in_progress)
2899 /* Copy the MEM to change the mode and move any
2900 substitutions from the old MEM to the new one. */
2901 ret = adjust_address_nv (x, new_mode, 0);
2902 copy_replacements (x, ret);
2904 else
2905 ret = adjust_address (x, new_mode, 0);
2907 else
2909 /* Note that we do want simplify_subreg's behavior of validating
2910 that the new mode is ok for a hard register. If we were to use
2911 simplify_gen_subreg, we would create the subreg, but would
2912 probably run into the target not being able to implement it. */
2913 /* Except, of course, when FORCE is true, when this is exactly what
2914 we want. Which is needed for CCmodes on some targets. */
2915 if (force)
2916 ret = simplify_gen_subreg (new_mode, x, old_mode, 0);
2917 else
2918 ret = simplify_subreg (new_mode, x, old_mode, 0);
2921 return ret;
2924 /* A subroutine of emit_move_insn_1. Generate a move from Y into X using
2925 an integer mode of the same size as MODE. Returns the instruction
2926 emitted, or NULL if such a move could not be generated. */
2928 static rtx
2929 emit_move_via_integer (enum machine_mode mode, rtx x, rtx y, bool force)
2931 enum machine_mode imode;
2932 enum insn_code code;
2934 /* There must exist a mode of the exact size we require. */
2935 imode = int_mode_for_mode (mode);
2936 if (imode == BLKmode)
2937 return NULL_RTX;
2939 /* The target must support moves in this mode. */
2940 code = optab_handler (mov_optab, imode);
2941 if (code == CODE_FOR_nothing)
2942 return NULL_RTX;
2944 x = emit_move_change_mode (imode, mode, x, force);
2945 if (x == NULL_RTX)
2946 return NULL_RTX;
2947 y = emit_move_change_mode (imode, mode, y, force);
2948 if (y == NULL_RTX)
2949 return NULL_RTX;
2950 return emit_insn (GEN_FCN (code) (x, y));
2953 /* A subroutine of emit_move_insn_1. X is a push_operand in MODE.
2954 Return an equivalent MEM that does not use an auto-increment. */
2956 static rtx
2957 emit_move_resolve_push (enum machine_mode mode, rtx x)
2959 enum rtx_code code = GET_CODE (XEXP (x, 0));
2960 HOST_WIDE_INT adjust;
2961 rtx temp;
2963 adjust = GET_MODE_SIZE (mode);
2964 #ifdef PUSH_ROUNDING
2965 adjust = PUSH_ROUNDING (adjust);
2966 #endif
2967 if (code == PRE_DEC || code == POST_DEC)
2968 adjust = -adjust;
2969 else if (code == PRE_MODIFY || code == POST_MODIFY)
2971 rtx expr = XEXP (XEXP (x, 0), 1);
2972 HOST_WIDE_INT val;
2974 gcc_assert (GET_CODE (expr) == PLUS || GET_CODE (expr) == MINUS);
2975 gcc_assert (CONST_INT_P (XEXP (expr, 1)));
2976 val = INTVAL (XEXP (expr, 1));
2977 if (GET_CODE (expr) == MINUS)
2978 val = -val;
2979 gcc_assert (adjust == val || adjust == -val);
2980 adjust = val;
2983 /* Do not use anti_adjust_stack, since we don't want to update
2984 stack_pointer_delta. */
2985 temp = expand_simple_binop (Pmode, PLUS, stack_pointer_rtx,
2986 GEN_INT (adjust), stack_pointer_rtx,
2987 0, OPTAB_LIB_WIDEN);
2988 if (temp != stack_pointer_rtx)
2989 emit_move_insn (stack_pointer_rtx, temp);
2991 switch (code)
2993 case PRE_INC:
2994 case PRE_DEC:
2995 case PRE_MODIFY:
2996 temp = stack_pointer_rtx;
2997 break;
2998 case POST_INC:
2999 case POST_DEC:
3000 case POST_MODIFY:
3001 temp = plus_constant (stack_pointer_rtx, -adjust);
3002 break;
3003 default:
3004 gcc_unreachable ();
3007 return replace_equiv_address (x, temp);
3010 /* A subroutine of emit_move_complex. Generate a move from Y into X.
3011 X is known to satisfy push_operand, and MODE is known to be complex.
3012 Returns the last instruction emitted. */
3015 emit_move_complex_push (enum machine_mode mode, rtx x, rtx y)
3017 enum machine_mode submode = GET_MODE_INNER (mode);
3018 bool imag_first;
3020 #ifdef PUSH_ROUNDING
3021 unsigned int submodesize = GET_MODE_SIZE (submode);
3023 /* In case we output to the stack, but the size is smaller than the
3024 machine can push exactly, we need to use move instructions. */
3025 if (PUSH_ROUNDING (submodesize) != submodesize)
3027 x = emit_move_resolve_push (mode, x);
3028 return emit_move_insn (x, y);
3030 #endif
3032 /* Note that the real part always precedes the imag part in memory
3033 regardless of machine's endianness. */
3034 switch (GET_CODE (XEXP (x, 0)))
3036 case PRE_DEC:
3037 case POST_DEC:
3038 imag_first = true;
3039 break;
3040 case PRE_INC:
3041 case POST_INC:
3042 imag_first = false;
3043 break;
3044 default:
3045 gcc_unreachable ();
3048 emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3049 read_complex_part (y, imag_first));
3050 return emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
3051 read_complex_part (y, !imag_first));
3054 /* A subroutine of emit_move_complex. Perform the move from Y to X
3055 via two moves of the parts. Returns the last instruction emitted. */
3058 emit_move_complex_parts (rtx x, rtx y)
3060 /* Show the output dies here. This is necessary for SUBREGs
3061 of pseudos since we cannot track their lifetimes correctly;
3062 hard regs shouldn't appear here except as return values. */
3063 if (!reload_completed && !reload_in_progress
3064 && REG_P (x) && !reg_overlap_mentioned_p (x, y))
3065 emit_clobber (x);
3067 write_complex_part (x, read_complex_part (y, false), false);
3068 write_complex_part (x, read_complex_part (y, true), true);
3070 return get_last_insn ();
3073 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3074 MODE is known to be complex. Returns the last instruction emitted. */
3076 static rtx
3077 emit_move_complex (enum machine_mode mode, rtx x, rtx y)
3079 bool try_int;
3081 /* Need to take special care for pushes, to maintain proper ordering
3082 of the data, and possibly extra padding. */
3083 if (push_operand (x, mode))
3084 return emit_move_complex_push (mode, x, y);
3086 /* See if we can coerce the target into moving both values at once. */
3088 /* Move floating point as parts. */
3089 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
3090 && optab_handler (mov_optab, GET_MODE_INNER (mode)) != CODE_FOR_nothing)
3091 try_int = false;
3092 /* Not possible if the values are inherently not adjacent. */
3093 else if (GET_CODE (x) == CONCAT || GET_CODE (y) == CONCAT)
3094 try_int = false;
3095 /* Is possible if both are registers (or subregs of registers). */
3096 else if (register_operand (x, mode) && register_operand (y, mode))
3097 try_int = true;
3098 /* If one of the operands is a memory, and alignment constraints
3099 are friendly enough, we may be able to do combined memory operations.
3100 We do not attempt this if Y is a constant because that combination is
3101 usually better with the by-parts thing below. */
3102 else if ((MEM_P (x) ? !CONSTANT_P (y) : MEM_P (y))
3103 && (!STRICT_ALIGNMENT
3104 || get_mode_alignment (mode) == BIGGEST_ALIGNMENT))
3105 try_int = true;
3106 else
3107 try_int = false;
3109 if (try_int)
3111 rtx ret;
3113 /* For memory to memory moves, optimal behavior can be had with the
3114 existing block move logic. */
3115 if (MEM_P (x) && MEM_P (y))
3117 emit_block_move (x, y, GEN_INT (GET_MODE_SIZE (mode)),
3118 BLOCK_OP_NO_LIBCALL);
3119 return get_last_insn ();
3122 ret = emit_move_via_integer (mode, x, y, true);
3123 if (ret)
3124 return ret;
3127 return emit_move_complex_parts (x, y);
3130 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3131 MODE is known to be MODE_CC. Returns the last instruction emitted. */
3133 static rtx
3134 emit_move_ccmode (enum machine_mode mode, rtx x, rtx y)
3136 rtx ret;
3138 /* Assume all MODE_CC modes are equivalent; if we have movcc, use it. */
3139 if (mode != CCmode)
3141 enum insn_code code = optab_handler (mov_optab, CCmode);
3142 if (code != CODE_FOR_nothing)
3144 x = emit_move_change_mode (CCmode, mode, x, true);
3145 y = emit_move_change_mode (CCmode, mode, y, true);
3146 return emit_insn (GEN_FCN (code) (x, y));
3150 /* Otherwise, find the MODE_INT mode of the same width. */
3151 ret = emit_move_via_integer (mode, x, y, false);
3152 gcc_assert (ret != NULL);
3153 return ret;
3156 /* Return true if word I of OP lies entirely in the
3157 undefined bits of a paradoxical subreg. */
3159 static bool
3160 undefined_operand_subword_p (const_rtx op, int i)
3162 enum machine_mode innermode, innermostmode;
3163 int offset;
3164 if (GET_CODE (op) != SUBREG)
3165 return false;
3166 innermode = GET_MODE (op);
3167 innermostmode = GET_MODE (SUBREG_REG (op));
3168 offset = i * UNITS_PER_WORD + SUBREG_BYTE (op);
3169 /* The SUBREG_BYTE represents offset, as if the value were stored in
3170 memory, except for a paradoxical subreg where we define
3171 SUBREG_BYTE to be 0; undo this exception as in
3172 simplify_subreg. */
3173 if (SUBREG_BYTE (op) == 0
3174 && GET_MODE_SIZE (innermostmode) < GET_MODE_SIZE (innermode))
3176 int difference = (GET_MODE_SIZE (innermostmode) - GET_MODE_SIZE (innermode));
3177 if (WORDS_BIG_ENDIAN)
3178 offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
3179 if (BYTES_BIG_ENDIAN)
3180 offset += difference % UNITS_PER_WORD;
3182 if (offset >= GET_MODE_SIZE (innermostmode)
3183 || offset <= -GET_MODE_SIZE (word_mode))
3184 return true;
3185 return false;
3188 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3189 MODE is any multi-word or full-word mode that lacks a move_insn
3190 pattern. Note that you will get better code if you define such
3191 patterns, even if they must turn into multiple assembler instructions. */
3193 static rtx
3194 emit_move_multi_word (enum machine_mode mode, rtx x, rtx y)
3196 rtx last_insn = 0;
3197 rtx seq, inner;
3198 bool need_clobber;
3199 int i;
3201 gcc_assert (GET_MODE_SIZE (mode) >= UNITS_PER_WORD);
3203 /* If X is a push on the stack, do the push now and replace
3204 X with a reference to the stack pointer. */
3205 if (push_operand (x, mode))
3206 x = emit_move_resolve_push (mode, x);
3208 /* If we are in reload, see if either operand is a MEM whose address
3209 is scheduled for replacement. */
3210 if (reload_in_progress && MEM_P (x)
3211 && (inner = find_replacement (&XEXP (x, 0))) != XEXP (x, 0))
3212 x = replace_equiv_address_nv (x, inner);
3213 if (reload_in_progress && MEM_P (y)
3214 && (inner = find_replacement (&XEXP (y, 0))) != XEXP (y, 0))
3215 y = replace_equiv_address_nv (y, inner);
3217 start_sequence ();
3219 need_clobber = false;
3220 for (i = 0;
3221 i < (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
3222 i++)
3224 rtx xpart = operand_subword (x, i, 1, mode);
3225 rtx ypart;
3227 /* Do not generate code for a move if it would come entirely
3228 from the undefined bits of a paradoxical subreg. */
3229 if (undefined_operand_subword_p (y, i))
3230 continue;
3232 ypart = operand_subword (y, i, 1, mode);
3234 /* If we can't get a part of Y, put Y into memory if it is a
3235 constant. Otherwise, force it into a register. Then we must
3236 be able to get a part of Y. */
3237 if (ypart == 0 && CONSTANT_P (y))
3239 y = use_anchored_address (force_const_mem (mode, y));
3240 ypart = operand_subword (y, i, 1, mode);
3242 else if (ypart == 0)
3243 ypart = operand_subword_force (y, i, mode);
3245 gcc_assert (xpart && ypart);
3247 need_clobber |= (GET_CODE (xpart) == SUBREG);
3249 last_insn = emit_move_insn (xpart, ypart);
3252 seq = get_insns ();
3253 end_sequence ();
3255 /* Show the output dies here. This is necessary for SUBREGs
3256 of pseudos since we cannot track their lifetimes correctly;
3257 hard regs shouldn't appear here except as return values.
3258 We never want to emit such a clobber after reload. */
3259 if (x != y
3260 && ! (reload_in_progress || reload_completed)
3261 && need_clobber != 0)
3262 emit_clobber (x);
3264 emit_insn (seq);
3266 return last_insn;
3269 /* Low level part of emit_move_insn.
3270 Called just like emit_move_insn, but assumes X and Y
3271 are basically valid. */
3274 emit_move_insn_1 (rtx x, rtx y)
3276 enum machine_mode mode = GET_MODE (x);
3277 enum insn_code code;
3279 gcc_assert ((unsigned int) mode < (unsigned int) MAX_MACHINE_MODE);
3281 code = optab_handler (mov_optab, mode);
3282 if (code != CODE_FOR_nothing)
3283 return emit_insn (GEN_FCN (code) (x, y));
3285 /* Expand complex moves by moving real part and imag part. */
3286 if (COMPLEX_MODE_P (mode))
3287 return emit_move_complex (mode, x, y);
3289 if (GET_MODE_CLASS (mode) == MODE_DECIMAL_FLOAT
3290 || ALL_FIXED_POINT_MODE_P (mode))
3292 rtx result = emit_move_via_integer (mode, x, y, true);
3294 /* If we can't find an integer mode, use multi words. */
3295 if (result)
3296 return result;
3297 else
3298 return emit_move_multi_word (mode, x, y);
3301 if (GET_MODE_CLASS (mode) == MODE_CC)
3302 return emit_move_ccmode (mode, x, y);
3304 /* Try using a move pattern for the corresponding integer mode. This is
3305 only safe when simplify_subreg can convert MODE constants into integer
3306 constants. At present, it can only do this reliably if the value
3307 fits within a HOST_WIDE_INT. */
3308 if (!CONSTANT_P (y) || GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
3310 rtx ret = emit_move_via_integer (mode, x, y, false);
3311 if (ret)
3312 return ret;
3315 return emit_move_multi_word (mode, x, y);
3318 /* Generate code to copy Y into X.
3319 Both Y and X must have the same mode, except that
3320 Y can be a constant with VOIDmode.
3321 This mode cannot be BLKmode; use emit_block_move for that.
3323 Return the last instruction emitted. */
3326 emit_move_insn (rtx x, rtx y)
3328 enum machine_mode mode = GET_MODE (x);
3329 rtx y_cst = NULL_RTX;
3330 rtx last_insn, set;
3332 gcc_assert (mode != BLKmode
3333 && (GET_MODE (y) == mode || GET_MODE (y) == VOIDmode));
3335 if (CONSTANT_P (y))
3337 if (optimize
3338 && SCALAR_FLOAT_MODE_P (GET_MODE (x))
3339 && (last_insn = compress_float_constant (x, y)))
3340 return last_insn;
3342 y_cst = y;
3344 if (!targetm.legitimate_constant_p (mode, y))
3346 y = force_const_mem (mode, y);
3348 /* If the target's cannot_force_const_mem prevented the spill,
3349 assume that the target's move expanders will also take care
3350 of the non-legitimate constant. */
3351 if (!y)
3352 y = y_cst;
3353 else
3354 y = use_anchored_address (y);
3358 /* If X or Y are memory references, verify that their addresses are valid
3359 for the machine. */
3360 if (MEM_P (x)
3361 && (! memory_address_addr_space_p (GET_MODE (x), XEXP (x, 0),
3362 MEM_ADDR_SPACE (x))
3363 && ! push_operand (x, GET_MODE (x))))
3364 x = validize_mem (x);
3366 if (MEM_P (y)
3367 && ! memory_address_addr_space_p (GET_MODE (y), XEXP (y, 0),
3368 MEM_ADDR_SPACE (y)))
3369 y = validize_mem (y);
3371 gcc_assert (mode != BLKmode);
3373 last_insn = emit_move_insn_1 (x, y);
3375 if (y_cst && REG_P (x)
3376 && (set = single_set (last_insn)) != NULL_RTX
3377 && SET_DEST (set) == x
3378 && ! rtx_equal_p (y_cst, SET_SRC (set)))
3379 set_unique_reg_note (last_insn, REG_EQUAL, copy_rtx (y_cst));
3381 return last_insn;
3384 /* If Y is representable exactly in a narrower mode, and the target can
3385 perform the extension directly from constant or memory, then emit the
3386 move as an extension. */
3388 static rtx
3389 compress_float_constant (rtx x, rtx y)
3391 enum machine_mode dstmode = GET_MODE (x);
3392 enum machine_mode orig_srcmode = GET_MODE (y);
3393 enum machine_mode srcmode;
3394 REAL_VALUE_TYPE r;
3395 int oldcost, newcost;
3396 bool speed = optimize_insn_for_speed_p ();
3398 REAL_VALUE_FROM_CONST_DOUBLE (r, y);
3400 if (targetm.legitimate_constant_p (dstmode, y))
3401 oldcost = rtx_cost (y, SET, speed);
3402 else
3403 oldcost = rtx_cost (force_const_mem (dstmode, y), SET, speed);
3405 for (srcmode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_srcmode));
3406 srcmode != orig_srcmode;
3407 srcmode = GET_MODE_WIDER_MODE (srcmode))
3409 enum insn_code ic;
3410 rtx trunc_y, last_insn;
3412 /* Skip if the target can't extend this way. */
3413 ic = can_extend_p (dstmode, srcmode, 0);
3414 if (ic == CODE_FOR_nothing)
3415 continue;
3417 /* Skip if the narrowed value isn't exact. */
3418 if (! exact_real_truncate (srcmode, &r))
3419 continue;
3421 trunc_y = CONST_DOUBLE_FROM_REAL_VALUE (r, srcmode);
3423 if (targetm.legitimate_constant_p (srcmode, trunc_y))
3425 /* Skip if the target needs extra instructions to perform
3426 the extension. */
3427 if (!insn_operand_matches (ic, 1, trunc_y))
3428 continue;
3429 /* This is valid, but may not be cheaper than the original. */
3430 newcost = rtx_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y), SET, speed);
3431 if (oldcost < newcost)
3432 continue;
3434 else if (float_extend_from_mem[dstmode][srcmode])
3436 trunc_y = force_const_mem (srcmode, trunc_y);
3437 /* This is valid, but may not be cheaper than the original. */
3438 newcost = rtx_cost (gen_rtx_FLOAT_EXTEND (dstmode, trunc_y), SET, speed);
3439 if (oldcost < newcost)
3440 continue;
3441 trunc_y = validize_mem (trunc_y);
3443 else
3444 continue;
3446 /* For CSE's benefit, force the compressed constant pool entry
3447 into a new pseudo. This constant may be used in different modes,
3448 and if not, combine will put things back together for us. */
3449 trunc_y = force_reg (srcmode, trunc_y);
3450 emit_unop_insn (ic, x, trunc_y, UNKNOWN);
3451 last_insn = get_last_insn ();
3453 if (REG_P (x))
3454 set_unique_reg_note (last_insn, REG_EQUAL, y);
3456 return last_insn;
3459 return NULL_RTX;
3462 /* Pushing data onto the stack. */
3464 /* Push a block of length SIZE (perhaps variable)
3465 and return an rtx to address the beginning of the block.
3466 The value may be virtual_outgoing_args_rtx.
3468 EXTRA is the number of bytes of padding to push in addition to SIZE.
3469 BELOW nonzero means this padding comes at low addresses;
3470 otherwise, the padding comes at high addresses. */
3473 push_block (rtx size, int extra, int below)
3475 rtx temp;
3477 size = convert_modes (Pmode, ptr_mode, size, 1);
3478 if (CONSTANT_P (size))
3479 anti_adjust_stack (plus_constant (size, extra));
3480 else if (REG_P (size) && extra == 0)
3481 anti_adjust_stack (size);
3482 else
3484 temp = copy_to_mode_reg (Pmode, size);
3485 if (extra != 0)
3486 temp = expand_binop (Pmode, add_optab, temp, GEN_INT (extra),
3487 temp, 0, OPTAB_LIB_WIDEN);
3488 anti_adjust_stack (temp);
3491 #ifndef STACK_GROWS_DOWNWARD
3492 if (0)
3493 #else
3494 if (1)
3495 #endif
3497 temp = virtual_outgoing_args_rtx;
3498 if (extra != 0 && below)
3499 temp = plus_constant (temp, extra);
3501 else
3503 if (CONST_INT_P (size))
3504 temp = plus_constant (virtual_outgoing_args_rtx,
3505 -INTVAL (size) - (below ? 0 : extra));
3506 else if (extra != 0 && !below)
3507 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3508 negate_rtx (Pmode, plus_constant (size, extra)));
3509 else
3510 temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3511 negate_rtx (Pmode, size));
3514 return memory_address (GET_CLASS_NARROWEST_MODE (MODE_INT), temp);
3517 #ifdef PUSH_ROUNDING
3519 /* Emit single push insn. */
3521 static void
3522 emit_single_push_insn (enum machine_mode mode, rtx x, tree type)
3524 rtx dest_addr;
3525 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode));
3526 rtx dest;
3527 enum insn_code icode;
3529 stack_pointer_delta += PUSH_ROUNDING (GET_MODE_SIZE (mode));
3530 /* If there is push pattern, use it. Otherwise try old way of throwing
3531 MEM representing push operation to move expander. */
3532 icode = optab_handler (push_optab, mode);
3533 if (icode != CODE_FOR_nothing)
3535 struct expand_operand ops[1];
3537 create_input_operand (&ops[0], x, mode);
3538 if (maybe_expand_insn (icode, 1, ops))
3539 return;
3541 if (GET_MODE_SIZE (mode) == rounded_size)
3542 dest_addr = gen_rtx_fmt_e (STACK_PUSH_CODE, Pmode, stack_pointer_rtx);
3543 /* If we are to pad downward, adjust the stack pointer first and
3544 then store X into the stack location using an offset. This is
3545 because emit_move_insn does not know how to pad; it does not have
3546 access to type. */
3547 else if (FUNCTION_ARG_PADDING (mode, type) == downward)
3549 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode);
3550 HOST_WIDE_INT offset;
3552 emit_move_insn (stack_pointer_rtx,
3553 expand_binop (Pmode,
3554 #ifdef STACK_GROWS_DOWNWARD
3555 sub_optab,
3556 #else
3557 add_optab,
3558 #endif
3559 stack_pointer_rtx,
3560 GEN_INT (rounded_size),
3561 NULL_RTX, 0, OPTAB_LIB_WIDEN));
3563 offset = (HOST_WIDE_INT) padding_size;
3564 #ifdef STACK_GROWS_DOWNWARD
3565 if (STACK_PUSH_CODE == POST_DEC)
3566 /* We have already decremented the stack pointer, so get the
3567 previous value. */
3568 offset += (HOST_WIDE_INT) rounded_size;
3569 #else
3570 if (STACK_PUSH_CODE == POST_INC)
3571 /* We have already incremented the stack pointer, so get the
3572 previous value. */
3573 offset -= (HOST_WIDE_INT) rounded_size;
3574 #endif
3575 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT (offset));
3577 else
3579 #ifdef STACK_GROWS_DOWNWARD
3580 /* ??? This seems wrong if STACK_PUSH_CODE == POST_DEC. */
3581 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3582 GEN_INT (-(HOST_WIDE_INT) rounded_size));
3583 #else
3584 /* ??? This seems wrong if STACK_PUSH_CODE == POST_INC. */
3585 dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3586 GEN_INT (rounded_size));
3587 #endif
3588 dest_addr = gen_rtx_PRE_MODIFY (Pmode, stack_pointer_rtx, dest_addr);
3591 dest = gen_rtx_MEM (mode, dest_addr);
3593 if (type != 0)
3595 set_mem_attributes (dest, type, 1);
3597 if (flag_optimize_sibling_calls)
3598 /* Function incoming arguments may overlap with sibling call
3599 outgoing arguments and we cannot allow reordering of reads
3600 from function arguments with stores to outgoing arguments
3601 of sibling calls. */
3602 set_mem_alias_set (dest, 0);
3604 emit_move_insn (dest, x);
3606 #endif
3608 /* Generate code to push X onto the stack, assuming it has mode MODE and
3609 type TYPE.
3610 MODE is redundant except when X is a CONST_INT (since they don't
3611 carry mode info).
3612 SIZE is an rtx for the size of data to be copied (in bytes),
3613 needed only if X is BLKmode.
3615 ALIGN (in bits) is maximum alignment we can assume.
3617 If PARTIAL and REG are both nonzero, then copy that many of the first
3618 bytes of X into registers starting with REG, and push the rest of X.
3619 The amount of space pushed is decreased by PARTIAL bytes.
3620 REG must be a hard register in this case.
3621 If REG is zero but PARTIAL is not, take any all others actions for an
3622 argument partially in registers, but do not actually load any
3623 registers.
3625 EXTRA is the amount in bytes of extra space to leave next to this arg.
3626 This is ignored if an argument block has already been allocated.
3628 On a machine that lacks real push insns, ARGS_ADDR is the address of
3629 the bottom of the argument block for this call. We use indexing off there
3630 to store the arg. On machines with push insns, ARGS_ADDR is 0 when a
3631 argument block has not been preallocated.
3633 ARGS_SO_FAR is the size of args previously pushed for this call.
3635 REG_PARM_STACK_SPACE is nonzero if functions require stack space
3636 for arguments passed in registers. If nonzero, it will be the number
3637 of bytes required. */
3639 void
3640 emit_push_insn (rtx x, enum machine_mode mode, tree type, rtx size,
3641 unsigned int align, int partial, rtx reg, int extra,
3642 rtx args_addr, rtx args_so_far, int reg_parm_stack_space,
3643 rtx alignment_pad)
3645 rtx xinner;
3646 enum direction stack_direction
3647 #ifdef STACK_GROWS_DOWNWARD
3648 = downward;
3649 #else
3650 = upward;
3651 #endif
3653 /* Decide where to pad the argument: `downward' for below,
3654 `upward' for above, or `none' for don't pad it.
3655 Default is below for small data on big-endian machines; else above. */
3656 enum direction where_pad = FUNCTION_ARG_PADDING (mode, type);
3658 /* Invert direction if stack is post-decrement.
3659 FIXME: why? */
3660 if (STACK_PUSH_CODE == POST_DEC)
3661 if (where_pad != none)
3662 where_pad = (where_pad == downward ? upward : downward);
3664 xinner = x;
3666 if (mode == BLKmode
3667 || (STRICT_ALIGNMENT && align < GET_MODE_ALIGNMENT (mode)))
3669 /* Copy a block into the stack, entirely or partially. */
3671 rtx temp;
3672 int used;
3673 int offset;
3674 int skip;
3676 offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
3677 used = partial - offset;
3679 if (mode != BLKmode)
3681 /* A value is to be stored in an insufficiently aligned
3682 stack slot; copy via a suitably aligned slot if
3683 necessary. */
3684 size = GEN_INT (GET_MODE_SIZE (mode));
3685 if (!MEM_P (xinner))
3687 temp = assign_temp (type, 0, 1, 1);
3688 emit_move_insn (temp, xinner);
3689 xinner = temp;
3693 gcc_assert (size);
3695 /* USED is now the # of bytes we need not copy to the stack
3696 because registers will take care of them. */
3698 if (partial != 0)
3699 xinner = adjust_address (xinner, BLKmode, used);
3701 /* If the partial register-part of the arg counts in its stack size,
3702 skip the part of stack space corresponding to the registers.
3703 Otherwise, start copying to the beginning of the stack space,
3704 by setting SKIP to 0. */
3705 skip = (reg_parm_stack_space == 0) ? 0 : used;
3707 #ifdef PUSH_ROUNDING
3708 /* Do it with several push insns if that doesn't take lots of insns
3709 and if there is no difficulty with push insns that skip bytes
3710 on the stack for alignment purposes. */
3711 if (args_addr == 0
3712 && PUSH_ARGS
3713 && CONST_INT_P (size)
3714 && skip == 0
3715 && MEM_ALIGN (xinner) >= align
3716 && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size) - used, align))
3717 /* Here we avoid the case of a structure whose weak alignment
3718 forces many pushes of a small amount of data,
3719 and such small pushes do rounding that causes trouble. */
3720 && ((! SLOW_UNALIGNED_ACCESS (word_mode, align))
3721 || align >= BIGGEST_ALIGNMENT
3722 || (PUSH_ROUNDING (align / BITS_PER_UNIT)
3723 == (align / BITS_PER_UNIT)))
3724 && (HOST_WIDE_INT) PUSH_ROUNDING (INTVAL (size)) == INTVAL (size))
3726 /* Push padding now if padding above and stack grows down,
3727 or if padding below and stack grows up.
3728 But if space already allocated, this has already been done. */
3729 if (extra && args_addr == 0
3730 && where_pad != none && where_pad != stack_direction)
3731 anti_adjust_stack (GEN_INT (extra));
3733 move_by_pieces (NULL, xinner, INTVAL (size) - used, align, 0);
3735 else
3736 #endif /* PUSH_ROUNDING */
3738 rtx target;
3740 /* Otherwise make space on the stack and copy the data
3741 to the address of that space. */
3743 /* Deduct words put into registers from the size we must copy. */
3744 if (partial != 0)
3746 if (CONST_INT_P (size))
3747 size = GEN_INT (INTVAL (size) - used);
3748 else
3749 size = expand_binop (GET_MODE (size), sub_optab, size,
3750 GEN_INT (used), NULL_RTX, 0,
3751 OPTAB_LIB_WIDEN);
3754 /* Get the address of the stack space.
3755 In this case, we do not deal with EXTRA separately.
3756 A single stack adjust will do. */
3757 if (! args_addr)
3759 temp = push_block (size, extra, where_pad == downward);
3760 extra = 0;
3762 else if (CONST_INT_P (args_so_far))
3763 temp = memory_address (BLKmode,
3764 plus_constant (args_addr,
3765 skip + INTVAL (args_so_far)));
3766 else
3767 temp = memory_address (BLKmode,
3768 plus_constant (gen_rtx_PLUS (Pmode,
3769 args_addr,
3770 args_so_far),
3771 skip));
3773 if (!ACCUMULATE_OUTGOING_ARGS)
3775 /* If the source is referenced relative to the stack pointer,
3776 copy it to another register to stabilize it. We do not need
3777 to do this if we know that we won't be changing sp. */
3779 if (reg_mentioned_p (virtual_stack_dynamic_rtx, temp)
3780 || reg_mentioned_p (virtual_outgoing_args_rtx, temp))
3781 temp = copy_to_reg (temp);
3784 target = gen_rtx_MEM (BLKmode, temp);
3786 /* We do *not* set_mem_attributes here, because incoming arguments
3787 may overlap with sibling call outgoing arguments and we cannot
3788 allow reordering of reads from function arguments with stores
3789 to outgoing arguments of sibling calls. We do, however, want
3790 to record the alignment of the stack slot. */
3791 /* ALIGN may well be better aligned than TYPE, e.g. due to
3792 PARM_BOUNDARY. Assume the caller isn't lying. */
3793 set_mem_align (target, align);
3795 emit_block_move (target, xinner, size, BLOCK_OP_CALL_PARM);
3798 else if (partial > 0)
3800 /* Scalar partly in registers. */
3802 int size = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
3803 int i;
3804 int not_stack;
3805 /* # bytes of start of argument
3806 that we must make space for but need not store. */
3807 int offset = partial % (PARM_BOUNDARY / BITS_PER_UNIT);
3808 int args_offset = INTVAL (args_so_far);
3809 int skip;
3811 /* Push padding now if padding above and stack grows down,
3812 or if padding below and stack grows up.
3813 But if space already allocated, this has already been done. */
3814 if (extra && args_addr == 0
3815 && where_pad != none && where_pad != stack_direction)
3816 anti_adjust_stack (GEN_INT (extra));
3818 /* If we make space by pushing it, we might as well push
3819 the real data. Otherwise, we can leave OFFSET nonzero
3820 and leave the space uninitialized. */
3821 if (args_addr == 0)
3822 offset = 0;
3824 /* Now NOT_STACK gets the number of words that we don't need to
3825 allocate on the stack. Convert OFFSET to words too. */
3826 not_stack = (partial - offset) / UNITS_PER_WORD;
3827 offset /= UNITS_PER_WORD;
3829 /* If the partial register-part of the arg counts in its stack size,
3830 skip the part of stack space corresponding to the registers.
3831 Otherwise, start copying to the beginning of the stack space,
3832 by setting SKIP to 0. */
3833 skip = (reg_parm_stack_space == 0) ? 0 : not_stack;
3835 if (CONSTANT_P (x) && !targetm.legitimate_constant_p (mode, x))
3836 x = validize_mem (force_const_mem (mode, x));
3838 /* If X is a hard register in a non-integer mode, copy it into a pseudo;
3839 SUBREGs of such registers are not allowed. */
3840 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
3841 && GET_MODE_CLASS (GET_MODE (x)) != MODE_INT))
3842 x = copy_to_reg (x);
3844 /* Loop over all the words allocated on the stack for this arg. */
3845 /* We can do it by words, because any scalar bigger than a word
3846 has a size a multiple of a word. */
3847 #ifndef PUSH_ARGS_REVERSED
3848 for (i = not_stack; i < size; i++)
3849 #else
3850 for (i = size - 1; i >= not_stack; i--)
3851 #endif
3852 if (i >= not_stack + offset)
3853 emit_push_insn (operand_subword_force (x, i, mode),
3854 word_mode, NULL_TREE, NULL_RTX, align, 0, NULL_RTX,
3855 0, args_addr,
3856 GEN_INT (args_offset + ((i - not_stack + skip)
3857 * UNITS_PER_WORD)),
3858 reg_parm_stack_space, alignment_pad);
3860 else
3862 rtx addr;
3863 rtx dest;
3865 /* Push padding now if padding above and stack grows down,
3866 or if padding below and stack grows up.
3867 But if space already allocated, this has already been done. */
3868 if (extra && args_addr == 0
3869 && where_pad != none && where_pad != stack_direction)
3870 anti_adjust_stack (GEN_INT (extra));
3872 #ifdef PUSH_ROUNDING
3873 if (args_addr == 0 && PUSH_ARGS)
3874 emit_single_push_insn (mode, x, type);
3875 else
3876 #endif
3878 if (CONST_INT_P (args_so_far))
3879 addr
3880 = memory_address (mode,
3881 plus_constant (args_addr,
3882 INTVAL (args_so_far)));
3883 else
3884 addr = memory_address (mode, gen_rtx_PLUS (Pmode, args_addr,
3885 args_so_far));
3886 dest = gen_rtx_MEM (mode, addr);
3888 /* We do *not* set_mem_attributes here, because incoming arguments
3889 may overlap with sibling call outgoing arguments and we cannot
3890 allow reordering of reads from function arguments with stores
3891 to outgoing arguments of sibling calls. We do, however, want
3892 to record the alignment of the stack slot. */
3893 /* ALIGN may well be better aligned than TYPE, e.g. due to
3894 PARM_BOUNDARY. Assume the caller isn't lying. */
3895 set_mem_align (dest, align);
3897 emit_move_insn (dest, x);
3901 /* If part should go in registers, copy that part
3902 into the appropriate registers. Do this now, at the end,
3903 since mem-to-mem copies above may do function calls. */
3904 if (partial > 0 && reg != 0)
3906 /* Handle calls that pass values in multiple non-contiguous locations.
3907 The Irix 6 ABI has examples of this. */
3908 if (GET_CODE (reg) == PARALLEL)
3909 emit_group_load (reg, x, type, -1);
3910 else
3912 gcc_assert (partial % UNITS_PER_WORD == 0);
3913 move_block_to_reg (REGNO (reg), x, partial / UNITS_PER_WORD, mode);
3917 if (extra && args_addr == 0 && where_pad == stack_direction)
3918 anti_adjust_stack (GEN_INT (extra));
3920 if (alignment_pad && args_addr == 0)
3921 anti_adjust_stack (alignment_pad);
3924 /* Return X if X can be used as a subtarget in a sequence of arithmetic
3925 operations. */
3927 static rtx
3928 get_subtarget (rtx x)
3930 return (optimize
3931 || x == 0
3932 /* Only registers can be subtargets. */
3933 || !REG_P (x)
3934 /* Don't use hard regs to avoid extending their life. */
3935 || REGNO (x) < FIRST_PSEUDO_REGISTER
3936 ? 0 : x);
3939 /* A subroutine of expand_assignment. Optimize FIELD op= VAL, where
3940 FIELD is a bitfield. Returns true if the optimization was successful,
3941 and there's nothing else to do. */
3943 static bool
3944 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize,
3945 unsigned HOST_WIDE_INT bitpos,
3946 unsigned HOST_WIDE_INT bitregion_start,
3947 unsigned HOST_WIDE_INT bitregion_end,
3948 enum machine_mode mode1, rtx str_rtx,
3949 tree to, tree src)
3951 enum machine_mode str_mode = GET_MODE (str_rtx);
3952 unsigned int str_bitsize = GET_MODE_BITSIZE (str_mode);
3953 tree op0, op1;
3954 rtx value, result;
3955 optab binop;
3956 gimple srcstmt;
3957 enum tree_code code;
3959 if (mode1 != VOIDmode
3960 || bitsize >= BITS_PER_WORD
3961 || str_bitsize > BITS_PER_WORD
3962 || TREE_SIDE_EFFECTS (to)
3963 || TREE_THIS_VOLATILE (to))
3964 return false;
3966 STRIP_NOPS (src);
3967 if (TREE_CODE (src) != SSA_NAME)
3968 return false;
3969 if (TREE_CODE (TREE_TYPE (src)) != INTEGER_TYPE)
3970 return false;
3972 srcstmt = get_gimple_for_ssa_name (src);
3973 if (!srcstmt
3974 || TREE_CODE_CLASS (gimple_assign_rhs_code (srcstmt)) != tcc_binary)
3975 return false;
3977 code = gimple_assign_rhs_code (srcstmt);
3979 op0 = gimple_assign_rhs1 (srcstmt);
3981 /* If OP0 is an SSA_NAME, then we want to walk the use-def chain
3982 to find its initialization. Hopefully the initialization will
3983 be from a bitfield load. */
3984 if (TREE_CODE (op0) == SSA_NAME)
3986 gimple op0stmt = get_gimple_for_ssa_name (op0);
3988 /* We want to eventually have OP0 be the same as TO, which
3989 should be a bitfield. */
3990 if (!op0stmt
3991 || !is_gimple_assign (op0stmt)
3992 || gimple_assign_rhs_code (op0stmt) != TREE_CODE (to))
3993 return false;
3994 op0 = gimple_assign_rhs1 (op0stmt);
3997 op1 = gimple_assign_rhs2 (srcstmt);
3999 if (!operand_equal_p (to, op0, 0))
4000 return false;
4002 if (MEM_P (str_rtx))
4004 unsigned HOST_WIDE_INT offset1;
4006 if (str_bitsize == 0 || str_bitsize > BITS_PER_WORD)
4007 str_mode = word_mode;
4008 str_mode = get_best_mode (bitsize, bitpos,
4009 bitregion_start, bitregion_end,
4010 MEM_ALIGN (str_rtx), str_mode, 0);
4011 if (str_mode == VOIDmode)
4012 return false;
4013 str_bitsize = GET_MODE_BITSIZE (str_mode);
4015 offset1 = bitpos;
4016 bitpos %= str_bitsize;
4017 offset1 = (offset1 - bitpos) / BITS_PER_UNIT;
4018 str_rtx = adjust_address (str_rtx, str_mode, offset1);
4020 else if (!REG_P (str_rtx) && GET_CODE (str_rtx) != SUBREG)
4021 return false;
4023 /* If the bit field covers the whole REG/MEM, store_field
4024 will likely generate better code. */
4025 if (bitsize >= str_bitsize)
4026 return false;
4028 /* We can't handle fields split across multiple entities. */
4029 if (bitpos + bitsize > str_bitsize)
4030 return false;
4032 if (BYTES_BIG_ENDIAN)
4033 bitpos = str_bitsize - bitpos - bitsize;
4035 switch (code)
4037 case PLUS_EXPR:
4038 case MINUS_EXPR:
4039 /* For now, just optimize the case of the topmost bitfield
4040 where we don't need to do any masking and also
4041 1 bit bitfields where xor can be used.
4042 We might win by one instruction for the other bitfields
4043 too if insv/extv instructions aren't used, so that
4044 can be added later. */
4045 if (bitpos + bitsize != str_bitsize
4046 && (bitsize != 1 || TREE_CODE (op1) != INTEGER_CST))
4047 break;
4049 value = expand_expr (op1, NULL_RTX, str_mode, EXPAND_NORMAL);
4050 value = convert_modes (str_mode,
4051 TYPE_MODE (TREE_TYPE (op1)), value,
4052 TYPE_UNSIGNED (TREE_TYPE (op1)));
4054 /* We may be accessing data outside the field, which means
4055 we can alias adjacent data. */
4056 if (MEM_P (str_rtx))
4058 str_rtx = shallow_copy_rtx (str_rtx);
4059 set_mem_alias_set (str_rtx, 0);
4060 set_mem_expr (str_rtx, 0);
4063 binop = code == PLUS_EXPR ? add_optab : sub_optab;
4064 if (bitsize == 1 && bitpos + bitsize != str_bitsize)
4066 value = expand_and (str_mode, value, const1_rtx, NULL);
4067 binop = xor_optab;
4069 value = expand_shift (LSHIFT_EXPR, str_mode, value,
4070 bitpos, NULL_RTX, 1);
4071 result = expand_binop (str_mode, binop, str_rtx,
4072 value, str_rtx, 1, OPTAB_WIDEN);
4073 if (result != str_rtx)
4074 emit_move_insn (str_rtx, result);
4075 return true;
4077 case BIT_IOR_EXPR:
4078 case BIT_XOR_EXPR:
4079 if (TREE_CODE (op1) != INTEGER_CST)
4080 break;
4081 value = expand_expr (op1, NULL_RTX, GET_MODE (str_rtx), EXPAND_NORMAL);
4082 value = convert_modes (GET_MODE (str_rtx),
4083 TYPE_MODE (TREE_TYPE (op1)), value,
4084 TYPE_UNSIGNED (TREE_TYPE (op1)));
4086 /* We may be accessing data outside the field, which means
4087 we can alias adjacent data. */
4088 if (MEM_P (str_rtx))
4090 str_rtx = shallow_copy_rtx (str_rtx);
4091 set_mem_alias_set (str_rtx, 0);
4092 set_mem_expr (str_rtx, 0);
4095 binop = code == BIT_IOR_EXPR ? ior_optab : xor_optab;
4096 if (bitpos + bitsize != GET_MODE_BITSIZE (GET_MODE (str_rtx)))
4098 rtx mask = GEN_INT (((unsigned HOST_WIDE_INT) 1 << bitsize)
4099 - 1);
4100 value = expand_and (GET_MODE (str_rtx), value, mask,
4101 NULL_RTX);
4103 value = expand_shift (LSHIFT_EXPR, GET_MODE (str_rtx), value,
4104 bitpos, NULL_RTX, 1);
4105 result = expand_binop (GET_MODE (str_rtx), binop, str_rtx,
4106 value, str_rtx, 1, OPTAB_WIDEN);
4107 if (result != str_rtx)
4108 emit_move_insn (str_rtx, result);
4109 return true;
4111 default:
4112 break;
4115 return false;
4118 /* In the C++ memory model, consecutive bit fields in a structure are
4119 considered one memory location.
4121 Given a COMPONENT_REF, this function returns the bit range of
4122 consecutive bits in which this COMPONENT_REF belongs in. The
4123 values are returned in *BITSTART and *BITEND. If either the C++
4124 memory model is not activated, or this memory access is not thread
4125 visible, 0 is returned in *BITSTART and *BITEND.
4127 EXP is the COMPONENT_REF.
4128 INNERDECL is the actual object being referenced.
4129 BITPOS is the position in bits where the bit starts within the structure.
4130 BITSIZE is size in bits of the field being referenced in EXP.
4132 For example, while storing into FOO.A here...
4134 struct {
4135 BIT 0:
4136 unsigned int a : 4;
4137 unsigned int b : 1;
4138 BIT 8:
4139 unsigned char c;
4140 unsigned int d : 6;
4141 } foo;
4143 ...we are not allowed to store past <b>, so for the layout above, a
4144 range of 0..7 (because no one cares if we store into the
4145 padding). */
4147 static void
4148 get_bit_range (unsigned HOST_WIDE_INT *bitstart,
4149 unsigned HOST_WIDE_INT *bitend,
4150 tree exp, tree innerdecl,
4151 HOST_WIDE_INT bitpos, HOST_WIDE_INT bitsize)
4153 tree field, record_type, fld;
4154 bool found_field = false;
4155 bool prev_field_is_bitfield;
4157 gcc_assert (TREE_CODE (exp) == COMPONENT_REF);
4159 /* If other threads can't see this value, no need to restrict stores. */
4160 if (ALLOW_STORE_DATA_RACES
4161 || ((TREE_CODE (innerdecl) == MEM_REF
4162 || TREE_CODE (innerdecl) == TARGET_MEM_REF)
4163 && !ptr_deref_may_alias_global_p (TREE_OPERAND (innerdecl, 0)))
4164 || (DECL_P (innerdecl)
4165 && (DECL_THREAD_LOCAL_P (innerdecl)
4166 || !TREE_STATIC (innerdecl))))
4168 *bitstart = *bitend = 0;
4169 return;
4172 /* Bit field we're storing into. */
4173 field = TREE_OPERAND (exp, 1);
4174 record_type = DECL_FIELD_CONTEXT (field);
4176 /* Count the contiguous bitfields for the memory location that
4177 contains FIELD. */
4178 *bitstart = 0;
4179 prev_field_is_bitfield = true;
4180 for (fld = TYPE_FIELDS (record_type); fld; fld = DECL_CHAIN (fld))
4182 tree t, offset;
4183 enum machine_mode mode;
4184 int unsignedp, volatilep;
4186 if (TREE_CODE (fld) != FIELD_DECL)
4187 continue;
4189 t = build3 (COMPONENT_REF, TREE_TYPE (exp),
4190 unshare_expr (TREE_OPERAND (exp, 0)),
4191 fld, NULL_TREE);
4192 get_inner_reference (t, &bitsize, &bitpos, &offset,
4193 &mode, &unsignedp, &volatilep, true);
4195 if (field == fld)
4196 found_field = true;
4198 if (DECL_BIT_FIELD_TYPE (fld) && bitsize > 0)
4200 if (prev_field_is_bitfield == false)
4202 *bitstart = bitpos;
4203 prev_field_is_bitfield = true;
4206 else
4208 prev_field_is_bitfield = false;
4209 if (found_field)
4210 break;
4213 gcc_assert (found_field);
4215 if (fld)
4217 /* We found the end of the bit field sequence. Include the
4218 padding up to the next field and be done. */
4219 *bitend = bitpos - 1;
4221 else
4223 /* If this is the last element in the structure, include the padding
4224 at the end of structure. */
4225 *bitend = TREE_INT_CST_LOW (TYPE_SIZE (record_type)) - 1;
4229 /* Expand an assignment that stores the value of FROM into TO. If NONTEMPORAL
4230 is true, try generating a nontemporal store. */
4232 void
4233 expand_assignment (tree to, tree from, bool nontemporal)
4235 rtx to_rtx = 0;
4236 rtx result;
4237 enum machine_mode mode;
4238 int align;
4239 enum insn_code icode;
4241 /* Don't crash if the lhs of the assignment was erroneous. */
4242 if (TREE_CODE (to) == ERROR_MARK)
4244 expand_normal (from);
4245 return;
4248 /* Optimize away no-op moves without side-effects. */
4249 if (operand_equal_p (to, from, 0))
4250 return;
4252 mode = TYPE_MODE (TREE_TYPE (to));
4253 if ((TREE_CODE (to) == MEM_REF
4254 || TREE_CODE (to) == TARGET_MEM_REF)
4255 && mode != BLKmode
4256 && ((align = MAX (TYPE_ALIGN (TREE_TYPE (to)),
4257 get_object_alignment (to, BIGGEST_ALIGNMENT)))
4258 < (signed) GET_MODE_ALIGNMENT (mode))
4259 && ((icode = optab_handler (movmisalign_optab, mode))
4260 != CODE_FOR_nothing))
4262 struct expand_operand ops[2];
4263 enum machine_mode address_mode;
4264 rtx reg, op0, mem;
4266 reg = expand_expr (from, NULL_RTX, VOIDmode, EXPAND_NORMAL);
4267 reg = force_not_mem (reg);
4269 if (TREE_CODE (to) == MEM_REF)
4271 addr_space_t as
4272 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (to, 1))));
4273 tree base = TREE_OPERAND (to, 0);
4274 address_mode = targetm.addr_space.address_mode (as);
4275 op0 = expand_expr (base, NULL_RTX, VOIDmode, EXPAND_NORMAL);
4276 op0 = convert_memory_address_addr_space (address_mode, op0, as);
4277 if (!integer_zerop (TREE_OPERAND (to, 1)))
4279 rtx off
4280 = immed_double_int_const (mem_ref_offset (to), address_mode);
4281 op0 = simplify_gen_binary (PLUS, address_mode, op0, off);
4283 op0 = memory_address_addr_space (mode, op0, as);
4284 mem = gen_rtx_MEM (mode, op0);
4285 set_mem_attributes (mem, to, 0);
4286 set_mem_addr_space (mem, as);
4288 else if (TREE_CODE (to) == TARGET_MEM_REF)
4290 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (to));
4291 struct mem_address addr;
4293 get_address_description (to, &addr);
4294 op0 = addr_for_mem_ref (&addr, as, true);
4295 op0 = memory_address_addr_space (mode, op0, as);
4296 mem = gen_rtx_MEM (mode, op0);
4297 set_mem_attributes (mem, to, 0);
4298 set_mem_addr_space (mem, as);
4300 else
4301 gcc_unreachable ();
4302 if (TREE_THIS_VOLATILE (to))
4303 MEM_VOLATILE_P (mem) = 1;
4305 create_fixed_operand (&ops[0], mem);
4306 create_input_operand (&ops[1], reg, mode);
4307 /* The movmisalign<mode> pattern cannot fail, else the assignment would
4308 silently be omitted. */
4309 expand_insn (icode, 2, ops);
4310 return;
4313 /* Assignment of a structure component needs special treatment
4314 if the structure component's rtx is not simply a MEM.
4315 Assignment of an array element at a constant index, and assignment of
4316 an array element in an unaligned packed structure field, has the same
4317 problem. */
4318 if (handled_component_p (to)
4319 /* ??? We only need to handle MEM_REF here if the access is not
4320 a full access of the base object. */
4321 || (TREE_CODE (to) == MEM_REF
4322 && TREE_CODE (TREE_OPERAND (to, 0)) == ADDR_EXPR)
4323 || TREE_CODE (TREE_TYPE (to)) == ARRAY_TYPE)
4325 enum machine_mode mode1;
4326 HOST_WIDE_INT bitsize, bitpos;
4327 unsigned HOST_WIDE_INT bitregion_start = 0;
4328 unsigned HOST_WIDE_INT bitregion_end = 0;
4329 tree offset;
4330 int unsignedp;
4331 int volatilep = 0;
4332 tree tem;
4334 push_temp_slots ();
4335 tem = get_inner_reference (to, &bitsize, &bitpos, &offset, &mode1,
4336 &unsignedp, &volatilep, true);
4338 if (TREE_CODE (to) == COMPONENT_REF
4339 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (to, 1)))
4340 get_bit_range (&bitregion_start, &bitregion_end,
4341 to, tem, bitpos, bitsize);
4343 /* If we are going to use store_bit_field and extract_bit_field,
4344 make sure to_rtx will be safe for multiple use. */
4346 to_rtx = expand_normal (tem);
4348 /* If the bitfield is volatile, we want to access it in the
4349 field's mode, not the computed mode.
4350 If a MEM has VOIDmode (external with incomplete type),
4351 use BLKmode for it instead. */
4352 if (MEM_P (to_rtx))
4354 if (volatilep && flag_strict_volatile_bitfields > 0)
4355 to_rtx = adjust_address (to_rtx, mode1, 0);
4356 else if (GET_MODE (to_rtx) == VOIDmode)
4357 to_rtx = adjust_address (to_rtx, BLKmode, 0);
4360 if (offset != 0)
4362 enum machine_mode address_mode;
4363 rtx offset_rtx;
4365 if (!MEM_P (to_rtx))
4367 /* We can get constant negative offsets into arrays with broken
4368 user code. Translate this to a trap instead of ICEing. */
4369 gcc_assert (TREE_CODE (offset) == INTEGER_CST);
4370 expand_builtin_trap ();
4371 to_rtx = gen_rtx_MEM (BLKmode, const0_rtx);
4374 offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode, EXPAND_SUM);
4375 address_mode
4376 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to_rtx));
4377 if (GET_MODE (offset_rtx) != address_mode)
4378 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
4380 /* A constant address in TO_RTX can have VOIDmode, we must not try
4381 to call force_reg for that case. Avoid that case. */
4382 if (MEM_P (to_rtx)
4383 && GET_MODE (to_rtx) == BLKmode
4384 && GET_MODE (XEXP (to_rtx, 0)) != VOIDmode
4385 && bitsize > 0
4386 && (bitpos % bitsize) == 0
4387 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
4388 && MEM_ALIGN (to_rtx) == GET_MODE_ALIGNMENT (mode1))
4390 to_rtx = adjust_address (to_rtx, mode1, bitpos / BITS_PER_UNIT);
4391 bitpos = 0;
4394 to_rtx = offset_address (to_rtx, offset_rtx,
4395 highest_pow2_factor_for_target (to,
4396 offset));
4399 /* No action is needed if the target is not a memory and the field
4400 lies completely outside that target. This can occur if the source
4401 code contains an out-of-bounds access to a small array. */
4402 if (!MEM_P (to_rtx)
4403 && GET_MODE (to_rtx) != BLKmode
4404 && (unsigned HOST_WIDE_INT) bitpos
4405 >= GET_MODE_PRECISION (GET_MODE (to_rtx)))
4407 expand_normal (from);
4408 result = NULL;
4410 /* Handle expand_expr of a complex value returning a CONCAT. */
4411 else if (GET_CODE (to_rtx) == CONCAT)
4413 unsigned short mode_bitsize = GET_MODE_BITSIZE (GET_MODE (to_rtx));
4414 if (COMPLEX_MODE_P (TYPE_MODE (TREE_TYPE (from)))
4415 && bitpos == 0
4416 && bitsize == mode_bitsize)
4417 result = store_expr (from, to_rtx, false, nontemporal);
4418 else if (bitsize == mode_bitsize / 2
4419 && (bitpos == 0 || bitpos == mode_bitsize / 2))
4420 result = store_expr (from, XEXP (to_rtx, bitpos != 0), false,
4421 nontemporal);
4422 else if (bitpos + bitsize <= mode_bitsize / 2)
4423 result = store_field (XEXP (to_rtx, 0), bitsize, bitpos,
4424 bitregion_start, bitregion_end,
4425 mode1, from, TREE_TYPE (tem),
4426 get_alias_set (to), nontemporal);
4427 else if (bitpos >= mode_bitsize / 2)
4428 result = store_field (XEXP (to_rtx, 1), bitsize,
4429 bitpos - mode_bitsize / 2,
4430 bitregion_start, bitregion_end,
4431 mode1, from,
4432 TREE_TYPE (tem), get_alias_set (to),
4433 nontemporal);
4434 else if (bitpos == 0 && bitsize == mode_bitsize)
4436 rtx from_rtx;
4437 result = expand_normal (from);
4438 from_rtx = simplify_gen_subreg (GET_MODE (to_rtx), result,
4439 TYPE_MODE (TREE_TYPE (from)), 0);
4440 emit_move_insn (XEXP (to_rtx, 0),
4441 read_complex_part (from_rtx, false));
4442 emit_move_insn (XEXP (to_rtx, 1),
4443 read_complex_part (from_rtx, true));
4445 else
4447 rtx temp = assign_stack_temp (GET_MODE (to_rtx),
4448 GET_MODE_SIZE (GET_MODE (to_rtx)),
4450 write_complex_part (temp, XEXP (to_rtx, 0), false);
4451 write_complex_part (temp, XEXP (to_rtx, 1), true);
4452 result = store_field (temp, bitsize, bitpos,
4453 bitregion_start, bitregion_end,
4454 mode1, from,
4455 TREE_TYPE (tem), get_alias_set (to),
4456 nontemporal);
4457 emit_move_insn (XEXP (to_rtx, 0), read_complex_part (temp, false));
4458 emit_move_insn (XEXP (to_rtx, 1), read_complex_part (temp, true));
4461 else
4463 if (MEM_P (to_rtx))
4465 /* If the field is at offset zero, we could have been given the
4466 DECL_RTX of the parent struct. Don't munge it. */
4467 to_rtx = shallow_copy_rtx (to_rtx);
4469 set_mem_attributes_minus_bitpos (to_rtx, to, 0, bitpos);
4471 /* Deal with volatile and readonly fields. The former is only
4472 done for MEM. Also set MEM_KEEP_ALIAS_SET_P if needed. */
4473 if (volatilep)
4474 MEM_VOLATILE_P (to_rtx) = 1;
4475 if (component_uses_parent_alias_set (to))
4476 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
4479 if (optimize_bitfield_assignment_op (bitsize, bitpos,
4480 bitregion_start, bitregion_end,
4481 mode1,
4482 to_rtx, to, from))
4483 result = NULL;
4484 else
4485 result = store_field (to_rtx, bitsize, bitpos,
4486 bitregion_start, bitregion_end,
4487 mode1, from,
4488 TREE_TYPE (tem), get_alias_set (to),
4489 nontemporal);
4492 if (result)
4493 preserve_temp_slots (result);
4494 free_temp_slots ();
4495 pop_temp_slots ();
4496 return;
4499 /* If the rhs is a function call and its value is not an aggregate,
4500 call the function before we start to compute the lhs.
4501 This is needed for correct code for cases such as
4502 val = setjmp (buf) on machines where reference to val
4503 requires loading up part of an address in a separate insn.
4505 Don't do this if TO is a VAR_DECL or PARM_DECL whose DECL_RTL is REG
4506 since it might be a promoted variable where the zero- or sign- extension
4507 needs to be done. Handling this in the normal way is safe because no
4508 computation is done before the call. The same is true for SSA names. */
4509 if (TREE_CODE (from) == CALL_EXPR && ! aggregate_value_p (from, from)
4510 && COMPLETE_TYPE_P (TREE_TYPE (from))
4511 && TREE_CODE (TYPE_SIZE (TREE_TYPE (from))) == INTEGER_CST
4512 && ! (((TREE_CODE (to) == VAR_DECL || TREE_CODE (to) == PARM_DECL)
4513 && REG_P (DECL_RTL (to)))
4514 || TREE_CODE (to) == SSA_NAME))
4516 rtx value;
4518 push_temp_slots ();
4519 value = expand_normal (from);
4520 if (to_rtx == 0)
4521 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
4523 /* Handle calls that return values in multiple non-contiguous locations.
4524 The Irix 6 ABI has examples of this. */
4525 if (GET_CODE (to_rtx) == PARALLEL)
4526 emit_group_load (to_rtx, value, TREE_TYPE (from),
4527 int_size_in_bytes (TREE_TYPE (from)));
4528 else if (GET_MODE (to_rtx) == BLKmode)
4529 emit_block_move (to_rtx, value, expr_size (from), BLOCK_OP_NORMAL);
4530 else
4532 if (POINTER_TYPE_P (TREE_TYPE (to)))
4533 value = convert_memory_address_addr_space
4534 (GET_MODE (to_rtx), value,
4535 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (to))));
4537 emit_move_insn (to_rtx, value);
4539 preserve_temp_slots (to_rtx);
4540 free_temp_slots ();
4541 pop_temp_slots ();
4542 return;
4545 /* Ordinary treatment. Expand TO to get a REG or MEM rtx.
4546 Don't re-expand if it was expanded already (in COMPONENT_REF case). */
4548 if (to_rtx == 0)
4549 to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
4551 /* Don't move directly into a return register. */
4552 if (TREE_CODE (to) == RESULT_DECL
4553 && (REG_P (to_rtx) || GET_CODE (to_rtx) == PARALLEL))
4555 rtx temp;
4557 push_temp_slots ();
4558 temp = expand_expr (from, NULL_RTX, GET_MODE (to_rtx), EXPAND_NORMAL);
4560 if (GET_CODE (to_rtx) == PARALLEL)
4561 emit_group_load (to_rtx, temp, TREE_TYPE (from),
4562 int_size_in_bytes (TREE_TYPE (from)));
4563 else
4564 emit_move_insn (to_rtx, temp);
4566 preserve_temp_slots (to_rtx);
4567 free_temp_slots ();
4568 pop_temp_slots ();
4569 return;
4572 /* In case we are returning the contents of an object which overlaps
4573 the place the value is being stored, use a safe function when copying
4574 a value through a pointer into a structure value return block. */
4575 if (TREE_CODE (to) == RESULT_DECL
4576 && TREE_CODE (from) == INDIRECT_REF
4577 && ADDR_SPACE_GENERIC_P
4578 (TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (from, 0)))))
4579 && refs_may_alias_p (to, from)
4580 && cfun->returns_struct
4581 && !cfun->returns_pcc_struct)
4583 rtx from_rtx, size;
4585 push_temp_slots ();
4586 size = expr_size (from);
4587 from_rtx = expand_normal (from);
4589 emit_library_call (memmove_libfunc, LCT_NORMAL,
4590 VOIDmode, 3, XEXP (to_rtx, 0), Pmode,
4591 XEXP (from_rtx, 0), Pmode,
4592 convert_to_mode (TYPE_MODE (sizetype),
4593 size, TYPE_UNSIGNED (sizetype)),
4594 TYPE_MODE (sizetype));
4596 preserve_temp_slots (to_rtx);
4597 free_temp_slots ();
4598 pop_temp_slots ();
4599 return;
4602 /* Compute FROM and store the value in the rtx we got. */
4604 push_temp_slots ();
4605 result = store_expr (from, to_rtx, 0, nontemporal);
4606 preserve_temp_slots (result);
4607 free_temp_slots ();
4608 pop_temp_slots ();
4609 return;
4612 /* Emits nontemporal store insn that moves FROM to TO. Returns true if this
4613 succeeded, false otherwise. */
4615 bool
4616 emit_storent_insn (rtx to, rtx from)
4618 struct expand_operand ops[2];
4619 enum machine_mode mode = GET_MODE (to);
4620 enum insn_code code = optab_handler (storent_optab, mode);
4622 if (code == CODE_FOR_nothing)
4623 return false;
4625 create_fixed_operand (&ops[0], to);
4626 create_input_operand (&ops[1], from, mode);
4627 return maybe_expand_insn (code, 2, ops);
4630 /* Generate code for computing expression EXP,
4631 and storing the value into TARGET.
4633 If the mode is BLKmode then we may return TARGET itself.
4634 It turns out that in BLKmode it doesn't cause a problem.
4635 because C has no operators that could combine two different
4636 assignments into the same BLKmode object with different values
4637 with no sequence point. Will other languages need this to
4638 be more thorough?
4640 If CALL_PARAM_P is nonzero, this is a store into a call param on the
4641 stack, and block moves may need to be treated specially.
4643 If NONTEMPORAL is true, try using a nontemporal store instruction. */
4646 store_expr (tree exp, rtx target, int call_param_p, bool nontemporal)
4648 rtx temp;
4649 rtx alt_rtl = NULL_RTX;
4650 location_t loc = EXPR_LOCATION (exp);
4652 if (VOID_TYPE_P (TREE_TYPE (exp)))
4654 /* C++ can generate ?: expressions with a throw expression in one
4655 branch and an rvalue in the other. Here, we resolve attempts to
4656 store the throw expression's nonexistent result. */
4657 gcc_assert (!call_param_p);
4658 expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
4659 return NULL_RTX;
4661 if (TREE_CODE (exp) == COMPOUND_EXPR)
4663 /* Perform first part of compound expression, then assign from second
4664 part. */
4665 expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode,
4666 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
4667 return store_expr (TREE_OPERAND (exp, 1), target, call_param_p,
4668 nontemporal);
4670 else if (TREE_CODE (exp) == COND_EXPR && GET_MODE (target) == BLKmode)
4672 /* For conditional expression, get safe form of the target. Then
4673 test the condition, doing the appropriate assignment on either
4674 side. This avoids the creation of unnecessary temporaries.
4675 For non-BLKmode, it is more efficient not to do this. */
4677 rtx lab1 = gen_label_rtx (), lab2 = gen_label_rtx ();
4679 do_pending_stack_adjust ();
4680 NO_DEFER_POP;
4681 jumpifnot (TREE_OPERAND (exp, 0), lab1, -1);
4682 store_expr (TREE_OPERAND (exp, 1), target, call_param_p,
4683 nontemporal);
4684 emit_jump_insn (gen_jump (lab2));
4685 emit_barrier ();
4686 emit_label (lab1);
4687 store_expr (TREE_OPERAND (exp, 2), target, call_param_p,
4688 nontemporal);
4689 emit_label (lab2);
4690 OK_DEFER_POP;
4692 return NULL_RTX;
4694 else if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
4695 /* If this is a scalar in a register that is stored in a wider mode
4696 than the declared mode, compute the result into its declared mode
4697 and then convert to the wider mode. Our value is the computed
4698 expression. */
4700 rtx inner_target = 0;
4702 /* We can do the conversion inside EXP, which will often result
4703 in some optimizations. Do the conversion in two steps: first
4704 change the signedness, if needed, then the extend. But don't
4705 do this if the type of EXP is a subtype of something else
4706 since then the conversion might involve more than just
4707 converting modes. */
4708 if (INTEGRAL_TYPE_P (TREE_TYPE (exp))
4709 && TREE_TYPE (TREE_TYPE (exp)) == 0
4710 && GET_MODE_PRECISION (GET_MODE (target))
4711 == TYPE_PRECISION (TREE_TYPE (exp)))
4713 if (TYPE_UNSIGNED (TREE_TYPE (exp))
4714 != SUBREG_PROMOTED_UNSIGNED_P (target))
4716 /* Some types, e.g. Fortran's logical*4, won't have a signed
4717 version, so use the mode instead. */
4718 tree ntype
4719 = (signed_or_unsigned_type_for
4720 (SUBREG_PROMOTED_UNSIGNED_P (target), TREE_TYPE (exp)));
4721 if (ntype == NULL)
4722 ntype = lang_hooks.types.type_for_mode
4723 (TYPE_MODE (TREE_TYPE (exp)),
4724 SUBREG_PROMOTED_UNSIGNED_P (target));
4726 exp = fold_convert_loc (loc, ntype, exp);
4729 exp = fold_convert_loc (loc, lang_hooks.types.type_for_mode
4730 (GET_MODE (SUBREG_REG (target)),
4731 SUBREG_PROMOTED_UNSIGNED_P (target)),
4732 exp);
4734 inner_target = SUBREG_REG (target);
4737 temp = expand_expr (exp, inner_target, VOIDmode,
4738 call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
4740 /* If TEMP is a VOIDmode constant, use convert_modes to make
4741 sure that we properly convert it. */
4742 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
4744 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
4745 temp, SUBREG_PROMOTED_UNSIGNED_P (target));
4746 temp = convert_modes (GET_MODE (SUBREG_REG (target)),
4747 GET_MODE (target), temp,
4748 SUBREG_PROMOTED_UNSIGNED_P (target));
4751 convert_move (SUBREG_REG (target), temp,
4752 SUBREG_PROMOTED_UNSIGNED_P (target));
4754 return NULL_RTX;
4756 else if ((TREE_CODE (exp) == STRING_CST
4757 || (TREE_CODE (exp) == MEM_REF
4758 && TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
4759 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
4760 == STRING_CST
4761 && integer_zerop (TREE_OPERAND (exp, 1))))
4762 && !nontemporal && !call_param_p
4763 && MEM_P (target))
4765 /* Optimize initialization of an array with a STRING_CST. */
4766 HOST_WIDE_INT exp_len, str_copy_len;
4767 rtx dest_mem;
4768 tree str = TREE_CODE (exp) == STRING_CST
4769 ? exp : TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
4771 exp_len = int_expr_size (exp);
4772 if (exp_len <= 0)
4773 goto normal_expr;
4775 if (TREE_STRING_LENGTH (str) <= 0)
4776 goto normal_expr;
4778 str_copy_len = strlen (TREE_STRING_POINTER (str));
4779 if (str_copy_len < TREE_STRING_LENGTH (str) - 1)
4780 goto normal_expr;
4782 str_copy_len = TREE_STRING_LENGTH (str);
4783 if ((STORE_MAX_PIECES & (STORE_MAX_PIECES - 1)) == 0
4784 && TREE_STRING_POINTER (str)[TREE_STRING_LENGTH (str) - 1] == '\0')
4786 str_copy_len += STORE_MAX_PIECES - 1;
4787 str_copy_len &= ~(STORE_MAX_PIECES - 1);
4789 str_copy_len = MIN (str_copy_len, exp_len);
4790 if (!can_store_by_pieces (str_copy_len, builtin_strncpy_read_str,
4791 CONST_CAST (char *, TREE_STRING_POINTER (str)),
4792 MEM_ALIGN (target), false))
4793 goto normal_expr;
4795 dest_mem = target;
4797 dest_mem = store_by_pieces (dest_mem,
4798 str_copy_len, builtin_strncpy_read_str,
4799 CONST_CAST (char *,
4800 TREE_STRING_POINTER (str)),
4801 MEM_ALIGN (target), false,
4802 exp_len > str_copy_len ? 1 : 0);
4803 if (exp_len > str_copy_len)
4804 clear_storage (adjust_address (dest_mem, BLKmode, 0),
4805 GEN_INT (exp_len - str_copy_len),
4806 BLOCK_OP_NORMAL);
4807 return NULL_RTX;
4809 else
4811 rtx tmp_target;
4813 normal_expr:
4814 /* If we want to use a nontemporal store, force the value to
4815 register first. */
4816 tmp_target = nontemporal ? NULL_RTX : target;
4817 temp = expand_expr_real (exp, tmp_target, GET_MODE (target),
4818 (call_param_p
4819 ? EXPAND_STACK_PARM : EXPAND_NORMAL),
4820 &alt_rtl);
4823 /* If TEMP is a VOIDmode constant and the mode of the type of EXP is not
4824 the same as that of TARGET, adjust the constant. This is needed, for
4825 example, in case it is a CONST_DOUBLE and we want only a word-sized
4826 value. */
4827 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode
4828 && TREE_CODE (exp) != ERROR_MARK
4829 && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
4830 temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
4831 temp, TYPE_UNSIGNED (TREE_TYPE (exp)));
4833 /* If value was not generated in the target, store it there.
4834 Convert the value to TARGET's type first if necessary and emit the
4835 pending incrementations that have been queued when expanding EXP.
4836 Note that we cannot emit the whole queue blindly because this will
4837 effectively disable the POST_INC optimization later.
4839 If TEMP and TARGET compare equal according to rtx_equal_p, but
4840 one or both of them are volatile memory refs, we have to distinguish
4841 two cases:
4842 - expand_expr has used TARGET. In this case, we must not generate
4843 another copy. This can be detected by TARGET being equal according
4844 to == .
4845 - expand_expr has not used TARGET - that means that the source just
4846 happens to have the same RTX form. Since temp will have been created
4847 by expand_expr, it will compare unequal according to == .
4848 We must generate a copy in this case, to reach the correct number
4849 of volatile memory references. */
4851 if ((! rtx_equal_p (temp, target)
4852 || (temp != target && (side_effects_p (temp)
4853 || side_effects_p (target))))
4854 && TREE_CODE (exp) != ERROR_MARK
4855 /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET,
4856 but TARGET is not valid memory reference, TEMP will differ
4857 from TARGET although it is really the same location. */
4858 && !(alt_rtl
4859 && rtx_equal_p (alt_rtl, target)
4860 && !side_effects_p (alt_rtl)
4861 && !side_effects_p (target))
4862 /* If there's nothing to copy, don't bother. Don't call
4863 expr_size unless necessary, because some front-ends (C++)
4864 expr_size-hook must not be given objects that are not
4865 supposed to be bit-copied or bit-initialized. */
4866 && expr_size (exp) != const0_rtx)
4868 if (GET_MODE (temp) != GET_MODE (target)
4869 && GET_MODE (temp) != VOIDmode)
4871 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
4872 if (GET_MODE (target) == BLKmode
4873 && GET_MODE (temp) == BLKmode)
4874 emit_block_move (target, temp, expr_size (exp),
4875 (call_param_p
4876 ? BLOCK_OP_CALL_PARM
4877 : BLOCK_OP_NORMAL));
4878 else if (GET_MODE (target) == BLKmode)
4879 store_bit_field (target, INTVAL (expr_size (exp)) * BITS_PER_UNIT,
4880 0, 0, 0, GET_MODE (temp), temp);
4881 else
4882 convert_move (target, temp, unsignedp);
4885 else if (GET_MODE (temp) == BLKmode && TREE_CODE (exp) == STRING_CST)
4887 /* Handle copying a string constant into an array. The string
4888 constant may be shorter than the array. So copy just the string's
4889 actual length, and clear the rest. First get the size of the data
4890 type of the string, which is actually the size of the target. */
4891 rtx size = expr_size (exp);
4893 if (CONST_INT_P (size)
4894 && INTVAL (size) < TREE_STRING_LENGTH (exp))
4895 emit_block_move (target, temp, size,
4896 (call_param_p
4897 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4898 else
4900 enum machine_mode pointer_mode
4901 = targetm.addr_space.pointer_mode (MEM_ADDR_SPACE (target));
4902 enum machine_mode address_mode
4903 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (target));
4905 /* Compute the size of the data to copy from the string. */
4906 tree copy_size
4907 = size_binop_loc (loc, MIN_EXPR,
4908 make_tree (sizetype, size),
4909 size_int (TREE_STRING_LENGTH (exp)));
4910 rtx copy_size_rtx
4911 = expand_expr (copy_size, NULL_RTX, VOIDmode,
4912 (call_param_p
4913 ? EXPAND_STACK_PARM : EXPAND_NORMAL));
4914 rtx label = 0;
4916 /* Copy that much. */
4917 copy_size_rtx = convert_to_mode (pointer_mode, copy_size_rtx,
4918 TYPE_UNSIGNED (sizetype));
4919 emit_block_move (target, temp, copy_size_rtx,
4920 (call_param_p
4921 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4923 /* Figure out how much is left in TARGET that we have to clear.
4924 Do all calculations in pointer_mode. */
4925 if (CONST_INT_P (copy_size_rtx))
4927 size = plus_constant (size, -INTVAL (copy_size_rtx));
4928 target = adjust_address (target, BLKmode,
4929 INTVAL (copy_size_rtx));
4931 else
4933 size = expand_binop (TYPE_MODE (sizetype), sub_optab, size,
4934 copy_size_rtx, NULL_RTX, 0,
4935 OPTAB_LIB_WIDEN);
4937 if (GET_MODE (copy_size_rtx) != address_mode)
4938 copy_size_rtx = convert_to_mode (address_mode,
4939 copy_size_rtx,
4940 TYPE_UNSIGNED (sizetype));
4942 target = offset_address (target, copy_size_rtx,
4943 highest_pow2_factor (copy_size));
4944 label = gen_label_rtx ();
4945 emit_cmp_and_jump_insns (size, const0_rtx, LT, NULL_RTX,
4946 GET_MODE (size), 0, label);
4949 if (size != const0_rtx)
4950 clear_storage (target, size, BLOCK_OP_NORMAL);
4952 if (label)
4953 emit_label (label);
4956 /* Handle calls that return values in multiple non-contiguous locations.
4957 The Irix 6 ABI has examples of this. */
4958 else if (GET_CODE (target) == PARALLEL)
4959 emit_group_load (target, temp, TREE_TYPE (exp),
4960 int_size_in_bytes (TREE_TYPE (exp)));
4961 else if (GET_MODE (temp) == BLKmode)
4962 emit_block_move (target, temp, expr_size (exp),
4963 (call_param_p
4964 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4965 else if (nontemporal
4966 && emit_storent_insn (target, temp))
4967 /* If we managed to emit a nontemporal store, there is nothing else to
4968 do. */
4970 else
4972 temp = force_operand (temp, target);
4973 if (temp != target)
4974 emit_move_insn (target, temp);
4978 return NULL_RTX;
4981 /* Return true if field F of structure TYPE is a flexible array. */
4983 static bool
4984 flexible_array_member_p (const_tree f, const_tree type)
4986 const_tree tf;
4988 tf = TREE_TYPE (f);
4989 return (DECL_CHAIN (f) == NULL
4990 && TREE_CODE (tf) == ARRAY_TYPE
4991 && TYPE_DOMAIN (tf)
4992 && TYPE_MIN_VALUE (TYPE_DOMAIN (tf))
4993 && integer_zerop (TYPE_MIN_VALUE (TYPE_DOMAIN (tf)))
4994 && !TYPE_MAX_VALUE (TYPE_DOMAIN (tf))
4995 && int_size_in_bytes (type) >= 0);
4998 /* If FOR_CTOR_P, return the number of top-level elements that a constructor
4999 must have in order for it to completely initialize a value of type TYPE.
5000 Return -1 if the number isn't known.
5002 If !FOR_CTOR_P, return an estimate of the number of scalars in TYPE. */
5004 static HOST_WIDE_INT
5005 count_type_elements (const_tree type, bool for_ctor_p)
5007 switch (TREE_CODE (type))
5009 case ARRAY_TYPE:
5011 tree nelts;
5013 nelts = array_type_nelts (type);
5014 if (nelts && host_integerp (nelts, 1))
5016 unsigned HOST_WIDE_INT n;
5018 n = tree_low_cst (nelts, 1) + 1;
5019 if (n == 0 || for_ctor_p)
5020 return n;
5021 else
5022 return n * count_type_elements (TREE_TYPE (type), false);
5024 return for_ctor_p ? -1 : 1;
5027 case RECORD_TYPE:
5029 unsigned HOST_WIDE_INT n;
5030 tree f;
5032 n = 0;
5033 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
5034 if (TREE_CODE (f) == FIELD_DECL)
5036 if (!for_ctor_p)
5037 n += count_type_elements (TREE_TYPE (f), false);
5038 else if (!flexible_array_member_p (f, type))
5039 /* Don't count flexible arrays, which are not supposed
5040 to be initialized. */
5041 n += 1;
5044 return n;
5047 case UNION_TYPE:
5048 case QUAL_UNION_TYPE:
5050 tree f;
5051 HOST_WIDE_INT n, m;
5053 gcc_assert (!for_ctor_p);
5054 /* Estimate the number of scalars in each field and pick the
5055 maximum. Other estimates would do instead; the idea is simply
5056 to make sure that the estimate is not sensitive to the ordering
5057 of the fields. */
5058 n = 1;
5059 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
5060 if (TREE_CODE (f) == FIELD_DECL)
5062 m = count_type_elements (TREE_TYPE (f), false);
5063 /* If the field doesn't span the whole union, add an extra
5064 scalar for the rest. */
5065 if (simple_cst_equal (TYPE_SIZE (TREE_TYPE (f)),
5066 TYPE_SIZE (type)) != 1)
5067 m++;
5068 if (n < m)
5069 n = m;
5071 return n;
5074 case COMPLEX_TYPE:
5075 return 2;
5077 case VECTOR_TYPE:
5078 return TYPE_VECTOR_SUBPARTS (type);
5080 case INTEGER_TYPE:
5081 case REAL_TYPE:
5082 case FIXED_POINT_TYPE:
5083 case ENUMERAL_TYPE:
5084 case BOOLEAN_TYPE:
5085 case POINTER_TYPE:
5086 case OFFSET_TYPE:
5087 case REFERENCE_TYPE:
5088 return 1;
5090 case ERROR_MARK:
5091 return 0;
5093 case VOID_TYPE:
5094 case METHOD_TYPE:
5095 case FUNCTION_TYPE:
5096 case LANG_TYPE:
5097 default:
5098 gcc_unreachable ();
5102 /* Helper for categorize_ctor_elements. Identical interface. */
5104 static bool
5105 categorize_ctor_elements_1 (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
5106 HOST_WIDE_INT *p_init_elts, bool *p_complete)
5108 unsigned HOST_WIDE_INT idx;
5109 HOST_WIDE_INT nz_elts, init_elts, num_fields;
5110 tree value, purpose, elt_type;
5112 /* Whether CTOR is a valid constant initializer, in accordance with what
5113 initializer_constant_valid_p does. If inferred from the constructor
5114 elements, true until proven otherwise. */
5115 bool const_from_elts_p = constructor_static_from_elts_p (ctor);
5116 bool const_p = const_from_elts_p ? true : TREE_STATIC (ctor);
5118 nz_elts = 0;
5119 init_elts = 0;
5120 num_fields = 0;
5121 elt_type = NULL_TREE;
5123 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), idx, purpose, value)
5125 HOST_WIDE_INT mult = 1;
5127 if (TREE_CODE (purpose) == RANGE_EXPR)
5129 tree lo_index = TREE_OPERAND (purpose, 0);
5130 tree hi_index = TREE_OPERAND (purpose, 1);
5132 if (host_integerp (lo_index, 1) && host_integerp (hi_index, 1))
5133 mult = (tree_low_cst (hi_index, 1)
5134 - tree_low_cst (lo_index, 1) + 1);
5136 num_fields += mult;
5137 elt_type = TREE_TYPE (value);
5139 switch (TREE_CODE (value))
5141 case CONSTRUCTOR:
5143 HOST_WIDE_INT nz = 0, ic = 0;
5145 bool const_elt_p = categorize_ctor_elements_1 (value, &nz, &ic,
5146 p_complete);
5148 nz_elts += mult * nz;
5149 init_elts += mult * ic;
5151 if (const_from_elts_p && const_p)
5152 const_p = const_elt_p;
5154 break;
5156 case INTEGER_CST:
5157 case REAL_CST:
5158 case FIXED_CST:
5159 if (!initializer_zerop (value))
5160 nz_elts += mult;
5161 init_elts += mult;
5162 break;
5164 case STRING_CST:
5165 nz_elts += mult * TREE_STRING_LENGTH (value);
5166 init_elts += mult * TREE_STRING_LENGTH (value);
5167 break;
5169 case COMPLEX_CST:
5170 if (!initializer_zerop (TREE_REALPART (value)))
5171 nz_elts += mult;
5172 if (!initializer_zerop (TREE_IMAGPART (value)))
5173 nz_elts += mult;
5174 init_elts += mult;
5175 break;
5177 case VECTOR_CST:
5179 tree v;
5180 for (v = TREE_VECTOR_CST_ELTS (value); v; v = TREE_CHAIN (v))
5182 if (!initializer_zerop (TREE_VALUE (v)))
5183 nz_elts += mult;
5184 init_elts += mult;
5187 break;
5189 default:
5191 HOST_WIDE_INT tc = count_type_elements (elt_type, false);
5192 nz_elts += mult * tc;
5193 init_elts += mult * tc;
5195 if (const_from_elts_p && const_p)
5196 const_p = initializer_constant_valid_p (value, elt_type)
5197 != NULL_TREE;
5199 break;
5203 if (*p_complete && !complete_ctor_at_level_p (TREE_TYPE (ctor),
5204 num_fields, elt_type))
5205 *p_complete = false;
5207 *p_nz_elts += nz_elts;
5208 *p_init_elts += init_elts;
5210 return const_p;
5213 /* Examine CTOR to discover:
5214 * how many scalar fields are set to nonzero values,
5215 and place it in *P_NZ_ELTS;
5216 * how many scalar fields in total are in CTOR,
5217 and place it in *P_ELT_COUNT.
5218 * whether the constructor is complete -- in the sense that every
5219 meaningful byte is explicitly given a value --
5220 and place it in *P_COMPLETE.
5222 Return whether or not CTOR is a valid static constant initializer, the same
5223 as "initializer_constant_valid_p (CTOR, TREE_TYPE (CTOR)) != 0". */
5225 bool
5226 categorize_ctor_elements (const_tree ctor, HOST_WIDE_INT *p_nz_elts,
5227 HOST_WIDE_INT *p_init_elts, bool *p_complete)
5229 *p_nz_elts = 0;
5230 *p_init_elts = 0;
5231 *p_complete = true;
5233 return categorize_ctor_elements_1 (ctor, p_nz_elts, p_init_elts, p_complete);
5236 /* TYPE is initialized by a constructor with NUM_ELTS elements, the last
5237 of which had type LAST_TYPE. Each element was itself a complete
5238 initializer, in the sense that every meaningful byte was explicitly
5239 given a value. Return true if the same is true for the constructor
5240 as a whole. */
5242 bool
5243 complete_ctor_at_level_p (const_tree type, HOST_WIDE_INT num_elts,
5244 const_tree last_type)
5246 if (TREE_CODE (type) == UNION_TYPE
5247 || TREE_CODE (type) == QUAL_UNION_TYPE)
5249 if (num_elts == 0)
5250 return false;
5252 gcc_assert (num_elts == 1 && last_type);
5254 /* ??? We could look at each element of the union, and find the
5255 largest element. Which would avoid comparing the size of the
5256 initialized element against any tail padding in the union.
5257 Doesn't seem worth the effort... */
5258 return simple_cst_equal (TYPE_SIZE (type), TYPE_SIZE (last_type)) == 1;
5261 return count_type_elements (type, true) == num_elts;
5264 /* Return 1 if EXP contains mostly (3/4) zeros. */
5266 static int
5267 mostly_zeros_p (const_tree exp)
5269 if (TREE_CODE (exp) == CONSTRUCTOR)
5271 HOST_WIDE_INT nz_elts, init_elts;
5272 bool complete_p;
5274 categorize_ctor_elements (exp, &nz_elts, &init_elts, &complete_p);
5275 return !complete_p || nz_elts < init_elts / 4;
5278 return initializer_zerop (exp);
5281 /* Return 1 if EXP contains all zeros. */
5283 static int
5284 all_zeros_p (const_tree exp)
5286 if (TREE_CODE (exp) == CONSTRUCTOR)
5288 HOST_WIDE_INT nz_elts, init_elts;
5289 bool complete_p;
5291 categorize_ctor_elements (exp, &nz_elts, &init_elts, &complete_p);
5292 return nz_elts == 0;
5295 return initializer_zerop (exp);
5298 /* Helper function for store_constructor.
5299 TARGET, BITSIZE, BITPOS, MODE, EXP are as for store_field.
5300 TYPE is the type of the CONSTRUCTOR, not the element type.
5301 CLEARED is as for store_constructor.
5302 ALIAS_SET is the alias set to use for any stores.
5304 This provides a recursive shortcut back to store_constructor when it isn't
5305 necessary to go through store_field. This is so that we can pass through
5306 the cleared field to let store_constructor know that we may not have to
5307 clear a substructure if the outer structure has already been cleared. */
5309 static void
5310 store_constructor_field (rtx target, unsigned HOST_WIDE_INT bitsize,
5311 HOST_WIDE_INT bitpos, enum machine_mode mode,
5312 tree exp, tree type, int cleared,
5313 alias_set_type alias_set)
5315 if (TREE_CODE (exp) == CONSTRUCTOR
5316 /* We can only call store_constructor recursively if the size and
5317 bit position are on a byte boundary. */
5318 && bitpos % BITS_PER_UNIT == 0
5319 && (bitsize > 0 && bitsize % BITS_PER_UNIT == 0)
5320 /* If we have a nonzero bitpos for a register target, then we just
5321 let store_field do the bitfield handling. This is unlikely to
5322 generate unnecessary clear instructions anyways. */
5323 && (bitpos == 0 || MEM_P (target)))
5325 if (MEM_P (target))
5326 target
5327 = adjust_address (target,
5328 GET_MODE (target) == BLKmode
5329 || 0 != (bitpos
5330 % GET_MODE_ALIGNMENT (GET_MODE (target)))
5331 ? BLKmode : VOIDmode, bitpos / BITS_PER_UNIT);
5334 /* Update the alias set, if required. */
5335 if (MEM_P (target) && ! MEM_KEEP_ALIAS_SET_P (target)
5336 && MEM_ALIAS_SET (target) != 0)
5338 target = copy_rtx (target);
5339 set_mem_alias_set (target, alias_set);
5342 store_constructor (exp, target, cleared, bitsize / BITS_PER_UNIT);
5344 else
5345 store_field (target, bitsize, bitpos, 0, 0, mode, exp, type, alias_set,
5346 false);
5349 /* Store the value of constructor EXP into the rtx TARGET.
5350 TARGET is either a REG or a MEM; we know it cannot conflict, since
5351 safe_from_p has been called.
5352 CLEARED is true if TARGET is known to have been zero'd.
5353 SIZE is the number of bytes of TARGET we are allowed to modify: this
5354 may not be the same as the size of EXP if we are assigning to a field
5355 which has been packed to exclude padding bits. */
5357 static void
5358 store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
5360 tree type = TREE_TYPE (exp);
5361 #ifdef WORD_REGISTER_OPERATIONS
5362 HOST_WIDE_INT exp_size = int_size_in_bytes (type);
5363 #endif
5365 switch (TREE_CODE (type))
5367 case RECORD_TYPE:
5368 case UNION_TYPE:
5369 case QUAL_UNION_TYPE:
5371 unsigned HOST_WIDE_INT idx;
5372 tree field, value;
5374 /* If size is zero or the target is already cleared, do nothing. */
5375 if (size == 0 || cleared)
5376 cleared = 1;
5377 /* We either clear the aggregate or indicate the value is dead. */
5378 else if ((TREE_CODE (type) == UNION_TYPE
5379 || TREE_CODE (type) == QUAL_UNION_TYPE)
5380 && ! CONSTRUCTOR_ELTS (exp))
5381 /* If the constructor is empty, clear the union. */
5383 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
5384 cleared = 1;
5387 /* If we are building a static constructor into a register,
5388 set the initial value as zero so we can fold the value into
5389 a constant. But if more than one register is involved,
5390 this probably loses. */
5391 else if (REG_P (target) && TREE_STATIC (exp)
5392 && GET_MODE_SIZE (GET_MODE (target)) <= UNITS_PER_WORD)
5394 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5395 cleared = 1;
5398 /* If the constructor has fewer fields than the structure or
5399 if we are initializing the structure to mostly zeros, clear
5400 the whole structure first. Don't do this if TARGET is a
5401 register whose mode size isn't equal to SIZE since
5402 clear_storage can't handle this case. */
5403 else if (size > 0
5404 && (((int)VEC_length (constructor_elt, CONSTRUCTOR_ELTS (exp))
5405 != fields_length (type))
5406 || mostly_zeros_p (exp))
5407 && (!REG_P (target)
5408 || ((HOST_WIDE_INT) GET_MODE_SIZE (GET_MODE (target))
5409 == size)))
5411 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5412 cleared = 1;
5415 if (REG_P (target) && !cleared)
5416 emit_clobber (target);
5418 /* Store each element of the constructor into the
5419 corresponding field of TARGET. */
5420 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, field, value)
5422 enum machine_mode mode;
5423 HOST_WIDE_INT bitsize;
5424 HOST_WIDE_INT bitpos = 0;
5425 tree offset;
5426 rtx to_rtx = target;
5428 /* Just ignore missing fields. We cleared the whole
5429 structure, above, if any fields are missing. */
5430 if (field == 0)
5431 continue;
5433 if (cleared && initializer_zerop (value))
5434 continue;
5436 if (host_integerp (DECL_SIZE (field), 1))
5437 bitsize = tree_low_cst (DECL_SIZE (field), 1);
5438 else
5439 bitsize = -1;
5441 mode = DECL_MODE (field);
5442 if (DECL_BIT_FIELD (field))
5443 mode = VOIDmode;
5445 offset = DECL_FIELD_OFFSET (field);
5446 if (host_integerp (offset, 0)
5447 && host_integerp (bit_position (field), 0))
5449 bitpos = int_bit_position (field);
5450 offset = 0;
5452 else
5453 bitpos = tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 0);
5455 if (offset)
5457 enum machine_mode address_mode;
5458 rtx offset_rtx;
5460 offset
5461 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (offset,
5462 make_tree (TREE_TYPE (exp),
5463 target));
5465 offset_rtx = expand_normal (offset);
5466 gcc_assert (MEM_P (to_rtx));
5468 address_mode
5469 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (to_rtx));
5470 if (GET_MODE (offset_rtx) != address_mode)
5471 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
5473 to_rtx = offset_address (to_rtx, offset_rtx,
5474 highest_pow2_factor (offset));
5477 #ifdef WORD_REGISTER_OPERATIONS
5478 /* If this initializes a field that is smaller than a
5479 word, at the start of a word, try to widen it to a full
5480 word. This special case allows us to output C++ member
5481 function initializations in a form that the optimizers
5482 can understand. */
5483 if (REG_P (target)
5484 && bitsize < BITS_PER_WORD
5485 && bitpos % BITS_PER_WORD == 0
5486 && GET_MODE_CLASS (mode) == MODE_INT
5487 && TREE_CODE (value) == INTEGER_CST
5488 && exp_size >= 0
5489 && bitpos + BITS_PER_WORD <= exp_size * BITS_PER_UNIT)
5491 tree type = TREE_TYPE (value);
5493 if (TYPE_PRECISION (type) < BITS_PER_WORD)
5495 type = lang_hooks.types.type_for_size
5496 (BITS_PER_WORD, TYPE_UNSIGNED (type));
5497 value = fold_convert (type, value);
5500 if (BYTES_BIG_ENDIAN)
5501 value
5502 = fold_build2 (LSHIFT_EXPR, type, value,
5503 build_int_cst (type,
5504 BITS_PER_WORD - bitsize));
5505 bitsize = BITS_PER_WORD;
5506 mode = word_mode;
5508 #endif
5510 if (MEM_P (to_rtx) && !MEM_KEEP_ALIAS_SET_P (to_rtx)
5511 && DECL_NONADDRESSABLE_P (field))
5513 to_rtx = copy_rtx (to_rtx);
5514 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
5517 store_constructor_field (to_rtx, bitsize, bitpos, mode,
5518 value, type, cleared,
5519 get_alias_set (TREE_TYPE (field)));
5521 break;
5523 case ARRAY_TYPE:
5525 tree value, index;
5526 unsigned HOST_WIDE_INT i;
5527 int need_to_clear;
5528 tree domain;
5529 tree elttype = TREE_TYPE (type);
5530 int const_bounds_p;
5531 HOST_WIDE_INT minelt = 0;
5532 HOST_WIDE_INT maxelt = 0;
5534 domain = TYPE_DOMAIN (type);
5535 const_bounds_p = (TYPE_MIN_VALUE (domain)
5536 && TYPE_MAX_VALUE (domain)
5537 && host_integerp (TYPE_MIN_VALUE (domain), 0)
5538 && host_integerp (TYPE_MAX_VALUE (domain), 0));
5540 /* If we have constant bounds for the range of the type, get them. */
5541 if (const_bounds_p)
5543 minelt = tree_low_cst (TYPE_MIN_VALUE (domain), 0);
5544 maxelt = tree_low_cst (TYPE_MAX_VALUE (domain), 0);
5547 /* If the constructor has fewer elements than the array, clear
5548 the whole array first. Similarly if this is static
5549 constructor of a non-BLKmode object. */
5550 if (cleared)
5551 need_to_clear = 0;
5552 else if (REG_P (target) && TREE_STATIC (exp))
5553 need_to_clear = 1;
5554 else
5556 unsigned HOST_WIDE_INT idx;
5557 tree index, value;
5558 HOST_WIDE_INT count = 0, zero_count = 0;
5559 need_to_clear = ! const_bounds_p;
5561 /* This loop is a more accurate version of the loop in
5562 mostly_zeros_p (it handles RANGE_EXPR in an index). It
5563 is also needed to check for missing elements. */
5564 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, index, value)
5566 HOST_WIDE_INT this_node_count;
5568 if (need_to_clear)
5569 break;
5571 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
5573 tree lo_index = TREE_OPERAND (index, 0);
5574 tree hi_index = TREE_OPERAND (index, 1);
5576 if (! host_integerp (lo_index, 1)
5577 || ! host_integerp (hi_index, 1))
5579 need_to_clear = 1;
5580 break;
5583 this_node_count = (tree_low_cst (hi_index, 1)
5584 - tree_low_cst (lo_index, 1) + 1);
5586 else
5587 this_node_count = 1;
5589 count += this_node_count;
5590 if (mostly_zeros_p (value))
5591 zero_count += this_node_count;
5594 /* Clear the entire array first if there are any missing
5595 elements, or if the incidence of zero elements is >=
5596 75%. */
5597 if (! need_to_clear
5598 && (count < maxelt - minelt + 1
5599 || 4 * zero_count >= 3 * count))
5600 need_to_clear = 1;
5603 if (need_to_clear && size > 0)
5605 if (REG_P (target))
5606 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5607 else
5608 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5609 cleared = 1;
5612 if (!cleared && REG_P (target))
5613 /* Inform later passes that the old value is dead. */
5614 emit_clobber (target);
5616 /* Store each element of the constructor into the
5617 corresponding element of TARGET, determined by counting the
5618 elements. */
5619 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), i, index, value)
5621 enum machine_mode mode;
5622 HOST_WIDE_INT bitsize;
5623 HOST_WIDE_INT bitpos;
5624 rtx xtarget = target;
5626 if (cleared && initializer_zerop (value))
5627 continue;
5629 mode = TYPE_MODE (elttype);
5630 if (mode == BLKmode)
5631 bitsize = (host_integerp (TYPE_SIZE (elttype), 1)
5632 ? tree_low_cst (TYPE_SIZE (elttype), 1)
5633 : -1);
5634 else
5635 bitsize = GET_MODE_BITSIZE (mode);
5637 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
5639 tree lo_index = TREE_OPERAND (index, 0);
5640 tree hi_index = TREE_OPERAND (index, 1);
5641 rtx index_r, pos_rtx;
5642 HOST_WIDE_INT lo, hi, count;
5643 tree position;
5645 /* If the range is constant and "small", unroll the loop. */
5646 if (const_bounds_p
5647 && host_integerp (lo_index, 0)
5648 && host_integerp (hi_index, 0)
5649 && (lo = tree_low_cst (lo_index, 0),
5650 hi = tree_low_cst (hi_index, 0),
5651 count = hi - lo + 1,
5652 (!MEM_P (target)
5653 || count <= 2
5654 || (host_integerp (TYPE_SIZE (elttype), 1)
5655 && (tree_low_cst (TYPE_SIZE (elttype), 1) * count
5656 <= 40 * 8)))))
5658 lo -= minelt; hi -= minelt;
5659 for (; lo <= hi; lo++)
5661 bitpos = lo * tree_low_cst (TYPE_SIZE (elttype), 0);
5663 if (MEM_P (target)
5664 && !MEM_KEEP_ALIAS_SET_P (target)
5665 && TREE_CODE (type) == ARRAY_TYPE
5666 && TYPE_NONALIASED_COMPONENT (type))
5668 target = copy_rtx (target);
5669 MEM_KEEP_ALIAS_SET_P (target) = 1;
5672 store_constructor_field
5673 (target, bitsize, bitpos, mode, value, type, cleared,
5674 get_alias_set (elttype));
5677 else
5679 rtx loop_start = gen_label_rtx ();
5680 rtx loop_end = gen_label_rtx ();
5681 tree exit_cond;
5683 expand_normal (hi_index);
5685 index = build_decl (EXPR_LOCATION (exp),
5686 VAR_DECL, NULL_TREE, domain);
5687 index_r = gen_reg_rtx (promote_decl_mode (index, NULL));
5688 SET_DECL_RTL (index, index_r);
5689 store_expr (lo_index, index_r, 0, false);
5691 /* Build the head of the loop. */
5692 do_pending_stack_adjust ();
5693 emit_label (loop_start);
5695 /* Assign value to element index. */
5696 position =
5697 fold_convert (ssizetype,
5698 fold_build2 (MINUS_EXPR,
5699 TREE_TYPE (index),
5700 index,
5701 TYPE_MIN_VALUE (domain)));
5703 position =
5704 size_binop (MULT_EXPR, position,
5705 fold_convert (ssizetype,
5706 TYPE_SIZE_UNIT (elttype)));
5708 pos_rtx = expand_normal (position);
5709 xtarget = offset_address (target, pos_rtx,
5710 highest_pow2_factor (position));
5711 xtarget = adjust_address (xtarget, mode, 0);
5712 if (TREE_CODE (value) == CONSTRUCTOR)
5713 store_constructor (value, xtarget, cleared,
5714 bitsize / BITS_PER_UNIT);
5715 else
5716 store_expr (value, xtarget, 0, false);
5718 /* Generate a conditional jump to exit the loop. */
5719 exit_cond = build2 (LT_EXPR, integer_type_node,
5720 index, hi_index);
5721 jumpif (exit_cond, loop_end, -1);
5723 /* Update the loop counter, and jump to the head of
5724 the loop. */
5725 expand_assignment (index,
5726 build2 (PLUS_EXPR, TREE_TYPE (index),
5727 index, integer_one_node),
5728 false);
5730 emit_jump (loop_start);
5732 /* Build the end of the loop. */
5733 emit_label (loop_end);
5736 else if ((index != 0 && ! host_integerp (index, 0))
5737 || ! host_integerp (TYPE_SIZE (elttype), 1))
5739 tree position;
5741 if (index == 0)
5742 index = ssize_int (1);
5744 if (minelt)
5745 index = fold_convert (ssizetype,
5746 fold_build2 (MINUS_EXPR,
5747 TREE_TYPE (index),
5748 index,
5749 TYPE_MIN_VALUE (domain)));
5751 position =
5752 size_binop (MULT_EXPR, index,
5753 fold_convert (ssizetype,
5754 TYPE_SIZE_UNIT (elttype)));
5755 xtarget = offset_address (target,
5756 expand_normal (position),
5757 highest_pow2_factor (position));
5758 xtarget = adjust_address (xtarget, mode, 0);
5759 store_expr (value, xtarget, 0, false);
5761 else
5763 if (index != 0)
5764 bitpos = ((tree_low_cst (index, 0) - minelt)
5765 * tree_low_cst (TYPE_SIZE (elttype), 1));
5766 else
5767 bitpos = (i * tree_low_cst (TYPE_SIZE (elttype), 1));
5769 if (MEM_P (target) && !MEM_KEEP_ALIAS_SET_P (target)
5770 && TREE_CODE (type) == ARRAY_TYPE
5771 && TYPE_NONALIASED_COMPONENT (type))
5773 target = copy_rtx (target);
5774 MEM_KEEP_ALIAS_SET_P (target) = 1;
5776 store_constructor_field (target, bitsize, bitpos, mode, value,
5777 type, cleared, get_alias_set (elttype));
5780 break;
5783 case VECTOR_TYPE:
5785 unsigned HOST_WIDE_INT idx;
5786 constructor_elt *ce;
5787 int i;
5788 int need_to_clear;
5789 int icode = 0;
5790 tree elttype = TREE_TYPE (type);
5791 int elt_size = tree_low_cst (TYPE_SIZE (elttype), 1);
5792 enum machine_mode eltmode = TYPE_MODE (elttype);
5793 HOST_WIDE_INT bitsize;
5794 HOST_WIDE_INT bitpos;
5795 rtvec vector = NULL;
5796 unsigned n_elts;
5797 alias_set_type alias;
5799 gcc_assert (eltmode != BLKmode);
5801 n_elts = TYPE_VECTOR_SUBPARTS (type);
5802 if (REG_P (target) && VECTOR_MODE_P (GET_MODE (target)))
5804 enum machine_mode mode = GET_MODE (target);
5806 icode = (int) optab_handler (vec_init_optab, mode);
5807 if (icode != CODE_FOR_nothing)
5809 unsigned int i;
5811 vector = rtvec_alloc (n_elts);
5812 for (i = 0; i < n_elts; i++)
5813 RTVEC_ELT (vector, i) = CONST0_RTX (GET_MODE_INNER (mode));
5817 /* If the constructor has fewer elements than the vector,
5818 clear the whole array first. Similarly if this is static
5819 constructor of a non-BLKmode object. */
5820 if (cleared)
5821 need_to_clear = 0;
5822 else if (REG_P (target) && TREE_STATIC (exp))
5823 need_to_clear = 1;
5824 else
5826 unsigned HOST_WIDE_INT count = 0, zero_count = 0;
5827 tree value;
5829 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
5831 int n_elts_here = tree_low_cst
5832 (int_const_binop (TRUNC_DIV_EXPR,
5833 TYPE_SIZE (TREE_TYPE (value)),
5834 TYPE_SIZE (elttype)), 1);
5836 count += n_elts_here;
5837 if (mostly_zeros_p (value))
5838 zero_count += n_elts_here;
5841 /* Clear the entire vector first if there are any missing elements,
5842 or if the incidence of zero elements is >= 75%. */
5843 need_to_clear = (count < n_elts || 4 * zero_count >= 3 * count);
5846 if (need_to_clear && size > 0 && !vector)
5848 if (REG_P (target))
5849 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5850 else
5851 clear_storage (target, GEN_INT (size), BLOCK_OP_NORMAL);
5852 cleared = 1;
5855 /* Inform later passes that the old value is dead. */
5856 if (!cleared && !vector && REG_P (target))
5857 emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
5859 if (MEM_P (target))
5860 alias = MEM_ALIAS_SET (target);
5861 else
5862 alias = get_alias_set (elttype);
5864 /* Store each element of the constructor into the corresponding
5865 element of TARGET, determined by counting the elements. */
5866 for (idx = 0, i = 0;
5867 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce);
5868 idx++, i += bitsize / elt_size)
5870 HOST_WIDE_INT eltpos;
5871 tree value = ce->value;
5873 bitsize = tree_low_cst (TYPE_SIZE (TREE_TYPE (value)), 1);
5874 if (cleared && initializer_zerop (value))
5875 continue;
5877 if (ce->index)
5878 eltpos = tree_low_cst (ce->index, 1);
5879 else
5880 eltpos = i;
5882 if (vector)
5884 /* Vector CONSTRUCTORs should only be built from smaller
5885 vectors in the case of BLKmode vectors. */
5886 gcc_assert (TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE);
5887 RTVEC_ELT (vector, eltpos)
5888 = expand_normal (value);
5890 else
5892 enum machine_mode value_mode =
5893 TREE_CODE (TREE_TYPE (value)) == VECTOR_TYPE
5894 ? TYPE_MODE (TREE_TYPE (value))
5895 : eltmode;
5896 bitpos = eltpos * elt_size;
5897 store_constructor_field (target, bitsize, bitpos,
5898 value_mode, value, type,
5899 cleared, alias);
5903 if (vector)
5904 emit_insn (GEN_FCN (icode)
5905 (target,
5906 gen_rtx_PARALLEL (GET_MODE (target), vector)));
5907 break;
5910 default:
5911 gcc_unreachable ();
5915 /* Store the value of EXP (an expression tree)
5916 into a subfield of TARGET which has mode MODE and occupies
5917 BITSIZE bits, starting BITPOS bits from the start of TARGET.
5918 If MODE is VOIDmode, it means that we are storing into a bit-field.
5920 BITREGION_START is bitpos of the first bitfield in this region.
5921 BITREGION_END is the bitpos of the ending bitfield in this region.
5922 These two fields are 0, if the C++ memory model does not apply,
5923 or we are not interested in keeping track of bitfield regions.
5925 Always return const0_rtx unless we have something particular to
5926 return.
5928 TYPE is the type of the underlying object,
5930 ALIAS_SET is the alias set for the destination. This value will
5931 (in general) be different from that for TARGET, since TARGET is a
5932 reference to the containing structure.
5934 If NONTEMPORAL is true, try generating a nontemporal store. */
5936 static rtx
5937 store_field (rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos,
5938 unsigned HOST_WIDE_INT bitregion_start,
5939 unsigned HOST_WIDE_INT bitregion_end,
5940 enum machine_mode mode, tree exp, tree type,
5941 alias_set_type alias_set, bool nontemporal)
5943 if (TREE_CODE (exp) == ERROR_MARK)
5944 return const0_rtx;
5946 /* If we have nothing to store, do nothing unless the expression has
5947 side-effects. */
5948 if (bitsize == 0)
5949 return expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
5951 /* If we are storing into an unaligned field of an aligned union that is
5952 in a register, we may have the mode of TARGET being an integer mode but
5953 MODE == BLKmode. In that case, get an aligned object whose size and
5954 alignment are the same as TARGET and store TARGET into it (we can avoid
5955 the store if the field being stored is the entire width of TARGET). Then
5956 call ourselves recursively to store the field into a BLKmode version of
5957 that object. Finally, load from the object into TARGET. This is not
5958 very efficient in general, but should only be slightly more expensive
5959 than the otherwise-required unaligned accesses. Perhaps this can be
5960 cleaned up later. It's tempting to make OBJECT readonly, but it's set
5961 twice, once with emit_move_insn and once via store_field. */
5963 if (mode == BLKmode
5964 && (REG_P (target) || GET_CODE (target) == SUBREG))
5966 rtx object = assign_temp (type, 0, 1, 1);
5967 rtx blk_object = adjust_address (object, BLKmode, 0);
5969 if (bitsize != (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (target)))
5970 emit_move_insn (object, target);
5972 store_field (blk_object, bitsize, bitpos,
5973 bitregion_start, bitregion_end,
5974 mode, exp, type, alias_set, nontemporal);
5976 emit_move_insn (target, object);
5978 /* We want to return the BLKmode version of the data. */
5979 return blk_object;
5982 if (GET_CODE (target) == CONCAT)
5984 /* We're storing into a struct containing a single __complex. */
5986 gcc_assert (!bitpos);
5987 return store_expr (exp, target, 0, nontemporal);
5990 /* If the structure is in a register or if the component
5991 is a bit field, we cannot use addressing to access it.
5992 Use bit-field techniques or SUBREG to store in it. */
5994 if (mode == VOIDmode
5995 || (mode != BLKmode && ! direct_store[(int) mode]
5996 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
5997 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
5998 || REG_P (target)
5999 || GET_CODE (target) == SUBREG
6000 /* If the field isn't aligned enough to store as an ordinary memref,
6001 store it as a bit field. */
6002 || (mode != BLKmode
6003 && ((((MEM_ALIGN (target) < GET_MODE_ALIGNMENT (mode))
6004 || bitpos % GET_MODE_ALIGNMENT (mode))
6005 && SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (target)))
6006 || (bitpos % BITS_PER_UNIT != 0)))
6007 /* If the RHS and field are a constant size and the size of the
6008 RHS isn't the same size as the bitfield, we must use bitfield
6009 operations. */
6010 || (bitsize >= 0
6011 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
6012 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) != 0)
6013 /* If we are expanding a MEM_REF of a non-BLKmode non-addressable
6014 decl we must use bitfield operations. */
6015 || (bitsize >= 0
6016 && TREE_CODE (exp) == MEM_REF
6017 && TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
6018 && DECL_P (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
6019 && !TREE_ADDRESSABLE (TREE_OPERAND (TREE_OPERAND (exp, 0),0 ))
6020 && DECL_MODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)) != BLKmode))
6022 rtx temp;
6023 gimple nop_def;
6025 /* If EXP is a NOP_EXPR of precision less than its mode, then that
6026 implies a mask operation. If the precision is the same size as
6027 the field we're storing into, that mask is redundant. This is
6028 particularly common with bit field assignments generated by the
6029 C front end. */
6030 nop_def = get_def_for_expr (exp, NOP_EXPR);
6031 if (nop_def)
6033 tree type = TREE_TYPE (exp);
6034 if (INTEGRAL_TYPE_P (type)
6035 && TYPE_PRECISION (type) < GET_MODE_BITSIZE (TYPE_MODE (type))
6036 && bitsize == TYPE_PRECISION (type))
6038 tree op = gimple_assign_rhs1 (nop_def);
6039 type = TREE_TYPE (op);
6040 if (INTEGRAL_TYPE_P (type) && TYPE_PRECISION (type) >= bitsize)
6041 exp = op;
6045 temp = expand_normal (exp);
6047 /* If BITSIZE is narrower than the size of the type of EXP
6048 we will be narrowing TEMP. Normally, what's wanted are the
6049 low-order bits. However, if EXP's type is a record and this is
6050 big-endian machine, we want the upper BITSIZE bits. */
6051 if (BYTES_BIG_ENDIAN && GET_MODE_CLASS (GET_MODE (temp)) == MODE_INT
6052 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (temp))
6053 && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
6054 temp = expand_shift (RSHIFT_EXPR, GET_MODE (temp), temp,
6055 GET_MODE_BITSIZE (GET_MODE (temp)) - bitsize,
6056 NULL_RTX, 1);
6058 /* Unless MODE is VOIDmode or BLKmode, convert TEMP to
6059 MODE. */
6060 if (mode != VOIDmode && mode != BLKmode
6061 && mode != TYPE_MODE (TREE_TYPE (exp)))
6062 temp = convert_modes (mode, TYPE_MODE (TREE_TYPE (exp)), temp, 1);
6064 /* If the modes of TEMP and TARGET are both BLKmode, both
6065 must be in memory and BITPOS must be aligned on a byte
6066 boundary. If so, we simply do a block copy. Likewise
6067 for a BLKmode-like TARGET. */
6068 if (GET_MODE (temp) == BLKmode
6069 && (GET_MODE (target) == BLKmode
6070 || (MEM_P (target)
6071 && GET_MODE_CLASS (GET_MODE (target)) == MODE_INT
6072 && (bitpos % BITS_PER_UNIT) == 0
6073 && (bitsize % BITS_PER_UNIT) == 0)))
6075 gcc_assert (MEM_P (target) && MEM_P (temp)
6076 && (bitpos % BITS_PER_UNIT) == 0);
6078 target = adjust_address (target, VOIDmode, bitpos / BITS_PER_UNIT);
6079 emit_block_move (target, temp,
6080 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
6081 / BITS_PER_UNIT),
6082 BLOCK_OP_NORMAL);
6084 return const0_rtx;
6087 /* Store the value in the bitfield. */
6088 store_bit_field (target, bitsize, bitpos,
6089 bitregion_start, bitregion_end,
6090 mode, temp);
6092 return const0_rtx;
6094 else
6096 /* Now build a reference to just the desired component. */
6097 rtx to_rtx = adjust_address (target, mode, bitpos / BITS_PER_UNIT);
6099 if (to_rtx == target)
6100 to_rtx = copy_rtx (to_rtx);
6102 if (!MEM_SCALAR_P (to_rtx))
6103 MEM_IN_STRUCT_P (to_rtx) = 1;
6104 if (!MEM_KEEP_ALIAS_SET_P (to_rtx) && MEM_ALIAS_SET (to_rtx) != 0)
6105 set_mem_alias_set (to_rtx, alias_set);
6107 return store_expr (exp, to_rtx, 0, nontemporal);
6111 /* Given an expression EXP that may be a COMPONENT_REF, a BIT_FIELD_REF,
6112 an ARRAY_REF, or an ARRAY_RANGE_REF, look for nested operations of these
6113 codes and find the ultimate containing object, which we return.
6115 We set *PBITSIZE to the size in bits that we want, *PBITPOS to the
6116 bit position, and *PUNSIGNEDP to the signedness of the field.
6117 If the position of the field is variable, we store a tree
6118 giving the variable offset (in units) in *POFFSET.
6119 This offset is in addition to the bit position.
6120 If the position is not variable, we store 0 in *POFFSET.
6122 If any of the extraction expressions is volatile,
6123 we store 1 in *PVOLATILEP. Otherwise we don't change that.
6125 If the field is a non-BLKmode bit-field, *PMODE is set to VOIDmode.
6126 Otherwise, it is a mode that can be used to access the field.
6128 If the field describes a variable-sized object, *PMODE is set to
6129 BLKmode and *PBITSIZE is set to -1. An access cannot be made in
6130 this case, but the address of the object can be found.
6132 If KEEP_ALIGNING is true and the target is STRICT_ALIGNMENT, we don't
6133 look through nodes that serve as markers of a greater alignment than
6134 the one that can be deduced from the expression. These nodes make it
6135 possible for front-ends to prevent temporaries from being created by
6136 the middle-end on alignment considerations. For that purpose, the
6137 normal operating mode at high-level is to always pass FALSE so that
6138 the ultimate containing object is really returned; moreover, the
6139 associated predicate handled_component_p will always return TRUE
6140 on these nodes, thus indicating that they are essentially handled
6141 by get_inner_reference. TRUE should only be passed when the caller
6142 is scanning the expression in order to build another representation
6143 and specifically knows how to handle these nodes; as such, this is
6144 the normal operating mode in the RTL expanders. */
6146 tree
6147 get_inner_reference (tree exp, HOST_WIDE_INT *pbitsize,
6148 HOST_WIDE_INT *pbitpos, tree *poffset,
6149 enum machine_mode *pmode, int *punsignedp,
6150 int *pvolatilep, bool keep_aligning)
6152 tree size_tree = 0;
6153 enum machine_mode mode = VOIDmode;
6154 bool blkmode_bitfield = false;
6155 tree offset = size_zero_node;
6156 double_int bit_offset = double_int_zero;
6158 /* First get the mode, signedness, and size. We do this from just the
6159 outermost expression. */
6160 *pbitsize = -1;
6161 if (TREE_CODE (exp) == COMPONENT_REF)
6163 tree field = TREE_OPERAND (exp, 1);
6164 size_tree = DECL_SIZE (field);
6165 if (!DECL_BIT_FIELD (field))
6166 mode = DECL_MODE (field);
6167 else if (DECL_MODE (field) == BLKmode)
6168 blkmode_bitfield = true;
6169 else if (TREE_THIS_VOLATILE (exp)
6170 && flag_strict_volatile_bitfields > 0)
6171 /* Volatile bitfields should be accessed in the mode of the
6172 field's type, not the mode computed based on the bit
6173 size. */
6174 mode = TYPE_MODE (DECL_BIT_FIELD_TYPE (field));
6176 *punsignedp = DECL_UNSIGNED (field);
6178 else if (TREE_CODE (exp) == BIT_FIELD_REF)
6180 size_tree = TREE_OPERAND (exp, 1);
6181 *punsignedp = (! INTEGRAL_TYPE_P (TREE_TYPE (exp))
6182 || TYPE_UNSIGNED (TREE_TYPE (exp)));
6184 /* For vector types, with the correct size of access, use the mode of
6185 inner type. */
6186 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == VECTOR_TYPE
6187 && TREE_TYPE (exp) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)))
6188 && tree_int_cst_equal (size_tree, TYPE_SIZE (TREE_TYPE (exp))))
6189 mode = TYPE_MODE (TREE_TYPE (exp));
6191 else
6193 mode = TYPE_MODE (TREE_TYPE (exp));
6194 *punsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
6196 if (mode == BLKmode)
6197 size_tree = TYPE_SIZE (TREE_TYPE (exp));
6198 else
6199 *pbitsize = GET_MODE_BITSIZE (mode);
6202 if (size_tree != 0)
6204 if (! host_integerp (size_tree, 1))
6205 mode = BLKmode, *pbitsize = -1;
6206 else
6207 *pbitsize = tree_low_cst (size_tree, 1);
6210 /* Compute cumulative bit-offset for nested component-refs and array-refs,
6211 and find the ultimate containing object. */
6212 while (1)
6214 switch (TREE_CODE (exp))
6216 case BIT_FIELD_REF:
6217 bit_offset
6218 = double_int_add (bit_offset,
6219 tree_to_double_int (TREE_OPERAND (exp, 2)));
6220 break;
6222 case COMPONENT_REF:
6224 tree field = TREE_OPERAND (exp, 1);
6225 tree this_offset = component_ref_field_offset (exp);
6227 /* If this field hasn't been filled in yet, don't go past it.
6228 This should only happen when folding expressions made during
6229 type construction. */
6230 if (this_offset == 0)
6231 break;
6233 offset = size_binop (PLUS_EXPR, offset, this_offset);
6234 bit_offset = double_int_add (bit_offset,
6235 tree_to_double_int
6236 (DECL_FIELD_BIT_OFFSET (field)));
6238 /* ??? Right now we don't do anything with DECL_OFFSET_ALIGN. */
6240 break;
6242 case ARRAY_REF:
6243 case ARRAY_RANGE_REF:
6245 tree index = TREE_OPERAND (exp, 1);
6246 tree low_bound = array_ref_low_bound (exp);
6247 tree unit_size = array_ref_element_size (exp);
6249 /* We assume all arrays have sizes that are a multiple of a byte.
6250 First subtract the lower bound, if any, in the type of the
6251 index, then convert to sizetype and multiply by the size of
6252 the array element. */
6253 if (! integer_zerop (low_bound))
6254 index = fold_build2 (MINUS_EXPR, TREE_TYPE (index),
6255 index, low_bound);
6257 offset = size_binop (PLUS_EXPR, offset,
6258 size_binop (MULT_EXPR,
6259 fold_convert (sizetype, index),
6260 unit_size));
6262 break;
6264 case REALPART_EXPR:
6265 break;
6267 case IMAGPART_EXPR:
6268 bit_offset = double_int_add (bit_offset,
6269 uhwi_to_double_int (*pbitsize));
6270 break;
6272 case VIEW_CONVERT_EXPR:
6273 if (keep_aligning && STRICT_ALIGNMENT
6274 && (TYPE_ALIGN (TREE_TYPE (exp))
6275 > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0))))
6276 && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0)))
6277 < BIGGEST_ALIGNMENT)
6278 && (TYPE_ALIGN_OK (TREE_TYPE (exp))
6279 || TYPE_ALIGN_OK (TREE_TYPE (TREE_OPERAND (exp, 0)))))
6280 goto done;
6281 break;
6283 case MEM_REF:
6284 /* Hand back the decl for MEM[&decl, off]. */
6285 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR)
6287 tree off = TREE_OPERAND (exp, 1);
6288 if (!integer_zerop (off))
6290 double_int boff, coff = mem_ref_offset (exp);
6291 boff = double_int_lshift (coff,
6292 BITS_PER_UNIT == 8
6293 ? 3 : exact_log2 (BITS_PER_UNIT),
6294 HOST_BITS_PER_DOUBLE_INT, true);
6295 bit_offset = double_int_add (bit_offset, boff);
6297 exp = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
6299 goto done;
6301 default:
6302 goto done;
6305 /* If any reference in the chain is volatile, the effect is volatile. */
6306 if (TREE_THIS_VOLATILE (exp))
6307 *pvolatilep = 1;
6309 exp = TREE_OPERAND (exp, 0);
6311 done:
6313 /* If OFFSET is constant, see if we can return the whole thing as a
6314 constant bit position. Make sure to handle overflow during
6315 this conversion. */
6316 if (host_integerp (offset, 0))
6318 double_int tem = double_int_lshift (tree_to_double_int (offset),
6319 BITS_PER_UNIT == 8
6320 ? 3 : exact_log2 (BITS_PER_UNIT),
6321 HOST_BITS_PER_DOUBLE_INT, true);
6322 tem = double_int_add (tem, bit_offset);
6323 if (double_int_fits_in_shwi_p (tem))
6325 *pbitpos = double_int_to_shwi (tem);
6326 *poffset = offset = NULL_TREE;
6330 /* Otherwise, split it up. */
6331 if (offset)
6333 *pbitpos = double_int_to_shwi (bit_offset);
6334 *poffset = offset;
6337 /* We can use BLKmode for a byte-aligned BLKmode bitfield. */
6338 if (mode == VOIDmode
6339 && blkmode_bitfield
6340 && (*pbitpos % BITS_PER_UNIT) == 0
6341 && (*pbitsize % BITS_PER_UNIT) == 0)
6342 *pmode = BLKmode;
6343 else
6344 *pmode = mode;
6346 return exp;
6349 /* Given an expression EXP that may be a COMPONENT_REF, an ARRAY_REF or an
6350 ARRAY_RANGE_REF, look for whether EXP or any nested component-refs within
6351 EXP is marked as PACKED. */
6353 bool
6354 contains_packed_reference (const_tree exp)
6356 bool packed_p = false;
6358 while (1)
6360 switch (TREE_CODE (exp))
6362 case COMPONENT_REF:
6364 tree field = TREE_OPERAND (exp, 1);
6365 packed_p = DECL_PACKED (field)
6366 || TYPE_PACKED (TREE_TYPE (field))
6367 || TYPE_PACKED (TREE_TYPE (exp));
6368 if (packed_p)
6369 goto done;
6371 break;
6373 case BIT_FIELD_REF:
6374 case ARRAY_REF:
6375 case ARRAY_RANGE_REF:
6376 case REALPART_EXPR:
6377 case IMAGPART_EXPR:
6378 case VIEW_CONVERT_EXPR:
6379 break;
6381 default:
6382 goto done;
6384 exp = TREE_OPERAND (exp, 0);
6386 done:
6387 return packed_p;
6390 /* Return a tree of sizetype representing the size, in bytes, of the element
6391 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6393 tree
6394 array_ref_element_size (tree exp)
6396 tree aligned_size = TREE_OPERAND (exp, 3);
6397 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
6398 location_t loc = EXPR_LOCATION (exp);
6400 /* If a size was specified in the ARRAY_REF, it's the size measured
6401 in alignment units of the element type. So multiply by that value. */
6402 if (aligned_size)
6404 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6405 sizetype from another type of the same width and signedness. */
6406 if (TREE_TYPE (aligned_size) != sizetype)
6407 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
6408 return size_binop_loc (loc, MULT_EXPR, aligned_size,
6409 size_int (TYPE_ALIGN_UNIT (elmt_type)));
6412 /* Otherwise, take the size from that of the element type. Substitute
6413 any PLACEHOLDER_EXPR that we have. */
6414 else
6415 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
6418 /* Return a tree representing the lower bound of the array mentioned in
6419 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6421 tree
6422 array_ref_low_bound (tree exp)
6424 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
6426 /* If a lower bound is specified in EXP, use it. */
6427 if (TREE_OPERAND (exp, 2))
6428 return TREE_OPERAND (exp, 2);
6430 /* Otherwise, if there is a domain type and it has a lower bound, use it,
6431 substituting for a PLACEHOLDER_EXPR as needed. */
6432 if (domain_type && TYPE_MIN_VALUE (domain_type))
6433 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
6435 /* Otherwise, return a zero of the appropriate type. */
6436 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
6439 /* Return a tree representing the upper bound of the array mentioned in
6440 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6442 tree
6443 array_ref_up_bound (tree exp)
6445 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
6447 /* If there is a domain type and it has an upper bound, use it, substituting
6448 for a PLACEHOLDER_EXPR as needed. */
6449 if (domain_type && TYPE_MAX_VALUE (domain_type))
6450 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
6452 /* Otherwise fail. */
6453 return NULL_TREE;
6456 /* Return a tree representing the offset, in bytes, of the field referenced
6457 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
6459 tree
6460 component_ref_field_offset (tree exp)
6462 tree aligned_offset = TREE_OPERAND (exp, 2);
6463 tree field = TREE_OPERAND (exp, 1);
6464 location_t loc = EXPR_LOCATION (exp);
6466 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
6467 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
6468 value. */
6469 if (aligned_offset)
6471 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6472 sizetype from another type of the same width and signedness. */
6473 if (TREE_TYPE (aligned_offset) != sizetype)
6474 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
6475 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
6476 size_int (DECL_OFFSET_ALIGN (field)
6477 / BITS_PER_UNIT));
6480 /* Otherwise, take the offset from that of the field. Substitute
6481 any PLACEHOLDER_EXPR that we have. */
6482 else
6483 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
6486 /* Alignment in bits the TARGET of an assignment may be assumed to have. */
6488 static unsigned HOST_WIDE_INT
6489 target_align (const_tree target)
6491 /* We might have a chain of nested references with intermediate misaligning
6492 bitfields components, so need to recurse to find out. */
6494 unsigned HOST_WIDE_INT this_align, outer_align;
6496 switch (TREE_CODE (target))
6498 case BIT_FIELD_REF:
6499 return 1;
6501 case COMPONENT_REF:
6502 this_align = DECL_ALIGN (TREE_OPERAND (target, 1));
6503 outer_align = target_align (TREE_OPERAND (target, 0));
6504 return MIN (this_align, outer_align);
6506 case ARRAY_REF:
6507 case ARRAY_RANGE_REF:
6508 this_align = TYPE_ALIGN (TREE_TYPE (target));
6509 outer_align = target_align (TREE_OPERAND (target, 0));
6510 return MIN (this_align, outer_align);
6512 CASE_CONVERT:
6513 case NON_LVALUE_EXPR:
6514 case VIEW_CONVERT_EXPR:
6515 this_align = TYPE_ALIGN (TREE_TYPE (target));
6516 outer_align = target_align (TREE_OPERAND (target, 0));
6517 return MAX (this_align, outer_align);
6519 default:
6520 return TYPE_ALIGN (TREE_TYPE (target));
6525 /* Given an rtx VALUE that may contain additions and multiplications, return
6526 an equivalent value that just refers to a register, memory, or constant.
6527 This is done by generating instructions to perform the arithmetic and
6528 returning a pseudo-register containing the value.
6530 The returned value may be a REG, SUBREG, MEM or constant. */
6533 force_operand (rtx value, rtx target)
6535 rtx op1, op2;
6536 /* Use subtarget as the target for operand 0 of a binary operation. */
6537 rtx subtarget = get_subtarget (target);
6538 enum rtx_code code = GET_CODE (value);
6540 /* Check for subreg applied to an expression produced by loop optimizer. */
6541 if (code == SUBREG
6542 && !REG_P (SUBREG_REG (value))
6543 && !MEM_P (SUBREG_REG (value)))
6545 value
6546 = simplify_gen_subreg (GET_MODE (value),
6547 force_reg (GET_MODE (SUBREG_REG (value)),
6548 force_operand (SUBREG_REG (value),
6549 NULL_RTX)),
6550 GET_MODE (SUBREG_REG (value)),
6551 SUBREG_BYTE (value));
6552 code = GET_CODE (value);
6555 /* Check for a PIC address load. */
6556 if ((code == PLUS || code == MINUS)
6557 && XEXP (value, 0) == pic_offset_table_rtx
6558 && (GET_CODE (XEXP (value, 1)) == SYMBOL_REF
6559 || GET_CODE (XEXP (value, 1)) == LABEL_REF
6560 || GET_CODE (XEXP (value, 1)) == CONST))
6562 if (!subtarget)
6563 subtarget = gen_reg_rtx (GET_MODE (value));
6564 emit_move_insn (subtarget, value);
6565 return subtarget;
6568 if (ARITHMETIC_P (value))
6570 op2 = XEXP (value, 1);
6571 if (!CONSTANT_P (op2) && !(REG_P (op2) && op2 != subtarget))
6572 subtarget = 0;
6573 if (code == MINUS && CONST_INT_P (op2))
6575 code = PLUS;
6576 op2 = negate_rtx (GET_MODE (value), op2);
6579 /* Check for an addition with OP2 a constant integer and our first
6580 operand a PLUS of a virtual register and something else. In that
6581 case, we want to emit the sum of the virtual register and the
6582 constant first and then add the other value. This allows virtual
6583 register instantiation to simply modify the constant rather than
6584 creating another one around this addition. */
6585 if (code == PLUS && CONST_INT_P (op2)
6586 && GET_CODE (XEXP (value, 0)) == PLUS
6587 && REG_P (XEXP (XEXP (value, 0), 0))
6588 && REGNO (XEXP (XEXP (value, 0), 0)) >= FIRST_VIRTUAL_REGISTER
6589 && REGNO (XEXP (XEXP (value, 0), 0)) <= LAST_VIRTUAL_REGISTER)
6591 rtx temp = expand_simple_binop (GET_MODE (value), code,
6592 XEXP (XEXP (value, 0), 0), op2,
6593 subtarget, 0, OPTAB_LIB_WIDEN);
6594 return expand_simple_binop (GET_MODE (value), code, temp,
6595 force_operand (XEXP (XEXP (value,
6596 0), 1), 0),
6597 target, 0, OPTAB_LIB_WIDEN);
6600 op1 = force_operand (XEXP (value, 0), subtarget);
6601 op2 = force_operand (op2, NULL_RTX);
6602 switch (code)
6604 case MULT:
6605 return expand_mult (GET_MODE (value), op1, op2, target, 1);
6606 case DIV:
6607 if (!INTEGRAL_MODE_P (GET_MODE (value)))
6608 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6609 target, 1, OPTAB_LIB_WIDEN);
6610 else
6611 return expand_divmod (0,
6612 FLOAT_MODE_P (GET_MODE (value))
6613 ? RDIV_EXPR : TRUNC_DIV_EXPR,
6614 GET_MODE (value), op1, op2, target, 0);
6615 case MOD:
6616 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
6617 target, 0);
6618 case UDIV:
6619 return expand_divmod (0, TRUNC_DIV_EXPR, GET_MODE (value), op1, op2,
6620 target, 1);
6621 case UMOD:
6622 return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
6623 target, 1);
6624 case ASHIFTRT:
6625 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6626 target, 0, OPTAB_LIB_WIDEN);
6627 default:
6628 return expand_simple_binop (GET_MODE (value), code, op1, op2,
6629 target, 1, OPTAB_LIB_WIDEN);
6632 if (UNARY_P (value))
6634 if (!target)
6635 target = gen_reg_rtx (GET_MODE (value));
6636 op1 = force_operand (XEXP (value, 0), NULL_RTX);
6637 switch (code)
6639 case ZERO_EXTEND:
6640 case SIGN_EXTEND:
6641 case TRUNCATE:
6642 case FLOAT_EXTEND:
6643 case FLOAT_TRUNCATE:
6644 convert_move (target, op1, code == ZERO_EXTEND);
6645 return target;
6647 case FIX:
6648 case UNSIGNED_FIX:
6649 expand_fix (target, op1, code == UNSIGNED_FIX);
6650 return target;
6652 case FLOAT:
6653 case UNSIGNED_FLOAT:
6654 expand_float (target, op1, code == UNSIGNED_FLOAT);
6655 return target;
6657 default:
6658 return expand_simple_unop (GET_MODE (value), code, op1, target, 0);
6662 #ifdef INSN_SCHEDULING
6663 /* On machines that have insn scheduling, we want all memory reference to be
6664 explicit, so we need to deal with such paradoxical SUBREGs. */
6665 if (paradoxical_subreg_p (value) && MEM_P (SUBREG_REG (value)))
6666 value
6667 = simplify_gen_subreg (GET_MODE (value),
6668 force_reg (GET_MODE (SUBREG_REG (value)),
6669 force_operand (SUBREG_REG (value),
6670 NULL_RTX)),
6671 GET_MODE (SUBREG_REG (value)),
6672 SUBREG_BYTE (value));
6673 #endif
6675 return value;
6678 /* Subroutine of expand_expr: return nonzero iff there is no way that
6679 EXP can reference X, which is being modified. TOP_P is nonzero if this
6680 call is going to be used to determine whether we need a temporary
6681 for EXP, as opposed to a recursive call to this function.
6683 It is always safe for this routine to return zero since it merely
6684 searches for optimization opportunities. */
6687 safe_from_p (const_rtx x, tree exp, int top_p)
6689 rtx exp_rtl = 0;
6690 int i, nops;
6692 if (x == 0
6693 /* If EXP has varying size, we MUST use a target since we currently
6694 have no way of allocating temporaries of variable size
6695 (except for arrays that have TYPE_ARRAY_MAX_SIZE set).
6696 So we assume here that something at a higher level has prevented a
6697 clash. This is somewhat bogus, but the best we can do. Only
6698 do this when X is BLKmode and when we are at the top level. */
6699 || (top_p && TREE_TYPE (exp) != 0 && COMPLETE_TYPE_P (TREE_TYPE (exp))
6700 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST
6701 && (TREE_CODE (TREE_TYPE (exp)) != ARRAY_TYPE
6702 || TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)) == NULL_TREE
6703 || TREE_CODE (TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)))
6704 != INTEGER_CST)
6705 && GET_MODE (x) == BLKmode)
6706 /* If X is in the outgoing argument area, it is always safe. */
6707 || (MEM_P (x)
6708 && (XEXP (x, 0) == virtual_outgoing_args_rtx
6709 || (GET_CODE (XEXP (x, 0)) == PLUS
6710 && XEXP (XEXP (x, 0), 0) == virtual_outgoing_args_rtx))))
6711 return 1;
6713 /* If this is a subreg of a hard register, declare it unsafe, otherwise,
6714 find the underlying pseudo. */
6715 if (GET_CODE (x) == SUBREG)
6717 x = SUBREG_REG (x);
6718 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
6719 return 0;
6722 /* Now look at our tree code and possibly recurse. */
6723 switch (TREE_CODE_CLASS (TREE_CODE (exp)))
6725 case tcc_declaration:
6726 exp_rtl = DECL_RTL_IF_SET (exp);
6727 break;
6729 case tcc_constant:
6730 return 1;
6732 case tcc_exceptional:
6733 if (TREE_CODE (exp) == TREE_LIST)
6735 while (1)
6737 if (TREE_VALUE (exp) && !safe_from_p (x, TREE_VALUE (exp), 0))
6738 return 0;
6739 exp = TREE_CHAIN (exp);
6740 if (!exp)
6741 return 1;
6742 if (TREE_CODE (exp) != TREE_LIST)
6743 return safe_from_p (x, exp, 0);
6746 else if (TREE_CODE (exp) == CONSTRUCTOR)
6748 constructor_elt *ce;
6749 unsigned HOST_WIDE_INT idx;
6751 FOR_EACH_VEC_ELT (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce)
6752 if ((ce->index != NULL_TREE && !safe_from_p (x, ce->index, 0))
6753 || !safe_from_p (x, ce->value, 0))
6754 return 0;
6755 return 1;
6757 else if (TREE_CODE (exp) == ERROR_MARK)
6758 return 1; /* An already-visited SAVE_EXPR? */
6759 else
6760 return 0;
6762 case tcc_statement:
6763 /* The only case we look at here is the DECL_INITIAL inside a
6764 DECL_EXPR. */
6765 return (TREE_CODE (exp) != DECL_EXPR
6766 || TREE_CODE (DECL_EXPR_DECL (exp)) != VAR_DECL
6767 || !DECL_INITIAL (DECL_EXPR_DECL (exp))
6768 || safe_from_p (x, DECL_INITIAL (DECL_EXPR_DECL (exp)), 0));
6770 case tcc_binary:
6771 case tcc_comparison:
6772 if (!safe_from_p (x, TREE_OPERAND (exp, 1), 0))
6773 return 0;
6774 /* Fall through. */
6776 case tcc_unary:
6777 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
6779 case tcc_expression:
6780 case tcc_reference:
6781 case tcc_vl_exp:
6782 /* Now do code-specific tests. EXP_RTL is set to any rtx we find in
6783 the expression. If it is set, we conflict iff we are that rtx or
6784 both are in memory. Otherwise, we check all operands of the
6785 expression recursively. */
6787 switch (TREE_CODE (exp))
6789 case ADDR_EXPR:
6790 /* If the operand is static or we are static, we can't conflict.
6791 Likewise if we don't conflict with the operand at all. */
6792 if (staticp (TREE_OPERAND (exp, 0))
6793 || TREE_STATIC (exp)
6794 || safe_from_p (x, TREE_OPERAND (exp, 0), 0))
6795 return 1;
6797 /* Otherwise, the only way this can conflict is if we are taking
6798 the address of a DECL a that address if part of X, which is
6799 very rare. */
6800 exp = TREE_OPERAND (exp, 0);
6801 if (DECL_P (exp))
6803 if (!DECL_RTL_SET_P (exp)
6804 || !MEM_P (DECL_RTL (exp)))
6805 return 0;
6806 else
6807 exp_rtl = XEXP (DECL_RTL (exp), 0);
6809 break;
6811 case MEM_REF:
6812 if (MEM_P (x)
6813 && alias_sets_conflict_p (MEM_ALIAS_SET (x),
6814 get_alias_set (exp)))
6815 return 0;
6816 break;
6818 case CALL_EXPR:
6819 /* Assume that the call will clobber all hard registers and
6820 all of memory. */
6821 if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
6822 || MEM_P (x))
6823 return 0;
6824 break;
6826 case WITH_CLEANUP_EXPR:
6827 case CLEANUP_POINT_EXPR:
6828 /* Lowered by gimplify.c. */
6829 gcc_unreachable ();
6831 case SAVE_EXPR:
6832 return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
6834 default:
6835 break;
6838 /* If we have an rtx, we do not need to scan our operands. */
6839 if (exp_rtl)
6840 break;
6842 nops = TREE_OPERAND_LENGTH (exp);
6843 for (i = 0; i < nops; i++)
6844 if (TREE_OPERAND (exp, i) != 0
6845 && ! safe_from_p (x, TREE_OPERAND (exp, i), 0))
6846 return 0;
6848 break;
6850 case tcc_type:
6851 /* Should never get a type here. */
6852 gcc_unreachable ();
6855 /* If we have an rtl, find any enclosed object. Then see if we conflict
6856 with it. */
6857 if (exp_rtl)
6859 if (GET_CODE (exp_rtl) == SUBREG)
6861 exp_rtl = SUBREG_REG (exp_rtl);
6862 if (REG_P (exp_rtl)
6863 && REGNO (exp_rtl) < FIRST_PSEUDO_REGISTER)
6864 return 0;
6867 /* If the rtl is X, then it is not safe. Otherwise, it is unless both
6868 are memory and they conflict. */
6869 return ! (rtx_equal_p (x, exp_rtl)
6870 || (MEM_P (x) && MEM_P (exp_rtl)
6871 && true_dependence (exp_rtl, VOIDmode, x,
6872 rtx_addr_varies_p)));
6875 /* If we reach here, it is safe. */
6876 return 1;
6880 /* Return the highest power of two that EXP is known to be a multiple of.
6881 This is used in updating alignment of MEMs in array references. */
6883 unsigned HOST_WIDE_INT
6884 highest_pow2_factor (const_tree exp)
6886 unsigned HOST_WIDE_INT c0, c1;
6888 switch (TREE_CODE (exp))
6890 case INTEGER_CST:
6891 /* We can find the lowest bit that's a one. If the low
6892 HOST_BITS_PER_WIDE_INT bits are zero, return BIGGEST_ALIGNMENT.
6893 We need to handle this case since we can find it in a COND_EXPR,
6894 a MIN_EXPR, or a MAX_EXPR. If the constant overflows, we have an
6895 erroneous program, so return BIGGEST_ALIGNMENT to avoid any
6896 later ICE. */
6897 if (TREE_OVERFLOW (exp))
6898 return BIGGEST_ALIGNMENT;
6899 else
6901 /* Note: tree_low_cst is intentionally not used here,
6902 we don't care about the upper bits. */
6903 c0 = TREE_INT_CST_LOW (exp);
6904 c0 &= -c0;
6905 return c0 ? c0 : BIGGEST_ALIGNMENT;
6907 break;
6909 case PLUS_EXPR: case MINUS_EXPR: case MIN_EXPR: case MAX_EXPR:
6910 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
6911 c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
6912 return MIN (c0, c1);
6914 case MULT_EXPR:
6915 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
6916 c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
6917 return c0 * c1;
6919 case ROUND_DIV_EXPR: case TRUNC_DIV_EXPR: case FLOOR_DIV_EXPR:
6920 case CEIL_DIV_EXPR:
6921 if (integer_pow2p (TREE_OPERAND (exp, 1))
6922 && host_integerp (TREE_OPERAND (exp, 1), 1))
6924 c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
6925 c1 = tree_low_cst (TREE_OPERAND (exp, 1), 1);
6926 return MAX (1, c0 / c1);
6928 break;
6930 case BIT_AND_EXPR:
6931 /* The highest power of two of a bit-and expression is the maximum of
6932 that of its operands. We typically get here for a complex LHS and
6933 a constant negative power of two on the RHS to force an explicit
6934 alignment, so don't bother looking at the LHS. */
6935 return highest_pow2_factor (TREE_OPERAND (exp, 1));
6937 CASE_CONVERT:
6938 case SAVE_EXPR:
6939 return highest_pow2_factor (TREE_OPERAND (exp, 0));
6941 case COMPOUND_EXPR:
6942 return highest_pow2_factor (TREE_OPERAND (exp, 1));
6944 case COND_EXPR:
6945 c0 = highest_pow2_factor (TREE_OPERAND (exp, 1));
6946 c1 = highest_pow2_factor (TREE_OPERAND (exp, 2));
6947 return MIN (c0, c1);
6949 default:
6950 break;
6953 return 1;
6956 /* Similar, except that the alignment requirements of TARGET are
6957 taken into account. Assume it is at least as aligned as its
6958 type, unless it is a COMPONENT_REF in which case the layout of
6959 the structure gives the alignment. */
6961 static unsigned HOST_WIDE_INT
6962 highest_pow2_factor_for_target (const_tree target, const_tree exp)
6964 unsigned HOST_WIDE_INT talign = target_align (target) / BITS_PER_UNIT;
6965 unsigned HOST_WIDE_INT factor = highest_pow2_factor (exp);
6967 return MAX (factor, talign);
6970 /* Subroutine of expand_expr. Expand the two operands of a binary
6971 expression EXP0 and EXP1 placing the results in OP0 and OP1.
6972 The value may be stored in TARGET if TARGET is nonzero. The
6973 MODIFIER argument is as documented by expand_expr. */
6975 static void
6976 expand_operands (tree exp0, tree exp1, rtx target, rtx *op0, rtx *op1,
6977 enum expand_modifier modifier)
6979 if (! safe_from_p (target, exp1, 1))
6980 target = 0;
6981 if (operand_equal_p (exp0, exp1, 0))
6983 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
6984 *op1 = copy_rtx (*op0);
6986 else
6988 /* If we need to preserve evaluation order, copy exp0 into its own
6989 temporary variable so that it can't be clobbered by exp1. */
6990 if (flag_evaluation_order && TREE_SIDE_EFFECTS (exp1))
6991 exp0 = save_expr (exp0);
6992 *op0 = expand_expr (exp0, target, VOIDmode, modifier);
6993 *op1 = expand_expr (exp1, NULL_RTX, VOIDmode, modifier);
6998 /* Return a MEM that contains constant EXP. DEFER is as for
6999 output_constant_def and MODIFIER is as for expand_expr. */
7001 static rtx
7002 expand_expr_constant (tree exp, int defer, enum expand_modifier modifier)
7004 rtx mem;
7006 mem = output_constant_def (exp, defer);
7007 if (modifier != EXPAND_INITIALIZER)
7008 mem = use_anchored_address (mem);
7009 return mem;
7012 /* A subroutine of expand_expr_addr_expr. Evaluate the address of EXP.
7013 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7015 static rtx
7016 expand_expr_addr_expr_1 (tree exp, rtx target, enum machine_mode tmode,
7017 enum expand_modifier modifier, addr_space_t as)
7019 rtx result, subtarget;
7020 tree inner, offset;
7021 HOST_WIDE_INT bitsize, bitpos;
7022 int volatilep, unsignedp;
7023 enum machine_mode mode1;
7025 /* If we are taking the address of a constant and are at the top level,
7026 we have to use output_constant_def since we can't call force_const_mem
7027 at top level. */
7028 /* ??? This should be considered a front-end bug. We should not be
7029 generating ADDR_EXPR of something that isn't an LVALUE. The only
7030 exception here is STRING_CST. */
7031 if (CONSTANT_CLASS_P (exp))
7032 return XEXP (expand_expr_constant (exp, 0, modifier), 0);
7034 /* Everything must be something allowed by is_gimple_addressable. */
7035 switch (TREE_CODE (exp))
7037 case INDIRECT_REF:
7038 /* This case will happen via recursion for &a->b. */
7039 return expand_expr (TREE_OPERAND (exp, 0), target, tmode, modifier);
7041 case MEM_REF:
7043 tree tem = TREE_OPERAND (exp, 0);
7044 if (!integer_zerop (TREE_OPERAND (exp, 1)))
7045 tem = build2 (POINTER_PLUS_EXPR, TREE_TYPE (TREE_OPERAND (exp, 1)),
7046 tem,
7047 double_int_to_tree (sizetype, mem_ref_offset (exp)));
7048 return expand_expr (tem, target, tmode, modifier);
7051 case CONST_DECL:
7052 /* Expand the initializer like constants above. */
7053 return XEXP (expand_expr_constant (DECL_INITIAL (exp), 0, modifier), 0);
7055 case REALPART_EXPR:
7056 /* The real part of the complex number is always first, therefore
7057 the address is the same as the address of the parent object. */
7058 offset = 0;
7059 bitpos = 0;
7060 inner = TREE_OPERAND (exp, 0);
7061 break;
7063 case IMAGPART_EXPR:
7064 /* The imaginary part of the complex number is always second.
7065 The expression is therefore always offset by the size of the
7066 scalar type. */
7067 offset = 0;
7068 bitpos = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp)));
7069 inner = TREE_OPERAND (exp, 0);
7070 break;
7072 default:
7073 /* If the object is a DECL, then expand it for its rtl. Don't bypass
7074 expand_expr, as that can have various side effects; LABEL_DECLs for
7075 example, may not have their DECL_RTL set yet. Expand the rtl of
7076 CONSTRUCTORs too, which should yield a memory reference for the
7077 constructor's contents. Assume language specific tree nodes can
7078 be expanded in some interesting way. */
7079 gcc_assert (TREE_CODE (exp) < LAST_AND_UNUSED_TREE_CODE);
7080 if (DECL_P (exp)
7081 || TREE_CODE (exp) == CONSTRUCTOR
7082 || TREE_CODE (exp) == COMPOUND_LITERAL_EXPR)
7084 result = expand_expr (exp, target, tmode,
7085 modifier == EXPAND_INITIALIZER
7086 ? EXPAND_INITIALIZER : EXPAND_CONST_ADDRESS);
7088 /* If the DECL isn't in memory, then the DECL wasn't properly
7089 marked TREE_ADDRESSABLE, which will be either a front-end
7090 or a tree optimizer bug. */
7092 if (TREE_ADDRESSABLE (exp)
7093 && ! MEM_P (result)
7094 && ! targetm.calls.allocate_stack_slots_for_args())
7096 error ("local frame unavailable (naked function?)");
7097 return result;
7099 else
7100 gcc_assert (MEM_P (result));
7101 result = XEXP (result, 0);
7103 /* ??? Is this needed anymore? */
7104 if (DECL_P (exp) && !TREE_USED (exp) == 0)
7106 assemble_external (exp);
7107 TREE_USED (exp) = 1;
7110 if (modifier != EXPAND_INITIALIZER
7111 && modifier != EXPAND_CONST_ADDRESS)
7112 result = force_operand (result, target);
7113 return result;
7116 /* Pass FALSE as the last argument to get_inner_reference although
7117 we are expanding to RTL. The rationale is that we know how to
7118 handle "aligning nodes" here: we can just bypass them because
7119 they won't change the final object whose address will be returned
7120 (they actually exist only for that purpose). */
7121 inner = get_inner_reference (exp, &bitsize, &bitpos, &offset,
7122 &mode1, &unsignedp, &volatilep, false);
7123 break;
7126 /* We must have made progress. */
7127 gcc_assert (inner != exp);
7129 subtarget = offset || bitpos ? NULL_RTX : target;
7130 /* For VIEW_CONVERT_EXPR, where the outer alignment is bigger than
7131 inner alignment, force the inner to be sufficiently aligned. */
7132 if (CONSTANT_CLASS_P (inner)
7133 && TYPE_ALIGN (TREE_TYPE (inner)) < TYPE_ALIGN (TREE_TYPE (exp)))
7135 inner = copy_node (inner);
7136 TREE_TYPE (inner) = copy_node (TREE_TYPE (inner));
7137 TYPE_ALIGN (TREE_TYPE (inner)) = TYPE_ALIGN (TREE_TYPE (exp));
7138 TYPE_USER_ALIGN (TREE_TYPE (inner)) = 1;
7140 result = expand_expr_addr_expr_1 (inner, subtarget, tmode, modifier, as);
7142 if (offset)
7144 rtx tmp;
7146 if (modifier != EXPAND_NORMAL)
7147 result = force_operand (result, NULL);
7148 tmp = expand_expr (offset, NULL_RTX, tmode,
7149 modifier == EXPAND_INITIALIZER
7150 ? EXPAND_INITIALIZER : EXPAND_NORMAL);
7152 result = convert_memory_address_addr_space (tmode, result, as);
7153 tmp = convert_memory_address_addr_space (tmode, tmp, as);
7155 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
7156 result = simplify_gen_binary (PLUS, tmode, result, tmp);
7157 else
7159 subtarget = bitpos ? NULL_RTX : target;
7160 result = expand_simple_binop (tmode, PLUS, result, tmp, subtarget,
7161 1, OPTAB_LIB_WIDEN);
7165 if (bitpos)
7167 /* Someone beforehand should have rejected taking the address
7168 of such an object. */
7169 gcc_assert ((bitpos % BITS_PER_UNIT) == 0);
7171 result = plus_constant (result, bitpos / BITS_PER_UNIT);
7172 if (modifier < EXPAND_SUM)
7173 result = force_operand (result, target);
7176 return result;
7179 /* A subroutine of expand_expr. Evaluate EXP, which is an ADDR_EXPR.
7180 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7182 static rtx
7183 expand_expr_addr_expr (tree exp, rtx target, enum machine_mode tmode,
7184 enum expand_modifier modifier)
7186 addr_space_t as = ADDR_SPACE_GENERIC;
7187 enum machine_mode address_mode = Pmode;
7188 enum machine_mode pointer_mode = ptr_mode;
7189 enum machine_mode rmode;
7190 rtx result;
7192 /* Target mode of VOIDmode says "whatever's natural". */
7193 if (tmode == VOIDmode)
7194 tmode = TYPE_MODE (TREE_TYPE (exp));
7196 if (POINTER_TYPE_P (TREE_TYPE (exp)))
7198 as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
7199 address_mode = targetm.addr_space.address_mode (as);
7200 pointer_mode = targetm.addr_space.pointer_mode (as);
7203 /* We can get called with some Weird Things if the user does silliness
7204 like "(short) &a". In that case, convert_memory_address won't do
7205 the right thing, so ignore the given target mode. */
7206 if (tmode != address_mode && tmode != pointer_mode)
7207 tmode = address_mode;
7209 result = expand_expr_addr_expr_1 (TREE_OPERAND (exp, 0), target,
7210 tmode, modifier, as);
7212 /* Despite expand_expr claims concerning ignoring TMODE when not
7213 strictly convenient, stuff breaks if we don't honor it. Note
7214 that combined with the above, we only do this for pointer modes. */
7215 rmode = GET_MODE (result);
7216 if (rmode == VOIDmode)
7217 rmode = tmode;
7218 if (rmode != tmode)
7219 result = convert_memory_address_addr_space (tmode, result, as);
7221 return result;
7224 /* Generate code for computing CONSTRUCTOR EXP.
7225 An rtx for the computed value is returned. If AVOID_TEMP_MEM
7226 is TRUE, instead of creating a temporary variable in memory
7227 NULL is returned and the caller needs to handle it differently. */
7229 static rtx
7230 expand_constructor (tree exp, rtx target, enum expand_modifier modifier,
7231 bool avoid_temp_mem)
7233 tree type = TREE_TYPE (exp);
7234 enum machine_mode mode = TYPE_MODE (type);
7236 /* Try to avoid creating a temporary at all. This is possible
7237 if all of the initializer is zero.
7238 FIXME: try to handle all [0..255] initializers we can handle
7239 with memset. */
7240 if (TREE_STATIC (exp)
7241 && !TREE_ADDRESSABLE (exp)
7242 && target != 0 && mode == BLKmode
7243 && all_zeros_p (exp))
7245 clear_storage (target, expr_size (exp), BLOCK_OP_NORMAL);
7246 return target;
7249 /* All elts simple constants => refer to a constant in memory. But
7250 if this is a non-BLKmode mode, let it store a field at a time
7251 since that should make a CONST_INT or CONST_DOUBLE when we
7252 fold. Likewise, if we have a target we can use, it is best to
7253 store directly into the target unless the type is large enough
7254 that memcpy will be used. If we are making an initializer and
7255 all operands are constant, put it in memory as well.
7257 FIXME: Avoid trying to fill vector constructors piece-meal.
7258 Output them with output_constant_def below unless we're sure
7259 they're zeros. This should go away when vector initializers
7260 are treated like VECTOR_CST instead of arrays. */
7261 if ((TREE_STATIC (exp)
7262 && ((mode == BLKmode
7263 && ! (target != 0 && safe_from_p (target, exp, 1)))
7264 || TREE_ADDRESSABLE (exp)
7265 || (host_integerp (TYPE_SIZE_UNIT (type), 1)
7266 && (! MOVE_BY_PIECES_P
7267 (tree_low_cst (TYPE_SIZE_UNIT (type), 1),
7268 TYPE_ALIGN (type)))
7269 && ! mostly_zeros_p (exp))))
7270 || ((modifier == EXPAND_INITIALIZER || modifier == EXPAND_CONST_ADDRESS)
7271 && TREE_CONSTANT (exp)))
7273 rtx constructor;
7275 if (avoid_temp_mem)
7276 return NULL_RTX;
7278 constructor = expand_expr_constant (exp, 1, modifier);
7280 if (modifier != EXPAND_CONST_ADDRESS
7281 && modifier != EXPAND_INITIALIZER
7282 && modifier != EXPAND_SUM)
7283 constructor = validize_mem (constructor);
7285 return constructor;
7288 /* Handle calls that pass values in multiple non-contiguous
7289 locations. The Irix 6 ABI has examples of this. */
7290 if (target == 0 || ! safe_from_p (target, exp, 1)
7291 || GET_CODE (target) == PARALLEL || modifier == EXPAND_STACK_PARM)
7293 if (avoid_temp_mem)
7294 return NULL_RTX;
7296 target
7297 = assign_temp (build_qualified_type (type, (TYPE_QUALS (type)
7298 | (TREE_READONLY (exp)
7299 * TYPE_QUAL_CONST))),
7300 0, TREE_ADDRESSABLE (exp), 1);
7303 store_constructor (exp, target, 0, int_expr_size (exp));
7304 return target;
7308 /* expand_expr: generate code for computing expression EXP.
7309 An rtx for the computed value is returned. The value is never null.
7310 In the case of a void EXP, const0_rtx is returned.
7312 The value may be stored in TARGET if TARGET is nonzero.
7313 TARGET is just a suggestion; callers must assume that
7314 the rtx returned may not be the same as TARGET.
7316 If TARGET is CONST0_RTX, it means that the value will be ignored.
7318 If TMODE is not VOIDmode, it suggests generating the
7319 result in mode TMODE. But this is done only when convenient.
7320 Otherwise, TMODE is ignored and the value generated in its natural mode.
7321 TMODE is just a suggestion; callers must assume that
7322 the rtx returned may not have mode TMODE.
7324 Note that TARGET may have neither TMODE nor MODE. In that case, it
7325 probably will not be used.
7327 If MODIFIER is EXPAND_SUM then when EXP is an addition
7328 we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
7329 or a nest of (PLUS ...) and (MINUS ...) where the terms are
7330 products as above, or REG or MEM, or constant.
7331 Ordinarily in such cases we would output mul or add instructions
7332 and then return a pseudo reg containing the sum.
7334 EXPAND_INITIALIZER is much like EXPAND_SUM except that
7335 it also marks a label as absolutely required (it can't be dead).
7336 It also makes a ZERO_EXTEND or SIGN_EXTEND instead of emitting extend insns.
7337 This is used for outputting expressions used in initializers.
7339 EXPAND_CONST_ADDRESS says that it is okay to return a MEM
7340 with a constant address even if that address is not normally legitimate.
7341 EXPAND_INITIALIZER and EXPAND_SUM also have this effect.
7343 EXPAND_STACK_PARM is used when expanding to a TARGET on the stack for
7344 a call parameter. Such targets require special care as we haven't yet
7345 marked TARGET so that it's safe from being trashed by libcalls. We
7346 don't want to use TARGET for anything but the final result;
7347 Intermediate values must go elsewhere. Additionally, calls to
7348 emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
7350 If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
7351 address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
7352 DECL_RTL of the VAR_DECL. *ALT_RTL is also set if EXP is a
7353 COMPOUND_EXPR whose second argument is such a VAR_DECL, and so on
7354 recursively. */
7357 expand_expr_real (tree exp, rtx target, enum machine_mode tmode,
7358 enum expand_modifier modifier, rtx *alt_rtl)
7360 rtx ret;
7362 /* Handle ERROR_MARK before anybody tries to access its type. */
7363 if (TREE_CODE (exp) == ERROR_MARK
7364 || (TREE_CODE (TREE_TYPE (exp)) == ERROR_MARK))
7366 ret = CONST0_RTX (tmode);
7367 return ret ? ret : const0_rtx;
7370 /* If this is an expression of some kind and it has an associated line
7371 number, then emit the line number before expanding the expression.
7373 We need to save and restore the file and line information so that
7374 errors discovered during expansion are emitted with the right
7375 information. It would be better of the diagnostic routines
7376 used the file/line information embedded in the tree nodes rather
7377 than globals. */
7378 if (cfun && EXPR_HAS_LOCATION (exp))
7380 location_t saved_location = input_location;
7381 location_t saved_curr_loc = get_curr_insn_source_location ();
7382 tree saved_block = get_curr_insn_block ();
7383 input_location = EXPR_LOCATION (exp);
7384 set_curr_insn_source_location (input_location);
7386 /* Record where the insns produced belong. */
7387 set_curr_insn_block (TREE_BLOCK (exp));
7389 ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
7391 input_location = saved_location;
7392 set_curr_insn_block (saved_block);
7393 set_curr_insn_source_location (saved_curr_loc);
7395 else
7397 ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
7400 return ret;
7404 expand_expr_real_2 (sepops ops, rtx target, enum machine_mode tmode,
7405 enum expand_modifier modifier)
7407 rtx op0, op1, op2, temp;
7408 tree type;
7409 int unsignedp;
7410 enum machine_mode mode;
7411 enum tree_code code = ops->code;
7412 optab this_optab;
7413 rtx subtarget, original_target;
7414 int ignore;
7415 bool reduce_bit_field;
7416 location_t loc = ops->location;
7417 tree treeop0, treeop1, treeop2;
7418 #define REDUCE_BIT_FIELD(expr) (reduce_bit_field \
7419 ? reduce_to_bit_field_precision ((expr), \
7420 target, \
7421 type) \
7422 : (expr))
7424 type = ops->type;
7425 mode = TYPE_MODE (type);
7426 unsignedp = TYPE_UNSIGNED (type);
7428 treeop0 = ops->op0;
7429 treeop1 = ops->op1;
7430 treeop2 = ops->op2;
7432 /* We should be called only on simple (binary or unary) expressions,
7433 exactly those that are valid in gimple expressions that aren't
7434 GIMPLE_SINGLE_RHS (or invalid). */
7435 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_UNARY_RHS
7436 || get_gimple_rhs_class (code) == GIMPLE_BINARY_RHS
7437 || get_gimple_rhs_class (code) == GIMPLE_TERNARY_RHS);
7439 ignore = (target == const0_rtx
7440 || ((CONVERT_EXPR_CODE_P (code)
7441 || code == COND_EXPR || code == VIEW_CONVERT_EXPR)
7442 && TREE_CODE (type) == VOID_TYPE));
7444 /* We should be called only if we need the result. */
7445 gcc_assert (!ignore);
7447 /* An operation in what may be a bit-field type needs the
7448 result to be reduced to the precision of the bit-field type,
7449 which is narrower than that of the type's mode. */
7450 reduce_bit_field = (INTEGRAL_TYPE_P (type)
7451 && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type));
7453 if (reduce_bit_field && modifier == EXPAND_STACK_PARM)
7454 target = 0;
7456 /* Use subtarget as the target for operand 0 of a binary operation. */
7457 subtarget = get_subtarget (target);
7458 original_target = target;
7460 switch (code)
7462 case NON_LVALUE_EXPR:
7463 case PAREN_EXPR:
7464 CASE_CONVERT:
7465 if (treeop0 == error_mark_node)
7466 return const0_rtx;
7468 if (TREE_CODE (type) == UNION_TYPE)
7470 tree valtype = TREE_TYPE (treeop0);
7472 /* If both input and output are BLKmode, this conversion isn't doing
7473 anything except possibly changing memory attribute. */
7474 if (mode == BLKmode && TYPE_MODE (valtype) == BLKmode)
7476 rtx result = expand_expr (treeop0, target, tmode,
7477 modifier);
7479 result = copy_rtx (result);
7480 set_mem_attributes (result, type, 0);
7481 return result;
7484 if (target == 0)
7486 if (TYPE_MODE (type) != BLKmode)
7487 target = gen_reg_rtx (TYPE_MODE (type));
7488 else
7489 target = assign_temp (type, 0, 1, 1);
7492 if (MEM_P (target))
7493 /* Store data into beginning of memory target. */
7494 store_expr (treeop0,
7495 adjust_address (target, TYPE_MODE (valtype), 0),
7496 modifier == EXPAND_STACK_PARM,
7497 false);
7499 else
7501 gcc_assert (REG_P (target));
7503 /* Store this field into a union of the proper type. */
7504 store_field (target,
7505 MIN ((int_size_in_bytes (TREE_TYPE
7506 (treeop0))
7507 * BITS_PER_UNIT),
7508 (HOST_WIDE_INT) GET_MODE_BITSIZE (mode)),
7509 0, 0, 0, TYPE_MODE (valtype), treeop0,
7510 type, 0, false);
7513 /* Return the entire union. */
7514 return target;
7517 if (mode == TYPE_MODE (TREE_TYPE (treeop0)))
7519 op0 = expand_expr (treeop0, target, VOIDmode,
7520 modifier);
7522 /* If the signedness of the conversion differs and OP0 is
7523 a promoted SUBREG, clear that indication since we now
7524 have to do the proper extension. */
7525 if (TYPE_UNSIGNED (TREE_TYPE (treeop0)) != unsignedp
7526 && GET_CODE (op0) == SUBREG)
7527 SUBREG_PROMOTED_VAR_P (op0) = 0;
7529 return REDUCE_BIT_FIELD (op0);
7532 op0 = expand_expr (treeop0, NULL_RTX, mode,
7533 modifier == EXPAND_SUM ? EXPAND_NORMAL : modifier);
7534 if (GET_MODE (op0) == mode)
7537 /* If OP0 is a constant, just convert it into the proper mode. */
7538 else if (CONSTANT_P (op0))
7540 tree inner_type = TREE_TYPE (treeop0);
7541 enum machine_mode inner_mode = GET_MODE (op0);
7543 if (inner_mode == VOIDmode)
7544 inner_mode = TYPE_MODE (inner_type);
7546 if (modifier == EXPAND_INITIALIZER)
7547 op0 = simplify_gen_subreg (mode, op0, inner_mode,
7548 subreg_lowpart_offset (mode,
7549 inner_mode));
7550 else
7551 op0= convert_modes (mode, inner_mode, op0,
7552 TYPE_UNSIGNED (inner_type));
7555 else if (modifier == EXPAND_INITIALIZER)
7556 op0 = gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND, mode, op0);
7558 else if (target == 0)
7559 op0 = convert_to_mode (mode, op0,
7560 TYPE_UNSIGNED (TREE_TYPE
7561 (treeop0)));
7562 else
7564 convert_move (target, op0,
7565 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
7566 op0 = target;
7569 return REDUCE_BIT_FIELD (op0);
7571 case ADDR_SPACE_CONVERT_EXPR:
7573 tree treeop0_type = TREE_TYPE (treeop0);
7574 addr_space_t as_to;
7575 addr_space_t as_from;
7577 gcc_assert (POINTER_TYPE_P (type));
7578 gcc_assert (POINTER_TYPE_P (treeop0_type));
7580 as_to = TYPE_ADDR_SPACE (TREE_TYPE (type));
7581 as_from = TYPE_ADDR_SPACE (TREE_TYPE (treeop0_type));
7583 /* Conversions between pointers to the same address space should
7584 have been implemented via CONVERT_EXPR / NOP_EXPR. */
7585 gcc_assert (as_to != as_from);
7587 /* Ask target code to handle conversion between pointers
7588 to overlapping address spaces. */
7589 if (targetm.addr_space.subset_p (as_to, as_from)
7590 || targetm.addr_space.subset_p (as_from, as_to))
7592 op0 = expand_expr (treeop0, NULL_RTX, VOIDmode, modifier);
7593 op0 = targetm.addr_space.convert (op0, treeop0_type, type);
7594 gcc_assert (op0);
7595 return op0;
7598 /* For disjoint address spaces, converting anything but
7599 a null pointer invokes undefined behaviour. We simply
7600 always return a null pointer here. */
7601 return CONST0_RTX (mode);
7604 case POINTER_PLUS_EXPR:
7605 /* Even though the sizetype mode and the pointer's mode can be different
7606 expand is able to handle this correctly and get the correct result out
7607 of the PLUS_EXPR code. */
7608 /* Make sure to sign-extend the sizetype offset in a POINTER_PLUS_EXPR
7609 if sizetype precision is smaller than pointer precision. */
7610 if (TYPE_PRECISION (sizetype) < TYPE_PRECISION (type))
7611 treeop1 = fold_convert_loc (loc, type,
7612 fold_convert_loc (loc, ssizetype,
7613 treeop1));
7614 case PLUS_EXPR:
7615 /* If we are adding a constant, a VAR_DECL that is sp, fp, or ap, and
7616 something else, make sure we add the register to the constant and
7617 then to the other thing. This case can occur during strength
7618 reduction and doing it this way will produce better code if the
7619 frame pointer or argument pointer is eliminated.
7621 fold-const.c will ensure that the constant is always in the inner
7622 PLUS_EXPR, so the only case we need to do anything about is if
7623 sp, ap, or fp is our second argument, in which case we must swap
7624 the innermost first argument and our second argument. */
7626 if (TREE_CODE (treeop0) == PLUS_EXPR
7627 && TREE_CODE (TREE_OPERAND (treeop0, 1)) == INTEGER_CST
7628 && TREE_CODE (treeop1) == VAR_DECL
7629 && (DECL_RTL (treeop1) == frame_pointer_rtx
7630 || DECL_RTL (treeop1) == stack_pointer_rtx
7631 || DECL_RTL (treeop1) == arg_pointer_rtx))
7633 tree t = treeop1;
7635 treeop1 = TREE_OPERAND (treeop0, 0);
7636 TREE_OPERAND (treeop0, 0) = t;
7639 /* If the result is to be ptr_mode and we are adding an integer to
7640 something, we might be forming a constant. So try to use
7641 plus_constant. If it produces a sum and we can't accept it,
7642 use force_operand. This allows P = &ARR[const] to generate
7643 efficient code on machines where a SYMBOL_REF is not a valid
7644 address.
7646 If this is an EXPAND_SUM call, always return the sum. */
7647 if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER
7648 || (mode == ptr_mode && (unsignedp || ! flag_trapv)))
7650 if (modifier == EXPAND_STACK_PARM)
7651 target = 0;
7652 if (TREE_CODE (treeop0) == INTEGER_CST
7653 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT
7654 && TREE_CONSTANT (treeop1))
7656 rtx constant_part;
7658 op1 = expand_expr (treeop1, subtarget, VOIDmode,
7659 EXPAND_SUM);
7660 /* Use immed_double_const to ensure that the constant is
7661 truncated according to the mode of OP1, then sign extended
7662 to a HOST_WIDE_INT. Using the constant directly can result
7663 in non-canonical RTL in a 64x32 cross compile. */
7664 constant_part
7665 = immed_double_const (TREE_INT_CST_LOW (treeop0),
7666 (HOST_WIDE_INT) 0,
7667 TYPE_MODE (TREE_TYPE (treeop1)));
7668 op1 = plus_constant (op1, INTVAL (constant_part));
7669 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7670 op1 = force_operand (op1, target);
7671 return REDUCE_BIT_FIELD (op1);
7674 else if (TREE_CODE (treeop1) == INTEGER_CST
7675 && GET_MODE_PRECISION (mode) <= HOST_BITS_PER_WIDE_INT
7676 && TREE_CONSTANT (treeop0))
7678 rtx constant_part;
7680 op0 = expand_expr (treeop0, subtarget, VOIDmode,
7681 (modifier == EXPAND_INITIALIZER
7682 ? EXPAND_INITIALIZER : EXPAND_SUM));
7683 if (! CONSTANT_P (op0))
7685 op1 = expand_expr (treeop1, NULL_RTX,
7686 VOIDmode, modifier);
7687 /* Return a PLUS if modifier says it's OK. */
7688 if (modifier == EXPAND_SUM
7689 || modifier == EXPAND_INITIALIZER)
7690 return simplify_gen_binary (PLUS, mode, op0, op1);
7691 goto binop2;
7693 /* Use immed_double_const to ensure that the constant is
7694 truncated according to the mode of OP1, then sign extended
7695 to a HOST_WIDE_INT. Using the constant directly can result
7696 in non-canonical RTL in a 64x32 cross compile. */
7697 constant_part
7698 = immed_double_const (TREE_INT_CST_LOW (treeop1),
7699 (HOST_WIDE_INT) 0,
7700 TYPE_MODE (TREE_TYPE (treeop0)));
7701 op0 = plus_constant (op0, INTVAL (constant_part));
7702 if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7703 op0 = force_operand (op0, target);
7704 return REDUCE_BIT_FIELD (op0);
7708 /* Use TER to expand pointer addition of a negated value
7709 as pointer subtraction. */
7710 if ((POINTER_TYPE_P (TREE_TYPE (treeop0))
7711 || (TREE_CODE (TREE_TYPE (treeop0)) == VECTOR_TYPE
7712 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (treeop0)))))
7713 && TREE_CODE (treeop1) == SSA_NAME
7714 && TYPE_MODE (TREE_TYPE (treeop0))
7715 == TYPE_MODE (TREE_TYPE (treeop1)))
7717 gimple def = get_def_for_expr (treeop1, NEGATE_EXPR);
7718 if (def)
7720 treeop1 = gimple_assign_rhs1 (def);
7721 code = MINUS_EXPR;
7722 goto do_minus;
7726 /* No sense saving up arithmetic to be done
7727 if it's all in the wrong mode to form part of an address.
7728 And force_operand won't know whether to sign-extend or
7729 zero-extend. */
7730 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7731 || mode != ptr_mode)
7733 expand_operands (treeop0, treeop1,
7734 subtarget, &op0, &op1, EXPAND_NORMAL);
7735 if (op0 == const0_rtx)
7736 return op1;
7737 if (op1 == const0_rtx)
7738 return op0;
7739 goto binop2;
7742 expand_operands (treeop0, treeop1,
7743 subtarget, &op0, &op1, modifier);
7744 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
7746 case MINUS_EXPR:
7747 do_minus:
7748 /* For initializers, we are allowed to return a MINUS of two
7749 symbolic constants. Here we handle all cases when both operands
7750 are constant. */
7751 /* Handle difference of two symbolic constants,
7752 for the sake of an initializer. */
7753 if ((modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
7754 && really_constant_p (treeop0)
7755 && really_constant_p (treeop1))
7757 expand_operands (treeop0, treeop1,
7758 NULL_RTX, &op0, &op1, modifier);
7760 /* If the last operand is a CONST_INT, use plus_constant of
7761 the negated constant. Else make the MINUS. */
7762 if (CONST_INT_P (op1))
7763 return REDUCE_BIT_FIELD (plus_constant (op0, - INTVAL (op1)));
7764 else
7765 return REDUCE_BIT_FIELD (gen_rtx_MINUS (mode, op0, op1));
7768 /* No sense saving up arithmetic to be done
7769 if it's all in the wrong mode to form part of an address.
7770 And force_operand won't know whether to sign-extend or
7771 zero-extend. */
7772 if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7773 || mode != ptr_mode)
7774 goto binop;
7776 expand_operands (treeop0, treeop1,
7777 subtarget, &op0, &op1, modifier);
7779 /* Convert A - const to A + (-const). */
7780 if (CONST_INT_P (op1))
7782 op1 = negate_rtx (mode, op1);
7783 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
7786 goto binop2;
7788 case WIDEN_MULT_PLUS_EXPR:
7789 case WIDEN_MULT_MINUS_EXPR:
7790 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
7791 op2 = expand_normal (treeop2);
7792 target = expand_widen_pattern_expr (ops, op0, op1, op2,
7793 target, unsignedp);
7794 return target;
7796 case WIDEN_MULT_EXPR:
7797 /* If first operand is constant, swap them.
7798 Thus the following special case checks need only
7799 check the second operand. */
7800 if (TREE_CODE (treeop0) == INTEGER_CST)
7802 tree t1 = treeop0;
7803 treeop0 = treeop1;
7804 treeop1 = t1;
7807 /* First, check if we have a multiplication of one signed and one
7808 unsigned operand. */
7809 if (TREE_CODE (treeop1) != INTEGER_CST
7810 && (TYPE_UNSIGNED (TREE_TYPE (treeop0))
7811 != TYPE_UNSIGNED (TREE_TYPE (treeop1))))
7813 enum machine_mode innermode = TYPE_MODE (TREE_TYPE (treeop0));
7814 this_optab = usmul_widen_optab;
7815 if (mode == GET_MODE_2XWIDER_MODE (innermode))
7817 if (optab_handler (this_optab, mode) != CODE_FOR_nothing)
7819 if (TYPE_UNSIGNED (TREE_TYPE (treeop0)))
7820 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1,
7821 EXPAND_NORMAL);
7822 else
7823 expand_operands (treeop0, treeop1, NULL_RTX, &op1, &op0,
7824 EXPAND_NORMAL);
7825 goto binop3;
7829 /* Check for a multiplication with matching signedness. */
7830 else if ((TREE_CODE (treeop1) == INTEGER_CST
7831 && int_fits_type_p (treeop1, TREE_TYPE (treeop0)))
7832 || (TYPE_UNSIGNED (TREE_TYPE (treeop1))
7833 == TYPE_UNSIGNED (TREE_TYPE (treeop0))))
7835 tree op0type = TREE_TYPE (treeop0);
7836 enum machine_mode innermode = TYPE_MODE (op0type);
7837 bool zextend_p = TYPE_UNSIGNED (op0type);
7838 optab other_optab = zextend_p ? smul_widen_optab : umul_widen_optab;
7839 this_optab = zextend_p ? umul_widen_optab : smul_widen_optab;
7841 if (mode == GET_MODE_2XWIDER_MODE (innermode)
7842 && TREE_CODE (treeop0) != INTEGER_CST)
7844 if (optab_handler (this_optab, mode) != CODE_FOR_nothing)
7846 expand_operands (treeop0, treeop1, NULL_RTX, &op0, &op1,
7847 EXPAND_NORMAL);
7848 temp = expand_widening_mult (mode, op0, op1, target,
7849 unsignedp, this_optab);
7850 return REDUCE_BIT_FIELD (temp);
7852 if (optab_handler (other_optab, mode) != CODE_FOR_nothing
7853 && innermode == word_mode)
7855 rtx htem, hipart;
7856 op0 = expand_normal (treeop0);
7857 if (TREE_CODE (treeop1) == INTEGER_CST)
7858 op1 = convert_modes (innermode, mode,
7859 expand_normal (treeop1), unsignedp);
7860 else
7861 op1 = expand_normal (treeop1);
7862 temp = expand_binop (mode, other_optab, op0, op1, target,
7863 unsignedp, OPTAB_LIB_WIDEN);
7864 hipart = gen_highpart (innermode, temp);
7865 htem = expand_mult_highpart_adjust (innermode, hipart,
7866 op0, op1, hipart,
7867 zextend_p);
7868 if (htem != hipart)
7869 emit_move_insn (hipart, htem);
7870 return REDUCE_BIT_FIELD (temp);
7874 treeop0 = fold_build1 (CONVERT_EXPR, type, treeop0);
7875 treeop1 = fold_build1 (CONVERT_EXPR, type, treeop1);
7876 expand_operands (treeop0, treeop1, subtarget, &op0, &op1, EXPAND_NORMAL);
7877 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
7879 case FMA_EXPR:
7881 optab opt = fma_optab;
7882 gimple def0, def2;
7884 /* If there is no insn for FMA, emit it as __builtin_fma{,f,l}
7885 call. */
7886 if (optab_handler (fma_optab, mode) == CODE_FOR_nothing)
7888 tree fn = mathfn_built_in (TREE_TYPE (treeop0), BUILT_IN_FMA);
7889 tree call_expr;
7891 gcc_assert (fn != NULL_TREE);
7892 call_expr = build_call_expr (fn, 3, treeop0, treeop1, treeop2);
7893 return expand_builtin (call_expr, target, subtarget, mode, false);
7896 def0 = get_def_for_expr (treeop0, NEGATE_EXPR);
7897 def2 = get_def_for_expr (treeop2, NEGATE_EXPR);
7899 op0 = op2 = NULL;
7901 if (def0 && def2
7902 && optab_handler (fnms_optab, mode) != CODE_FOR_nothing)
7904 opt = fnms_optab;
7905 op0 = expand_normal (gimple_assign_rhs1 (def0));
7906 op2 = expand_normal (gimple_assign_rhs1 (def2));
7908 else if (def0
7909 && optab_handler (fnma_optab, mode) != CODE_FOR_nothing)
7911 opt = fnma_optab;
7912 op0 = expand_normal (gimple_assign_rhs1 (def0));
7914 else if (def2
7915 && optab_handler (fms_optab, mode) != CODE_FOR_nothing)
7917 opt = fms_optab;
7918 op2 = expand_normal (gimple_assign_rhs1 (def2));
7921 if (op0 == NULL)
7922 op0 = expand_expr (treeop0, subtarget, VOIDmode, EXPAND_NORMAL);
7923 if (op2 == NULL)
7924 op2 = expand_normal (treeop2);
7925 op1 = expand_normal (treeop1);
7927 return expand_ternary_op (TYPE_MODE (type), opt,
7928 op0, op1, op2, target, 0);
7931 case MULT_EXPR:
7932 /* If this is a fixed-point operation, then we cannot use the code
7933 below because "expand_mult" doesn't support sat/no-sat fixed-point
7934 multiplications. */
7935 if (ALL_FIXED_POINT_MODE_P (mode))
7936 goto binop;
7938 /* If first operand is constant, swap them.
7939 Thus the following special case checks need only
7940 check the second operand. */
7941 if (TREE_CODE (treeop0) == INTEGER_CST)
7943 tree t1 = treeop0;
7944 treeop0 = treeop1;
7945 treeop1 = t1;
7948 /* Attempt to return something suitable for generating an
7949 indexed address, for machines that support that. */
7951 if (modifier == EXPAND_SUM && mode == ptr_mode
7952 && host_integerp (treeop1, 0))
7954 tree exp1 = treeop1;
7956 op0 = expand_expr (treeop0, subtarget, VOIDmode,
7957 EXPAND_SUM);
7959 if (!REG_P (op0))
7960 op0 = force_operand (op0, NULL_RTX);
7961 if (!REG_P (op0))
7962 op0 = copy_to_mode_reg (mode, op0);
7964 return REDUCE_BIT_FIELD (gen_rtx_MULT (mode, op0,
7965 gen_int_mode (tree_low_cst (exp1, 0),
7966 TYPE_MODE (TREE_TYPE (exp1)))));
7969 if (modifier == EXPAND_STACK_PARM)
7970 target = 0;
7972 expand_operands (treeop0, treeop1, subtarget, &op0, &op1, EXPAND_NORMAL);
7973 return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
7975 case TRUNC_DIV_EXPR:
7976 case FLOOR_DIV_EXPR:
7977 case CEIL_DIV_EXPR:
7978 case ROUND_DIV_EXPR:
7979 case EXACT_DIV_EXPR:
7980 /* If this is a fixed-point operation, then we cannot use the code
7981 below because "expand_divmod" doesn't support sat/no-sat fixed-point
7982 divisions. */
7983 if (ALL_FIXED_POINT_MODE_P (mode))
7984 goto binop;
7986 if (modifier == EXPAND_STACK_PARM)
7987 target = 0;
7988 /* Possible optimization: compute the dividend with EXPAND_SUM
7989 then if the divisor is constant can optimize the case
7990 where some terms of the dividend have coeffs divisible by it. */
7991 expand_operands (treeop0, treeop1,
7992 subtarget, &op0, &op1, EXPAND_NORMAL);
7993 return expand_divmod (0, code, mode, op0, op1, target, unsignedp);
7995 case RDIV_EXPR:
7996 goto binop;
7998 case TRUNC_MOD_EXPR:
7999 case FLOOR_MOD_EXPR:
8000 case CEIL_MOD_EXPR:
8001 case ROUND_MOD_EXPR:
8002 if (modifier == EXPAND_STACK_PARM)
8003 target = 0;
8004 expand_operands (treeop0, treeop1,
8005 subtarget, &op0, &op1, EXPAND_NORMAL);
8006 return expand_divmod (1, code, mode, op0, op1, target, unsignedp);
8008 case FIXED_CONVERT_EXPR:
8009 op0 = expand_normal (treeop0);
8010 if (target == 0 || modifier == EXPAND_STACK_PARM)
8011 target = gen_reg_rtx (mode);
8013 if ((TREE_CODE (TREE_TYPE (treeop0)) == INTEGER_TYPE
8014 && TYPE_UNSIGNED (TREE_TYPE (treeop0)))
8015 || (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type)))
8016 expand_fixed_convert (target, op0, 1, TYPE_SATURATING (type));
8017 else
8018 expand_fixed_convert (target, op0, 0, TYPE_SATURATING (type));
8019 return target;
8021 case FIX_TRUNC_EXPR:
8022 op0 = expand_normal (treeop0);
8023 if (target == 0 || modifier == EXPAND_STACK_PARM)
8024 target = gen_reg_rtx (mode);
8025 expand_fix (target, op0, unsignedp);
8026 return target;
8028 case FLOAT_EXPR:
8029 op0 = expand_normal (treeop0);
8030 if (target == 0 || modifier == EXPAND_STACK_PARM)
8031 target = gen_reg_rtx (mode);
8032 /* expand_float can't figure out what to do if FROM has VOIDmode.
8033 So give it the correct mode. With -O, cse will optimize this. */
8034 if (GET_MODE (op0) == VOIDmode)
8035 op0 = copy_to_mode_reg (TYPE_MODE (TREE_TYPE (treeop0)),
8036 op0);
8037 expand_float (target, op0,
8038 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
8039 return target;
8041 case NEGATE_EXPR:
8042 op0 = expand_expr (treeop0, subtarget,
8043 VOIDmode, EXPAND_NORMAL);
8044 if (modifier == EXPAND_STACK_PARM)
8045 target = 0;
8046 temp = expand_unop (mode,
8047 optab_for_tree_code (NEGATE_EXPR, type,
8048 optab_default),
8049 op0, target, 0);
8050 gcc_assert (temp);
8051 return REDUCE_BIT_FIELD (temp);
8053 case ABS_EXPR:
8054 op0 = expand_expr (treeop0, subtarget,
8055 VOIDmode, EXPAND_NORMAL);
8056 if (modifier == EXPAND_STACK_PARM)
8057 target = 0;
8059 /* ABS_EXPR is not valid for complex arguments. */
8060 gcc_assert (GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
8061 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT);
8063 /* Unsigned abs is simply the operand. Testing here means we don't
8064 risk generating incorrect code below. */
8065 if (TYPE_UNSIGNED (type))
8066 return op0;
8068 return expand_abs (mode, op0, target, unsignedp,
8069 safe_from_p (target, treeop0, 1));
8071 case MAX_EXPR:
8072 case MIN_EXPR:
8073 target = original_target;
8074 if (target == 0
8075 || modifier == EXPAND_STACK_PARM
8076 || (MEM_P (target) && MEM_VOLATILE_P (target))
8077 || GET_MODE (target) != mode
8078 || (REG_P (target)
8079 && REGNO (target) < FIRST_PSEUDO_REGISTER))
8080 target = gen_reg_rtx (mode);
8081 expand_operands (treeop0, treeop1,
8082 target, &op0, &op1, EXPAND_NORMAL);
8084 /* First try to do it with a special MIN or MAX instruction.
8085 If that does not win, use a conditional jump to select the proper
8086 value. */
8087 this_optab = optab_for_tree_code (code, type, optab_default);
8088 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
8089 OPTAB_WIDEN);
8090 if (temp != 0)
8091 return temp;
8093 /* At this point, a MEM target is no longer useful; we will get better
8094 code without it. */
8096 if (! REG_P (target))
8097 target = gen_reg_rtx (mode);
8099 /* If op1 was placed in target, swap op0 and op1. */
8100 if (target != op0 && target == op1)
8102 temp = op0;
8103 op0 = op1;
8104 op1 = temp;
8107 /* We generate better code and avoid problems with op1 mentioning
8108 target by forcing op1 into a pseudo if it isn't a constant. */
8109 if (! CONSTANT_P (op1))
8110 op1 = force_reg (mode, op1);
8113 enum rtx_code comparison_code;
8114 rtx cmpop1 = op1;
8116 if (code == MAX_EXPR)
8117 comparison_code = unsignedp ? GEU : GE;
8118 else
8119 comparison_code = unsignedp ? LEU : LE;
8121 /* Canonicalize to comparisons against 0. */
8122 if (op1 == const1_rtx)
8124 /* Converting (a >= 1 ? a : 1) into (a > 0 ? a : 1)
8125 or (a != 0 ? a : 1) for unsigned.
8126 For MIN we are safe converting (a <= 1 ? a : 1)
8127 into (a <= 0 ? a : 1) */
8128 cmpop1 = const0_rtx;
8129 if (code == MAX_EXPR)
8130 comparison_code = unsignedp ? NE : GT;
8132 if (op1 == constm1_rtx && !unsignedp)
8134 /* Converting (a >= -1 ? a : -1) into (a >= 0 ? a : -1)
8135 and (a <= -1 ? a : -1) into (a < 0 ? a : -1) */
8136 cmpop1 = const0_rtx;
8137 if (code == MIN_EXPR)
8138 comparison_code = LT;
8140 #ifdef HAVE_conditional_move
8141 /* Use a conditional move if possible. */
8142 if (can_conditionally_move_p (mode))
8144 rtx insn;
8146 /* ??? Same problem as in expmed.c: emit_conditional_move
8147 forces a stack adjustment via compare_from_rtx, and we
8148 lose the stack adjustment if the sequence we are about
8149 to create is discarded. */
8150 do_pending_stack_adjust ();
8152 start_sequence ();
8154 /* Try to emit the conditional move. */
8155 insn = emit_conditional_move (target, comparison_code,
8156 op0, cmpop1, mode,
8157 op0, op1, mode,
8158 unsignedp);
8160 /* If we could do the conditional move, emit the sequence,
8161 and return. */
8162 if (insn)
8164 rtx seq = get_insns ();
8165 end_sequence ();
8166 emit_insn (seq);
8167 return target;
8170 /* Otherwise discard the sequence and fall back to code with
8171 branches. */
8172 end_sequence ();
8174 #endif
8175 if (target != op0)
8176 emit_move_insn (target, op0);
8178 temp = gen_label_rtx ();
8179 do_compare_rtx_and_jump (target, cmpop1, comparison_code,
8180 unsignedp, mode, NULL_RTX, NULL_RTX, temp,
8181 -1);
8183 emit_move_insn (target, op1);
8184 emit_label (temp);
8185 return target;
8187 case BIT_NOT_EXPR:
8188 op0 = expand_expr (treeop0, subtarget,
8189 VOIDmode, EXPAND_NORMAL);
8190 if (modifier == EXPAND_STACK_PARM)
8191 target = 0;
8192 /* In case we have to reduce the result to bitfield precision
8193 expand this as XOR with a proper constant instead. */
8194 if (reduce_bit_field)
8195 temp = expand_binop (mode, xor_optab, op0,
8196 immed_double_int_const
8197 (double_int_mask (TYPE_PRECISION (type)), mode),
8198 target, 1, OPTAB_LIB_WIDEN);
8199 else
8200 temp = expand_unop (mode, one_cmpl_optab, op0, target, 1);
8201 gcc_assert (temp);
8202 return temp;
8204 /* ??? Can optimize bitwise operations with one arg constant.
8205 Can optimize (a bitwise1 n) bitwise2 (a bitwise3 b)
8206 and (a bitwise1 b) bitwise2 b (etc)
8207 but that is probably not worth while. */
8209 case BIT_AND_EXPR:
8210 case BIT_IOR_EXPR:
8211 case BIT_XOR_EXPR:
8212 goto binop;
8214 case LROTATE_EXPR:
8215 case RROTATE_EXPR:
8216 gcc_assert (VECTOR_MODE_P (TYPE_MODE (type))
8217 || (GET_MODE_PRECISION (TYPE_MODE (type))
8218 == TYPE_PRECISION (type)));
8219 /* fall through */
8221 case LSHIFT_EXPR:
8222 case RSHIFT_EXPR:
8223 /* If this is a fixed-point operation, then we cannot use the code
8224 below because "expand_shift" doesn't support sat/no-sat fixed-point
8225 shifts. */
8226 if (ALL_FIXED_POINT_MODE_P (mode))
8227 goto binop;
8229 if (! safe_from_p (subtarget, treeop1, 1))
8230 subtarget = 0;
8231 if (modifier == EXPAND_STACK_PARM)
8232 target = 0;
8233 op0 = expand_expr (treeop0, subtarget,
8234 VOIDmode, EXPAND_NORMAL);
8235 temp = expand_variable_shift (code, mode, op0, treeop1, target,
8236 unsignedp);
8237 if (code == LSHIFT_EXPR)
8238 temp = REDUCE_BIT_FIELD (temp);
8239 return temp;
8241 /* Could determine the answer when only additive constants differ. Also,
8242 the addition of one can be handled by changing the condition. */
8243 case LT_EXPR:
8244 case LE_EXPR:
8245 case GT_EXPR:
8246 case GE_EXPR:
8247 case EQ_EXPR:
8248 case NE_EXPR:
8249 case UNORDERED_EXPR:
8250 case ORDERED_EXPR:
8251 case UNLT_EXPR:
8252 case UNLE_EXPR:
8253 case UNGT_EXPR:
8254 case UNGE_EXPR:
8255 case UNEQ_EXPR:
8256 case LTGT_EXPR:
8257 temp = do_store_flag (ops,
8258 modifier != EXPAND_STACK_PARM ? target : NULL_RTX,
8259 tmode != VOIDmode ? tmode : mode);
8260 if (temp)
8261 return temp;
8263 /* Use a compare and a jump for BLKmode comparisons, or for function
8264 type comparisons is HAVE_canonicalize_funcptr_for_compare. */
8266 if ((target == 0
8267 || modifier == EXPAND_STACK_PARM
8268 || ! safe_from_p (target, treeop0, 1)
8269 || ! safe_from_p (target, treeop1, 1)
8270 /* Make sure we don't have a hard reg (such as function's return
8271 value) live across basic blocks, if not optimizing. */
8272 || (!optimize && REG_P (target)
8273 && REGNO (target) < FIRST_PSEUDO_REGISTER)))
8274 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
8276 emit_move_insn (target, const0_rtx);
8278 op1 = gen_label_rtx ();
8279 jumpifnot_1 (code, treeop0, treeop1, op1, -1);
8281 if (TYPE_PRECISION (type) == 1 && !TYPE_UNSIGNED (type))
8282 emit_move_insn (target, constm1_rtx);
8283 else
8284 emit_move_insn (target, const1_rtx);
8286 emit_label (op1);
8287 return target;
8289 case COMPLEX_EXPR:
8290 /* Get the rtx code of the operands. */
8291 op0 = expand_normal (treeop0);
8292 op1 = expand_normal (treeop1);
8294 if (!target)
8295 target = gen_reg_rtx (TYPE_MODE (type));
8297 /* Move the real (op0) and imaginary (op1) parts to their location. */
8298 write_complex_part (target, op0, false);
8299 write_complex_part (target, op1, true);
8301 return target;
8303 case WIDEN_SUM_EXPR:
8305 tree oprnd0 = treeop0;
8306 tree oprnd1 = treeop1;
8308 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8309 target = expand_widen_pattern_expr (ops, op0, NULL_RTX, op1,
8310 target, unsignedp);
8311 return target;
8314 case REDUC_MAX_EXPR:
8315 case REDUC_MIN_EXPR:
8316 case REDUC_PLUS_EXPR:
8318 op0 = expand_normal (treeop0);
8319 this_optab = optab_for_tree_code (code, type, optab_default);
8320 temp = expand_unop (mode, this_optab, op0, target, unsignedp);
8321 gcc_assert (temp);
8322 return temp;
8325 case VEC_EXTRACT_EVEN_EXPR:
8326 case VEC_EXTRACT_ODD_EXPR:
8328 expand_operands (treeop0, treeop1,
8329 NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8330 this_optab = optab_for_tree_code (code, type, optab_default);
8331 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
8332 OPTAB_WIDEN);
8333 gcc_assert (temp);
8334 return temp;
8337 case VEC_INTERLEAVE_HIGH_EXPR:
8338 case VEC_INTERLEAVE_LOW_EXPR:
8340 expand_operands (treeop0, treeop1,
8341 NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8342 this_optab = optab_for_tree_code (code, type, optab_default);
8343 temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
8344 OPTAB_WIDEN);
8345 gcc_assert (temp);
8346 return temp;
8349 case VEC_LSHIFT_EXPR:
8350 case VEC_RSHIFT_EXPR:
8352 target = expand_vec_shift_expr (ops, target);
8353 return target;
8356 case VEC_UNPACK_HI_EXPR:
8357 case VEC_UNPACK_LO_EXPR:
8359 op0 = expand_normal (treeop0);
8360 temp = expand_widen_pattern_expr (ops, op0, NULL_RTX, NULL_RTX,
8361 target, unsignedp);
8362 gcc_assert (temp);
8363 return temp;
8366 case VEC_UNPACK_FLOAT_HI_EXPR:
8367 case VEC_UNPACK_FLOAT_LO_EXPR:
8369 op0 = expand_normal (treeop0);
8370 /* The signedness is determined from input operand. */
8371 temp = expand_widen_pattern_expr
8372 (ops, op0, NULL_RTX, NULL_RTX,
8373 target, TYPE_UNSIGNED (TREE_TYPE (treeop0)));
8375 gcc_assert (temp);
8376 return temp;
8379 case VEC_WIDEN_MULT_HI_EXPR:
8380 case VEC_WIDEN_MULT_LO_EXPR:
8382 tree oprnd0 = treeop0;
8383 tree oprnd1 = treeop1;
8385 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8386 target = expand_widen_pattern_expr (ops, op0, op1, NULL_RTX,
8387 target, unsignedp);
8388 gcc_assert (target);
8389 return target;
8392 case VEC_PACK_TRUNC_EXPR:
8393 case VEC_PACK_SAT_EXPR:
8394 case VEC_PACK_FIX_TRUNC_EXPR:
8395 mode = TYPE_MODE (TREE_TYPE (treeop0));
8396 goto binop;
8398 case DOT_PROD_EXPR:
8400 tree oprnd0 = treeop0;
8401 tree oprnd1 = treeop1;
8402 tree oprnd2 = treeop2;
8403 rtx op2;
8405 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8406 op2 = expand_normal (oprnd2);
8407 target = expand_widen_pattern_expr (ops, op0, op1, op2,
8408 target, unsignedp);
8409 return target;
8412 case REALIGN_LOAD_EXPR:
8414 tree oprnd0 = treeop0;
8415 tree oprnd1 = treeop1;
8416 tree oprnd2 = treeop2;
8417 rtx op2;
8419 this_optab = optab_for_tree_code (code, type, optab_default);
8420 expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, EXPAND_NORMAL);
8421 op2 = expand_normal (oprnd2);
8422 temp = expand_ternary_op (mode, this_optab, op0, op1, op2,
8423 target, unsignedp);
8424 gcc_assert (temp);
8425 return temp;
8428 default:
8429 gcc_unreachable ();
8432 /* Here to do an ordinary binary operator. */
8433 binop:
8434 expand_operands (treeop0, treeop1,
8435 subtarget, &op0, &op1, EXPAND_NORMAL);
8436 binop2:
8437 this_optab = optab_for_tree_code (code, type, optab_default);
8438 binop3:
8439 if (modifier == EXPAND_STACK_PARM)
8440 target = 0;
8441 temp = expand_binop (mode, this_optab, op0, op1, target,
8442 unsignedp, OPTAB_LIB_WIDEN);
8443 gcc_assert (temp);
8444 /* Bitwise operations do not need bitfield reduction as we expect their
8445 operands being properly truncated. */
8446 if (code == BIT_XOR_EXPR
8447 || code == BIT_AND_EXPR
8448 || code == BIT_IOR_EXPR)
8449 return temp;
8450 return REDUCE_BIT_FIELD (temp);
8452 #undef REDUCE_BIT_FIELD
8455 expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
8456 enum expand_modifier modifier, rtx *alt_rtl)
8458 rtx op0, op1, temp, decl_rtl;
8459 tree type;
8460 int unsignedp;
8461 enum machine_mode mode;
8462 enum tree_code code = TREE_CODE (exp);
8463 rtx subtarget, original_target;
8464 int ignore;
8465 tree context;
8466 bool reduce_bit_field;
8467 location_t loc = EXPR_LOCATION (exp);
8468 struct separate_ops ops;
8469 tree treeop0, treeop1, treeop2;
8470 tree ssa_name = NULL_TREE;
8471 gimple g;
8473 type = TREE_TYPE (exp);
8474 mode = TYPE_MODE (type);
8475 unsignedp = TYPE_UNSIGNED (type);
8477 treeop0 = treeop1 = treeop2 = NULL_TREE;
8478 if (!VL_EXP_CLASS_P (exp))
8479 switch (TREE_CODE_LENGTH (code))
8481 default:
8482 case 3: treeop2 = TREE_OPERAND (exp, 2);
8483 case 2: treeop1 = TREE_OPERAND (exp, 1);
8484 case 1: treeop0 = TREE_OPERAND (exp, 0);
8485 case 0: break;
8487 ops.code = code;
8488 ops.type = type;
8489 ops.op0 = treeop0;
8490 ops.op1 = treeop1;
8491 ops.op2 = treeop2;
8492 ops.location = loc;
8494 ignore = (target == const0_rtx
8495 || ((CONVERT_EXPR_CODE_P (code)
8496 || code == COND_EXPR || code == VIEW_CONVERT_EXPR)
8497 && TREE_CODE (type) == VOID_TYPE));
8499 /* An operation in what may be a bit-field type needs the
8500 result to be reduced to the precision of the bit-field type,
8501 which is narrower than that of the type's mode. */
8502 reduce_bit_field = (!ignore
8503 && INTEGRAL_TYPE_P (type)
8504 && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type));
8506 /* If we are going to ignore this result, we need only do something
8507 if there is a side-effect somewhere in the expression. If there
8508 is, short-circuit the most common cases here. Note that we must
8509 not call expand_expr with anything but const0_rtx in case this
8510 is an initial expansion of a size that contains a PLACEHOLDER_EXPR. */
8512 if (ignore)
8514 if (! TREE_SIDE_EFFECTS (exp))
8515 return const0_rtx;
8517 /* Ensure we reference a volatile object even if value is ignored, but
8518 don't do this if all we are doing is taking its address. */
8519 if (TREE_THIS_VOLATILE (exp)
8520 && TREE_CODE (exp) != FUNCTION_DECL
8521 && mode != VOIDmode && mode != BLKmode
8522 && modifier != EXPAND_CONST_ADDRESS)
8524 temp = expand_expr (exp, NULL_RTX, VOIDmode, modifier);
8525 if (MEM_P (temp))
8526 copy_to_reg (temp);
8527 return const0_rtx;
8530 if (TREE_CODE_CLASS (code) == tcc_unary
8531 || code == COMPONENT_REF || code == INDIRECT_REF)
8532 return expand_expr (treeop0, const0_rtx, VOIDmode,
8533 modifier);
8535 else if (TREE_CODE_CLASS (code) == tcc_binary
8536 || TREE_CODE_CLASS (code) == tcc_comparison
8537 || code == ARRAY_REF || code == ARRAY_RANGE_REF)
8539 expand_expr (treeop0, const0_rtx, VOIDmode, modifier);
8540 expand_expr (treeop1, const0_rtx, VOIDmode, modifier);
8541 return const0_rtx;
8543 else if (code == BIT_FIELD_REF)
8545 expand_expr (treeop0, const0_rtx, VOIDmode, modifier);
8546 expand_expr (treeop1, const0_rtx, VOIDmode, modifier);
8547 expand_expr (treeop2, const0_rtx, VOIDmode, modifier);
8548 return const0_rtx;
8551 target = 0;
8554 if (reduce_bit_field && modifier == EXPAND_STACK_PARM)
8555 target = 0;
8557 /* Use subtarget as the target for operand 0 of a binary operation. */
8558 subtarget = get_subtarget (target);
8559 original_target = target;
8561 switch (code)
8563 case LABEL_DECL:
8565 tree function = decl_function_context (exp);
8567 temp = label_rtx (exp);
8568 temp = gen_rtx_LABEL_REF (Pmode, temp);
8570 if (function != current_function_decl
8571 && function != 0)
8572 LABEL_REF_NONLOCAL_P (temp) = 1;
8574 temp = gen_rtx_MEM (FUNCTION_MODE, temp);
8575 return temp;
8578 case SSA_NAME:
8579 /* ??? ivopts calls expander, without any preparation from
8580 out-of-ssa. So fake instructions as if this was an access to the
8581 base variable. This unnecessarily allocates a pseudo, see how we can
8582 reuse it, if partition base vars have it set already. */
8583 if (!currently_expanding_to_rtl)
8584 return expand_expr_real_1 (SSA_NAME_VAR (exp), target, tmode, modifier,
8585 NULL);
8587 g = get_gimple_for_ssa_name (exp);
8588 /* For EXPAND_INITIALIZER try harder to get something simpler. */
8589 if (g == NULL
8590 && modifier == EXPAND_INITIALIZER
8591 && !SSA_NAME_IS_DEFAULT_DEF (exp)
8592 && (optimize || DECL_IGNORED_P (SSA_NAME_VAR (exp)))
8593 && stmt_is_replaceable_p (SSA_NAME_DEF_STMT (exp)))
8594 g = SSA_NAME_DEF_STMT (exp);
8595 if (g)
8596 return expand_expr_real (gimple_assign_rhs_to_tree (g), target, tmode,
8597 modifier, NULL);
8599 ssa_name = exp;
8600 decl_rtl = get_rtx_for_ssa_name (ssa_name);
8601 exp = SSA_NAME_VAR (ssa_name);
8602 goto expand_decl_rtl;
8604 case PARM_DECL:
8605 case VAR_DECL:
8606 /* If a static var's type was incomplete when the decl was written,
8607 but the type is complete now, lay out the decl now. */
8608 if (DECL_SIZE (exp) == 0
8609 && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (TREE_TYPE (exp))
8610 && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
8611 layout_decl (exp, 0);
8613 /* ... fall through ... */
8615 case FUNCTION_DECL:
8616 case RESULT_DECL:
8617 decl_rtl = DECL_RTL (exp);
8618 expand_decl_rtl:
8619 gcc_assert (decl_rtl);
8620 decl_rtl = copy_rtx (decl_rtl);
8621 /* Record writes to register variables. */
8622 if (modifier == EXPAND_WRITE
8623 && REG_P (decl_rtl)
8624 && HARD_REGISTER_P (decl_rtl))
8625 add_to_hard_reg_set (&crtl->asm_clobbers,
8626 GET_MODE (decl_rtl), REGNO (decl_rtl));
8628 /* Ensure variable marked as used even if it doesn't go through
8629 a parser. If it hasn't be used yet, write out an external
8630 definition. */
8631 if (! TREE_USED (exp))
8633 assemble_external (exp);
8634 TREE_USED (exp) = 1;
8637 /* Show we haven't gotten RTL for this yet. */
8638 temp = 0;
8640 /* Variables inherited from containing functions should have
8641 been lowered by this point. */
8642 context = decl_function_context (exp);
8643 gcc_assert (!context
8644 || context == current_function_decl
8645 || TREE_STATIC (exp)
8646 || DECL_EXTERNAL (exp)
8647 /* ??? C++ creates functions that are not TREE_STATIC. */
8648 || TREE_CODE (exp) == FUNCTION_DECL);
8650 /* This is the case of an array whose size is to be determined
8651 from its initializer, while the initializer is still being parsed.
8652 See expand_decl. */
8654 if (MEM_P (decl_rtl) && REG_P (XEXP (decl_rtl, 0)))
8655 temp = validize_mem (decl_rtl);
8657 /* If DECL_RTL is memory, we are in the normal case and the
8658 address is not valid, get the address into a register. */
8660 else if (MEM_P (decl_rtl) && modifier != EXPAND_INITIALIZER)
8662 if (alt_rtl)
8663 *alt_rtl = decl_rtl;
8664 decl_rtl = use_anchored_address (decl_rtl);
8665 if (modifier != EXPAND_CONST_ADDRESS
8666 && modifier != EXPAND_SUM
8667 && !memory_address_addr_space_p (DECL_MODE (exp),
8668 XEXP (decl_rtl, 0),
8669 MEM_ADDR_SPACE (decl_rtl)))
8670 temp = replace_equiv_address (decl_rtl,
8671 copy_rtx (XEXP (decl_rtl, 0)));
8674 /* If we got something, return it. But first, set the alignment
8675 if the address is a register. */
8676 if (temp != 0)
8678 if (MEM_P (temp) && REG_P (XEXP (temp, 0)))
8679 mark_reg_pointer (XEXP (temp, 0), DECL_ALIGN (exp));
8681 return temp;
8684 /* If the mode of DECL_RTL does not match that of the decl, it
8685 must be a promoted value. We return a SUBREG of the wanted mode,
8686 but mark it so that we know that it was already extended. */
8687 if (REG_P (decl_rtl) && GET_MODE (decl_rtl) != DECL_MODE (exp))
8689 enum machine_mode pmode;
8691 /* Get the signedness to be used for this variable. Ensure we get
8692 the same mode we got when the variable was declared. */
8693 if (code == SSA_NAME
8694 && (g = SSA_NAME_DEF_STMT (ssa_name))
8695 && gimple_code (g) == GIMPLE_CALL)
8697 gcc_assert (!gimple_call_internal_p (g));
8698 pmode = promote_function_mode (type, mode, &unsignedp,
8699 gimple_call_fntype (g),
8702 else
8703 pmode = promote_decl_mode (exp, &unsignedp);
8704 gcc_assert (GET_MODE (decl_rtl) == pmode);
8706 temp = gen_lowpart_SUBREG (mode, decl_rtl);
8707 SUBREG_PROMOTED_VAR_P (temp) = 1;
8708 SUBREG_PROMOTED_UNSIGNED_SET (temp, unsignedp);
8709 return temp;
8712 return decl_rtl;
8714 case INTEGER_CST:
8715 temp = immed_double_const (TREE_INT_CST_LOW (exp),
8716 TREE_INT_CST_HIGH (exp), mode);
8718 return temp;
8720 case VECTOR_CST:
8722 tree tmp = NULL_TREE;
8723 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT
8724 || GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT
8725 || GET_MODE_CLASS (mode) == MODE_VECTOR_FRACT
8726 || GET_MODE_CLASS (mode) == MODE_VECTOR_UFRACT
8727 || GET_MODE_CLASS (mode) == MODE_VECTOR_ACCUM
8728 || GET_MODE_CLASS (mode) == MODE_VECTOR_UACCUM)
8729 return const_vector_from_tree (exp);
8730 if (GET_MODE_CLASS (mode) == MODE_INT)
8732 tree type_for_mode = lang_hooks.types.type_for_mode (mode, 1);
8733 if (type_for_mode)
8734 tmp = fold_unary_loc (loc, VIEW_CONVERT_EXPR, type_for_mode, exp);
8736 if (!tmp)
8737 tmp = build_constructor_from_list (type,
8738 TREE_VECTOR_CST_ELTS (exp));
8739 return expand_expr (tmp, ignore ? const0_rtx : target,
8740 tmode, modifier);
8743 case CONST_DECL:
8744 return expand_expr (DECL_INITIAL (exp), target, VOIDmode, modifier);
8746 case REAL_CST:
8747 /* If optimized, generate immediate CONST_DOUBLE
8748 which will be turned into memory by reload if necessary.
8750 We used to force a register so that loop.c could see it. But
8751 this does not allow gen_* patterns to perform optimizations with
8752 the constants. It also produces two insns in cases like "x = 1.0;".
8753 On most machines, floating-point constants are not permitted in
8754 many insns, so we'd end up copying it to a register in any case.
8756 Now, we do the copying in expand_binop, if appropriate. */
8757 return CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (exp),
8758 TYPE_MODE (TREE_TYPE (exp)));
8760 case FIXED_CST:
8761 return CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (exp),
8762 TYPE_MODE (TREE_TYPE (exp)));
8764 case COMPLEX_CST:
8765 /* Handle evaluating a complex constant in a CONCAT target. */
8766 if (original_target && GET_CODE (original_target) == CONCAT)
8768 enum machine_mode mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
8769 rtx rtarg, itarg;
8771 rtarg = XEXP (original_target, 0);
8772 itarg = XEXP (original_target, 1);
8774 /* Move the real and imaginary parts separately. */
8775 op0 = expand_expr (TREE_REALPART (exp), rtarg, mode, EXPAND_NORMAL);
8776 op1 = expand_expr (TREE_IMAGPART (exp), itarg, mode, EXPAND_NORMAL);
8778 if (op0 != rtarg)
8779 emit_move_insn (rtarg, op0);
8780 if (op1 != itarg)
8781 emit_move_insn (itarg, op1);
8783 return original_target;
8786 /* ... fall through ... */
8788 case STRING_CST:
8789 temp = expand_expr_constant (exp, 1, modifier);
8791 /* temp contains a constant address.
8792 On RISC machines where a constant address isn't valid,
8793 make some insns to get that address into a register. */
8794 if (modifier != EXPAND_CONST_ADDRESS
8795 && modifier != EXPAND_INITIALIZER
8796 && modifier != EXPAND_SUM
8797 && ! memory_address_addr_space_p (mode, XEXP (temp, 0),
8798 MEM_ADDR_SPACE (temp)))
8799 return replace_equiv_address (temp,
8800 copy_rtx (XEXP (temp, 0)));
8801 return temp;
8803 case SAVE_EXPR:
8805 tree val = treeop0;
8806 rtx ret = expand_expr_real_1 (val, target, tmode, modifier, alt_rtl);
8808 if (!SAVE_EXPR_RESOLVED_P (exp))
8810 /* We can indeed still hit this case, typically via builtin
8811 expanders calling save_expr immediately before expanding
8812 something. Assume this means that we only have to deal
8813 with non-BLKmode values. */
8814 gcc_assert (GET_MODE (ret) != BLKmode);
8816 val = build_decl (EXPR_LOCATION (exp),
8817 VAR_DECL, NULL, TREE_TYPE (exp));
8818 DECL_ARTIFICIAL (val) = 1;
8819 DECL_IGNORED_P (val) = 1;
8820 treeop0 = val;
8821 TREE_OPERAND (exp, 0) = treeop0;
8822 SAVE_EXPR_RESOLVED_P (exp) = 1;
8824 if (!CONSTANT_P (ret))
8825 ret = copy_to_reg (ret);
8826 SET_DECL_RTL (val, ret);
8829 return ret;
8833 case CONSTRUCTOR:
8834 /* If we don't need the result, just ensure we evaluate any
8835 subexpressions. */
8836 if (ignore)
8838 unsigned HOST_WIDE_INT idx;
8839 tree value;
8841 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
8842 expand_expr (value, const0_rtx, VOIDmode, EXPAND_NORMAL);
8844 return const0_rtx;
8847 return expand_constructor (exp, target, modifier, false);
8849 case TARGET_MEM_REF:
8851 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (exp));
8852 struct mem_address addr;
8853 enum insn_code icode;
8854 int align;
8856 get_address_description (exp, &addr);
8857 op0 = addr_for_mem_ref (&addr, as, true);
8858 op0 = memory_address_addr_space (mode, op0, as);
8859 temp = gen_rtx_MEM (mode, op0);
8860 set_mem_attributes (temp, exp, 0);
8861 set_mem_addr_space (temp, as);
8862 align = MAX (TYPE_ALIGN (TREE_TYPE (exp)),
8863 get_object_alignment (exp, BIGGEST_ALIGNMENT));
8864 if (mode != BLKmode
8865 && (unsigned) align < GET_MODE_ALIGNMENT (mode)
8866 /* If the target does not have special handling for unaligned
8867 loads of mode then it can use regular moves for them. */
8868 && ((icode = optab_handler (movmisalign_optab, mode))
8869 != CODE_FOR_nothing))
8871 struct expand_operand ops[2];
8873 /* We've already validated the memory, and we're creating a
8874 new pseudo destination. The predicates really can't fail,
8875 nor can the generator. */
8876 create_output_operand (&ops[0], NULL_RTX, mode);
8877 create_fixed_operand (&ops[1], temp);
8878 expand_insn (icode, 2, ops);
8879 return ops[0].value;
8881 return temp;
8884 case MEM_REF:
8886 addr_space_t as
8887 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 1))));
8888 enum machine_mode address_mode;
8889 tree base = TREE_OPERAND (exp, 0);
8890 gimple def_stmt;
8891 enum insn_code icode;
8892 int align;
8893 /* Handle expansion of non-aliased memory with non-BLKmode. That
8894 might end up in a register. */
8895 if (TREE_CODE (base) == ADDR_EXPR)
8897 HOST_WIDE_INT offset = mem_ref_offset (exp).low;
8898 tree bit_offset;
8899 base = TREE_OPERAND (base, 0);
8900 if (!DECL_P (base))
8902 HOST_WIDE_INT off;
8903 base = get_addr_base_and_unit_offset (base, &off);
8904 gcc_assert (base);
8905 offset += off;
8907 /* If we are expanding a MEM_REF of a non-BLKmode non-addressable
8908 decl we must use bitfield operations. */
8909 if (DECL_P (base)
8910 && !TREE_ADDRESSABLE (base)
8911 && DECL_MODE (base) != BLKmode
8912 && DECL_RTL_SET_P (base)
8913 && !MEM_P (DECL_RTL (base)))
8915 tree bftype;
8916 if (offset == 0
8917 && host_integerp (TYPE_SIZE (TREE_TYPE (exp)), 1)
8918 && (GET_MODE_BITSIZE (DECL_MODE (base))
8919 == TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (exp)))))
8920 return expand_expr (build1 (VIEW_CONVERT_EXPR,
8921 TREE_TYPE (exp), base),
8922 target, tmode, modifier);
8923 bit_offset = bitsize_int (offset * BITS_PER_UNIT);
8924 bftype = TREE_TYPE (base);
8925 if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
8926 bftype = TREE_TYPE (exp);
8927 return expand_expr (build3 (BIT_FIELD_REF, bftype,
8928 base,
8929 TYPE_SIZE (TREE_TYPE (exp)),
8930 bit_offset),
8931 target, tmode, modifier);
8934 address_mode = targetm.addr_space.address_mode (as);
8935 base = TREE_OPERAND (exp, 0);
8936 if ((def_stmt = get_def_for_expr (base, BIT_AND_EXPR)))
8938 tree mask = gimple_assign_rhs2 (def_stmt);
8939 base = build2 (BIT_AND_EXPR, TREE_TYPE (base),
8940 gimple_assign_rhs1 (def_stmt), mask);
8941 TREE_OPERAND (exp, 0) = base;
8943 align = MAX (TYPE_ALIGN (TREE_TYPE (exp)),
8944 get_object_alignment (exp, BIGGEST_ALIGNMENT));
8945 op0 = expand_expr (base, NULL_RTX, VOIDmode, EXPAND_SUM);
8946 op0 = memory_address_addr_space (address_mode, op0, as);
8947 if (!integer_zerop (TREE_OPERAND (exp, 1)))
8949 rtx off
8950 = immed_double_int_const (mem_ref_offset (exp), address_mode);
8951 op0 = simplify_gen_binary (PLUS, address_mode, op0, off);
8953 op0 = memory_address_addr_space (mode, op0, as);
8954 temp = gen_rtx_MEM (mode, op0);
8955 set_mem_attributes (temp, exp, 0);
8956 set_mem_addr_space (temp, as);
8957 if (TREE_THIS_VOLATILE (exp))
8958 MEM_VOLATILE_P (temp) = 1;
8959 if (mode != BLKmode
8960 && (unsigned) align < GET_MODE_ALIGNMENT (mode)
8961 /* If the target does not have special handling for unaligned
8962 loads of mode then it can use regular moves for them. */
8963 && ((icode = optab_handler (movmisalign_optab, mode))
8964 != CODE_FOR_nothing))
8966 struct expand_operand ops[2];
8968 /* We've already validated the memory, and we're creating a
8969 new pseudo destination. The predicates really can't fail,
8970 nor can the generator. */
8971 create_output_operand (&ops[0], NULL_RTX, mode);
8972 create_fixed_operand (&ops[1], temp);
8973 expand_insn (icode, 2, ops);
8974 return ops[0].value;
8976 return temp;
8979 case ARRAY_REF:
8982 tree array = treeop0;
8983 tree index = treeop1;
8985 /* Fold an expression like: "foo"[2].
8986 This is not done in fold so it won't happen inside &.
8987 Don't fold if this is for wide characters since it's too
8988 difficult to do correctly and this is a very rare case. */
8990 if (modifier != EXPAND_CONST_ADDRESS
8991 && modifier != EXPAND_INITIALIZER
8992 && modifier != EXPAND_MEMORY)
8994 tree t = fold_read_from_constant_string (exp);
8996 if (t)
8997 return expand_expr (t, target, tmode, modifier);
9000 /* If this is a constant index into a constant array,
9001 just get the value from the array. Handle both the cases when
9002 we have an explicit constructor and when our operand is a variable
9003 that was declared const. */
9005 if (modifier != EXPAND_CONST_ADDRESS
9006 && modifier != EXPAND_INITIALIZER
9007 && modifier != EXPAND_MEMORY
9008 && TREE_CODE (array) == CONSTRUCTOR
9009 && ! TREE_SIDE_EFFECTS (array)
9010 && TREE_CODE (index) == INTEGER_CST)
9012 unsigned HOST_WIDE_INT ix;
9013 tree field, value;
9015 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (array), ix,
9016 field, value)
9017 if (tree_int_cst_equal (field, index))
9019 if (!TREE_SIDE_EFFECTS (value))
9020 return expand_expr (fold (value), target, tmode, modifier);
9021 break;
9025 else if (optimize >= 1
9026 && modifier != EXPAND_CONST_ADDRESS
9027 && modifier != EXPAND_INITIALIZER
9028 && modifier != EXPAND_MEMORY
9029 && TREE_READONLY (array) && ! TREE_SIDE_EFFECTS (array)
9030 && TREE_CODE (array) == VAR_DECL && DECL_INITIAL (array)
9031 && TREE_CODE (DECL_INITIAL (array)) != ERROR_MARK
9032 && const_value_known_p (array))
9034 if (TREE_CODE (index) == INTEGER_CST)
9036 tree init = DECL_INITIAL (array);
9038 if (TREE_CODE (init) == CONSTRUCTOR)
9040 unsigned HOST_WIDE_INT ix;
9041 tree field, value;
9043 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), ix,
9044 field, value)
9045 if (tree_int_cst_equal (field, index))
9047 if (TREE_SIDE_EFFECTS (value))
9048 break;
9050 if (TREE_CODE (value) == CONSTRUCTOR)
9052 /* If VALUE is a CONSTRUCTOR, this
9053 optimization is only useful if
9054 this doesn't store the CONSTRUCTOR
9055 into memory. If it does, it is more
9056 efficient to just load the data from
9057 the array directly. */
9058 rtx ret = expand_constructor (value, target,
9059 modifier, true);
9060 if (ret == NULL_RTX)
9061 break;
9064 return expand_expr (fold (value), target, tmode,
9065 modifier);
9068 else if(TREE_CODE (init) == STRING_CST)
9070 tree index1 = index;
9071 tree low_bound = array_ref_low_bound (exp);
9072 index1 = fold_convert_loc (loc, sizetype,
9073 treeop1);
9075 /* Optimize the special-case of a zero lower bound.
9077 We convert the low_bound to sizetype to avoid some problems
9078 with constant folding. (E.g. suppose the lower bound is 1,
9079 and its mode is QI. Without the conversion,l (ARRAY
9080 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
9081 +INDEX), which becomes (ARRAY+255+INDEX). Opps!) */
9083 if (! integer_zerop (low_bound))
9084 index1 = size_diffop_loc (loc, index1,
9085 fold_convert_loc (loc, sizetype,
9086 low_bound));
9088 if (0 > compare_tree_int (index1,
9089 TREE_STRING_LENGTH (init)))
9091 tree type = TREE_TYPE (TREE_TYPE (init));
9092 enum machine_mode mode = TYPE_MODE (type);
9094 if (GET_MODE_CLASS (mode) == MODE_INT
9095 && GET_MODE_SIZE (mode) == 1)
9096 return gen_int_mode (TREE_STRING_POINTER (init)
9097 [TREE_INT_CST_LOW (index1)],
9098 mode);
9104 goto normal_inner_ref;
9106 case COMPONENT_REF:
9107 /* If the operand is a CONSTRUCTOR, we can just extract the
9108 appropriate field if it is present. */
9109 if (TREE_CODE (treeop0) == CONSTRUCTOR)
9111 unsigned HOST_WIDE_INT idx;
9112 tree field, value;
9114 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (treeop0),
9115 idx, field, value)
9116 if (field == treeop1
9117 /* We can normally use the value of the field in the
9118 CONSTRUCTOR. However, if this is a bitfield in
9119 an integral mode that we can fit in a HOST_WIDE_INT,
9120 we must mask only the number of bits in the bitfield,
9121 since this is done implicitly by the constructor. If
9122 the bitfield does not meet either of those conditions,
9123 we can't do this optimization. */
9124 && (! DECL_BIT_FIELD (field)
9125 || ((GET_MODE_CLASS (DECL_MODE (field)) == MODE_INT)
9126 && (GET_MODE_PRECISION (DECL_MODE (field))
9127 <= HOST_BITS_PER_WIDE_INT))))
9129 if (DECL_BIT_FIELD (field)
9130 && modifier == EXPAND_STACK_PARM)
9131 target = 0;
9132 op0 = expand_expr (value, target, tmode, modifier);
9133 if (DECL_BIT_FIELD (field))
9135 HOST_WIDE_INT bitsize = TREE_INT_CST_LOW (DECL_SIZE (field));
9136 enum machine_mode imode = TYPE_MODE (TREE_TYPE (field));
9138 if (TYPE_UNSIGNED (TREE_TYPE (field)))
9140 op1 = GEN_INT (((HOST_WIDE_INT) 1 << bitsize) - 1);
9141 op0 = expand_and (imode, op0, op1, target);
9143 else
9145 int count = GET_MODE_PRECISION (imode) - bitsize;
9147 op0 = expand_shift (LSHIFT_EXPR, imode, op0, count,
9148 target, 0);
9149 op0 = expand_shift (RSHIFT_EXPR, imode, op0, count,
9150 target, 0);
9154 return op0;
9157 goto normal_inner_ref;
9159 case BIT_FIELD_REF:
9160 case ARRAY_RANGE_REF:
9161 normal_inner_ref:
9163 enum machine_mode mode1, mode2;
9164 HOST_WIDE_INT bitsize, bitpos;
9165 tree offset;
9166 int volatilep = 0, must_force_mem;
9167 bool packedp = false;
9168 tree tem = get_inner_reference (exp, &bitsize, &bitpos, &offset,
9169 &mode1, &unsignedp, &volatilep, true);
9170 rtx orig_op0, memloc;
9172 /* If we got back the original object, something is wrong. Perhaps
9173 we are evaluating an expression too early. In any event, don't
9174 infinitely recurse. */
9175 gcc_assert (tem != exp);
9177 if (TYPE_PACKED (TREE_TYPE (TREE_OPERAND (exp, 0)))
9178 || (TREE_CODE (TREE_OPERAND (exp, 1)) == FIELD_DECL
9179 && DECL_PACKED (TREE_OPERAND (exp, 1))))
9180 packedp = true;
9182 /* If TEM's type is a union of variable size, pass TARGET to the inner
9183 computation, since it will need a temporary and TARGET is known
9184 to have to do. This occurs in unchecked conversion in Ada. */
9185 orig_op0 = op0
9186 = expand_expr (tem,
9187 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
9188 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
9189 != INTEGER_CST)
9190 && modifier != EXPAND_STACK_PARM
9191 ? target : NULL_RTX),
9192 VOIDmode,
9193 (modifier == EXPAND_INITIALIZER
9194 || modifier == EXPAND_CONST_ADDRESS
9195 || modifier == EXPAND_STACK_PARM)
9196 ? modifier : EXPAND_NORMAL);
9199 /* If the bitfield is volatile, we want to access it in the
9200 field's mode, not the computed mode.
9201 If a MEM has VOIDmode (external with incomplete type),
9202 use BLKmode for it instead. */
9203 if (MEM_P (op0))
9205 if (volatilep && flag_strict_volatile_bitfields > 0)
9206 op0 = adjust_address (op0, mode1, 0);
9207 else if (GET_MODE (op0) == VOIDmode)
9208 op0 = adjust_address (op0, BLKmode, 0);
9211 mode2
9212 = CONSTANT_P (op0) ? TYPE_MODE (TREE_TYPE (tem)) : GET_MODE (op0);
9214 /* If we have either an offset, a BLKmode result, or a reference
9215 outside the underlying object, we must force it to memory.
9216 Such a case can occur in Ada if we have unchecked conversion
9217 of an expression from a scalar type to an aggregate type or
9218 for an ARRAY_RANGE_REF whose type is BLKmode, or if we were
9219 passed a partially uninitialized object or a view-conversion
9220 to a larger size. */
9221 must_force_mem = (offset
9222 || mode1 == BLKmode
9223 || bitpos + bitsize > GET_MODE_BITSIZE (mode2));
9225 /* Handle CONCAT first. */
9226 if (GET_CODE (op0) == CONCAT && !must_force_mem)
9228 if (bitpos == 0
9229 && bitsize == GET_MODE_BITSIZE (GET_MODE (op0)))
9230 return op0;
9231 if (bitpos == 0
9232 && bitsize == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
9233 && bitsize)
9235 op0 = XEXP (op0, 0);
9236 mode2 = GET_MODE (op0);
9238 else if (bitpos == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
9239 && bitsize == GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 1)))
9240 && bitpos
9241 && bitsize)
9243 op0 = XEXP (op0, 1);
9244 bitpos = 0;
9245 mode2 = GET_MODE (op0);
9247 else
9248 /* Otherwise force into memory. */
9249 must_force_mem = 1;
9252 /* If this is a constant, put it in a register if it is a legitimate
9253 constant and we don't need a memory reference. */
9254 if (CONSTANT_P (op0)
9255 && mode2 != BLKmode
9256 && targetm.legitimate_constant_p (mode2, op0)
9257 && !must_force_mem)
9258 op0 = force_reg (mode2, op0);
9260 /* Otherwise, if this is a constant, try to force it to the constant
9261 pool. Note that back-ends, e.g. MIPS, may refuse to do so if it
9262 is a legitimate constant. */
9263 else if (CONSTANT_P (op0) && (memloc = force_const_mem (mode2, op0)))
9264 op0 = validize_mem (memloc);
9266 /* Otherwise, if this is a constant or the object is not in memory
9267 and need be, put it there. */
9268 else if (CONSTANT_P (op0) || (!MEM_P (op0) && must_force_mem))
9270 tree nt = build_qualified_type (TREE_TYPE (tem),
9271 (TYPE_QUALS (TREE_TYPE (tem))
9272 | TYPE_QUAL_CONST));
9273 memloc = assign_temp (nt, 1, 1, 1);
9274 emit_move_insn (memloc, op0);
9275 op0 = memloc;
9278 if (offset)
9280 enum machine_mode address_mode;
9281 rtx offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode,
9282 EXPAND_SUM);
9284 gcc_assert (MEM_P (op0));
9286 address_mode
9287 = targetm.addr_space.address_mode (MEM_ADDR_SPACE (op0));
9288 if (GET_MODE (offset_rtx) != address_mode)
9289 offset_rtx = convert_to_mode (address_mode, offset_rtx, 0);
9291 if (GET_MODE (op0) == BLKmode
9292 /* A constant address in OP0 can have VOIDmode, we must
9293 not try to call force_reg in that case. */
9294 && GET_MODE (XEXP (op0, 0)) != VOIDmode
9295 && bitsize != 0
9296 && (bitpos % bitsize) == 0
9297 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
9298 && MEM_ALIGN (op0) == GET_MODE_ALIGNMENT (mode1))
9300 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
9301 bitpos = 0;
9304 op0 = offset_address (op0, offset_rtx,
9305 highest_pow2_factor (offset));
9308 /* If OFFSET is making OP0 more aligned than BIGGEST_ALIGNMENT,
9309 record its alignment as BIGGEST_ALIGNMENT. */
9310 if (MEM_P (op0) && bitpos == 0 && offset != 0
9311 && is_aligning_offset (offset, tem))
9312 set_mem_align (op0, BIGGEST_ALIGNMENT);
9314 /* Don't forget about volatility even if this is a bitfield. */
9315 if (MEM_P (op0) && volatilep && ! MEM_VOLATILE_P (op0))
9317 if (op0 == orig_op0)
9318 op0 = copy_rtx (op0);
9320 MEM_VOLATILE_P (op0) = 1;
9323 /* In cases where an aligned union has an unaligned object
9324 as a field, we might be extracting a BLKmode value from
9325 an integer-mode (e.g., SImode) object. Handle this case
9326 by doing the extract into an object as wide as the field
9327 (which we know to be the width of a basic mode), then
9328 storing into memory, and changing the mode to BLKmode. */
9329 if (mode1 == VOIDmode
9330 || REG_P (op0) || GET_CODE (op0) == SUBREG
9331 || (mode1 != BLKmode && ! direct_load[(int) mode1]
9332 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
9333 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT
9334 && modifier != EXPAND_CONST_ADDRESS
9335 && modifier != EXPAND_INITIALIZER)
9336 /* If the field is volatile, we always want an aligned
9337 access. Only do this if the access is not already naturally
9338 aligned, otherwise "normal" (non-bitfield) volatile fields
9339 become non-addressable. */
9340 || (volatilep && flag_strict_volatile_bitfields > 0
9341 && (bitpos % GET_MODE_ALIGNMENT (mode) != 0))
9342 /* If the field isn't aligned enough to fetch as a memref,
9343 fetch it as a bit field. */
9344 || (mode1 != BLKmode
9345 && (((TYPE_ALIGN (TREE_TYPE (tem)) < GET_MODE_ALIGNMENT (mode)
9346 || (bitpos % GET_MODE_ALIGNMENT (mode) != 0)
9347 || (MEM_P (op0)
9348 && (MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode1)
9349 || (bitpos % GET_MODE_ALIGNMENT (mode1) != 0))))
9350 && ((modifier == EXPAND_CONST_ADDRESS
9351 || modifier == EXPAND_INITIALIZER)
9352 ? STRICT_ALIGNMENT
9353 : SLOW_UNALIGNED_ACCESS (mode1, MEM_ALIGN (op0))))
9354 || (bitpos % BITS_PER_UNIT != 0)))
9355 /* If the type and the field are a constant size and the
9356 size of the type isn't the same size as the bitfield,
9357 we must use bitfield operations. */
9358 || (bitsize >= 0
9359 && TYPE_SIZE (TREE_TYPE (exp))
9360 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
9361 && 0 != compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)),
9362 bitsize)))
9364 enum machine_mode ext_mode = mode;
9366 if (ext_mode == BLKmode
9367 && ! (target != 0 && MEM_P (op0)
9368 && MEM_P (target)
9369 && bitpos % BITS_PER_UNIT == 0))
9370 ext_mode = mode_for_size (bitsize, MODE_INT, 1);
9372 if (ext_mode == BLKmode)
9374 if (target == 0)
9375 target = assign_temp (type, 0, 1, 1);
9377 if (bitsize == 0)
9378 return target;
9380 /* In this case, BITPOS must start at a byte boundary and
9381 TARGET, if specified, must be a MEM. */
9382 gcc_assert (MEM_P (op0)
9383 && (!target || MEM_P (target))
9384 && !(bitpos % BITS_PER_UNIT));
9386 emit_block_move (target,
9387 adjust_address (op0, VOIDmode,
9388 bitpos / BITS_PER_UNIT),
9389 GEN_INT ((bitsize + BITS_PER_UNIT - 1)
9390 / BITS_PER_UNIT),
9391 (modifier == EXPAND_STACK_PARM
9392 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
9394 return target;
9397 op0 = validize_mem (op0);
9399 if (MEM_P (op0) && REG_P (XEXP (op0, 0)))
9400 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
9402 op0 = extract_bit_field (op0, bitsize, bitpos, unsignedp, packedp,
9403 (modifier == EXPAND_STACK_PARM
9404 ? NULL_RTX : target),
9405 ext_mode, ext_mode);
9407 /* If the result is a record type and BITSIZE is narrower than
9408 the mode of OP0, an integral mode, and this is a big endian
9409 machine, we must put the field into the high-order bits. */
9410 if (TREE_CODE (type) == RECORD_TYPE && BYTES_BIG_ENDIAN
9411 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
9412 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (op0)))
9413 op0 = expand_shift (LSHIFT_EXPR, GET_MODE (op0), op0,
9414 GET_MODE_BITSIZE (GET_MODE (op0))
9415 - bitsize, op0, 1);
9417 /* If the result type is BLKmode, store the data into a temporary
9418 of the appropriate type, but with the mode corresponding to the
9419 mode for the data we have (op0's mode). It's tempting to make
9420 this a constant type, since we know it's only being stored once,
9421 but that can cause problems if we are taking the address of this
9422 COMPONENT_REF because the MEM of any reference via that address
9423 will have flags corresponding to the type, which will not
9424 necessarily be constant. */
9425 if (mode == BLKmode)
9427 HOST_WIDE_INT size = GET_MODE_BITSIZE (ext_mode);
9428 rtx new_rtx;
9430 /* If the reference doesn't use the alias set of its type,
9431 we cannot create the temporary using that type. */
9432 if (component_uses_parent_alias_set (exp))
9434 new_rtx = assign_stack_local (ext_mode, size, 0);
9435 set_mem_alias_set (new_rtx, get_alias_set (exp));
9437 else
9438 new_rtx = assign_stack_temp_for_type (ext_mode, size, 0, type);
9440 emit_move_insn (new_rtx, op0);
9441 op0 = copy_rtx (new_rtx);
9442 PUT_MODE (op0, BLKmode);
9443 set_mem_attributes (op0, exp, 1);
9446 return op0;
9449 /* If the result is BLKmode, use that to access the object
9450 now as well. */
9451 if (mode == BLKmode)
9452 mode1 = BLKmode;
9454 /* Get a reference to just this component. */
9455 if (modifier == EXPAND_CONST_ADDRESS
9456 || modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
9457 op0 = adjust_address_nv (op0, mode1, bitpos / BITS_PER_UNIT);
9458 else
9459 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
9461 if (op0 == orig_op0)
9462 op0 = copy_rtx (op0);
9464 set_mem_attributes (op0, exp, 0);
9465 if (REG_P (XEXP (op0, 0)))
9466 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
9468 MEM_VOLATILE_P (op0) |= volatilep;
9469 if (mode == mode1 || mode1 == BLKmode || mode1 == tmode
9470 || modifier == EXPAND_CONST_ADDRESS
9471 || modifier == EXPAND_INITIALIZER)
9472 return op0;
9473 else if (target == 0)
9474 target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
9476 convert_move (target, op0, unsignedp);
9477 return target;
9480 case OBJ_TYPE_REF:
9481 return expand_expr (OBJ_TYPE_REF_EXPR (exp), target, tmode, modifier);
9483 case CALL_EXPR:
9484 /* All valid uses of __builtin_va_arg_pack () are removed during
9485 inlining. */
9486 if (CALL_EXPR_VA_ARG_PACK (exp))
9487 error ("%Kinvalid use of %<__builtin_va_arg_pack ()%>", exp);
9489 tree fndecl = get_callee_fndecl (exp), attr;
9491 if (fndecl
9492 && (attr = lookup_attribute ("error",
9493 DECL_ATTRIBUTES (fndecl))) != NULL)
9494 error ("%Kcall to %qs declared with attribute error: %s",
9495 exp, identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 1)),
9496 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
9497 if (fndecl
9498 && (attr = lookup_attribute ("warning",
9499 DECL_ATTRIBUTES (fndecl))) != NULL)
9500 warning_at (tree_nonartificial_location (exp),
9501 0, "%Kcall to %qs declared with attribute warning: %s",
9502 exp, identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 1)),
9503 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
9505 /* Check for a built-in function. */
9506 if (fndecl && DECL_BUILT_IN (fndecl))
9508 gcc_assert (DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_FRONTEND);
9509 return expand_builtin (exp, target, subtarget, tmode, ignore);
9512 return expand_call (exp, target, ignore);
9514 case VIEW_CONVERT_EXPR:
9515 op0 = NULL_RTX;
9517 /* If we are converting to BLKmode, try to avoid an intermediate
9518 temporary by fetching an inner memory reference. */
9519 if (mode == BLKmode
9520 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
9521 && TYPE_MODE (TREE_TYPE (treeop0)) != BLKmode
9522 && handled_component_p (treeop0))
9524 enum machine_mode mode1;
9525 HOST_WIDE_INT bitsize, bitpos;
9526 tree offset;
9527 int unsignedp;
9528 int volatilep = 0;
9529 tree tem
9530 = get_inner_reference (treeop0, &bitsize, &bitpos,
9531 &offset, &mode1, &unsignedp, &volatilep,
9532 true);
9533 rtx orig_op0;
9535 /* ??? We should work harder and deal with non-zero offsets. */
9536 if (!offset
9537 && (bitpos % BITS_PER_UNIT) == 0
9538 && bitsize >= 0
9539 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) == 0)
9541 /* See the normal_inner_ref case for the rationale. */
9542 orig_op0
9543 = expand_expr (tem,
9544 (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
9545 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
9546 != INTEGER_CST)
9547 && modifier != EXPAND_STACK_PARM
9548 ? target : NULL_RTX),
9549 VOIDmode,
9550 (modifier == EXPAND_INITIALIZER
9551 || modifier == EXPAND_CONST_ADDRESS
9552 || modifier == EXPAND_STACK_PARM)
9553 ? modifier : EXPAND_NORMAL);
9555 if (MEM_P (orig_op0))
9557 op0 = orig_op0;
9559 /* Get a reference to just this component. */
9560 if (modifier == EXPAND_CONST_ADDRESS
9561 || modifier == EXPAND_SUM
9562 || modifier == EXPAND_INITIALIZER)
9563 op0 = adjust_address_nv (op0, mode, bitpos / BITS_PER_UNIT);
9564 else
9565 op0 = adjust_address (op0, mode, bitpos / BITS_PER_UNIT);
9567 if (op0 == orig_op0)
9568 op0 = copy_rtx (op0);
9570 set_mem_attributes (op0, treeop0, 0);
9571 if (REG_P (XEXP (op0, 0)))
9572 mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
9574 MEM_VOLATILE_P (op0) |= volatilep;
9579 if (!op0)
9580 op0 = expand_expr (treeop0,
9581 NULL_RTX, VOIDmode, modifier);
9583 /* If the input and output modes are both the same, we are done. */
9584 if (mode == GET_MODE (op0))
9586 /* If neither mode is BLKmode, and both modes are the same size
9587 then we can use gen_lowpart. */
9588 else if (mode != BLKmode && GET_MODE (op0) != BLKmode
9589 && (GET_MODE_PRECISION (mode)
9590 == GET_MODE_PRECISION (GET_MODE (op0)))
9591 && !COMPLEX_MODE_P (GET_MODE (op0)))
9593 if (GET_CODE (op0) == SUBREG)
9594 op0 = force_reg (GET_MODE (op0), op0);
9595 temp = gen_lowpart_common (mode, op0);
9596 if (temp)
9597 op0 = temp;
9598 else
9600 if (!REG_P (op0) && !MEM_P (op0))
9601 op0 = force_reg (GET_MODE (op0), op0);
9602 op0 = gen_lowpart (mode, op0);
9605 /* If both types are integral, convert from one mode to the other. */
9606 else if (INTEGRAL_TYPE_P (type) && INTEGRAL_TYPE_P (TREE_TYPE (treeop0)))
9607 op0 = convert_modes (mode, GET_MODE (op0), op0,
9608 TYPE_UNSIGNED (TREE_TYPE (treeop0)));
9609 /* As a last resort, spill op0 to memory, and reload it in a
9610 different mode. */
9611 else if (!MEM_P (op0))
9613 /* If the operand is not a MEM, force it into memory. Since we
9614 are going to be changing the mode of the MEM, don't call
9615 force_const_mem for constants because we don't allow pool
9616 constants to change mode. */
9617 tree inner_type = TREE_TYPE (treeop0);
9619 gcc_assert (!TREE_ADDRESSABLE (exp));
9621 if (target == 0 || GET_MODE (target) != TYPE_MODE (inner_type))
9622 target
9623 = assign_stack_temp_for_type
9624 (TYPE_MODE (inner_type),
9625 GET_MODE_SIZE (TYPE_MODE (inner_type)), 0, inner_type);
9627 emit_move_insn (target, op0);
9628 op0 = target;
9631 /* At this point, OP0 is in the correct mode. If the output type is
9632 such that the operand is known to be aligned, indicate that it is.
9633 Otherwise, we need only be concerned about alignment for non-BLKmode
9634 results. */
9635 if (MEM_P (op0))
9637 op0 = copy_rtx (op0);
9639 if (TYPE_ALIGN_OK (type))
9640 set_mem_align (op0, MAX (MEM_ALIGN (op0), TYPE_ALIGN (type)));
9641 else if (STRICT_ALIGNMENT
9642 && mode != BLKmode
9643 && MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode))
9645 tree inner_type = TREE_TYPE (treeop0);
9646 HOST_WIDE_INT temp_size
9647 = MAX (int_size_in_bytes (inner_type),
9648 (HOST_WIDE_INT) GET_MODE_SIZE (mode));
9649 rtx new_rtx
9650 = assign_stack_temp_for_type (mode, temp_size, 0, type);
9651 rtx new_with_op0_mode
9652 = adjust_address (new_rtx, GET_MODE (op0), 0);
9654 gcc_assert (!TREE_ADDRESSABLE (exp));
9656 if (GET_MODE (op0) == BLKmode)
9657 emit_block_move (new_with_op0_mode, op0,
9658 GEN_INT (GET_MODE_SIZE (mode)),
9659 (modifier == EXPAND_STACK_PARM
9660 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
9661 else
9662 emit_move_insn (new_with_op0_mode, op0);
9664 op0 = new_rtx;
9667 op0 = adjust_address (op0, mode, 0);
9670 return op0;
9672 case COND_EXPR:
9673 /* A COND_EXPR with its type being VOID_TYPE represents a
9674 conditional jump and is handled in
9675 expand_gimple_cond_expr. */
9676 gcc_assert (!VOID_TYPE_P (type));
9678 /* Note that COND_EXPRs whose type is a structure or union
9679 are required to be constructed to contain assignments of
9680 a temporary variable, so that we can evaluate them here
9681 for side effect only. If type is void, we must do likewise. */
9683 gcc_assert (!TREE_ADDRESSABLE (type)
9684 && !ignore
9685 && TREE_TYPE (treeop1) != void_type_node
9686 && TREE_TYPE (treeop2) != void_type_node);
9688 /* If we are not to produce a result, we have no target. Otherwise,
9689 if a target was specified use it; it will not be used as an
9690 intermediate target unless it is safe. If no target, use a
9691 temporary. */
9693 if (modifier != EXPAND_STACK_PARM
9694 && original_target
9695 && safe_from_p (original_target, treeop0, 1)
9696 && GET_MODE (original_target) == mode
9697 #ifdef HAVE_conditional_move
9698 && (! can_conditionally_move_p (mode)
9699 || REG_P (original_target))
9700 #endif
9701 && !MEM_P (original_target))
9702 temp = original_target;
9703 else
9704 temp = assign_temp (type, 0, 0, 1);
9706 do_pending_stack_adjust ();
9707 NO_DEFER_POP;
9708 op0 = gen_label_rtx ();
9709 op1 = gen_label_rtx ();
9710 jumpifnot (treeop0, op0, -1);
9711 store_expr (treeop1, temp,
9712 modifier == EXPAND_STACK_PARM,
9713 false);
9715 emit_jump_insn (gen_jump (op1));
9716 emit_barrier ();
9717 emit_label (op0);
9718 store_expr (treeop2, temp,
9719 modifier == EXPAND_STACK_PARM,
9720 false);
9722 emit_label (op1);
9723 OK_DEFER_POP;
9724 return temp;
9726 case VEC_COND_EXPR:
9727 target = expand_vec_cond_expr (type, treeop0, treeop1, treeop2, target);
9728 return target;
9730 case MODIFY_EXPR:
9732 tree lhs = treeop0;
9733 tree rhs = treeop1;
9734 gcc_assert (ignore);
9736 /* Check for |= or &= of a bitfield of size one into another bitfield
9737 of size 1. In this case, (unless we need the result of the
9738 assignment) we can do this more efficiently with a
9739 test followed by an assignment, if necessary.
9741 ??? At this point, we can't get a BIT_FIELD_REF here. But if
9742 things change so we do, this code should be enhanced to
9743 support it. */
9744 if (TREE_CODE (lhs) == COMPONENT_REF
9745 && (TREE_CODE (rhs) == BIT_IOR_EXPR
9746 || TREE_CODE (rhs) == BIT_AND_EXPR)
9747 && TREE_OPERAND (rhs, 0) == lhs
9748 && TREE_CODE (TREE_OPERAND (rhs, 1)) == COMPONENT_REF
9749 && integer_onep (DECL_SIZE (TREE_OPERAND (lhs, 1)))
9750 && integer_onep (DECL_SIZE (TREE_OPERAND (TREE_OPERAND (rhs, 1), 1))))
9752 rtx label = gen_label_rtx ();
9753 int value = TREE_CODE (rhs) == BIT_IOR_EXPR;
9754 do_jump (TREE_OPERAND (rhs, 1),
9755 value ? label : 0,
9756 value ? 0 : label, -1);
9757 expand_assignment (lhs, build_int_cst (TREE_TYPE (rhs), value),
9758 MOVE_NONTEMPORAL (exp));
9759 do_pending_stack_adjust ();
9760 emit_label (label);
9761 return const0_rtx;
9764 expand_assignment (lhs, rhs, MOVE_NONTEMPORAL (exp));
9765 return const0_rtx;
9768 case ADDR_EXPR:
9769 return expand_expr_addr_expr (exp, target, tmode, modifier);
9771 case REALPART_EXPR:
9772 op0 = expand_normal (treeop0);
9773 return read_complex_part (op0, false);
9775 case IMAGPART_EXPR:
9776 op0 = expand_normal (treeop0);
9777 return read_complex_part (op0, true);
9779 case RETURN_EXPR:
9780 case LABEL_EXPR:
9781 case GOTO_EXPR:
9782 case SWITCH_EXPR:
9783 case ASM_EXPR:
9784 /* Expanded in cfgexpand.c. */
9785 gcc_unreachable ();
9787 case TRY_CATCH_EXPR:
9788 case CATCH_EXPR:
9789 case EH_FILTER_EXPR:
9790 case TRY_FINALLY_EXPR:
9791 /* Lowered by tree-eh.c. */
9792 gcc_unreachable ();
9794 case WITH_CLEANUP_EXPR:
9795 case CLEANUP_POINT_EXPR:
9796 case TARGET_EXPR:
9797 case CASE_LABEL_EXPR:
9798 case VA_ARG_EXPR:
9799 case BIND_EXPR:
9800 case INIT_EXPR:
9801 case CONJ_EXPR:
9802 case COMPOUND_EXPR:
9803 case PREINCREMENT_EXPR:
9804 case PREDECREMENT_EXPR:
9805 case POSTINCREMENT_EXPR:
9806 case POSTDECREMENT_EXPR:
9807 case LOOP_EXPR:
9808 case EXIT_EXPR:
9809 /* Lowered by gimplify.c. */
9810 gcc_unreachable ();
9812 case FDESC_EXPR:
9813 /* Function descriptors are not valid except for as
9814 initialization constants, and should not be expanded. */
9815 gcc_unreachable ();
9817 case WITH_SIZE_EXPR:
9818 /* WITH_SIZE_EXPR expands to its first argument. The caller should
9819 have pulled out the size to use in whatever context it needed. */
9820 return expand_expr_real (treeop0, original_target, tmode,
9821 modifier, alt_rtl);
9823 case COMPOUND_LITERAL_EXPR:
9825 /* Initialize the anonymous variable declared in the compound
9826 literal, then return the variable. */
9827 tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
9829 /* Create RTL for this variable. */
9830 if (!DECL_RTL_SET_P (decl))
9832 if (DECL_HARD_REGISTER (decl))
9833 /* The user specified an assembler name for this variable.
9834 Set that up now. */
9835 rest_of_decl_compilation (decl, 0, 0);
9836 else
9837 expand_decl (decl);
9840 return expand_expr_real (decl, original_target, tmode,
9841 modifier, alt_rtl);
9844 default:
9845 return expand_expr_real_2 (&ops, target, tmode, modifier);
9849 /* Subroutine of above: reduce EXP to the precision of TYPE (in the
9850 signedness of TYPE), possibly returning the result in TARGET. */
9851 static rtx
9852 reduce_to_bit_field_precision (rtx exp, rtx target, tree type)
9854 HOST_WIDE_INT prec = TYPE_PRECISION (type);
9855 if (target && GET_MODE (target) != GET_MODE (exp))
9856 target = 0;
9857 /* For constant values, reduce using build_int_cst_type. */
9858 if (CONST_INT_P (exp))
9860 HOST_WIDE_INT value = INTVAL (exp);
9861 tree t = build_int_cst_type (type, value);
9862 return expand_expr (t, target, VOIDmode, EXPAND_NORMAL);
9864 else if (TYPE_UNSIGNED (type))
9866 rtx mask = immed_double_int_const (double_int_mask (prec),
9867 GET_MODE (exp));
9868 return expand_and (GET_MODE (exp), exp, mask, target);
9870 else
9872 int count = GET_MODE_PRECISION (GET_MODE (exp)) - prec;
9873 exp = expand_shift (LSHIFT_EXPR, GET_MODE (exp),
9874 exp, count, target, 0);
9875 return expand_shift (RSHIFT_EXPR, GET_MODE (exp),
9876 exp, count, target, 0);
9880 /* Subroutine of above: returns 1 if OFFSET corresponds to an offset that
9881 when applied to the address of EXP produces an address known to be
9882 aligned more than BIGGEST_ALIGNMENT. */
9884 static int
9885 is_aligning_offset (const_tree offset, const_tree exp)
9887 /* Strip off any conversions. */
9888 while (CONVERT_EXPR_P (offset))
9889 offset = TREE_OPERAND (offset, 0);
9891 /* We must now have a BIT_AND_EXPR with a constant that is one less than
9892 power of 2 and which is larger than BIGGEST_ALIGNMENT. */
9893 if (TREE_CODE (offset) != BIT_AND_EXPR
9894 || !host_integerp (TREE_OPERAND (offset, 1), 1)
9895 || compare_tree_int (TREE_OPERAND (offset, 1),
9896 BIGGEST_ALIGNMENT / BITS_PER_UNIT) <= 0
9897 || !exact_log2 (tree_low_cst (TREE_OPERAND (offset, 1), 1) + 1) < 0)
9898 return 0;
9900 /* Look at the first operand of BIT_AND_EXPR and strip any conversion.
9901 It must be NEGATE_EXPR. Then strip any more conversions. */
9902 offset = TREE_OPERAND (offset, 0);
9903 while (CONVERT_EXPR_P (offset))
9904 offset = TREE_OPERAND (offset, 0);
9906 if (TREE_CODE (offset) != NEGATE_EXPR)
9907 return 0;
9909 offset = TREE_OPERAND (offset, 0);
9910 while (CONVERT_EXPR_P (offset))
9911 offset = TREE_OPERAND (offset, 0);
9913 /* This must now be the address of EXP. */
9914 return TREE_CODE (offset) == ADDR_EXPR && TREE_OPERAND (offset, 0) == exp;
9917 /* Return the tree node if an ARG corresponds to a string constant or zero
9918 if it doesn't. If we return nonzero, set *PTR_OFFSET to the offset
9919 in bytes within the string that ARG is accessing. The type of the
9920 offset will be `sizetype'. */
9922 tree
9923 string_constant (tree arg, tree *ptr_offset)
9925 tree array, offset, lower_bound;
9926 STRIP_NOPS (arg);
9928 if (TREE_CODE (arg) == ADDR_EXPR)
9930 if (TREE_CODE (TREE_OPERAND (arg, 0)) == STRING_CST)
9932 *ptr_offset = size_zero_node;
9933 return TREE_OPERAND (arg, 0);
9935 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL)
9937 array = TREE_OPERAND (arg, 0);
9938 offset = size_zero_node;
9940 else if (TREE_CODE (TREE_OPERAND (arg, 0)) == ARRAY_REF)
9942 array = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
9943 offset = TREE_OPERAND (TREE_OPERAND (arg, 0), 1);
9944 if (TREE_CODE (array) != STRING_CST
9945 && TREE_CODE (array) != VAR_DECL)
9946 return 0;
9948 /* Check if the array has a nonzero lower bound. */
9949 lower_bound = array_ref_low_bound (TREE_OPERAND (arg, 0));
9950 if (!integer_zerop (lower_bound))
9952 /* If the offset and base aren't both constants, return 0. */
9953 if (TREE_CODE (lower_bound) != INTEGER_CST)
9954 return 0;
9955 if (TREE_CODE (offset) != INTEGER_CST)
9956 return 0;
9957 /* Adjust offset by the lower bound. */
9958 offset = size_diffop (fold_convert (sizetype, offset),
9959 fold_convert (sizetype, lower_bound));
9962 else
9963 return 0;
9965 else if (TREE_CODE (arg) == PLUS_EXPR || TREE_CODE (arg) == POINTER_PLUS_EXPR)
9967 tree arg0 = TREE_OPERAND (arg, 0);
9968 tree arg1 = TREE_OPERAND (arg, 1);
9970 STRIP_NOPS (arg0);
9971 STRIP_NOPS (arg1);
9973 if (TREE_CODE (arg0) == ADDR_EXPR
9974 && (TREE_CODE (TREE_OPERAND (arg0, 0)) == STRING_CST
9975 || TREE_CODE (TREE_OPERAND (arg0, 0)) == VAR_DECL))
9977 array = TREE_OPERAND (arg0, 0);
9978 offset = arg1;
9980 else if (TREE_CODE (arg1) == ADDR_EXPR
9981 && (TREE_CODE (TREE_OPERAND (arg1, 0)) == STRING_CST
9982 || TREE_CODE (TREE_OPERAND (arg1, 0)) == VAR_DECL))
9984 array = TREE_OPERAND (arg1, 0);
9985 offset = arg0;
9987 else
9988 return 0;
9990 else
9991 return 0;
9993 if (TREE_CODE (array) == STRING_CST)
9995 *ptr_offset = fold_convert (sizetype, offset);
9996 return array;
9998 else if (TREE_CODE (array) == VAR_DECL
9999 || TREE_CODE (array) == CONST_DECL)
10001 int length;
10003 /* Variables initialized to string literals can be handled too. */
10004 if (!const_value_known_p (array)
10005 || !DECL_INITIAL (array)
10006 || TREE_CODE (DECL_INITIAL (array)) != STRING_CST)
10007 return 0;
10009 /* Avoid const char foo[4] = "abcde"; */
10010 if (DECL_SIZE_UNIT (array) == NULL_TREE
10011 || TREE_CODE (DECL_SIZE_UNIT (array)) != INTEGER_CST
10012 || (length = TREE_STRING_LENGTH (DECL_INITIAL (array))) <= 0
10013 || compare_tree_int (DECL_SIZE_UNIT (array), length) < 0)
10014 return 0;
10016 /* If variable is bigger than the string literal, OFFSET must be constant
10017 and inside of the bounds of the string literal. */
10018 offset = fold_convert (sizetype, offset);
10019 if (compare_tree_int (DECL_SIZE_UNIT (array), length) > 0
10020 && (! host_integerp (offset, 1)
10021 || compare_tree_int (offset, length) >= 0))
10022 return 0;
10024 *ptr_offset = offset;
10025 return DECL_INITIAL (array);
10028 return 0;
10031 /* Generate code to calculate OPS, and exploded expression
10032 using a store-flag instruction and return an rtx for the result.
10033 OPS reflects a comparison.
10035 If TARGET is nonzero, store the result there if convenient.
10037 Return zero if there is no suitable set-flag instruction
10038 available on this machine.
10040 Once expand_expr has been called on the arguments of the comparison,
10041 we are committed to doing the store flag, since it is not safe to
10042 re-evaluate the expression. We emit the store-flag insn by calling
10043 emit_store_flag, but only expand the arguments if we have a reason
10044 to believe that emit_store_flag will be successful. If we think that
10045 it will, but it isn't, we have to simulate the store-flag with a
10046 set/jump/set sequence. */
10048 static rtx
10049 do_store_flag (sepops ops, rtx target, enum machine_mode mode)
10051 enum rtx_code code;
10052 tree arg0, arg1, type;
10053 tree tem;
10054 enum machine_mode operand_mode;
10055 int unsignedp;
10056 rtx op0, op1;
10057 rtx subtarget = target;
10058 location_t loc = ops->location;
10060 arg0 = ops->op0;
10061 arg1 = ops->op1;
10063 /* Don't crash if the comparison was erroneous. */
10064 if (arg0 == error_mark_node || arg1 == error_mark_node)
10065 return const0_rtx;
10067 type = TREE_TYPE (arg0);
10068 operand_mode = TYPE_MODE (type);
10069 unsignedp = TYPE_UNSIGNED (type);
10071 /* We won't bother with BLKmode store-flag operations because it would mean
10072 passing a lot of information to emit_store_flag. */
10073 if (operand_mode == BLKmode)
10074 return 0;
10076 /* We won't bother with store-flag operations involving function pointers
10077 when function pointers must be canonicalized before comparisons. */
10078 #ifdef HAVE_canonicalize_funcptr_for_compare
10079 if (HAVE_canonicalize_funcptr_for_compare
10080 && ((TREE_CODE (TREE_TYPE (arg0)) == POINTER_TYPE
10081 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg0)))
10082 == FUNCTION_TYPE))
10083 || (TREE_CODE (TREE_TYPE (arg1)) == POINTER_TYPE
10084 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg1)))
10085 == FUNCTION_TYPE))))
10086 return 0;
10087 #endif
10089 STRIP_NOPS (arg0);
10090 STRIP_NOPS (arg1);
10092 /* Get the rtx comparison code to use. We know that EXP is a comparison
10093 operation of some type. Some comparisons against 1 and -1 can be
10094 converted to comparisons with zero. Do so here so that the tests
10095 below will be aware that we have a comparison with zero. These
10096 tests will not catch constants in the first operand, but constants
10097 are rarely passed as the first operand. */
10099 switch (ops->code)
10101 case EQ_EXPR:
10102 code = EQ;
10103 break;
10104 case NE_EXPR:
10105 code = NE;
10106 break;
10107 case LT_EXPR:
10108 if (integer_onep (arg1))
10109 arg1 = integer_zero_node, code = unsignedp ? LEU : LE;
10110 else
10111 code = unsignedp ? LTU : LT;
10112 break;
10113 case LE_EXPR:
10114 if (! unsignedp && integer_all_onesp (arg1))
10115 arg1 = integer_zero_node, code = LT;
10116 else
10117 code = unsignedp ? LEU : LE;
10118 break;
10119 case GT_EXPR:
10120 if (! unsignedp && integer_all_onesp (arg1))
10121 arg1 = integer_zero_node, code = GE;
10122 else
10123 code = unsignedp ? GTU : GT;
10124 break;
10125 case GE_EXPR:
10126 if (integer_onep (arg1))
10127 arg1 = integer_zero_node, code = unsignedp ? GTU : GT;
10128 else
10129 code = unsignedp ? GEU : GE;
10130 break;
10132 case UNORDERED_EXPR:
10133 code = UNORDERED;
10134 break;
10135 case ORDERED_EXPR:
10136 code = ORDERED;
10137 break;
10138 case UNLT_EXPR:
10139 code = UNLT;
10140 break;
10141 case UNLE_EXPR:
10142 code = UNLE;
10143 break;
10144 case UNGT_EXPR:
10145 code = UNGT;
10146 break;
10147 case UNGE_EXPR:
10148 code = UNGE;
10149 break;
10150 case UNEQ_EXPR:
10151 code = UNEQ;
10152 break;
10153 case LTGT_EXPR:
10154 code = LTGT;
10155 break;
10157 default:
10158 gcc_unreachable ();
10161 /* Put a constant second. */
10162 if (TREE_CODE (arg0) == REAL_CST || TREE_CODE (arg0) == INTEGER_CST
10163 || TREE_CODE (arg0) == FIXED_CST)
10165 tem = arg0; arg0 = arg1; arg1 = tem;
10166 code = swap_condition (code);
10169 /* If this is an equality or inequality test of a single bit, we can
10170 do this by shifting the bit being tested to the low-order bit and
10171 masking the result with the constant 1. If the condition was EQ,
10172 we xor it with 1. This does not require an scc insn and is faster
10173 than an scc insn even if we have it.
10175 The code to make this transformation was moved into fold_single_bit_test,
10176 so we just call into the folder and expand its result. */
10178 if ((code == NE || code == EQ)
10179 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
10180 && integer_pow2p (TREE_OPERAND (arg0, 1))
10181 && (TYPE_PRECISION (ops->type) != 1 || TYPE_UNSIGNED (ops->type)))
10183 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
10184 return expand_expr (fold_single_bit_test (loc,
10185 code == NE ? NE_EXPR : EQ_EXPR,
10186 arg0, arg1, type),
10187 target, VOIDmode, EXPAND_NORMAL);
10190 if (! get_subtarget (target)
10191 || GET_MODE (subtarget) != operand_mode)
10192 subtarget = 0;
10194 expand_operands (arg0, arg1, subtarget, &op0, &op1, EXPAND_NORMAL);
10196 if (target == 0)
10197 target = gen_reg_rtx (mode);
10199 /* Try a cstore if possible. */
10200 return emit_store_flag_force (target, code, op0, op1,
10201 operand_mode, unsignedp,
10202 (TYPE_PRECISION (ops->type) == 1
10203 && !TYPE_UNSIGNED (ops->type)) ? -1 : 1);
10207 /* Stubs in case we haven't got a casesi insn. */
10208 #ifndef HAVE_casesi
10209 # define HAVE_casesi 0
10210 # define gen_casesi(a, b, c, d, e) (0)
10211 # define CODE_FOR_casesi CODE_FOR_nothing
10212 #endif
10214 /* Attempt to generate a casesi instruction. Returns 1 if successful,
10215 0 otherwise (i.e. if there is no casesi instruction). */
10217 try_casesi (tree index_type, tree index_expr, tree minval, tree range,
10218 rtx table_label ATTRIBUTE_UNUSED, rtx default_label,
10219 rtx fallback_label ATTRIBUTE_UNUSED)
10221 struct expand_operand ops[5];
10222 enum machine_mode index_mode = SImode;
10223 int index_bits = GET_MODE_BITSIZE (index_mode);
10224 rtx op1, op2, index;
10226 if (! HAVE_casesi)
10227 return 0;
10229 /* Convert the index to SImode. */
10230 if (GET_MODE_BITSIZE (TYPE_MODE (index_type)) > GET_MODE_BITSIZE (index_mode))
10232 enum machine_mode omode = TYPE_MODE (index_type);
10233 rtx rangertx = expand_normal (range);
10235 /* We must handle the endpoints in the original mode. */
10236 index_expr = build2 (MINUS_EXPR, index_type,
10237 index_expr, minval);
10238 minval = integer_zero_node;
10239 index = expand_normal (index_expr);
10240 if (default_label)
10241 emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
10242 omode, 1, default_label);
10243 /* Now we can safely truncate. */
10244 index = convert_to_mode (index_mode, index, 0);
10246 else
10248 if (TYPE_MODE (index_type) != index_mode)
10250 index_type = lang_hooks.types.type_for_size (index_bits, 0);
10251 index_expr = fold_convert (index_type, index_expr);
10254 index = expand_normal (index_expr);
10257 do_pending_stack_adjust ();
10259 op1 = expand_normal (minval);
10260 op2 = expand_normal (range);
10262 create_input_operand (&ops[0], index, index_mode);
10263 create_convert_operand_from_type (&ops[1], op1, TREE_TYPE (minval));
10264 create_convert_operand_from_type (&ops[2], op2, TREE_TYPE (range));
10265 create_fixed_operand (&ops[3], table_label);
10266 create_fixed_operand (&ops[4], (default_label
10267 ? default_label
10268 : fallback_label));
10269 expand_jump_insn (CODE_FOR_casesi, 5, ops);
10270 return 1;
10273 /* Attempt to generate a tablejump instruction; same concept. */
10274 #ifndef HAVE_tablejump
10275 #define HAVE_tablejump 0
10276 #define gen_tablejump(x, y) (0)
10277 #endif
10279 /* Subroutine of the next function.
10281 INDEX is the value being switched on, with the lowest value
10282 in the table already subtracted.
10283 MODE is its expected mode (needed if INDEX is constant).
10284 RANGE is the length of the jump table.
10285 TABLE_LABEL is a CODE_LABEL rtx for the table itself.
10287 DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
10288 index value is out of range. */
10290 static void
10291 do_tablejump (rtx index, enum machine_mode mode, rtx range, rtx table_label,
10292 rtx default_label)
10294 rtx temp, vector;
10296 if (INTVAL (range) > cfun->cfg->max_jumptable_ents)
10297 cfun->cfg->max_jumptable_ents = INTVAL (range);
10299 /* Do an unsigned comparison (in the proper mode) between the index
10300 expression and the value which represents the length of the range.
10301 Since we just finished subtracting the lower bound of the range
10302 from the index expression, this comparison allows us to simultaneously
10303 check that the original index expression value is both greater than
10304 or equal to the minimum value of the range and less than or equal to
10305 the maximum value of the range. */
10307 if (default_label)
10308 emit_cmp_and_jump_insns (index, range, GTU, NULL_RTX, mode, 1,
10309 default_label);
10311 /* If index is in range, it must fit in Pmode.
10312 Convert to Pmode so we can index with it. */
10313 if (mode != Pmode)
10314 index = convert_to_mode (Pmode, index, 1);
10316 /* Don't let a MEM slip through, because then INDEX that comes
10317 out of PIC_CASE_VECTOR_ADDRESS won't be a valid address,
10318 and break_out_memory_refs will go to work on it and mess it up. */
10319 #ifdef PIC_CASE_VECTOR_ADDRESS
10320 if (flag_pic && !REG_P (index))
10321 index = copy_to_mode_reg (Pmode, index);
10322 #endif
10324 /* ??? The only correct use of CASE_VECTOR_MODE is the one inside the
10325 GET_MODE_SIZE, because this indicates how large insns are. The other
10326 uses should all be Pmode, because they are addresses. This code
10327 could fail if addresses and insns are not the same size. */
10328 index = gen_rtx_PLUS (Pmode,
10329 gen_rtx_MULT (Pmode, index,
10330 GEN_INT (GET_MODE_SIZE (CASE_VECTOR_MODE))),
10331 gen_rtx_LABEL_REF (Pmode, table_label));
10332 #ifdef PIC_CASE_VECTOR_ADDRESS
10333 if (flag_pic)
10334 index = PIC_CASE_VECTOR_ADDRESS (index);
10335 else
10336 #endif
10337 index = memory_address (CASE_VECTOR_MODE, index);
10338 temp = gen_reg_rtx (CASE_VECTOR_MODE);
10339 vector = gen_const_mem (CASE_VECTOR_MODE, index);
10340 convert_move (temp, vector, 0);
10342 emit_jump_insn (gen_tablejump (temp, table_label));
10344 /* If we are generating PIC code or if the table is PC-relative, the
10345 table and JUMP_INSN must be adjacent, so don't output a BARRIER. */
10346 if (! CASE_VECTOR_PC_RELATIVE && ! flag_pic)
10347 emit_barrier ();
10351 try_tablejump (tree index_type, tree index_expr, tree minval, tree range,
10352 rtx table_label, rtx default_label)
10354 rtx index;
10356 if (! HAVE_tablejump)
10357 return 0;
10359 index_expr = fold_build2 (MINUS_EXPR, index_type,
10360 fold_convert (index_type, index_expr),
10361 fold_convert (index_type, minval));
10362 index = expand_normal (index_expr);
10363 do_pending_stack_adjust ();
10365 do_tablejump (index, TYPE_MODE (index_type),
10366 convert_modes (TYPE_MODE (index_type),
10367 TYPE_MODE (TREE_TYPE (range)),
10368 expand_normal (range),
10369 TYPE_UNSIGNED (TREE_TYPE (range))),
10370 table_label, default_label);
10371 return 1;
10374 /* Return a CONST_VECTOR rtx for a VECTOR_CST tree. */
10375 static rtx
10376 const_vector_from_tree (tree exp)
10378 rtvec v;
10379 int units, i;
10380 tree link, elt;
10381 enum machine_mode inner, mode;
10383 mode = TYPE_MODE (TREE_TYPE (exp));
10385 if (initializer_zerop (exp))
10386 return CONST0_RTX (mode);
10388 units = GET_MODE_NUNITS (mode);
10389 inner = GET_MODE_INNER (mode);
10391 v = rtvec_alloc (units);
10393 link = TREE_VECTOR_CST_ELTS (exp);
10394 for (i = 0; link; link = TREE_CHAIN (link), ++i)
10396 elt = TREE_VALUE (link);
10398 if (TREE_CODE (elt) == REAL_CST)
10399 RTVEC_ELT (v, i) = CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (elt),
10400 inner);
10401 else if (TREE_CODE (elt) == FIXED_CST)
10402 RTVEC_ELT (v, i) = CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (elt),
10403 inner);
10404 else
10405 RTVEC_ELT (v, i) = immed_double_int_const (tree_to_double_int (elt),
10406 inner);
10409 /* Initialize remaining elements to 0. */
10410 for (; i < units; ++i)
10411 RTVEC_ELT (v, i) = CONST0_RTX (inner);
10413 return gen_rtx_CONST_VECTOR (mode, v);
10416 /* Build a decl for a personality function given a language prefix. */
10418 tree
10419 build_personality_function (const char *lang)
10421 const char *unwind_and_version;
10422 tree decl, type;
10423 char *name;
10425 switch (targetm_common.except_unwind_info (&global_options))
10427 case UI_NONE:
10428 return NULL;
10429 case UI_SJLJ:
10430 unwind_and_version = "_sj0";
10431 break;
10432 case UI_DWARF2:
10433 case UI_TARGET:
10434 unwind_and_version = "_v0";
10435 break;
10436 default:
10437 gcc_unreachable ();
10440 name = ACONCAT (("__", lang, "_personality", unwind_and_version, NULL));
10442 type = build_function_type_list (integer_type_node, integer_type_node,
10443 long_long_unsigned_type_node,
10444 ptr_type_node, ptr_type_node, NULL_TREE);
10445 decl = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
10446 get_identifier (name), type);
10447 DECL_ARTIFICIAL (decl) = 1;
10448 DECL_EXTERNAL (decl) = 1;
10449 TREE_PUBLIC (decl) = 1;
10451 /* Zap the nonsensical SYMBOL_REF_DECL for this. What we're left with
10452 are the flags assigned by targetm.encode_section_info. */
10453 SET_SYMBOL_REF_DECL (XEXP (DECL_RTL (decl), 0), NULL);
10455 return decl;
10458 /* Extracts the personality function of DECL and returns the corresponding
10459 libfunc. */
10462 get_personality_function (tree decl)
10464 tree personality = DECL_FUNCTION_PERSONALITY (decl);
10465 enum eh_personality_kind pk;
10467 pk = function_needs_eh_personality (DECL_STRUCT_FUNCTION (decl));
10468 if (pk == eh_personality_none)
10469 return NULL;
10471 if (!personality
10472 && pk == eh_personality_any)
10473 personality = lang_hooks.eh_personality ();
10475 if (pk == eh_personality_lang)
10476 gcc_assert (personality != NULL_TREE);
10478 return XEXP (DECL_RTL (personality), 0);
10481 #include "gt-expr.h"