OSDN Git Service

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