OSDN Git Service

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