OSDN Git Service

* config/alpha/osf5.h (TARGET_LD_BUGGY_LDGP): New.
[pf3gnuchains/gcc-fork.git] / gcc / explow.c
1 /* Subroutines for manipulating rtx's in semantically interesting ways.
2    Copyright (C) 1987, 1991, 1994, 1995, 1996, 1997, 1998,
3    1999, 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
23 #include "config.h"
24 #include "system.h"
25 #include "toplev.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "tm_p.h"
29 #include "flags.h"
30 #include "function.h"
31 #include "expr.h"
32 #include "hard-reg-set.h"
33 #include "insn-config.h"
34 #include "recog.h"
35
36 #if !defined PREFERRED_STACK_BOUNDARY && defined STACK_BOUNDARY
37 #define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY
38 #endif
39
40 static rtx break_out_memory_refs        PARAMS ((rtx));
41 static void emit_stack_probe            PARAMS ((rtx));
42
43
44 /* Truncate and perhaps sign-extend C as appropriate for MODE.  */
45
46 HOST_WIDE_INT
47 trunc_int_for_mode (c, mode)
48      HOST_WIDE_INT c;
49      enum machine_mode mode;
50 {
51   int width = GET_MODE_BITSIZE (mode);
52
53   /* Canonicalize BImode to 0 and STORE_FLAG_VALUE.  */
54   if (mode == BImode)
55     return c & 1 ? STORE_FLAG_VALUE : 0;
56
57   /* Sign-extend for the requested mode.  */
58
59   if (width < HOST_BITS_PER_WIDE_INT)
60     {
61       HOST_WIDE_INT sign = 1;
62       sign <<= width - 1;
63       c &= (sign << 1) - 1;
64       c ^= sign;
65       c -= sign;
66     }
67
68   return c;
69 }
70
71 /* Return an rtx for the sum of X and the integer C.
72
73    This function should be used via the `plus_constant' macro.  */
74
75 rtx
76 plus_constant_wide (x, c)
77      register rtx x;
78      register HOST_WIDE_INT c;
79 {
80   register RTX_CODE code;
81   register enum machine_mode mode;
82   register rtx tem;
83   int all_constant = 0;
84
85   if (c == 0)
86     return x;
87
88  restart:
89
90   code = GET_CODE (x);
91   mode = GET_MODE (x);
92   switch (code)
93     {
94     case CONST_INT:
95       return GEN_INT (INTVAL (x) + c);
96
97     case CONST_DOUBLE:
98       {
99         unsigned HOST_WIDE_INT l1 = CONST_DOUBLE_LOW (x);
100         HOST_WIDE_INT h1 = CONST_DOUBLE_HIGH (x);
101         unsigned HOST_WIDE_INT l2 = c;
102         HOST_WIDE_INT h2 = c < 0 ? ~0 : 0;
103         unsigned HOST_WIDE_INT lv;
104         HOST_WIDE_INT hv;
105
106         add_double (l1, h1, l2, h2, &lv, &hv);
107
108         return immed_double_const (lv, hv, VOIDmode);
109       }
110
111     case MEM:
112       /* If this is a reference to the constant pool, try replacing it with
113          a reference to a new constant.  If the resulting address isn't
114          valid, don't return it because we have no way to validize it.  */
115       if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
116           && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
117         {
118           tem
119             = force_const_mem (GET_MODE (x),
120                                plus_constant (get_pool_constant (XEXP (x, 0)),
121                                               c));
122           if (memory_address_p (GET_MODE (tem), XEXP (tem, 0)))
123             return tem;
124         }
125       break;
126
127     case CONST:
128       /* If adding to something entirely constant, set a flag
129          so that we can add a CONST around the result.  */
130       x = XEXP (x, 0);
131       all_constant = 1;
132       goto restart;
133
134     case SYMBOL_REF:
135     case LABEL_REF:
136       all_constant = 1;
137       break;
138
139     case PLUS:
140       /* The interesting case is adding the integer to a sum.
141          Look for constant term in the sum and combine
142          with C.  For an integer constant term, we make a combined
143          integer.  For a constant term that is not an explicit integer,
144          we cannot really combine, but group them together anyway.  
145
146          Restart or use a recursive call in case the remaining operand is
147          something that we handle specially, such as a SYMBOL_REF.
148
149          We may not immediately return from the recursive call here, lest
150          all_constant gets lost.  */
151
152       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
153         {
154           c += INTVAL (XEXP (x, 1));
155
156           if (GET_MODE (x) != VOIDmode)
157             c = trunc_int_for_mode (c, GET_MODE (x));
158
159           x = XEXP (x, 0);
160           goto restart;
161         }
162       else if (CONSTANT_P (XEXP (x, 0)))
163         {
164           x = gen_rtx_PLUS (mode,
165                             plus_constant (XEXP (x, 0), c),
166                             XEXP (x, 1));
167           c = 0;
168         }
169       else if (CONSTANT_P (XEXP (x, 1)))
170         {
171           x = gen_rtx_PLUS (mode,
172                             XEXP (x, 0),
173                             plus_constant (XEXP (x, 1), c));
174           c = 0;
175         }
176       break;
177       
178     default:
179       break;
180     }
181
182   if (c != 0)
183     x = gen_rtx_PLUS (mode, x, GEN_INT (c));
184
185   if (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == LABEL_REF)
186     return x;
187   else if (all_constant)
188     return gen_rtx_CONST (mode, x);
189   else
190     return x;
191 }
192
193 /* This is the same as `plus_constant', except that it handles LO_SUM.
194
195    This function should be used via the `plus_constant_for_output' macro.  */
196
197 rtx
198 plus_constant_for_output_wide (x, c)
199      register rtx x;
200      register HOST_WIDE_INT c;
201 {
202   register enum machine_mode mode = GET_MODE (x);
203
204   if (GET_CODE (x) == LO_SUM)
205     return gen_rtx_LO_SUM (mode, XEXP (x, 0),
206                            plus_constant_for_output (XEXP (x, 1), c));
207
208   else
209     return plus_constant (x, c);
210 }
211 \f
212 /* If X is a sum, return a new sum like X but lacking any constant terms.
213    Add all the removed constant terms into *CONSTPTR.
214    X itself is not altered.  The result != X if and only if
215    it is not isomorphic to X.  */
216
217 rtx
218 eliminate_constant_term (x, constptr)
219      rtx x;
220      rtx *constptr;
221 {
222   register rtx x0, x1;
223   rtx tem;
224
225   if (GET_CODE (x) != PLUS)
226     return x;
227
228   /* First handle constants appearing at this level explicitly.  */
229   if (GET_CODE (XEXP (x, 1)) == CONST_INT
230       && 0 != (tem = simplify_binary_operation (PLUS, GET_MODE (x), *constptr,
231                                                 XEXP (x, 1)))
232       && GET_CODE (tem) == CONST_INT)
233     {
234       *constptr = tem;
235       return eliminate_constant_term (XEXP (x, 0), constptr);
236     }
237
238   tem = const0_rtx;
239   x0 = eliminate_constant_term (XEXP (x, 0), &tem);
240   x1 = eliminate_constant_term (XEXP (x, 1), &tem);
241   if ((x1 != XEXP (x, 1) || x0 != XEXP (x, 0))
242       && 0 != (tem = simplify_binary_operation (PLUS, GET_MODE (x),
243                                                 *constptr, tem))
244       && GET_CODE (tem) == CONST_INT)
245     {
246       *constptr = tem;
247       return gen_rtx_PLUS (GET_MODE (x), x0, x1);
248     }
249
250   return x;
251 }
252
253 /* Returns the insn that next references REG after INSN, or 0
254    if REG is clobbered before next referenced or we cannot find
255    an insn that references REG in a straight-line piece of code.  */
256
257 rtx
258 find_next_ref (reg, insn)
259      rtx reg;
260      rtx insn;
261 {
262   rtx next;
263
264   for (insn = NEXT_INSN (insn); insn; insn = next)
265     {
266       next = NEXT_INSN (insn);
267       if (GET_CODE (insn) == NOTE)
268         continue;
269       if (GET_CODE (insn) == CODE_LABEL
270           || GET_CODE (insn) == BARRIER)
271         return 0;
272       if (GET_CODE (insn) == INSN
273           || GET_CODE (insn) == JUMP_INSN
274           || GET_CODE (insn) == CALL_INSN)
275         {
276           if (reg_set_p (reg, insn))
277             return 0;
278           if (reg_mentioned_p (reg, PATTERN (insn)))
279             return insn;
280           if (GET_CODE (insn) == JUMP_INSN)
281             {
282               if (any_uncondjump_p (insn))
283                 next = JUMP_LABEL (insn);
284               else
285                 return 0;
286             }
287           if (GET_CODE (insn) == CALL_INSN
288               && REGNO (reg) < FIRST_PSEUDO_REGISTER
289               && call_used_regs[REGNO (reg)])
290             return 0;
291         }
292       else
293         abort ();
294     }
295   return 0;
296 }
297
298 /* Return an rtx for the size in bytes of the value of EXP.  */
299
300 rtx
301 expr_size (exp)
302      tree exp;
303 {
304   tree size = size_in_bytes (TREE_TYPE (exp));
305
306   if (TREE_CODE (size) != INTEGER_CST
307       && contains_placeholder_p (size))
308     size = build (WITH_RECORD_EXPR, sizetype, size, exp);
309
310   return expand_expr (size, NULL_RTX, TYPE_MODE (sizetype),
311                       EXPAND_MEMORY_USE_BAD);
312 }
313 \f
314 /* Return a copy of X in which all memory references
315    and all constants that involve symbol refs
316    have been replaced with new temporary registers.
317    Also emit code to load the memory locations and constants
318    into those registers.
319
320    If X contains no such constants or memory references,
321    X itself (not a copy) is returned.
322
323    If a constant is found in the address that is not a legitimate constant
324    in an insn, it is left alone in the hope that it might be valid in the
325    address.
326
327    X may contain no arithmetic except addition, subtraction and multiplication.
328    Values returned by expand_expr with 1 for sum_ok fit this constraint.  */
329
330 static rtx
331 break_out_memory_refs (x)
332      register rtx x;
333 {
334   if (GET_CODE (x) == MEM
335       || (CONSTANT_P (x) && CONSTANT_ADDRESS_P (x)
336           && GET_MODE (x) != VOIDmode))
337     x = force_reg (GET_MODE (x), x);
338   else if (GET_CODE (x) == PLUS || GET_CODE (x) == MINUS
339            || GET_CODE (x) == MULT)
340     {
341       register rtx op0 = break_out_memory_refs (XEXP (x, 0));
342       register rtx op1 = break_out_memory_refs (XEXP (x, 1));
343
344       if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
345         x = gen_rtx_fmt_ee (GET_CODE (x), Pmode, op0, op1);
346     }
347
348   return x;
349 }
350
351 #ifdef POINTERS_EXTEND_UNSIGNED
352
353 /* Given X, a memory address in ptr_mode, convert it to an address
354    in Pmode, or vice versa (TO_MODE says which way).  We take advantage of
355    the fact that pointers are not allowed to overflow by commuting arithmetic
356    operations over conversions so that address arithmetic insns can be
357    used.  */
358
359 rtx
360 convert_memory_address (to_mode, x)
361      enum machine_mode to_mode;
362      rtx x;
363 {
364   enum machine_mode from_mode = to_mode == ptr_mode ? Pmode : ptr_mode;
365   rtx temp;
366
367   /* Here we handle some special cases.  If none of them apply, fall through
368      to the default case.  */
369   switch (GET_CODE (x))
370     {
371     case CONST_INT:
372     case CONST_DOUBLE:
373       return x;
374
375     case SUBREG:
376       if (GET_MODE (SUBREG_REG (x)) == to_mode)
377         return SUBREG_REG (x);
378       break;
379
380     case LABEL_REF:
381       temp = gen_rtx_LABEL_REF (to_mode, XEXP (x, 0));
382       LABEL_REF_NONLOCAL_P (temp) = LABEL_REF_NONLOCAL_P (x);
383       return temp;
384
385     case SYMBOL_REF:
386       temp = gen_rtx_SYMBOL_REF (to_mode, XSTR (x, 0));
387       SYMBOL_REF_FLAG (temp) = SYMBOL_REF_FLAG (x);
388       CONSTANT_POOL_ADDRESS_P (temp) = CONSTANT_POOL_ADDRESS_P (x);
389       STRING_POOL_ADDRESS_P (temp) = STRING_POOL_ADDRESS_P (x);
390       return temp;
391
392     case CONST:
393       return gen_rtx_CONST (to_mode, 
394                             convert_memory_address (to_mode, XEXP (x, 0)));
395
396     case PLUS:
397     case MULT:
398       /* For addition the second operand is a small constant, we can safely
399          permute the conversion and addition operation.  We can always safely
400          permute them if we are making the address narrower.  In addition,
401          always permute the operations if this is a constant.  */
402       if (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (from_mode)
403           || (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT
404               && (INTVAL (XEXP (x, 1)) + 20000 < 40000
405                   || CONSTANT_P (XEXP (x, 0)))))
406         return gen_rtx_fmt_ee (GET_CODE (x), to_mode, 
407                                convert_memory_address (to_mode, XEXP (x, 0)),
408                                convert_memory_address (to_mode, XEXP (x, 1)));
409       break;
410       
411     default:
412       break;
413     }
414
415   return convert_modes (to_mode, from_mode,
416                         x, POINTERS_EXTEND_UNSIGNED);
417 }
418 #endif
419
420 /* Given a memory address or facsimile X, construct a new address,
421    currently equivalent, that is stable: future stores won't change it.
422
423    X must be composed of constants, register and memory references
424    combined with addition, subtraction and multiplication:
425    in other words, just what you can get from expand_expr if sum_ok is 1.
426
427    Works by making copies of all regs and memory locations used
428    by X and combining them the same way X does.
429    You could also stabilize the reference to this address
430    by copying the address to a register with copy_to_reg;
431    but then you wouldn't get indexed addressing in the reference.  */
432
433 rtx
434 copy_all_regs (x)
435      register rtx x;
436 {
437   if (GET_CODE (x) == REG)
438     {
439       if (REGNO (x) != FRAME_POINTER_REGNUM
440 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
441           && REGNO (x) != HARD_FRAME_POINTER_REGNUM
442 #endif
443           )
444         x = copy_to_reg (x);
445     }
446   else if (GET_CODE (x) == MEM)
447     x = copy_to_reg (x);
448   else if (GET_CODE (x) == PLUS || GET_CODE (x) == MINUS
449            || GET_CODE (x) == MULT)
450     {
451       register rtx op0 = copy_all_regs (XEXP (x, 0));
452       register rtx op1 = copy_all_regs (XEXP (x, 1));
453       if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
454         x = gen_rtx_fmt_ee (GET_CODE (x), Pmode, op0, op1);
455     }
456   return x;
457 }
458 \f
459 /* Return something equivalent to X but valid as a memory address
460    for something of mode MODE.  When X is not itself valid, this
461    works by copying X or subexpressions of it into registers.  */
462
463 rtx
464 memory_address (mode, x)
465      enum machine_mode mode;
466      register rtx x;
467 {
468   register rtx oldx = x;
469
470   if (GET_CODE (x) == ADDRESSOF)
471     return x;
472
473 #ifdef POINTERS_EXTEND_UNSIGNED
474   if (GET_MODE (x) == ptr_mode)
475     x = convert_memory_address (Pmode, x);
476 #endif
477
478   /* By passing constant addresses thru registers
479      we get a chance to cse them.  */
480   if (! cse_not_expected && CONSTANT_P (x) && CONSTANT_ADDRESS_P (x))
481     x = force_reg (Pmode, x);
482
483   /* Accept a QUEUED that refers to a REG
484      even though that isn't a valid address.
485      On attempting to put this in an insn we will call protect_from_queue
486      which will turn it into a REG, which is valid.  */
487   else if (GET_CODE (x) == QUEUED
488       && GET_CODE (QUEUED_VAR (x)) == REG)
489     ;
490
491   /* We get better cse by rejecting indirect addressing at this stage.
492      Let the combiner create indirect addresses where appropriate.
493      For now, generate the code so that the subexpressions useful to share
494      are visible.  But not if cse won't be done!  */
495   else
496     {
497       if (! cse_not_expected && GET_CODE (x) != REG)
498         x = break_out_memory_refs (x);
499
500       /* At this point, any valid address is accepted.  */
501       GO_IF_LEGITIMATE_ADDRESS (mode, x, win);
502
503       /* If it was valid before but breaking out memory refs invalidated it,
504          use it the old way.  */
505       if (memory_address_p (mode, oldx))
506         goto win2;
507
508       /* Perform machine-dependent transformations on X
509          in certain cases.  This is not necessary since the code
510          below can handle all possible cases, but machine-dependent
511          transformations can make better code.  */
512       LEGITIMIZE_ADDRESS (x, oldx, mode, win);
513
514       /* PLUS and MULT can appear in special ways
515          as the result of attempts to make an address usable for indexing.
516          Usually they are dealt with by calling force_operand, below.
517          But a sum containing constant terms is special
518          if removing them makes the sum a valid address:
519          then we generate that address in a register
520          and index off of it.  We do this because it often makes
521          shorter code, and because the addresses thus generated
522          in registers often become common subexpressions.  */
523       if (GET_CODE (x) == PLUS)
524         {
525           rtx constant_term = const0_rtx;
526           rtx y = eliminate_constant_term (x, &constant_term);
527           if (constant_term == const0_rtx
528               || ! memory_address_p (mode, y))
529             x = force_operand (x, NULL_RTX);
530           else
531             {
532               y = gen_rtx_PLUS (GET_MODE (x), copy_to_reg (y), constant_term);
533               if (! memory_address_p (mode, y))
534                 x = force_operand (x, NULL_RTX);
535               else
536                 x = y;
537             }
538         }
539
540       else if (GET_CODE (x) == MULT || GET_CODE (x) == MINUS)
541         x = force_operand (x, NULL_RTX);
542
543       /* If we have a register that's an invalid address,
544          it must be a hard reg of the wrong class.  Copy it to a pseudo.  */
545       else if (GET_CODE (x) == REG)
546         x = copy_to_reg (x);
547
548       /* Last resort: copy the value to a register, since
549          the register is a valid address.  */
550       else
551         x = force_reg (Pmode, x);
552
553       goto done;
554
555     win2:
556       x = oldx;
557     win:
558       if (flag_force_addr && ! cse_not_expected && GET_CODE (x) != REG
559           /* Don't copy an addr via a reg if it is one of our stack slots.  */
560           && ! (GET_CODE (x) == PLUS
561                 && (XEXP (x, 0) == virtual_stack_vars_rtx
562                     || XEXP (x, 0) == virtual_incoming_args_rtx)))
563         {
564           if (general_operand (x, Pmode))
565             x = force_reg (Pmode, x);
566           else
567             x = force_operand (x, NULL_RTX);
568         }
569     }
570
571  done:
572
573   /* If we didn't change the address, we are done.  Otherwise, mark
574      a reg as a pointer if we have REG or REG + CONST_INT.  */
575   if (oldx == x)
576     return x;
577   else if (GET_CODE (x) == REG)
578     mark_reg_pointer (x, BITS_PER_UNIT);
579   else if (GET_CODE (x) == PLUS
580            && GET_CODE (XEXP (x, 0)) == REG
581            && GET_CODE (XEXP (x, 1)) == CONST_INT)
582     mark_reg_pointer (XEXP (x, 0), BITS_PER_UNIT);
583
584   /* OLDX may have been the address on a temporary.  Update the address
585      to indicate that X is now used.  */
586   update_temp_slot_address (oldx, x);
587
588   return x;
589 }
590
591 /* Like `memory_address' but pretend `flag_force_addr' is 0.  */
592
593 rtx
594 memory_address_noforce (mode, x)
595      enum machine_mode mode;
596      rtx x;
597 {
598   int ambient_force_addr = flag_force_addr;
599   rtx val;
600
601   flag_force_addr = 0;
602   val = memory_address (mode, x);
603   flag_force_addr = ambient_force_addr;
604   return val;
605 }
606
607 /* Convert a mem ref into one with a valid memory address.
608    Pass through anything else unchanged.  */
609
610 rtx
611 validize_mem (ref)
612      rtx ref;
613 {
614   if (GET_CODE (ref) != MEM)
615     return ref;
616   if (memory_address_p (GET_MODE (ref), XEXP (ref, 0)))
617     return ref;
618   /* Don't alter REF itself, since that is probably a stack slot.  */
619   return change_address (ref, GET_MODE (ref), XEXP (ref, 0));
620 }
621 \f
622 /* Given REF, either a MEM or a REG, and T, either the type of X or
623    the expression corresponding to REF, set RTX_UNCHANGING_P if
624    appropriate.  */
625
626 void
627 maybe_set_unchanging (ref, t)
628      rtx ref;
629      tree t;
630 {
631   /* We can set RTX_UNCHANGING_P from TREE_READONLY for decls whose
632      initialization is only executed once, or whose initializer always
633      has the same value.  Currently we simplify this to PARM_DECLs in the
634      first case, and decls with TREE_CONSTANT initializers in the second.  */
635   if ((TREE_READONLY (t) && DECL_P (t)
636        && (TREE_CODE (t) == PARM_DECL
637            || DECL_INITIAL (t) == NULL_TREE
638            || TREE_CONSTANT (DECL_INITIAL (t))))
639       || TREE_CODE_CLASS (TREE_CODE (t)) == 'c')
640     RTX_UNCHANGING_P (ref) = 1;
641 }
642
643 /* Given REF, a MEM, and T, either the type of X or the expression
644    corresponding to REF, set the memory attributes.  OBJECTP is nonzero
645    if we are making a new object of this type.  */
646
647 void
648 set_mem_attributes (ref, t, objectp)
649      rtx ref;
650      tree t;
651      int objectp;
652 {
653   tree type;
654
655   /* It can happen that type_for_mode was given a mode for which there
656      is no language-level type.  In which case it returns NULL, which
657      we can see here.  */
658   if (t == NULL_TREE)
659     return;
660
661   type = TYPE_P (t) ? t : TREE_TYPE (t);
662
663   /* Get the alias set from the expression or type (perhaps using a
664      front-end routine) and then copy bits from the type.  */
665
666   /* It is incorrect to set RTX_UNCHANGING_P from TREE_READONLY (type)
667      here, because, in C and C++, the fact that a location is accessed
668      through a const expression does not mean that the value there can
669      never change.  */
670   MEM_ALIAS_SET (ref) = get_alias_set (t);
671   MEM_VOLATILE_P (ref) = TYPE_VOLATILE (type);
672   MEM_IN_STRUCT_P (ref) = AGGREGATE_TYPE_P (type);
673
674   /* If we are making an object of this type, we know that it is a scalar if
675      the type is not an aggregate. */
676   if (objectp && ! AGGREGATE_TYPE_P (type))
677     MEM_SCALAR_P (ref) = 1;
678
679   /* If T is a type, this is all we can do.  Otherwise, we may be able
680      to deduce some more information about the expression.  */
681   if (TYPE_P (t))
682     return;
683
684   maybe_set_unchanging (ref, t);
685   if (TREE_THIS_VOLATILE (t))
686     MEM_VOLATILE_P (ref) = 1;
687
688   /* Now see if we can say more about whether it's an aggregate or
689      scalar.  If we already know it's an aggregate, don't bother.  */
690   if (MEM_IN_STRUCT_P (ref))
691     return;
692
693   /* Now remove any NOPs: they don't change what the underlying object is.
694      Likewise for SAVE_EXPR.  */
695   while (TREE_CODE (t) == NOP_EXPR || TREE_CODE (t) == CONVERT_EXPR
696          || TREE_CODE (t) == NON_LVALUE_EXPR || TREE_CODE (t) == SAVE_EXPR)
697     t = TREE_OPERAND (t, 0);
698
699   /* Since we already know the type isn't an aggregate, if this is a decl,
700      it must be a scalar.  Or if it is a reference into an aggregate,
701      this is part of an aggregate.   Otherwise we don't know.  */
702   if (DECL_P (t))
703     MEM_SCALAR_P (ref) = 1;
704   else if (TREE_CODE (t) == COMPONENT_REF || TREE_CODE (t) == ARRAY_REF
705            || TREE_CODE (t) == ARRAY_RANGE_REF
706            || TREE_CODE (t) == BIT_FIELD_REF)
707     MEM_IN_STRUCT_P (ref) = 1;
708 }
709 \f
710 /* Return a modified copy of X with its memory address copied
711    into a temporary register to protect it from side effects.
712    If X is not a MEM, it is returned unchanged (and not copied).
713    Perhaps even if it is a MEM, if there is no need to change it.  */
714
715 rtx
716 stabilize (x)
717      rtx x;
718 {
719   register rtx addr;
720
721   if (GET_CODE (x) != MEM)
722     return x;
723
724   addr = XEXP (x, 0);
725   if (rtx_unstable_p (addr))
726     {
727       rtx temp = force_reg (Pmode, copy_all_regs (addr));
728       rtx mem = gen_rtx_MEM (GET_MODE (x), temp);
729
730       MEM_COPY_ATTRIBUTES (mem, x);
731       return mem;
732     }
733   return x;
734 }
735 \f
736 /* Copy the value or contents of X to a new temp reg and return that reg.  */
737
738 rtx
739 copy_to_reg (x)
740      rtx x;
741 {
742   register rtx temp = gen_reg_rtx (GET_MODE (x));
743  
744   /* If not an operand, must be an address with PLUS and MULT so
745      do the computation.  */ 
746   if (! general_operand (x, VOIDmode))
747     x = force_operand (x, temp);
748   
749   if (x != temp)
750     emit_move_insn (temp, x);
751
752   return temp;
753 }
754
755 /* Like copy_to_reg but always give the new register mode Pmode
756    in case X is a constant.  */
757
758 rtx
759 copy_addr_to_reg (x)
760      rtx x;
761 {
762   return copy_to_mode_reg (Pmode, x);
763 }
764
765 /* Like copy_to_reg but always give the new register mode MODE
766    in case X is a constant.  */
767
768 rtx
769 copy_to_mode_reg (mode, x)
770      enum machine_mode mode;
771      rtx x;
772 {
773   register rtx temp = gen_reg_rtx (mode);
774   
775   /* If not an operand, must be an address with PLUS and MULT so
776      do the computation.  */ 
777   if (! general_operand (x, VOIDmode))
778     x = force_operand (x, temp);
779
780   if (GET_MODE (x) != mode && GET_MODE (x) != VOIDmode)
781     abort ();
782   if (x != temp)
783     emit_move_insn (temp, x);
784   return temp;
785 }
786
787 /* Load X into a register if it is not already one.
788    Use mode MODE for the register.
789    X should be valid for mode MODE, but it may be a constant which
790    is valid for all integer modes; that's why caller must specify MODE.
791
792    The caller must not alter the value in the register we return,
793    since we mark it as a "constant" register.  */
794
795 rtx
796 force_reg (mode, x)
797      enum machine_mode mode;
798      rtx x;
799 {
800   register rtx temp, insn, set;
801
802   if (GET_CODE (x) == REG)
803     return x;
804   
805   temp = gen_reg_rtx (mode);
806   
807   if (! general_operand (x, mode))
808     x = force_operand (x, NULL_RTX);
809   
810   insn = emit_move_insn (temp, x);
811
812   /* Let optimizers know that TEMP's value never changes
813      and that X can be substituted for it.  Don't get confused
814      if INSN set something else (such as a SUBREG of TEMP).  */
815   if (CONSTANT_P (x)
816       && (set = single_set (insn)) != 0
817       && SET_DEST (set) == temp)
818     {
819       rtx note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
820
821       if (note)
822         XEXP (note, 0) = x;
823       else
824         REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_EQUAL, x, REG_NOTES (insn));
825     }
826   return temp;
827 }
828
829 /* If X is a memory ref, copy its contents to a new temp reg and return
830    that reg.  Otherwise, return X.  */
831
832 rtx
833 force_not_mem (x)
834      rtx x;
835 {
836   register rtx temp;
837
838   if (GET_CODE (x) != MEM || GET_MODE (x) == BLKmode)
839     return x;
840
841   temp = gen_reg_rtx (GET_MODE (x));
842   emit_move_insn (temp, x);
843   return temp;
844 }
845
846 /* Copy X to TARGET (if it's nonzero and a reg)
847    or to a new temp reg and return that reg.
848    MODE is the mode to use for X in case it is a constant.  */
849
850 rtx
851 copy_to_suggested_reg (x, target, mode)
852      rtx x, target;
853      enum machine_mode mode;
854 {
855   register rtx temp;
856
857   if (target && GET_CODE (target) == REG)
858     temp = target;
859   else
860     temp = gen_reg_rtx (mode);
861
862   emit_move_insn (temp, x);
863   return temp;
864 }
865 \f
866 /* Return the mode to use to store a scalar of TYPE and MODE.
867    PUNSIGNEDP points to the signedness of the type and may be adjusted
868    to show what signedness to use on extension operations.
869
870    FOR_CALL is non-zero if this call is promoting args for a call.  */
871
872 enum machine_mode
873 promote_mode (type, mode, punsignedp, for_call)
874      tree type;
875      enum machine_mode mode;
876      int *punsignedp;
877      int for_call ATTRIBUTE_UNUSED;
878 {
879   enum tree_code code = TREE_CODE (type);
880   int unsignedp = *punsignedp;
881
882 #ifdef PROMOTE_FOR_CALL_ONLY
883   if (! for_call)
884     return mode;
885 #endif
886
887   switch (code)
888     {
889 #ifdef PROMOTE_MODE
890     case INTEGER_TYPE:   case ENUMERAL_TYPE:   case BOOLEAN_TYPE:
891     case CHAR_TYPE:      case REAL_TYPE:       case OFFSET_TYPE:
892       PROMOTE_MODE (mode, unsignedp, type);
893       break;
894 #endif
895
896 #ifdef POINTERS_EXTEND_UNSIGNED
897     case REFERENCE_TYPE:
898     case POINTER_TYPE:
899       mode = Pmode;
900       unsignedp = POINTERS_EXTEND_UNSIGNED;
901       break;
902 #endif
903       
904     default:
905       break;
906     }
907
908   *punsignedp = unsignedp;
909   return mode;
910 }
911 \f
912 /* Adjust the stack pointer by ADJUST (an rtx for a number of bytes).
913    This pops when ADJUST is positive.  ADJUST need not be constant.  */
914
915 void
916 adjust_stack (adjust)
917      rtx adjust;
918 {
919   rtx temp;
920   adjust = protect_from_queue (adjust, 0);
921
922   if (adjust == const0_rtx)
923     return;
924
925   /* We expect all variable sized adjustments to be multiple of
926      PREFERRED_STACK_BOUNDARY.  */
927   if (GET_CODE (adjust) == CONST_INT)
928     stack_pointer_delta -= INTVAL (adjust);
929
930   temp = expand_binop (Pmode,
931 #ifdef STACK_GROWS_DOWNWARD
932                        add_optab,
933 #else
934                        sub_optab,
935 #endif
936                        stack_pointer_rtx, adjust, stack_pointer_rtx, 0,
937                        OPTAB_LIB_WIDEN);
938
939   if (temp != stack_pointer_rtx)
940     emit_move_insn (stack_pointer_rtx, temp);
941 }
942
943 /* Adjust the stack pointer by minus ADJUST (an rtx for a number of bytes).
944    This pushes when ADJUST is positive.  ADJUST need not be constant.  */
945
946 void
947 anti_adjust_stack (adjust)
948      rtx adjust;
949 {
950   rtx temp;
951   adjust = protect_from_queue (adjust, 0);
952
953   if (adjust == const0_rtx)
954     return;
955
956   /* We expect all variable sized adjustments to be multiple of
957      PREFERRED_STACK_BOUNDARY.  */
958   if (GET_CODE (adjust) == CONST_INT)
959     stack_pointer_delta += INTVAL (adjust);
960
961   temp = expand_binop (Pmode,
962 #ifdef STACK_GROWS_DOWNWARD
963                        sub_optab,
964 #else
965                        add_optab,
966 #endif
967                        stack_pointer_rtx, adjust, stack_pointer_rtx, 0,
968                        OPTAB_LIB_WIDEN);
969
970   if (temp != stack_pointer_rtx)
971     emit_move_insn (stack_pointer_rtx, temp);
972 }
973
974 /* Round the size of a block to be pushed up to the boundary required
975    by this machine.  SIZE is the desired size, which need not be constant.  */
976
977 rtx
978 round_push (size)
979      rtx size;
980 {
981 #ifdef PREFERRED_STACK_BOUNDARY
982   int align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
983   if (align == 1)
984     return size;
985   if (GET_CODE (size) == CONST_INT)
986     {
987       int new = (INTVAL (size) + align - 1) / align * align;
988       if (INTVAL (size) != new)
989         size = GEN_INT (new);
990     }
991   else
992     {
993       /* CEIL_DIV_EXPR needs to worry about the addition overflowing,
994          but we know it can't.  So add ourselves and then do
995          TRUNC_DIV_EXPR.  */
996       size = expand_binop (Pmode, add_optab, size, GEN_INT (align - 1),
997                            NULL_RTX, 1, OPTAB_LIB_WIDEN);
998       size = expand_divmod (0, TRUNC_DIV_EXPR, Pmode, size, GEN_INT (align),
999                             NULL_RTX, 1);
1000       size = expand_mult (Pmode, size, GEN_INT (align), NULL_RTX, 1);
1001     }
1002 #endif /* PREFERRED_STACK_BOUNDARY */
1003   return size;
1004 }
1005 \f
1006 /* Save the stack pointer for the purpose in SAVE_LEVEL.  PSAVE is a pointer
1007    to a previously-created save area.  If no save area has been allocated,
1008    this function will allocate one.  If a save area is specified, it
1009    must be of the proper mode.
1010
1011    The insns are emitted after insn AFTER, if nonzero, otherwise the insns
1012    are emitted at the current position.  */
1013
1014 void
1015 emit_stack_save (save_level, psave, after)
1016      enum save_level save_level;
1017      rtx *psave;
1018      rtx after;
1019 {
1020   rtx sa = *psave;
1021   /* The default is that we use a move insn and save in a Pmode object.  */
1022   rtx (*fcn) PARAMS ((rtx, rtx)) = gen_move_insn;
1023   enum machine_mode mode = STACK_SAVEAREA_MODE (save_level);
1024
1025   /* See if this machine has anything special to do for this kind of save.  */
1026   switch (save_level)
1027     {
1028 #ifdef HAVE_save_stack_block
1029     case SAVE_BLOCK:
1030       if (HAVE_save_stack_block)
1031         fcn = gen_save_stack_block;
1032       break;
1033 #endif
1034 #ifdef HAVE_save_stack_function
1035     case SAVE_FUNCTION:
1036       if (HAVE_save_stack_function)
1037         fcn = gen_save_stack_function;
1038       break;
1039 #endif
1040 #ifdef HAVE_save_stack_nonlocal
1041     case SAVE_NONLOCAL:
1042       if (HAVE_save_stack_nonlocal)
1043         fcn = gen_save_stack_nonlocal;
1044       break;
1045 #endif
1046     default:
1047       break;
1048     }
1049
1050   /* If there is no save area and we have to allocate one, do so.  Otherwise
1051      verify the save area is the proper mode.  */
1052
1053   if (sa == 0)
1054     {
1055       if (mode != VOIDmode)
1056         {
1057           if (save_level == SAVE_NONLOCAL)
1058             *psave = sa = assign_stack_local (mode, GET_MODE_SIZE (mode), 0);
1059           else
1060             *psave = sa = gen_reg_rtx (mode);
1061         }
1062     }
1063   else
1064     {
1065       if (mode == VOIDmode || GET_MODE (sa) != mode)
1066         abort ();
1067     }
1068
1069   if (after)
1070     {
1071       rtx seq;
1072
1073       start_sequence ();
1074       /* We must validize inside the sequence, to ensure that any instructions
1075          created by the validize call also get moved to the right place.  */
1076       if (sa != 0)
1077         sa = validize_mem (sa);
1078       emit_insn (fcn (sa, stack_pointer_rtx));
1079       seq = gen_sequence ();
1080       end_sequence ();
1081       emit_insn_after (seq, after);
1082     }
1083   else
1084     {
1085       if (sa != 0)
1086         sa = validize_mem (sa);
1087       emit_insn (fcn (sa, stack_pointer_rtx));
1088     }
1089 }
1090
1091 /* Restore the stack pointer for the purpose in SAVE_LEVEL.  SA is the save
1092    area made by emit_stack_save.  If it is zero, we have nothing to do. 
1093
1094    Put any emitted insns after insn AFTER, if nonzero, otherwise at 
1095    current position.  */
1096
1097 void
1098 emit_stack_restore (save_level, sa, after)
1099      enum save_level save_level;
1100      rtx after;
1101      rtx sa;
1102 {
1103   /* The default is that we use a move insn.  */
1104   rtx (*fcn) PARAMS ((rtx, rtx)) = gen_move_insn;
1105
1106   /* See if this machine has anything special to do for this kind of save.  */
1107   switch (save_level)
1108     {
1109 #ifdef HAVE_restore_stack_block
1110     case SAVE_BLOCK:
1111       if (HAVE_restore_stack_block)
1112         fcn = gen_restore_stack_block;
1113       break;
1114 #endif
1115 #ifdef HAVE_restore_stack_function
1116     case SAVE_FUNCTION:
1117       if (HAVE_restore_stack_function)
1118         fcn = gen_restore_stack_function;
1119       break;
1120 #endif
1121 #ifdef HAVE_restore_stack_nonlocal
1122     case SAVE_NONLOCAL:
1123       if (HAVE_restore_stack_nonlocal)
1124         fcn = gen_restore_stack_nonlocal;
1125       break;
1126 #endif
1127     default:
1128       break;
1129     }
1130
1131   if (sa != 0)
1132     sa = validize_mem (sa);
1133
1134   if (after)
1135     {
1136       rtx seq;
1137
1138       start_sequence ();
1139       emit_insn (fcn (stack_pointer_rtx, sa));
1140       seq = gen_sequence ();
1141       end_sequence ();
1142       emit_insn_after (seq, after);
1143     }
1144   else
1145     emit_insn (fcn (stack_pointer_rtx, sa));
1146 }
1147 \f
1148 #ifdef SETJMP_VIA_SAVE_AREA
1149 /* Optimize RTL generated by allocate_dynamic_stack_space for targets
1150    where SETJMP_VIA_SAVE_AREA is true.  The problem is that on these
1151    platforms, the dynamic stack space used can corrupt the original
1152    frame, thus causing a crash if a longjmp unwinds to it.  */
1153
1154 void
1155 optimize_save_area_alloca (insns)
1156      rtx insns;
1157 {
1158   rtx insn;
1159
1160   for (insn = insns; insn; insn = NEXT_INSN(insn))
1161     {
1162       rtx note;
1163
1164       if (GET_CODE (insn) != INSN)
1165         continue;
1166
1167       for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
1168         {
1169           if (REG_NOTE_KIND (note) != REG_SAVE_AREA)
1170             continue;
1171
1172           if (!current_function_calls_setjmp)
1173             {
1174               rtx pat = PATTERN (insn);
1175
1176               /* If we do not see the note in a pattern matching
1177                  these precise characteristics, we did something
1178                  entirely wrong in allocate_dynamic_stack_space. 
1179
1180                  Note, one way this could happen is if SETJMP_VIA_SAVE_AREA
1181                  was defined on a machine where stacks grow towards higher
1182                  addresses.
1183
1184                  Right now only supported port with stack that grow upward
1185                  is the HPPA and it does not define SETJMP_VIA_SAVE_AREA.  */
1186               if (GET_CODE (pat) != SET
1187                   || SET_DEST (pat) != stack_pointer_rtx
1188                   || GET_CODE (SET_SRC (pat)) != MINUS
1189                   || XEXP (SET_SRC (pat), 0) != stack_pointer_rtx)
1190                 abort ();
1191
1192               /* This will now be transformed into a (set REG REG)
1193                  so we can just blow away all the other notes.  */
1194               XEXP (SET_SRC (pat), 1) = XEXP (note, 0);
1195               REG_NOTES (insn) = NULL_RTX;
1196             }
1197           else
1198             {
1199               /* setjmp was called, we must remove the REG_SAVE_AREA
1200                  note so that later passes do not get confused by its
1201                  presence.  */
1202               if (note == REG_NOTES (insn))
1203                 {
1204                   REG_NOTES (insn) = XEXP (note, 1);
1205                 }
1206               else
1207                 {
1208                   rtx srch;
1209
1210                   for (srch = REG_NOTES (insn); srch; srch = XEXP (srch, 1))
1211                     if (XEXP (srch, 1) == note)
1212                       break;
1213
1214                   if (srch == NULL_RTX)
1215                     abort();
1216
1217                   XEXP (srch, 1) = XEXP (note, 1);
1218                 }
1219             }
1220           /* Once we've seen the note of interest, we need not look at
1221              the rest of them.  */
1222           break;
1223         }
1224     }
1225 }
1226 #endif /* SETJMP_VIA_SAVE_AREA */
1227
1228 /* Return an rtx representing the address of an area of memory dynamically
1229    pushed on the stack.  This region of memory is always aligned to
1230    a multiple of BIGGEST_ALIGNMENT.
1231
1232    Any required stack pointer alignment is preserved.
1233
1234    SIZE is an rtx representing the size of the area.
1235    TARGET is a place in which the address can be placed.
1236
1237    KNOWN_ALIGN is the alignment (in bits) that we know SIZE has.  */
1238
1239 rtx
1240 allocate_dynamic_stack_space (size, target, known_align)
1241      rtx size;
1242      rtx target;
1243      int known_align;
1244 {
1245 #ifdef SETJMP_VIA_SAVE_AREA
1246   rtx setjmpless_size = NULL_RTX;
1247 #endif
1248
1249   /* If we're asking for zero bytes, it doesn't matter what we point
1250      to since we can't dereference it.  But return a reasonable
1251      address anyway.  */
1252   if (size == const0_rtx)
1253     return virtual_stack_dynamic_rtx;
1254
1255   /* Otherwise, show we're calling alloca or equivalent.  */
1256   current_function_calls_alloca = 1;
1257
1258   /* Ensure the size is in the proper mode.  */
1259   if (GET_MODE (size) != VOIDmode && GET_MODE (size) != Pmode)
1260     size = convert_to_mode (Pmode, size, 1);
1261
1262   /* We can't attempt to minimize alignment necessary, because we don't
1263      know the final value of preferred_stack_boundary yet while executing
1264      this code.  */
1265 #ifdef PREFERRED_STACK_BOUNDARY
1266   cfun->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
1267 #endif
1268
1269   /* We will need to ensure that the address we return is aligned to
1270      BIGGEST_ALIGNMENT.  If STACK_DYNAMIC_OFFSET is defined, we don't
1271      always know its final value at this point in the compilation (it 
1272      might depend on the size of the outgoing parameter lists, for
1273      example), so we must align the value to be returned in that case.
1274      (Note that STACK_DYNAMIC_OFFSET will have a default non-zero value if
1275      STACK_POINTER_OFFSET or ACCUMULATE_OUTGOING_ARGS are defined).
1276      We must also do an alignment operation on the returned value if
1277      the stack pointer alignment is less strict that BIGGEST_ALIGNMENT.
1278
1279      If we have to align, we must leave space in SIZE for the hole
1280      that might result from the alignment operation.  */
1281
1282 #if defined (STACK_DYNAMIC_OFFSET) || defined (STACK_POINTER_OFFSET) || ! defined (PREFERRED_STACK_BOUNDARY)
1283 #define MUST_ALIGN 1
1284 #else
1285 #define MUST_ALIGN (PREFERRED_STACK_BOUNDARY < BIGGEST_ALIGNMENT)
1286 #endif
1287
1288   if (MUST_ALIGN)
1289     size
1290       = force_operand (plus_constant (size, 
1291                                       BIGGEST_ALIGNMENT / BITS_PER_UNIT - 1),
1292                        NULL_RTX);
1293
1294 #ifdef SETJMP_VIA_SAVE_AREA
1295   /* If setjmp restores regs from a save area in the stack frame,
1296      avoid clobbering the reg save area.  Note that the offset of
1297      virtual_incoming_args_rtx includes the preallocated stack args space.
1298      It would be no problem to clobber that, but it's on the wrong side
1299      of the old save area.  */
1300   {
1301     rtx dynamic_offset
1302       = expand_binop (Pmode, sub_optab, virtual_stack_dynamic_rtx,
1303                       stack_pointer_rtx, NULL_RTX, 1, OPTAB_LIB_WIDEN);
1304
1305     if (!current_function_calls_setjmp)
1306       {
1307         int align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
1308
1309         /* See optimize_save_area_alloca to understand what is being
1310            set up here.  */
1311
1312 #if !defined(PREFERRED_STACK_BOUNDARY) || !defined(MUST_ALIGN) || (PREFERRED_STACK_BOUNDARY != BIGGEST_ALIGNMENT)
1313         /* If anyone creates a target with these characteristics, let them
1314            know that our optimization cannot work correctly in such a case.  */
1315         abort ();
1316 #endif
1317
1318         if (GET_CODE (size) == CONST_INT)
1319           {
1320             HOST_WIDE_INT new = INTVAL (size) / align * align;
1321
1322             if (INTVAL (size) != new)
1323               setjmpless_size = GEN_INT (new);
1324             else
1325               setjmpless_size = size;
1326           }
1327         else
1328           {
1329             /* Since we know overflow is not possible, we avoid using
1330                CEIL_DIV_EXPR and use TRUNC_DIV_EXPR instead.  */
1331             setjmpless_size = expand_divmod (0, TRUNC_DIV_EXPR, Pmode, size,
1332                                              GEN_INT (align), NULL_RTX, 1);
1333             setjmpless_size = expand_mult (Pmode, setjmpless_size,
1334                                            GEN_INT (align), NULL_RTX, 1);
1335           }
1336         /* Our optimization works based upon being able to perform a simple
1337            transformation of this RTL into a (set REG REG) so make sure things
1338            did in fact end up in a REG.  */
1339         if (!register_operand (setjmpless_size, Pmode))
1340           setjmpless_size = force_reg (Pmode, setjmpless_size);
1341       }
1342
1343     size = expand_binop (Pmode, add_optab, size, dynamic_offset,
1344                          NULL_RTX, 1, OPTAB_LIB_WIDEN);
1345   }
1346 #endif /* SETJMP_VIA_SAVE_AREA */
1347
1348   /* Round the size to a multiple of the required stack alignment.
1349      Since the stack if presumed to be rounded before this allocation,
1350      this will maintain the required alignment.
1351
1352      If the stack grows downward, we could save an insn by subtracting
1353      SIZE from the stack pointer and then aligning the stack pointer.
1354      The problem with this is that the stack pointer may be unaligned
1355      between the execution of the subtraction and alignment insns and
1356      some machines do not allow this.  Even on those that do, some
1357      signal handlers malfunction if a signal should occur between those
1358      insns.  Since this is an extremely rare event, we have no reliable
1359      way of knowing which systems have this problem.  So we avoid even
1360      momentarily mis-aligning the stack.  */
1361
1362 #ifdef PREFERRED_STACK_BOUNDARY
1363   /* If we added a variable amount to SIZE,
1364      we can no longer assume it is aligned.  */
1365 #if !defined (SETJMP_VIA_SAVE_AREA)
1366   if (MUST_ALIGN || known_align % PREFERRED_STACK_BOUNDARY != 0)
1367 #endif
1368     size = round_push (size);
1369 #endif
1370
1371   do_pending_stack_adjust ();
1372
1373  /* We ought to be called always on the toplevel and stack ought to be aligned
1374     propertly.  */
1375 #ifdef PREFERRED_STACK_BOUNDARY
1376   if (stack_pointer_delta % (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT))
1377     abort ();
1378 #endif
1379
1380   /* If needed, check that we have the required amount of stack.  Take into
1381      account what has already been checked.  */
1382   if (flag_stack_check && ! STACK_CHECK_BUILTIN)
1383     probe_stack_range (STACK_CHECK_MAX_FRAME_SIZE + STACK_CHECK_PROTECT, size);
1384
1385   /* Don't use a TARGET that isn't a pseudo or is the wrong mode.  */
1386   if (target == 0 || GET_CODE (target) != REG
1387       || REGNO (target) < FIRST_PSEUDO_REGISTER
1388       || GET_MODE (target) != Pmode)
1389     target = gen_reg_rtx (Pmode);
1390
1391   mark_reg_pointer (target, known_align);
1392
1393   /* Perform the required allocation from the stack.  Some systems do
1394      this differently than simply incrementing/decrementing from the
1395      stack pointer, such as acquiring the space by calling malloc().  */
1396 #ifdef HAVE_allocate_stack
1397   if (HAVE_allocate_stack)
1398     {
1399       enum machine_mode mode = STACK_SIZE_MODE;
1400       insn_operand_predicate_fn pred;
1401
1402       pred = insn_data[(int) CODE_FOR_allocate_stack].operand[0].predicate;
1403       if (pred && ! ((*pred) (target, Pmode)))
1404 #ifdef POINTERS_EXTEND_UNSIGNED
1405         target = convert_memory_address (Pmode, target);
1406 #else
1407         target = copy_to_mode_reg (Pmode, target);
1408 #endif
1409
1410       if (mode == VOIDmode)
1411         mode = Pmode;
1412
1413       pred = insn_data[(int) CODE_FOR_allocate_stack].operand[1].predicate;
1414       if (pred && ! ((*pred) (size, mode)))
1415         size = copy_to_mode_reg (mode, size);
1416
1417       emit_insn (gen_allocate_stack (target, size));
1418     }
1419   else
1420 #endif
1421     {
1422 #ifndef STACK_GROWS_DOWNWARD
1423       emit_move_insn (target, virtual_stack_dynamic_rtx);
1424 #endif
1425
1426       /* Check stack bounds if necessary.  */
1427       if (current_function_limit_stack)
1428         {
1429           rtx available;
1430           rtx space_available = gen_label_rtx ();
1431 #ifdef STACK_GROWS_DOWNWARD
1432           available = expand_binop (Pmode, sub_optab, 
1433                                     stack_pointer_rtx, stack_limit_rtx,
1434                                     NULL_RTX, 1, OPTAB_WIDEN);
1435 #else
1436           available = expand_binop (Pmode, sub_optab, 
1437                                     stack_limit_rtx, stack_pointer_rtx,
1438                                     NULL_RTX, 1, OPTAB_WIDEN);
1439 #endif
1440           emit_cmp_and_jump_insns (available, size, GEU, NULL_RTX, Pmode, 1,
1441                                    0, space_available);
1442 #ifdef HAVE_trap
1443           if (HAVE_trap)
1444             emit_insn (gen_trap ());
1445           else
1446 #endif
1447             error ("stack limits not supported on this target");
1448           emit_barrier ();
1449           emit_label (space_available);
1450         }
1451
1452       anti_adjust_stack (size);
1453 #ifdef SETJMP_VIA_SAVE_AREA
1454       if (setjmpless_size != NULL_RTX)
1455         {
1456           rtx note_target = get_last_insn ();
1457
1458           REG_NOTES (note_target)
1459             = gen_rtx_EXPR_LIST (REG_SAVE_AREA, setjmpless_size,
1460                                  REG_NOTES (note_target));
1461         }
1462 #endif /* SETJMP_VIA_SAVE_AREA */
1463
1464 #ifdef STACK_GROWS_DOWNWARD
1465   emit_move_insn (target, virtual_stack_dynamic_rtx);
1466 #endif
1467     }
1468
1469   if (MUST_ALIGN)
1470     {
1471       /* CEIL_DIV_EXPR needs to worry about the addition overflowing,
1472          but we know it can't.  So add ourselves and then do
1473          TRUNC_DIV_EXPR.  */
1474       target = expand_binop (Pmode, add_optab, target,
1475                              GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT - 1),
1476                              NULL_RTX, 1, OPTAB_LIB_WIDEN);
1477       target = expand_divmod (0, TRUNC_DIV_EXPR, Pmode, target,
1478                               GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT),
1479                               NULL_RTX, 1);
1480       target = expand_mult (Pmode, target,
1481                             GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT),
1482                             NULL_RTX, 1);
1483     }
1484   
1485   /* Some systems require a particular insn to refer to the stack
1486      to make the pages exist.  */
1487 #ifdef HAVE_probe
1488   if (HAVE_probe)
1489     emit_insn (gen_probe ());
1490 #endif
1491
1492   /* Record the new stack level for nonlocal gotos.  */
1493   if (nonlocal_goto_handler_slots != 0)
1494     emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level, NULL_RTX);
1495
1496   return target;
1497 }
1498 \f
1499 /* A front end may want to override GCC's stack checking by providing a 
1500    run-time routine to call to check the stack, so provide a mechanism for
1501    calling that routine.  */
1502
1503 static rtx stack_check_libfunc;
1504
1505 void
1506 set_stack_check_libfunc (libfunc)
1507      rtx libfunc;
1508 {
1509   stack_check_libfunc = libfunc;
1510 }
1511 \f
1512 /* Emit one stack probe at ADDRESS, an address within the stack.  */
1513
1514 static void
1515 emit_stack_probe (address)
1516      rtx address;
1517 {
1518   rtx memref = gen_rtx_MEM (word_mode, address);
1519
1520   MEM_VOLATILE_P (memref) = 1;
1521
1522   if (STACK_CHECK_PROBE_LOAD)
1523     emit_move_insn (gen_reg_rtx (word_mode), memref);
1524   else
1525     emit_move_insn (memref, const0_rtx);
1526 }
1527
1528 /* Probe a range of stack addresses from FIRST to FIRST+SIZE, inclusive. 
1529    FIRST is a constant and size is a Pmode RTX.  These are offsets from the
1530    current stack pointer.  STACK_GROWS_DOWNWARD says whether to add or
1531    subtract from the stack.  If SIZE is constant, this is done
1532    with a fixed number of probes.  Otherwise, we must make a loop.  */
1533
1534 #ifdef STACK_GROWS_DOWNWARD
1535 #define STACK_GROW_OP MINUS
1536 #else
1537 #define STACK_GROW_OP PLUS
1538 #endif
1539
1540 void
1541 probe_stack_range (first, size)
1542      HOST_WIDE_INT first;
1543      rtx size;
1544 {
1545   /* First see if the front end has set up a function for us to call to
1546      check the stack.  */
1547   if (stack_check_libfunc != 0)
1548     {
1549       rtx addr = memory_address (QImode,
1550                                  gen_rtx (STACK_GROW_OP, Pmode,
1551                                           stack_pointer_rtx,
1552                                           plus_constant (size, first)));
1553
1554 #ifdef POINTERS_EXTEND_UNSIGNED
1555       if (GET_MODE (addr) != ptr_mode)
1556         addr = convert_memory_address (ptr_mode, addr);
1557 #endif
1558
1559       emit_library_call (stack_check_libfunc, 0, VOIDmode, 1, addr,
1560                          ptr_mode);
1561     }
1562
1563   /* Next see if we have an insn to check the stack.  Use it if so.  */
1564 #ifdef HAVE_check_stack
1565   else if (HAVE_check_stack)
1566     {
1567       insn_operand_predicate_fn pred;
1568       rtx last_addr
1569         = force_operand (gen_rtx_STACK_GROW_OP (Pmode,
1570                                                 stack_pointer_rtx,
1571                                                 plus_constant (size, first)),
1572                          NULL_RTX);
1573
1574       pred = insn_data[(int) CODE_FOR_check_stack].operand[0].predicate;
1575       if (pred && ! ((*pred) (last_addr, Pmode)))
1576         last_addr = copy_to_mode_reg (Pmode, last_addr);
1577
1578       emit_insn (gen_check_stack (last_addr));
1579     }
1580 #endif
1581
1582   /* If we have to generate explicit probes, see if we have a constant
1583      small number of them to generate.  If so, that's the easy case.  */
1584   else if (GET_CODE (size) == CONST_INT
1585            && INTVAL (size) < 10 * STACK_CHECK_PROBE_INTERVAL)
1586     {
1587       HOST_WIDE_INT offset;
1588
1589       /* Start probing at FIRST + N * STACK_CHECK_PROBE_INTERVAL
1590          for values of N from 1 until it exceeds LAST.  If only one
1591          probe is needed, this will not generate any code.  Then probe
1592          at LAST.  */
1593       for (offset = first + STACK_CHECK_PROBE_INTERVAL;
1594            offset < INTVAL (size);
1595            offset = offset + STACK_CHECK_PROBE_INTERVAL)
1596         emit_stack_probe (gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
1597                                           stack_pointer_rtx,
1598                                           GEN_INT (offset)));
1599
1600       emit_stack_probe (gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
1601                                         stack_pointer_rtx,
1602                                         plus_constant (size, first)));
1603     }
1604
1605   /* In the variable case, do the same as above, but in a loop.  We emit loop
1606      notes so that loop optimization can be done.  */
1607   else
1608     {
1609       rtx test_addr
1610         = force_operand (gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
1611                                          stack_pointer_rtx,
1612                                          GEN_INT (first + STACK_CHECK_PROBE_INTERVAL)),
1613                          NULL_RTX);
1614       rtx last_addr
1615         = force_operand (gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
1616                                          stack_pointer_rtx,
1617                                          plus_constant (size, first)),
1618                          NULL_RTX);
1619       rtx incr = GEN_INT (STACK_CHECK_PROBE_INTERVAL);
1620       rtx loop_lab = gen_label_rtx ();
1621       rtx test_lab = gen_label_rtx ();
1622       rtx end_lab = gen_label_rtx ();
1623       rtx temp;
1624
1625       if (GET_CODE (test_addr) != REG
1626           || REGNO (test_addr) < FIRST_PSEUDO_REGISTER)
1627         test_addr = force_reg (Pmode, test_addr);
1628
1629       emit_note (NULL, NOTE_INSN_LOOP_BEG);
1630       emit_jump (test_lab);
1631
1632       emit_label (loop_lab);
1633       emit_stack_probe (test_addr);
1634
1635       emit_note (NULL, NOTE_INSN_LOOP_CONT);
1636
1637 #ifdef STACK_GROWS_DOWNWARD
1638 #define CMP_OPCODE GTU
1639       temp = expand_binop (Pmode, sub_optab, test_addr, incr, test_addr,
1640                            1, OPTAB_WIDEN);
1641 #else
1642 #define CMP_OPCODE LTU
1643       temp = expand_binop (Pmode, add_optab, test_addr, incr, test_addr,
1644                            1, OPTAB_WIDEN);
1645 #endif
1646
1647       if (temp != test_addr)
1648         abort ();
1649
1650       emit_label (test_lab);
1651       emit_cmp_and_jump_insns (test_addr, last_addr, CMP_OPCODE,
1652                                NULL_RTX, Pmode, 1, 0, loop_lab);
1653       emit_jump (end_lab);
1654       emit_note (NULL, NOTE_INSN_LOOP_END);
1655       emit_label (end_lab);
1656
1657       emit_stack_probe (last_addr);
1658     }
1659 }
1660 \f
1661 /* Return an rtx representing the register or memory location
1662    in which a scalar value of data type VALTYPE
1663    was returned by a function call to function FUNC.
1664    FUNC is a FUNCTION_DECL node if the precise function is known,
1665    otherwise 0.
1666    OUTGOING is 1 if on a machine with register windows this function
1667    should return the register in which the function will put its result
1668    and 0 otherwise. */
1669
1670 rtx
1671 hard_function_value (valtype, func, outgoing)
1672      tree valtype;
1673      tree func ATTRIBUTE_UNUSED;
1674      int outgoing ATTRIBUTE_UNUSED;
1675 {
1676   rtx val;
1677
1678 #ifdef FUNCTION_OUTGOING_VALUE
1679   if (outgoing)
1680     val = FUNCTION_OUTGOING_VALUE (valtype, func);
1681   else
1682 #endif
1683     val = FUNCTION_VALUE (valtype, func);
1684
1685   if (GET_CODE (val) == REG
1686       && GET_MODE (val) == BLKmode)
1687     {
1688       unsigned HOST_WIDE_INT bytes = int_size_in_bytes (valtype);
1689       enum machine_mode tmpmode;
1690
1691       for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
1692            tmpmode != VOIDmode;
1693            tmpmode = GET_MODE_WIDER_MODE (tmpmode))
1694         {
1695           /* Have we found a large enough mode?  */
1696           if (GET_MODE_SIZE (tmpmode) >= bytes)
1697             break;
1698         }
1699
1700       /* No suitable mode found.  */
1701       if (tmpmode == VOIDmode)
1702         abort ();
1703
1704       PUT_MODE (val, tmpmode);
1705     }      
1706   return val;
1707 }
1708
1709 /* Return an rtx representing the register or memory location
1710    in which a scalar value of mode MODE was returned by a library call.  */
1711
1712 rtx
1713 hard_libcall_value (mode)
1714      enum machine_mode mode;
1715 {
1716   return LIBCALL_VALUE (mode);
1717 }
1718
1719 /* Look up the tree code for a given rtx code
1720    to provide the arithmetic operation for REAL_ARITHMETIC.
1721    The function returns an int because the caller may not know
1722    what `enum tree_code' means.  */
1723
1724 int
1725 rtx_to_tree_code (code)
1726      enum rtx_code code;
1727 {
1728   enum tree_code tcode;
1729
1730   switch (code)
1731     {
1732     case PLUS:
1733       tcode = PLUS_EXPR;
1734       break;
1735     case MINUS:
1736       tcode = MINUS_EXPR;
1737       break;
1738     case MULT:
1739       tcode = MULT_EXPR;
1740       break;
1741     case DIV:
1742       tcode = RDIV_EXPR;
1743       break;
1744     case SMIN:
1745       tcode = MIN_EXPR;
1746       break;
1747     case SMAX:
1748       tcode = MAX_EXPR;
1749       break;
1750     default:
1751       tcode = LAST_AND_UNUSED_TREE_CODE;
1752       break;
1753     }
1754   return ((int) tcode);
1755 }