OSDN Git Service

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