OSDN Git Service

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