OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / expr.c
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 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "machmode.h"
27 #include "real.h"
28 #include "rtl.h"
29 #include "tree.h"
30 #include "flags.h"
31 #include "regs.h"
32 #include "hard-reg-set.h"
33 #include "except.h"
34 #include "function.h"
35 #include "insn-config.h"
36 #include "insn-attr.h"
37 /* Include expr.h after insn-config.h so we get HAVE_conditional_move.  */
38 #include "expr.h"
39 #include "optabs.h"
40 #include "libfuncs.h"
41 #include "recog.h"
42 #include "reload.h"
43 #include "output.h"
44 #include "typeclass.h"
45 #include "toplev.h"
46 #include "ggc.h"
47 #include "langhooks.h"
48 #include "intl.h"
49 #include "tm_p.h"
50 #include "tree-iterator.h"
51 #include "tree-pass.h"
52 #include "tree-flow.h"
53 #include "target.h"
54 #include "timevar.h"
55
56 /* Decide whether a function's arguments should be processed
57    from first to last or from last to first.
58
59    They should if the stack and args grow in opposite directions, but
60    only if we have push insns.  */
61
62 #ifdef PUSH_ROUNDING
63
64 #ifndef PUSH_ARGS_REVERSED
65 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
66 #define PUSH_ARGS_REVERSED      /* If it's last to first.  */
67 #endif
68 #endif
69
70 #endif
71
72 #ifndef STACK_PUSH_CODE
73 #ifdef STACK_GROWS_DOWNWARD
74 #define STACK_PUSH_CODE PRE_DEC
75 #else
76 #define STACK_PUSH_CODE PRE_INC
77 #endif
78 #endif
79
80
81 /* If this is nonzero, we do not bother generating VOLATILE
82    around volatile memory references, and we are willing to
83    output indirect addresses.  If cse is to follow, we reject
84    indirect addresses so a useful potential cse is generated;
85    if it is used only once, instruction combination will produce
86    the same indirect address eventually.  */
87 int cse_not_expected;
88
89 /* This structure is used by move_by_pieces to describe the move to
90    be performed.  */
91 struct move_by_pieces
92 {
93   rtx to;
94   rtx to_addr;
95   int autinc_to;
96   int explicit_inc_to;
97   rtx from;
98   rtx from_addr;
99   int autinc_from;
100   int explicit_inc_from;
101   unsigned HOST_WIDE_INT len;
102   HOST_WIDE_INT offset;
103   int reverse;
104 };
105
106 /* This structure is used by store_by_pieces to describe the clear to
107    be performed.  */
108
109 struct store_by_pieces
110 {
111   rtx to;
112   rtx to_addr;
113   int autinc_to;
114   int explicit_inc_to;
115   unsigned HOST_WIDE_INT len;
116   HOST_WIDE_INT offset;
117   rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode);
118   void *constfundata;
119   int reverse;
120 };
121
122 static unsigned HOST_WIDE_INT move_by_pieces_ninsns (unsigned HOST_WIDE_INT,
123                                                      unsigned int,
124                                                      unsigned int);
125 static void move_by_pieces_1 (rtx (*) (rtx, ...), enum machine_mode,
126                               struct move_by_pieces *);
127 static bool block_move_libcall_safe_for_call_parm (void);
128 static bool emit_block_move_via_movmem (rtx, rtx, rtx, unsigned);
129 static rtx emit_block_move_via_libcall (rtx, rtx, rtx);
130 static tree emit_block_move_libcall_fn (int);
131 static void emit_block_move_via_loop (rtx, rtx, rtx, unsigned);
132 static rtx clear_by_pieces_1 (void *, HOST_WIDE_INT, enum machine_mode);
133 static void clear_by_pieces (rtx, unsigned HOST_WIDE_INT, unsigned int);
134 static void store_by_pieces_1 (struct store_by_pieces *, unsigned int);
135 static void store_by_pieces_2 (rtx (*) (rtx, ...), enum machine_mode,
136                                struct store_by_pieces *);
137 static bool clear_storage_via_clrmem (rtx, rtx, unsigned);
138 static rtx clear_storage_via_libcall (rtx, rtx);
139 static tree clear_storage_libcall_fn (int);
140 static rtx compress_float_constant (rtx, rtx);
141 static rtx get_subtarget (rtx);
142 static void store_constructor_field (rtx, unsigned HOST_WIDE_INT,
143                                      HOST_WIDE_INT, enum machine_mode,
144                                      tree, tree, int, int);
145 static void store_constructor (tree, rtx, int, HOST_WIDE_INT);
146 static rtx store_field (rtx, HOST_WIDE_INT, HOST_WIDE_INT, enum machine_mode,
147                         tree, tree, int);
148
149 static unsigned HOST_WIDE_INT highest_pow2_factor (tree);
150 static unsigned HOST_WIDE_INT highest_pow2_factor_for_target (tree, tree);
151
152 static int is_aligning_offset (tree, tree);
153 static void expand_operands (tree, tree, rtx, rtx*, rtx*,
154                              enum expand_modifier);
155 static rtx reduce_to_bit_field_precision (rtx, rtx, tree);
156 static rtx do_store_flag (tree, rtx, enum machine_mode, int);
157 #ifdef PUSH_ROUNDING
158 static void emit_single_push_insn (enum machine_mode, rtx, tree);
159 #endif
160 static void do_tablejump (rtx, enum machine_mode, rtx, rtx, rtx);
161 static rtx const_vector_from_tree (tree);
162 static void write_complex_part (rtx, rtx, bool);
163
164 /* Record for each mode whether we can move a register directly to or
165    from an object of that mode in memory.  If we can't, we won't try
166    to use that mode directly when accessing a field of that mode.  */
167
168 static char direct_load[NUM_MACHINE_MODES];
169 static char direct_store[NUM_MACHINE_MODES];
170
171 /* Record for each mode whether we can float-extend from memory.  */
172
173 static bool float_extend_from_mem[NUM_MACHINE_MODES][NUM_MACHINE_MODES];
174
175 /* This macro is used to determine whether move_by_pieces should be called
176    to perform a structure copy.  */
177 #ifndef MOVE_BY_PIECES_P
178 #define MOVE_BY_PIECES_P(SIZE, ALIGN) \
179   (move_by_pieces_ninsns (SIZE, ALIGN, MOVE_MAX_PIECES + 1) \
180    < (unsigned int) MOVE_RATIO)
181 #endif
182
183 /* This macro is used to determine whether clear_by_pieces should be
184    called to clear storage.  */
185 #ifndef CLEAR_BY_PIECES_P
186 #define CLEAR_BY_PIECES_P(SIZE, ALIGN) \
187   (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
188    < (unsigned int) CLEAR_RATIO)
189 #endif
190
191 /* This macro is used to determine whether store_by_pieces should be
192    called to "memset" storage with byte values other than zero, or
193    to "memcpy" storage when the source is a constant string.  */
194 #ifndef STORE_BY_PIECES_P
195 #define STORE_BY_PIECES_P(SIZE, ALIGN) \
196   (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
197    < (unsigned int) MOVE_RATIO)
198 #endif
199
200 /* This array records the insn_code of insns to perform block moves.  */
201 enum insn_code movmem_optab[NUM_MACHINE_MODES];
202
203 /* This array records the insn_code of insns to perform block clears.  */
204 enum insn_code clrmem_optab[NUM_MACHINE_MODES];
205
206 /* These arrays record the insn_code of two different kinds of insns
207    to perform block compares.  */
208 enum insn_code cmpstr_optab[NUM_MACHINE_MODES];
209 enum insn_code cmpmem_optab[NUM_MACHINE_MODES];
210
211 /* SLOW_UNALIGNED_ACCESS is nonzero if unaligned accesses are very slow.  */
212
213 #ifndef SLOW_UNALIGNED_ACCESS
214 #define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT
215 #endif
216 \f
217 /* This is run once per compilation to set up which modes can be used
218    directly in memory and to initialize the block move optab.  */
219
220 void
221 init_expr_once (void)
222 {
223   rtx insn, pat;
224   enum machine_mode mode;
225   int num_clobbers;
226   rtx mem, mem1;
227   rtx reg;
228
229   /* Try indexing by frame ptr and try by stack ptr.
230      It is known that on the Convex the stack ptr isn't a valid index.
231      With luck, one or the other is valid on any machine.  */
232   mem = gen_rtx_MEM (VOIDmode, stack_pointer_rtx);
233   mem1 = gen_rtx_MEM (VOIDmode, frame_pointer_rtx);
234
235   /* A scratch register we can modify in-place below to avoid
236      useless RTL allocations.  */
237   reg = gen_rtx_REG (VOIDmode, -1);
238
239   insn = rtx_alloc (INSN);
240   pat = gen_rtx_SET (0, NULL_RTX, NULL_RTX);
241   PATTERN (insn) = pat;
242
243   for (mode = VOIDmode; (int) mode < NUM_MACHINE_MODES;
244        mode = (enum machine_mode) ((int) mode + 1))
245     {
246       int regno;
247
248       direct_load[(int) mode] = direct_store[(int) mode] = 0;
249       PUT_MODE (mem, mode);
250       PUT_MODE (mem1, mode);
251       PUT_MODE (reg, mode);
252
253       /* See if there is some register that can be used in this mode and
254          directly loaded or stored from memory.  */
255
256       if (mode != VOIDmode && mode != BLKmode)
257         for (regno = 0; regno < FIRST_PSEUDO_REGISTER
258              && (direct_load[(int) mode] == 0 || direct_store[(int) mode] == 0);
259              regno++)
260           {
261             if (! HARD_REGNO_MODE_OK (regno, mode))
262               continue;
263
264             REGNO (reg) = regno;
265
266             SET_SRC (pat) = mem;
267             SET_DEST (pat) = reg;
268             if (recog (pat, insn, &num_clobbers) >= 0)
269               direct_load[(int) mode] = 1;
270
271             SET_SRC (pat) = mem1;
272             SET_DEST (pat) = reg;
273             if (recog (pat, insn, &num_clobbers) >= 0)
274               direct_load[(int) mode] = 1;
275
276             SET_SRC (pat) = reg;
277             SET_DEST (pat) = mem;
278             if (recog (pat, insn, &num_clobbers) >= 0)
279               direct_store[(int) mode] = 1;
280
281             SET_SRC (pat) = reg;
282             SET_DEST (pat) = mem1;
283             if (recog (pat, insn, &num_clobbers) >= 0)
284               direct_store[(int) mode] = 1;
285           }
286     }
287
288   mem = gen_rtx_MEM (VOIDmode, gen_rtx_raw_REG (Pmode, 10000));
289
290   for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
291        mode = GET_MODE_WIDER_MODE (mode))
292     {
293       enum machine_mode srcmode;
294       for (srcmode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); srcmode != mode;
295            srcmode = GET_MODE_WIDER_MODE (srcmode))
296         {
297           enum insn_code ic;
298
299           ic = can_extend_p (mode, srcmode, 0);
300           if (ic == CODE_FOR_nothing)
301             continue;
302
303           PUT_MODE (mem, srcmode);
304
305           if ((*insn_data[ic].operand[1].predicate) (mem, srcmode))
306             float_extend_from_mem[mode][srcmode] = true;
307         }
308     }
309 }
310
311 /* This is run at the start of compiling a function.  */
312
313 void
314 init_expr (void)
315 {
316   cfun->expr = ggc_alloc_cleared (sizeof (struct expr_status));
317 }
318 \f
319 /* Copy data from FROM to TO, where the machine modes are not the same.
320    Both modes may be integer, or both may be floating.
321    UNSIGNEDP should be nonzero if FROM is an unsigned type.
322    This causes zero-extension instead of sign-extension.  */
323
324 void
325 convert_move (rtx to, rtx from, int unsignedp)
326 {
327   enum machine_mode to_mode = GET_MODE (to);
328   enum machine_mode from_mode = GET_MODE (from);
329   int to_real = GET_MODE_CLASS (to_mode) == MODE_FLOAT;
330   int from_real = GET_MODE_CLASS (from_mode) == MODE_FLOAT;
331   enum insn_code code;
332   rtx libcall;
333
334   /* rtx code for making an equivalent value.  */
335   enum rtx_code equiv_code = (unsignedp < 0 ? UNKNOWN
336                               : (unsignedp ? ZERO_EXTEND : SIGN_EXTEND));
337
338
339   gcc_assert (to_real == from_real);
340
341   /* If the source and destination are already the same, then there's
342      nothing to do.  */
343   if (to == from)
344     return;
345
346   /* If FROM is a SUBREG that indicates that we have already done at least
347      the required extension, strip it.  We don't handle such SUBREGs as
348      TO here.  */
349
350   if (GET_CODE (from) == SUBREG && SUBREG_PROMOTED_VAR_P (from)
351       && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (from)))
352           >= GET_MODE_SIZE (to_mode))
353       && SUBREG_PROMOTED_UNSIGNED_P (from) == unsignedp)
354     from = gen_lowpart (to_mode, from), from_mode = to_mode;
355
356   gcc_assert (GET_CODE (to) != SUBREG || !SUBREG_PROMOTED_VAR_P (to));
357
358   if (to_mode == from_mode
359       || (from_mode == VOIDmode && CONSTANT_P (from)))
360     {
361       emit_move_insn (to, from);
362       return;
363     }
364
365   if (VECTOR_MODE_P (to_mode) || VECTOR_MODE_P (from_mode))
366     {
367       gcc_assert (GET_MODE_BITSIZE (from_mode) == GET_MODE_BITSIZE (to_mode));
368
369       if (VECTOR_MODE_P (to_mode))
370         from = simplify_gen_subreg (to_mode, from, GET_MODE (from), 0);
371       else
372         to = simplify_gen_subreg (from_mode, to, GET_MODE (to), 0);
373
374       emit_move_insn (to, from);
375       return;
376     }
377
378   if (GET_CODE (to) == CONCAT && GET_CODE (from) == CONCAT)
379     {
380       convert_move (XEXP (to, 0), XEXP (from, 0), unsignedp);
381       convert_move (XEXP (to, 1), XEXP (from, 1), unsignedp);
382       return;
383     }
384
385   if (to_real)
386     {
387       rtx value, insns;
388       convert_optab tab;
389
390       gcc_assert (GET_MODE_PRECISION (from_mode)
391                   != GET_MODE_PRECISION (to_mode));
392       
393       if (GET_MODE_PRECISION (from_mode) < GET_MODE_PRECISION (to_mode))
394         tab = sext_optab;
395       else
396         tab = trunc_optab;
397
398       /* Try converting directly if the insn is supported.  */
399
400       code = tab->handlers[to_mode][from_mode].insn_code;
401       if (code != CODE_FOR_nothing)
402         {
403           emit_unop_insn (code, to, from,
404                           tab == sext_optab ? FLOAT_EXTEND : FLOAT_TRUNCATE);
405           return;
406         }
407
408       /* Otherwise use a libcall.  */
409       libcall = tab->handlers[to_mode][from_mode].libfunc;
410
411       /* Is this conversion implemented yet?  */
412       gcc_assert (libcall);
413
414       start_sequence ();
415       value = emit_library_call_value (libcall, NULL_RTX, LCT_CONST, to_mode,
416                                        1, from, from_mode);
417       insns = get_insns ();
418       end_sequence ();
419       emit_libcall_block (insns, to, value,
420                           tab == trunc_optab ? gen_rtx_FLOAT_TRUNCATE (to_mode,
421                                                                        from)
422                           : gen_rtx_FLOAT_EXTEND (to_mode, from));
423       return;
424     }
425
426   /* Handle pointer conversion.  */                     /* SPEE 900220.  */
427   /* Targets are expected to provide conversion insns between PxImode and
428      xImode for all MODE_PARTIAL_INT modes they use, but no others.  */
429   if (GET_MODE_CLASS (to_mode) == MODE_PARTIAL_INT)
430     {
431       enum machine_mode full_mode
432         = smallest_mode_for_size (GET_MODE_BITSIZE (to_mode), MODE_INT);
433
434       gcc_assert (trunc_optab->handlers[to_mode][full_mode].insn_code
435                   != CODE_FOR_nothing);
436
437       if (full_mode != from_mode)
438         from = convert_to_mode (full_mode, from, unsignedp);
439       emit_unop_insn (trunc_optab->handlers[to_mode][full_mode].insn_code,
440                       to, from, UNKNOWN);
441       return;
442     }
443   if (GET_MODE_CLASS (from_mode) == MODE_PARTIAL_INT)
444     {
445       enum machine_mode full_mode
446         = smallest_mode_for_size (GET_MODE_BITSIZE (from_mode), MODE_INT);
447
448       gcc_assert (sext_optab->handlers[full_mode][from_mode].insn_code
449                   != CODE_FOR_nothing);
450
451       emit_unop_insn (sext_optab->handlers[full_mode][from_mode].insn_code,
452                       to, from, UNKNOWN);
453       if (to_mode == full_mode)
454         return;
455
456       /* else proceed to integer conversions below.  */
457       from_mode = full_mode;
458     }
459
460   /* Now both modes are integers.  */
461
462   /* Handle expanding beyond a word.  */
463   if (GET_MODE_BITSIZE (from_mode) < GET_MODE_BITSIZE (to_mode)
464       && GET_MODE_BITSIZE (to_mode) > BITS_PER_WORD)
465     {
466       rtx insns;
467       rtx lowpart;
468       rtx fill_value;
469       rtx lowfrom;
470       int i;
471       enum machine_mode lowpart_mode;
472       int nwords = CEIL (GET_MODE_SIZE (to_mode), UNITS_PER_WORD);
473
474       /* Try converting directly if the insn is supported.  */
475       if ((code = can_extend_p (to_mode, from_mode, unsignedp))
476           != CODE_FOR_nothing)
477         {
478           /* If FROM is a SUBREG, put it into a register.  Do this
479              so that we always generate the same set of insns for
480              better cse'ing; if an intermediate assignment occurred,
481              we won't be doing the operation directly on the SUBREG.  */
482           if (optimize > 0 && GET_CODE (from) == SUBREG)
483             from = force_reg (from_mode, from);
484           emit_unop_insn (code, to, from, equiv_code);
485           return;
486         }
487       /* Next, try converting via full word.  */
488       else if (GET_MODE_BITSIZE (from_mode) < BITS_PER_WORD
489                && ((code = can_extend_p (to_mode, word_mode, unsignedp))
490                    != CODE_FOR_nothing))
491         {
492           if (REG_P (to))
493             {
494               if (reg_overlap_mentioned_p (to, from))
495                 from = force_reg (from_mode, from);
496               emit_insn (gen_rtx_CLOBBER (VOIDmode, to));
497             }
498           convert_move (gen_lowpart (word_mode, to), from, unsignedp);
499           emit_unop_insn (code, to,
500                           gen_lowpart (word_mode, to), equiv_code);
501           return;
502         }
503
504       /* No special multiword conversion insn; do it by hand.  */
505       start_sequence ();
506
507       /* Since we will turn this into a no conflict block, we must ensure
508          that the source does not overlap the target.  */
509
510       if (reg_overlap_mentioned_p (to, from))
511         from = force_reg (from_mode, from);
512
513       /* Get a copy of FROM widened to a word, if necessary.  */
514       if (GET_MODE_BITSIZE (from_mode) < BITS_PER_WORD)
515         lowpart_mode = word_mode;
516       else
517         lowpart_mode = from_mode;
518
519       lowfrom = convert_to_mode (lowpart_mode, from, unsignedp);
520
521       lowpart = gen_lowpart (lowpart_mode, to);
522       emit_move_insn (lowpart, lowfrom);
523
524       /* Compute the value to put in each remaining word.  */
525       if (unsignedp)
526         fill_value = const0_rtx;
527       else
528         {
529 #ifdef HAVE_slt
530           if (HAVE_slt
531               && insn_data[(int) CODE_FOR_slt].operand[0].mode == word_mode
532               && STORE_FLAG_VALUE == -1)
533             {
534               emit_cmp_insn (lowfrom, const0_rtx, NE, NULL_RTX,
535                              lowpart_mode, 0);
536               fill_value = gen_reg_rtx (word_mode);
537               emit_insn (gen_slt (fill_value));
538             }
539           else
540 #endif
541             {
542               fill_value
543                 = expand_shift (RSHIFT_EXPR, lowpart_mode, lowfrom,
544                                 size_int (GET_MODE_BITSIZE (lowpart_mode) - 1),
545                                 NULL_RTX, 0);
546               fill_value = convert_to_mode (word_mode, fill_value, 1);
547             }
548         }
549
550       /* Fill the remaining words.  */
551       for (i = GET_MODE_SIZE (lowpart_mode) / UNITS_PER_WORD; i < nwords; i++)
552         {
553           int index = (WORDS_BIG_ENDIAN ? nwords - i - 1 : i);
554           rtx subword = operand_subword (to, index, 1, to_mode);
555
556           gcc_assert (subword);
557
558           if (fill_value != subword)
559             emit_move_insn (subword, fill_value);
560         }
561
562       insns = get_insns ();
563       end_sequence ();
564
565       emit_no_conflict_block (insns, to, from, NULL_RTX,
566                               gen_rtx_fmt_e (equiv_code, to_mode, copy_rtx (from)));
567       return;
568     }
569
570   /* Truncating multi-word to a word or less.  */
571   if (GET_MODE_BITSIZE (from_mode) > BITS_PER_WORD
572       && GET_MODE_BITSIZE (to_mode) <= BITS_PER_WORD)
573     {
574       if (!((MEM_P (from)
575              && ! MEM_VOLATILE_P (from)
576              && direct_load[(int) to_mode]
577              && ! mode_dependent_address_p (XEXP (from, 0)))
578             || REG_P (from)
579             || GET_CODE (from) == SUBREG))
580         from = force_reg (from_mode, from);
581       convert_move (to, gen_lowpart (word_mode, from), 0);
582       return;
583     }
584
585   /* Now follow all the conversions between integers
586      no more than a word long.  */
587
588   /* For truncation, usually we can just refer to FROM in a narrower mode.  */
589   if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode)
590       && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (to_mode),
591                                 GET_MODE_BITSIZE (from_mode)))
592     {
593       if (!((MEM_P (from)
594              && ! MEM_VOLATILE_P (from)
595              && direct_load[(int) to_mode]
596              && ! mode_dependent_address_p (XEXP (from, 0)))
597             || REG_P (from)
598             || GET_CODE (from) == SUBREG))
599         from = force_reg (from_mode, from);
600       if (REG_P (from) && REGNO (from) < FIRST_PSEUDO_REGISTER
601           && ! HARD_REGNO_MODE_OK (REGNO (from), to_mode))
602         from = copy_to_reg (from);
603       emit_move_insn (to, gen_lowpart (to_mode, from));
604       return;
605     }
606
607   /* Handle extension.  */
608   if (GET_MODE_BITSIZE (to_mode) > GET_MODE_BITSIZE (from_mode))
609     {
610       /* Convert directly if that works.  */
611       if ((code = can_extend_p (to_mode, from_mode, unsignedp))
612           != CODE_FOR_nothing)
613         {
614           if (flag_force_mem)
615             from = force_not_mem (from);
616
617           emit_unop_insn (code, to, from, equiv_code);
618           return;
619         }
620       else
621         {
622           enum machine_mode intermediate;
623           rtx tmp;
624           tree shift_amount;
625
626           /* Search for a mode to convert via.  */
627           for (intermediate = from_mode; intermediate != VOIDmode;
628                intermediate = GET_MODE_WIDER_MODE (intermediate))
629             if (((can_extend_p (to_mode, intermediate, unsignedp)
630                   != CODE_FOR_nothing)
631                  || (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (intermediate)
632                      && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (to_mode),
633                                                GET_MODE_BITSIZE (intermediate))))
634                 && (can_extend_p (intermediate, from_mode, unsignedp)
635                     != CODE_FOR_nothing))
636               {
637                 convert_move (to, convert_to_mode (intermediate, from,
638                                                    unsignedp), unsignedp);
639                 return;
640               }
641
642           /* No suitable intermediate mode.
643              Generate what we need with shifts.  */
644           shift_amount = build_int_cst (NULL_TREE,
645                                         GET_MODE_BITSIZE (to_mode)
646                                         - GET_MODE_BITSIZE (from_mode));
647           from = gen_lowpart (to_mode, force_reg (from_mode, from));
648           tmp = expand_shift (LSHIFT_EXPR, to_mode, from, shift_amount,
649                               to, unsignedp);
650           tmp = expand_shift (RSHIFT_EXPR, to_mode, tmp, shift_amount,
651                               to, unsignedp);
652           if (tmp != to)
653             emit_move_insn (to, tmp);
654           return;
655         }
656     }
657
658   /* Support special truncate insns for certain modes.  */
659   if (trunc_optab->handlers[to_mode][from_mode].insn_code != CODE_FOR_nothing)
660     {
661       emit_unop_insn (trunc_optab->handlers[to_mode][from_mode].insn_code,
662                       to, from, UNKNOWN);
663       return;
664     }
665
666   /* Handle truncation of volatile memrefs, and so on;
667      the things that couldn't be truncated directly,
668      and for which there was no special instruction.
669
670      ??? Code above formerly short-circuited this, for most integer
671      mode pairs, with a force_reg in from_mode followed by a recursive
672      call to this routine.  Appears always to have been wrong.  */
673   if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode))
674     {
675       rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from));
676       emit_move_insn (to, temp);
677       return;
678     }
679
680   /* Mode combination is not recognized.  */
681   gcc_unreachable ();
682 }
683
684 /* Return an rtx for a value that would result
685    from converting X to mode MODE.
686    Both X and MODE may be floating, or both integer.
687    UNSIGNEDP is nonzero if X is an unsigned value.
688    This can be done by referring to a part of X in place
689    or by copying to a new temporary with conversion.  */
690
691 rtx
692 convert_to_mode (enum machine_mode mode, rtx x, int unsignedp)
693 {
694   return convert_modes (mode, VOIDmode, x, unsignedp);
695 }
696
697 /* Return an rtx for a value that would result
698    from converting X from mode OLDMODE to mode MODE.
699    Both modes may be floating, or both integer.
700    UNSIGNEDP is nonzero if X is an unsigned value.
701
702    This can be done by referring to a part of X in place
703    or by copying to a new temporary with conversion.
704
705    You can give VOIDmode for OLDMODE, if you are sure X has a nonvoid mode.  */
706
707 rtx
708 convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int unsignedp)
709 {
710   rtx temp;
711
712   /* If FROM is a SUBREG that indicates that we have already done at least
713      the required extension, strip it.  */
714
715   if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
716       && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) >= GET_MODE_SIZE (mode)
717       && SUBREG_PROMOTED_UNSIGNED_P (x) == unsignedp)
718     x = gen_lowpart (mode, x);
719
720   if (GET_MODE (x) != VOIDmode)
721     oldmode = GET_MODE (x);
722
723   if (mode == oldmode)
724     return x;
725
726   /* There is one case that we must handle specially: If we are converting
727      a CONST_INT into a mode whose size is twice HOST_BITS_PER_WIDE_INT and
728      we are to interpret the constant as unsigned, gen_lowpart will do
729      the wrong if the constant appears negative.  What we want to do is
730      make the high-order word of the constant zero, not all ones.  */
731
732   if (unsignedp && GET_MODE_CLASS (mode) == MODE_INT
733       && GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT
734       && GET_CODE (x) == CONST_INT && INTVAL (x) < 0)
735     {
736       HOST_WIDE_INT val = INTVAL (x);
737
738       if (oldmode != VOIDmode
739           && HOST_BITS_PER_WIDE_INT > GET_MODE_BITSIZE (oldmode))
740         {
741           int width = GET_MODE_BITSIZE (oldmode);
742
743           /* We need to zero extend VAL.  */
744           val &= ((HOST_WIDE_INT) 1 << width) - 1;
745         }
746
747       return immed_double_const (val, (HOST_WIDE_INT) 0, mode);
748     }
749
750   /* We can do this with a gen_lowpart if both desired and current modes
751      are integer, and this is either a constant integer, a register, or a
752      non-volatile MEM.  Except for the constant case where MODE is no
753      wider than HOST_BITS_PER_WIDE_INT, we must be narrowing the operand.  */
754
755   if ((GET_CODE (x) == CONST_INT
756        && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
757       || (GET_MODE_CLASS (mode) == MODE_INT
758           && GET_MODE_CLASS (oldmode) == MODE_INT
759           && (GET_CODE (x) == CONST_DOUBLE
760               || (GET_MODE_SIZE (mode) <= GET_MODE_SIZE (oldmode)
761                   && ((MEM_P (x) && ! MEM_VOLATILE_P (x)
762                        && direct_load[(int) mode])
763                       || (REG_P (x)
764                           && (! HARD_REGISTER_P (x)
765                               || HARD_REGNO_MODE_OK (REGNO (x), mode))
766                           && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
767                                                     GET_MODE_BITSIZE (GET_MODE (x)))))))))
768     {
769       /* ?? If we don't know OLDMODE, we have to assume here that
770          X does not need sign- or zero-extension.   This may not be
771          the case, but it's the best we can do.  */
772       if (GET_CODE (x) == CONST_INT && oldmode != VOIDmode
773           && GET_MODE_SIZE (mode) > GET_MODE_SIZE (oldmode))
774         {
775           HOST_WIDE_INT val = INTVAL (x);
776           int width = GET_MODE_BITSIZE (oldmode);
777
778           /* We must sign or zero-extend in this case.  Start by
779              zero-extending, then sign extend if we need to.  */
780           val &= ((HOST_WIDE_INT) 1 << width) - 1;
781           if (! unsignedp
782               && (val & ((HOST_WIDE_INT) 1 << (width - 1))))
783             val |= (HOST_WIDE_INT) (-1) << width;
784
785           return gen_int_mode (val, mode);
786         }
787
788       return gen_lowpart (mode, x);
789     }
790
791   /* Converting from integer constant into mode is always equivalent to an
792      subreg operation.  */
793   if (VECTOR_MODE_P (mode) && GET_MODE (x) == VOIDmode)
794     {
795       gcc_assert (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (oldmode));
796       return simplify_gen_subreg (mode, x, oldmode, 0);
797     }
798
799   temp = gen_reg_rtx (mode);
800   convert_move (temp, x, unsignedp);
801   return temp;
802 }
803 \f
804 /* STORE_MAX_PIECES is the number of bytes at a time that we can
805    store efficiently.  Due to internal GCC limitations, this is
806    MOVE_MAX_PIECES limited by the number of bytes GCC can represent
807    for an immediate constant.  */
808
809 #define STORE_MAX_PIECES  MIN (MOVE_MAX_PIECES, 2 * sizeof (HOST_WIDE_INT))
810
811 /* Determine whether the LEN bytes can be moved by using several move
812    instructions.  Return nonzero if a call to move_by_pieces should
813    succeed.  */
814
815 int
816 can_move_by_pieces (unsigned HOST_WIDE_INT len,
817                     unsigned int align ATTRIBUTE_UNUSED)
818 {
819   return MOVE_BY_PIECES_P (len, align);
820 }
821
822 /* Generate several move instructions to copy LEN bytes from block FROM to
823    block TO.  (These are MEM rtx's with BLKmode).
824
825    If PUSH_ROUNDING is defined and TO is NULL, emit_single_push_insn is
826    used to push FROM to the stack.
827
828    ALIGN is maximum stack alignment we can assume.
829
830    If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
831    mempcpy, and if ENDP is 2 return memory the end minus one byte ala
832    stpcpy.  */
833
834 rtx
835 move_by_pieces (rtx to, rtx from, unsigned HOST_WIDE_INT len,
836                 unsigned int align, int endp)
837 {
838   struct move_by_pieces data;
839   rtx to_addr, from_addr = XEXP (from, 0);
840   unsigned int max_size = MOVE_MAX_PIECES + 1;
841   enum machine_mode mode = VOIDmode, tmode;
842   enum insn_code icode;
843
844   align = MIN (to ? MEM_ALIGN (to) : align, MEM_ALIGN (from));
845
846   data.offset = 0;
847   data.from_addr = from_addr;
848   if (to)
849     {
850       to_addr = XEXP (to, 0);
851       data.to = to;
852       data.autinc_to
853         = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
854            || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
855       data.reverse
856         = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
857     }
858   else
859     {
860       to_addr = NULL_RTX;
861       data.to = NULL_RTX;
862       data.autinc_to = 1;
863 #ifdef STACK_GROWS_DOWNWARD
864       data.reverse = 1;
865 #else
866       data.reverse = 0;
867 #endif
868     }
869   data.to_addr = to_addr;
870   data.from = from;
871   data.autinc_from
872     = (GET_CODE (from_addr) == PRE_INC || GET_CODE (from_addr) == PRE_DEC
873        || GET_CODE (from_addr) == POST_INC
874        || GET_CODE (from_addr) == POST_DEC);
875
876   data.explicit_inc_from = 0;
877   data.explicit_inc_to = 0;
878   if (data.reverse) data.offset = len;
879   data.len = len;
880
881   /* If copying requires more than two move insns,
882      copy addresses to registers (to make displacements shorter)
883      and use post-increment if available.  */
884   if (!(data.autinc_from && data.autinc_to)
885       && move_by_pieces_ninsns (len, align, max_size) > 2)
886     {
887       /* Find the mode of the largest move...  */
888       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
889            tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
890         if (GET_MODE_SIZE (tmode) < max_size)
891           mode = tmode;
892
893       if (USE_LOAD_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_from)
894         {
895           data.from_addr = copy_addr_to_reg (plus_constant (from_addr, len));
896           data.autinc_from = 1;
897           data.explicit_inc_from = -1;
898         }
899       if (USE_LOAD_POST_INCREMENT (mode) && ! data.autinc_from)
900         {
901           data.from_addr = copy_addr_to_reg (from_addr);
902           data.autinc_from = 1;
903           data.explicit_inc_from = 1;
904         }
905       if (!data.autinc_from && CONSTANT_P (from_addr))
906         data.from_addr = copy_addr_to_reg (from_addr);
907       if (USE_STORE_PRE_DECREMENT (mode) && data.reverse && ! data.autinc_to)
908         {
909           data.to_addr = copy_addr_to_reg (plus_constant (to_addr, len));
910           data.autinc_to = 1;
911           data.explicit_inc_to = -1;
912         }
913       if (USE_STORE_POST_INCREMENT (mode) && ! data.reverse && ! data.autinc_to)
914         {
915           data.to_addr = copy_addr_to_reg (to_addr);
916           data.autinc_to = 1;
917           data.explicit_inc_to = 1;
918         }
919       if (!data.autinc_to && CONSTANT_P (to_addr))
920         data.to_addr = copy_addr_to_reg (to_addr);
921     }
922
923   tmode = mode_for_size (MOVE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
924   if (align >= GET_MODE_ALIGNMENT (tmode))
925     align = GET_MODE_ALIGNMENT (tmode);
926   else
927     {
928       enum machine_mode xmode;
929
930       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
931            tmode != VOIDmode;
932            xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
933         if (GET_MODE_SIZE (tmode) > MOVE_MAX_PIECES
934             || SLOW_UNALIGNED_ACCESS (tmode, align))
935           break;
936
937       align = MAX (align, GET_MODE_ALIGNMENT (xmode));
938     }
939
940   /* First move what we can in the largest integer mode, then go to
941      successively smaller modes.  */
942
943   while (max_size > 1)
944     {
945       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
946            tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
947         if (GET_MODE_SIZE (tmode) < max_size)
948           mode = tmode;
949
950       if (mode == VOIDmode)
951         break;
952
953       icode = mov_optab->handlers[(int) mode].insn_code;
954       if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
955         move_by_pieces_1 (GEN_FCN (icode), mode, &data);
956
957       max_size = GET_MODE_SIZE (mode);
958     }
959
960   /* The code above should have handled everything.  */
961   gcc_assert (!data.len);
962
963   if (endp)
964     {
965       rtx to1;
966
967       gcc_assert (!data.reverse);
968       if (data.autinc_to)
969         {
970           if (endp == 2)
971             {
972               if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
973                 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
974               else
975                 data.to_addr = copy_addr_to_reg (plus_constant (data.to_addr,
976                                                                 -1));
977             }
978           to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
979                                            data.offset);
980         }
981       else
982         {
983           if (endp == 2)
984             --data.offset;
985           to1 = adjust_address (data.to, QImode, data.offset);
986         }
987       return to1;
988     }
989   else
990     return data.to;
991 }
992
993 /* Return number of insns required to move L bytes by pieces.
994    ALIGN (in bits) is maximum alignment we can assume.  */
995
996 static unsigned HOST_WIDE_INT
997 move_by_pieces_ninsns (unsigned HOST_WIDE_INT l, unsigned int align,
998                        unsigned int max_size)
999 {
1000   unsigned HOST_WIDE_INT n_insns = 0;
1001   enum machine_mode tmode;
1002
1003   tmode = mode_for_size (MOVE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
1004   if (align >= GET_MODE_ALIGNMENT (tmode))
1005     align = GET_MODE_ALIGNMENT (tmode);
1006   else
1007     {
1008       enum machine_mode tmode, xmode;
1009
1010       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
1011            tmode != VOIDmode;
1012            xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
1013         if (GET_MODE_SIZE (tmode) > MOVE_MAX_PIECES
1014             || SLOW_UNALIGNED_ACCESS (tmode, align))
1015           break;
1016
1017       align = MAX (align, GET_MODE_ALIGNMENT (xmode));
1018     }
1019
1020   while (max_size > 1)
1021     {
1022       enum machine_mode mode = VOIDmode;
1023       enum insn_code icode;
1024
1025       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
1026            tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
1027         if (GET_MODE_SIZE (tmode) < max_size)
1028           mode = tmode;
1029
1030       if (mode == VOIDmode)
1031         break;
1032
1033       icode = mov_optab->handlers[(int) mode].insn_code;
1034       if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
1035         n_insns += l / GET_MODE_SIZE (mode), l %= GET_MODE_SIZE (mode);
1036
1037       max_size = GET_MODE_SIZE (mode);
1038     }
1039
1040   gcc_assert (!l);
1041   return n_insns;
1042 }
1043
1044 /* Subroutine of move_by_pieces.  Move as many bytes as appropriate
1045    with move instructions for mode MODE.  GENFUN is the gen_... function
1046    to make a move insn for that mode.  DATA has all the other info.  */
1047
1048 static void
1049 move_by_pieces_1 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
1050                   struct move_by_pieces *data)
1051 {
1052   unsigned int size = GET_MODE_SIZE (mode);
1053   rtx to1 = NULL_RTX, from1;
1054
1055   while (data->len >= size)
1056     {
1057       if (data->reverse)
1058         data->offset -= size;
1059
1060       if (data->to)
1061         {
1062           if (data->autinc_to)
1063             to1 = adjust_automodify_address (data->to, mode, data->to_addr,
1064                                              data->offset);
1065           else
1066             to1 = adjust_address (data->to, mode, data->offset);
1067         }
1068
1069       if (data->autinc_from)
1070         from1 = adjust_automodify_address (data->from, mode, data->from_addr,
1071                                            data->offset);
1072       else
1073         from1 = adjust_address (data->from, mode, data->offset);
1074
1075       if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
1076         emit_insn (gen_add2_insn (data->to_addr,
1077                                   GEN_INT (-(HOST_WIDE_INT)size)));
1078       if (HAVE_PRE_DECREMENT && data->explicit_inc_from < 0)
1079         emit_insn (gen_add2_insn (data->from_addr,
1080                                   GEN_INT (-(HOST_WIDE_INT)size)));
1081
1082       if (data->to)
1083         emit_insn ((*genfun) (to1, from1));
1084       else
1085         {
1086 #ifdef PUSH_ROUNDING
1087           emit_single_push_insn (mode, from1, NULL);
1088 #else
1089           gcc_unreachable ();
1090 #endif
1091         }
1092
1093       if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
1094         emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
1095       if (HAVE_POST_INCREMENT && data->explicit_inc_from > 0)
1096         emit_insn (gen_add2_insn (data->from_addr, GEN_INT (size)));
1097
1098       if (! data->reverse)
1099         data->offset += size;
1100
1101       data->len -= size;
1102     }
1103 }
1104 \f
1105 /* Emit code to move a block Y to a block X.  This may be done with
1106    string-move instructions, with multiple scalar move instructions,
1107    or with a library call.
1108
1109    Both X and Y must be MEM rtx's (perhaps inside VOLATILE) with mode BLKmode.
1110    SIZE is an rtx that says how long they are.
1111    ALIGN is the maximum alignment we can assume they have.
1112    METHOD describes what kind of copy this is, and what mechanisms may be used.
1113
1114    Return the address of the new block, if memcpy is called and returns it,
1115    0 otherwise.  */
1116
1117 rtx
1118 emit_block_move (rtx x, rtx y, rtx size, enum block_op_methods method)
1119 {
1120   bool may_use_call;
1121   rtx retval = 0;
1122   unsigned int align;
1123
1124   switch (method)
1125     {
1126     case BLOCK_OP_NORMAL:
1127       may_use_call = true;
1128       break;
1129
1130     case BLOCK_OP_CALL_PARM:
1131       may_use_call = block_move_libcall_safe_for_call_parm ();
1132
1133       /* Make inhibit_defer_pop nonzero around the library call
1134          to force it to pop the arguments right away.  */
1135       NO_DEFER_POP;
1136       break;
1137
1138     case BLOCK_OP_NO_LIBCALL:
1139       may_use_call = false;
1140       break;
1141
1142     default:
1143       gcc_unreachable ();
1144     }
1145
1146   align = MIN (MEM_ALIGN (x), MEM_ALIGN (y));
1147
1148   gcc_assert (MEM_P (x));
1149   gcc_assert (MEM_P (y));
1150   gcc_assert (size);
1151
1152   /* Make sure we've got BLKmode addresses; store_one_arg can decide that
1153      block copy is more efficient for other large modes, e.g. DCmode.  */
1154   x = adjust_address (x, BLKmode, 0);
1155   y = adjust_address (y, BLKmode, 0);
1156
1157   /* Set MEM_SIZE as appropriate for this block copy.  The main place this
1158      can be incorrect is coming from __builtin_memcpy.  */
1159   if (GET_CODE (size) == CONST_INT)
1160     {
1161       if (INTVAL (size) == 0)
1162         return 0;
1163
1164       x = shallow_copy_rtx (x);
1165       y = shallow_copy_rtx (y);
1166       set_mem_size (x, size);
1167       set_mem_size (y, size);
1168     }
1169
1170   if (GET_CODE (size) == CONST_INT && MOVE_BY_PIECES_P (INTVAL (size), align))
1171     move_by_pieces (x, y, INTVAL (size), align, 0);
1172   else if (emit_block_move_via_movmem (x, y, size, align))
1173     ;
1174   else if (may_use_call)
1175     retval = emit_block_move_via_libcall (x, y, size);
1176   else
1177     emit_block_move_via_loop (x, y, size, align);
1178
1179   if (method == BLOCK_OP_CALL_PARM)
1180     OK_DEFER_POP;
1181
1182   return retval;
1183 }
1184
1185 /* A subroutine of emit_block_move.  Returns true if calling the
1186    block move libcall will not clobber any parameters which may have
1187    already been placed on the stack.  */
1188
1189 static bool
1190 block_move_libcall_safe_for_call_parm (void)
1191 {
1192   /* If arguments are pushed on the stack, then they're safe.  */
1193   if (PUSH_ARGS)
1194     return true;
1195
1196   /* If registers go on the stack anyway, any argument is sure to clobber
1197      an outgoing argument.  */
1198 #if defined (REG_PARM_STACK_SPACE) && defined (OUTGOING_REG_PARM_STACK_SPACE)
1199   {
1200     tree fn = emit_block_move_libcall_fn (false);
1201     (void) fn;
1202     if (REG_PARM_STACK_SPACE (fn) != 0)
1203       return false;
1204   }
1205 #endif
1206
1207   /* If any argument goes in memory, then it might clobber an outgoing
1208      argument.  */
1209   {
1210     CUMULATIVE_ARGS args_so_far;
1211     tree fn, arg;
1212
1213     fn = emit_block_move_libcall_fn (false);
1214     INIT_CUMULATIVE_ARGS (args_so_far, TREE_TYPE (fn), NULL_RTX, 0, 3);
1215
1216     arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
1217     for ( ; arg != void_list_node ; arg = TREE_CHAIN (arg))
1218       {
1219         enum machine_mode mode = TYPE_MODE (TREE_VALUE (arg));
1220         rtx tmp = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
1221         if (!tmp || !REG_P (tmp))
1222           return false;
1223         if (FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode,
1224                                         NULL_TREE, 1))
1225           return false;
1226         FUNCTION_ARG_ADVANCE (args_so_far, mode, NULL_TREE, 1);
1227       }
1228   }
1229   return true;
1230 }
1231
1232 /* A subroutine of emit_block_move.  Expand a movmem pattern;
1233    return true if successful.  */
1234
1235 static bool
1236 emit_block_move_via_movmem (rtx x, rtx y, rtx size, unsigned int align)
1237 {
1238   rtx opalign = GEN_INT (align / BITS_PER_UNIT);
1239   int save_volatile_ok = volatile_ok;
1240   enum machine_mode mode;
1241
1242   /* Since this is a move insn, we don't care about volatility.  */
1243   volatile_ok = 1;
1244
1245   /* Try the most limited insn first, because there's no point
1246      including more than one in the machine description unless
1247      the more limited one has some advantage.  */
1248
1249   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
1250        mode = GET_MODE_WIDER_MODE (mode))
1251     {
1252       enum insn_code code = movmem_optab[(int) mode];
1253       insn_operand_predicate_fn pred;
1254
1255       if (code != CODE_FOR_nothing
1256           /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
1257              here because if SIZE is less than the mode mask, as it is
1258              returned by the macro, it will definitely be less than the
1259              actual mode mask.  */
1260           && ((GET_CODE (size) == CONST_INT
1261                && ((unsigned HOST_WIDE_INT) INTVAL (size)
1262                    <= (GET_MODE_MASK (mode) >> 1)))
1263               || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD)
1264           && ((pred = insn_data[(int) code].operand[0].predicate) == 0
1265               || (*pred) (x, BLKmode))
1266           && ((pred = insn_data[(int) code].operand[1].predicate) == 0
1267               || (*pred) (y, BLKmode))
1268           && ((pred = insn_data[(int) code].operand[3].predicate) == 0
1269               || (*pred) (opalign, VOIDmode)))
1270         {
1271           rtx op2;
1272           rtx last = get_last_insn ();
1273           rtx pat;
1274
1275           op2 = convert_to_mode (mode, size, 1);
1276           pred = insn_data[(int) code].operand[2].predicate;
1277           if (pred != 0 && ! (*pred) (op2, mode))
1278             op2 = copy_to_mode_reg (mode, op2);
1279
1280           /* ??? When called via emit_block_move_for_call, it'd be
1281              nice if there were some way to inform the backend, so
1282              that it doesn't fail the expansion because it thinks
1283              emitting the libcall would be more efficient.  */
1284
1285           pat = GEN_FCN ((int) code) (x, y, op2, opalign);
1286           if (pat)
1287             {
1288               emit_insn (pat);
1289               volatile_ok = save_volatile_ok;
1290               return true;
1291             }
1292           else
1293             delete_insns_since (last);
1294         }
1295     }
1296
1297   volatile_ok = save_volatile_ok;
1298   return false;
1299 }
1300
1301 /* A subroutine of emit_block_move.  Expand a call to memcpy.
1302    Return the return value from memcpy, 0 otherwise.  */
1303
1304 static rtx
1305 emit_block_move_via_libcall (rtx dst, rtx src, rtx size)
1306 {
1307   rtx dst_addr, src_addr;
1308   tree call_expr, arg_list, fn, src_tree, dst_tree, size_tree;
1309   enum machine_mode size_mode;
1310   rtx retval;
1311
1312   /* Emit code to copy the addresses of DST and SRC and SIZE into new
1313      pseudos.  We can then place those new pseudos into a VAR_DECL and
1314      use them later.  */
1315
1316   dst_addr = copy_to_mode_reg (Pmode, XEXP (dst, 0));
1317   src_addr = copy_to_mode_reg (Pmode, XEXP (src, 0));
1318
1319   dst_addr = convert_memory_address (ptr_mode, dst_addr);
1320   src_addr = convert_memory_address (ptr_mode, src_addr);
1321
1322   dst_tree = make_tree (ptr_type_node, dst_addr);
1323   src_tree = make_tree (ptr_type_node, src_addr);
1324
1325   size_mode = TYPE_MODE (sizetype);
1326
1327   size = convert_to_mode (size_mode, size, 1);
1328   size = copy_to_mode_reg (size_mode, size);
1329
1330   /* It is incorrect to use the libcall calling conventions to call
1331      memcpy in this context.  This could be a user call to memcpy and
1332      the user may wish to examine the return value from memcpy.  For
1333      targets where libcalls and normal calls have different conventions
1334      for returning pointers, we could end up generating incorrect code.  */
1335
1336   size_tree = make_tree (sizetype, size);
1337
1338   fn = emit_block_move_libcall_fn (true);
1339   arg_list = tree_cons (NULL_TREE, size_tree, NULL_TREE);
1340   arg_list = tree_cons (NULL_TREE, src_tree, arg_list);
1341   arg_list = tree_cons (NULL_TREE, dst_tree, arg_list);
1342
1343   /* Now we have to build up the CALL_EXPR itself.  */
1344   call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
1345   call_expr = build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
1346                       call_expr, arg_list, NULL_TREE);
1347
1348   retval = expand_expr (call_expr, NULL_RTX, VOIDmode, 0);
1349
1350   return retval;
1351 }
1352
1353 /* A subroutine of emit_block_move_via_libcall.  Create the tree node
1354    for the function we use for block copies.  The first time FOR_CALL
1355    is true, we call assemble_external.  */
1356
1357 static GTY(()) tree block_move_fn;
1358
1359 void
1360 init_block_move_fn (const char *asmspec)
1361 {
1362   if (!block_move_fn)
1363     {
1364       tree args, fn;
1365
1366       fn = get_identifier ("memcpy");
1367       args = build_function_type_list (ptr_type_node, ptr_type_node,
1368                                        const_ptr_type_node, sizetype,
1369                                        NULL_TREE);
1370
1371       fn = build_decl (FUNCTION_DECL, fn, args);
1372       DECL_EXTERNAL (fn) = 1;
1373       TREE_PUBLIC (fn) = 1;
1374       DECL_ARTIFICIAL (fn) = 1;
1375       TREE_NOTHROW (fn) = 1;
1376
1377       block_move_fn = fn;
1378     }
1379
1380   if (asmspec)
1381     set_user_assembler_name (block_move_fn, asmspec);
1382 }
1383
1384 static tree
1385 emit_block_move_libcall_fn (int for_call)
1386 {
1387   static bool emitted_extern;
1388
1389   if (!block_move_fn)
1390     init_block_move_fn (NULL);
1391
1392   if (for_call && !emitted_extern)
1393     {
1394       emitted_extern = true;
1395       make_decl_rtl (block_move_fn);
1396       assemble_external (block_move_fn);
1397     }
1398
1399   return block_move_fn;
1400 }
1401
1402 /* A subroutine of emit_block_move.  Copy the data via an explicit
1403    loop.  This is used only when libcalls are forbidden.  */
1404 /* ??? It'd be nice to copy in hunks larger than QImode.  */
1405
1406 static void
1407 emit_block_move_via_loop (rtx x, rtx y, rtx size,
1408                           unsigned int align ATTRIBUTE_UNUSED)
1409 {
1410   rtx cmp_label, top_label, iter, x_addr, y_addr, tmp;
1411   enum machine_mode iter_mode;
1412
1413   iter_mode = GET_MODE (size);
1414   if (iter_mode == VOIDmode)
1415     iter_mode = word_mode;
1416
1417   top_label = gen_label_rtx ();
1418   cmp_label = gen_label_rtx ();
1419   iter = gen_reg_rtx (iter_mode);
1420
1421   emit_move_insn (iter, const0_rtx);
1422
1423   x_addr = force_operand (XEXP (x, 0), NULL_RTX);
1424   y_addr = force_operand (XEXP (y, 0), NULL_RTX);
1425   do_pending_stack_adjust ();
1426
1427   emit_jump (cmp_label);
1428   emit_label (top_label);
1429
1430   tmp = convert_modes (Pmode, iter_mode, iter, true);
1431   x_addr = gen_rtx_PLUS (Pmode, x_addr, tmp);
1432   y_addr = gen_rtx_PLUS (Pmode, y_addr, tmp);
1433   x = change_address (x, QImode, x_addr);
1434   y = change_address (y, QImode, y_addr);
1435
1436   emit_move_insn (x, y);
1437
1438   tmp = expand_simple_binop (iter_mode, PLUS, iter, const1_rtx, iter,
1439                              true, OPTAB_LIB_WIDEN);
1440   if (tmp != iter)
1441     emit_move_insn (iter, tmp);
1442
1443   emit_label (cmp_label);
1444
1445   emit_cmp_and_jump_insns (iter, size, LT, NULL_RTX, iter_mode,
1446                            true, top_label);
1447 }
1448 \f
1449 /* Copy all or part of a value X into registers starting at REGNO.
1450    The number of registers to be filled is NREGS.  */
1451
1452 void
1453 move_block_to_reg (int regno, rtx x, int nregs, enum machine_mode mode)
1454 {
1455   int i;
1456 #ifdef HAVE_load_multiple
1457   rtx pat;
1458   rtx last;
1459 #endif
1460
1461   if (nregs == 0)
1462     return;
1463
1464   if (CONSTANT_P (x) && ! LEGITIMATE_CONSTANT_P (x))
1465     x = validize_mem (force_const_mem (mode, x));
1466
1467   /* See if the machine can do this with a load multiple insn.  */
1468 #ifdef HAVE_load_multiple
1469   if (HAVE_load_multiple)
1470     {
1471       last = get_last_insn ();
1472       pat = gen_load_multiple (gen_rtx_REG (word_mode, regno), x,
1473                                GEN_INT (nregs));
1474       if (pat)
1475         {
1476           emit_insn (pat);
1477           return;
1478         }
1479       else
1480         delete_insns_since (last);
1481     }
1482 #endif
1483
1484   for (i = 0; i < nregs; i++)
1485     emit_move_insn (gen_rtx_REG (word_mode, regno + i),
1486                     operand_subword_force (x, i, mode));
1487 }
1488
1489 /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
1490    The number of registers to be filled is NREGS.  */
1491
1492 void
1493 move_block_from_reg (int regno, rtx x, int nregs)
1494 {
1495   int i;
1496
1497   if (nregs == 0)
1498     return;
1499
1500   /* See if the machine can do this with a store multiple insn.  */
1501 #ifdef HAVE_store_multiple
1502   if (HAVE_store_multiple)
1503     {
1504       rtx last = get_last_insn ();
1505       rtx pat = gen_store_multiple (x, gen_rtx_REG (word_mode, regno),
1506                                     GEN_INT (nregs));
1507       if (pat)
1508         {
1509           emit_insn (pat);
1510           return;
1511         }
1512       else
1513         delete_insns_since (last);
1514     }
1515 #endif
1516
1517   for (i = 0; i < nregs; i++)
1518     {
1519       rtx tem = operand_subword (x, i, 1, BLKmode);
1520
1521       gcc_assert (tem);
1522
1523       emit_move_insn (tem, gen_rtx_REG (word_mode, regno + i));
1524     }
1525 }
1526
1527 /* Generate a PARALLEL rtx for a new non-consecutive group of registers from
1528    ORIG, where ORIG is a non-consecutive group of registers represented by
1529    a PARALLEL.  The clone is identical to the original except in that the
1530    original set of registers is replaced by a new set of pseudo registers.
1531    The new set has the same modes as the original set.  */
1532
1533 rtx
1534 gen_group_rtx (rtx orig)
1535 {
1536   int i, length;
1537   rtx *tmps;
1538
1539   gcc_assert (GET_CODE (orig) == PARALLEL);
1540
1541   length = XVECLEN (orig, 0);
1542   tmps = alloca (sizeof (rtx) * length);
1543
1544   /* Skip a NULL entry in first slot.  */
1545   i = XEXP (XVECEXP (orig, 0, 0), 0) ? 0 : 1;
1546
1547   if (i)
1548     tmps[0] = 0;
1549
1550   for (; i < length; i++)
1551     {
1552       enum machine_mode mode = GET_MODE (XEXP (XVECEXP (orig, 0, i), 0));
1553       rtx offset = XEXP (XVECEXP (orig, 0, i), 1);
1554
1555       tmps[i] = gen_rtx_EXPR_LIST (VOIDmode, gen_reg_rtx (mode), offset);
1556     }
1557
1558   return gen_rtx_PARALLEL (GET_MODE (orig), gen_rtvec_v (length, tmps));
1559 }
1560
1561 /* A subroutine of emit_group_load.  Arguments as for emit_group_load,
1562    except that values are placed in TMPS[i], and must later be moved
1563    into corresponding XEXP (XVECEXP (DST, 0, i), 0) element.  */
1564
1565 static void
1566 emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize)
1567 {
1568   rtx src;
1569   int start, i;
1570   enum machine_mode m = GET_MODE (orig_src);
1571
1572   gcc_assert (GET_CODE (dst) == PARALLEL);
1573
1574   if (m != VOIDmode
1575       && !SCALAR_INT_MODE_P (m)
1576       && !MEM_P (orig_src)
1577       && GET_CODE (orig_src) != CONCAT)
1578     {
1579       enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_src));
1580       if (imode == BLKmode)
1581         src = assign_stack_temp (GET_MODE (orig_src), ssize, 0);
1582       else
1583         src = gen_reg_rtx (imode);
1584       if (imode != BLKmode)
1585         src = gen_lowpart (GET_MODE (orig_src), src);
1586       emit_move_insn (src, orig_src);
1587       /* ...and back again.  */
1588       if (imode != BLKmode)
1589         src = gen_lowpart (imode, src);
1590       emit_group_load_1 (tmps, dst, src, type, ssize);
1591       return;
1592     }
1593
1594   /* Check for a NULL entry, used to indicate that the parameter goes
1595      both on the stack and in registers.  */
1596   if (XEXP (XVECEXP (dst, 0, 0), 0))
1597     start = 0;
1598   else
1599     start = 1;
1600
1601   /* Process the pieces.  */
1602   for (i = start; i < XVECLEN (dst, 0); i++)
1603     {
1604       enum machine_mode mode = GET_MODE (XEXP (XVECEXP (dst, 0, i), 0));
1605       HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (dst, 0, i), 1));
1606       unsigned int bytelen = GET_MODE_SIZE (mode);
1607       int shift = 0;
1608
1609       /* Handle trailing fragments that run over the size of the struct.  */
1610       if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
1611         {
1612           /* Arrange to shift the fragment to where it belongs.
1613              extract_bit_field loads to the lsb of the reg.  */
1614           if (
1615 #ifdef BLOCK_REG_PADDING
1616               BLOCK_REG_PADDING (GET_MODE (orig_src), type, i == start)
1617               == (BYTES_BIG_ENDIAN ? upward : downward)
1618 #else
1619               BYTES_BIG_ENDIAN
1620 #endif
1621               )
1622             shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
1623           bytelen = ssize - bytepos;
1624           gcc_assert (bytelen > 0);
1625         }
1626
1627       /* If we won't be loading directly from memory, protect the real source
1628          from strange tricks we might play; but make sure that the source can
1629          be loaded directly into the destination.  */
1630       src = orig_src;
1631       if (!MEM_P (orig_src)
1632           && (!CONSTANT_P (orig_src)
1633               || (GET_MODE (orig_src) != mode
1634                   && GET_MODE (orig_src) != VOIDmode)))
1635         {
1636           if (GET_MODE (orig_src) == VOIDmode)
1637             src = gen_reg_rtx (mode);
1638           else
1639             src = gen_reg_rtx (GET_MODE (orig_src));
1640
1641           emit_move_insn (src, orig_src);
1642         }
1643
1644       /* Optimize the access just a bit.  */
1645       if (MEM_P (src)
1646           && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (src))
1647               || MEM_ALIGN (src) >= GET_MODE_ALIGNMENT (mode))
1648           && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
1649           && bytelen == GET_MODE_SIZE (mode))
1650         {
1651           tmps[i] = gen_reg_rtx (mode);
1652           emit_move_insn (tmps[i], adjust_address (src, mode, bytepos));
1653         }
1654       else if (COMPLEX_MODE_P (mode)
1655                && GET_MODE (src) == mode
1656                && bytelen == GET_MODE_SIZE (mode))
1657         /* Let emit_move_complex do the bulk of the work.  */
1658         tmps[i] = src;
1659       else if (GET_CODE (src) == CONCAT)
1660         {
1661           unsigned int slen = GET_MODE_SIZE (GET_MODE (src));
1662           unsigned int slen0 = GET_MODE_SIZE (GET_MODE (XEXP (src, 0)));
1663
1664           if ((bytepos == 0 && bytelen == slen0)
1665               || (bytepos != 0 && bytepos + bytelen <= slen))
1666             {
1667               /* The following assumes that the concatenated objects all
1668                  have the same size.  In this case, a simple calculation
1669                  can be used to determine the object and the bit field
1670                  to be extracted.  */
1671               tmps[i] = XEXP (src, bytepos / slen0);
1672               if (! CONSTANT_P (tmps[i])
1673                   && (!REG_P (tmps[i]) || GET_MODE (tmps[i]) != mode))
1674                 tmps[i] = extract_bit_field (tmps[i], bytelen * BITS_PER_UNIT,
1675                                              (bytepos % slen0) * BITS_PER_UNIT,
1676                                              1, NULL_RTX, mode, mode);
1677             }
1678           else
1679             {
1680               rtx mem;
1681
1682               gcc_assert (!bytepos);
1683               mem = assign_stack_temp (GET_MODE (src), slen, 0);
1684               emit_move_insn (mem, src);
1685               tmps[i] = extract_bit_field (mem, bytelen * BITS_PER_UNIT,
1686                                            0, 1, NULL_RTX, mode, mode);
1687             }
1688         }
1689       /* FIXME: A SIMD parallel will eventually lead to a subreg of a
1690          SIMD register, which is currently broken.  While we get GCC
1691          to emit proper RTL for these cases, let's dump to memory.  */
1692       else if (VECTOR_MODE_P (GET_MODE (dst))
1693                && REG_P (src))
1694         {
1695           int slen = GET_MODE_SIZE (GET_MODE (src));
1696           rtx mem;
1697
1698           mem = assign_stack_temp (GET_MODE (src), slen, 0);
1699           emit_move_insn (mem, src);
1700           tmps[i] = adjust_address (mem, mode, (int) bytepos);
1701         }
1702       else if (CONSTANT_P (src) && GET_MODE (dst) != BLKmode
1703                && XVECLEN (dst, 0) > 1)
1704         tmps[i] = simplify_gen_subreg (mode, src, GET_MODE(dst), bytepos);
1705       else if (CONSTANT_P (src)
1706                || (REG_P (src) && GET_MODE (src) == mode))
1707         tmps[i] = src;
1708       else
1709         tmps[i] = extract_bit_field (src, bytelen * BITS_PER_UNIT,
1710                                      bytepos * BITS_PER_UNIT, 1, NULL_RTX,
1711                                      mode, mode);
1712
1713       if (shift)
1714         tmps[i] = expand_shift (LSHIFT_EXPR, mode, tmps[i],
1715                                 build_int_cst (NULL_TREE, shift), tmps[i], 0);
1716     }
1717 }
1718
1719 /* Emit code to move a block SRC of type TYPE to a block DST,
1720    where DST is non-consecutive registers represented by a PARALLEL.
1721    SSIZE represents the total size of block ORIG_SRC in bytes, or -1
1722    if not known.  */
1723
1724 void
1725 emit_group_load (rtx dst, rtx src, tree type, int ssize)
1726 {
1727   rtx *tmps;
1728   int i;
1729
1730   tmps = alloca (sizeof (rtx) * XVECLEN (dst, 0));
1731   emit_group_load_1 (tmps, dst, src, type, ssize);
1732
1733   /* Copy the extracted pieces into the proper (probable) hard regs.  */
1734   for (i = 0; i < XVECLEN (dst, 0); i++)
1735     {
1736       rtx d = XEXP (XVECEXP (dst, 0, i), 0);
1737       if (d == NULL)
1738         continue;
1739       emit_move_insn (d, tmps[i]);
1740     }
1741 }
1742
1743 /* Similar, but load SRC into new pseudos in a format that looks like
1744    PARALLEL.  This can later be fed to emit_group_move to get things
1745    in the right place.  */
1746
1747 rtx
1748 emit_group_load_into_temps (rtx parallel, rtx src, tree type, int ssize)
1749 {
1750   rtvec vec;
1751   int i;
1752
1753   vec = rtvec_alloc (XVECLEN (parallel, 0));
1754   emit_group_load_1 (&RTVEC_ELT (vec, 0), parallel, src, type, ssize);
1755
1756   /* Convert the vector to look just like the original PARALLEL, except
1757      with the computed values.  */
1758   for (i = 0; i < XVECLEN (parallel, 0); i++)
1759     {
1760       rtx e = XVECEXP (parallel, 0, i);
1761       rtx d = XEXP (e, 0);
1762
1763       if (d)
1764         {
1765           d = force_reg (GET_MODE (d), RTVEC_ELT (vec, i));
1766           e = alloc_EXPR_LIST (REG_NOTE_KIND (e), d, XEXP (e, 1));
1767         }
1768       RTVEC_ELT (vec, i) = e;
1769     }
1770
1771   return gen_rtx_PARALLEL (GET_MODE (parallel), vec);
1772 }
1773
1774 /* Emit code to move a block SRC to block DST, where SRC and DST are
1775    non-consecutive groups of registers, each represented by a PARALLEL.  */
1776
1777 void
1778 emit_group_move (rtx dst, rtx src)
1779 {
1780   int i;
1781
1782   gcc_assert (GET_CODE (src) == PARALLEL
1783               && GET_CODE (dst) == PARALLEL
1784               && XVECLEN (src, 0) == XVECLEN (dst, 0));
1785
1786   /* Skip first entry if NULL.  */
1787   for (i = XEXP (XVECEXP (src, 0, 0), 0) ? 0 : 1; i < XVECLEN (src, 0); i++)
1788     emit_move_insn (XEXP (XVECEXP (dst, 0, i), 0),
1789                     XEXP (XVECEXP (src, 0, i), 0));
1790 }
1791
1792 /* Move a group of registers represented by a PARALLEL into pseudos.  */
1793
1794 rtx
1795 emit_group_move_into_temps (rtx src)
1796 {
1797   rtvec vec = rtvec_alloc (XVECLEN (src, 0));
1798   int i;
1799
1800   for (i = 0; i < XVECLEN (src, 0); i++)
1801     {
1802       rtx e = XVECEXP (src, 0, i);
1803       rtx d = XEXP (e, 0);
1804
1805       if (d)
1806         e = alloc_EXPR_LIST (REG_NOTE_KIND (e), copy_to_reg (d), XEXP (e, 1));
1807       RTVEC_ELT (vec, i) = e;
1808     }
1809
1810   return gen_rtx_PARALLEL (GET_MODE (src), vec);
1811 }
1812
1813 /* Emit code to move a block SRC to a block ORIG_DST of type TYPE,
1814    where SRC is non-consecutive registers represented by a PARALLEL.
1815    SSIZE represents the total size of block ORIG_DST, or -1 if not
1816    known.  */
1817
1818 void
1819 emit_group_store (rtx orig_dst, rtx src, tree type ATTRIBUTE_UNUSED, int ssize)
1820 {
1821   rtx *tmps, dst;
1822   int start, i;
1823   enum machine_mode m = GET_MODE (orig_dst);
1824
1825   gcc_assert (GET_CODE (src) == PARALLEL);
1826
1827   if (!SCALAR_INT_MODE_P (m)
1828       && !MEM_P (orig_dst) && GET_CODE (orig_dst) != CONCAT)
1829     {
1830       enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_dst));
1831       if (imode == BLKmode)
1832         dst = assign_stack_temp (GET_MODE (orig_dst), ssize, 0);
1833       else
1834         dst = gen_reg_rtx (imode);
1835       emit_group_store (dst, src, type, ssize);
1836       if (imode != BLKmode)
1837         dst = gen_lowpart (GET_MODE (orig_dst), dst);
1838       emit_move_insn (orig_dst, dst);
1839       return;
1840     }
1841
1842   /* Check for a NULL entry, used to indicate that the parameter goes
1843      both on the stack and in registers.  */
1844   if (XEXP (XVECEXP (src, 0, 0), 0))
1845     start = 0;
1846   else
1847     start = 1;
1848
1849   tmps = alloca (sizeof (rtx) * XVECLEN (src, 0));
1850
1851   /* Copy the (probable) hard regs into pseudos.  */
1852   for (i = start; i < XVECLEN (src, 0); i++)
1853     {
1854       rtx reg = XEXP (XVECEXP (src, 0, i), 0);
1855       tmps[i] = gen_reg_rtx (GET_MODE (reg));
1856       emit_move_insn (tmps[i], reg);
1857     }
1858
1859   /* If we won't be storing directly into memory, protect the real destination
1860      from strange tricks we might play.  */
1861   dst = orig_dst;
1862   if (GET_CODE (dst) == PARALLEL)
1863     {
1864       rtx temp;
1865
1866       /* We can get a PARALLEL dst if there is a conditional expression in
1867          a return statement.  In that case, the dst and src are the same,
1868          so no action is necessary.  */
1869       if (rtx_equal_p (dst, src))
1870         return;
1871
1872       /* It is unclear if we can ever reach here, but we may as well handle
1873          it.  Allocate a temporary, and split this into a store/load to/from
1874          the temporary.  */
1875
1876       temp = assign_stack_temp (GET_MODE (dst), ssize, 0);
1877       emit_group_store (temp, src, type, ssize);
1878       emit_group_load (dst, temp, type, ssize);
1879       return;
1880     }
1881   else if (!MEM_P (dst) && GET_CODE (dst) != CONCAT)
1882     {
1883       dst = gen_reg_rtx (GET_MODE (orig_dst));
1884       /* Make life a bit easier for combine.  */
1885       emit_move_insn (dst, CONST0_RTX (GET_MODE (orig_dst)));
1886     }
1887
1888   /* Process the pieces.  */
1889   for (i = start; i < XVECLEN (src, 0); i++)
1890     {
1891       HOST_WIDE_INT bytepos = INTVAL (XEXP (XVECEXP (src, 0, i), 1));
1892       enum machine_mode mode = GET_MODE (tmps[i]);
1893       unsigned int bytelen = GET_MODE_SIZE (mode);
1894       rtx dest = dst;
1895
1896       /* Handle trailing fragments that run over the size of the struct.  */
1897       if (ssize >= 0 && bytepos + (HOST_WIDE_INT) bytelen > ssize)
1898         {
1899           /* store_bit_field always takes its value from the lsb.
1900              Move the fragment to the lsb if it's not already there.  */
1901           if (
1902 #ifdef BLOCK_REG_PADDING
1903               BLOCK_REG_PADDING (GET_MODE (orig_dst), type, i == start)
1904               == (BYTES_BIG_ENDIAN ? upward : downward)
1905 #else
1906               BYTES_BIG_ENDIAN
1907 #endif
1908               )
1909             {
1910               int shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT;
1911               tmps[i] = expand_shift (RSHIFT_EXPR, mode, tmps[i],
1912                                       build_int_cst (NULL_TREE, shift),
1913                                       tmps[i], 0);
1914             }
1915           bytelen = ssize - bytepos;
1916         }
1917
1918       if (GET_CODE (dst) == CONCAT)
1919         {
1920           if (bytepos + bytelen <= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
1921             dest = XEXP (dst, 0);
1922           else if (bytepos >= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))))
1923             {
1924               bytepos -= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0)));
1925               dest = XEXP (dst, 1);
1926             }
1927           else
1928             {
1929               gcc_assert (bytepos == 0 && XVECLEN (src, 0));
1930               dest = assign_stack_temp (GET_MODE (dest),
1931                                         GET_MODE_SIZE (GET_MODE (dest)), 0);
1932               emit_move_insn (adjust_address (dest, GET_MODE (tmps[i]), bytepos),
1933                               tmps[i]);
1934               dst = dest;
1935               break;
1936             }
1937         }
1938
1939       /* Optimize the access just a bit.  */
1940       if (MEM_P (dest)
1941           && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (dest))
1942               || MEM_ALIGN (dest) >= GET_MODE_ALIGNMENT (mode))
1943           && bytepos * BITS_PER_UNIT % GET_MODE_ALIGNMENT (mode) == 0
1944           && bytelen == GET_MODE_SIZE (mode))
1945         emit_move_insn (adjust_address (dest, mode, bytepos), tmps[i]);
1946       else
1947         store_bit_field (dest, bytelen * BITS_PER_UNIT, bytepos * BITS_PER_UNIT,
1948                          mode, tmps[i]);
1949     }
1950
1951   /* Copy from the pseudo into the (probable) hard reg.  */
1952   if (orig_dst != dst)
1953     emit_move_insn (orig_dst, dst);
1954 }
1955
1956 /* Generate code to copy a BLKmode object of TYPE out of a
1957    set of registers starting with SRCREG into TGTBLK.  If TGTBLK
1958    is null, a stack temporary is created.  TGTBLK is returned.
1959
1960    The purpose of this routine is to handle functions that return
1961    BLKmode structures in registers.  Some machines (the PA for example)
1962    want to return all small structures in registers regardless of the
1963    structure's alignment.  */
1964
1965 rtx
1966 copy_blkmode_from_reg (rtx tgtblk, rtx srcreg, tree type)
1967 {
1968   unsigned HOST_WIDE_INT bytes = int_size_in_bytes (type);
1969   rtx src = NULL, dst = NULL;
1970   unsigned HOST_WIDE_INT bitsize = MIN (TYPE_ALIGN (type), BITS_PER_WORD);
1971   unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0;
1972
1973   if (tgtblk == 0)
1974     {
1975       tgtblk = assign_temp (build_qualified_type (type,
1976                                                   (TYPE_QUALS (type)
1977                                                    | TYPE_QUAL_CONST)),
1978                             0, 1, 1);
1979       preserve_temp_slots (tgtblk);
1980     }
1981
1982   /* This code assumes srcreg is at least a full word.  If it isn't, copy it
1983      into a new pseudo which is a full word.  */
1984
1985   if (GET_MODE (srcreg) != BLKmode
1986       && GET_MODE_SIZE (GET_MODE (srcreg)) < UNITS_PER_WORD)
1987     srcreg = convert_to_mode (word_mode, srcreg, TYPE_UNSIGNED (type));
1988
1989   /* If the structure doesn't take up a whole number of words, see whether
1990      SRCREG is padded on the left or on the right.  If it's on the left,
1991      set PADDING_CORRECTION to the number of bits to skip.
1992
1993      In most ABIs, the structure will be returned at the least end of
1994      the register, which translates to right padding on little-endian
1995      targets and left padding on big-endian targets.  The opposite
1996      holds if the structure is returned at the most significant
1997      end of the register.  */
1998   if (bytes % UNITS_PER_WORD != 0
1999       && (targetm.calls.return_in_msb (type)
2000           ? !BYTES_BIG_ENDIAN
2001           : BYTES_BIG_ENDIAN))
2002     padding_correction
2003       = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD) * BITS_PER_UNIT));
2004
2005   /* Copy the structure BITSIZE bites at a time.
2006
2007      We could probably emit more efficient code for machines which do not use
2008      strict alignment, but it doesn't seem worth the effort at the current
2009      time.  */
2010   for (bitpos = 0, xbitpos = padding_correction;
2011        bitpos < bytes * BITS_PER_UNIT;
2012        bitpos += bitsize, xbitpos += bitsize)
2013     {
2014       /* We need a new source operand each time xbitpos is on a
2015          word boundary and when xbitpos == padding_correction
2016          (the first time through).  */
2017       if (xbitpos % BITS_PER_WORD == 0
2018           || xbitpos == padding_correction)
2019         src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD,
2020                                      GET_MODE (srcreg));
2021
2022       /* We need a new destination operand each time bitpos is on
2023          a word boundary.  */
2024       if (bitpos % BITS_PER_WORD == 0)
2025         dst = operand_subword (tgtblk, bitpos / BITS_PER_WORD, 1, BLKmode);
2026
2027       /* Use xbitpos for the source extraction (right justified) and
2028          xbitpos for the destination store (left justified).  */
2029       store_bit_field (dst, bitsize, bitpos % BITS_PER_WORD, word_mode,
2030                        extract_bit_field (src, bitsize,
2031                                           xbitpos % BITS_PER_WORD, 1,
2032                                           NULL_RTX, word_mode, word_mode));
2033     }
2034
2035   return tgtblk;
2036 }
2037
2038 /* Add a USE expression for REG to the (possibly empty) list pointed
2039    to by CALL_FUSAGE.  REG must denote a hard register.  */
2040
2041 void
2042 use_reg (rtx *call_fusage, rtx reg)
2043 {
2044   gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
2045   
2046   *call_fusage
2047     = gen_rtx_EXPR_LIST (VOIDmode,
2048                          gen_rtx_USE (VOIDmode, reg), *call_fusage);
2049 }
2050
2051 /* Add USE expressions to *CALL_FUSAGE for each of NREGS consecutive regs,
2052    starting at REGNO.  All of these registers must be hard registers.  */
2053
2054 void
2055 use_regs (rtx *call_fusage, int regno, int nregs)
2056 {
2057   int i;
2058
2059   gcc_assert (regno + nregs <= FIRST_PSEUDO_REGISTER);
2060
2061   for (i = 0; i < nregs; i++)
2062     use_reg (call_fusage, regno_reg_rtx[regno + i]);
2063 }
2064
2065 /* Add USE expressions to *CALL_FUSAGE for each REG contained in the
2066    PARALLEL REGS.  This is for calls that pass values in multiple
2067    non-contiguous locations.  The Irix 6 ABI has examples of this.  */
2068
2069 void
2070 use_group_regs (rtx *call_fusage, rtx regs)
2071 {
2072   int i;
2073
2074   for (i = 0; i < XVECLEN (regs, 0); i++)
2075     {
2076       rtx reg = XEXP (XVECEXP (regs, 0, i), 0);
2077
2078       /* A NULL entry means the parameter goes both on the stack and in
2079          registers.  This can also be a MEM for targets that pass values
2080          partially on the stack and partially in registers.  */
2081       if (reg != 0 && REG_P (reg))
2082         use_reg (call_fusage, reg);
2083     }
2084 }
2085 \f
2086
2087 /* Determine whether the LEN bytes generated by CONSTFUN can be
2088    stored to memory using several move instructions.  CONSTFUNDATA is
2089    a pointer which will be passed as argument in every CONSTFUN call.
2090    ALIGN is maximum alignment we can assume.  Return nonzero if a
2091    call to store_by_pieces should succeed.  */
2092
2093 int
2094 can_store_by_pieces (unsigned HOST_WIDE_INT len,
2095                      rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2096                      void *constfundata, unsigned int align)
2097 {
2098   unsigned HOST_WIDE_INT l;
2099   unsigned int max_size;
2100   HOST_WIDE_INT offset = 0;
2101   enum machine_mode mode, tmode;
2102   enum insn_code icode;
2103   int reverse;
2104   rtx cst;
2105
2106   if (len == 0)
2107     return 1;
2108
2109   if (! STORE_BY_PIECES_P (len, align))
2110     return 0;
2111
2112   tmode = mode_for_size (STORE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
2113   if (align >= GET_MODE_ALIGNMENT (tmode))
2114     align = GET_MODE_ALIGNMENT (tmode);
2115   else
2116     {
2117       enum machine_mode xmode;
2118
2119       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
2120            tmode != VOIDmode;
2121            xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
2122         if (GET_MODE_SIZE (tmode) > STORE_MAX_PIECES
2123             || SLOW_UNALIGNED_ACCESS (tmode, align))
2124           break;
2125
2126       align = MAX (align, GET_MODE_ALIGNMENT (xmode));
2127     }
2128
2129   /* We would first store what we can in the largest integer mode, then go to
2130      successively smaller modes.  */
2131
2132   for (reverse = 0;
2133        reverse <= (HAVE_PRE_DECREMENT || HAVE_POST_DECREMENT);
2134        reverse++)
2135     {
2136       l = len;
2137       mode = VOIDmode;
2138       max_size = STORE_MAX_PIECES + 1;
2139       while (max_size > 1)
2140         {
2141           for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2142                tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
2143             if (GET_MODE_SIZE (tmode) < max_size)
2144               mode = tmode;
2145
2146           if (mode == VOIDmode)
2147             break;
2148
2149           icode = mov_optab->handlers[(int) mode].insn_code;
2150           if (icode != CODE_FOR_nothing
2151               && align >= GET_MODE_ALIGNMENT (mode))
2152             {
2153               unsigned int size = GET_MODE_SIZE (mode);
2154
2155               while (l >= size)
2156                 {
2157                   if (reverse)
2158                     offset -= size;
2159
2160                   cst = (*constfun) (constfundata, offset, mode);
2161                   if (!LEGITIMATE_CONSTANT_P (cst))
2162                     return 0;
2163
2164                   if (!reverse)
2165                     offset += size;
2166
2167                   l -= size;
2168                 }
2169             }
2170
2171           max_size = GET_MODE_SIZE (mode);
2172         }
2173
2174       /* The code above should have handled everything.  */
2175       gcc_assert (!l);
2176     }
2177
2178   return 1;
2179 }
2180
2181 /* Generate several move instructions to store LEN bytes generated by
2182    CONSTFUN to block TO.  (A MEM rtx with BLKmode).  CONSTFUNDATA is a
2183    pointer which will be passed as argument in every CONSTFUN call.
2184    ALIGN is maximum alignment we can assume.
2185    If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
2186    mempcpy, and if ENDP is 2 return memory the end minus one byte ala
2187    stpcpy.  */
2188
2189 rtx
2190 store_by_pieces (rtx to, unsigned HOST_WIDE_INT len,
2191                  rtx (*constfun) (void *, HOST_WIDE_INT, enum machine_mode),
2192                  void *constfundata, unsigned int align, int endp)
2193 {
2194   struct store_by_pieces data;
2195
2196   if (len == 0)
2197     {
2198       gcc_assert (endp != 2);
2199       return to;
2200     }
2201
2202   gcc_assert (STORE_BY_PIECES_P (len, align));
2203   data.constfun = constfun;
2204   data.constfundata = constfundata;
2205   data.len = len;
2206   data.to = to;
2207   store_by_pieces_1 (&data, align);
2208   if (endp)
2209     {
2210       rtx to1;
2211
2212       gcc_assert (!data.reverse);
2213       if (data.autinc_to)
2214         {
2215           if (endp == 2)
2216             {
2217               if (HAVE_POST_INCREMENT && data.explicit_inc_to > 0)
2218                 emit_insn (gen_add2_insn (data.to_addr, constm1_rtx));
2219               else
2220                 data.to_addr = copy_addr_to_reg (plus_constant (data.to_addr,
2221                                                                 -1));
2222             }
2223           to1 = adjust_automodify_address (data.to, QImode, data.to_addr,
2224                                            data.offset);
2225         }
2226       else
2227         {
2228           if (endp == 2)
2229             --data.offset;
2230           to1 = adjust_address (data.to, QImode, data.offset);
2231         }
2232       return to1;
2233     }
2234   else
2235     return data.to;
2236 }
2237
2238 /* Generate several move instructions to clear LEN bytes of block TO.  (A MEM
2239    rtx with BLKmode).  ALIGN is maximum alignment we can assume.  */
2240
2241 static void
2242 clear_by_pieces (rtx to, unsigned HOST_WIDE_INT len, unsigned int align)
2243 {
2244   struct store_by_pieces data;
2245
2246   if (len == 0)
2247     return;
2248
2249   data.constfun = clear_by_pieces_1;
2250   data.constfundata = NULL;
2251   data.len = len;
2252   data.to = to;
2253   store_by_pieces_1 (&data, align);
2254 }
2255
2256 /* Callback routine for clear_by_pieces.
2257    Return const0_rtx unconditionally.  */
2258
2259 static rtx
2260 clear_by_pieces_1 (void *data ATTRIBUTE_UNUSED,
2261                    HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
2262                    enum machine_mode mode ATTRIBUTE_UNUSED)
2263 {
2264   return const0_rtx;
2265 }
2266
2267 /* Subroutine of clear_by_pieces and store_by_pieces.
2268    Generate several move instructions to store LEN bytes of block TO.  (A MEM
2269    rtx with BLKmode).  ALIGN is maximum alignment we can assume.  */
2270
2271 static void
2272 store_by_pieces_1 (struct store_by_pieces *data ATTRIBUTE_UNUSED,
2273                    unsigned int align ATTRIBUTE_UNUSED)
2274 {
2275   rtx to_addr = XEXP (data->to, 0);
2276   unsigned int max_size = STORE_MAX_PIECES + 1;
2277   enum machine_mode mode = VOIDmode, tmode;
2278   enum insn_code icode;
2279
2280   data->offset = 0;
2281   data->to_addr = to_addr;
2282   data->autinc_to
2283     = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
2284        || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
2285
2286   data->explicit_inc_to = 0;
2287   data->reverse
2288     = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
2289   if (data->reverse)
2290     data->offset = data->len;
2291
2292   /* If storing requires more than two move insns,
2293      copy addresses to registers (to make displacements shorter)
2294      and use post-increment if available.  */
2295   if (!data->autinc_to
2296       && move_by_pieces_ninsns (data->len, align, max_size) > 2)
2297     {
2298       /* Determine the main mode we'll be using.  */
2299       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2300            tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
2301         if (GET_MODE_SIZE (tmode) < max_size)
2302           mode = tmode;
2303
2304       if (USE_STORE_PRE_DECREMENT (mode) && data->reverse && ! data->autinc_to)
2305         {
2306           data->to_addr = copy_addr_to_reg (plus_constant (to_addr, data->len));
2307           data->autinc_to = 1;
2308           data->explicit_inc_to = -1;
2309         }
2310
2311       if (USE_STORE_POST_INCREMENT (mode) && ! data->reverse
2312           && ! data->autinc_to)
2313         {
2314           data->to_addr = copy_addr_to_reg (to_addr);
2315           data->autinc_to = 1;
2316           data->explicit_inc_to = 1;
2317         }
2318
2319       if ( !data->autinc_to && CONSTANT_P (to_addr))
2320         data->to_addr = copy_addr_to_reg (to_addr);
2321     }
2322
2323   tmode = mode_for_size (STORE_MAX_PIECES * BITS_PER_UNIT, MODE_INT, 1);
2324   if (align >= GET_MODE_ALIGNMENT (tmode))
2325     align = GET_MODE_ALIGNMENT (tmode);
2326   else
2327     {
2328       enum machine_mode xmode;
2329
2330       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT), xmode = tmode;
2331            tmode != VOIDmode;
2332            xmode = tmode, tmode = GET_MODE_WIDER_MODE (tmode))
2333         if (GET_MODE_SIZE (tmode) > STORE_MAX_PIECES
2334             || SLOW_UNALIGNED_ACCESS (tmode, align))
2335           break;
2336
2337       align = MAX (align, GET_MODE_ALIGNMENT (xmode));
2338     }
2339
2340   /* First store what we can in the largest integer mode, then go to
2341      successively smaller modes.  */
2342
2343   while (max_size > 1)
2344     {
2345       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2346            tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
2347         if (GET_MODE_SIZE (tmode) < max_size)
2348           mode = tmode;
2349
2350       if (mode == VOIDmode)
2351         break;
2352
2353       icode = mov_optab->handlers[(int) mode].insn_code;
2354       if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
2355         store_by_pieces_2 (GEN_FCN (icode), mode, data);
2356
2357       max_size = GET_MODE_SIZE (mode);
2358     }
2359
2360   /* The code above should have handled everything.  */
2361   gcc_assert (!data->len);
2362 }
2363
2364 /* Subroutine of store_by_pieces_1.  Store as many bytes as appropriate
2365    with move instructions for mode MODE.  GENFUN is the gen_... function
2366    to make a move insn for that mode.  DATA has all the other info.  */
2367
2368 static void
2369 store_by_pieces_2 (rtx (*genfun) (rtx, ...), enum machine_mode mode,
2370                    struct store_by_pieces *data)
2371 {
2372   unsigned int size = GET_MODE_SIZE (mode);
2373   rtx to1, cst;
2374
2375   while (data->len >= size)
2376     {
2377       if (data->reverse)
2378         data->offset -= size;
2379
2380       if (data->autinc_to)
2381         to1 = adjust_automodify_address (data->to, mode, data->to_addr,
2382                                          data->offset);
2383       else
2384         to1 = adjust_address (data->to, mode, data->offset);
2385
2386       if (HAVE_PRE_DECREMENT && data->explicit_inc_to < 0)
2387         emit_insn (gen_add2_insn (data->to_addr,
2388                                   GEN_INT (-(HOST_WIDE_INT) size)));
2389
2390       cst = (*data->constfun) (data->constfundata, data->offset, mode);
2391       emit_insn ((*genfun) (to1, cst));
2392
2393       if (HAVE_POST_INCREMENT && data->explicit_inc_to > 0)
2394         emit_insn (gen_add2_insn (data->to_addr, GEN_INT (size)));
2395
2396       if (! data->reverse)
2397         data->offset += size;
2398
2399       data->len -= size;
2400     }
2401 }
2402 \f
2403 /* Write zeros through the storage of OBJECT.  If OBJECT has BLKmode, SIZE is
2404    its length in bytes.  */
2405
2406 rtx
2407 clear_storage (rtx object, rtx size)
2408 {
2409   enum machine_mode mode = GET_MODE (object);
2410   unsigned int align;
2411
2412   /* If OBJECT is not BLKmode and SIZE is the same size as its mode,
2413      just move a zero.  Otherwise, do this a piece at a time.  */
2414   if (mode != BLKmode
2415       && GET_CODE (size) == CONST_INT
2416       && INTVAL (size) == (HOST_WIDE_INT) GET_MODE_SIZE (mode))
2417     {
2418       rtx zero = CONST0_RTX (mode);
2419       if (zero != NULL)
2420         {
2421           emit_move_insn (object, zero);
2422           return NULL;
2423         }
2424
2425       if (COMPLEX_MODE_P (mode))
2426         {
2427           zero = CONST0_RTX (GET_MODE_INNER (mode));
2428           if (zero != NULL)
2429             {
2430               write_complex_part (object, zero, 0);
2431               write_complex_part (object, zero, 1);
2432               return NULL;
2433             }
2434         }
2435     }
2436
2437   if (size == const0_rtx)
2438     return NULL;
2439
2440   align = MEM_ALIGN (object);
2441
2442   if (GET_CODE (size) == CONST_INT
2443       && CLEAR_BY_PIECES_P (INTVAL (size), align))
2444     clear_by_pieces (object, INTVAL (size), align);
2445   else if (clear_storage_via_clrmem (object, size, align))
2446     ;
2447   else
2448     return clear_storage_via_libcall (object, size);
2449
2450   return NULL;
2451 }
2452
2453 /* A subroutine of clear_storage.  Expand a clrmem pattern;
2454    return true if successful.  */
2455
2456 static bool
2457 clear_storage_via_clrmem (rtx object, rtx size, unsigned int align)
2458 {
2459   /* Try the most limited insn first, because there's no point
2460      including more than one in the machine description unless
2461      the more limited one has some advantage.  */
2462
2463   rtx opalign = GEN_INT (align / BITS_PER_UNIT);
2464   enum machine_mode mode;
2465
2466   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
2467        mode = GET_MODE_WIDER_MODE (mode))
2468     {
2469       enum insn_code code = clrmem_optab[(int) mode];
2470       insn_operand_predicate_fn pred;
2471
2472       if (code != CODE_FOR_nothing
2473           /* We don't need MODE to be narrower than
2474              BITS_PER_HOST_WIDE_INT here because if SIZE is less than
2475              the mode mask, as it is returned by the macro, it will
2476              definitely be less than the actual mode mask.  */
2477           && ((GET_CODE (size) == CONST_INT
2478                && ((unsigned HOST_WIDE_INT) INTVAL (size)
2479                    <= (GET_MODE_MASK (mode) >> 1)))
2480               || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD)
2481           && ((pred = insn_data[(int) code].operand[0].predicate) == 0
2482               || (*pred) (object, BLKmode))
2483           && ((pred = insn_data[(int) code].operand[2].predicate) == 0
2484               || (*pred) (opalign, VOIDmode)))
2485         {
2486           rtx op1;
2487           rtx last = get_last_insn ();
2488           rtx pat;
2489
2490           op1 = convert_to_mode (mode, size, 1);
2491           pred = insn_data[(int) code].operand[1].predicate;
2492           if (pred != 0 && ! (*pred) (op1, mode))
2493             op1 = copy_to_mode_reg (mode, op1);
2494
2495           pat = GEN_FCN ((int) code) (object, op1, opalign);
2496           if (pat)
2497             {
2498               emit_insn (pat);
2499               return true;
2500             }
2501           else
2502             delete_insns_since (last);
2503         }
2504     }
2505
2506   return false;
2507 }
2508
2509 /* A subroutine of clear_storage.  Expand a call to memset.
2510    Return the return value of memset, 0 otherwise.  */
2511
2512 static rtx
2513 clear_storage_via_libcall (rtx object, rtx size)
2514 {
2515   tree call_expr, arg_list, fn, object_tree, size_tree;
2516   enum machine_mode size_mode;
2517   rtx retval;
2518
2519   /* Emit code to copy OBJECT and SIZE into new pseudos.  We can then
2520      place those into new pseudos into a VAR_DECL and use them later.  */
2521
2522   object = copy_to_mode_reg (Pmode, XEXP (object, 0));
2523
2524   size_mode = TYPE_MODE (sizetype);
2525   size = convert_to_mode (size_mode, size, 1);
2526   size = copy_to_mode_reg (size_mode, size);
2527
2528   /* It is incorrect to use the libcall calling conventions to call
2529      memset in this context.  This could be a user call to memset and
2530      the user may wish to examine the return value from memset.  For
2531      targets where libcalls and normal calls have different conventions
2532      for returning pointers, we could end up generating incorrect code.  */
2533
2534   object_tree = make_tree (ptr_type_node, object);
2535   size_tree = make_tree (sizetype, size);
2536
2537   fn = clear_storage_libcall_fn (true);
2538   arg_list = tree_cons (NULL_TREE, size_tree, NULL_TREE);
2539   arg_list = tree_cons (NULL_TREE, integer_zero_node, arg_list);
2540   arg_list = tree_cons (NULL_TREE, object_tree, arg_list);
2541
2542   /* Now we have to build up the CALL_EXPR itself.  */
2543   call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
2544   call_expr = build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
2545                       call_expr, arg_list, NULL_TREE);
2546
2547   retval = expand_expr (call_expr, NULL_RTX, VOIDmode, 0);
2548
2549   return retval;
2550 }
2551
2552 /* A subroutine of clear_storage_via_libcall.  Create the tree node
2553    for the function we use for block clears.  The first time FOR_CALL
2554    is true, we call assemble_external.  */
2555
2556 static GTY(()) tree block_clear_fn;
2557
2558 void
2559 init_block_clear_fn (const char *asmspec)
2560 {
2561   if (!block_clear_fn)
2562     {
2563       tree fn, args;
2564
2565       fn = get_identifier ("memset");
2566       args = build_function_type_list (ptr_type_node, ptr_type_node,
2567                                        integer_type_node, sizetype,
2568                                        NULL_TREE);
2569
2570       fn = build_decl (FUNCTION_DECL, fn, args);
2571       DECL_EXTERNAL (fn) = 1;
2572       TREE_PUBLIC (fn) = 1;
2573       DECL_ARTIFICIAL (fn) = 1;
2574       TREE_NOTHROW (fn) = 1;
2575
2576       block_clear_fn = fn;
2577     }
2578
2579   if (asmspec)
2580     set_user_assembler_name (block_clear_fn, asmspec);
2581 }
2582
2583 static tree
2584 clear_storage_libcall_fn (int for_call)
2585 {
2586   static bool emitted_extern;
2587
2588   if (!block_clear_fn)
2589     init_block_clear_fn (NULL);
2590
2591   if (for_call && !emitted_extern)
2592     {
2593       emitted_extern = true;
2594       make_decl_rtl (block_clear_fn);
2595       assemble_external (block_clear_fn);
2596     }
2597
2598   return block_clear_fn;
2599 }
2600 \f
2601 /* Write to one of the components of the complex value CPLX.  Write VAL to
2602    the real part if IMAG_P is false, and the imaginary part if its true.  */
2603
2604 static void
2605 write_complex_part (rtx cplx, rtx val, bool imag_p)
2606 {
2607   enum machine_mode cmode;
2608   enum machine_mode imode;
2609   unsigned ibitsize;
2610
2611   if (GET_CODE (cplx) == CONCAT)
2612     {
2613       emit_move_insn (XEXP (cplx, imag_p), val);
2614       return;
2615     }
2616
2617   cmode = GET_MODE (cplx);
2618   imode = GET_MODE_INNER (cmode);
2619   ibitsize = GET_MODE_BITSIZE (imode);
2620
2621   /* If the sub-object is at least word sized, then we know that subregging
2622      will work.  This special case is important, since store_bit_field
2623      wants to operate on integer modes, and there's rarely an OImode to
2624      correspond to TCmode.  */
2625   if (ibitsize >= BITS_PER_WORD
2626       /* For hard regs we have exact predicates.  Assume we can split
2627          the original object if it spans an even number of hard regs.
2628          This special case is important for SCmode on 64-bit platforms
2629          where the natural size of floating-point regs is 32-bit.  */
2630       || (GET_CODE (cplx) == REG
2631           && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2632           && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0)
2633       /* For MEMs we always try to make a "subreg", that is to adjust
2634          the MEM, because store_bit_field may generate overly
2635          convoluted RTL for sub-word fields.  */
2636       || MEM_P (cplx))
2637     {
2638       rtx part = simplify_gen_subreg (imode, cplx, cmode,
2639                                       imag_p ? GET_MODE_SIZE (imode) : 0);
2640       if (part)
2641         {
2642           emit_move_insn (part, val);
2643           return;
2644         }
2645       else
2646         /* simplify_gen_subreg may fail for sub-word MEMs.  */
2647         gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2648     }
2649
2650   store_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0, imode, val);
2651 }
2652
2653 /* Extract one of the components of the complex value CPLX.  Extract the
2654    real part if IMAG_P is false, and the imaginary part if it's true.  */
2655
2656 static rtx
2657 read_complex_part (rtx cplx, bool imag_p)
2658 {
2659   enum machine_mode cmode, imode;
2660   unsigned ibitsize;
2661
2662   if (GET_CODE (cplx) == CONCAT)
2663     return XEXP (cplx, imag_p);
2664
2665   cmode = GET_MODE (cplx);
2666   imode = GET_MODE_INNER (cmode);
2667   ibitsize = GET_MODE_BITSIZE (imode);
2668
2669   /* Special case reads from complex constants that got spilled to memory.  */
2670   if (MEM_P (cplx) && GET_CODE (XEXP (cplx, 0)) == SYMBOL_REF)
2671     {
2672       tree decl = SYMBOL_REF_DECL (XEXP (cplx, 0));
2673       if (decl && TREE_CODE (decl) == COMPLEX_CST)
2674         {
2675           tree part = imag_p ? TREE_IMAGPART (decl) : TREE_REALPART (decl);
2676           if (CONSTANT_CLASS_P (part))
2677             return expand_expr (part, NULL_RTX, imode, EXPAND_NORMAL);
2678         }
2679     }
2680
2681   /* If the sub-object is at least word sized, then we know that subregging
2682      will work.  This special case is important, since extract_bit_field
2683      wants to operate on integer modes, and there's rarely an OImode to
2684      correspond to TCmode.  */
2685   if (ibitsize >= BITS_PER_WORD
2686       /* For hard regs we have exact predicates.  Assume we can split
2687          the original object if it spans an even number of hard regs.
2688          This special case is important for SCmode on 64-bit platforms
2689          where the natural size of floating-point regs is 32-bit.  */
2690       || (GET_CODE (cplx) == REG
2691           && REGNO (cplx) < FIRST_PSEUDO_REGISTER
2692           && hard_regno_nregs[REGNO (cplx)][cmode] % 2 == 0)
2693       /* For MEMs we always try to make a "subreg", that is to adjust
2694          the MEM, because extract_bit_field may generate overly
2695          convoluted RTL for sub-word fields.  */
2696       || MEM_P (cplx))
2697     {
2698       rtx ret = simplify_gen_subreg (imode, cplx, cmode,
2699                                      imag_p ? GET_MODE_SIZE (imode) : 0);
2700       if (ret)
2701         return ret;
2702       else
2703         /* simplify_gen_subreg may fail for sub-word MEMs.  */
2704         gcc_assert (MEM_P (cplx) && ibitsize < BITS_PER_WORD);
2705     }
2706
2707   return extract_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0,
2708                             true, NULL_RTX, imode, imode);
2709 }
2710 \f
2711 /* A subroutine of emit_move_via_alt_mode.  Yet another lowpart generator.
2712    NEW_MODE and OLD_MODE are the same size.  Return NULL if X cannot be
2713    represented in NEW_MODE.  */
2714
2715 static rtx
2716 emit_move_change_mode (enum machine_mode new_mode,
2717                        enum machine_mode old_mode, rtx x)
2718 {
2719   rtx ret;
2720
2721   if (reload_in_progress && MEM_P (x))
2722     {
2723       /* We can't use gen_lowpart here because it may call change_address
2724          which is not appropriate if we were called when a reload was in
2725          progress.  We don't have to worry about changing the address since
2726          the size in bytes is supposed to be the same.  Copy the MEM to
2727          change the mode and move any substitutions from the old MEM to
2728          the new one.  */
2729
2730       ret = adjust_address_nv (x, new_mode, 0);
2731       copy_replacements (x, ret);
2732     }
2733   else
2734     {
2735       /* Note that we do want simplify_subreg's behaviour of validating
2736          that the new mode is ok for a hard register.  If we were to use
2737          simplify_gen_subreg, we would create the subreg, but would
2738          probably run into the target not being able to implement it.  */
2739       ret = simplify_subreg (new_mode, x, old_mode, 0);
2740     }
2741
2742   return ret;
2743 }
2744
2745 /* A subroutine of emit_move_insn_1.  Generate a move from Y into X using
2746    ALT_MODE instead of the operand's natural mode, MODE.  CODE is the insn
2747    code for the move in ALT_MODE, and is known to be valid.  Returns the
2748    instruction emitted, or NULL if X or Y cannot be represented in ALT_MODE.  */
2749
2750 static rtx
2751 emit_move_via_alt_mode (enum machine_mode alt_mode, enum machine_mode mode,
2752                         enum insn_code code, rtx x, rtx y)
2753 {
2754   x = emit_move_change_mode (alt_mode, mode, x);
2755   if (x == NULL_RTX)
2756     return NULL_RTX;
2757   y = emit_move_change_mode (alt_mode, mode, y);
2758   if (y == NULL_RTX)
2759     return NULL_RTX;
2760   return emit_insn (GEN_FCN (code) (x, y));
2761 }
2762
2763 /* A subroutine of emit_move_insn_1.  Generate a move from Y into X using
2764    an integer mode of the same size as MODE.  Returns the instruction
2765    emitted, or NULL if such a move could not be generated.  */
2766
2767 static rtx
2768 emit_move_via_integer (enum machine_mode mode, rtx x, rtx y)
2769 {
2770   enum machine_mode imode;
2771   enum insn_code code;
2772
2773   /* There must exist a mode of the exact size we require.  */
2774   imode = int_mode_for_mode (mode);
2775   if (imode == BLKmode)
2776     return NULL_RTX;
2777
2778   /* The target must support moves in this mode.  */
2779   code = mov_optab->handlers[imode].insn_code;
2780   if (code == CODE_FOR_nothing)
2781     return NULL_RTX;
2782
2783   return emit_move_via_alt_mode (imode, mode, code, x, y);
2784 }
2785
2786 /* A subroutine of emit_move_insn_1.  X is a push_operand in MODE.
2787    Return an equivalent MEM that does not use an auto-increment.  */
2788
2789 static rtx
2790 emit_move_resolve_push (enum machine_mode mode, rtx x)
2791 {
2792   enum rtx_code code = GET_CODE (XEXP (x, 0));
2793   HOST_WIDE_INT adjust;
2794   rtx temp;
2795
2796   adjust = GET_MODE_SIZE (mode);
2797 #ifdef PUSH_ROUNDING
2798   adjust = PUSH_ROUNDING (adjust);
2799 #endif
2800   if (code == PRE_DEC || code == POST_DEC)
2801     adjust = -adjust;
2802
2803   /* Do not use anti_adjust_stack, since we don't want to update
2804      stack_pointer_delta.  */
2805   temp = expand_simple_binop (Pmode, PLUS, stack_pointer_rtx,
2806                               GEN_INT (adjust), stack_pointer_rtx,
2807                               0, OPTAB_LIB_WIDEN);
2808   if (temp != stack_pointer_rtx)
2809     emit_move_insn (stack_pointer_rtx, temp);
2810
2811   switch (code)
2812     {
2813     case PRE_INC:
2814     case PRE_DEC:
2815       temp = stack_pointer_rtx;
2816       break;
2817     case POST_INC:
2818       temp = plus_constant (stack_pointer_rtx, -GET_MODE_SIZE (mode));
2819       break;
2820     case POST_DEC:
2821       temp = plus_constant (stack_pointer_rtx, GET_MODE_SIZE (mode));
2822       break;
2823     default:
2824       gcc_unreachable ();
2825     }
2826
2827   return replace_equiv_address (x, temp);
2828 }
2829
2830 /* A subroutine of emit_move_complex.  Generate a move from Y into X.
2831    X is known to satisfy push_operand, and MODE is known to be complex.
2832    Returns the last instruction emitted.  */
2833
2834 static rtx
2835 emit_move_complex_push (enum machine_mode mode, rtx x, rtx y)
2836 {
2837   enum machine_mode submode = GET_MODE_INNER (mode);
2838   bool imag_first;
2839
2840 #ifdef PUSH_ROUNDING
2841   unsigned int submodesize = GET_MODE_SIZE (submode);
2842
2843   /* In case we output to the stack, but the size is smaller than the
2844      machine can push exactly, we need to use move instructions.  */
2845   if (PUSH_ROUNDING (submodesize) != submodesize)
2846     {
2847       x = emit_move_resolve_push (mode, x);
2848       return emit_move_insn (x, y);
2849     }
2850 #endif
2851
2852   /* Note that the real part always precedes the imag part in memory
2853      regardless of machine's endianness.  */
2854   switch (GET_CODE (XEXP (x, 0)))
2855     {
2856     case PRE_DEC:
2857     case POST_DEC:
2858       imag_first = true;
2859       break;
2860     case PRE_INC:
2861     case POST_INC:
2862       imag_first = false;
2863       break;
2864     default:
2865       gcc_unreachable ();
2866     }
2867
2868   emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
2869                   read_complex_part (y, imag_first));
2870   return emit_move_insn (gen_rtx_MEM (submode, XEXP (x, 0)),
2871                          read_complex_part (y, !imag_first));
2872 }
2873
2874 /* A subroutine of emit_move_insn_1.  Generate a move from Y into X.
2875    MODE is known to be complex.  Returns the last instruction emitted.  */
2876
2877 static rtx
2878 emit_move_complex (enum machine_mode mode, rtx x, rtx y)
2879 {
2880   bool try_int;
2881
2882   /* Need to take special care for pushes, to maintain proper ordering
2883      of the data, and possibly extra padding.  */
2884   if (push_operand (x, mode))
2885     return emit_move_complex_push (mode, x, y);
2886
2887   /* For memory to memory moves, optimial behaviour can be had with the
2888      existing block move logic.  */
2889   if (MEM_P (x) && MEM_P (y))
2890     {
2891       emit_block_move (x, y, GEN_INT (GET_MODE_SIZE (mode)),
2892                        BLOCK_OP_NO_LIBCALL);
2893       return get_last_insn ();
2894     }
2895
2896   /* See if we can coerce the target into moving both values at once.  */
2897
2898   /* Not possible if the values are inherently not adjacent.  */
2899   if (GET_CODE (x) == CONCAT || GET_CODE (y) == CONCAT)
2900     try_int = false;
2901   /* Is possible if both are registers (or subregs of registers).  */
2902   else if (register_operand (x, mode) && register_operand (y, mode))
2903     try_int = true;
2904   /* If one of the operands is a memory, and alignment constraints
2905      are friendly enough, we may be able to do combined memory operations.
2906      We do not attempt this if Y is a constant because that combination is
2907      usually better with the by-parts thing below.  */
2908   else if ((MEM_P (x) ? !CONSTANT_P (y) : MEM_P (y))
2909            && (!STRICT_ALIGNMENT
2910                || get_mode_alignment (mode) == BIGGEST_ALIGNMENT))
2911     try_int = true;
2912   else
2913     try_int = false;
2914
2915   if (try_int)
2916     {
2917       rtx ret = emit_move_via_integer (mode, x, y);
2918       if (ret)
2919         return ret;
2920     }
2921
2922   /* Show the output dies here.  This is necessary for SUBREGs
2923      of pseudos since we cannot track their lifetimes correctly;
2924      hard regs shouldn't appear here except as return values.  */
2925   if (!reload_completed && !reload_in_progress
2926       && REG_P (x) && !reg_overlap_mentioned_p (x, y))
2927     emit_insn (gen_rtx_CLOBBER (VOIDmode, x));
2928
2929   write_complex_part (x, read_complex_part (y, false), false);
2930   write_complex_part (x, read_complex_part (y, true), true);
2931   return get_last_insn ();
2932 }
2933
2934 /* A subroutine of emit_move_insn_1.  Generate a move from Y into X.
2935    MODE is known to be MODE_CC.  Returns the last instruction emitted.  */
2936
2937 static rtx
2938 emit_move_ccmode (enum machine_mode mode, rtx x, rtx y)
2939 {
2940   rtx ret;
2941
2942   /* Assume all MODE_CC modes are equivalent; if we have movcc, use it.  */
2943   if (mode != CCmode)
2944     {
2945       enum insn_code code = mov_optab->handlers[CCmode].insn_code;
2946       if (code != CODE_FOR_nothing)
2947         return emit_move_via_alt_mode (CCmode, mode, code, x, y);
2948     }
2949
2950   /* Otherwise, find the MODE_INT mode of the same width.  */
2951   ret = emit_move_via_integer (mode, x, y);
2952   gcc_assert (ret != NULL);
2953   return ret;
2954 }
2955
2956 /* A subroutine of emit_move_insn_1.  Generate a move from Y into X.
2957    MODE is any multi-word or full-word mode that lacks a move_insn
2958    pattern.  Note that you will get better code if you define such
2959    patterns, even if they must turn into multiple assembler instructions.  */
2960
2961 static rtx
2962 emit_move_multi_word (enum machine_mode mode, rtx x, rtx y)
2963 {
2964   rtx last_insn = 0;
2965   rtx seq, inner;
2966   bool need_clobber;
2967   int i;
2968       
2969   gcc_assert (GET_MODE_SIZE (mode) >= UNITS_PER_WORD);
2970       
2971   /* If X is a push on the stack, do the push now and replace
2972      X with a reference to the stack pointer.  */
2973   if (push_operand (x, mode))
2974     x = emit_move_resolve_push (mode, x);
2975
2976   /* If we are in reload, see if either operand is a MEM whose address
2977      is scheduled for replacement.  */
2978   if (reload_in_progress && MEM_P (x)
2979       && (inner = find_replacement (&XEXP (x, 0))) != XEXP (x, 0))
2980     x = replace_equiv_address_nv (x, inner);
2981   if (reload_in_progress && MEM_P (y)
2982       && (inner = find_replacement (&XEXP (y, 0))) != XEXP (y, 0))
2983     y = replace_equiv_address_nv (y, inner);
2984
2985   start_sequence ();
2986
2987   need_clobber = false;
2988   for (i = 0;
2989        i < (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2990        i++)
2991     {
2992       rtx xpart = operand_subword (x, i, 1, mode);
2993       rtx ypart = operand_subword (y, i, 1, mode);
2994
2995       /* If we can't get a part of Y, put Y into memory if it is a
2996          constant.  Otherwise, force it into a register.  If we still
2997          can't get a part of Y, abort.  */
2998       if (ypart == 0 && CONSTANT_P (y))
2999         {
3000           y = force_const_mem (mode, y);
3001           ypart = operand_subword (y, i, 1, mode);
3002         }
3003       else if (ypart == 0)
3004         ypart = operand_subword_force (y, i, mode);
3005
3006       gcc_assert (xpart && ypart);
3007
3008       need_clobber |= (GET_CODE (xpart) == SUBREG);
3009
3010       last_insn = emit_move_insn (xpart, ypart);
3011     }
3012
3013   seq = get_insns ();
3014   end_sequence ();
3015
3016   /* Show the output dies here.  This is necessary for SUBREGs
3017      of pseudos since we cannot track their lifetimes correctly;
3018      hard regs shouldn't appear here except as return values.
3019      We never want to emit such a clobber after reload.  */
3020   if (x != y
3021       && ! (reload_in_progress || reload_completed)
3022       && need_clobber != 0)
3023     emit_insn (gen_rtx_CLOBBER (VOIDmode, x));
3024
3025   emit_insn (seq);
3026
3027   return last_insn;
3028 }
3029
3030 /* Low level part of emit_move_insn.
3031    Called just like emit_move_insn, but assumes X and Y
3032    are basically valid.  */
3033
3034 rtx
3035 emit_move_insn_1 (rtx x, rtx y)
3036 {
3037   enum machine_mode mode = GET_MODE (x);
3038   enum insn_code code;
3039
3040   gcc_assert ((unsigned int) mode < (unsigned int) MAX_MACHINE_MODE);
3041
3042   code = mov_optab->handlers[mode].insn_code;
3043   if (code != CODE_FOR_nothing)
3044     return emit_insn (GEN_FCN (code) (x, y));
3045
3046   /* Expand complex moves by moving real part and imag part.  */
3047   if (COMPLEX_MODE_P (mode))
3048     return emit_move_complex (mode, x, y);
3049
3050   if (GET_MODE_CLASS (mode) == MODE_CC)
3051     return emit_move_ccmode (mode, x, y);
3052
3053   /* Try using a move pattern for the corresponding integer mode.  This is
3054      only safe when simplify_subreg can convert MODE constants into integer
3055      constants.  At present, it can only do this reliably if the value
3056      fits within a HOST_WIDE_INT.  */
3057   if (!CONSTANT_P (y) || GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
3058     {
3059       rtx ret = emit_move_via_integer (mode, x, y);
3060       if (ret)
3061         return ret;
3062     }
3063
3064   return emit_move_multi_word (mode, x, y);
3065 }
3066
3067 /* Generate code to copy Y into X.
3068    Both Y and X must have the same mode, except that
3069    Y can be a constant with VOIDmode.
3070    This mode cannot be BLKmode; use emit_block_move for that.
3071
3072    Return the last instruction emitted.  */
3073
3074 rtx
3075 emit_move_insn (rtx x, rtx y)
3076 {
3077   enum machine_mode mode = GET_MODE (x);
3078   rtx y_cst = NULL_RTX;
3079   rtx last_insn, set;
3080
3081   gcc_assert (mode != BLKmode
3082               && (GET_MODE (y) == mode || GET_MODE (y) == VOIDmode));
3083
3084   if (CONSTANT_P (y))
3085     {
3086       if (optimize
3087           && SCALAR_FLOAT_MODE_P (GET_MODE (x))
3088           && (last_insn = compress_float_constant (x, y)))
3089         return last_insn;
3090
3091       y_cst = y;
3092
3093       if (!LEGITIMATE_CONSTANT_P (y))
3094         {
3095           y = force_const_mem (mode, y);
3096
3097           /* If the target's cannot_force_const_mem prevented the spill,
3098              assume that the target's move expanders will also take care
3099              of the non-legitimate constant.  */
3100           if (!y)
3101             y = y_cst;
3102         }
3103     }
3104
3105   /* If X or Y are memory references, verify that their addresses are valid
3106      for the machine.  */
3107   if (MEM_P (x)
3108       && ((! memory_address_p (GET_MODE (x), XEXP (x, 0))
3109            && ! push_operand (x, GET_MODE (x)))
3110           || (flag_force_addr
3111               && CONSTANT_ADDRESS_P (XEXP (x, 0)))))
3112     x = validize_mem (x);
3113
3114   if (MEM_P (y)
3115       && (! memory_address_p (GET_MODE (y), XEXP (y, 0))
3116           || (flag_force_addr
3117               && CONSTANT_ADDRESS_P (XEXP (y, 0)))))
3118     y = validize_mem (y);
3119
3120   gcc_assert (mode != BLKmode);
3121
3122   last_insn = emit_move_insn_1 (x, y);
3123
3124   if (y_cst && REG_P (x)
3125       && (set = single_set (last_insn)) != NULL_RTX
3126       && SET_DEST (set) == x
3127       && ! rtx_equal_p (y_cst, SET_SRC (set)))
3128     set_unique_reg_note (last_insn, REG_EQUAL, y_cst);
3129
3130   return last_insn;
3131 }
3132
3133 /* If Y is representable exactly in a narrower mode, and the target can
3134    perform the extension directly from constant or memory, then emit the
3135    move as an extension.  */
3136
3137 static rtx
3138 compress_float_constant (rtx x, rtx y)
3139 {
3140   enum machine_mode dstmode = GET_MODE (x);
3141   enum machine_mode orig_srcmode = GET_MODE (y);
3142   enum machine_mode srcmode;
3143   REAL_VALUE_TYPE r;
3144
3145   REAL_VALUE_FROM_CONST_DOUBLE (r, y);
3146
3147   for (srcmode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_srcmode));
3148        srcmode != orig_srcmode;
3149        srcmode = GET_MODE_WIDER_MODE (srcmode))
3150     {
3151       enum insn_code ic;
3152       rtx trunc_y, last_insn;
3153
3154       /* Skip if the target can't extend this way.  */
3155       ic = can_extend_p (dstmode, srcmode, 0);
3156       if (ic == CODE_FOR_nothing)
3157         continue;
3158
3159       /* Skip if the narrowed value isn't exact.  */
3160       if (! exact_real_truncate (srcmode, &r))
3161         continue;
3162
3163       trunc_y = CONST_DOUBLE_FROM_REAL_VALUE (r, srcmode);
3164
3165       if (LEGITIMATE_CONSTANT_P (trunc_y))
3166         {
3167           /* Skip if the target needs extra instructions to perform
3168              the extension.  */
3169           if (! (*insn_data[ic].operand[1].predicate) (trunc_y, srcmode))
3170             continue;
3171         }
3172       else if (float_extend_from_mem[dstmode][srcmode])
3173         trunc_y = validize_mem (force_const_mem (srcmode, trunc_y));
3174       else
3175         continue;
3176
3177       emit_unop_insn (ic, x, trunc_y, UNKNOWN);
3178       last_insn = get_last_insn ();
3179
3180       if (REG_P (x))
3181         set_unique_reg_note (last_insn, REG_EQUAL, y);
3182
3183       return last_insn;
3184     }
3185
3186   return NULL_RTX;
3187 }
3188 \f
3189 /* Pushing data onto the stack.  */
3190
3191 /* Push a block of length SIZE (perhaps variable)
3192    and return an rtx to address the beginning of the block.
3193    The value may be virtual_outgoing_args_rtx.
3194
3195    EXTRA is the number of bytes of padding to push in addition to SIZE.
3196    BELOW nonzero means this padding comes at low addresses;
3197    otherwise, the padding comes at high addresses.  */
3198
3199 rtx
3200 push_block (rtx size, int extra, int below)
3201 {
3202   rtx temp;
3203
3204   size = convert_modes (Pmode, ptr_mode, size, 1);
3205   if (CONSTANT_P (size))
3206     anti_adjust_stack (plus_constant (size, extra));
3207   else if (REG_P (size) && extra == 0)
3208     anti_adjust_stack (size);
3209   else
3210     {
3211       temp = copy_to_mode_reg (Pmode, size);
3212       if (extra != 0)
3213         temp = expand_binop (Pmode, add_optab, temp, GEN_INT (extra),
3214                              temp, 0, OPTAB_LIB_WIDEN);
3215       anti_adjust_stack (temp);
3216     }
3217
3218 #ifndef STACK_GROWS_DOWNWARD
3219   if (0)
3220 #else
3221   if (1)
3222 #endif
3223     {
3224       temp = virtual_outgoing_args_rtx;
3225       if (extra != 0 && below)
3226         temp = plus_constant (temp, extra);
3227     }
3228   else
3229     {
3230       if (GET_CODE (size) == CONST_INT)
3231         temp = plus_constant (virtual_outgoing_args_rtx,
3232                               -INTVAL (size) - (below ? 0 : extra));
3233       else if (extra != 0 && !below)
3234         temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3235                              negate_rtx (Pmode, plus_constant (size, extra)));
3236       else
3237         temp = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
3238                              negate_rtx (Pmode, size));
3239     }
3240
3241   return memory_address (GET_CLASS_NARROWEST_MODE (MODE_INT), temp);
3242 }
3243
3244 #ifdef PUSH_ROUNDING
3245
3246 /* Emit single push insn.  */
3247
3248 static void
3249 emit_single_push_insn (enum machine_mode mode, rtx x, tree type)
3250 {
3251   rtx dest_addr;
3252   unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode));
3253   rtx dest;
3254   enum insn_code icode;
3255   insn_operand_predicate_fn pred;
3256
3257   stack_pointer_delta += PUSH_ROUNDING (GET_MODE_SIZE (mode));
3258   /* If there is push pattern, use it.  Otherwise try old way of throwing
3259      MEM representing push operation to move expander.  */
3260   icode = push_optab->handlers[(int) mode].insn_code;
3261   if (icode != CODE_FOR_nothing)
3262     {
3263       if (((pred = insn_data[(int) icode].operand[0].predicate)
3264            && !((*pred) (x, mode))))
3265         x = force_reg (mode, x);
3266       emit_insn (GEN_FCN (icode) (x));
3267       return;
3268     }
3269   if (GET_MODE_SIZE (mode) == rounded_size)
3270     dest_addr = gen_rtx_fmt_e (STACK_PUSH_CODE, Pmode, stack_pointer_rtx);
3271   /* If we are to pad downward, adjust the stack pointer first and
3272      then store X into the stack location using an offset.  This is
3273      because emit_move_insn does not know how to pad; it does not have
3274      access to type.  */
3275   else if (FUNCTION_ARG_PADDING (mode, type) == downward)
3276     {
3277       unsigned padding_size = rounded_size - GET_MODE_SIZE (mode);
3278       HOST_WIDE_INT offset;
3279
3280       emit_move_insn (stack_pointer_rtx,
3281                       expand_binop (Pmode,
3282 #ifdef STACK_GROWS_DOWNWARD
3283                                     sub_optab,
3284 #else
3285                                     add_optab,
3286 #endif
3287                                     stack_pointer_rtx,
3288                                     GEN_INT (rounded_size),
3289                                     NULL_RTX, 0, OPTAB_LIB_WIDEN));
3290
3291       offset = (HOST_WIDE_INT) padding_size;
3292 #ifdef STACK_GROWS_DOWNWARD
3293       if (STACK_PUSH_CODE == POST_DEC)
3294         /* We have already decremented the stack pointer, so get the
3295            previous value.  */
3296         offset += (HOST_WIDE_INT) rounded_size;
3297 #else
3298       if (STACK_PUSH_CODE == POST_INC)
3299         /* We have already incremented the stack pointer, so get the
3300            previous value.  */
3301         offset -= (HOST_WIDE_INT) rounded_size;
3302 #endif
3303       dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT (offset));
3304     }
3305   else
3306     {
3307 #ifdef STACK_GROWS_DOWNWARD
3308       /* ??? This seems wrong if STACK_PUSH_CODE == POST_DEC.  */
3309       dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3310                                 GEN_INT (-(HOST_WIDE_INT) rounded_size));
3311 #else
3312       /* ??? This seems wrong if STACK_PUSH_CODE == POST_INC.  */
3313       dest_addr = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
3314                                 GEN_INT (rounded_size));
3315 #endif
3316       dest_addr = gen_rtx_PRE_MODIFY (Pmode, stack_pointer_rtx, dest_addr);
3317     }
3318
3319   dest = gen_rtx_MEM (mode, dest_addr);
3320
3321   if (type != 0)
3322     {
3323       set_mem_attributes (dest, type, 1);
3324
3325       if (flag_optimize_sibling_calls)
3326         /* Function incoming arguments may overlap with sibling call
3327            outgoing arguments and we cannot allow reordering of reads
3328            from function arguments with stores to outgoing arguments
3329            of sibling calls.  */
3330         set_mem_alias_set (dest, 0);
3331     }
3332   emit_move_insn (dest, x);
3333 }
3334 #endif
3335
3336 /* Generate code to push X onto the stack, assuming it has mode MODE and
3337    type TYPE.
3338    MODE is redundant except when X is a CONST_INT (since they don't
3339    carry mode info).
3340    SIZE is an rtx for the size of data to be copied (in bytes),
3341    needed only if X is BLKmode.
3342
3343    ALIGN (in bits) is maximum alignment we can assume.
3344
3345    If PARTIAL and REG are both nonzero, then copy that many of the first
3346    words of X into registers starting with REG, and push the rest of X.
3347    The amount of space pushed is decreased by PARTIAL words,
3348    rounded *down* to a multiple of PARM_BOUNDARY.
3349    REG must be a hard register in this case.
3350    If REG is zero but PARTIAL is not, take any all others actions for an
3351    argument partially in registers, but do not actually load any
3352    registers.
3353
3354    EXTRA is the amount in bytes of extra space to leave next to this arg.
3355    This is ignored if an argument block has already been allocated.
3356
3357    On a machine that lacks real push insns, ARGS_ADDR is the address of
3358    the bottom of the argument block for this call.  We use indexing off there
3359    to store the arg.  On machines with push insns, ARGS_ADDR is 0 when a
3360    argument block has not been preallocated.
3361
3362    ARGS_SO_FAR is the size of args previously pushed for this call.
3363
3364    REG_PARM_STACK_SPACE is nonzero if functions require stack space
3365    for arguments passed in registers.  If nonzero, it will be the number
3366    of bytes required.  */
3367
3368 void
3369 emit_push_insn (rtx x, enum machine_mode mode, tree type, rtx size,
3370                 unsigned int align, int partial, rtx reg, int extra,
3371                 rtx args_addr, rtx args_so_far, int reg_parm_stack_space,
3372                 rtx alignment_pad)
3373 {
3374   rtx xinner;
3375   enum direction stack_direction
3376 #ifdef STACK_GROWS_DOWNWARD
3377     = downward;
3378 #else
3379     = upward;
3380 #endif
3381
3382   /* Decide where to pad the argument: `downward' for below,
3383      `upward' for above, or `none' for don't pad it.
3384      Default is below for small data on big-endian machines; else above.  */
3385   enum direction where_pad = FUNCTION_ARG_PADDING (mode, type);
3386
3387   /* Invert direction if stack is post-decrement.
3388      FIXME: why?  */
3389   if (STACK_PUSH_CODE == POST_DEC)
3390     if (where_pad != none)
3391       where_pad = (where_pad == downward ? upward : downward);
3392
3393   xinner = x;
3394
3395   if (mode == BLKmode)
3396     {
3397       /* Copy a block into the stack, entirely or partially.  */
3398
3399       rtx temp;
3400       int used = partial * UNITS_PER_WORD;
3401       int offset;
3402       int skip;
3403
3404       if (reg && GET_CODE (reg) == PARALLEL)
3405         {
3406           /* Use the size of the elt to compute offset.  */
3407           rtx elt = XEXP (XVECEXP (reg, 0, 0), 0);
3408           used = partial * GET_MODE_SIZE (GET_MODE (elt));
3409           offset = used % (PARM_BOUNDARY / BITS_PER_UNIT);
3410         }
3411       else
3412         offset = used % (PARM_BOUNDARY / BITS_PER_UNIT);
3413
3414       gcc_assert (size);
3415
3416       used -= offset;
3417
3418       /* USED is now the # of bytes we need not copy to the stack
3419          because registers will take care of them.  */
3420
3421       if (partial != 0)
3422         xinner = adjust_address (xinner, BLKmode, used);
3423
3424       /* If the partial register-part of the arg counts in its stack size,
3425          skip the part of stack space corresponding to the registers.
3426          Otherwise, start copying to the beginning of the stack space,
3427          by setting SKIP to 0.  */
3428       skip = (reg_parm_stack_space == 0) ? 0 : used;
3429
3430 #ifdef PUSH_ROUNDING
3431       /* Do it with several push insns if that doesn't take lots of insns
3432          and if there is no difficulty with push insns that skip bytes
3433          on the stack for alignment purposes.  */
3434       if (args_addr == 0
3435           && PUSH_ARGS
3436           && GET_CODE (size) == CONST_INT
3437           && skip == 0
3438           && MEM_ALIGN (xinner) >= align
3439           && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size) - used, align))
3440           /* Here we avoid the case of a structure whose weak alignment
3441              forces many pushes of a small amount of data,
3442              and such small pushes do rounding that causes trouble.  */
3443           && ((! SLOW_UNALIGNED_ACCESS (word_mode, align))
3444               || align >= BIGGEST_ALIGNMENT
3445               || (PUSH_ROUNDING (align / BITS_PER_UNIT)
3446                   == (align / BITS_PER_UNIT)))
3447           && PUSH_ROUNDING (INTVAL (size)) == INTVAL (size))
3448         {
3449           /* Push padding now if padding above and stack grows down,
3450              or if padding below and stack grows up.
3451              But if space already allocated, this has already been done.  */
3452           if (extra && args_addr == 0
3453               && where_pad != none && where_pad != stack_direction)
3454             anti_adjust_stack (GEN_INT (extra));
3455
3456           move_by_pieces (NULL, xinner, INTVAL (size) - used, align, 0);
3457         }
3458       else
3459 #endif /* PUSH_ROUNDING  */
3460         {
3461           rtx target;
3462
3463           /* Otherwise make space on the stack and copy the data
3464              to the address of that space.  */
3465
3466           /* Deduct words put into registers from the size we must copy.  */
3467           if (partial != 0)
3468             {
3469               if (GET_CODE (size) == CONST_INT)
3470                 size = GEN_INT (INTVAL (size) - used);
3471               else
3472                 size = expand_binop (GET_MODE (size), sub_optab, size,
3473                                      GEN_INT (used), NULL_RTX, 0,
3474                                      OPTAB_LIB_WIDEN);
3475             }
3476
3477           /* Get the address of the stack space.
3478              In this case, we do not deal with EXTRA separately.
3479              A single stack adjust will do.  */
3480           if (! args_addr)
3481             {
3482               temp = push_block (size, extra, where_pad == downward);
3483               extra = 0;
3484             }
3485           else if (GET_CODE (args_so_far) == CONST_INT)
3486             temp = memory_address (BLKmode,
3487                                    plus_constant (args_addr,
3488                                                   skip + INTVAL (args_so_far)));
3489           else
3490             temp = memory_address (BLKmode,
3491                                    plus_constant (gen_rtx_PLUS (Pmode,
3492                                                                 args_addr,
3493                                                                 args_so_far),
3494                                                   skip));
3495
3496           if (!ACCUMULATE_OUTGOING_ARGS)
3497             {
3498               /* If the source is referenced relative to the stack pointer,
3499                  copy it to another register to stabilize it.  We do not need
3500                  to do this if we know that we won't be changing sp.  */
3501
3502               if (reg_mentioned_p (virtual_stack_dynamic_rtx, temp)
3503                   || reg_mentioned_p (virtual_outgoing_args_rtx, temp))
3504                 temp = copy_to_reg (temp);
3505             }
3506
3507           target = gen_rtx_MEM (BLKmode, temp);
3508
3509           /* We do *not* set_mem_attributes here, because incoming arguments
3510              may overlap with sibling call outgoing arguments and we cannot
3511              allow reordering of reads from function arguments with stores
3512              to outgoing arguments of sibling calls.  We do, however, want
3513              to record the alignment of the stack slot.  */
3514           /* ALIGN may well be better aligned than TYPE, e.g. due to
3515              PARM_BOUNDARY.  Assume the caller isn't lying.  */
3516           set_mem_align (target, align);
3517
3518           emit_block_move (target, xinner, size, BLOCK_OP_CALL_PARM);
3519         }
3520     }
3521   else if (partial > 0)
3522     {
3523       /* Scalar partly in registers.  */
3524
3525       int size = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
3526       int i;
3527       int not_stack;
3528       /* # words of start of argument
3529          that we must make space for but need not store.  */
3530       int offset = partial % (PARM_BOUNDARY / BITS_PER_WORD);
3531       int args_offset = INTVAL (args_so_far);
3532       int skip;
3533
3534       /* Push padding now if padding above and stack grows down,
3535          or if padding below and stack grows up.
3536          But if space already allocated, this has already been done.  */
3537       if (extra && args_addr == 0
3538           && where_pad != none && where_pad != stack_direction)
3539         anti_adjust_stack (GEN_INT (extra));
3540
3541       /* If we make space by pushing it, we might as well push
3542          the real data.  Otherwise, we can leave OFFSET nonzero
3543          and leave the space uninitialized.  */
3544       if (args_addr == 0)
3545         offset = 0;
3546
3547       /* Now NOT_STACK gets the number of words that we don't need to
3548          allocate on the stack.  */
3549       not_stack = partial - offset;
3550
3551       /* If the partial register-part of the arg counts in its stack size,
3552          skip the part of stack space corresponding to the registers.
3553          Otherwise, start copying to the beginning of the stack space,
3554          by setting SKIP to 0.  */
3555       skip = (reg_parm_stack_space == 0) ? 0 : not_stack;
3556
3557       if (CONSTANT_P (x) && ! LEGITIMATE_CONSTANT_P (x))
3558         x = validize_mem (force_const_mem (mode, x));
3559
3560       /* If X is a hard register in a non-integer mode, copy it into a pseudo;
3561          SUBREGs of such registers are not allowed.  */
3562       if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
3563            && GET_MODE_CLASS (GET_MODE (x)) != MODE_INT))
3564         x = copy_to_reg (x);
3565
3566       /* Loop over all the words allocated on the stack for this arg.  */
3567       /* We can do it by words, because any scalar bigger than a word
3568          has a size a multiple of a word.  */
3569 #ifndef PUSH_ARGS_REVERSED
3570       for (i = not_stack; i < size; i++)
3571 #else
3572       for (i = size - 1; i >= not_stack; i--)
3573 #endif
3574         if (i >= not_stack + offset)
3575           emit_push_insn (operand_subword_force (x, i, mode),
3576                           word_mode, NULL_TREE, NULL_RTX, align, 0, NULL_RTX,
3577                           0, args_addr,
3578                           GEN_INT (args_offset + ((i - not_stack + skip)
3579                                                   * UNITS_PER_WORD)),
3580                           reg_parm_stack_space, alignment_pad);
3581     }
3582   else
3583     {
3584       rtx addr;
3585       rtx dest;
3586
3587       /* Push padding now if padding above and stack grows down,
3588          or if padding below and stack grows up.
3589          But if space already allocated, this has already been done.  */
3590       if (extra && args_addr == 0
3591           && where_pad != none && where_pad != stack_direction)
3592         anti_adjust_stack (GEN_INT (extra));
3593
3594 #ifdef PUSH_ROUNDING
3595       if (args_addr == 0 && PUSH_ARGS)
3596         emit_single_push_insn (mode, x, type);
3597       else
3598 #endif
3599         {
3600           if (GET_CODE (args_so_far) == CONST_INT)
3601             addr
3602               = memory_address (mode,
3603                                 plus_constant (args_addr,
3604                                                INTVAL (args_so_far)));
3605           else
3606             addr = memory_address (mode, gen_rtx_PLUS (Pmode, args_addr,
3607                                                        args_so_far));
3608           dest = gen_rtx_MEM (mode, addr);
3609
3610           /* We do *not* set_mem_attributes here, because incoming arguments
3611              may overlap with sibling call outgoing arguments and we cannot
3612              allow reordering of reads from function arguments with stores
3613              to outgoing arguments of sibling calls.  We do, however, want
3614              to record the alignment of the stack slot.  */
3615           /* ALIGN may well be better aligned than TYPE, e.g. due to
3616              PARM_BOUNDARY.  Assume the caller isn't lying.  */
3617           set_mem_align (dest, align);
3618
3619           emit_move_insn (dest, x);
3620         }
3621     }
3622
3623   /* If part should go in registers, copy that part
3624      into the appropriate registers.  Do this now, at the end,
3625      since mem-to-mem copies above may do function calls.  */
3626   if (partial > 0 && reg != 0)
3627     {
3628       /* Handle calls that pass values in multiple non-contiguous locations.
3629          The Irix 6 ABI has examples of this.  */
3630       if (GET_CODE (reg) == PARALLEL)
3631         emit_group_load (reg, x, type, -1);
3632       else
3633         move_block_to_reg (REGNO (reg), x, partial, mode);
3634     }
3635
3636   if (extra && args_addr == 0 && where_pad == stack_direction)
3637     anti_adjust_stack (GEN_INT (extra));
3638
3639   if (alignment_pad && args_addr == 0)
3640     anti_adjust_stack (alignment_pad);
3641 }
3642 \f
3643 /* Return X if X can be used as a subtarget in a sequence of arithmetic
3644    operations.  */
3645
3646 static rtx
3647 get_subtarget (rtx x)
3648 {
3649   return (optimize
3650           || x == 0
3651            /* Only registers can be subtargets.  */
3652            || !REG_P (x)
3653            /* Don't use hard regs to avoid extending their life.  */
3654            || REGNO (x) < FIRST_PSEUDO_REGISTER
3655           ? 0 : x);
3656 }
3657
3658 /* A subroutine of expand_assignment.  Optimize FIELD op= VAL, where
3659    FIELD is a bitfield.  Returns true if the optimization was successful,
3660    and there's nothing else to do.  */
3661
3662 static bool
3663 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize,
3664                                  unsigned HOST_WIDE_INT bitpos,
3665                                  enum machine_mode mode1, rtx str_rtx,
3666                                  tree to, tree src)
3667 {
3668   enum machine_mode str_mode = GET_MODE (str_rtx);
3669   unsigned int str_bitsize = GET_MODE_BITSIZE (str_mode);
3670   tree op0, op1;
3671   rtx value, result;
3672   optab binop;
3673
3674   if (mode1 != VOIDmode
3675       || bitsize >= BITS_PER_WORD
3676       || str_bitsize > BITS_PER_WORD
3677       || TREE_SIDE_EFFECTS (to)
3678       || TREE_THIS_VOLATILE (to))
3679     return false;
3680
3681   STRIP_NOPS (src);
3682   if (!BINARY_CLASS_P (src)
3683       || TREE_CODE (TREE_TYPE (src)) != INTEGER_TYPE)
3684     return false;
3685
3686   op0 = TREE_OPERAND (src, 0);
3687   op1 = TREE_OPERAND (src, 1);
3688   STRIP_NOPS (op0);
3689
3690   if (!operand_equal_p (to, op0, 0))
3691     return false;
3692
3693   if (MEM_P (str_rtx))
3694     {
3695       unsigned HOST_WIDE_INT offset1;
3696
3697       if (str_bitsize == 0 || str_bitsize > BITS_PER_WORD)
3698         str_mode = word_mode;
3699       str_mode = get_best_mode (bitsize, bitpos,
3700                                 MEM_ALIGN (str_rtx), str_mode, 0);
3701       if (str_mode == VOIDmode)
3702         return false;
3703       str_bitsize = GET_MODE_BITSIZE (str_mode);
3704
3705       offset1 = bitpos;
3706       bitpos %= str_bitsize;
3707       offset1 = (offset1 - bitpos) / BITS_PER_UNIT;
3708       str_rtx = adjust_address (str_rtx, str_mode, offset1);
3709     }
3710   else if (!REG_P (str_rtx) && GET_CODE (str_rtx) != SUBREG)
3711     return false;
3712
3713   /* If the bit field covers the whole REG/MEM, store_field
3714      will likely generate better code.  */
3715   if (bitsize >= str_bitsize)
3716     return false;
3717
3718   /* We can't handle fields split across multiple entities.  */
3719   if (bitpos + bitsize > str_bitsize)
3720     return false;
3721
3722   if (BYTES_BIG_ENDIAN)
3723     bitpos = str_bitsize - bitpos - bitsize;
3724
3725   switch (TREE_CODE (src))
3726     {
3727     case PLUS_EXPR:
3728     case MINUS_EXPR:
3729       /* For now, just optimize the case of the topmost bitfield
3730          where we don't need to do any masking and also
3731          1 bit bitfields where xor can be used.
3732          We might win by one instruction for the other bitfields
3733          too if insv/extv instructions aren't used, so that
3734          can be added later.  */
3735       if (bitpos + bitsize != str_bitsize
3736           && (bitsize != 1 || TREE_CODE (op1) != INTEGER_CST))
3737         break;
3738
3739       value = expand_expr (op1, NULL_RTX, str_mode, 0);
3740       value = convert_modes (str_mode,
3741                              TYPE_MODE (TREE_TYPE (op1)), value,
3742                              TYPE_UNSIGNED (TREE_TYPE (op1)));
3743
3744       /* We may be accessing data outside the field, which means
3745          we can alias adjacent data.  */
3746       if (MEM_P (str_rtx))
3747         {
3748           str_rtx = shallow_copy_rtx (str_rtx);
3749           set_mem_alias_set (str_rtx, 0);
3750           set_mem_expr (str_rtx, 0);
3751         }
3752
3753       binop = TREE_CODE (src) == PLUS_EXPR ? add_optab : sub_optab;
3754       if (bitsize == 1 && bitpos + bitsize != str_bitsize)
3755         {
3756           value = expand_and (str_mode, value, const1_rtx, NULL);
3757           binop = xor_optab;
3758         }
3759       value = expand_shift (LSHIFT_EXPR, str_mode, value,
3760                             build_int_cst (NULL_TREE, bitpos),
3761                             NULL_RTX, 1);
3762       result = expand_binop (str_mode, binop, str_rtx,
3763                              value, str_rtx, 1, OPTAB_WIDEN);
3764       if (result != str_rtx)
3765         emit_move_insn (str_rtx, result);
3766       return true;
3767
3768     default:
3769       break;
3770     }
3771
3772   return false;
3773 }
3774
3775
3776 /* Expand an assignment that stores the value of FROM into TO.  */
3777
3778 void
3779 expand_assignment (tree to, tree from)
3780 {
3781   rtx to_rtx = 0;
3782   rtx result;
3783
3784   /* Don't crash if the lhs of the assignment was erroneous.  */
3785
3786   if (TREE_CODE (to) == ERROR_MARK)
3787     {
3788       result = expand_expr (from, NULL_RTX, VOIDmode, 0);
3789       return;
3790     }
3791
3792   /* Assignment of a structure component needs special treatment
3793      if the structure component's rtx is not simply a MEM.
3794      Assignment of an array element at a constant index, and assignment of
3795      an array element in an unaligned packed structure field, has the same
3796      problem.  */
3797   if (handled_component_p (to)
3798       || TREE_CODE (TREE_TYPE (to)) == ARRAY_TYPE)
3799     {
3800       enum machine_mode mode1;
3801       HOST_WIDE_INT bitsize, bitpos;
3802       rtx orig_to_rtx;
3803       tree offset;
3804       int unsignedp;
3805       int volatilep = 0;
3806       tree tem;
3807
3808       push_temp_slots ();
3809       tem = get_inner_reference (to, &bitsize, &bitpos, &offset, &mode1,
3810                                  &unsignedp, &volatilep, true);
3811
3812       /* If we are going to use store_bit_field and extract_bit_field,
3813          make sure to_rtx will be safe for multiple use.  */
3814
3815       orig_to_rtx = to_rtx = expand_expr (tem, NULL_RTX, VOIDmode, 0);
3816
3817       if (offset != 0)
3818         {
3819           rtx offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode, EXPAND_SUM);
3820
3821           gcc_assert (MEM_P (to_rtx));
3822
3823 #ifdef POINTERS_EXTEND_UNSIGNED
3824           if (GET_MODE (offset_rtx) != Pmode)
3825             offset_rtx = convert_to_mode (Pmode, offset_rtx, 0);
3826 #else
3827           if (GET_MODE (offset_rtx) != ptr_mode)
3828             offset_rtx = convert_to_mode (ptr_mode, offset_rtx, 0);
3829 #endif
3830
3831           /* A constant address in TO_RTX can have VOIDmode, we must not try
3832              to call force_reg for that case.  Avoid that case.  */
3833           if (MEM_P (to_rtx)
3834               && GET_MODE (to_rtx) == BLKmode
3835               && GET_MODE (XEXP (to_rtx, 0)) != VOIDmode
3836               && bitsize > 0
3837               && (bitpos % bitsize) == 0
3838               && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
3839               && MEM_ALIGN (to_rtx) == GET_MODE_ALIGNMENT (mode1))
3840             {
3841               to_rtx = adjust_address (to_rtx, mode1, bitpos / BITS_PER_UNIT);
3842               bitpos = 0;
3843             }
3844
3845           to_rtx = offset_address (to_rtx, offset_rtx,
3846                                    highest_pow2_factor_for_target (to,
3847                                                                    offset));
3848         }
3849
3850       /* Handle expand_expr of a complex value returning a CONCAT.  */
3851       if (GET_CODE (to_rtx) == CONCAT)
3852         {
3853           if (TREE_CODE (TREE_TYPE (from)) == COMPLEX_TYPE)
3854             {
3855               gcc_assert (bitpos == 0);
3856               result = store_expr (from, to_rtx, false);
3857             }
3858           else
3859             {
3860               gcc_assert (bitpos == 0 || bitpos == GET_MODE_BITSIZE (mode1));
3861               result = store_expr (from, XEXP (to_rtx, bitpos != 0), false);
3862             }
3863         }
3864       else
3865         {
3866           if (MEM_P (to_rtx))
3867             {
3868               /* If the field is at offset zero, we could have been given the
3869                  DECL_RTX of the parent struct.  Don't munge it.  */
3870               to_rtx = shallow_copy_rtx (to_rtx);
3871
3872               set_mem_attributes_minus_bitpos (to_rtx, to, 0, bitpos);
3873
3874               /* Deal with volatile and readonly fields.  The former is only
3875                  done for MEM.  Also set MEM_KEEP_ALIAS_SET_P if needed.  */
3876               if (volatilep)
3877                 MEM_VOLATILE_P (to_rtx) = 1;
3878               if (component_uses_parent_alias_set (to))
3879                 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
3880             }
3881
3882           if (optimize_bitfield_assignment_op (bitsize, bitpos, mode1,
3883                                                to_rtx, to, from))
3884             result = NULL;
3885           else
3886             result = store_field (to_rtx, bitsize, bitpos, mode1, from,
3887                                   TREE_TYPE (tem), get_alias_set (to));
3888         }
3889
3890       if (result)
3891         preserve_temp_slots (result);
3892       free_temp_slots ();
3893       pop_temp_slots ();
3894       return;
3895     }
3896
3897   /* If the rhs is a function call and its value is not an aggregate,
3898      call the function before we start to compute the lhs.
3899      This is needed for correct code for cases such as
3900      val = setjmp (buf) on machines where reference to val
3901      requires loading up part of an address in a separate insn.
3902
3903      Don't do this if TO is a VAR_DECL or PARM_DECL whose DECL_RTL is REG
3904      since it might be a promoted variable where the zero- or sign- extension
3905      needs to be done.  Handling this in the normal way is safe because no
3906      computation is done before the call.  */
3907   if (TREE_CODE (from) == CALL_EXPR && ! aggregate_value_p (from, from)
3908       && TREE_CODE (TYPE_SIZE (TREE_TYPE (from))) == INTEGER_CST
3909       && ! ((TREE_CODE (to) == VAR_DECL || TREE_CODE (to) == PARM_DECL)
3910             && REG_P (DECL_RTL (to))))
3911     {
3912       rtx value;
3913
3914       push_temp_slots ();
3915       value = expand_expr (from, NULL_RTX, VOIDmode, 0);
3916       if (to_rtx == 0)
3917         to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
3918
3919       /* Handle calls that return values in multiple non-contiguous locations.
3920          The Irix 6 ABI has examples of this.  */
3921       if (GET_CODE (to_rtx) == PARALLEL)
3922         emit_group_load (to_rtx, value, TREE_TYPE (from),
3923                          int_size_in_bytes (TREE_TYPE (from)));
3924       else if (GET_MODE (to_rtx) == BLKmode)
3925         emit_block_move (to_rtx, value, expr_size (from), BLOCK_OP_NORMAL);
3926       else
3927         {
3928           if (POINTER_TYPE_P (TREE_TYPE (to)))
3929             value = convert_memory_address (GET_MODE (to_rtx), value);
3930           emit_move_insn (to_rtx, value);
3931         }
3932       preserve_temp_slots (to_rtx);
3933       free_temp_slots ();
3934       pop_temp_slots ();
3935       return;
3936     }
3937
3938   /* Ordinary treatment.  Expand TO to get a REG or MEM rtx.
3939      Don't re-expand if it was expanded already (in COMPONENT_REF case).  */
3940
3941   if (to_rtx == 0)
3942     to_rtx = expand_expr (to, NULL_RTX, VOIDmode, EXPAND_WRITE);
3943
3944   /* Don't move directly into a return register.  */
3945   if (TREE_CODE (to) == RESULT_DECL
3946       && (REG_P (to_rtx) || GET_CODE (to_rtx) == PARALLEL))
3947     {
3948       rtx temp;
3949
3950       push_temp_slots ();
3951       temp = expand_expr (from, 0, GET_MODE (to_rtx), 0);
3952
3953       if (GET_CODE (to_rtx) == PARALLEL)
3954         emit_group_load (to_rtx, temp, TREE_TYPE (from),
3955                          int_size_in_bytes (TREE_TYPE (from)));
3956       else
3957         emit_move_insn (to_rtx, temp);
3958
3959       preserve_temp_slots (to_rtx);
3960       free_temp_slots ();
3961       pop_temp_slots ();
3962       return;
3963     }
3964
3965   /* In case we are returning the contents of an object which overlaps
3966      the place the value is being stored, use a safe function when copying
3967      a value through a pointer into a structure value return block.  */
3968   if (TREE_CODE (to) == RESULT_DECL && TREE_CODE (from) == INDIRECT_REF
3969       && current_function_returns_struct
3970       && !current_function_returns_pcc_struct)
3971     {
3972       rtx from_rtx, size;
3973
3974       push_temp_slots ();
3975       size = expr_size (from);
3976       from_rtx = expand_expr (from, NULL_RTX, VOIDmode, 0);
3977
3978       emit_library_call (memmove_libfunc, LCT_NORMAL,
3979                          VOIDmode, 3, XEXP (to_rtx, 0), Pmode,
3980                          XEXP (from_rtx, 0), Pmode,
3981                          convert_to_mode (TYPE_MODE (sizetype),
3982                                           size, TYPE_UNSIGNED (sizetype)),
3983                          TYPE_MODE (sizetype));
3984
3985       preserve_temp_slots (to_rtx);
3986       free_temp_slots ();
3987       pop_temp_slots ();
3988       return;
3989     }
3990
3991   /* Compute FROM and store the value in the rtx we got.  */
3992
3993   push_temp_slots ();
3994   result = store_expr (from, to_rtx, 0);
3995   preserve_temp_slots (result);
3996   free_temp_slots ();
3997   pop_temp_slots ();
3998   return;
3999 }
4000
4001 /* Generate code for computing expression EXP,
4002    and storing the value into TARGET.
4003
4004    If the mode is BLKmode then we may return TARGET itself.
4005    It turns out that in BLKmode it doesn't cause a problem.
4006    because C has no operators that could combine two different
4007    assignments into the same BLKmode object with different values
4008    with no sequence point.  Will other languages need this to
4009    be more thorough?
4010
4011    If CALL_PARAM_P is nonzero, this is a store into a call param on the
4012    stack, and block moves may need to be treated specially.  */
4013
4014 rtx
4015 store_expr (tree exp, rtx target, int call_param_p)
4016 {
4017   rtx temp;
4018   rtx alt_rtl = NULL_RTX;
4019   int dont_return_target = 0;
4020
4021   if (VOID_TYPE_P (TREE_TYPE (exp)))
4022     {
4023       /* C++ can generate ?: expressions with a throw expression in one
4024          branch and an rvalue in the other. Here, we resolve attempts to
4025          store the throw expression's nonexistent result.  */
4026       gcc_assert (!call_param_p);
4027       expand_expr (exp, const0_rtx, VOIDmode, 0);
4028       return NULL_RTX;
4029     }
4030   if (TREE_CODE (exp) == COMPOUND_EXPR)
4031     {
4032       /* Perform first part of compound expression, then assign from second
4033          part.  */
4034       expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode,
4035                    call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
4036       return store_expr (TREE_OPERAND (exp, 1), target, call_param_p);
4037     }
4038   else if (TREE_CODE (exp) == COND_EXPR && GET_MODE (target) == BLKmode)
4039     {
4040       /* For conditional expression, get safe form of the target.  Then
4041          test the condition, doing the appropriate assignment on either
4042          side.  This avoids the creation of unnecessary temporaries.
4043          For non-BLKmode, it is more efficient not to do this.  */
4044
4045       rtx lab1 = gen_label_rtx (), lab2 = gen_label_rtx ();
4046
4047       do_pending_stack_adjust ();
4048       NO_DEFER_POP;
4049       jumpifnot (TREE_OPERAND (exp, 0), lab1);
4050       store_expr (TREE_OPERAND (exp, 1), target, call_param_p);
4051       emit_jump_insn (gen_jump (lab2));
4052       emit_barrier ();
4053       emit_label (lab1);
4054       store_expr (TREE_OPERAND (exp, 2), target, call_param_p);
4055       emit_label (lab2);
4056       OK_DEFER_POP;
4057
4058       return NULL_RTX;
4059     }
4060   else if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
4061     /* If this is a scalar in a register that is stored in a wider mode
4062        than the declared mode, compute the result into its declared mode
4063        and then convert to the wider mode.  Our value is the computed
4064        expression.  */
4065     {
4066       rtx inner_target = 0;
4067
4068       /* We can do the conversion inside EXP, which will often result
4069          in some optimizations.  Do the conversion in two steps: first
4070          change the signedness, if needed, then the extend.  But don't
4071          do this if the type of EXP is a subtype of something else
4072          since then the conversion might involve more than just
4073          converting modes.  */
4074       if (INTEGRAL_TYPE_P (TREE_TYPE (exp))
4075           && TREE_TYPE (TREE_TYPE (exp)) == 0
4076           && (!lang_hooks.reduce_bit_field_operations
4077               || (GET_MODE_PRECISION (GET_MODE (target))
4078                   == TYPE_PRECISION (TREE_TYPE (exp)))))
4079         {
4080           if (TYPE_UNSIGNED (TREE_TYPE (exp))
4081               != SUBREG_PROMOTED_UNSIGNED_P (target))
4082             exp = convert
4083               (lang_hooks.types.signed_or_unsigned_type
4084                (SUBREG_PROMOTED_UNSIGNED_P (target), TREE_TYPE (exp)), exp);
4085
4086           exp = convert (lang_hooks.types.type_for_mode
4087                          (GET_MODE (SUBREG_REG (target)),
4088                           SUBREG_PROMOTED_UNSIGNED_P (target)),
4089                          exp);
4090
4091           inner_target = SUBREG_REG (target);
4092         }
4093
4094       temp = expand_expr (exp, inner_target, VOIDmode,
4095                           call_param_p ? EXPAND_STACK_PARM : EXPAND_NORMAL);
4096
4097       /* If TEMP is a VOIDmode constant, use convert_modes to make
4098          sure that we properly convert it.  */
4099       if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
4100         {
4101           temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
4102                                 temp, SUBREG_PROMOTED_UNSIGNED_P (target));
4103           temp = convert_modes (GET_MODE (SUBREG_REG (target)),
4104                                 GET_MODE (target), temp,
4105                                 SUBREG_PROMOTED_UNSIGNED_P (target));
4106         }
4107
4108       convert_move (SUBREG_REG (target), temp,
4109                     SUBREG_PROMOTED_UNSIGNED_P (target));
4110
4111       return NULL_RTX;
4112     }
4113   else
4114     {
4115       temp = expand_expr_real (exp, target, GET_MODE (target),
4116                                (call_param_p
4117                                 ? EXPAND_STACK_PARM : EXPAND_NORMAL),
4118                                &alt_rtl);
4119       /* Return TARGET if it's a specified hardware register.
4120          If TARGET is a volatile mem ref, either return TARGET
4121          or return a reg copied *from* TARGET; ANSI requires this.
4122
4123          Otherwise, if TEMP is not TARGET, return TEMP
4124          if it is constant (for efficiency),
4125          or if we really want the correct value.  */
4126       if (!(target && REG_P (target)
4127             && REGNO (target) < FIRST_PSEUDO_REGISTER)
4128           && !(MEM_P (target) && MEM_VOLATILE_P (target))
4129           && ! rtx_equal_p (temp, target)
4130           && CONSTANT_P (temp))
4131         dont_return_target = 1;
4132     }
4133
4134   /* If TEMP is a VOIDmode constant and the mode of the type of EXP is not
4135      the same as that of TARGET, adjust the constant.  This is needed, for
4136      example, in case it is a CONST_DOUBLE and we want only a word-sized
4137      value.  */
4138   if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode
4139       && TREE_CODE (exp) != ERROR_MARK
4140       && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
4141     temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
4142                           temp, TYPE_UNSIGNED (TREE_TYPE (exp)));
4143
4144   /* If value was not generated in the target, store it there.
4145      Convert the value to TARGET's type first if necessary and emit the
4146      pending incrementations that have been queued when expanding EXP.
4147      Note that we cannot emit the whole queue blindly because this will
4148      effectively disable the POST_INC optimization later.
4149
4150      If TEMP and TARGET compare equal according to rtx_equal_p, but
4151      one or both of them are volatile memory refs, we have to distinguish
4152      two cases:
4153      - expand_expr has used TARGET.  In this case, we must not generate
4154        another copy.  This can be detected by TARGET being equal according
4155        to == .
4156      - expand_expr has not used TARGET - that means that the source just
4157        happens to have the same RTX form.  Since temp will have been created
4158        by expand_expr, it will compare unequal according to == .
4159        We must generate a copy in this case, to reach the correct number
4160        of volatile memory references.  */
4161
4162   if ((! rtx_equal_p (temp, target)
4163        || (temp != target && (side_effects_p (temp)
4164                               || side_effects_p (target))))
4165       && TREE_CODE (exp) != ERROR_MARK
4166       /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET,
4167          but TARGET is not valid memory reference, TEMP will differ
4168          from TARGET although it is really the same location.  */
4169       && !(alt_rtl && rtx_equal_p (alt_rtl, target))
4170       /* If there's nothing to copy, don't bother.  Don't call expr_size
4171          unless necessary, because some front-ends (C++) expr_size-hook
4172          aborts on objects that are not supposed to be bit-copied or
4173          bit-initialized.  */
4174       && expr_size (exp) != const0_rtx)
4175     {
4176       if (GET_MODE (temp) != GET_MODE (target)
4177           && GET_MODE (temp) != VOIDmode)
4178         {
4179           int unsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
4180           if (dont_return_target)
4181             {
4182               /* In this case, we will return TEMP,
4183                  so make sure it has the proper mode.
4184                  But don't forget to store the value into TARGET.  */
4185               temp = convert_to_mode (GET_MODE (target), temp, unsignedp);
4186               emit_move_insn (target, temp);
4187             }
4188           else
4189             convert_move (target, temp, unsignedp);
4190         }
4191
4192       else if (GET_MODE (temp) == BLKmode && TREE_CODE (exp) == STRING_CST)
4193         {
4194           /* Handle copying a string constant into an array.  The string
4195              constant may be shorter than the array.  So copy just the string's
4196              actual length, and clear the rest.  First get the size of the data
4197              type of the string, which is actually the size of the target.  */
4198           rtx size = expr_size (exp);
4199
4200           if (GET_CODE (size) == CONST_INT
4201               && INTVAL (size) < TREE_STRING_LENGTH (exp))
4202             emit_block_move (target, temp, size,
4203                              (call_param_p
4204                               ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4205           else
4206             {
4207               /* Compute the size of the data to copy from the string.  */
4208               tree copy_size
4209                 = size_binop (MIN_EXPR,
4210                               make_tree (sizetype, size),
4211                               size_int (TREE_STRING_LENGTH (exp)));
4212               rtx copy_size_rtx
4213                 = expand_expr (copy_size, NULL_RTX, VOIDmode,
4214                                (call_param_p
4215                                 ? EXPAND_STACK_PARM : EXPAND_NORMAL));
4216               rtx label = 0;
4217
4218               /* Copy that much.  */
4219               copy_size_rtx = convert_to_mode (ptr_mode, copy_size_rtx,
4220                                                TYPE_UNSIGNED (sizetype));
4221               emit_block_move (target, temp, copy_size_rtx,
4222                                (call_param_p
4223                                 ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4224
4225               /* Figure out how much is left in TARGET that we have to clear.
4226                  Do all calculations in ptr_mode.  */
4227               if (GET_CODE (copy_size_rtx) == CONST_INT)
4228                 {
4229                   size = plus_constant (size, -INTVAL (copy_size_rtx));
4230                   target = adjust_address (target, BLKmode,
4231                                            INTVAL (copy_size_rtx));
4232                 }
4233               else
4234                 {
4235                   size = expand_binop (TYPE_MODE (sizetype), sub_optab, size,
4236                                        copy_size_rtx, NULL_RTX, 0,
4237                                        OPTAB_LIB_WIDEN);
4238
4239 #ifdef POINTERS_EXTEND_UNSIGNED
4240                   if (GET_MODE (copy_size_rtx) != Pmode)
4241                     copy_size_rtx = convert_to_mode (Pmode, copy_size_rtx,
4242                                                      TYPE_UNSIGNED (sizetype));
4243 #endif
4244
4245                   target = offset_address (target, copy_size_rtx,
4246                                            highest_pow2_factor (copy_size));
4247                   label = gen_label_rtx ();
4248                   emit_cmp_and_jump_insns (size, const0_rtx, LT, NULL_RTX,
4249                                            GET_MODE (size), 0, label);
4250                 }
4251
4252               if (size != const0_rtx)
4253                 clear_storage (target, size);
4254
4255               if (label)
4256                 emit_label (label);
4257             }
4258         }
4259       /* Handle calls that return values in multiple non-contiguous locations.
4260          The Irix 6 ABI has examples of this.  */
4261       else if (GET_CODE (target) == PARALLEL)
4262         emit_group_load (target, temp, TREE_TYPE (exp),
4263                          int_size_in_bytes (TREE_TYPE (exp)));
4264       else if (GET_MODE (temp) == BLKmode)
4265         emit_block_move (target, temp, expr_size (exp),
4266                          (call_param_p
4267                           ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
4268       else
4269         {
4270           temp = force_operand (temp, target);
4271           if (temp != target)
4272             emit_move_insn (target, temp);
4273         }
4274     }
4275
4276   return NULL_RTX;
4277 }
4278 \f
4279 /* Examine CTOR to discover:
4280    * how many scalar fields are set to nonzero values,
4281      and place it in *P_NZ_ELTS;
4282    * how many scalar fields are set to non-constant values,
4283      and place it in  *P_NC_ELTS; and
4284    * how many scalar fields in total are in CTOR,
4285      and place it in *P_ELT_COUNT.  */
4286
4287 static void
4288 categorize_ctor_elements_1 (tree ctor, HOST_WIDE_INT *p_nz_elts,
4289                             HOST_WIDE_INT *p_nc_elts,
4290                             HOST_WIDE_INT *p_elt_count)
4291 {
4292   HOST_WIDE_INT nz_elts, nc_elts, elt_count;
4293   tree list;
4294
4295   nz_elts = 0;
4296   nc_elts = 0;
4297   elt_count = 0;
4298
4299   for (list = CONSTRUCTOR_ELTS (ctor); list; list = TREE_CHAIN (list))
4300     {
4301       tree value = TREE_VALUE (list);
4302       tree purpose = TREE_PURPOSE (list);
4303       HOST_WIDE_INT mult;
4304
4305       mult = 1;
4306       if (TREE_CODE (purpose) == RANGE_EXPR)
4307         {
4308           tree lo_index = TREE_OPERAND (purpose, 0);
4309           tree hi_index = TREE_OPERAND (purpose, 1);
4310
4311           if (host_integerp (lo_index, 1) && host_integerp (hi_index, 1))
4312             mult = (tree_low_cst (hi_index, 1)
4313                     - tree_low_cst (lo_index, 1) + 1);
4314         }
4315
4316       switch (TREE_CODE (value))
4317         {
4318         case CONSTRUCTOR:
4319           {
4320             HOST_WIDE_INT nz = 0, nc = 0, count = 0;
4321             categorize_ctor_elements_1 (value, &nz, &nc, &count);
4322             nz_elts += mult * nz;
4323             nc_elts += mult * nc;
4324             elt_count += mult * count;
4325           }
4326           break;
4327
4328         case INTEGER_CST:
4329         case REAL_CST:
4330           if (!initializer_zerop (value))
4331             nz_elts += mult;
4332           elt_count += mult;
4333           break;
4334
4335         case STRING_CST:
4336           nz_elts += mult * TREE_STRING_LENGTH (value);
4337           elt_count += mult * TREE_STRING_LENGTH (value);
4338           break;
4339
4340         case COMPLEX_CST:
4341           if (!initializer_zerop (TREE_REALPART (value)))
4342             nz_elts += mult;
4343           if (!initializer_zerop (TREE_IMAGPART (value)))
4344             nz_elts += mult;
4345           elt_count += mult;
4346           break;
4347
4348         case VECTOR_CST:
4349           {
4350             tree v;
4351             for (v = TREE_VECTOR_CST_ELTS (value); v; v = TREE_CHAIN (v))
4352               {
4353                 if (!initializer_zerop (TREE_VALUE (v)))
4354                   nz_elts += mult;
4355                 elt_count += mult;
4356               }
4357           }
4358           break;
4359
4360         default:
4361           nz_elts += mult;
4362           elt_count += mult;
4363           if (!initializer_constant_valid_p (value, TREE_TYPE (value)))
4364             nc_elts += mult;
4365           break;
4366         }
4367     }
4368
4369   *p_nz_elts += nz_elts;
4370   *p_nc_elts += nc_elts;
4371   *p_elt_count += elt_count;
4372 }
4373
4374 void
4375 categorize_ctor_elements (tree ctor, HOST_WIDE_INT *p_nz_elts,
4376                           HOST_WIDE_INT *p_nc_elts,
4377                           HOST_WIDE_INT *p_elt_count)
4378 {
4379   *p_nz_elts = 0;
4380   *p_nc_elts = 0;
4381   *p_elt_count = 0;
4382   categorize_ctor_elements_1 (ctor, p_nz_elts, p_nc_elts, p_elt_count);
4383 }
4384
4385 /* Count the number of scalars in TYPE.  Return -1 on overflow or
4386    variable-sized.  */
4387
4388 HOST_WIDE_INT
4389 count_type_elements (tree type)
4390 {
4391   const HOST_WIDE_INT max = ~((HOST_WIDE_INT)1 << (HOST_BITS_PER_WIDE_INT-1));
4392   switch (TREE_CODE (type))
4393     {
4394     case ARRAY_TYPE:
4395       {
4396         tree telts = array_type_nelts (type);
4397         if (telts && host_integerp (telts, 1))
4398           {
4399             HOST_WIDE_INT n = tree_low_cst (telts, 1) + 1;
4400             HOST_WIDE_INT m = count_type_elements (TREE_TYPE (type));
4401             if (n == 0)
4402               return 0;
4403             else if (max / n > m)
4404               return n * m;
4405           }
4406         return -1;
4407       }
4408
4409     case RECORD_TYPE:
4410       {
4411         HOST_WIDE_INT n = 0, t;
4412         tree f;
4413
4414         for (f = TYPE_FIELDS (type); f ; f = TREE_CHAIN (f))
4415           if (TREE_CODE (f) == FIELD_DECL)
4416             {
4417               t = count_type_elements (TREE_TYPE (f));
4418               if (t < 0)
4419                 return -1;
4420               n += t;
4421             }
4422
4423         return n;
4424       }
4425
4426     case UNION_TYPE:
4427     case QUAL_UNION_TYPE:
4428       {
4429         /* Ho hum.  How in the world do we guess here?  Clearly it isn't
4430            right to count the fields.  Guess based on the number of words.  */
4431         HOST_WIDE_INT n = int_size_in_bytes (type);
4432         if (n < 0)
4433           return -1;
4434         return n / UNITS_PER_WORD;
4435       }
4436
4437     case COMPLEX_TYPE:
4438       return 2;
4439
4440     case VECTOR_TYPE:
4441       return TYPE_VECTOR_SUBPARTS (type);
4442
4443     case INTEGER_TYPE:
4444     case REAL_TYPE:
4445     case ENUMERAL_TYPE:
4446     case BOOLEAN_TYPE:
4447     case CHAR_TYPE:
4448     case POINTER_TYPE:
4449     case OFFSET_TYPE:
4450     case REFERENCE_TYPE:
4451       return 1;
4452
4453     case VOID_TYPE:
4454     case METHOD_TYPE:
4455     case FILE_TYPE:
4456     case FUNCTION_TYPE:
4457     case LANG_TYPE:
4458     default:
4459       gcc_unreachable ();
4460     }
4461 }
4462
4463 /* Return 1 if EXP contains mostly (3/4)  zeros.  */
4464
4465 static int
4466 mostly_zeros_p (tree exp)
4467 {
4468   if (TREE_CODE (exp) == CONSTRUCTOR)
4469
4470     {
4471       HOST_WIDE_INT nz_elts, nc_elts, count, elts;
4472
4473       categorize_ctor_elements (exp, &nz_elts, &nc_elts, &count);
4474       elts = count_type_elements (TREE_TYPE (exp));
4475
4476       return nz_elts < elts / 4;
4477     }
4478
4479   return initializer_zerop (exp);
4480 }
4481 \f
4482 /* Helper function for store_constructor.
4483    TARGET, BITSIZE, BITPOS, MODE, EXP are as for store_field.
4484    TYPE is the type of the CONSTRUCTOR, not the element type.
4485    CLEARED is as for store_constructor.
4486    ALIAS_SET is the alias set to use for any stores.
4487
4488    This provides a recursive shortcut back to store_constructor when it isn't
4489    necessary to go through store_field.  This is so that we can pass through
4490    the cleared field to let store_constructor know that we may not have to
4491    clear a substructure if the outer structure has already been cleared.  */
4492
4493 static void
4494 store_constructor_field (rtx target, unsigned HOST_WIDE_INT bitsize,
4495                          HOST_WIDE_INT bitpos, enum machine_mode mode,
4496                          tree exp, tree type, int cleared, int alias_set)
4497 {
4498   if (TREE_CODE (exp) == CONSTRUCTOR
4499       /* We can only call store_constructor recursively if the size and
4500          bit position are on a byte boundary.  */
4501       && bitpos % BITS_PER_UNIT == 0
4502       && (bitsize > 0 && bitsize % BITS_PER_UNIT == 0)
4503       /* If we have a nonzero bitpos for a register target, then we just
4504          let store_field do the bitfield handling.  This is unlikely to
4505          generate unnecessary clear instructions anyways.  */
4506       && (bitpos == 0 || MEM_P (target)))
4507     {
4508       if (MEM_P (target))
4509         target
4510           = adjust_address (target,
4511                             GET_MODE (target) == BLKmode
4512                             || 0 != (bitpos
4513                                      % GET_MODE_ALIGNMENT (GET_MODE (target)))
4514                             ? BLKmode : VOIDmode, bitpos / BITS_PER_UNIT);
4515
4516
4517       /* Update the alias set, if required.  */
4518       if (MEM_P (target) && ! MEM_KEEP_ALIAS_SET_P (target)
4519           && MEM_ALIAS_SET (target) != 0)
4520         {
4521           target = copy_rtx (target);
4522           set_mem_alias_set (target, alias_set);
4523         }
4524
4525       store_constructor (exp, target, cleared, bitsize / BITS_PER_UNIT);
4526     }
4527   else
4528     store_field (target, bitsize, bitpos, mode, exp, type, alias_set);
4529 }
4530
4531 /* Store the value of constructor EXP into the rtx TARGET.
4532    TARGET is either a REG or a MEM; we know it cannot conflict, since
4533    safe_from_p has been called.
4534    CLEARED is true if TARGET is known to have been zero'd.
4535    SIZE is the number of bytes of TARGET we are allowed to modify: this
4536    may not be the same as the size of EXP if we are assigning to a field
4537    which has been packed to exclude padding bits.  */
4538
4539 static void
4540 store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
4541 {
4542   tree type = TREE_TYPE (exp);
4543 #ifdef WORD_REGISTER_OPERATIONS
4544   HOST_WIDE_INT exp_size = int_size_in_bytes (type);
4545 #endif
4546
4547   switch (TREE_CODE (type))
4548     {
4549     case RECORD_TYPE:
4550     case UNION_TYPE:
4551     case QUAL_UNION_TYPE:
4552       {
4553         tree elt;
4554
4555         /* If size is zero or the target is already cleared, do nothing.  */
4556         if (size == 0 || cleared)
4557           cleared = 1;
4558         /* We either clear the aggregate or indicate the value is dead.  */
4559         else if ((TREE_CODE (type) == UNION_TYPE
4560                   || TREE_CODE (type) == QUAL_UNION_TYPE)
4561                  && ! CONSTRUCTOR_ELTS (exp))
4562           /* If the constructor is empty, clear the union.  */
4563           {
4564             clear_storage (target, expr_size (exp));
4565             cleared = 1;
4566           }
4567
4568         /* If we are building a static constructor into a register,
4569            set the initial value as zero so we can fold the value into
4570            a constant.  But if more than one register is involved,
4571            this probably loses.  */
4572         else if (REG_P (target) && TREE_STATIC (exp)
4573                  && GET_MODE_SIZE (GET_MODE (target)) <= UNITS_PER_WORD)
4574           {
4575             emit_move_insn (target, CONST0_RTX (GET_MODE (target)));
4576             cleared = 1;
4577           }
4578
4579         /* If the constructor has fewer fields than the structure or
4580            if we are initializing the structure to mostly zeros, clear
4581            the whole structure first.  Don't do this if TARGET is a
4582            register whose mode size isn't equal to SIZE since
4583            clear_storage can't handle this case.  */
4584         else if (size > 0
4585                  && ((list_length (CONSTRUCTOR_ELTS (exp))
4586                       != fields_length (type))
4587                      || mostly_zeros_p (exp))
4588                  && (!REG_P (target)
4589                      || ((HOST_WIDE_INT) GET_MODE_SIZE (GET_MODE (target))
4590                          == size)))
4591           {
4592             clear_storage (target, GEN_INT (size));
4593             cleared = 1;
4594           }
4595
4596         if (! cleared)
4597           emit_insn (gen_rtx_CLOBBER (VOIDmode, target));
4598
4599         /* Store each element of the constructor into the
4600            corresponding field of TARGET.  */
4601
4602         for (elt = CONSTRUCTOR_ELTS (exp); elt; elt = TREE_CHAIN (elt))
4603           {
4604             tree field = TREE_PURPOSE (elt);
4605             tree value = TREE_VALUE (elt);
4606             enum machine_mode mode;
4607             HOST_WIDE_INT bitsize;
4608             HOST_WIDE_INT bitpos = 0;
4609             tree offset;
4610             rtx to_rtx = target;
4611             
4612             /* Just ignore missing fields.  We cleared the whole
4613                structure, above, if any fields are missing.  */
4614             if (field == 0)
4615               continue;
4616             
4617             if (cleared && initializer_zerop (value))
4618               continue;
4619             
4620             if (host_integerp (DECL_SIZE (field), 1))
4621               bitsize = tree_low_cst (DECL_SIZE (field), 1);
4622             else
4623               bitsize = -1;
4624             
4625             mode = DECL_MODE (field);
4626             if (DECL_BIT_FIELD (field))
4627               mode = VOIDmode;
4628             
4629             offset = DECL_FIELD_OFFSET (field);
4630             if (host_integerp (offset, 0)
4631                 && host_integerp (bit_position (field), 0))
4632               {
4633                 bitpos = int_bit_position (field);
4634                 offset = 0;
4635               }
4636             else
4637               bitpos = tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 0);
4638             
4639             if (offset)
4640               {
4641                 rtx offset_rtx;
4642                 
4643                 offset
4644                   = SUBSTITUTE_PLACEHOLDER_IN_EXPR (offset,
4645                                                     make_tree (TREE_TYPE (exp),
4646                                                                target));
4647
4648                 offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode, 0);
4649                 gcc_assert (MEM_P (to_rtx));
4650                 
4651 #ifdef POINTERS_EXTEND_UNSIGNED
4652                 if (GET_MODE (offset_rtx) != Pmode)
4653                   offset_rtx = convert_to_mode (Pmode, offset_rtx, 0);
4654 #else
4655                 if (GET_MODE (offset_rtx) != ptr_mode)
4656                   offset_rtx = convert_to_mode (ptr_mode, offset_rtx, 0);
4657 #endif
4658
4659                 to_rtx = offset_address (to_rtx, offset_rtx,
4660                                          highest_pow2_factor (offset));
4661               }
4662
4663 #ifdef WORD_REGISTER_OPERATIONS
4664             /* If this initializes a field that is smaller than a
4665                word, at the start of a word, try to widen it to a full
4666                word.  This special case allows us to output C++ member
4667                function initializations in a form that the optimizers
4668                can understand.  */
4669             if (REG_P (target)
4670                 && bitsize < BITS_PER_WORD
4671                 && bitpos % BITS_PER_WORD == 0
4672                 && GET_MODE_CLASS (mode) == MODE_INT
4673                 && TREE_CODE (value) == INTEGER_CST
4674                 && exp_size >= 0
4675                 && bitpos + BITS_PER_WORD <= exp_size * BITS_PER_UNIT)
4676               {
4677                 tree type = TREE_TYPE (value);
4678                 
4679                 if (TYPE_PRECISION (type) < BITS_PER_WORD)
4680                   {
4681                     type = lang_hooks.types.type_for_size
4682                       (BITS_PER_WORD, TYPE_UNSIGNED (type));
4683                     value = convert (type, value);
4684                   }
4685                 
4686                 if (BYTES_BIG_ENDIAN)
4687                   value
4688                     = fold (build2 (LSHIFT_EXPR, type, value,
4689                                     build_int_cst (NULL_TREE,
4690                                                    BITS_PER_WORD - bitsize)));
4691                 bitsize = BITS_PER_WORD;
4692                 mode = word_mode;
4693               }
4694 #endif
4695
4696             if (MEM_P (to_rtx) && !MEM_KEEP_ALIAS_SET_P (to_rtx)
4697                 && DECL_NONADDRESSABLE_P (field))
4698               {
4699                 to_rtx = copy_rtx (to_rtx);
4700                 MEM_KEEP_ALIAS_SET_P (to_rtx) = 1;
4701               }
4702             
4703             store_constructor_field (to_rtx, bitsize, bitpos, mode,
4704                                      value, type, cleared,
4705                                      get_alias_set (TREE_TYPE (field)));
4706           }
4707         break;
4708       }
4709     case ARRAY_TYPE:
4710       {
4711         tree elt;
4712         int i;
4713         int need_to_clear;
4714         tree domain;
4715         tree elttype = TREE_TYPE (type);
4716         int const_bounds_p;
4717         HOST_WIDE_INT minelt = 0;
4718         HOST_WIDE_INT maxelt = 0;
4719
4720         domain = TYPE_DOMAIN (type);
4721         const_bounds_p = (TYPE_MIN_VALUE (domain)
4722                           && TYPE_MAX_VALUE (domain)
4723                           && host_integerp (TYPE_MIN_VALUE (domain), 0)
4724                           && host_integerp (TYPE_MAX_VALUE (domain), 0));
4725
4726         /* If we have constant bounds for the range of the type, get them.  */
4727         if (const_bounds_p)
4728           {
4729             minelt = tree_low_cst (TYPE_MIN_VALUE (domain), 0);
4730             maxelt = tree_low_cst (TYPE_MAX_VALUE (domain), 0);
4731           }
4732
4733         /* If the constructor has fewer elements than the array, clear
4734            the whole array first.  Similarly if this is static
4735            constructor of a non-BLKmode object.  */
4736         if (cleared)
4737           need_to_clear = 0;
4738         else if (REG_P (target) && TREE_STATIC (exp))
4739           need_to_clear = 1;
4740         else
4741           {
4742             HOST_WIDE_INT count = 0, zero_count = 0;
4743             need_to_clear = ! const_bounds_p;
4744             
4745             /* This loop is a more accurate version of the loop in
4746                mostly_zeros_p (it handles RANGE_EXPR in an index).  It
4747                is also needed to check for missing elements.  */
4748             for (elt = CONSTRUCTOR_ELTS (exp);
4749                  elt != NULL_TREE && ! need_to_clear;
4750                  elt = TREE_CHAIN (elt))
4751               {
4752                 tree index = TREE_PURPOSE (elt);
4753                 HOST_WIDE_INT this_node_count;
4754                 
4755                 if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
4756                   {
4757                     tree lo_index = TREE_OPERAND (index, 0);
4758                     tree hi_index = TREE_OPERAND (index, 1);
4759                     
4760                     if (! host_integerp (lo_index, 1)
4761                         || ! host_integerp (hi_index, 1))
4762                       {
4763                         need_to_clear = 1;
4764                         break;
4765                       }
4766                     
4767                     this_node_count = (tree_low_cst (hi_index, 1)
4768                                        - tree_low_cst (lo_index, 1) + 1);
4769                   }
4770                 else
4771                   this_node_count = 1;
4772                 
4773                 count += this_node_count;
4774                 if (mostly_zeros_p (TREE_VALUE (elt)))
4775                   zero_count += this_node_count;
4776               }
4777             
4778             /* Clear the entire array first if there are any missing
4779                elements, or if the incidence of zero elements is >=
4780                75%.  */
4781             if (! need_to_clear
4782                 && (count < maxelt - minelt + 1
4783                     || 4 * zero_count >= 3 * count))
4784               need_to_clear = 1;
4785           }
4786         
4787         if (need_to_clear && size > 0)
4788           {
4789             if (REG_P (target))
4790               emit_move_insn (target,  CONST0_RTX (GET_MODE (target)));
4791             else
4792               clear_storage (target, GEN_INT (size));
4793             cleared = 1;
4794           }
4795
4796         if (!cleared && REG_P (target))
4797           /* Inform later passes that the old value is dead.  */
4798           emit_insn (gen_rtx_CLOBBER (VOIDmode, target));
4799
4800         /* Store each element of the constructor into the
4801            corresponding element of TARGET, determined by counting the
4802            elements.  */
4803         for (elt = CONSTRUCTOR_ELTS (exp), i = 0;
4804              elt;
4805              elt = TREE_CHAIN (elt), i++)
4806           {
4807             enum machine_mode mode;
4808             HOST_WIDE_INT bitsize;
4809             HOST_WIDE_INT bitpos;
4810             int unsignedp;
4811             tree value = TREE_VALUE (elt);
4812             tree index = TREE_PURPOSE (elt);
4813             rtx xtarget = target;
4814             
4815             if (cleared && initializer_zerop (value))
4816               continue;
4817             
4818             unsignedp = TYPE_UNSIGNED (elttype);
4819             mode = TYPE_MODE (elttype);
4820             if (mode == BLKmode)
4821               bitsize = (host_integerp (TYPE_SIZE (elttype), 1)
4822                          ? tree_low_cst (TYPE_SIZE (elttype), 1)
4823                          : -1);
4824             else
4825               bitsize = GET_MODE_BITSIZE (mode);
4826             
4827             if (index != NULL_TREE && TREE_CODE (index) == RANGE_EXPR)
4828               {
4829                 tree lo_index = TREE_OPERAND (index, 0);
4830                 tree hi_index = TREE_OPERAND (index, 1);
4831                 rtx index_r, pos_rtx;
4832                 HOST_WIDE_INT lo, hi, count;
4833                 tree position;
4834                 
4835                 /* If the range is constant and "small", unroll the loop.  */
4836                 if (const_bounds_p
4837                     && host_integerp (lo_index, 0)
4838                     && host_integerp (hi_index, 0)
4839                     && (lo = tree_low_cst (lo_index, 0),
4840                         hi = tree_low_cst (hi_index, 0),
4841                         count = hi - lo + 1,
4842                         (!MEM_P (target)
4843                          || count <= 2
4844                          || (host_integerp (TYPE_SIZE (elttype), 1)
4845                              && (tree_low_cst (TYPE_SIZE (elttype), 1) * count
4846                                  <= 40 * 8)))))
4847                   {
4848                     lo -= minelt;  hi -= minelt;
4849                     for (; lo <= hi; lo++)
4850                       {
4851                         bitpos = lo * tree_low_cst (TYPE_SIZE (elttype), 0);
4852                         
4853                         if (MEM_P (target)
4854                             && !MEM_KEEP_ALIAS_SET_P (target)
4855                             && TREE_CODE (type) == ARRAY_TYPE
4856                             && TYPE_NONALIASED_COMPONENT (type))
4857                           {
4858                             target = copy_rtx (target);
4859                             MEM_KEEP_ALIAS_SET_P (target) = 1;
4860                           }
4861                         
4862                         store_constructor_field
4863                           (target, bitsize, bitpos, mode, value, type, cleared,
4864                            get_alias_set (elttype));
4865                       }
4866                   }
4867                 else
4868                   {
4869                     rtx loop_start = gen_label_rtx ();
4870                     rtx loop_end = gen_label_rtx ();
4871                     tree exit_cond;
4872                     
4873                     expand_expr (hi_index, NULL_RTX, VOIDmode, 0);
4874                     unsignedp = TYPE_UNSIGNED (domain);
4875                     
4876                     index = build_decl (VAR_DECL, NULL_TREE, domain);
4877                     
4878                     index_r
4879                       = gen_reg_rtx (promote_mode (domain, DECL_MODE (index),
4880                                                    &unsignedp, 0));
4881                     SET_DECL_RTL (index, index_r);
4882                     store_expr (lo_index, index_r, 0);
4883                     
4884                     /* Build the head of the loop.  */
4885                     do_pending_stack_adjust ();
4886                     emit_label (loop_start);
4887
4888                     /* Assign value to element index.  */
4889                     position
4890                       = convert (ssizetype,
4891                                  fold (build2 (MINUS_EXPR, TREE_TYPE (index),
4892                                                index, TYPE_MIN_VALUE (domain))));
4893                     position = size_binop (MULT_EXPR, position,
4894                                            convert (ssizetype,
4895                                                     TYPE_SIZE_UNIT (elttype)));
4896                     
4897                     pos_rtx = expand_expr (position, 0, VOIDmode, 0);
4898                     xtarget = offset_address (target, pos_rtx,
4899                                               highest_pow2_factor (position));
4900                     xtarget = adjust_address (xtarget, mode, 0);
4901                     if (TREE_CODE (value) == CONSTRUCTOR)
4902                       store_constructor (value, xtarget, cleared,
4903                                          bitsize / BITS_PER_UNIT);
4904                     else
4905                       store_expr (value, xtarget, 0);
4906
4907                     /* Generate a conditional jump to exit the loop.  */
4908                     exit_cond = build2 (LT_EXPR, integer_type_node,
4909                                         index, hi_index);
4910                     jumpif (exit_cond, loop_end);
4911                     
4912                     /* Update the loop counter, and jump to the head of
4913                        the loop.  */
4914                     expand_assignment (index,
4915                                        build2 (PLUS_EXPR, TREE_TYPE (index),
4916                                                index, integer_one_node));
4917                     
4918                     emit_jump (loop_start);
4919                     
4920                     /* Build the end of the loop.  */
4921                     emit_label (loop_end);
4922                   }
4923               }
4924             else if ((index != 0 && ! host_integerp (index, 0))
4925                      || ! host_integerp (TYPE_SIZE (elttype), 1))
4926               {
4927                 tree position;
4928                 
4929                 if (index == 0)
4930                   index = ssize_int (1);
4931                 
4932                 if (minelt)
4933                   index = fold_convert (ssizetype,
4934                                         fold (build2 (MINUS_EXPR,
4935                                                       TREE_TYPE (index),
4936                                                       index,
4937                                                       TYPE_MIN_VALUE (domain))));
4938                 
4939                 position = size_binop (MULT_EXPR, index,
4940                                        convert (ssizetype,
4941                                                 TYPE_SIZE_UNIT (elttype)));
4942                 xtarget = offset_address (target,
4943                                           expand_expr (position, 0, VOIDmode, 0),
4944                                           highest_pow2_factor (position));
4945                 xtarget = adjust_address (xtarget, mode, 0);
4946                 store_expr (value, xtarget, 0);
4947               }
4948             else
4949               {
4950                 if (index != 0)
4951                   bitpos = ((tree_low_cst (index, 0) - minelt)
4952                             * tree_low_cst (TYPE_SIZE (elttype), 1));
4953                 else
4954                   bitpos = (i * tree_low_cst (TYPE_SIZE (elttype), 1));
4955                 
4956                 if (MEM_P (target) && !MEM_KEEP_ALIAS_SET_P (target)
4957                     && TREE_CODE (type) == ARRAY_TYPE
4958                     && TYPE_NONALIASED_COMPONENT (type))
4959                   {
4960                     target = copy_rtx (target);
4961                     MEM_KEEP_ALIAS_SET_P (target) = 1;
4962                   }
4963                 store_constructor_field (target, bitsize, bitpos, mode, value,
4964                                          type, cleared, get_alias_set (elttype));
4965               }
4966           }
4967         break;
4968       }
4969
4970     case VECTOR_TYPE:
4971       {
4972         tree elt;
4973         int i;
4974         int need_to_clear;
4975         int icode = 0;
4976         tree elttype = TREE_TYPE (type);
4977         int elt_size = tree_low_cst (TYPE_SIZE (elttype), 1);
4978         enum machine_mode eltmode = TYPE_MODE (elttype);
4979         HOST_WIDE_INT bitsize;
4980         HOST_WIDE_INT bitpos;
4981         rtx *vector = NULL;
4982         unsigned n_elts;
4983         
4984         gcc_assert (eltmode != BLKmode);
4985         
4986         n_elts = TYPE_VECTOR_SUBPARTS (type);
4987         if (REG_P (target) && VECTOR_MODE_P (GET_MODE (target)))
4988           {
4989             enum machine_mode mode = GET_MODE (target);
4990             
4991             icode = (int) vec_init_optab->handlers[mode].insn_code;
4992             if (icode != CODE_FOR_nothing)
4993               {
4994                 unsigned int i;
4995                 
4996                 vector = alloca (n_elts);
4997                 for (i = 0; i < n_elts; i++)
4998                   vector [i] = CONST0_RTX (GET_MODE_INNER (mode));
4999               }
5000           }
5001         
5002         /* If the constructor has fewer elements than the vector,
5003            clear the whole array first.  Similarly if this is static
5004            constructor of a non-BLKmode object.  */
5005         if (cleared)
5006           need_to_clear = 0;
5007         else if (REG_P (target) && TREE_STATIC (exp))
5008           need_to_clear = 1;
5009         else
5010           {
5011             unsigned HOST_WIDE_INT count = 0, zero_count = 0;
5012             
5013             for (elt = CONSTRUCTOR_ELTS (exp);
5014                  elt != NULL_TREE;
5015                  elt = TREE_CHAIN (elt))
5016               {
5017                 int n_elts_here = tree_low_cst
5018                   (int_const_binop (TRUNC_DIV_EXPR,
5019                                     TYPE_SIZE (TREE_TYPE (TREE_VALUE (elt))),
5020                                     TYPE_SIZE (elttype), 0), 1);
5021                 
5022                 count += n_elts_here;
5023                 if (mostly_zeros_p (TREE_VALUE (elt)))
5024                   zero_count += n_elts_here;
5025               }
5026
5027             /* Clear the entire vector first if there are any missing elements,
5028                or if the incidence of zero elements is >= 75%.  */
5029             need_to_clear = (count < n_elts || 4 * zero_count >= 3 * count);
5030           }
5031         
5032         if (need_to_clear && size > 0 && !vector)
5033           {
5034             if (REG_P (target))
5035               emit_move_insn (target,  CONST0_RTX (GET_MODE (target)));
5036             else
5037               clear_storage (target, GEN_INT (size));
5038             cleared = 1;
5039           }
5040         
5041         if (!cleared && REG_P (target))
5042           /* Inform later passes that the old value is dead.  */
5043           emit_insn (gen_rtx_CLOBBER (VOIDmode, target));
5044
5045         /* Store each element of the constructor into the corresponding
5046            element of TARGET, determined by counting the elements.  */
5047         for (elt = CONSTRUCTOR_ELTS (exp), i = 0;
5048              elt;
5049              elt = TREE_CHAIN (elt), i += bitsize / elt_size)
5050           {
5051             tree value = TREE_VALUE (elt);
5052             tree index = TREE_PURPOSE (elt);
5053             HOST_WIDE_INT eltpos;
5054             
5055             bitsize = tree_low_cst (TYPE_SIZE (TREE_TYPE (value)), 1);
5056             if (cleared && initializer_zerop (value))
5057               continue;
5058             
5059             if (index != 0)
5060               eltpos = tree_low_cst (index, 1);
5061             else
5062               eltpos = i;
5063             
5064             if (vector)
5065               {
5066                 /* Vector CONSTRUCTORs should only be built from smaller
5067                    vectors in the case of BLKmode vectors.  */
5068                 gcc_assert (TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE);
5069                 vector[eltpos] = expand_expr (value, NULL_RTX, VOIDmode, 0);
5070               }
5071             else
5072               {
5073                 enum machine_mode value_mode =
5074                   TREE_CODE (TREE_TYPE (value)) == VECTOR_TYPE
5075                   ? TYPE_MODE (TREE_TYPE (value))
5076                   : eltmode;
5077                 bitpos = eltpos * elt_size;
5078                 store_constructor_field (target, bitsize, bitpos,
5079                                          value_mode, value, type,
5080                                          cleared, get_alias_set (elttype));
5081               }
5082           }
5083         
5084         if (vector)
5085           emit_insn (GEN_FCN (icode)
5086                      (target,
5087                       gen_rtx_PARALLEL (GET_MODE (target),
5088                                         gen_rtvec_v (n_elts, vector))));
5089         break;
5090       }
5091       
5092     default:
5093       gcc_unreachable ();
5094     }
5095 }
5096
5097 /* Store the value of EXP (an expression tree)
5098    into a subfield of TARGET which has mode MODE and occupies
5099    BITSIZE bits, starting BITPOS bits from the start of TARGET.
5100    If MODE is VOIDmode, it means that we are storing into a bit-field.
5101
5102    Always return const0_rtx unless we have something particular to
5103    return.
5104
5105    TYPE is the type of the underlying object,
5106
5107    ALIAS_SET is the alias set for the destination.  This value will
5108    (in general) be different from that for TARGET, since TARGET is a
5109    reference to the containing structure.  */
5110
5111 static rtx
5112 store_field (rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos,
5113              enum machine_mode mode, tree exp, tree type, int alias_set)
5114 {
5115   HOST_WIDE_INT width_mask = 0;
5116
5117   if (TREE_CODE (exp) == ERROR_MARK)
5118     return const0_rtx;
5119
5120   /* If we have nothing to store, do nothing unless the expression has
5121      side-effects.  */
5122   if (bitsize == 0)
5123     return expand_expr (exp, const0_rtx, VOIDmode, 0);
5124   else if (bitsize >= 0 && bitsize < HOST_BITS_PER_WIDE_INT)
5125     width_mask = ((HOST_WIDE_INT) 1 << bitsize) - 1;
5126
5127   /* If we are storing into an unaligned field of an aligned union that is
5128      in a register, we may have the mode of TARGET being an integer mode but
5129      MODE == BLKmode.  In that case, get an aligned object whose size and
5130      alignment are the same as TARGET and store TARGET into it (we can avoid
5131      the store if the field being stored is the entire width of TARGET).  Then
5132      call ourselves recursively to store the field into a BLKmode version of
5133      that object.  Finally, load from the object into TARGET.  This is not
5134      very efficient in general, but should only be slightly more expensive
5135      than the otherwise-required unaligned accesses.  Perhaps this can be
5136      cleaned up later.  It's tempting to make OBJECT readonly, but it's set
5137      twice, once with emit_move_insn and once via store_field.  */
5138
5139   if (mode == BLKmode
5140       && (REG_P (target) || GET_CODE (target) == SUBREG))
5141     {
5142       rtx object = assign_temp (type, 0, 1, 1);
5143       rtx blk_object = adjust_address (object, BLKmode, 0);
5144
5145       if (bitsize != (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (target)))
5146         emit_move_insn (object, target);
5147
5148       store_field (blk_object, bitsize, bitpos, mode, exp, type, alias_set);
5149
5150       emit_move_insn (target, object);
5151
5152       /* We want to return the BLKmode version of the data.  */
5153       return blk_object;
5154     }
5155
5156   if (GET_CODE (target) == CONCAT)
5157     {
5158       /* We're storing into a struct containing a single __complex.  */
5159
5160       gcc_assert (!bitpos);
5161       return store_expr (exp, target, 0);
5162     }
5163
5164   /* If the structure is in a register or if the component
5165      is a bit field, we cannot use addressing to access it.
5166      Use bit-field techniques or SUBREG to store in it.  */
5167
5168   if (mode == VOIDmode
5169       || (mode != BLKmode && ! direct_store[(int) mode]
5170           && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
5171           && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
5172       || REG_P (target)
5173       || GET_CODE (target) == SUBREG
5174       /* If the field isn't aligned enough to store as an ordinary memref,
5175          store it as a bit field.  */
5176       || (mode != BLKmode
5177           && ((((MEM_ALIGN (target) < GET_MODE_ALIGNMENT (mode))
5178                 || bitpos % GET_MODE_ALIGNMENT (mode))
5179                && SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (target)))
5180               || (bitpos % BITS_PER_UNIT != 0)))
5181       /* If the RHS and field are a constant size and the size of the
5182          RHS isn't the same size as the bitfield, we must use bitfield
5183          operations.  */
5184       || (bitsize >= 0
5185           && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
5186           && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)), bitsize) != 0))
5187     {
5188       rtx temp = expand_expr (exp, NULL_RTX, VOIDmode, 0);
5189
5190       /* If BITSIZE is narrower than the size of the type of EXP
5191          we will be narrowing TEMP.  Normally, what's wanted are the
5192          low-order bits.  However, if EXP's type is a record and this is
5193          big-endian machine, we want the upper BITSIZE bits.  */
5194       if (BYTES_BIG_ENDIAN && GET_MODE_CLASS (GET_MODE (temp)) == MODE_INT
5195           && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (temp))
5196           && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
5197         temp = expand_shift (RSHIFT_EXPR, GET_MODE (temp), temp,
5198                              size_int (GET_MODE_BITSIZE (GET_MODE (temp))
5199                                        - bitsize),
5200                              NULL_RTX, 1);
5201
5202       /* Unless MODE is VOIDmode or BLKmode, convert TEMP to
5203          MODE.  */
5204       if (mode != VOIDmode && mode != BLKmode
5205           && mode != TYPE_MODE (TREE_TYPE (exp)))
5206         temp = convert_modes (mode, TYPE_MODE (TREE_TYPE (exp)), temp, 1);
5207
5208       /* If the modes of TARGET and TEMP are both BLKmode, both
5209          must be in memory and BITPOS must be aligned on a byte
5210          boundary.  If so, we simply do a block copy.  */
5211       if (GET_MODE (target) == BLKmode && GET_MODE (temp) == BLKmode)
5212         {
5213           gcc_assert (MEM_P (target) && MEM_P (temp)
5214                       && !(bitpos % BITS_PER_UNIT));
5215
5216           target = adjust_address (target, VOIDmode, bitpos / BITS_PER_UNIT);
5217           emit_block_move (target, temp,
5218                            GEN_INT ((bitsize + BITS_PER_UNIT - 1)
5219                                     / BITS_PER_UNIT),
5220                            BLOCK_OP_NORMAL);
5221
5222           return const0_rtx;
5223         }
5224
5225       /* Store the value in the bitfield.  */
5226       store_bit_field (target, bitsize, bitpos, mode, temp);
5227
5228       return const0_rtx;
5229     }
5230   else
5231     {
5232       /* Now build a reference to just the desired component.  */
5233       rtx to_rtx = adjust_address (target, mode, bitpos / BITS_PER_UNIT);
5234
5235       if (to_rtx == target)
5236         to_rtx = copy_rtx (to_rtx);
5237
5238       MEM_SET_IN_STRUCT_P (to_rtx, 1);
5239       if (!MEM_KEEP_ALIAS_SET_P (to_rtx) && MEM_ALIAS_SET (to_rtx) != 0)
5240         set_mem_alias_set (to_rtx, alias_set);
5241
5242       return store_expr (exp, to_rtx, 0);
5243     }
5244 }
5245 \f
5246 /* Given an expression EXP that may be a COMPONENT_REF, a BIT_FIELD_REF,
5247    an ARRAY_REF, or an ARRAY_RANGE_REF, look for nested operations of these
5248    codes and find the ultimate containing object, which we return.
5249
5250    We set *PBITSIZE to the size in bits that we want, *PBITPOS to the
5251    bit position, and *PUNSIGNEDP to the signedness of the field.
5252    If the position of the field is variable, we store a tree
5253    giving the variable offset (in units) in *POFFSET.
5254    This offset is in addition to the bit position.
5255    If the position is not variable, we store 0 in *POFFSET.
5256
5257    If any of the extraction expressions is volatile,
5258    we store 1 in *PVOLATILEP.  Otherwise we don't change that.
5259
5260    If the field is a bit-field, *PMODE is set to VOIDmode.  Otherwise, it
5261    is a mode that can be used to access the field.  In that case, *PBITSIZE
5262    is redundant.
5263
5264    If the field describes a variable-sized object, *PMODE is set to
5265    VOIDmode and *PBITSIZE is set to -1.  An access cannot be made in
5266    this case, but the address of the object can be found.
5267
5268    If KEEP_ALIGNING is true and the target is STRICT_ALIGNMENT, we don't
5269    look through nodes that serve as markers of a greater alignment than
5270    the one that can be deduced from the expression.  These nodes make it
5271    possible for front-ends to prevent temporaries from being created by
5272    the middle-end on alignment considerations.  For that purpose, the
5273    normal operating mode at high-level is to always pass FALSE so that
5274    the ultimate containing object is really returned; moreover, the
5275    associated predicate handled_component_p will always return TRUE
5276    on these nodes, thus indicating that they are essentially handled
5277    by get_inner_reference.  TRUE should only be passed when the caller
5278    is scanning the expression in order to build another representation
5279    and specifically knows how to handle these nodes; as such, this is
5280    the normal operating mode in the RTL expanders.  */
5281
5282 tree
5283 get_inner_reference (tree exp, HOST_WIDE_INT *pbitsize,
5284                      HOST_WIDE_INT *pbitpos, tree *poffset,
5285                      enum machine_mode *pmode, int *punsignedp,
5286                      int *pvolatilep, bool keep_aligning)
5287 {
5288   tree size_tree = 0;
5289   enum machine_mode mode = VOIDmode;
5290   tree offset = size_zero_node;
5291   tree bit_offset = bitsize_zero_node;
5292   tree tem;
5293
5294   /* First get the mode, signedness, and size.  We do this from just the
5295      outermost expression.  */
5296   if (TREE_CODE (exp) == COMPONENT_REF)
5297     {
5298       size_tree = DECL_SIZE (TREE_OPERAND (exp, 1));
5299       if (! DECL_BIT_FIELD (TREE_OPERAND (exp, 1)))
5300         mode = DECL_MODE (TREE_OPERAND (exp, 1));
5301
5302       *punsignedp = DECL_UNSIGNED (TREE_OPERAND (exp, 1));
5303     }
5304   else if (TREE_CODE (exp) == BIT_FIELD_REF)
5305     {
5306       size_tree = TREE_OPERAND (exp, 1);
5307       *punsignedp = BIT_FIELD_REF_UNSIGNED (exp);
5308     }
5309   else
5310     {
5311       mode = TYPE_MODE (TREE_TYPE (exp));
5312       *punsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
5313
5314       if (mode == BLKmode)
5315         size_tree = TYPE_SIZE (TREE_TYPE (exp));
5316       else
5317         *pbitsize = GET_MODE_BITSIZE (mode);
5318     }
5319
5320   if (size_tree != 0)
5321     {
5322       if (! host_integerp (size_tree, 1))
5323         mode = BLKmode, *pbitsize = -1;
5324       else
5325         *pbitsize = tree_low_cst (size_tree, 1);
5326     }
5327
5328   /* Compute cumulative bit-offset for nested component-refs and array-refs,
5329      and find the ultimate containing object.  */
5330   while (1)
5331     {
5332       switch (TREE_CODE (exp))
5333         {
5334         case BIT_FIELD_REF:
5335           bit_offset = size_binop (PLUS_EXPR, bit_offset,
5336                                    TREE_OPERAND (exp, 2));
5337           break;
5338
5339         case COMPONENT_REF:
5340           {
5341             tree field = TREE_OPERAND (exp, 1);
5342             tree this_offset = component_ref_field_offset (exp);
5343
5344             /* If this field hasn't been filled in yet, don't go past it.
5345                This should only happen when folding expressions made during
5346                type construction.  */
5347             if (this_offset == 0)
5348               break;
5349
5350             offset = size_binop (PLUS_EXPR, offset, this_offset);
5351             bit_offset = size_binop (PLUS_EXPR, bit_offset,
5352                                      DECL_FIELD_BIT_OFFSET (field));
5353
5354             /* ??? Right now we don't do anything with DECL_OFFSET_ALIGN.  */
5355           }
5356           break;
5357
5358         case ARRAY_REF:
5359         case ARRAY_RANGE_REF:
5360           {
5361             tree index = TREE_OPERAND (exp, 1);
5362             tree low_bound = array_ref_low_bound (exp);
5363             tree unit_size = array_ref_element_size (exp);
5364
5365             /* We assume all arrays have sizes that are a multiple of a byte.
5366                First subtract the lower bound, if any, in the type of the
5367                index, then convert to sizetype and multiply by the size of
5368                the array element.  */
5369             if (! integer_zerop (low_bound))
5370               index = fold (build2 (MINUS_EXPR, TREE_TYPE (index),
5371                                     index, low_bound));
5372
5373             offset = size_binop (PLUS_EXPR, offset,
5374                                  size_binop (MULT_EXPR,
5375                                              convert (sizetype, index),
5376                                              unit_size));
5377           }
5378           break;
5379
5380         case REALPART_EXPR:
5381           break;
5382
5383         case IMAGPART_EXPR:
5384           bit_offset = size_binop (PLUS_EXPR, bit_offset,
5385                                    bitsize_int (*pbitsize));
5386           break;
5387
5388         case VIEW_CONVERT_EXPR:
5389           if (keep_aligning && STRICT_ALIGNMENT
5390               && (TYPE_ALIGN (TREE_TYPE (exp))
5391                > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0))))
5392               && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0)))
5393                   < BIGGEST_ALIGNMENT)
5394               && (TYPE_ALIGN_OK (TREE_TYPE (exp))
5395                   || TYPE_ALIGN_OK (TREE_TYPE (TREE_OPERAND (exp, 0)))))
5396             goto done;
5397           break;
5398
5399         default:
5400           goto done;
5401         }
5402
5403       /* If any reference in the chain is volatile, the effect is volatile.  */
5404       if (TREE_THIS_VOLATILE (exp))
5405         *pvolatilep = 1;
5406
5407       exp = TREE_OPERAND (exp, 0);
5408     }
5409  done:
5410
5411   /* If OFFSET is constant, see if we can return the whole thing as a
5412      constant bit position.  Otherwise, split it up.  */
5413   if (host_integerp (offset, 0)
5414       && 0 != (tem = size_binop (MULT_EXPR, convert (bitsizetype, offset),
5415                                  bitsize_unit_node))
5416       && 0 != (tem = size_binop (PLUS_EXPR, tem, bit_offset))
5417       && host_integerp (tem, 0))
5418     *pbitpos = tree_low_cst (tem, 0), *poffset = 0;
5419   else
5420     *pbitpos = tree_low_cst (bit_offset, 0), *poffset = offset;
5421
5422   *pmode = mode;
5423   return exp;
5424 }
5425
5426 /* Return a tree of sizetype representing the size, in bytes, of the element
5427    of EXP, an ARRAY_REF.  */
5428
5429 tree
5430 array_ref_element_size (tree exp)
5431 {
5432   tree aligned_size = TREE_OPERAND (exp, 3);
5433   tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
5434
5435   /* If a size was specified in the ARRAY_REF, it's the size measured
5436      in alignment units of the element type.  So multiply by that value.  */
5437   if (aligned_size)
5438     {
5439       /* ??? tree_ssa_useless_type_conversion will eliminate casts to
5440          sizetype from another type of the same width and signedness.  */
5441       if (TREE_TYPE (aligned_size) != sizetype)
5442         aligned_size = fold_convert (sizetype, aligned_size);
5443       return size_binop (MULT_EXPR, aligned_size,
5444                          size_int (TYPE_ALIGN_UNIT (elmt_type)));
5445     }
5446
5447   /* Otherwise, take the size from that of the element type.  Substitute
5448      any PLACEHOLDER_EXPR that we have.  */
5449   else
5450     return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
5451 }
5452
5453 /* Return a tree representing the lower bound of the array mentioned in
5454    EXP, an ARRAY_REF.  */
5455
5456 tree
5457 array_ref_low_bound (tree exp)
5458 {
5459   tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
5460
5461   /* If a lower bound is specified in EXP, use it.  */
5462   if (TREE_OPERAND (exp, 2))
5463     return TREE_OPERAND (exp, 2);
5464
5465   /* Otherwise, if there is a domain type and it has a lower bound, use it,
5466      substituting for a PLACEHOLDER_EXPR as needed.  */
5467   if (domain_type && TYPE_MIN_VALUE (domain_type))
5468     return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
5469
5470   /* Otherwise, return a zero of the appropriate type.  */
5471   return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
5472 }
5473
5474 /* Return a tree representing the upper bound of the array mentioned in
5475    EXP, an ARRAY_REF.  */
5476
5477 tree
5478 array_ref_up_bound (tree exp)
5479 {
5480   tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
5481
5482   /* If there is a domain type and it has an upper bound, use it, substituting
5483      for a PLACEHOLDER_EXPR as needed.  */
5484   if (domain_type && TYPE_MAX_VALUE (domain_type))
5485     return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
5486
5487   /* Otherwise fail.  */
5488   return NULL_TREE;
5489 }
5490
5491 /* Return a tree representing the offset, in bytes, of the field referenced
5492    by EXP.  This does not include any offset in DECL_FIELD_BIT_OFFSET.  */
5493
5494 tree
5495 component_ref_field_offset (tree exp)
5496 {
5497   tree aligned_offset = TREE_OPERAND (exp, 2);
5498   tree field = TREE_OPERAND (exp, 1);
5499
5500   /* If an offset was specified in the COMPONENT_REF, it's the offset measured
5501      in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT.  So multiply by that
5502      value.  */
5503   if (aligned_offset)
5504     {
5505       /* ??? tree_ssa_useless_type_conversion will eliminate casts to
5506          sizetype from another type of the same width and signedness.  */
5507       if (TREE_TYPE (aligned_offset) != sizetype)
5508         aligned_offset = fold_convert (sizetype, aligned_offset);
5509       return size_binop (MULT_EXPR, aligned_offset,
5510                          size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT));
5511     }
5512
5513   /* Otherwise, take the offset from that of the field.  Substitute
5514      any PLACEHOLDER_EXPR that we have.  */
5515   else
5516     return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
5517 }
5518
5519 /* Return 1 if T is an expression that get_inner_reference handles.  */
5520
5521 int
5522 handled_component_p (tree t)
5523 {
5524   switch (TREE_CODE (t))
5525     {
5526     case BIT_FIELD_REF:
5527     case COMPONENT_REF:
5528     case ARRAY_REF:
5529     case ARRAY_RANGE_REF:
5530     case VIEW_CONVERT_EXPR:
5531     case REALPART_EXPR:
5532     case IMAGPART_EXPR:
5533       return 1;
5534
5535     default:
5536       return 0;
5537     }
5538 }
5539 \f
5540 /* Given an rtx VALUE that may contain additions and multiplications, return
5541    an equivalent value that just refers to a register, memory, or constant.
5542    This is done by generating instructions to perform the arithmetic and
5543    returning a pseudo-register containing the value.
5544
5545    The returned value may be a REG, SUBREG, MEM or constant.  */
5546
5547 rtx
5548 force_operand (rtx value, rtx target)
5549 {
5550   rtx op1, op2;
5551   /* Use subtarget as the target for operand 0 of a binary operation.  */
5552   rtx subtarget = get_subtarget (target);
5553   enum rtx_code code = GET_CODE (value);
5554
5555   /* Check for subreg applied to an expression produced by loop optimizer.  */
5556   if (code == SUBREG
5557       && !REG_P (SUBREG_REG (value))
5558       && !MEM_P (SUBREG_REG (value)))
5559     {
5560       value = simplify_gen_subreg (GET_MODE (value),
5561                                    force_reg (GET_MODE (SUBREG_REG (value)),
5562                                               force_operand (SUBREG_REG (value),
5563                                                              NULL_RTX)),
5564                                    GET_MODE (SUBREG_REG (value)),
5565                                    SUBREG_BYTE (value));
5566       code = GET_CODE (value);
5567     }
5568
5569   /* Check for a PIC address load.  */
5570   if ((code == PLUS || code == MINUS)
5571       && XEXP (value, 0) == pic_offset_table_rtx
5572       && (GET_CODE (XEXP (value, 1)) == SYMBOL_REF
5573           || GET_CODE (XEXP (value, 1)) == LABEL_REF
5574           || GET_CODE (XEXP (value, 1)) == CONST))
5575     {
5576       if (!subtarget)
5577         subtarget = gen_reg_rtx (GET_MODE (value));
5578       emit_move_insn (subtarget, value);
5579       return subtarget;
5580     }
5581
5582   if (code == ZERO_EXTEND || code == SIGN_EXTEND)
5583     {
5584       if (!target)
5585         target = gen_reg_rtx (GET_MODE (value));
5586       convert_move (target, force_operand (XEXP (value, 0), NULL),
5587                     code == ZERO_EXTEND);
5588       return target;
5589     }
5590
5591   if (ARITHMETIC_P (value))
5592     {
5593       op2 = XEXP (value, 1);
5594       if (!CONSTANT_P (op2) && !(REG_P (op2) && op2 != subtarget))
5595         subtarget = 0;
5596       if (code == MINUS && GET_CODE (op2) == CONST_INT)
5597         {
5598           code = PLUS;
5599           op2 = negate_rtx (GET_MODE (value), op2);
5600         }
5601
5602       /* Check for an addition with OP2 a constant integer and our first
5603          operand a PLUS of a virtual register and something else.  In that
5604          case, we want to emit the sum of the virtual register and the
5605          constant first and then add the other value.  This allows virtual
5606          register instantiation to simply modify the constant rather than
5607          creating another one around this addition.  */
5608       if (code == PLUS && GET_CODE (op2) == CONST_INT
5609           && GET_CODE (XEXP (value, 0)) == PLUS
5610           && REG_P (XEXP (XEXP (value, 0), 0))
5611           && REGNO (XEXP (XEXP (value, 0), 0)) >= FIRST_VIRTUAL_REGISTER
5612           && REGNO (XEXP (XEXP (value, 0), 0)) <= LAST_VIRTUAL_REGISTER)
5613         {
5614           rtx temp = expand_simple_binop (GET_MODE (value), code,
5615                                           XEXP (XEXP (value, 0), 0), op2,
5616                                           subtarget, 0, OPTAB_LIB_WIDEN);
5617           return expand_simple_binop (GET_MODE (value), code, temp,
5618                                       force_operand (XEXP (XEXP (value,
5619                                                                  0), 1), 0),
5620                                       target, 0, OPTAB_LIB_WIDEN);
5621         }
5622
5623       op1 = force_operand (XEXP (value, 0), subtarget);
5624       op2 = force_operand (op2, NULL_RTX);
5625       switch (code)
5626         {
5627         case MULT:
5628           return expand_mult (GET_MODE (value), op1, op2, target, 1);
5629         case DIV:
5630           if (!INTEGRAL_MODE_P (GET_MODE (value)))
5631             return expand_simple_binop (GET_MODE (value), code, op1, op2,
5632                                         target, 1, OPTAB_LIB_WIDEN);
5633           else
5634             return expand_divmod (0,
5635                                   FLOAT_MODE_P (GET_MODE (value))
5636                                   ? RDIV_EXPR : TRUNC_DIV_EXPR,
5637                                   GET_MODE (value), op1, op2, target, 0);
5638           break;
5639         case MOD:
5640           return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
5641                                 target, 0);
5642           break;
5643         case UDIV:
5644           return expand_divmod (0, TRUNC_DIV_EXPR, GET_MODE (value), op1, op2,
5645                                 target, 1);
5646           break;
5647         case UMOD:
5648           return expand_divmod (1, TRUNC_MOD_EXPR, GET_MODE (value), op1, op2,
5649                                 target, 1);
5650           break;
5651         case ASHIFTRT:
5652           return expand_simple_binop (GET_MODE (value), code, op1, op2,
5653                                       target, 0, OPTAB_LIB_WIDEN);
5654           break;
5655         default:
5656           return expand_simple_binop (GET_MODE (value), code, op1, op2,
5657                                       target, 1, OPTAB_LIB_WIDEN);
5658         }
5659     }
5660   if (UNARY_P (value))
5661     {
5662       op1 = force_operand (XEXP (value, 0), NULL_RTX);
5663       return expand_simple_unop (GET_MODE (value), code, op1, target, 0);
5664     }
5665
5666 #ifdef INSN_SCHEDULING
5667   /* On machines that have insn scheduling, we want all memory reference to be
5668      explicit, so we need to deal with such paradoxical SUBREGs.  */
5669   if (GET_CODE (value) == SUBREG && MEM_P (SUBREG_REG (value))
5670       && (GET_MODE_SIZE (GET_MODE (value))
5671           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (value)))))
5672     value
5673       = simplify_gen_subreg (GET_MODE (value),
5674                              force_reg (GET_MODE (SUBREG_REG (value)),
5675                                         force_operand (SUBREG_REG (value),
5676                                                        NULL_RTX)),
5677                              GET_MODE (SUBREG_REG (value)),
5678                              SUBREG_BYTE (value));
5679 #endif
5680
5681   return value;
5682 }
5683 \f
5684 /* Subroutine of expand_expr: return nonzero iff there is no way that
5685    EXP can reference X, which is being modified.  TOP_P is nonzero if this
5686    call is going to be used to determine whether we need a temporary
5687    for EXP, as opposed to a recursive call to this function.
5688
5689    It is always safe for this routine to return zero since it merely
5690    searches for optimization opportunities.  */
5691
5692 int
5693 safe_from_p (rtx x, tree exp, int top_p)
5694 {
5695   rtx exp_rtl = 0;
5696   int i, nops;
5697
5698   if (x == 0
5699       /* If EXP has varying size, we MUST use a target since we currently
5700          have no way of allocating temporaries of variable size
5701          (except for arrays that have TYPE_ARRAY_MAX_SIZE set).
5702          So we assume here that something at a higher level has prevented a
5703          clash.  This is somewhat bogus, but the best we can do.  Only
5704          do this when X is BLKmode and when we are at the top level.  */
5705       || (top_p && TREE_TYPE (exp) != 0 && COMPLETE_TYPE_P (TREE_TYPE (exp))
5706           && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST
5707           && (TREE_CODE (TREE_TYPE (exp)) != ARRAY_TYPE
5708               || TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)) == NULL_TREE
5709               || TREE_CODE (TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp)))
5710               != INTEGER_CST)
5711           && GET_MODE (x) == BLKmode)
5712       /* If X is in the outgoing argument area, it is always safe.  */
5713       || (MEM_P (x)
5714           && (XEXP (x, 0) == virtual_outgoing_args_rtx
5715               || (GET_CODE (XEXP (x, 0)) == PLUS
5716                   && XEXP (XEXP (x, 0), 0) == virtual_outgoing_args_rtx))))
5717     return 1;
5718
5719   /* If this is a subreg of a hard register, declare it unsafe, otherwise,
5720      find the underlying pseudo.  */
5721   if (GET_CODE (x) == SUBREG)
5722     {
5723       x = SUBREG_REG (x);
5724       if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
5725         return 0;
5726     }
5727
5728   /* Now look at our tree code and possibly recurse.  */
5729   switch (TREE_CODE_CLASS (TREE_CODE (exp)))
5730     {
5731     case tcc_declaration:
5732       exp_rtl = DECL_RTL_IF_SET (exp);
5733       break;
5734
5735     case tcc_constant:
5736       return 1;
5737
5738     case tcc_exceptional:
5739       if (TREE_CODE (exp) == TREE_LIST)
5740         {
5741           while (1)
5742             {
5743               if (TREE_VALUE (exp) && !safe_from_p (x, TREE_VALUE (exp), 0))
5744                 return 0;
5745               exp = TREE_CHAIN (exp);
5746               if (!exp)
5747                 return 1;
5748               if (TREE_CODE (exp) != TREE_LIST)
5749                 return safe_from_p (x, exp, 0);
5750             }
5751         }
5752       else if (TREE_CODE (exp) == ERROR_MARK)
5753         return 1;       /* An already-visited SAVE_EXPR? */
5754       else
5755         return 0;
5756
5757     case tcc_statement:
5758       /* The only case we look at here is the DECL_INITIAL inside a
5759          DECL_EXPR.  */
5760       return (TREE_CODE (exp) != DECL_EXPR
5761               || TREE_CODE (DECL_EXPR_DECL (exp)) != VAR_DECL
5762               || !DECL_INITIAL (DECL_EXPR_DECL (exp))
5763               || safe_from_p (x, DECL_INITIAL (DECL_EXPR_DECL (exp)), 0));
5764
5765     case tcc_binary:
5766     case tcc_comparison:
5767       if (!safe_from_p (x, TREE_OPERAND (exp, 1), 0))
5768         return 0;
5769       /* Fall through.  */
5770
5771     case tcc_unary:
5772       return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
5773
5774     case tcc_expression:
5775     case tcc_reference:
5776       /* Now do code-specific tests.  EXP_RTL is set to any rtx we find in
5777          the expression.  If it is set, we conflict iff we are that rtx or
5778          both are in memory.  Otherwise, we check all operands of the
5779          expression recursively.  */
5780
5781       switch (TREE_CODE (exp))
5782         {
5783         case ADDR_EXPR:
5784           /* If the operand is static or we are static, we can't conflict.
5785              Likewise if we don't conflict with the operand at all.  */
5786           if (staticp (TREE_OPERAND (exp, 0))
5787               || TREE_STATIC (exp)
5788               || safe_from_p (x, TREE_OPERAND (exp, 0), 0))
5789             return 1;
5790
5791           /* Otherwise, the only way this can conflict is if we are taking
5792              the address of a DECL a that address if part of X, which is
5793              very rare.  */
5794           exp = TREE_OPERAND (exp, 0);
5795           if (DECL_P (exp))
5796             {
5797               if (!DECL_RTL_SET_P (exp)
5798                   || !MEM_P (DECL_RTL (exp)))
5799                 return 0;
5800               else
5801                 exp_rtl = XEXP (DECL_RTL (exp), 0);
5802             }
5803           break;
5804
5805         case MISALIGNED_INDIRECT_REF:
5806         case ALIGN_INDIRECT_REF:
5807         case INDIRECT_REF:
5808           if (MEM_P (x)
5809               && alias_sets_conflict_p (MEM_ALIAS_SET (x),
5810                                         get_alias_set (exp)))
5811             return 0;
5812           break;
5813
5814         case CALL_EXPR:
5815           /* Assume that the call will clobber all hard registers and
5816              all of memory.  */
5817           if ((REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
5818               || MEM_P (x))
5819             return 0;
5820           break;
5821
5822         case WITH_CLEANUP_EXPR:
5823         case CLEANUP_POINT_EXPR:
5824           /* Lowered by gimplify.c.  */
5825           gcc_unreachable ();
5826
5827         case SAVE_EXPR:
5828           return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
5829
5830         default:
5831           break;
5832         }
5833
5834       /* If we have an rtx, we do not need to scan our operands.  */
5835       if (exp_rtl)
5836         break;
5837
5838       nops = TREE_CODE_LENGTH (TREE_CODE (exp));
5839       for (i = 0; i < nops; i++)
5840         if (TREE_OPERAND (exp, i) != 0
5841             && ! safe_from_p (x, TREE_OPERAND (exp, i), 0))
5842           return 0;
5843
5844       /* If this is a language-specific tree code, it may require
5845          special handling.  */
5846       if ((unsigned int) TREE_CODE (exp)
5847           >= (unsigned int) LAST_AND_UNUSED_TREE_CODE
5848           && !lang_hooks.safe_from_p (x, exp))
5849         return 0;
5850       break;
5851
5852     case tcc_type:
5853       /* Should never get a type here.  */
5854       gcc_unreachable ();
5855     }
5856
5857   /* If we have an rtl, find any enclosed object.  Then see if we conflict
5858      with it.  */
5859   if (exp_rtl)
5860     {
5861       if (GET_CODE (exp_rtl) == SUBREG)
5862         {
5863           exp_rtl = SUBREG_REG (exp_rtl);
5864           if (REG_P (exp_rtl)
5865               && REGNO (exp_rtl) < FIRST_PSEUDO_REGISTER)
5866             return 0;
5867         }
5868
5869       /* If the rtl is X, then it is not safe.  Otherwise, it is unless both
5870          are memory and they conflict.  */
5871       return ! (rtx_equal_p (x, exp_rtl)
5872                 || (MEM_P (x) && MEM_P (exp_rtl)
5873                     && true_dependence (exp_rtl, VOIDmode, x,
5874                                         rtx_addr_varies_p)));
5875     }
5876
5877   /* If we reach here, it is safe.  */
5878   return 1;
5879 }
5880
5881 \f
5882 /* Return the highest power of two that EXP is known to be a multiple of.
5883    This is used in updating alignment of MEMs in array references.  */
5884
5885 static unsigned HOST_WIDE_INT
5886 highest_pow2_factor (tree exp)
5887 {
5888   unsigned HOST_WIDE_INT c0, c1;
5889
5890   switch (TREE_CODE (exp))
5891     {
5892     case INTEGER_CST:
5893       /* We can find the lowest bit that's a one.  If the low
5894          HOST_BITS_PER_WIDE_INT bits are zero, return BIGGEST_ALIGNMENT.
5895          We need to handle this case since we can find it in a COND_EXPR,
5896          a MIN_EXPR, or a MAX_EXPR.  If the constant overflows, we have an
5897          erroneous program, so return BIGGEST_ALIGNMENT to avoid any
5898          later ICE.  */
5899       if (TREE_CONSTANT_OVERFLOW (exp))
5900         return BIGGEST_ALIGNMENT;
5901       else
5902         {
5903           /* Note: tree_low_cst is intentionally not used here,
5904              we don't care about the upper bits.  */
5905           c0 = TREE_INT_CST_LOW (exp);
5906           c0 &= -c0;
5907           return c0 ? c0 : BIGGEST_ALIGNMENT;
5908         }
5909       break;
5910
5911     case PLUS_EXPR:  case MINUS_EXPR:  case MIN_EXPR:  case MAX_EXPR:
5912       c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
5913       c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
5914       return MIN (c0, c1);
5915
5916     case MULT_EXPR:
5917       c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
5918       c1 = highest_pow2_factor (TREE_OPERAND (exp, 1));
5919       return c0 * c1;
5920
5921     case ROUND_DIV_EXPR:  case TRUNC_DIV_EXPR:  case FLOOR_DIV_EXPR:
5922     case CEIL_DIV_EXPR:
5923       if (integer_pow2p (TREE_OPERAND (exp, 1))
5924           && host_integerp (TREE_OPERAND (exp, 1), 1))
5925         {
5926           c0 = highest_pow2_factor (TREE_OPERAND (exp, 0));
5927           c1 = tree_low_cst (TREE_OPERAND (exp, 1), 1);
5928           return MAX (1, c0 / c1);
5929         }
5930       break;
5931
5932     case NON_LVALUE_EXPR:  case NOP_EXPR:  case CONVERT_EXPR:
5933     case SAVE_EXPR:
5934       return highest_pow2_factor (TREE_OPERAND (exp, 0));
5935
5936     case COMPOUND_EXPR:
5937       return highest_pow2_factor (TREE_OPERAND (exp, 1));
5938
5939     case COND_EXPR:
5940       c0 = highest_pow2_factor (TREE_OPERAND (exp, 1));
5941       c1 = highest_pow2_factor (TREE_OPERAND (exp, 2));
5942       return MIN (c0, c1);
5943
5944     default:
5945       break;
5946     }
5947
5948   return 1;
5949 }
5950
5951 /* Similar, except that the alignment requirements of TARGET are
5952    taken into account.  Assume it is at least as aligned as its
5953    type, unless it is a COMPONENT_REF in which case the layout of
5954    the structure gives the alignment.  */
5955
5956 static unsigned HOST_WIDE_INT
5957 highest_pow2_factor_for_target (tree target, tree exp)
5958 {
5959   unsigned HOST_WIDE_INT target_align, factor;
5960
5961   factor = highest_pow2_factor (exp);
5962   if (TREE_CODE (target) == COMPONENT_REF)
5963     target_align = DECL_ALIGN_UNIT (TREE_OPERAND (target, 1));
5964   else
5965     target_align = TYPE_ALIGN_UNIT (TREE_TYPE (target));
5966   return MAX (factor, target_align);
5967 }
5968 \f
5969 /* Expands variable VAR.  */
5970
5971 void
5972 expand_var (tree var)
5973 {
5974   if (DECL_EXTERNAL (var))
5975     return;
5976
5977   if (TREE_STATIC (var))
5978     /* If this is an inlined copy of a static local variable,
5979        look up the original decl.  */
5980     var = DECL_ORIGIN (var);
5981
5982   if (TREE_STATIC (var)
5983       ? !TREE_ASM_WRITTEN (var)
5984       : !DECL_RTL_SET_P (var))
5985     {
5986       if (TREE_CODE (var) == VAR_DECL && DECL_VALUE_EXPR (var))
5987         /* Should be ignored.  */;
5988       else if (lang_hooks.expand_decl (var))
5989         /* OK.  */;
5990       else if (TREE_CODE (var) == VAR_DECL && !TREE_STATIC (var))
5991         expand_decl (var);
5992       else if (TREE_CODE (var) == VAR_DECL && TREE_STATIC (var))
5993         rest_of_decl_compilation (var, 0, 0);
5994       else
5995         /* No expansion needed.  */
5996         gcc_assert (TREE_CODE (var) == TYPE_DECL
5997                     || TREE_CODE (var) == CONST_DECL
5998                     || TREE_CODE (var) == FUNCTION_DECL
5999                     || TREE_CODE (var) == LABEL_DECL);
6000     }
6001 }
6002
6003 /* Subroutine of expand_expr.  Expand the two operands of a binary
6004    expression EXP0 and EXP1 placing the results in OP0 and OP1.
6005    The value may be stored in TARGET if TARGET is nonzero.  The
6006    MODIFIER argument is as documented by expand_expr.  */
6007
6008 static void
6009 expand_operands (tree exp0, tree exp1, rtx target, rtx *op0, rtx *op1,
6010                  enum expand_modifier modifier)
6011 {
6012   if (! safe_from_p (target, exp1, 1))
6013     target = 0;
6014   if (operand_equal_p (exp0, exp1, 0))
6015     {
6016       *op0 = expand_expr (exp0, target, VOIDmode, modifier);
6017       *op1 = copy_rtx (*op0);
6018     }
6019   else
6020     {
6021       /* If we need to preserve evaluation order, copy exp0 into its own
6022          temporary variable so that it can't be clobbered by exp1.  */
6023       if (flag_evaluation_order && TREE_SIDE_EFFECTS (exp1))
6024         exp0 = save_expr (exp0);
6025       *op0 = expand_expr (exp0, target, VOIDmode, modifier);
6026       *op1 = expand_expr (exp1, NULL_RTX, VOIDmode, modifier);
6027     }
6028 }
6029
6030 \f
6031 /* A subroutine of expand_expr_addr_expr.  Evaluate the address of EXP.
6032    The TARGET, TMODE and MODIFIER arguments are as for expand_expr.  */
6033
6034 static rtx
6035 expand_expr_addr_expr_1 (tree exp, rtx target, enum machine_mode tmode,
6036                          enum expand_modifier modifier)
6037 {
6038   rtx result, subtarget;
6039   tree inner, offset;
6040   HOST_WIDE_INT bitsize, bitpos;
6041   int volatilep, unsignedp;
6042   enum machine_mode mode1;
6043
6044   /* If we are taking the address of a constant and are at the top level,
6045      we have to use output_constant_def since we can't call force_const_mem
6046      at top level.  */
6047   /* ??? This should be considered a front-end bug.  We should not be
6048      generating ADDR_EXPR of something that isn't an LVALUE.  The only
6049      exception here is STRING_CST.  */
6050   if (TREE_CODE (exp) == CONSTRUCTOR
6051       || CONSTANT_CLASS_P (exp))
6052     return XEXP (output_constant_def (exp, 0), 0);
6053
6054   /* Everything must be something allowed by is_gimple_addressable.  */
6055   switch (TREE_CODE (exp))
6056     {
6057     case INDIRECT_REF:
6058       /* This case will happen via recursion for &a->b.  */
6059       return expand_expr (TREE_OPERAND (exp, 0), target, tmode, EXPAND_NORMAL);
6060
6061     case CONST_DECL:
6062       /* Recurse and make the output_constant_def clause above handle this.  */
6063       return expand_expr_addr_expr_1 (DECL_INITIAL (exp), target,
6064                                       tmode, modifier);
6065
6066     case REALPART_EXPR:
6067       /* The real part of the complex number is always first, therefore
6068          the address is the same as the address of the parent object.  */
6069       offset = 0;
6070       bitpos = 0;
6071       inner = TREE_OPERAND (exp, 0);
6072       break;
6073
6074     case IMAGPART_EXPR:
6075       /* The imaginary part of the complex number is always second.
6076          The expression is therefore always offset by the size of the
6077          scalar type.  */
6078       offset = 0;
6079       bitpos = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp)));
6080       inner = TREE_OPERAND (exp, 0);
6081       break;
6082
6083     default:
6084       /* If the object is a DECL, then expand it for its rtl.  Don't bypass
6085          expand_expr, as that can have various side effects; LABEL_DECLs for
6086          example, may not have their DECL_RTL set yet.  Assume language
6087          specific tree nodes can be expanded in some interesting way.  */
6088       if (DECL_P (exp)
6089           || TREE_CODE (exp) >= LAST_AND_UNUSED_TREE_CODE)
6090         {
6091           result = expand_expr (exp, target, tmode,
6092                                 modifier == EXPAND_INITIALIZER
6093                                 ? EXPAND_INITIALIZER : EXPAND_CONST_ADDRESS);
6094
6095           /* If the DECL isn't in memory, then the DECL wasn't properly
6096              marked TREE_ADDRESSABLE, which will be either a front-end
6097              or a tree optimizer bug.  */
6098           gcc_assert (GET_CODE (result) == MEM);
6099           result = XEXP (result, 0);
6100
6101           /* ??? Is this needed anymore?  */
6102           if (DECL_P (exp) && !TREE_USED (exp) == 0)
6103             {
6104               assemble_external (exp);
6105               TREE_USED (exp) = 1;
6106             }
6107
6108           if (modifier != EXPAND_INITIALIZER
6109               && modifier != EXPAND_CONST_ADDRESS)
6110             result = force_operand (result, target);
6111           return result;
6112         }
6113
6114       /* Pass FALSE as the last argument to get_inner_reference although
6115          we are expanding to RTL.  The rationale is that we know how to
6116          handle "aligning nodes" here: we can just bypass them because
6117          they won't change the final object whose address will be returned
6118          (they actually exist only for that purpose).  */
6119       inner = get_inner_reference (exp, &bitsize, &bitpos, &offset,
6120                                    &mode1, &unsignedp, &volatilep, false);
6121       break;
6122     }
6123
6124   /* We must have made progress.  */
6125   gcc_assert (inner != exp);
6126
6127   subtarget = offset || bitpos ? NULL_RTX : target;
6128   result = expand_expr_addr_expr_1 (inner, subtarget, tmode, modifier);
6129
6130   if (offset)
6131     {
6132       rtx tmp;
6133
6134       if (modifier != EXPAND_NORMAL)
6135         result = force_operand (result, NULL);
6136       tmp = expand_expr (offset, NULL, tmode, EXPAND_NORMAL);
6137
6138       result = convert_memory_address (tmode, result);
6139       tmp = convert_memory_address (tmode, tmp);
6140
6141       if (modifier == EXPAND_SUM)
6142         result = gen_rtx_PLUS (tmode, result, tmp);
6143       else
6144         {
6145           subtarget = bitpos ? NULL_RTX : target;
6146           result = expand_simple_binop (tmode, PLUS, result, tmp, subtarget,
6147                                         1, OPTAB_LIB_WIDEN);
6148         }
6149     }
6150
6151   if (bitpos)
6152     {
6153       /* Someone beforehand should have rejected taking the address
6154          of such an object.  */
6155       gcc_assert ((bitpos % BITS_PER_UNIT) == 0);
6156
6157       result = plus_constant (result, bitpos / BITS_PER_UNIT);
6158       if (modifier < EXPAND_SUM)
6159         result = force_operand (result, target);
6160     }
6161
6162   return result;
6163 }
6164
6165 /* A subroutine of expand_expr.  Evaluate EXP, which is an ADDR_EXPR.
6166    The TARGET, TMODE and MODIFIER arguments are as for expand_expr.  */
6167
6168 static rtx
6169 expand_expr_addr_expr (tree exp, rtx target, enum machine_mode tmode,
6170                        enum expand_modifier modifier)
6171 {
6172   enum machine_mode rmode;
6173   rtx result;
6174
6175   /* Target mode of VOIDmode says "whatever's natural".  */
6176   if (tmode == VOIDmode)
6177     tmode = TYPE_MODE (TREE_TYPE (exp));
6178
6179   /* We can get called with some Weird Things if the user does silliness
6180      like "(short) &a".  In that case, convert_memory_address won't do
6181      the right thing, so ignore the given target mode.  */
6182   if (tmode != Pmode && tmode != ptr_mode)
6183     tmode = Pmode;
6184
6185   result = expand_expr_addr_expr_1 (TREE_OPERAND (exp, 0), target,
6186                                     tmode, modifier);
6187
6188   /* Despite expand_expr claims concerning ignoring TMODE when not
6189      strictly convenient, stuff breaks if we don't honor it.  Note
6190      that combined with the above, we only do this for pointer modes.  */
6191   rmode = GET_MODE (result);
6192   if (rmode == VOIDmode)
6193     rmode = tmode;
6194   if (rmode != tmode)
6195     result = convert_memory_address (tmode, result);
6196
6197   return result;
6198 }
6199
6200
6201 /* expand_expr: generate code for computing expression EXP.
6202    An rtx for the computed value is returned.  The value is never null.
6203    In the case of a void EXP, const0_rtx is returned.
6204
6205    The value may be stored in TARGET if TARGET is nonzero.
6206    TARGET is just a suggestion; callers must assume that
6207    the rtx returned may not be the same as TARGET.
6208
6209    If TARGET is CONST0_RTX, it means that the value will be ignored.
6210
6211    If TMODE is not VOIDmode, it suggests generating the
6212    result in mode TMODE.  But this is done only when convenient.
6213    Otherwise, TMODE is ignored and the value generated in its natural mode.
6214    TMODE is just a suggestion; callers must assume that
6215    the rtx returned may not have mode TMODE.
6216
6217    Note that TARGET may have neither TMODE nor MODE.  In that case, it
6218    probably will not be used.
6219
6220    If MODIFIER is EXPAND_SUM then when EXP is an addition
6221    we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
6222    or a nest of (PLUS ...) and (MINUS ...) where the terms are
6223    products as above, or REG or MEM, or constant.
6224    Ordinarily in such cases we would output mul or add instructions
6225    and then return a pseudo reg containing the sum.
6226
6227    EXPAND_INITIALIZER is much like EXPAND_SUM except that
6228    it also marks a label as absolutely required (it can't be dead).
6229    It also makes a ZERO_EXTEND or SIGN_EXTEND instead of emitting extend insns.
6230    This is used for outputting expressions used in initializers.
6231
6232    EXPAND_CONST_ADDRESS says that it is okay to return a MEM
6233    with a constant address even if that address is not normally legitimate.
6234    EXPAND_INITIALIZER and EXPAND_SUM also have this effect.
6235
6236    EXPAND_STACK_PARM is used when expanding to a TARGET on the stack for
6237    a call parameter.  Such targets require special care as we haven't yet
6238    marked TARGET so that it's safe from being trashed by libcalls.  We
6239    don't want to use TARGET for anything but the final result;
6240    Intermediate values must go elsewhere.   Additionally, calls to
6241    emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
6242
6243    If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
6244    address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
6245    DECL_RTL of the VAR_DECL.  *ALT_RTL is also set if EXP is a
6246    COMPOUND_EXPR whose second argument is such a VAR_DECL, and so on
6247    recursively.  */
6248
6249 static rtx expand_expr_real_1 (tree, rtx, enum machine_mode,
6250                                enum expand_modifier, rtx *);
6251
6252 rtx
6253 expand_expr_real (tree exp, rtx target, enum machine_mode tmode,
6254                   enum expand_modifier modifier, rtx *alt_rtl)
6255 {
6256   int rn = -1;
6257   rtx ret, last = NULL;
6258
6259   /* Handle ERROR_MARK before anybody tries to access its type.  */
6260   if (TREE_CODE (exp) == ERROR_MARK
6261       || TREE_CODE (TREE_TYPE (exp)) == ERROR_MARK)
6262     {
6263       ret = CONST0_RTX (tmode);
6264       return ret ? ret : const0_rtx;
6265     }
6266
6267   if (flag_non_call_exceptions)
6268     {
6269       rn = lookup_stmt_eh_region (exp);
6270       /* If rn < 0, then either (1) tree-ssa not used or (2) doesn't throw.  */
6271       if (rn >= 0)
6272         last = get_last_insn ();
6273     }
6274
6275   /* If this is an expression of some kind and it has an associated line
6276      number, then emit the line number before expanding the expression.
6277
6278      We need to save and restore the file and line information so that
6279      errors discovered during expansion are emitted with the right
6280      information.  It would be better of the diagnostic routines
6281      used the file/line information embedded in the tree nodes rather
6282      than globals.  */
6283   if (cfun && EXPR_HAS_LOCATION (exp))
6284     {
6285       location_t saved_location = input_location;
6286       input_location = EXPR_LOCATION (exp);
6287       emit_line_note (input_location);
6288
6289       /* Record where the insns produced belong.  */
6290       record_block_change (TREE_BLOCK (exp));
6291
6292       ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
6293
6294       input_location = saved_location;
6295     }
6296   else
6297     {
6298       ret = expand_expr_real_1 (exp, target, tmode, modifier, alt_rtl);
6299     }
6300
6301   /* If using non-call exceptions, mark all insns that may trap.
6302      expand_call() will mark CALL_INSNs before we get to this code,
6303      but it doesn't handle libcalls, and these may trap.  */
6304   if (rn >= 0)
6305     {
6306       rtx insn;
6307       for (insn = next_real_insn (last); insn;
6308            insn = next_real_insn (insn))
6309         {
6310           if (! find_reg_note (insn, REG_EH_REGION, NULL_RTX)
6311               /* If we want exceptions for non-call insns, any
6312                  may_trap_p instruction may throw.  */
6313               && GET_CODE (PATTERN (insn)) != CLOBBER
6314               && GET_CODE (PATTERN (insn)) != USE
6315               && (CALL_P (insn) || may_trap_p (PATTERN (insn))))
6316             {
6317               REG_NOTES (insn) = alloc_EXPR_LIST (REG_EH_REGION, GEN_INT (rn),
6318                                                   REG_NOTES (insn));
6319             }
6320         }
6321     }
6322
6323   return ret;
6324 }
6325
6326 static rtx
6327 expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
6328                     enum expand_modifier modifier, rtx *alt_rtl)
6329 {
6330   rtx op0, op1, temp;
6331   tree type = TREE_TYPE (exp);
6332   int unsignedp;
6333   enum machine_mode mode;
6334   enum tree_code code = TREE_CODE (exp);
6335   optab this_optab;
6336   rtx subtarget, original_target;
6337   int ignore;
6338   tree context;
6339   bool reduce_bit_field = false;
6340 #define REDUCE_BIT_FIELD(expr)  (reduce_bit_field && !ignore              \
6341                                  ? reduce_to_bit_field_precision ((expr), \
6342                                                                   target, \
6343                                                                   type)   \
6344                                  : (expr))
6345
6346   mode = TYPE_MODE (type);
6347   unsignedp = TYPE_UNSIGNED (type);
6348   if (lang_hooks.reduce_bit_field_operations
6349       && TREE_CODE (type) == INTEGER_TYPE
6350       && GET_MODE_PRECISION (mode) > TYPE_PRECISION (type))
6351     {
6352       /* An operation in what may be a bit-field type needs the
6353          result to be reduced to the precision of the bit-field type,
6354          which is narrower than that of the type's mode.  */
6355       reduce_bit_field = true;
6356       if (modifier == EXPAND_STACK_PARM)
6357         target = 0;
6358     }
6359
6360   /* Use subtarget as the target for operand 0 of a binary operation.  */
6361   subtarget = get_subtarget (target);
6362   original_target = target;
6363   ignore = (target == const0_rtx
6364             || ((code == NON_LVALUE_EXPR || code == NOP_EXPR
6365                  || code == CONVERT_EXPR || code == COND_EXPR
6366                  || code == VIEW_CONVERT_EXPR)
6367                 && TREE_CODE (type) == VOID_TYPE));
6368
6369   /* If we are going to ignore this result, we need only do something
6370      if there is a side-effect somewhere in the expression.  If there
6371      is, short-circuit the most common cases here.  Note that we must
6372      not call expand_expr with anything but const0_rtx in case this
6373      is an initial expansion of a size that contains a PLACEHOLDER_EXPR.  */
6374
6375   if (ignore)
6376     {
6377       if (! TREE_SIDE_EFFECTS (exp))
6378         return const0_rtx;
6379
6380       /* Ensure we reference a volatile object even if value is ignored, but
6381          don't do this if all we are doing is taking its address.  */
6382       if (TREE_THIS_VOLATILE (exp)
6383           && TREE_CODE (exp) != FUNCTION_DECL
6384           && mode != VOIDmode && mode != BLKmode
6385           && modifier != EXPAND_CONST_ADDRESS)
6386         {
6387           temp = expand_expr (exp, NULL_RTX, VOIDmode, modifier);
6388           if (MEM_P (temp))
6389             temp = copy_to_reg (temp);
6390           return const0_rtx;
6391         }
6392
6393       if (TREE_CODE_CLASS (code) == tcc_unary
6394           || code == COMPONENT_REF || code == INDIRECT_REF)
6395         return expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode,
6396                             modifier);
6397
6398       else if (TREE_CODE_CLASS (code) == tcc_binary
6399                || TREE_CODE_CLASS (code) == tcc_comparison
6400                || code == ARRAY_REF || code == ARRAY_RANGE_REF)
6401         {
6402           expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, modifier);
6403           expand_expr (TREE_OPERAND (exp, 1), const0_rtx, VOIDmode, modifier);
6404           return const0_rtx;
6405         }
6406       else if (code == BIT_FIELD_REF)
6407         {
6408           expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, modifier);
6409           expand_expr (TREE_OPERAND (exp, 1), const0_rtx, VOIDmode, modifier);
6410           expand_expr (TREE_OPERAND (exp, 2), const0_rtx, VOIDmode, modifier);
6411           return const0_rtx;
6412         }
6413
6414       target = 0;
6415     }
6416
6417   /* If will do cse, generate all results into pseudo registers
6418      since 1) that allows cse to find more things
6419      and 2) otherwise cse could produce an insn the machine
6420      cannot support.  An exception is a CONSTRUCTOR into a multi-word
6421      MEM: that's much more likely to be most efficient into the MEM.
6422      Another is a CALL_EXPR which must return in memory.  */
6423
6424   if (! cse_not_expected && mode != BLKmode && target
6425       && (!REG_P (target) || REGNO (target) < FIRST_PSEUDO_REGISTER)
6426       && ! (code == CONSTRUCTOR && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
6427       && ! (code == CALL_EXPR && aggregate_value_p (exp, exp)))
6428     target = 0;
6429
6430   switch (code)
6431     {
6432     case LABEL_DECL:
6433       {
6434         tree function = decl_function_context (exp);
6435
6436         temp = label_rtx (exp);
6437         temp = gen_rtx_LABEL_REF (Pmode, temp);
6438
6439         if (function != current_function_decl
6440             && function != 0)
6441           LABEL_REF_NONLOCAL_P (temp) = 1;
6442
6443         temp = gen_rtx_MEM (FUNCTION_MODE, temp);
6444         return temp;
6445       }
6446
6447     case SSA_NAME:
6448       return expand_expr_real_1 (SSA_NAME_VAR (exp), target, tmode, modifier,
6449                                  NULL);
6450
6451     case PARM_DECL:
6452     case VAR_DECL:
6453       /* If a static var's type was incomplete when the decl was written,
6454          but the type is complete now, lay out the decl now.  */
6455       if (DECL_SIZE (exp) == 0
6456           && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (TREE_TYPE (exp))
6457           && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
6458         layout_decl (exp, 0);
6459
6460       /* ... fall through ...  */
6461
6462     case FUNCTION_DECL:
6463     case RESULT_DECL:
6464       gcc_assert (DECL_RTL (exp));
6465
6466       /* Ensure variable marked as used even if it doesn't go through
6467          a parser.  If it hasn't be used yet, write out an external
6468          definition.  */
6469       if (! TREE_USED (exp))
6470         {
6471           assemble_external (exp);
6472           TREE_USED (exp) = 1;
6473         }
6474
6475       /* Show we haven't gotten RTL for this yet.  */
6476       temp = 0;
6477
6478       /* Variables inherited from containing functions should have
6479          been lowered by this point.  */
6480       context = decl_function_context (exp);
6481       gcc_assert (!context
6482                   || context == current_function_decl
6483                   || TREE_STATIC (exp)
6484                   /* ??? C++ creates functions that are not TREE_STATIC.  */
6485                   || TREE_CODE (exp) == FUNCTION_DECL);
6486
6487       /* This is the case of an array whose size is to be determined
6488          from its initializer, while the initializer is still being parsed.
6489          See expand_decl.  */
6490
6491       if (MEM_P (DECL_RTL (exp))
6492                && REG_P (XEXP (DECL_RTL (exp), 0)))
6493         temp = validize_mem (DECL_RTL (exp));
6494
6495       /* If DECL_RTL is memory, we are in the normal case and either
6496          the address is not valid or it is not a register and -fforce-addr
6497          is specified, get the address into a register.  */
6498
6499       else if (MEM_P (DECL_RTL (exp))
6500                && modifier != EXPAND_CONST_ADDRESS
6501                && modifier != EXPAND_SUM
6502                && modifier != EXPAND_INITIALIZER
6503                && (! memory_address_p (DECL_MODE (exp),
6504                                        XEXP (DECL_RTL (exp), 0))
6505                    || (flag_force_addr
6506                        && !REG_P (XEXP (DECL_RTL (exp), 0)))))
6507         {
6508           if (alt_rtl)
6509             *alt_rtl = DECL_RTL (exp);
6510           temp = replace_equiv_address (DECL_RTL (exp),
6511                                         copy_rtx (XEXP (DECL_RTL (exp), 0)));
6512         }
6513
6514       /* If we got something, return it.  But first, set the alignment
6515          if the address is a register.  */
6516       if (temp != 0)
6517         {
6518           if (MEM_P (temp) && REG_P (XEXP (temp, 0)))
6519             mark_reg_pointer (XEXP (temp, 0), DECL_ALIGN (exp));
6520
6521           return temp;
6522         }
6523
6524       /* If the mode of DECL_RTL does not match that of the decl, it
6525          must be a promoted value.  We return a SUBREG of the wanted mode,
6526          but mark it so that we know that it was already extended.  */
6527
6528       if (REG_P (DECL_RTL (exp))
6529           && GET_MODE (DECL_RTL (exp)) != DECL_MODE (exp))
6530         {
6531           enum machine_mode pmode;
6532           
6533           /* Get the signedness used for this variable.  Ensure we get the
6534              same mode we got when the variable was declared.  */
6535           pmode = promote_mode (type, DECL_MODE (exp), &unsignedp,
6536                                 (TREE_CODE (exp) == RESULT_DECL ? 1 : 0));
6537           gcc_assert (GET_MODE (DECL_RTL (exp)) == pmode);
6538
6539           temp = gen_lowpart_SUBREG (mode, DECL_RTL (exp));
6540           SUBREG_PROMOTED_VAR_P (temp) = 1;
6541           SUBREG_PROMOTED_UNSIGNED_SET (temp, unsignedp);
6542           return temp;
6543         }
6544
6545       return DECL_RTL (exp);
6546
6547     case INTEGER_CST:
6548       temp = immed_double_const (TREE_INT_CST_LOW (exp),
6549                                  TREE_INT_CST_HIGH (exp), mode);
6550
6551       /* ??? If overflow is set, fold will have done an incomplete job,
6552          which can result in (plus xx (const_int 0)), which can get
6553          simplified by validate_replace_rtx during virtual register
6554          instantiation, which can result in unrecognizable insns.
6555          Avoid this by forcing all overflows into registers.  */
6556       if (TREE_CONSTANT_OVERFLOW (exp)
6557           && modifier != EXPAND_INITIALIZER)
6558         temp = force_reg (mode, temp);
6559
6560       return temp;
6561
6562     case VECTOR_CST:
6563       if (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (exp))) == MODE_VECTOR_INT
6564           || GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (exp))) == MODE_VECTOR_FLOAT)
6565         return const_vector_from_tree (exp);
6566       else
6567         return expand_expr (build1 (CONSTRUCTOR, TREE_TYPE (exp),
6568                                     TREE_VECTOR_CST_ELTS (exp)),
6569                             ignore ? const0_rtx : target, tmode, modifier);
6570
6571     case CONST_DECL:
6572       return expand_expr (DECL_INITIAL (exp), target, VOIDmode, modifier);
6573
6574     case REAL_CST:
6575       /* If optimized, generate immediate CONST_DOUBLE
6576          which will be turned into memory by reload if necessary.
6577
6578          We used to force a register so that loop.c could see it.  But
6579          this does not allow gen_* patterns to perform optimizations with
6580          the constants.  It also produces two insns in cases like "x = 1.0;".
6581          On most machines, floating-point constants are not permitted in
6582          many insns, so we'd end up copying it to a register in any case.
6583
6584          Now, we do the copying in expand_binop, if appropriate.  */
6585       return CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (exp),
6586                                            TYPE_MODE (TREE_TYPE (exp)));
6587
6588     case COMPLEX_CST:
6589       /* Handle evaluating a complex constant in a CONCAT target.  */
6590       if (original_target && GET_CODE (original_target) == CONCAT)
6591         {
6592           enum machine_mode mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
6593           rtx rtarg, itarg;
6594
6595           rtarg = XEXP (original_target, 0);
6596           itarg = XEXP (original_target, 1);
6597
6598           /* Move the real and imaginary parts separately.  */
6599           op0 = expand_expr (TREE_REALPART (exp), rtarg, mode, 0);
6600           op1 = expand_expr (TREE_IMAGPART (exp), itarg, mode, 0);
6601
6602           if (op0 != rtarg)
6603             emit_move_insn (rtarg, op0);
6604           if (op1 != itarg)
6605             emit_move_insn (itarg, op1);
6606
6607           return original_target;
6608         }
6609
6610       /* ... fall through ...  */
6611
6612     case STRING_CST:
6613       temp = output_constant_def (exp, 1);
6614
6615       /* temp contains a constant address.
6616          On RISC machines where a constant address isn't valid,
6617          make some insns to get that address into a register.  */
6618       if (modifier != EXPAND_CONST_ADDRESS
6619           && modifier != EXPAND_INITIALIZER
6620           && modifier != EXPAND_SUM
6621           && (! memory_address_p (mode, XEXP (temp, 0))
6622               || flag_force_addr))
6623         return replace_equiv_address (temp,
6624                                       copy_rtx (XEXP (temp, 0)));
6625       return temp;
6626
6627     case SAVE_EXPR:
6628       {
6629         tree val = TREE_OPERAND (exp, 0);
6630         rtx ret = expand_expr_real_1 (val, target, tmode, modifier, alt_rtl);
6631
6632         if (!SAVE_EXPR_RESOLVED_P (exp))
6633           {
6634             /* We can indeed still hit this case, typically via builtin
6635                expanders calling save_expr immediately before expanding
6636                something.  Assume this means that we only have to deal
6637                with non-BLKmode values.  */
6638             gcc_assert (GET_MODE (ret) != BLKmode);
6639
6640             val = build_decl (VAR_DECL, NULL, TREE_TYPE (exp));
6641             DECL_ARTIFICIAL (val) = 1;
6642             DECL_IGNORED_P (val) = 1;
6643             TREE_OPERAND (exp, 0) = val;
6644             SAVE_EXPR_RESOLVED_P (exp) = 1;
6645
6646             if (!CONSTANT_P (ret))
6647               ret = copy_to_reg (ret);
6648             SET_DECL_RTL (val, ret);
6649           }
6650
6651         return ret;
6652       }
6653
6654     case GOTO_EXPR:
6655       if (TREE_CODE (TREE_OPERAND (exp, 0)) == LABEL_DECL)
6656         expand_goto (TREE_OPERAND (exp, 0));
6657       else
6658         expand_computed_goto (TREE_OPERAND (exp, 0));
6659       return const0_rtx;
6660
6661     case CONSTRUCTOR:
6662       /* If we don't need the result, just ensure we evaluate any
6663          subexpressions.  */
6664       if (ignore)
6665         {
6666           tree elt;
6667
6668           for (elt = CONSTRUCTOR_ELTS (exp); elt; elt = TREE_CHAIN (elt))
6669             expand_expr (TREE_VALUE (elt), const0_rtx, VOIDmode, 0);
6670
6671           return const0_rtx;
6672         }
6673
6674       /* All elts simple constants => refer to a constant in memory.  But
6675          if this is a non-BLKmode mode, let it store a field at a time
6676          since that should make a CONST_INT or CONST_DOUBLE when we
6677          fold.  Likewise, if we have a target we can use, it is best to
6678          store directly into the target unless the type is large enough
6679          that memcpy will be used.  If we are making an initializer and
6680          all operands are constant, put it in memory as well.
6681
6682         FIXME: Avoid trying to fill vector constructors piece-meal.
6683         Output them with output_constant_def below unless we're sure
6684         they're zeros.  This should go away when vector initializers
6685         are treated like VECTOR_CST instead of arrays.
6686       */
6687       else if ((TREE_STATIC (exp)
6688                 && ((mode == BLKmode
6689                      && ! (target != 0 && safe_from_p (target, exp, 1)))
6690                     || TREE_ADDRESSABLE (exp)
6691                     || (host_integerp (TYPE_SIZE_UNIT (type), 1)
6692                         && (! MOVE_BY_PIECES_P
6693                             (tree_low_cst (TYPE_SIZE_UNIT (type), 1),
6694                              TYPE_ALIGN (type)))
6695                         && ! mostly_zeros_p (exp))))
6696                || ((modifier == EXPAND_INITIALIZER
6697                     || modifier == EXPAND_CONST_ADDRESS)
6698                    && TREE_CONSTANT (exp)))
6699         {
6700           rtx constructor = output_constant_def (exp, 1);
6701
6702           if (modifier != EXPAND_CONST_ADDRESS
6703               && modifier != EXPAND_INITIALIZER
6704               && modifier != EXPAND_SUM)
6705             constructor = validize_mem (constructor);
6706
6707           return constructor;
6708         }
6709       else
6710         {
6711           /* Handle calls that pass values in multiple non-contiguous
6712              locations.  The Irix 6 ABI has examples of this.  */
6713           if (target == 0 || ! safe_from_p (target, exp, 1)
6714               || GET_CODE (target) == PARALLEL
6715               || modifier == EXPAND_STACK_PARM)
6716             target
6717               = assign_temp (build_qualified_type (type,
6718                                                    (TYPE_QUALS (type)
6719                                                     | (TREE_READONLY (exp)
6720                                                        * TYPE_QUAL_CONST))),
6721                              0, TREE_ADDRESSABLE (exp), 1);
6722
6723           store_constructor (exp, target, 0, int_expr_size (exp));
6724           return target;
6725         }
6726
6727     case MISALIGNED_INDIRECT_REF:
6728     case ALIGN_INDIRECT_REF:
6729     case INDIRECT_REF:
6730       {
6731         tree exp1 = TREE_OPERAND (exp, 0);
6732         tree orig;
6733
6734         if (modifier != EXPAND_WRITE)
6735           {
6736             tree t;
6737
6738             t = fold_read_from_constant_string (exp);
6739             if (t)
6740               return expand_expr (t, target, tmode, modifier);
6741           }
6742
6743         op0 = expand_expr (exp1, NULL_RTX, VOIDmode, EXPAND_SUM);
6744         op0 = memory_address (mode, op0);
6745
6746         if (code == ALIGN_INDIRECT_REF)
6747           {
6748             int align = TYPE_ALIGN_UNIT (type);
6749             op0 = gen_rtx_AND (Pmode, op0, GEN_INT (-align));
6750             op0 = memory_address (mode, op0);
6751           }
6752
6753         temp = gen_rtx_MEM (mode, op0);
6754
6755         orig = REF_ORIGINAL (exp);
6756         if (!orig)
6757           orig = exp;
6758         set_mem_attributes (temp, orig, 0);
6759
6760         /* Resolve the misalignment now, so that we don't have to remember
6761            to resolve it later.  Of course, this only works for reads.  */
6762         /* ??? When we get around to supporting writes, we'll have to handle
6763            this in store_expr directly.  The vectorizer isn't generating
6764            those yet, however.  */
6765         if (code == MISALIGNED_INDIRECT_REF)
6766           {
6767             int icode;
6768             rtx reg, insn;
6769
6770             gcc_assert (modifier == EXPAND_NORMAL);
6771
6772             /* The vectorizer should have already checked the mode.  */
6773             icode = movmisalign_optab->handlers[mode].insn_code;
6774             gcc_assert (icode != CODE_FOR_nothing);
6775
6776             /* We've already validated the memory, and we're creating a
6777                new pseudo destination.  The predicates really can't fail.  */
6778             reg = gen_reg_rtx (mode);
6779
6780             /* Nor can the insn generator.  */
6781             insn = GEN_FCN (icode) (reg, temp);
6782             emit_insn (insn);
6783
6784             return reg;
6785           }
6786
6787         return temp;
6788       }
6789
6790     case ARRAY_REF:
6791
6792       {
6793         tree array = TREE_OPERAND (exp, 0);
6794         tree index = TREE_OPERAND (exp, 1);
6795
6796         /* Fold an expression like: "foo"[2].
6797            This is not done in fold so it won't happen inside &.
6798            Don't fold if this is for wide characters since it's too
6799            difficult to do correctly and this is a very rare case.  */
6800
6801         if (modifier != EXPAND_CONST_ADDRESS
6802             && modifier != EXPAND_INITIALIZER
6803             && modifier != EXPAND_MEMORY)
6804           {
6805             tree t = fold_read_from_constant_string (exp);
6806
6807             if (t)
6808               return expand_expr (t, target, tmode, modifier);
6809           }
6810
6811         /* If this is a constant index into a constant array,
6812            just get the value from the array.  Handle both the cases when
6813            we have an explicit constructor and when our operand is a variable
6814            that was declared const.  */
6815
6816         if (modifier != EXPAND_CONST_ADDRESS
6817             && modifier != EXPAND_INITIALIZER
6818             && modifier != EXPAND_MEMORY
6819             && TREE_CODE (array) == CONSTRUCTOR
6820             && ! TREE_SIDE_EFFECTS (array)
6821             && TREE_CODE (index) == INTEGER_CST)
6822           {
6823             tree elem;
6824
6825             for (elem = CONSTRUCTOR_ELTS (array);
6826                  (elem && !tree_int_cst_equal (TREE_PURPOSE (elem), index));
6827                  elem = TREE_CHAIN (elem))
6828               ;
6829
6830             if (elem && !TREE_SIDE_EFFECTS (TREE_VALUE (elem)))
6831               return expand_expr (fold (TREE_VALUE (elem)), target, tmode,
6832                                   modifier);
6833           }
6834
6835         else if (optimize >= 1
6836                  && modifier != EXPAND_CONST_ADDRESS
6837                  && modifier != EXPAND_INITIALIZER
6838                  && modifier != EXPAND_MEMORY
6839                  && TREE_READONLY (array) && ! TREE_SIDE_EFFECTS (array)
6840                  && TREE_CODE (array) == VAR_DECL && DECL_INITIAL (array)
6841                  && TREE_CODE (DECL_INITIAL (array)) != ERROR_MARK
6842                  && targetm.binds_local_p (array))
6843           {
6844             if (TREE_CODE (index) == INTEGER_CST)
6845               {
6846                 tree init = DECL_INITIAL (array);
6847
6848                 if (TREE_CODE (init) == CONSTRUCTOR)
6849                   {
6850                     tree elem;
6851
6852                     for (elem = CONSTRUCTOR_ELTS (init);
6853                          (elem
6854                           && !tree_int_cst_equal (TREE_PURPOSE (elem), index));
6855                          elem = TREE_CHAIN (elem))
6856                       ;
6857
6858                     if (elem && !TREE_SIDE_EFFECTS (TREE_VALUE (elem)))
6859                       return expand_expr (fold (TREE_VALUE (elem)), target,
6860                                           tmode, modifier);
6861                   }
6862                 else if (TREE_CODE (init) == STRING_CST
6863                          && 0 > compare_tree_int (index,
6864                                                   TREE_STRING_LENGTH (init)))
6865                   {
6866                     tree type = TREE_TYPE (TREE_TYPE (init));
6867                     enum machine_mode mode = TYPE_MODE (type);
6868
6869                     if (GET_MODE_CLASS (mode) == MODE_INT
6870                         && GET_MODE_SIZE (mode) == 1)
6871                       return gen_int_mode (TREE_STRING_POINTER (init)
6872                                            [TREE_INT_CST_LOW (index)], mode);
6873                   }
6874               }
6875           }
6876       }
6877       goto normal_inner_ref;
6878
6879     case COMPONENT_REF:
6880       /* If the operand is a CONSTRUCTOR, we can just extract the
6881          appropriate field if it is present.  */
6882       if (TREE_CODE (TREE_OPERAND (exp, 0)) == CONSTRUCTOR)
6883         {
6884           tree elt;
6885
6886           for (elt = CONSTRUCTOR_ELTS (TREE_OPERAND (exp, 0)); elt;
6887                elt = TREE_CHAIN (elt))
6888             if (TREE_PURPOSE (elt) == TREE_OPERAND (exp, 1)
6889                 /* We can normally use the value of the field in the
6890                    CONSTRUCTOR.  However, if this is a bitfield in
6891                    an integral mode that we can fit in a HOST_WIDE_INT,
6892                    we must mask only the number of bits in the bitfield,
6893                    since this is done implicitly by the constructor.  If
6894                    the bitfield does not meet either of those conditions,
6895                    we can't do this optimization.  */
6896                 && (! DECL_BIT_FIELD (TREE_PURPOSE (elt))
6897                     || ((GET_MODE_CLASS (DECL_MODE (TREE_PURPOSE (elt)))
6898                          == MODE_INT)
6899                         && (GET_MODE_BITSIZE (DECL_MODE (TREE_PURPOSE (elt)))
6900                             <= HOST_BITS_PER_WIDE_INT))))
6901               {
6902                 if (DECL_BIT_FIELD (TREE_PURPOSE (elt))
6903                     && modifier == EXPAND_STACK_PARM)
6904                   target = 0;
6905                 op0 = expand_expr (TREE_VALUE (elt), target, tmode, modifier);
6906                 if (DECL_BIT_FIELD (TREE_PURPOSE (elt)))
6907                   {
6908                     HOST_WIDE_INT bitsize
6909                       = TREE_INT_CST_LOW (DECL_SIZE (TREE_PURPOSE (elt)));
6910                     enum machine_mode imode
6911                       = TYPE_MODE (TREE_TYPE (TREE_PURPOSE (elt)));
6912
6913                     if (TYPE_UNSIGNED (TREE_TYPE (TREE_PURPOSE (elt))))
6914                       {
6915                         op1 = GEN_INT (((HOST_WIDE_INT) 1 << bitsize) - 1);
6916                         op0 = expand_and (imode, op0, op1, target);
6917                       }
6918                     else
6919                       {
6920                         tree count
6921                           = build_int_cst (NULL_TREE,
6922                                            GET_MODE_BITSIZE (imode) - bitsize);
6923
6924                         op0 = expand_shift (LSHIFT_EXPR, imode, op0, count,
6925                                             target, 0);
6926                         op0 = expand_shift (RSHIFT_EXPR, imode, op0, count,
6927                                             target, 0);
6928                       }
6929                   }
6930
6931                 return op0;
6932               }
6933         }
6934       goto normal_inner_ref;
6935
6936     case BIT_FIELD_REF:
6937     case ARRAY_RANGE_REF:
6938     normal_inner_ref:
6939       {
6940         enum machine_mode mode1;
6941         HOST_WIDE_INT bitsize, bitpos;
6942         tree offset;
6943         int volatilep = 0;
6944         tree tem = get_inner_reference (exp, &bitsize, &bitpos, &offset,
6945                                         &mode1, &unsignedp, &volatilep, true);
6946         rtx orig_op0;
6947
6948         /* If we got back the original object, something is wrong.  Perhaps
6949            we are evaluating an expression too early.  In any event, don't
6950            infinitely recurse.  */
6951         gcc_assert (tem != exp);
6952
6953         /* If TEM's type is a union of variable size, pass TARGET to the inner
6954            computation, since it will need a temporary and TARGET is known
6955            to have to do.  This occurs in unchecked conversion in Ada.  */
6956
6957         orig_op0 = op0
6958           = expand_expr (tem,
6959                          (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
6960                           && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem)))
6961                               != INTEGER_CST)
6962                           && modifier != EXPAND_STACK_PARM
6963                           ? target : NULL_RTX),
6964                          VOIDmode,
6965                          (modifier == EXPAND_INITIALIZER
6966                           || modifier == EXPAND_CONST_ADDRESS
6967                           || modifier == EXPAND_STACK_PARM)
6968                          ? modifier : EXPAND_NORMAL);
6969
6970         /* If this is a constant, put it into a register if it is a
6971            legitimate constant and OFFSET is 0 and memory if it isn't.  */
6972         if (CONSTANT_P (op0))
6973           {
6974             enum machine_mode mode = TYPE_MODE (TREE_TYPE (tem));
6975             if (mode != BLKmode && LEGITIMATE_CONSTANT_P (op0)
6976                 && offset == 0)
6977               op0 = force_reg (mode, op0);
6978             else
6979               op0 = validize_mem (force_const_mem (mode, op0));
6980           }
6981
6982         /* Otherwise, if this object not in memory and we either have an
6983            offset or a BLKmode result, put it there.  This case can't occur in
6984            C, but can in Ada if we have unchecked conversion of an expression
6985            from a scalar type to an array or record type or for an
6986            ARRAY_RANGE_REF whose type is BLKmode.  */
6987         else if (!MEM_P (op0)
6988                  && (offset != 0
6989                      || (code == ARRAY_RANGE_REF && mode == BLKmode)))
6990           {
6991             tree nt = build_qualified_type (TREE_TYPE (tem),
6992                                             (TYPE_QUALS (TREE_TYPE (tem))
6993                                              | TYPE_QUAL_CONST));
6994             rtx memloc = assign_temp (nt, 1, 1, 1);
6995
6996             emit_move_insn (memloc, op0);
6997             op0 = memloc;
6998           }
6999
7000         if (offset != 0)
7001           {
7002             rtx offset_rtx = expand_expr (offset, NULL_RTX, VOIDmode,
7003                                           EXPAND_SUM);
7004
7005             gcc_assert (MEM_P (op0));
7006
7007 #ifdef POINTERS_EXTEND_UNSIGNED
7008             if (GET_MODE (offset_rtx) != Pmode)
7009               offset_rtx = convert_to_mode (Pmode, offset_rtx, 0);
7010 #else
7011             if (GET_MODE (offset_rtx) != ptr_mode)
7012               offset_rtx = convert_to_mode (ptr_mode, offset_rtx, 0);
7013 #endif
7014
7015             if (GET_MODE (op0) == BLKmode
7016                 /* A constant address in OP0 can have VOIDmode, we must
7017                    not try to call force_reg in that case.  */
7018                 && GET_MODE (XEXP (op0, 0)) != VOIDmode
7019                 && bitsize != 0
7020                 && (bitpos % bitsize) == 0
7021                 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0
7022                 && MEM_ALIGN (op0) == GET_MODE_ALIGNMENT (mode1))
7023               {
7024                 op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
7025                 bitpos = 0;
7026               }
7027
7028             op0 = offset_address (op0, offset_rtx,
7029                                   highest_pow2_factor (offset));
7030           }
7031
7032         /* If OFFSET is making OP0 more aligned than BIGGEST_ALIGNMENT,
7033            record its alignment as BIGGEST_ALIGNMENT.  */
7034         if (MEM_P (op0) && bitpos == 0 && offset != 0
7035             && is_aligning_offset (offset, tem))
7036           set_mem_align (op0, BIGGEST_ALIGNMENT);
7037
7038         /* Don't forget about volatility even if this is a bitfield.  */
7039         if (MEM_P (op0) && volatilep && ! MEM_VOLATILE_P (op0))
7040           {
7041             if (op0 == orig_op0)
7042               op0 = copy_rtx (op0);
7043
7044             MEM_VOLATILE_P (op0) = 1;
7045           }
7046
7047         /* The following code doesn't handle CONCAT.
7048            Assume only bitpos == 0 can be used for CONCAT, due to
7049            one element arrays having the same mode as its element.  */
7050         if (GET_CODE (op0) == CONCAT)
7051           {
7052             gcc_assert (bitpos == 0
7053                         && bitsize == GET_MODE_BITSIZE (GET_MODE (op0)));
7054             return op0;
7055           }
7056
7057         /* In cases where an aligned union has an unaligned object
7058            as a field, we might be extracting a BLKmode value from
7059            an integer-mode (e.g., SImode) object.  Handle this case
7060            by doing the extract into an object as wide as the field
7061            (which we know to be the width of a basic mode), then
7062            storing into memory, and changing the mode to BLKmode.  */
7063         if (mode1 == VOIDmode
7064             || REG_P (op0) || GET_CODE (op0) == SUBREG
7065             || (mode1 != BLKmode && ! direct_load[(int) mode1]
7066                 && GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
7067                 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT
7068                 && modifier != EXPAND_CONST_ADDRESS
7069                 && modifier != EXPAND_INITIALIZER)
7070             /* If the field isn't aligned enough to fetch as a memref,
7071                fetch it as a bit field.  */
7072             || (mode1 != BLKmode
7073                 && (((TYPE_ALIGN (TREE_TYPE (tem)) < GET_MODE_ALIGNMENT (mode)
7074                       || (bitpos % GET_MODE_ALIGNMENT (mode) != 0)
7075                       || (MEM_P (op0)
7076                           && (MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (mode1)
7077                               || (bitpos % GET_MODE_ALIGNMENT (mode1) != 0))))
7078                      && ((modifier == EXPAND_CONST_ADDRESS
7079                           || modifier == EXPAND_INITIALIZER)
7080                          ? STRICT_ALIGNMENT
7081                          : SLOW_UNALIGNED_ACCESS (mode1, MEM_ALIGN (op0))))
7082                     || (bitpos % BITS_PER_UNIT != 0)))
7083             /* If the type and the field are a constant size and the
7084                size of the type isn't the same size as the bitfield,
7085                we must use bitfield operations.  */
7086             || (bitsize >= 0
7087                 && TYPE_SIZE (TREE_TYPE (exp))
7088                 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) == INTEGER_CST
7089                 && 0 != compare_tree_int (TYPE_SIZE (TREE_TYPE (exp)),
7090                                           bitsize)))
7091           {
7092             enum machine_mode ext_mode = mode;
7093
7094             if (ext_mode == BLKmode
7095                 && ! (target != 0 && MEM_P (op0)
7096                       && MEM_P (target)
7097                       && bitpos % BITS_PER_UNIT == 0))
7098               ext_mode = mode_for_size (bitsize, MODE_INT, 1);
7099
7100             if (ext_mode == BLKmode)
7101               {
7102                 if (target == 0)
7103                   target = assign_temp (type, 0, 1, 1);
7104
7105                 if (bitsize == 0)
7106                   return target;
7107
7108                 /* In this case, BITPOS must start at a byte boundary and
7109                    TARGET, if specified, must be a MEM.  */
7110                 gcc_assert (MEM_P (op0)
7111                             && (!target || MEM_P (target))
7112                             && !(bitpos % BITS_PER_UNIT));
7113
7114                 emit_block_move (target,
7115                                  adjust_address (op0, VOIDmode,
7116                                                  bitpos / BITS_PER_UNIT),
7117                                  GEN_INT ((bitsize + BITS_PER_UNIT - 1)
7118                                           / BITS_PER_UNIT),
7119                                  (modifier == EXPAND_STACK_PARM
7120                                   ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
7121
7122                 return target;
7123               }
7124
7125             op0 = validize_mem (op0);
7126
7127             if (MEM_P (op0) && REG_P (XEXP (op0, 0)))
7128               mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
7129
7130             op0 = extract_bit_field (op0, bitsize, bitpos, unsignedp,
7131                                      (modifier == EXPAND_STACK_PARM
7132                                       ? NULL_RTX : target),
7133                                      ext_mode, ext_mode);
7134
7135             /* If the result is a record type and BITSIZE is narrower than
7136                the mode of OP0, an integral mode, and this is a big endian
7137                machine, we must put the field into the high-order bits.  */
7138             if (TREE_CODE (type) == RECORD_TYPE && BYTES_BIG_ENDIAN
7139                 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
7140                 && bitsize < (HOST_WIDE_INT) GET_MODE_BITSIZE (GET_MODE (op0)))
7141               op0 = expand_shift (LSHIFT_EXPR, GET_MODE (op0), op0,
7142                                   size_int (GET_MODE_BITSIZE (GET_MODE (op0))
7143                                             - bitsize),
7144                                   op0, 1);
7145
7146             /* If the result type is BLKmode, store the data into a temporary
7147                of the appropriate type, but with the mode corresponding to the
7148                mode for the data we have (op0's mode).  It's tempting to make
7149                this a constant type, since we know it's only being stored once,
7150                but that can cause problems if we are taking the address of this
7151                COMPONENT_REF because the MEM of any reference via that address
7152                will have flags corresponding to the type, which will not
7153                necessarily be constant.  */
7154             if (mode == BLKmode)
7155               {
7156                 rtx new
7157                   = assign_stack_temp_for_type
7158                     (ext_mode, GET_MODE_BITSIZE (ext_mode), 0, type);
7159
7160                 emit_move_insn (new, op0);
7161                 op0 = copy_rtx (new);
7162                 PUT_MODE (op0, BLKmode);
7163                 set_mem_attributes (op0, exp, 1);
7164               }
7165
7166             return op0;
7167           }
7168
7169         /* If the result is BLKmode, use that to access the object
7170            now as well.  */
7171         if (mode == BLKmode)
7172           mode1 = BLKmode;
7173
7174         /* Get a reference to just this component.  */
7175         if (modifier == EXPAND_CONST_ADDRESS
7176             || modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
7177           op0 = adjust_address_nv (op0, mode1, bitpos / BITS_PER_UNIT);
7178         else
7179           op0 = adjust_address (op0, mode1, bitpos / BITS_PER_UNIT);
7180
7181         if (op0 == orig_op0)
7182           op0 = copy_rtx (op0);
7183
7184         set_mem_attributes (op0, exp, 0);
7185         if (REG_P (XEXP (op0, 0)))
7186           mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
7187
7188         MEM_VOLATILE_P (op0) |= volatilep;
7189         if (mode == mode1 || mode1 == BLKmode || mode1 == tmode
7190             || modifier == EXPAND_CONST_ADDRESS
7191             || modifier == EXPAND_INITIALIZER)
7192           return op0;
7193         else if (target == 0)
7194           target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
7195
7196         convert_move (target, op0, unsignedp);
7197         return target;
7198       }
7199
7200     case OBJ_TYPE_REF:
7201       return expand_expr (OBJ_TYPE_REF_EXPR (exp), target, tmode, modifier);
7202
7203     case CALL_EXPR:
7204       /* Check for a built-in function.  */
7205       if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
7206           && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
7207               == FUNCTION_DECL)
7208           && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
7209         {
7210           if (DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
7211               == BUILT_IN_FRONTEND)
7212             return lang_hooks.expand_expr (exp, original_target,
7213                                            tmode, modifier,
7214                                            alt_rtl);
7215           else
7216             return expand_builtin (exp, target, subtarget, tmode, ignore);
7217         }
7218
7219       return expand_call (exp, target, ignore);
7220
7221     case NON_LVALUE_EXPR:
7222     case NOP_EXPR:
7223     case CONVERT_EXPR:
7224       if (TREE_OPERAND (exp, 0) == error_mark_node)
7225         return const0_rtx;
7226
7227       if (TREE_CODE (type) == UNION_TYPE)
7228         {
7229           tree valtype = TREE_TYPE (TREE_OPERAND (exp, 0));
7230
7231           /* If both input and output are BLKmode, this conversion isn't doing
7232              anything except possibly changing memory attribute.  */
7233           if (mode == BLKmode && TYPE_MODE (valtype) == BLKmode)
7234             {
7235               rtx result = expand_expr (TREE_OPERAND (exp, 0), target, tmode,
7236                                         modifier);
7237
7238               result = copy_rtx (result);
7239               set_mem_attributes (result, exp, 0);
7240               return result;
7241             }
7242
7243           if (target == 0)
7244             {
7245               if (TYPE_MODE (type) != BLKmode)
7246                 target = gen_reg_rtx (TYPE_MODE (type));
7247               else
7248                 target = assign_temp (type, 0, 1, 1);
7249             }
7250
7251           if (MEM_P (target))
7252             /* Store data into beginning of memory target.  */
7253             store_expr (TREE_OPERAND (exp, 0),
7254                         adjust_address (target, TYPE_MODE (valtype), 0),
7255                         modifier == EXPAND_STACK_PARM);
7256
7257           else
7258             {
7259               gcc_assert (REG_P (target));
7260               
7261               /* Store this field into a union of the proper type.  */
7262               store_field (target,
7263                            MIN ((int_size_in_bytes (TREE_TYPE
7264                                                     (TREE_OPERAND (exp, 0)))
7265                                  * BITS_PER_UNIT),
7266                                 (HOST_WIDE_INT) GET_MODE_BITSIZE (mode)),
7267                            0, TYPE_MODE (valtype), TREE_OPERAND (exp, 0),
7268                            type, 0);
7269             }
7270
7271           /* Return the entire union.  */
7272           return target;
7273         }
7274
7275       if (mode == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))))
7276         {
7277           op0 = expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode,
7278                              modifier);
7279
7280           /* If the signedness of the conversion differs and OP0 is
7281              a promoted SUBREG, clear that indication since we now
7282              have to do the proper extension.  */
7283           if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))) != unsignedp
7284               && GET_CODE (op0) == SUBREG)
7285             SUBREG_PROMOTED_VAR_P (op0) = 0;
7286
7287           return REDUCE_BIT_FIELD (op0);
7288         }
7289
7290       op0 = expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, mode, modifier);
7291       if (GET_MODE (op0) == mode)
7292         ;
7293
7294       /* If OP0 is a constant, just convert it into the proper mode.  */
7295       else if (CONSTANT_P (op0))
7296         {
7297           tree inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
7298           enum machine_mode inner_mode = TYPE_MODE (inner_type);
7299
7300           if (modifier == EXPAND_INITIALIZER)
7301             op0 = simplify_gen_subreg (mode, op0, inner_mode,
7302                                        subreg_lowpart_offset (mode,
7303                                                               inner_mode));
7304           else
7305             op0=  convert_modes (mode, inner_mode, op0,
7306                                  TYPE_UNSIGNED (inner_type));
7307         }
7308
7309       else if (modifier == EXPAND_INITIALIZER)
7310         op0 = gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND, mode, op0);
7311
7312       else if (target == 0)
7313         op0 = convert_to_mode (mode, op0,
7314                                TYPE_UNSIGNED (TREE_TYPE
7315                                               (TREE_OPERAND (exp, 0))));
7316       else
7317         {
7318           convert_move (target, op0,
7319                         TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))));
7320           op0 = target;
7321         }
7322
7323       return REDUCE_BIT_FIELD (op0);
7324
7325     case VIEW_CONVERT_EXPR:
7326       op0 = expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, mode, modifier);
7327
7328       /* If the input and output modes are both the same, we are done.
7329          Otherwise, if neither mode is BLKmode and both are integral and within
7330          a word, we can use gen_lowpart.  If neither is true, make sure the
7331          operand is in memory and convert the MEM to the new mode.  */
7332       if (TYPE_MODE (type) == GET_MODE (op0))
7333         ;
7334       else if (TYPE_MODE (type) != BLKmode && GET_MODE (op0) != BLKmode
7335                && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
7336                && GET_MODE_CLASS (TYPE_MODE (type)) == MODE_INT
7337                && GET_MODE_SIZE (TYPE_MODE (type)) <= UNITS_PER_WORD
7338                && GET_MODE_SIZE (GET_MODE (op0)) <= UNITS_PER_WORD)
7339         op0 = gen_lowpart (TYPE_MODE (type), op0);
7340       else if (!MEM_P (op0))
7341         {
7342           /* If the operand is not a MEM, force it into memory.  Since we
7343              are going to be be changing the mode of the MEM, don't call
7344              force_const_mem for constants because we don't allow pool
7345              constants to change mode.  */
7346           tree inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
7347
7348           gcc_assert (!TREE_ADDRESSABLE (exp));
7349
7350           if (target == 0 || GET_MODE (target) != TYPE_MODE (inner_type))
7351             target
7352               = assign_stack_temp_for_type
7353                 (TYPE_MODE (inner_type),
7354                  GET_MODE_SIZE (TYPE_MODE (inner_type)), 0, inner_type);
7355
7356           emit_move_insn (target, op0);
7357           op0 = target;
7358         }
7359
7360       /* At this point, OP0 is in the correct mode.  If the output type is such
7361          that the operand is known to be aligned, indicate that it is.
7362          Otherwise, we need only be concerned about alignment for non-BLKmode
7363          results.  */
7364       if (MEM_P (op0))
7365         {
7366           op0 = copy_rtx (op0);
7367
7368           if (TYPE_ALIGN_OK (type))
7369             set_mem_align (op0, MAX (MEM_ALIGN (op0), TYPE_ALIGN (type)));
7370           else if (TYPE_MODE (type) != BLKmode && STRICT_ALIGNMENT
7371                    && MEM_ALIGN (op0) < GET_MODE_ALIGNMENT (TYPE_MODE (type)))
7372             {
7373               tree inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
7374               HOST_WIDE_INT temp_size
7375                 = MAX (int_size_in_bytes (inner_type),
7376                        (HOST_WIDE_INT) GET_MODE_SIZE (TYPE_MODE (type)));
7377               rtx new = assign_stack_temp_for_type (TYPE_MODE (type),
7378                                                     temp_size, 0, type);
7379               rtx new_with_op0_mode = adjust_address (new, GET_MODE (op0), 0);
7380
7381               gcc_assert (!TREE_ADDRESSABLE (exp));
7382
7383               if (GET_MODE (op0) == BLKmode)
7384                 emit_block_move (new_with_op0_mode, op0,
7385                                  GEN_INT (GET_MODE_SIZE (TYPE_MODE (type))),
7386                                  (modifier == EXPAND_STACK_PARM
7387                                   ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
7388               else
7389                 emit_move_insn (new_with_op0_mode, op0);
7390
7391               op0 = new;
7392             }
7393
7394           op0 = adjust_address (op0, TYPE_MODE (type), 0);
7395         }
7396
7397       return op0;
7398
7399     case PLUS_EXPR:
7400       /* If we are adding a constant, a VAR_DECL that is sp, fp, or ap, and
7401          something else, make sure we add the register to the constant and
7402          then to the other thing.  This case can occur during strength
7403          reduction and doing it this way will produce better code if the
7404          frame pointer or argument pointer is eliminated.
7405
7406          fold-const.c will ensure that the constant is always in the inner
7407          PLUS_EXPR, so the only case we need to do anything about is if
7408          sp, ap, or fp is our second argument, in which case we must swap
7409          the innermost first argument and our second argument.  */
7410
7411       if (TREE_CODE (TREE_OPERAND (exp, 0)) == PLUS_EXPR
7412           && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 1)) == INTEGER_CST
7413           && TREE_CODE (TREE_OPERAND (exp, 1)) == VAR_DECL
7414           && (DECL_RTL (TREE_OPERAND (exp, 1)) == frame_pointer_rtx
7415               || DECL_RTL (TREE_OPERAND (exp, 1)) == stack_pointer_rtx
7416               || DECL_RTL (TREE_OPERAND (exp, 1)) == arg_pointer_rtx))
7417         {
7418           tree t = TREE_OPERAND (exp, 1);
7419
7420           TREE_OPERAND (exp, 1) = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
7421           TREE_OPERAND (TREE_OPERAND (exp, 0), 0) = t;
7422         }
7423
7424       /* If the result is to be ptr_mode and we are adding an integer to
7425          something, we might be forming a constant.  So try to use
7426          plus_constant.  If it produces a sum and we can't accept it,
7427          use force_operand.  This allows P = &ARR[const] to generate
7428          efficient code on machines where a SYMBOL_REF is not a valid
7429          address.
7430
7431          If this is an EXPAND_SUM call, always return the sum.  */
7432       if (modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER
7433           || (mode == ptr_mode && (unsignedp || ! flag_trapv)))
7434         {
7435           if (modifier == EXPAND_STACK_PARM)
7436             target = 0;
7437           if (TREE_CODE (TREE_OPERAND (exp, 0)) == INTEGER_CST
7438               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
7439               && TREE_CONSTANT (TREE_OPERAND (exp, 1)))
7440             {
7441               rtx constant_part;
7442
7443               op1 = expand_expr (TREE_OPERAND (exp, 1), subtarget, VOIDmode,
7444                                  EXPAND_SUM);
7445               /* Use immed_double_const to ensure that the constant is
7446                  truncated according to the mode of OP1, then sign extended
7447                  to a HOST_WIDE_INT.  Using the constant directly can result
7448                  in non-canonical RTL in a 64x32 cross compile.  */
7449               constant_part
7450                 = immed_double_const (TREE_INT_CST_LOW (TREE_OPERAND (exp, 0)),
7451                                       (HOST_WIDE_INT) 0,
7452                                       TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 1))));
7453               op1 = plus_constant (op1, INTVAL (constant_part));
7454               if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7455                 op1 = force_operand (op1, target);
7456               return REDUCE_BIT_FIELD (op1);
7457             }
7458
7459           else if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
7460                    && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_INT
7461                    && TREE_CONSTANT (TREE_OPERAND (exp, 0)))
7462             {
7463               rtx constant_part;
7464
7465               op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode,
7466                                  (modifier == EXPAND_INITIALIZER
7467                                  ? EXPAND_INITIALIZER : EXPAND_SUM));
7468               if (! CONSTANT_P (op0))
7469                 {
7470                   op1 = expand_expr (TREE_OPERAND (exp, 1), NULL_RTX,
7471                                      VOIDmode, modifier);
7472                   /* Return a PLUS if modifier says it's OK.  */
7473                   if (modifier == EXPAND_SUM
7474                       || modifier == EXPAND_INITIALIZER)
7475                     return simplify_gen_binary (PLUS, mode, op0, op1);
7476                   goto binop2;
7477                 }
7478               /* Use immed_double_const to ensure that the constant is
7479                  truncated according to the mode of OP1, then sign extended
7480                  to a HOST_WIDE_INT.  Using the constant directly can result
7481                  in non-canonical RTL in a 64x32 cross compile.  */
7482               constant_part
7483                 = immed_double_const (TREE_INT_CST_LOW (TREE_OPERAND (exp, 1)),
7484                                       (HOST_WIDE_INT) 0,
7485                                       TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))));
7486               op0 = plus_constant (op0, INTVAL (constant_part));
7487               if (modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7488                 op0 = force_operand (op0, target);
7489               return REDUCE_BIT_FIELD (op0);
7490             }
7491         }
7492
7493       /* No sense saving up arithmetic to be done
7494          if it's all in the wrong mode to form part of an address.
7495          And force_operand won't know whether to sign-extend or
7496          zero-extend.  */
7497       if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7498           || mode != ptr_mode)
7499         {
7500           expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7501                            subtarget, &op0, &op1, 0);
7502           if (op0 == const0_rtx)
7503             return op1;
7504           if (op1 == const0_rtx)
7505             return op0;
7506           goto binop2;
7507         }
7508
7509       expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7510                        subtarget, &op0, &op1, modifier);
7511       return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
7512
7513     case MINUS_EXPR:
7514       /* For initializers, we are allowed to return a MINUS of two
7515          symbolic constants.  Here we handle all cases when both operands
7516          are constant.  */
7517       /* Handle difference of two symbolic constants,
7518          for the sake of an initializer.  */
7519       if ((modifier == EXPAND_SUM || modifier == EXPAND_INITIALIZER)
7520           && really_constant_p (TREE_OPERAND (exp, 0))
7521           && really_constant_p (TREE_OPERAND (exp, 1)))
7522         {
7523           expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7524                            NULL_RTX, &op0, &op1, modifier);
7525
7526           /* If the last operand is a CONST_INT, use plus_constant of
7527              the negated constant.  Else make the MINUS.  */
7528           if (GET_CODE (op1) == CONST_INT)
7529             return REDUCE_BIT_FIELD (plus_constant (op0, - INTVAL (op1)));
7530           else
7531             return REDUCE_BIT_FIELD (gen_rtx_MINUS (mode, op0, op1));
7532         }
7533
7534       /* No sense saving up arithmetic to be done
7535          if it's all in the wrong mode to form part of an address.
7536          And force_operand won't know whether to sign-extend or
7537          zero-extend.  */
7538       if ((modifier != EXPAND_SUM && modifier != EXPAND_INITIALIZER)
7539           || mode != ptr_mode)
7540         goto binop;
7541
7542       expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7543                        subtarget, &op0, &op1, modifier);
7544
7545       /* Convert A - const to A + (-const).  */
7546       if (GET_CODE (op1) == CONST_INT)
7547         {
7548           op1 = negate_rtx (mode, op1);
7549           return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS, mode, op0, op1));
7550         }
7551
7552       goto binop2;
7553
7554     case MULT_EXPR:
7555       /* If first operand is constant, swap them.
7556          Thus the following special case checks need only
7557          check the second operand.  */
7558       if (TREE_CODE (TREE_OPERAND (exp, 0)) == INTEGER_CST)
7559         {
7560           tree t1 = TREE_OPERAND (exp, 0);
7561           TREE_OPERAND (exp, 0) = TREE_OPERAND (exp, 1);
7562           TREE_OPERAND (exp, 1) = t1;
7563         }
7564
7565       /* Attempt to return something suitable for generating an
7566          indexed address, for machines that support that.  */
7567
7568       if (modifier == EXPAND_SUM && mode == ptr_mode
7569           && host_integerp (TREE_OPERAND (exp, 1), 0))
7570         {
7571           tree exp1 = TREE_OPERAND (exp, 1);
7572
7573           op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode,
7574                              EXPAND_SUM);
7575
7576           if (!REG_P (op0))
7577             op0 = force_operand (op0, NULL_RTX);
7578           if (!REG_P (op0))
7579             op0 = copy_to_mode_reg (mode, op0);
7580
7581           return REDUCE_BIT_FIELD (gen_rtx_MULT (mode, op0,
7582                                gen_int_mode (tree_low_cst (exp1, 0),
7583                                              TYPE_MODE (TREE_TYPE (exp1)))));
7584         }
7585
7586       if (modifier == EXPAND_STACK_PARM)
7587         target = 0;
7588
7589       /* Check for multiplying things that have been extended
7590          from a narrower type.  If this machine supports multiplying
7591          in that narrower type with a result in the desired type,
7592          do it that way, and avoid the explicit type-conversion.  */
7593       if (TREE_CODE (TREE_OPERAND (exp, 0)) == NOP_EXPR
7594           && TREE_CODE (type) == INTEGER_TYPE
7595           && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
7596               < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))))
7597           && ((TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
7598                && int_fits_type_p (TREE_OPERAND (exp, 1),
7599                                    TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
7600                /* Don't use a widening multiply if a shift will do.  */
7601                && ((GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 1))))
7602                     > HOST_BITS_PER_WIDE_INT)
7603                    || exact_log2 (TREE_INT_CST_LOW (TREE_OPERAND (exp, 1))) < 0))
7604               ||
7605               (TREE_CODE (TREE_OPERAND (exp, 1)) == NOP_EXPR
7606                && (TYPE_PRECISION (TREE_TYPE
7607                                    (TREE_OPERAND (TREE_OPERAND (exp, 1), 0)))
7608                    == TYPE_PRECISION (TREE_TYPE
7609                                       (TREE_OPERAND
7610                                        (TREE_OPERAND (exp, 0), 0))))
7611                /* If both operands are extended, they must either both
7612                   be zero-extended or both be sign-extended.  */
7613                && (TYPE_UNSIGNED (TREE_TYPE
7614                                   (TREE_OPERAND (TREE_OPERAND (exp, 1), 0)))
7615                    == TYPE_UNSIGNED (TREE_TYPE
7616                                      (TREE_OPERAND
7617                                       (TREE_OPERAND (exp, 0), 0)))))))
7618         {
7619           tree op0type = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0));
7620           enum machine_mode innermode = TYPE_MODE (op0type);
7621           bool zextend_p = TYPE_UNSIGNED (op0type);
7622           optab other_optab = zextend_p ? smul_widen_optab : umul_widen_optab;
7623           this_optab = zextend_p ? umul_widen_optab : smul_widen_optab;
7624
7625           if (mode == GET_MODE_WIDER_MODE (innermode))
7626             {
7627               if (this_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
7628                 {
7629                   if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
7630                     expand_operands (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
7631                                      TREE_OPERAND (exp, 1),
7632                                      NULL_RTX, &op0, &op1, 0);
7633                   else
7634                     expand_operands (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
7635                                      TREE_OPERAND (TREE_OPERAND (exp, 1), 0),
7636                                      NULL_RTX, &op0, &op1, 0);
7637                   goto binop3;
7638                 }
7639               else if (other_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
7640                        && innermode == word_mode)
7641                 {
7642                   rtx htem, hipart;
7643                   op0 = expand_expr (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
7644                                      NULL_RTX, VOIDmode, 0);
7645                   if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
7646                     op1 = convert_modes (innermode, mode,
7647                                          expand_expr (TREE_OPERAND (exp, 1),
7648                                                       NULL_RTX, VOIDmode, 0),
7649                                          unsignedp);
7650                   else
7651                     op1 = expand_expr (TREE_OPERAND (TREE_OPERAND (exp, 1), 0),
7652                                        NULL_RTX, VOIDmode, 0);
7653                   temp = expand_binop (mode, other_optab, op0, op1, target,
7654                                        unsignedp, OPTAB_LIB_WIDEN);
7655                   hipart = gen_highpart (innermode, temp);
7656                   htem = expand_mult_highpart_adjust (innermode, hipart,
7657                                                       op0, op1, hipart,
7658                                                       zextend_p);
7659                   if (htem != hipart)
7660                     emit_move_insn (hipart, htem);
7661                   return REDUCE_BIT_FIELD (temp);
7662                 }
7663             }
7664         }
7665       expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7666                        subtarget, &op0, &op1, 0);
7667       return REDUCE_BIT_FIELD (expand_mult (mode, op0, op1, target, unsignedp));
7668
7669     case TRUNC_DIV_EXPR:
7670     case FLOOR_DIV_EXPR:
7671     case CEIL_DIV_EXPR:
7672     case ROUND_DIV_EXPR:
7673     case EXACT_DIV_EXPR:
7674       if (modifier == EXPAND_STACK_PARM)
7675         target = 0;
7676       /* Possible optimization: compute the dividend with EXPAND_SUM
7677          then if the divisor is constant can optimize the case
7678          where some terms of the dividend have coeffs divisible by it.  */
7679       expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7680                        subtarget, &op0, &op1, 0);
7681       return expand_divmod (0, code, mode, op0, op1, target, unsignedp);
7682
7683     case RDIV_EXPR:
7684       /* Emit a/b as a*(1/b).  Later we may manage CSE the reciprocal saving
7685          expensive divide.  If not, combine will rebuild the original
7686          computation.  */
7687       if (flag_unsafe_math_optimizations && optimize && !optimize_size
7688           && TREE_CODE (type) == REAL_TYPE
7689           && !real_onep (TREE_OPERAND (exp, 0)))
7690         return expand_expr (build2 (MULT_EXPR, type, TREE_OPERAND (exp, 0),
7691                                     build2 (RDIV_EXPR, type,
7692                                             build_real (type, dconst1),
7693                                             TREE_OPERAND (exp, 1))),
7694                             target, tmode, modifier);
7695
7696       goto binop;
7697
7698     case TRUNC_MOD_EXPR:
7699     case FLOOR_MOD_EXPR:
7700     case CEIL_MOD_EXPR:
7701     case ROUND_MOD_EXPR:
7702       if (modifier == EXPAND_STACK_PARM)
7703         target = 0;
7704       expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7705                        subtarget, &op0, &op1, 0);
7706       return expand_divmod (1, code, mode, op0, op1, target, unsignedp);
7707
7708     case FIX_ROUND_EXPR:
7709     case FIX_FLOOR_EXPR:
7710     case FIX_CEIL_EXPR:
7711       gcc_unreachable ();                       /* Not used for C.  */
7712
7713     case FIX_TRUNC_EXPR:
7714       op0 = expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, VOIDmode, 0);
7715       if (target == 0 || modifier == EXPAND_STACK_PARM)
7716         target = gen_reg_rtx (mode);
7717       expand_fix (target, op0, unsignedp);
7718       return target;
7719
7720     case FLOAT_EXPR:
7721       op0 = expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, VOIDmode, 0);
7722       if (target == 0 || modifier == EXPAND_STACK_PARM)
7723         target = gen_reg_rtx (mode);
7724       /* expand_float can't figure out what to do if FROM has VOIDmode.
7725          So give it the correct mode.  With -O, cse will optimize this.  */
7726       if (GET_MODE (op0) == VOIDmode)
7727         op0 = copy_to_mode_reg (TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))),
7728                                 op0);
7729       expand_float (target, op0,
7730                     TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))));
7731       return target;
7732
7733     case NEGATE_EXPR:
7734       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
7735       if (modifier == EXPAND_STACK_PARM)
7736         target = 0;
7737       temp = expand_unop (mode,
7738                           optab_for_tree_code (NEGATE_EXPR, type),
7739                           op0, target, 0);
7740       gcc_assert (temp);
7741       return REDUCE_BIT_FIELD (temp);
7742
7743     case ABS_EXPR:
7744       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
7745       if (modifier == EXPAND_STACK_PARM)
7746         target = 0;
7747
7748       /* ABS_EXPR is not valid for complex arguments.  */
7749       gcc_assert (GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
7750                   && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT);
7751
7752       /* Unsigned abs is simply the operand.  Testing here means we don't
7753          risk generating incorrect code below.  */
7754       if (TYPE_UNSIGNED (type))
7755         return op0;
7756
7757       return expand_abs (mode, op0, target, unsignedp,
7758                          safe_from_p (target, TREE_OPERAND (exp, 0), 1));
7759
7760     case MAX_EXPR:
7761     case MIN_EXPR:
7762       target = original_target;
7763       if (target == 0
7764           || modifier == EXPAND_STACK_PARM
7765           || (MEM_P (target) && MEM_VOLATILE_P (target))
7766           || GET_MODE (target) != mode
7767           || (REG_P (target)
7768               && REGNO (target) < FIRST_PSEUDO_REGISTER))
7769         target = gen_reg_rtx (mode);
7770       expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
7771                        target, &op0, &op1, 0);
7772
7773       /* First try to do it with a special MIN or MAX instruction.
7774          If that does not win, use a conditional jump to select the proper
7775          value.  */
7776       this_optab = optab_for_tree_code (code, type);
7777       temp = expand_binop (mode, this_optab, op0, op1, target, unsignedp,
7778                            OPTAB_WIDEN);
7779       if (temp != 0)
7780         return temp;
7781
7782       /* At this point, a MEM target is no longer useful; we will get better
7783          code without it.  */
7784
7785       if (! REG_P (target))
7786         target = gen_reg_rtx (mode);
7787
7788       /* If op1 was placed in target, swap op0 and op1.  */
7789       if (target != op0 && target == op1)
7790         {
7791           rtx tem = op0;
7792           op0 = op1;
7793           op1 = tem;
7794         }
7795
7796       /* We generate better code and avoid problems with op1 mentioning
7797          target by forcing op1 into a pseudo if it isn't a constant.  */
7798       if (! CONSTANT_P (op1))
7799         op1 = force_reg (mode, op1);
7800
7801       if (target != op0)
7802         emit_move_insn (target, op0);
7803
7804       op0 = gen_label_rtx ();
7805
7806       /* If this mode is an integer too wide to compare properly,
7807          compare word by word.  Rely on cse to optimize constant cases.  */
7808       if (GET_MODE_CLASS (mode) == MODE_INT
7809           && ! can_compare_p (GE, mode, ccp_jump))
7810         {
7811           if (code == MAX_EXPR)
7812             do_jump_by_parts_greater_rtx (mode, unsignedp, target, op1,
7813                                           NULL_RTX, op0);
7814           else
7815             do_jump_by_parts_greater_rtx (mode, unsignedp, op1, target,
7816                                           NULL_RTX, op0);
7817         }
7818       else
7819         {
7820           do_compare_rtx_and_jump (target, op1, code == MAX_EXPR ? GE : LE,
7821                                    unsignedp, mode, NULL_RTX, NULL_RTX, op0);
7822         }
7823       emit_move_insn (target, op1);
7824       emit_label (op0);
7825       return target;
7826
7827     case BIT_NOT_EXPR:
7828       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
7829       if (modifier == EXPAND_STACK_PARM)
7830         target = 0;
7831       temp = expand_unop (mode, one_cmpl_optab, op0, target, 1);
7832       gcc_assert (temp);
7833       return temp;
7834
7835       /* ??? Can optimize bitwise operations with one arg constant.
7836          Can optimize (a bitwise1 n) bitwise2 (a bitwise3 b)
7837          and (a bitwise1 b) bitwise2 b (etc)
7838          but that is probably not worth while.  */
7839
7840       /* BIT_AND_EXPR is for bitwise anding.  TRUTH_AND_EXPR is for anding two
7841          boolean values when we want in all cases to compute both of them.  In
7842          general it is fastest to do TRUTH_AND_EXPR by computing both operands
7843          as actual zero-or-1 values and then bitwise anding.  In cases where
7844          there cannot be any side effects, better code would be made by
7845          treating TRUTH_AND_EXPR like TRUTH_ANDIF_EXPR; but the question is
7846          how to recognize those cases.  */
7847
7848     case TRUTH_AND_EXPR:
7849       code = BIT_AND_EXPR;
7850     case BIT_AND_EXPR:
7851       goto binop;
7852
7853     case TRUTH_OR_EXPR:
7854       code = BIT_IOR_EXPR;
7855     case BIT_IOR_EXPR:
7856       goto binop;
7857
7858     case TRUTH_XOR_EXPR:
7859       code = BIT_XOR_EXPR;
7860     case BIT_XOR_EXPR:
7861       goto binop;
7862
7863     case LSHIFT_EXPR:
7864     case RSHIFT_EXPR:
7865     case LROTATE_EXPR:
7866     case RROTATE_EXPR:
7867       if (! safe_from_p (subtarget, TREE_OPERAND (exp, 1), 1))
7868         subtarget = 0;
7869       if (modifier == EXPAND_STACK_PARM)
7870         target = 0;
7871       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
7872       return expand_shift (code, mode, op0, TREE_OPERAND (exp, 1), target,
7873                            unsignedp);
7874
7875       /* Could determine the answer when only additive constants differ.  Also,
7876          the addition of one can be handled by changing the condition.  */
7877     case LT_EXPR:
7878     case LE_EXPR:
7879     case GT_EXPR:
7880     case GE_EXPR:
7881     case EQ_EXPR:
7882     case NE_EXPR:
7883     case UNORDERED_EXPR:
7884     case ORDERED_EXPR:
7885     case UNLT_EXPR:
7886     case UNLE_EXPR:
7887     case UNGT_EXPR:
7888     case UNGE_EXPR:
7889     case UNEQ_EXPR:
7890     case LTGT_EXPR:
7891       temp = do_store_flag (exp,
7892                             modifier != EXPAND_STACK_PARM ? target : NULL_RTX,
7893                             tmode != VOIDmode ? tmode : mode, 0);
7894       if (temp != 0)
7895         return temp;
7896
7897       /* For foo != 0, load foo, and if it is nonzero load 1 instead.  */
7898       if (code == NE_EXPR && integer_zerop (TREE_OPERAND (exp, 1))
7899           && original_target
7900           && REG_P (original_target)
7901           && (GET_MODE (original_target)
7902               == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))))
7903         {
7904           temp = expand_expr (TREE_OPERAND (exp, 0), original_target,
7905                               VOIDmode, 0);
7906
7907           /* If temp is constant, we can just compute the result.  */
7908           if (GET_CODE (temp) == CONST_INT)
7909             {
7910               if (INTVAL (temp) != 0)
7911                 emit_move_insn (target, const1_rtx);
7912               else
7913                 emit_move_insn (target, const0_rtx);
7914
7915               return target;
7916             }
7917
7918           if (temp != original_target)
7919             {
7920               enum machine_mode mode1 = GET_MODE (temp);
7921               if (mode1 == VOIDmode)
7922                 mode1 = tmode != VOIDmode ? tmode : mode;
7923
7924               temp = copy_to_mode_reg (mode1, temp);
7925             }
7926
7927           op1 = gen_label_rtx ();
7928           emit_cmp_and_jump_insns (temp, const0_rtx, EQ, NULL_RTX,
7929                                    GET_MODE (temp), unsignedp, op1);
7930           emit_move_insn (temp, const1_rtx);
7931           emit_label (op1);
7932           return temp;
7933         }
7934
7935       /* If no set-flag instruction, must generate a conditional store
7936          into a temporary variable.  Drop through and handle this
7937          like && and ||.  */
7938
7939       if (! ignore
7940           && (target == 0
7941               || modifier == EXPAND_STACK_PARM
7942               || ! safe_from_p (target, exp, 1)
7943               /* Make sure we don't have a hard reg (such as function's return
7944                  value) live across basic blocks, if not optimizing.  */
7945               || (!optimize && REG_P (target)
7946                   && REGNO (target) < FIRST_PSEUDO_REGISTER)))
7947         target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
7948
7949       if (target)
7950         emit_move_insn (target, const0_rtx);
7951
7952       op1 = gen_label_rtx ();
7953       jumpifnot (exp, op1);
7954
7955       if (target)
7956         emit_move_insn (target, const1_rtx);
7957
7958       emit_label (op1);
7959       return ignore ? const0_rtx : target;
7960
7961     case TRUTH_NOT_EXPR:
7962       if (modifier == EXPAND_STACK_PARM)
7963         target = 0;
7964       op0 = expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode, 0);
7965       /* The parser is careful to generate TRUTH_NOT_EXPR
7966          only with operands that are always zero or one.  */
7967       temp = expand_binop (mode, xor_optab, op0, const1_rtx,
7968                            target, 1, OPTAB_LIB_WIDEN);
7969       gcc_assert (temp);
7970       return temp;
7971
7972     case STATEMENT_LIST:
7973       {
7974         tree_stmt_iterator iter;
7975
7976         gcc_assert (ignore);
7977
7978         for (iter = tsi_start (exp); !tsi_end_p (iter); tsi_next (&iter))
7979           expand_expr (tsi_stmt (iter), const0_rtx, VOIDmode, modifier);
7980       }
7981       return const0_rtx;
7982
7983     case COND_EXPR:
7984       /* A COND_EXPR with its type being VOID_TYPE represents a
7985          conditional jump and is handled in
7986          expand_gimple_cond_expr.  */
7987       gcc_assert (!VOID_TYPE_P (TREE_TYPE (exp)));
7988
7989         /* Note that COND_EXPRs whose type is a structure or union
7990          are required to be constructed to contain assignments of
7991          a temporary variable, so that we can evaluate them here
7992          for side effect only.  If type is void, we must do likewise.  */
7993
7994         gcc_assert (!TREE_ADDRESSABLE (type)
7995                     && !ignore
7996                     && TREE_TYPE (TREE_OPERAND (exp, 1)) != void_type_node
7997                     && TREE_TYPE (TREE_OPERAND (exp, 2)) != void_type_node);
7998
7999        /* If we are not to produce a result, we have no target.  Otherwise,
8000          if a target was specified use it; it will not be used as an
8001          intermediate target unless it is safe.  If no target, use a
8002          temporary.  */
8003
8004        if (modifier != EXPAND_STACK_PARM
8005           && original_target
8006           && safe_from_p (original_target, TREE_OPERAND (exp, 0), 1)
8007           && GET_MODE (original_target) == mode
8008 #ifdef HAVE_conditional_move
8009           && (! can_conditionally_move_p (mode)
8010               || REG_P (original_target))
8011 #endif
8012           && !MEM_P (original_target))
8013         temp = original_target;
8014        else
8015         temp = assign_temp (type, 0, 0, 1);
8016
8017        do_pending_stack_adjust ();
8018        NO_DEFER_POP;
8019        op0 = gen_label_rtx ();
8020        op1 = gen_label_rtx ();
8021        jumpifnot (TREE_OPERAND (exp, 0), op0);
8022        store_expr (TREE_OPERAND (exp, 1), temp,
8023                   modifier == EXPAND_STACK_PARM);
8024
8025        emit_jump_insn (gen_jump (op1));
8026        emit_barrier ();
8027        emit_label (op0);
8028        store_expr (TREE_OPERAND (exp, 2), temp,
8029                   modifier == EXPAND_STACK_PARM);
8030
8031        emit_label (op1);
8032        OK_DEFER_POP;
8033        return temp;
8034
8035     case VEC_COND_EXPR:
8036         target = expand_vec_cond_expr (exp, target);
8037         return target;
8038
8039     case MODIFY_EXPR:
8040       {
8041         tree lhs = TREE_OPERAND (exp, 0);
8042         tree rhs = TREE_OPERAND (exp, 1);
8043
8044         gcc_assert (ignore);
8045
8046         /* Check for |= or &= of a bitfield of size one into another bitfield
8047            of size 1.  In this case, (unless we need the result of the
8048            assignment) we can do this more efficiently with a
8049            test followed by an assignment, if necessary.
8050
8051            ??? At this point, we can't get a BIT_FIELD_REF here.  But if
8052            things change so we do, this code should be enhanced to
8053            support it.  */
8054         if (TREE_CODE (lhs) == COMPONENT_REF
8055             && (TREE_CODE (rhs) == BIT_IOR_EXPR
8056                 || TREE_CODE (rhs) == BIT_AND_EXPR)
8057             && TREE_OPERAND (rhs, 0) == lhs
8058             && TREE_CODE (TREE_OPERAND (rhs, 1)) == COMPONENT_REF
8059             && integer_onep (DECL_SIZE (TREE_OPERAND (lhs, 1)))
8060             && integer_onep (DECL_SIZE (TREE_OPERAND (TREE_OPERAND (rhs, 1), 1))))
8061           {
8062             rtx label = gen_label_rtx ();
8063
8064             do_jump (TREE_OPERAND (rhs, 1),
8065                      TREE_CODE (rhs) == BIT_IOR_EXPR ? label : 0,
8066                      TREE_CODE (rhs) == BIT_AND_EXPR ? label : 0);
8067             expand_assignment (lhs, convert (TREE_TYPE (rhs),
8068                                              (TREE_CODE (rhs) == BIT_IOR_EXPR
8069                                               ? integer_one_node
8070                                               : integer_zero_node)));
8071             do_pending_stack_adjust ();
8072             emit_label (label);
8073             return const0_rtx;
8074           }
8075
8076         expand_assignment (lhs, rhs);
8077
8078         return const0_rtx;
8079       }
8080
8081     case RETURN_EXPR:
8082       if (!TREE_OPERAND (exp, 0))
8083         expand_null_return ();
8084       else
8085         expand_return (TREE_OPERAND (exp, 0));
8086       return const0_rtx;
8087
8088     case ADDR_EXPR:
8089       return expand_expr_addr_expr (exp, target, tmode, modifier);
8090
8091     case COMPLEX_EXPR:
8092       /* Get the rtx code of the operands.  */
8093       op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, 0);
8094       op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
8095
8096       if (!target)
8097         target = gen_reg_rtx (TYPE_MODE (TREE_TYPE (exp)));
8098
8099       /* Move the real (op0) and imaginary (op1) parts to their location.  */
8100       write_complex_part (target, op0, false);
8101       write_complex_part (target, op1, true);
8102
8103       return target;
8104
8105     case REALPART_EXPR:
8106       op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, 0);
8107       return read_complex_part (op0, false);
8108
8109     case IMAGPART_EXPR:
8110       op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, 0);
8111       return read_complex_part (op0, true);
8112
8113     case RESX_EXPR:
8114       expand_resx_expr (exp);
8115       return const0_rtx;
8116
8117     case TRY_CATCH_EXPR:
8118     case CATCH_EXPR:
8119     case EH_FILTER_EXPR:
8120     case TRY_FINALLY_EXPR:
8121       /* Lowered by tree-eh.c.  */
8122       gcc_unreachable ();
8123
8124     case WITH_CLEANUP_EXPR:
8125     case CLEANUP_POINT_EXPR:
8126     case TARGET_EXPR:
8127     case CASE_LABEL_EXPR:
8128     case VA_ARG_EXPR:
8129     case BIND_EXPR:
8130     case INIT_EXPR:
8131     case CONJ_EXPR:
8132     case COMPOUND_EXPR:
8133     case PREINCREMENT_EXPR:
8134     case PREDECREMENT_EXPR:
8135     case POSTINCREMENT_EXPR:
8136     case POSTDECREMENT_EXPR:
8137     case LOOP_EXPR:
8138     case EXIT_EXPR:
8139     case TRUTH_ANDIF_EXPR:
8140     case TRUTH_ORIF_EXPR:
8141       /* Lowered by gimplify.c.  */
8142       gcc_unreachable ();
8143
8144     case EXC_PTR_EXPR:
8145       return get_exception_pointer (cfun);
8146
8147     case FILTER_EXPR:
8148       return get_exception_filter (cfun);
8149
8150     case FDESC_EXPR:
8151       /* Function descriptors are not valid except for as
8152          initialization constants, and should not be expanded.  */
8153       gcc_unreachable ();
8154
8155     case SWITCH_EXPR:
8156       expand_case (exp);
8157       return const0_rtx;
8158
8159     case LABEL_EXPR:
8160       expand_label (TREE_OPERAND (exp, 0));
8161       return const0_rtx;
8162
8163     case ASM_EXPR:
8164       expand_asm_expr (exp);
8165       return const0_rtx;
8166
8167     case WITH_SIZE_EXPR:
8168       /* WITH_SIZE_EXPR expands to its first argument.  The caller should
8169          have pulled out the size to use in whatever context it needed.  */
8170       return expand_expr_real (TREE_OPERAND (exp, 0), original_target, tmode,
8171                                modifier, alt_rtl);
8172
8173     case REALIGN_LOAD_EXPR:
8174       {
8175         tree oprnd0 = TREE_OPERAND (exp, 0); 
8176         tree oprnd1 = TREE_OPERAND (exp, 1);
8177         tree oprnd2 = TREE_OPERAND (exp, 2);
8178         rtx op2;
8179
8180         this_optab = optab_for_tree_code (code, type);
8181         expand_operands (oprnd0, oprnd1, NULL_RTX, &op0, &op1, 0);
8182         op2 = expand_expr (oprnd2, NULL_RTX, VOIDmode, 0);
8183         temp = expand_ternary_op (mode, this_optab, op0, op1, op2, 
8184                                   target, unsignedp);
8185         if (temp == 0)
8186           abort ();
8187         return temp;
8188       }
8189
8190
8191     default:
8192       return lang_hooks.expand_expr (exp, original_target, tmode,
8193                                      modifier, alt_rtl);
8194     }
8195
8196   /* Here to do an ordinary binary operator.  */
8197  binop:
8198   expand_operands (TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
8199                    subtarget, &op0, &op1, 0);
8200  binop2:
8201   this_optab = optab_for_tree_code (code, type);
8202  binop3:
8203   if (modifier == EXPAND_STACK_PARM)
8204     target = 0;
8205   temp = expand_binop (mode, this_optab, op0, op1, target,
8206                        unsignedp, OPTAB_LIB_WIDEN);
8207   gcc_assert (temp);
8208   return REDUCE_BIT_FIELD (temp);
8209 }
8210 #undef REDUCE_BIT_FIELD
8211 \f
8212 /* Subroutine of above: reduce EXP to the precision of TYPE (in the
8213    signedness of TYPE), possibly returning the result in TARGET.  */
8214 static rtx
8215 reduce_to_bit_field_precision (rtx exp, rtx target, tree type)
8216 {
8217   HOST_WIDE_INT prec = TYPE_PRECISION (type);
8218   if (target && GET_MODE (target) != GET_MODE (exp))
8219     target = 0;
8220   if (TYPE_UNSIGNED (type))
8221     {
8222       rtx mask;
8223       if (prec < HOST_BITS_PER_WIDE_INT)
8224         mask = immed_double_const (((unsigned HOST_WIDE_INT) 1 << prec) - 1, 0,
8225                                    GET_MODE (exp));
8226       else
8227         mask = immed_double_const ((unsigned HOST_WIDE_INT) -1,
8228                                    ((unsigned HOST_WIDE_INT) 1
8229                                     << (prec - HOST_BITS_PER_WIDE_INT)) - 1,
8230                                    GET_MODE (exp));
8231       return expand_and (GET_MODE (exp), exp, mask, target);
8232     }
8233   else
8234     {
8235       tree count = build_int_cst (NULL_TREE,
8236                                   GET_MODE_BITSIZE (GET_MODE (exp)) - prec);
8237       exp = expand_shift (LSHIFT_EXPR, GET_MODE (exp), exp, count, target, 0);
8238       return expand_shift (RSHIFT_EXPR, GET_MODE (exp), exp, count, target, 0);
8239     }
8240 }
8241 \f
8242 /* Subroutine of above: returns 1 if OFFSET corresponds to an offset that
8243    when applied to the address of EXP produces an address known to be
8244    aligned more than BIGGEST_ALIGNMENT.  */
8245
8246 static int
8247 is_aligning_offset (tree offset, tree exp)
8248 {
8249   /* Strip off any conversions.  */
8250   while (TREE_CODE (offset) == NON_LVALUE_EXPR
8251          || TREE_CODE (offset) == NOP_EXPR
8252          || TREE_CODE (offset) == CONVERT_EXPR)
8253     offset = TREE_OPERAND (offset, 0);
8254
8255   /* We must now have a BIT_AND_EXPR with a constant that is one less than
8256      power of 2 and which is larger than BIGGEST_ALIGNMENT.  */
8257   if (TREE_CODE (offset) != BIT_AND_EXPR
8258       || !host_integerp (TREE_OPERAND (offset, 1), 1)
8259       || compare_tree_int (TREE_OPERAND (offset, 1),
8260                            BIGGEST_ALIGNMENT / BITS_PER_UNIT) <= 0
8261       || !exact_log2 (tree_low_cst (TREE_OPERAND (offset, 1), 1) + 1) < 0)
8262     return 0;
8263
8264   /* Look at the first operand of BIT_AND_EXPR and strip any conversion.
8265      It must be NEGATE_EXPR.  Then strip any more conversions.  */
8266   offset = TREE_OPERAND (offset, 0);
8267   while (TREE_CODE (offset) == NON_LVALUE_EXPR
8268          || TREE_CODE (offset) == NOP_EXPR
8269          || TREE_CODE (offset) == CONVERT_EXPR)
8270     offset = TREE_OPERAND (offset, 0);
8271
8272   if (TREE_CODE (offset) != NEGATE_EXPR)
8273     return 0;
8274
8275   offset = TREE_OPERAND (offset, 0);
8276   while (TREE_CODE (offset) == NON_LVALUE_EXPR
8277          || TREE_CODE (offset) == NOP_EXPR
8278          || TREE_CODE (offset) == CONVERT_EXPR)
8279     offset = TREE_OPERAND (offset, 0);
8280
8281   /* This must now be the address of EXP.  */
8282   return TREE_CODE (offset) == ADDR_EXPR && TREE_OPERAND (offset, 0) == exp;
8283 }
8284 \f
8285 /* Return the tree node if an ARG corresponds to a string constant or zero
8286    if it doesn't.  If we return nonzero, set *PTR_OFFSET to the offset
8287    in bytes within the string that ARG is accessing.  The type of the
8288    offset will be `sizetype'.  */
8289
8290 tree
8291 string_constant (tree arg, tree *ptr_offset)
8292 {
8293   tree array, offset;
8294   STRIP_NOPS (arg);
8295
8296   if (TREE_CODE (arg) == ADDR_EXPR)
8297     {
8298       if (TREE_CODE (TREE_OPERAND (arg, 0)) == STRING_CST)
8299         {
8300           *ptr_offset = size_zero_node;
8301           return TREE_OPERAND (arg, 0);
8302         }
8303       else if (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL)
8304         {
8305           array = TREE_OPERAND (arg, 0);
8306           offset = size_zero_node;
8307         }
8308       else if (TREE_CODE (TREE_OPERAND (arg, 0)) == ARRAY_REF)
8309         {
8310           array = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
8311           offset = TREE_OPERAND (TREE_OPERAND (arg, 0), 1);
8312           if (TREE_CODE (array) != STRING_CST
8313               && TREE_CODE (array) != VAR_DECL)
8314             return 0;
8315         }
8316       else
8317         return 0;
8318     }
8319   else if (TREE_CODE (arg) == PLUS_EXPR)
8320     {
8321       tree arg0 = TREE_OPERAND (arg, 0);
8322       tree arg1 = TREE_OPERAND (arg, 1);
8323
8324       STRIP_NOPS (arg0);
8325       STRIP_NOPS (arg1);
8326
8327       if (TREE_CODE (arg0) == ADDR_EXPR
8328           && (TREE_CODE (TREE_OPERAND (arg0, 0)) == STRING_CST
8329               || TREE_CODE (TREE_OPERAND (arg0, 0)) == VAR_DECL))
8330         {
8331           array = TREE_OPERAND (arg0, 0);
8332           offset = arg1;
8333         }
8334       else if (TREE_CODE (arg1) == ADDR_EXPR
8335                && (TREE_CODE (TREE_OPERAND (arg1, 0)) == STRING_CST
8336                    || TREE_CODE (TREE_OPERAND (arg1, 0)) == VAR_DECL))
8337         {
8338           array = TREE_OPERAND (arg1, 0);
8339           offset = arg0;
8340         }
8341       else
8342         return 0;
8343     }
8344   else
8345     return 0;
8346
8347   if (TREE_CODE (array) == STRING_CST)
8348     {
8349       *ptr_offset = convert (sizetype, offset);
8350       return array;
8351     }
8352   else if (TREE_CODE (array) == VAR_DECL)
8353     {
8354       int length;
8355
8356       /* Variables initialized to string literals can be handled too.  */
8357       if (DECL_INITIAL (array) == NULL_TREE
8358           || TREE_CODE (DECL_INITIAL (array)) != STRING_CST)
8359         return 0;
8360
8361       /* If they are read-only, non-volatile and bind locally.  */
8362       if (! TREE_READONLY (array)
8363           || TREE_SIDE_EFFECTS (array)
8364           || ! targetm.binds_local_p (array))
8365         return 0;
8366
8367       /* Avoid const char foo[4] = "abcde";  */
8368       if (DECL_SIZE_UNIT (array) == NULL_TREE
8369           || TREE_CODE (DECL_SIZE_UNIT (array)) != INTEGER_CST
8370           || (length = TREE_STRING_LENGTH (DECL_INITIAL (array))) <= 0
8371           || compare_tree_int (DECL_SIZE_UNIT (array), length) < 0)
8372         return 0;
8373
8374       /* If variable is bigger than the string literal, OFFSET must be constant
8375          and inside of the bounds of the string literal.  */
8376       offset = convert (sizetype, offset);
8377       if (compare_tree_int (DECL_SIZE_UNIT (array), length) > 0
8378           && (! host_integerp (offset, 1)
8379               || compare_tree_int (offset, length) >= 0))
8380         return 0;
8381
8382       *ptr_offset = offset;
8383       return DECL_INITIAL (array);
8384     }
8385
8386   return 0;
8387 }
8388 \f
8389 /* Generate code to calculate EXP using a store-flag instruction
8390    and return an rtx for the result.  EXP is either a comparison
8391    or a TRUTH_NOT_EXPR whose operand is a comparison.
8392
8393    If TARGET is nonzero, store the result there if convenient.
8394
8395    If ONLY_CHEAP is nonzero, only do this if it is likely to be very
8396    cheap.
8397
8398    Return zero if there is no suitable set-flag instruction
8399    available on this machine.
8400
8401    Once expand_expr has been called on the arguments of the comparison,
8402    we are committed to doing the store flag, since it is not safe to
8403    re-evaluate the expression.  We emit the store-flag insn by calling
8404    emit_store_flag, but only expand the arguments if we have a reason
8405    to believe that emit_store_flag will be successful.  If we think that
8406    it will, but it isn't, we have to simulate the store-flag with a
8407    set/jump/set sequence.  */
8408
8409 static rtx
8410 do_store_flag (tree exp, rtx target, enum machine_mode mode, int only_cheap)
8411 {
8412   enum rtx_code code;
8413   tree arg0, arg1, type;
8414   tree tem;
8415   enum machine_mode operand_mode;
8416   int invert = 0;
8417   int unsignedp;
8418   rtx op0, op1;
8419   enum insn_code icode;
8420   rtx subtarget = target;
8421   rtx result, label;
8422
8423   /* If this is a TRUTH_NOT_EXPR, set a flag indicating we must invert the
8424      result at the end.  We can't simply invert the test since it would
8425      have already been inverted if it were valid.  This case occurs for
8426      some floating-point comparisons.  */
8427
8428   if (TREE_CODE (exp) == TRUTH_NOT_EXPR)
8429     invert = 1, exp = TREE_OPERAND (exp, 0);
8430
8431   arg0 = TREE_OPERAND (exp, 0);
8432   arg1 = TREE_OPERAND (exp, 1);
8433
8434   /* Don't crash if the comparison was erroneous.  */
8435   if (arg0 == error_mark_node || arg1 == error_mark_node)
8436     return const0_rtx;
8437
8438   type = TREE_TYPE (arg0);
8439   operand_mode = TYPE_MODE (type);
8440   unsignedp = TYPE_UNSIGNED (type);
8441
8442   /* We won't bother with BLKmode store-flag operations because it would mean
8443      passing a lot of information to emit_store_flag.  */
8444   if (operand_mode == BLKmode)
8445     return 0;
8446
8447   /* We won't bother with store-flag operations involving function pointers
8448      when function pointers must be canonicalized before comparisons.  */
8449 #ifdef HAVE_canonicalize_funcptr_for_compare
8450   if (HAVE_canonicalize_funcptr_for_compare
8451       && ((TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == POINTER_TYPE
8452            && (TREE_CODE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))))
8453                == FUNCTION_TYPE))
8454           || (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 1))) == POINTER_TYPE
8455               && (TREE_CODE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 1))))
8456                   == FUNCTION_TYPE))))
8457     return 0;
8458 #endif
8459
8460   STRIP_NOPS (arg0);
8461   STRIP_NOPS (arg1);
8462
8463   /* Get the rtx comparison code to use.  We know that EXP is a comparison
8464      operation of some type.  Some comparisons against 1 and -1 can be
8465      converted to comparisons with zero.  Do so here so that the tests
8466      below will be aware that we have a comparison with zero.   These
8467      tests will not catch constants in the first operand, but constants
8468      are rarely passed as the first operand.  */
8469
8470   switch (TREE_CODE (exp))
8471     {
8472     case EQ_EXPR:
8473       code = EQ;
8474       break;
8475     case NE_EXPR:
8476       code = NE;
8477       break;
8478     case LT_EXPR:
8479       if (integer_onep (arg1))
8480         arg1 = integer_zero_node, code = unsignedp ? LEU : LE;
8481       else
8482         code = unsignedp ? LTU : LT;
8483       break;
8484     case LE_EXPR:
8485       if (! unsignedp && integer_all_onesp (arg1))
8486         arg1 = integer_zero_node, code = LT;
8487       else
8488         code = unsignedp ? LEU : LE;
8489       break;
8490     case GT_EXPR:
8491       if (! unsignedp && integer_all_onesp (arg1))
8492         arg1 = integer_zero_node, code = GE;
8493       else
8494         code = unsignedp ? GTU : GT;
8495       break;
8496     case GE_EXPR:
8497       if (integer_onep (arg1))
8498         arg1 = integer_zero_node, code = unsignedp ? GTU : GT;
8499       else
8500         code = unsignedp ? GEU : GE;
8501       break;
8502
8503     case UNORDERED_EXPR:
8504       code = UNORDERED;
8505       break;
8506     case ORDERED_EXPR:
8507       code = ORDERED;
8508       break;
8509     case UNLT_EXPR:
8510       code = UNLT;
8511       break;
8512     case UNLE_EXPR:
8513       code = UNLE;
8514       break;
8515     case UNGT_EXPR:
8516       code = UNGT;
8517       break;
8518     case UNGE_EXPR:
8519       code = UNGE;
8520       break;
8521     case UNEQ_EXPR:
8522       code = UNEQ;
8523       break;
8524     case LTGT_EXPR:
8525       code = LTGT;
8526       break;
8527
8528     default:
8529       gcc_unreachable ();
8530     }
8531
8532   /* Put a constant second.  */
8533   if (TREE_CODE (arg0) == REAL_CST || TREE_CODE (arg0) == INTEGER_CST)
8534     {
8535       tem = arg0; arg0 = arg1; arg1 = tem;
8536       code = swap_condition (code);
8537     }
8538
8539   /* If this is an equality or inequality test of a single bit, we can
8540      do this by shifting the bit being tested to the low-order bit and
8541      masking the result with the constant 1.  If the condition was EQ,
8542      we xor it with 1.  This does not require an scc insn and is faster
8543      than an scc insn even if we have it.
8544
8545      The code to make this transformation was moved into fold_single_bit_test,
8546      so we just call into the folder and expand its result.  */
8547
8548   if ((code == NE || code == EQ)
8549       && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
8550       && integer_pow2p (TREE_OPERAND (arg0, 1)))
8551     {
8552       tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
8553       return expand_expr (fold_single_bit_test (code == NE ? NE_EXPR : EQ_EXPR,
8554                                                 arg0, arg1, type),
8555                           target, VOIDmode, EXPAND_NORMAL);
8556     }
8557
8558   /* Now see if we are likely to be able to do this.  Return if not.  */
8559   if (! can_compare_p (code, operand_mode, ccp_store_flag))
8560     return 0;
8561
8562   icode = setcc_gen_code[(int) code];
8563   if (icode == CODE_FOR_nothing
8564       || (only_cheap && insn_data[(int) icode].operand[0].mode != mode))
8565     {
8566       /* We can only do this if it is one of the special cases that
8567          can be handled without an scc insn.  */
8568       if ((code == LT && integer_zerop (arg1))
8569           || (! only_cheap && code == GE && integer_zerop (arg1)))
8570         ;
8571       else if (BRANCH_COST >= 0
8572                && ! only_cheap && (code == NE || code == EQ)
8573                && TREE_CODE (type) != REAL_TYPE
8574                && ((abs_optab->handlers[(int) operand_mode].insn_code
8575                     != CODE_FOR_nothing)
8576                    || (ffs_optab->handlers[(int) operand_mode].insn_code
8577                        != CODE_FOR_nothing)))
8578         ;
8579       else
8580         return 0;
8581     }
8582
8583   if (! get_subtarget (target)
8584       || GET_MODE (subtarget) != operand_mode)
8585     subtarget = 0;
8586
8587   expand_operands (arg0, arg1, subtarget, &op0, &op1, 0);
8588
8589   if (target == 0)
8590     target = gen_reg_rtx (mode);
8591
8592   result = emit_store_flag (target, code, op0, op1,
8593                             operand_mode, unsignedp, 1);
8594
8595   if (result)
8596     {
8597       if (invert)
8598         result = expand_binop (mode, xor_optab, result, const1_rtx,
8599                                result, 0, OPTAB_LIB_WIDEN);
8600       return result;
8601     }
8602
8603   /* If this failed, we have to do this with set/compare/jump/set code.  */
8604   if (!REG_P (target)
8605       || reg_mentioned_p (target, op0) || reg_mentioned_p (target, op1))
8606     target = gen_reg_rtx (GET_MODE (target));
8607
8608   emit_move_insn (target, invert ? const0_rtx : const1_rtx);
8609   result = compare_from_rtx (op0, op1, code, unsignedp,
8610                              operand_mode, NULL_RTX);
8611   if (GET_CODE (result) == CONST_INT)
8612     return (((result == const0_rtx && ! invert)
8613              || (result != const0_rtx && invert))
8614             ? const0_rtx : const1_rtx);
8615
8616   /* The code of RESULT may not match CODE if compare_from_rtx
8617      decided to swap its operands and reverse the original code.
8618
8619      We know that compare_from_rtx returns either a CONST_INT or
8620      a new comparison code, so it is safe to just extract the
8621      code from RESULT.  */
8622   code = GET_CODE (result);
8623
8624   label = gen_label_rtx ();
8625   gcc_assert (bcc_gen_fctn[(int) code]);
8626
8627   emit_jump_insn ((*bcc_gen_fctn[(int) code]) (label));
8628   emit_move_insn (target, invert ? const1_rtx : const0_rtx);
8629   emit_label (label);
8630
8631   return target;
8632 }
8633 \f
8634
8635 /* Stubs in case we haven't got a casesi insn.  */
8636 #ifndef HAVE_casesi
8637 # define HAVE_casesi 0
8638 # define gen_casesi(a, b, c, d, e) (0)
8639 # define CODE_FOR_casesi CODE_FOR_nothing
8640 #endif
8641
8642 /* If the machine does not have a case insn that compares the bounds,
8643    this means extra overhead for dispatch tables, which raises the
8644    threshold for using them.  */
8645 #ifndef CASE_VALUES_THRESHOLD
8646 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
8647 #endif /* CASE_VALUES_THRESHOLD */
8648
8649 unsigned int
8650 case_values_threshold (void)
8651 {
8652   return CASE_VALUES_THRESHOLD;
8653 }
8654
8655 /* Attempt to generate a casesi instruction.  Returns 1 if successful,
8656    0 otherwise (i.e. if there is no casesi instruction).  */
8657 int
8658 try_casesi (tree index_type, tree index_expr, tree minval, tree range,
8659             rtx table_label ATTRIBUTE_UNUSED, rtx default_label)
8660 {
8661   enum machine_mode index_mode = SImode;
8662   int index_bits = GET_MODE_BITSIZE (index_mode);
8663   rtx op1, op2, index;
8664   enum machine_mode op_mode;
8665
8666   if (! HAVE_casesi)
8667     return 0;
8668
8669   /* Convert the index to SImode.  */
8670   if (GET_MODE_BITSIZE (TYPE_MODE (index_type)) > GET_MODE_BITSIZE (index_mode))
8671     {
8672       enum machine_mode omode = TYPE_MODE (index_type);
8673       rtx rangertx = expand_expr (range, NULL_RTX, VOIDmode, 0);
8674
8675       /* We must handle the endpoints in the original mode.  */
8676       index_expr = build2 (MINUS_EXPR, index_type,
8677                            index_expr, minval);
8678       minval = integer_zero_node;
8679       index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
8680       emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
8681                                omode, 1, default_label);
8682       /* Now we can safely truncate.  */
8683       index = convert_to_mode (index_mode, index, 0);
8684     }
8685   else
8686     {
8687       if (TYPE_MODE (index_type) != index_mode)
8688         {
8689           index_expr = convert (lang_hooks.types.type_for_size
8690                                 (index_bits, 0), index_expr);
8691           index_type = TREE_TYPE (index_expr);
8692         }
8693
8694       index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
8695     }
8696
8697   do_pending_stack_adjust ();
8698
8699   op_mode = insn_data[(int) CODE_FOR_casesi].operand[0].mode;
8700   if (! (*insn_data[(int) CODE_FOR_casesi].operand[0].predicate)
8701       (index, op_mode))
8702     index = copy_to_mode_reg (op_mode, index);
8703
8704   op1 = expand_expr (minval, NULL_RTX, VOIDmode, 0);
8705
8706   op_mode = insn_data[(int) CODE_FOR_casesi].operand[1].mode;
8707   op1 = convert_modes (op_mode, TYPE_MODE (TREE_TYPE (minval)),
8708                        op1, TYPE_UNSIGNED (TREE_TYPE (minval)));
8709   if (! (*insn_data[(int) CODE_FOR_casesi].operand[1].predicate)
8710       (op1, op_mode))
8711     op1 = copy_to_mode_reg (op_mode, op1);
8712
8713   op2 = expand_expr (range, NULL_RTX, VOIDmode, 0);
8714
8715   op_mode = insn_data[(int) CODE_FOR_casesi].operand[2].mode;
8716   op2 = convert_modes (op_mode, TYPE_MODE (TREE_TYPE (range)),
8717                        op2, TYPE_UNSIGNED (TREE_TYPE (range)));
8718   if (! (*insn_data[(int) CODE_FOR_casesi].operand[2].predicate)
8719       (op2, op_mode))
8720     op2 = copy_to_mode_reg (op_mode, op2);
8721
8722   emit_jump_insn (gen_casesi (index, op1, op2,
8723                               table_label, default_label));
8724   return 1;
8725 }
8726
8727 /* Attempt to generate a tablejump instruction; same concept.  */
8728 #ifndef HAVE_tablejump
8729 #define HAVE_tablejump 0
8730 #define gen_tablejump(x, y) (0)
8731 #endif
8732
8733 /* Subroutine of the next function.
8734
8735    INDEX is the value being switched on, with the lowest value
8736    in the table already subtracted.
8737    MODE is its expected mode (needed if INDEX is constant).
8738    RANGE is the length of the jump table.
8739    TABLE_LABEL is a CODE_LABEL rtx for the table itself.
8740
8741    DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
8742    index value is out of range.  */
8743
8744 static void
8745 do_tablejump (rtx index, enum machine_mode mode, rtx range, rtx table_label,
8746               rtx default_label)
8747 {
8748   rtx temp, vector;
8749
8750   if (INTVAL (range) > cfun->max_jumptable_ents)
8751     cfun->max_jumptable_ents = INTVAL (range);
8752
8753   /* Do an unsigned comparison (in the proper mode) between the index
8754      expression and the value which represents the length of the range.
8755      Since we just finished subtracting the lower bound of the range
8756      from the index expression, this comparison allows us to simultaneously
8757      check that the original index expression value is both greater than
8758      or equal to the minimum value of the range and less than or equal to
8759      the maximum value of the range.  */
8760
8761   emit_cmp_and_jump_insns (index, range, GTU, NULL_RTX, mode, 1,
8762                            default_label);
8763
8764   /* If index is in range, it must fit in Pmode.
8765      Convert to Pmode so we can index with it.  */
8766   if (mode != Pmode)
8767     index = convert_to_mode (Pmode, index, 1);
8768
8769   /* Don't let a MEM slip through, because then INDEX that comes
8770      out of PIC_CASE_VECTOR_ADDRESS won't be a valid address,
8771      and break_out_memory_refs will go to work on it and mess it up.  */
8772 #ifdef PIC_CASE_VECTOR_ADDRESS
8773   if (flag_pic && !REG_P (index))
8774     index = copy_to_mode_reg (Pmode, index);
8775 #endif
8776
8777   /* If flag_force_addr were to affect this address
8778      it could interfere with the tricky assumptions made
8779      about addresses that contain label-refs,
8780      which may be valid only very near the tablejump itself.  */
8781   /* ??? The only correct use of CASE_VECTOR_MODE is the one inside the
8782      GET_MODE_SIZE, because this indicates how large insns are.  The other
8783      uses should all be Pmode, because they are addresses.  This code
8784      could fail if addresses and insns are not the same size.  */
8785   index = gen_rtx_PLUS (Pmode,
8786                         gen_rtx_MULT (Pmode, index,
8787                                       GEN_INT (GET_MODE_SIZE (CASE_VECTOR_MODE))),
8788                         gen_rtx_LABEL_REF (Pmode, table_label));
8789 #ifdef PIC_CASE_VECTOR_ADDRESS
8790   if (flag_pic)
8791     index = PIC_CASE_VECTOR_ADDRESS (index);
8792   else
8793 #endif
8794     index = memory_address_noforce (CASE_VECTOR_MODE, index);
8795   temp = gen_reg_rtx (CASE_VECTOR_MODE);
8796   vector = gen_const_mem (CASE_VECTOR_MODE, index);
8797   convert_move (temp, vector, 0);
8798
8799   emit_jump_insn (gen_tablejump (temp, table_label));
8800
8801   /* If we are generating PIC code or if the table is PC-relative, the
8802      table and JUMP_INSN must be adjacent, so don't output a BARRIER.  */
8803   if (! CASE_VECTOR_PC_RELATIVE && ! flag_pic)
8804     emit_barrier ();
8805 }
8806
8807 int
8808 try_tablejump (tree index_type, tree index_expr, tree minval, tree range,
8809                rtx table_label, rtx default_label)
8810 {
8811   rtx index;
8812
8813   if (! HAVE_tablejump)
8814     return 0;
8815
8816   index_expr = fold (build2 (MINUS_EXPR, index_type,
8817                              convert (index_type, index_expr),
8818                              convert (index_type, minval)));
8819   index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
8820   do_pending_stack_adjust ();
8821
8822   do_tablejump (index, TYPE_MODE (index_type),
8823                 convert_modes (TYPE_MODE (index_type),
8824                                TYPE_MODE (TREE_TYPE (range)),
8825                                expand_expr (range, NULL_RTX,
8826                                             VOIDmode, 0),
8827                                TYPE_UNSIGNED (TREE_TYPE (range))),
8828                 table_label, default_label);
8829   return 1;
8830 }
8831
8832 /* Nonzero if the mode is a valid vector mode for this architecture.
8833    This returns nonzero even if there is no hardware support for the
8834    vector mode, but we can emulate with narrower modes.  */
8835
8836 int
8837 vector_mode_valid_p (enum machine_mode mode)
8838 {
8839   enum mode_class class = GET_MODE_CLASS (mode);
8840   enum machine_mode innermode;
8841
8842   /* Doh!  What's going on?  */
8843   if (class != MODE_VECTOR_INT
8844       && class != MODE_VECTOR_FLOAT)
8845     return 0;
8846
8847   /* Hardware support.  Woo hoo!  */
8848   if (targetm.vector_mode_supported_p (mode))
8849     return 1;
8850
8851   innermode = GET_MODE_INNER (mode);
8852
8853   /* We should probably return 1 if requesting V4DI and we have no DI,
8854      but we have V2DI, but this is probably very unlikely.  */
8855
8856   /* If we have support for the inner mode, we can safely emulate it.
8857      We may not have V2DI, but me can emulate with a pair of DIs.  */
8858   return targetm.scalar_mode_supported_p (innermode);
8859 }
8860
8861 /* Return a CONST_VECTOR rtx for a VECTOR_CST tree.  */
8862 static rtx
8863 const_vector_from_tree (tree exp)
8864 {
8865   rtvec v;
8866   int units, i;
8867   tree link, elt;
8868   enum machine_mode inner, mode;
8869
8870   mode = TYPE_MODE (TREE_TYPE (exp));
8871
8872   if (initializer_zerop (exp))
8873     return CONST0_RTX (mode);
8874
8875   units = GET_MODE_NUNITS (mode);
8876   inner = GET_MODE_INNER (mode);
8877
8878   v = rtvec_alloc (units);
8879
8880   link = TREE_VECTOR_CST_ELTS (exp);
8881   for (i = 0; link; link = TREE_CHAIN (link), ++i)
8882     {
8883       elt = TREE_VALUE (link);
8884
8885       if (TREE_CODE (elt) == REAL_CST)
8886         RTVEC_ELT (v, i) = CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (elt),
8887                                                          inner);
8888       else
8889         RTVEC_ELT (v, i) = immed_double_const (TREE_INT_CST_LOW (elt),
8890                                                TREE_INT_CST_HIGH (elt),
8891                                                inner);
8892     }
8893
8894   /* Initialize remaining elements to 0.  */
8895   for (; i < units; ++i)
8896     RTVEC_ELT (v, i) = CONST0_RTX (inner);
8897
8898   return gen_rtx_CONST_VECTOR (mode, v);
8899 }
8900 #include "gt-expr.h"