home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / explow.c < prev    next >
C/C++ Source or Header  |  1996-05-16  |  34KB  |  1,223 lines

  1. /* Subroutines for manipulating rtx's in semantically interesting ways.
  2.    Copyright (C) 1987, 1991, 1994, 1995 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.  */
  20.  
  21.  
  22. #include "config.h"
  23. #include "rtl.h"
  24. #include "tree.h"
  25. #include "flags.h"
  26. #include "expr.h"
  27. #include "hard-reg-set.h"
  28. #include "insn-config.h"
  29. #include "recog.h"
  30. #include "insn-flags.h"
  31. #include "insn-codes.h"
  32.  
  33. static rtx break_out_memory_refs    PROTO((rtx));
  34.  
  35. /* Return an rtx for the sum of X and the integer C.
  36.  
  37.    This function should be used via the `plus_constant' macro.  */
  38.  
  39. rtx
  40. plus_constant_wide (x, c)
  41.      register rtx x;
  42.      register HOST_WIDE_INT c;
  43. {
  44.   register RTX_CODE code;
  45.   register enum machine_mode mode;
  46.   register rtx tem;
  47.   int all_constant = 0;
  48.  
  49.   if (c == 0)
  50.     return x;
  51.  
  52.  restart:
  53.  
  54.   code = GET_CODE (x);
  55.   mode = GET_MODE (x);
  56.   switch (code)
  57.     {
  58.     case CONST_INT:
  59.       return GEN_INT (INTVAL (x) + c);
  60.  
  61.     case CONST_DOUBLE:
  62.       {
  63.     HOST_WIDE_INT l1 = CONST_DOUBLE_LOW (x);
  64.     HOST_WIDE_INT h1 = CONST_DOUBLE_HIGH (x);
  65.     HOST_WIDE_INT l2 = c;
  66.     HOST_WIDE_INT h2 = c < 0 ? ~0 : 0;
  67.     HOST_WIDE_INT lv, hv;
  68.  
  69.     add_double (l1, h1, l2, h2, &lv, &hv);
  70.  
  71.     return immed_double_const (lv, hv, VOIDmode);
  72.       }
  73.  
  74.     case MEM:
  75.       /* If this is a reference to the constant pool, try replacing it with
  76.      a reference to a new constant.  If the resulting address isn't
  77.      valid, don't return it because we have no way to validize it.  */
  78.       if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
  79.       && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
  80.     {
  81.       tem
  82.         = force_const_mem (GET_MODE (x),
  83.                    plus_constant (get_pool_constant (XEXP (x, 0)),
  84.                           c));
  85.       if (memory_address_p (GET_MODE (tem), XEXP (tem, 0)))
  86.         return tem;
  87.     }
  88.       break;
  89.  
  90.     case CONST:
  91.       /* If adding to something entirely constant, set a flag
  92.      so that we can add a CONST around the result.  */
  93.       x = XEXP (x, 0);
  94.       all_constant = 1;
  95.       goto restart;
  96.  
  97.     case SYMBOL_REF:
  98.     case LABEL_REF:
  99.       all_constant = 1;
  100.       break;
  101.  
  102.     case PLUS:
  103.       /* The interesting case is adding the integer to a sum.
  104.      Look for constant term in the sum and combine
  105.      with C.  For an integer constant term, we make a combined
  106.      integer.  For a constant term that is not an explicit integer,
  107.      we cannot really combine, but group them together anyway.  
  108.  
  109.      Use a recursive call in case the remaining operand is something
  110.      that we handle specially, such as a SYMBOL_REF.  */
  111.  
  112.       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
  113.     return plus_constant (XEXP (x, 0), c + INTVAL (XEXP (x, 1)));
  114.       else if (CONSTANT_P (XEXP (x, 0)))
  115.     return gen_rtx (PLUS, mode,
  116.             plus_constant (XEXP (x, 0), c),
  117.             XEXP (x, 1));
  118.       else if (CONSTANT_P (XEXP (x, 1)))
  119.     return gen_rtx (PLUS, mode,
  120.             XEXP (x, 0),
  121.             plus_constant (XEXP (x, 1), c));
  122.     }
  123.  
  124.   if (c != 0)
  125.     x = gen_rtx (PLUS, mode, x, GEN_INT (c));
  126.  
  127.   if (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == LABEL_REF)
  128.     return x;
  129.   else if (all_constant)
  130.     return gen_rtx (CONST, mode, x);
  131.   else
  132.     return x;
  133. }
  134.  
  135. /* This is the same as `plus_constant', except that it handles LO_SUM.
  136.  
  137.    This function should be used via the `plus_constant_for_output' macro.  */
  138.  
  139. rtx
  140. plus_constant_for_output_wide (x, c)
  141.      register rtx x;
  142.      register HOST_WIDE_INT c;
  143. {
  144.   register RTX_CODE code = GET_CODE (x);
  145.   register enum machine_mode mode = GET_MODE (x);
  146.   int all_constant = 0;
  147.  
  148.   if (GET_CODE (x) == LO_SUM)
  149.     return gen_rtx (LO_SUM, mode, XEXP (x, 0),
  150.             plus_constant_for_output (XEXP (x, 1), c));
  151.  
  152.   else
  153.     return plus_constant (x, c);
  154. }
  155.  
  156. /* If X is a sum, return a new sum like X but lacking any constant terms.
  157.    Add all the removed constant terms into *CONSTPTR.
  158.    X itself is not altered.  The result != X if and only if
  159.    it is not isomorphic to X.  */
  160.  
  161. rtx
  162. eliminate_constant_term (x, constptr)
  163.      rtx x;
  164.      rtx *constptr;
  165. {
  166.   register rtx x0, x1;
  167.   rtx tem;
  168.  
  169.   if (GET_CODE (x) != PLUS)
  170.     return x;
  171.  
  172.   /* First handle constants appearing at this level explicitly.  */
  173.   if (GET_CODE (XEXP (x, 1)) == CONST_INT
  174.       && 0 != (tem = simplify_binary_operation (PLUS, GET_MODE (x), *constptr,
  175.                         XEXP (x, 1)))
  176.       && GET_CODE (tem) == CONST_INT)
  177.     {
  178.       *constptr = tem;
  179.       return eliminate_constant_term (XEXP (x, 0), constptr);
  180.     }
  181.  
  182.   tem = const0_rtx;
  183.   x0 = eliminate_constant_term (XEXP (x, 0), &tem);
  184.   x1 = eliminate_constant_term (XEXP (x, 1), &tem);
  185.   if ((x1 != XEXP (x, 1) || x0 != XEXP (x, 0))
  186.       && 0 != (tem = simplify_binary_operation (PLUS, GET_MODE (x),
  187.                         *constptr, tem))
  188.       && GET_CODE (tem) == CONST_INT)
  189.     {
  190.       *constptr = tem;
  191.       return gen_rtx (PLUS, GET_MODE (x), x0, x1);
  192.     }
  193.  
  194.   return x;
  195. }
  196.  
  197. /* Returns the insn that next references REG after INSN, or 0
  198.    if REG is clobbered before next referenced or we cannot find
  199.    an insn that references REG in a straight-line piece of code.  */
  200.  
  201. rtx
  202. find_next_ref (reg, insn)
  203.      rtx reg;
  204.      rtx insn;
  205. {
  206.   rtx next;
  207.  
  208.   for (insn = NEXT_INSN (insn); insn; insn = next)
  209.     {
  210.       next = NEXT_INSN (insn);
  211.       if (GET_CODE (insn) == NOTE)
  212.     continue;
  213.       if (GET_CODE (insn) == CODE_LABEL
  214.       || GET_CODE (insn) == BARRIER)
  215.     return 0;
  216.       if (GET_CODE (insn) == INSN
  217.       || GET_CODE (insn) == JUMP_INSN
  218.       || GET_CODE (insn) == CALL_INSN)
  219.     {
  220.       if (reg_set_p (reg, insn))
  221.         return 0;
  222.       if (reg_mentioned_p (reg, PATTERN (insn)))
  223.         return insn;
  224.       if (GET_CODE (insn) == JUMP_INSN)
  225.         {
  226.           if (simplejump_p (insn))
  227.         next = JUMP_LABEL (insn);
  228.           else
  229.         return 0;
  230.         }
  231.       if (GET_CODE (insn) == CALL_INSN
  232.           && REGNO (reg) < FIRST_PSEUDO_REGISTER
  233.           && call_used_regs[REGNO (reg)])
  234.         return 0;
  235.     }
  236.       else
  237.     abort ();
  238.     }
  239.   return 0;
  240. }
  241.  
  242. /* Return an rtx for the size in bytes of the value of EXP.  */
  243.  
  244. rtx
  245. expr_size (exp)
  246.      tree exp;
  247. {
  248.   tree size = size_in_bytes (TREE_TYPE (exp));
  249.  
  250.   if (TREE_CODE (size) != INTEGER_CST
  251.       && contains_placeholder_p (size))
  252.     size = build (WITH_RECORD_EXPR, sizetype, size, exp);
  253.  
  254.   return expand_expr (size, NULL_RTX, TYPE_MODE (sizetype), 0);
  255. }
  256.  
  257. /* Return a copy of X in which all memory references
  258.    and all constants that involve symbol refs
  259.    have been replaced with new temporary registers.
  260.    Also emit code to load the memory locations and constants
  261.    into those registers.
  262.  
  263.    If X contains no such constants or memory references,
  264.    X itself (not a copy) is returned.
  265.  
  266.    If a constant is found in the address that is not a legitimate constant
  267.    in an insn, it is left alone in the hope that it might be valid in the
  268.    address.
  269.  
  270.    X may contain no arithmetic except addition, subtraction and multiplication.
  271.    Values returned by expand_expr with 1 for sum_ok fit this constraint.  */
  272.  
  273. static rtx
  274. break_out_memory_refs (x)
  275.      register rtx x;
  276. {
  277.   if (GET_CODE (x) == MEM
  278.       || (CONSTANT_P (x) && CONSTANT_ADDRESS_P (x)
  279.       && GET_MODE (x) != VOIDmode))
  280.     x = force_reg (GET_MODE (x), x);
  281.   else if (GET_CODE (x) == PLUS || GET_CODE (x) == MINUS
  282.        || GET_CODE (x) == MULT)
  283.     {
  284.       register rtx op0 = break_out_memory_refs (XEXP (x, 0));
  285.       register rtx op1 = break_out_memory_refs (XEXP (x, 1));
  286.  
  287.       if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
  288.     x = gen_rtx (GET_CODE (x), Pmode, op0, op1);
  289.     }
  290.  
  291.   return x;
  292. }
  293.  
  294. #ifdef POINTERS_EXTEND_UNSIGNED
  295.  
  296. /* Given X, a memory address in ptr_mode, convert it to an address
  297.    in Pmode, or vice versa (TO_MODE says which way).  We take advantage of
  298.    the fact that pointers are not allowed to overflow by commuting arithmetic
  299.    operations over conversions so that address arithmetic insns can be
  300.    used.  */
  301.  
  302. rtx
  303. convert_memory_address (to_mode, x)
  304.      enum machine_mode to_mode;
  305.      rtx x;
  306. {
  307.   rtx temp;
  308.  
  309.   switch (GET_CODE (x))
  310.     {
  311.     case CONST_INT:
  312.     case CONST_DOUBLE:
  313.       return x;
  314.  
  315.     case LABEL_REF:
  316.       return gen_rtx (LABEL_REF, to_mode, XEXP (x, 0));
  317.  
  318.     case SYMBOL_REF:
  319.       temp = gen_rtx (SYMBOL_REF, to_mode, XSTR (x, 0));
  320.       SYMBOL_REF_FLAG (temp) = SYMBOL_REF_FLAG (x);
  321.       return temp;
  322.  
  323.     case PLUS:
  324.     case MULT:
  325.       return gen_rtx (GET_CODE (x), to_mode, 
  326.               convert_memory_address (to_mode, XEXP (x, 0)),
  327.               convert_memory_address (to_mode, XEXP (x, 1)));
  328.  
  329.     case CONST:
  330.       return gen_rtx (CONST, to_mode, 
  331.               convert_memory_address (to_mode, XEXP (x, 0)));
  332.  
  333.     default:
  334.       return convert_modes (to_mode,
  335.                 to_mode == ptr_mode ? Pmode : ptr_mode,
  336.                 x, POINTERS_EXTEND_UNSIGNED);
  337.     }
  338. }
  339. #endif
  340.  
  341. /* Given a memory address or facsimile X, construct a new address,
  342.    currently equivalent, that is stable: future stores won't change it.
  343.  
  344.    X must be composed of constants, register and memory references
  345.    combined with addition, subtraction and multiplication:
  346.    in other words, just what you can get from expand_expr if sum_ok is 1.
  347.  
  348.    Works by making copies of all regs and memory locations used
  349.    by X and combining them the same way X does.
  350.    You could also stabilize the reference to this address
  351.    by copying the address to a register with copy_to_reg;
  352.    but then you wouldn't get indexed addressing in the reference.  */
  353.  
  354. rtx
  355. copy_all_regs (x)
  356.      register rtx x;
  357. {
  358.   if (GET_CODE (x) == REG)
  359.     {
  360.       if (REGNO (x) != FRAME_POINTER_REGNUM
  361. #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
  362.       && REGNO (x) != HARD_FRAME_POINTER_REGNUM
  363. #endif
  364.       )
  365.     x = copy_to_reg (x);
  366.     }
  367.   else if (GET_CODE (x) == MEM)
  368.     x = copy_to_reg (x);
  369.   else if (GET_CODE (x) == PLUS || GET_CODE (x) == MINUS
  370.        || GET_CODE (x) == MULT)
  371.     {
  372.       register rtx op0 = copy_all_regs (XEXP (x, 0));
  373.       register rtx op1 = copy_all_regs (XEXP (x, 1));
  374.       if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
  375.     x = gen_rtx (GET_CODE (x), Pmode, op0, op1);
  376.     }
  377.   return x;
  378. }
  379.  
  380. /* Return something equivalent to X but valid as a memory address
  381.    for something of mode MODE.  When X is not itself valid, this
  382.    works by copying X or subexpressions of it into registers.  */
  383.  
  384. rtx
  385. memory_address (mode, x)
  386.      enum machine_mode mode;
  387.      register rtx x;
  388. {
  389.   register rtx oldx = x;
  390.  
  391. #ifdef POINTERS_EXTEND_UNSIGNED
  392.   if (GET_MODE (x) == ptr_mode)
  393.     x = convert_memory_address (Pmode, x);
  394. #endif
  395.  
  396.   /* By passing constant addresses thru registers
  397.      we get a chance to cse them.  */
  398.   if (! cse_not_expected && CONSTANT_P (x) && CONSTANT_ADDRESS_P (x))
  399.     x = force_reg (Pmode, x);
  400.  
  401.   /* Accept a QUEUED that refers to a REG
  402.      even though that isn't a valid address.
  403.      On attempting to put this in an insn we will call protect_from_queue
  404.      which will turn it into a REG, which is valid.  */
  405.   else if (GET_CODE (x) == QUEUED
  406.       && GET_CODE (QUEUED_VAR (x)) == REG)
  407.     ;
  408.  
  409.   /* We get better cse by rejecting indirect addressing at this stage.
  410.      Let the combiner create indirect addresses where appropriate.
  411.      For now, generate the code so that the subexpressions useful to share
  412.      are visible.  But not if cse won't be done!  */
  413.   else
  414.     {
  415.       if ((! cse_not_expected
  416. #ifdef MACHO_PIC
  417.        || flag_pic
  418. #endif
  419.        ) && GET_CODE (x) != REG)
  420.     x = break_out_memory_refs (x);
  421.  
  422.       /* At this point, any valid address is accepted.  */
  423.       GO_IF_LEGITIMATE_ADDRESS (mode, x, win);
  424.  
  425.       /* If it was valid before but breaking out memory refs invalidated it,
  426.      use it the old way.  */
  427.       if (memory_address_p (mode, oldx))
  428.     goto win2;
  429.  
  430.       /* Perform machine-dependent transformations on X
  431.      in certain cases.  This is not necessary since the code
  432.      below can handle all possible cases, but machine-dependent
  433.      transformations can make better code.  */
  434.       LEGITIMIZE_ADDRESS (x, oldx, mode, win);
  435.  
  436.       /* PLUS and MULT can appear in special ways
  437.      as the result of attempts to make an address usable for indexing.
  438.      Usually they are dealt with by calling force_operand, below.
  439.      But a sum containing constant terms is special
  440.      if removing them makes the sum a valid address:
  441.      then we generate that address in a register
  442.      and index off of it.  We do this because it often makes
  443.      shorter code, and because the addresses thus generated
  444.      in registers often become common subexpressions.  */
  445.       if (GET_CODE (x) == PLUS)
  446.     {
  447.       rtx constant_term = const0_rtx;
  448.       rtx y = eliminate_constant_term (x, &constant_term);
  449.       if (constant_term == const0_rtx
  450.           || ! memory_address_p (mode, y))
  451.         x = force_operand (x, NULL_RTX);
  452.       else
  453.         {
  454.           y = gen_rtx (PLUS, GET_MODE (x), copy_to_reg (y), constant_term);
  455.           if (! memory_address_p (mode, y))
  456.         x = force_operand (x, NULL_RTX);
  457.           else
  458.         x = y;
  459.         }
  460.     }
  461.  
  462.       else if (GET_CODE (x) == MULT || GET_CODE (x) == MINUS)
  463.     x = force_operand (x, NULL_RTX);
  464.  
  465.       /* If we have a register that's an invalid address,
  466.      it must be a hard reg of the wrong class.  Copy it to a pseudo.  */
  467.       else if (GET_CODE (x) == REG)
  468.     x = copy_to_reg (x);
  469.  
  470.       /* Last resort: copy the value to a register, since
  471.      the register is a valid address.  */
  472.       else
  473.     x = force_reg (Pmode, x);
  474.  
  475.       goto done;
  476.  
  477.     win2:
  478.       x = oldx;
  479.     win:
  480.       if (flag_force_addr && ! cse_not_expected && GET_CODE (x) != REG
  481.       /* Don't copy an addr via a reg if it is one of our stack slots.  */
  482.       && ! (GET_CODE (x) == PLUS
  483.         && (XEXP (x, 0) == virtual_stack_vars_rtx
  484.             || XEXP (x, 0) == virtual_incoming_args_rtx)))
  485.     {
  486.       if (general_operand (x, Pmode))
  487.         x = force_reg (Pmode, x);
  488.       else
  489.         x = force_operand (x, NULL_RTX);
  490.     }
  491.     }
  492.  
  493.  done:
  494.  
  495.   /* If we didn't change the address, we are done.  Otherwise, mark
  496.      a reg as a pointer if we have REG or REG + CONST_INT.  */
  497.   if (oldx == x)
  498.     return x;
  499.   else if (GET_CODE (x) == REG)
  500.     mark_reg_pointer (x);
  501.   else if (GET_CODE (x) == PLUS
  502.        && GET_CODE (XEXP (x, 0)) == REG
  503.        && GET_CODE (XEXP (x, 1)) == CONST_INT)
  504.     mark_reg_pointer (XEXP (x, 0));
  505.  
  506.   /* OLDX may have been the address on a temporary.  Update the address
  507.      to indicate that X is now used.  */
  508.   update_temp_slot_address (oldx, x);
  509.  
  510.   return x;
  511. }
  512.  
  513. /* Like `memory_address' but pretend `flag_force_addr' is 0.  */
  514.  
  515. rtx
  516. memory_address_noforce (mode, x)
  517.      enum machine_mode mode;
  518.      rtx x;
  519. {
  520.   int ambient_force_addr = flag_force_addr;
  521.   rtx val;
  522.  
  523.   flag_force_addr = 0;
  524.   val = memory_address (mode, x);
  525.   flag_force_addr = ambient_force_addr;
  526.   return val;
  527. }
  528.  
  529. /* Convert a mem ref into one with a valid memory address.
  530.    Pass through anything else unchanged.  */
  531.  
  532. rtx
  533. validize_mem (ref)
  534.      rtx ref;
  535. {
  536.   if (GET_CODE (ref) != MEM)
  537.     return ref;
  538.   if (memory_address_p (GET_MODE (ref), XEXP (ref, 0)))
  539.     return ref;
  540.   /* Don't alter REF itself, since that is probably a stack slot.  */
  541.   return change_address (ref, GET_MODE (ref), XEXP (ref, 0));
  542. }
  543.  
  544. /* Return a modified copy of X with its memory address copied
  545.    into a temporary register to protect it from side effects.
  546.    If X is not a MEM, it is returned unchanged (and not copied).
  547.    Perhaps even if it is a MEM, if there is no need to change it.  */
  548.  
  549. rtx
  550. stabilize (x)
  551.      rtx x;
  552. {
  553.   register rtx addr;
  554.   if (GET_CODE (x) != MEM)
  555.     return x;
  556.   addr = XEXP (x, 0);
  557.   if (rtx_unstable_p (addr))
  558.     {
  559.       rtx temp = copy_all_regs (addr);
  560.       rtx mem;
  561.       if (GET_CODE (temp) != REG)
  562.     temp = copy_to_reg (temp);
  563.       mem = gen_rtx (MEM, GET_MODE (x), temp);
  564.  
  565.       /* Mark returned memref with in_struct if it's in an array or
  566.      structure.  Copy const and volatile from original memref.  */
  567.  
  568.       MEM_IN_STRUCT_P (mem) = MEM_IN_STRUCT_P (x) || GET_CODE (addr) == PLUS;
  569.       RTX_UNCHANGING_P (mem) = RTX_UNCHANGING_P (x);
  570.       MEM_VOLATILE_P (mem) = MEM_VOLATILE_P (x);
  571.       return mem;
  572.     }
  573.   return x;
  574. }
  575.  
  576. /* Copy the value or contents of X to a new temp reg and return that reg.  */
  577.  
  578. rtx
  579. copy_to_reg (x)
  580.      rtx x;
  581. {
  582.   register rtx temp = gen_reg_rtx (GET_MODE (x));
  583.  
  584.   /* If not an operand, must be an address with PLUS and MULT so
  585.      do the computation.  */ 
  586.   if (! general_operand (x, VOIDmode))
  587.     x = force_operand (x, temp);
  588.   
  589.   if (x != temp)
  590.     emit_move_insn (temp, x);
  591.  
  592.   return temp;
  593. }
  594.  
  595. /* Like copy_to_reg but always give the new register mode Pmode
  596.    in case X is a constant.  */
  597.  
  598. rtx
  599. copy_addr_to_reg (x)
  600.      rtx x;
  601. {
  602.   return copy_to_mode_reg (Pmode, x);
  603. }
  604.  
  605. /* Like copy_to_reg but always give the new register mode MODE
  606.    in case X is a constant.  */
  607.  
  608. rtx
  609. copy_to_mode_reg (mode, x)
  610.      enum machine_mode mode;
  611.      rtx x;
  612. {
  613.   register rtx temp = gen_reg_rtx (mode);
  614.   
  615.   /* If not an operand, must be an address with PLUS and MULT so
  616.      do the computation.  */ 
  617.   if (! general_operand (x, VOIDmode))
  618.     x = force_operand (x, temp);
  619.  
  620.   if (GET_MODE (x) != mode && GET_MODE (x) != VOIDmode)
  621.     abort ();
  622.   if (x != temp)
  623.     emit_move_insn (temp, x);
  624.   return temp;
  625. }
  626.  
  627. /* Load X into a register if it is not already one.
  628.    Use mode MODE for the register.
  629.    X should be valid for mode MODE, but it may be a constant which
  630.    is valid for all integer modes; that's why caller must specify MODE.
  631.  
  632.    The caller must not alter the value in the register we return,
  633.    since we mark it as a "constant" register.  */
  634.  
  635. rtx
  636. force_reg (mode, x)
  637.      enum machine_mode mode;
  638.      rtx x;
  639. {
  640.   register rtx temp, insn, set;
  641.  
  642.   if (GET_CODE (x) == REG)
  643.     return x;
  644.   temp = gen_reg_rtx (mode);
  645.   insn = emit_move_insn (temp, x);
  646.  
  647.   /* Let optimizers know that TEMP's value never changes
  648.      and that X can be substituted for it.  Don't get confused
  649.      if INSN set something else (such as a SUBREG of TEMP).  */
  650.   if (CONSTANT_P (x)
  651.       && (set = single_set (insn)) != 0
  652.       && SET_DEST (set) == temp)
  653.     {
  654.       rtx note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
  655.  
  656.       if (note)
  657.     XEXP (note, 0) = x;
  658.       else
  659.     REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_EQUAL, x, REG_NOTES (insn));
  660.     }
  661.   return temp;
  662. }
  663.  
  664. /* If X is a memory ref, copy its contents to a new temp reg and return
  665.    that reg.  Otherwise, return X.  */
  666.  
  667. rtx
  668. force_not_mem (x)
  669.      rtx x;
  670. {
  671.   register rtx temp;
  672.   if (GET_CODE (x) != MEM || GET_MODE (x) == BLKmode)
  673.     return x;
  674.   temp = gen_reg_rtx (GET_MODE (x));
  675.   emit_move_insn (temp, x);
  676.   return temp;
  677. }
  678.  
  679. /* Copy X to TARGET (if it's nonzero and a reg)
  680.    or to a new temp reg and return that reg.
  681.    MODE is the mode to use for X in case it is a constant.  */
  682.  
  683. rtx
  684. copy_to_suggested_reg (x, target, mode)
  685.      rtx x, target;
  686.      enum machine_mode mode;
  687. {
  688.   register rtx temp;
  689.  
  690.   if (target && GET_CODE (target) == REG)
  691.     temp = target;
  692.   else
  693.     temp = gen_reg_rtx (mode);
  694.  
  695.   emit_move_insn (temp, x);
  696.   return temp;
  697. }
  698.  
  699. /* Return the mode to use to store a scalar of TYPE and MODE.
  700.    PUNSIGNEDP points to the signedness of the type and may be adjusted
  701.    to show what signedness to use on extension operations.
  702.  
  703.    FOR_CALL is non-zero if this call is promoting args for a call.  */
  704.  
  705. enum machine_mode
  706. promote_mode (type, mode, punsignedp, for_call)
  707.      tree type;
  708.      enum machine_mode mode;
  709.      int *punsignedp;
  710.      int for_call;
  711. {
  712.   enum tree_code code = TREE_CODE (type);
  713.   int unsignedp = *punsignedp;
  714.  
  715. #ifdef PROMOTE_FOR_CALL_ONLY
  716.   if (! for_call)
  717.     return mode;
  718. #endif
  719.  
  720.   switch (code)
  721.     {
  722. #ifdef PROMOTE_MODE
  723.     case INTEGER_TYPE:   case ENUMERAL_TYPE:   case BOOLEAN_TYPE:
  724.     case CHAR_TYPE:      case REAL_TYPE:       case OFFSET_TYPE:
  725.       PROMOTE_MODE (mode, unsignedp, type);
  726.       break;
  727. #endif
  728.  
  729. #ifdef POINTERS_EXTEND_UNSIGNED
  730.     case POINTER_TYPE:
  731.       mode = Pmode;
  732.       unsignedp = POINTERS_EXTEND_UNSIGNED;
  733.       break;
  734. #endif
  735.     }
  736.  
  737.   *punsignedp = unsignedp;
  738.   return mode;
  739. }
  740.  
  741. /* Adjust the stack pointer by ADJUST (an rtx for a number of bytes).
  742.    This pops when ADJUST is positive.  ADJUST need not be constant.  */
  743.  
  744. void
  745. adjust_stack (adjust)
  746.      rtx adjust;
  747. {
  748.   rtx temp;
  749.   adjust = protect_from_queue (adjust, 0);
  750.  
  751.   if (adjust == const0_rtx)
  752.     return;
  753.  
  754.   temp = expand_binop (Pmode,
  755. #ifdef STACK_GROWS_DOWNWARD
  756.                add_optab,
  757. #else
  758.                sub_optab,
  759. #endif
  760.                stack_pointer_rtx, adjust, stack_pointer_rtx, 0,
  761.                OPTAB_LIB_WIDEN);
  762.  
  763.   if (temp != stack_pointer_rtx)
  764.     emit_move_insn (stack_pointer_rtx, temp);
  765. }
  766.  
  767. /* Adjust the stack pointer by minus ADJUST (an rtx for a number of bytes).
  768.    This pushes when ADJUST is positive.  ADJUST need not be constant.  */
  769.  
  770. void
  771. anti_adjust_stack (adjust)
  772.      rtx adjust;
  773. {
  774.   rtx temp;
  775.   adjust = protect_from_queue (adjust, 0);
  776.  
  777.   if (adjust == const0_rtx)
  778.     return;
  779.  
  780.   temp = expand_binop (Pmode,
  781. #ifdef STACK_GROWS_DOWNWARD
  782.                sub_optab,
  783. #else
  784.                add_optab,
  785. #endif
  786.                stack_pointer_rtx, adjust, stack_pointer_rtx, 0,
  787.                OPTAB_LIB_WIDEN);
  788.  
  789.   if (temp != stack_pointer_rtx)
  790.     emit_move_insn (stack_pointer_rtx, temp);
  791. }
  792.  
  793. /* Round the size of a block to be pushed up to the boundary required
  794.    by this machine.  SIZE is the desired size, which need not be constant.  */
  795.  
  796. rtx
  797. round_push (size)
  798.      rtx size;
  799. {
  800. #ifdef STACK_BOUNDARY
  801.   int align = STACK_BOUNDARY / BITS_PER_UNIT;
  802.   if (align == 1)
  803.     return size;
  804.   if (GET_CODE (size) == CONST_INT)
  805.     {
  806.       int new = (INTVAL (size) + align - 1) / align * align;
  807.       if (INTVAL (size) != new)
  808.     size = GEN_INT (new);
  809.     }
  810.   else
  811.     {
  812.       /* CEIL_DIV_EXPR needs to worry about the addition overflowing,
  813.      but we know it can't.  So add ourselves and then do TRUNC_DIV_EXPR. */
  814.       size = expand_binop (Pmode, add_optab, size, GEN_INT (align - 1),
  815.                NULL_RTX, 1, OPTAB_LIB_WIDEN);
  816.       size = expand_divmod (0, TRUNC_DIV_EXPR, Pmode, size, GEN_INT (align),
  817.                 NULL_RTX, 1);
  818.       size = expand_mult (Pmode, size, GEN_INT (align), NULL_RTX, 1);
  819.     }
  820. #endif /* STACK_BOUNDARY */
  821.   return size;
  822. }
  823.  
  824. /* Save the stack pointer for the purpose in SAVE_LEVEL.  PSAVE is a pointer
  825.    to a previously-created save area.  If no save area has been allocated,
  826.    this function will allocate one.  If a save area is specified, it
  827.    must be of the proper mode.
  828.  
  829.    The insns are emitted after insn AFTER, if nonzero, otherwise the insns
  830.    are emitted at the current position.  */
  831.  
  832. void
  833. emit_stack_save (save_level, psave, after)
  834.      enum save_level save_level;
  835.      rtx *psave;
  836.      rtx after;
  837. {
  838.   rtx sa = *psave;
  839.   /* The default is that we use a move insn and save in a Pmode object.  */
  840.   rtx (*fcn) () = gen_move_insn;
  841.   enum machine_mode mode = Pmode;
  842.  
  843.   /* See if this machine has anything special to do for this kind of save.  */
  844.   switch (save_level)
  845.     {
  846. #ifdef HAVE_save_stack_block
  847.     case SAVE_BLOCK:
  848.       if (HAVE_save_stack_block)
  849.     {
  850.       fcn = gen_save_stack_block;
  851.       mode = insn_operand_mode[CODE_FOR_save_stack_block][0];
  852.     }
  853.       break;
  854. #endif
  855. #ifdef HAVE_save_stack_function
  856.     case SAVE_FUNCTION:
  857.       if (HAVE_save_stack_function)
  858.     {
  859.       fcn = gen_save_stack_function;
  860.       mode = insn_operand_mode[CODE_FOR_save_stack_function][0];
  861.     }
  862.       break;
  863. #endif
  864. #ifdef HAVE_save_stack_nonlocal
  865.     case SAVE_NONLOCAL:
  866.       if (HAVE_save_stack_nonlocal)
  867.     {
  868.       fcn = gen_save_stack_nonlocal;
  869.       mode = insn_operand_mode[(int) CODE_FOR_save_stack_nonlocal][0];
  870.     }
  871.       break;
  872. #endif
  873.     }
  874.  
  875.   /* If there is no save area and we have to allocate one, do so.  Otherwise
  876.      verify the save area is the proper mode.  */
  877.  
  878.   if (sa == 0)
  879.     {
  880.       if (mode != VOIDmode)
  881.     {
  882.       if (save_level == SAVE_NONLOCAL)
  883.         *psave = sa = assign_stack_local (mode, GET_MODE_SIZE (mode), 0);
  884.       else
  885.         *psave = sa = gen_reg_rtx (mode);
  886.     }
  887.     }
  888.   else
  889.     {
  890.       if (mode == VOIDmode || GET_MODE (sa) != mode)
  891.     abort ();
  892.     }
  893.  
  894.   if (after)
  895.     {
  896.       rtx seq;
  897.  
  898.       start_sequence ();
  899.       /* We must validize inside the sequence, to ensure that any instructions
  900.      created by the validize call also get moved to the right place.  */
  901.       if (sa != 0)
  902.     sa = validize_mem (sa);
  903.       emit_insn (fcn (sa, stack_pointer_rtx));
  904.       seq = gen_sequence ();
  905.       end_sequence ();
  906.       emit_insn_after (seq, after);
  907.     }
  908.   else
  909.     {
  910.       if (sa != 0)
  911.     sa = validize_mem (sa);
  912.       emit_insn (fcn (sa, stack_pointer_rtx));
  913.     }
  914. }
  915.  
  916. /* Restore the stack pointer for the purpose in SAVE_LEVEL.  SA is the save
  917.    area made by emit_stack_save.  If it is zero, we have nothing to do. 
  918.  
  919.    Put any emitted insns after insn AFTER, if nonzero, otherwise at 
  920.    current position.  */
  921.  
  922. void
  923. emit_stack_restore (save_level, sa, after)
  924.      enum save_level save_level;
  925.      rtx after;
  926.      rtx sa;
  927. {
  928.   /* The default is that we use a move insn.  */
  929.   rtx (*fcn) () = gen_move_insn;
  930.  
  931.   /* See if this machine has anything special to do for this kind of save.  */
  932.   switch (save_level)
  933.     {
  934. #ifdef HAVE_restore_stack_block
  935.     case SAVE_BLOCK:
  936.       if (HAVE_restore_stack_block)
  937.     fcn = gen_restore_stack_block;
  938.       break;
  939. #endif
  940. #ifdef HAVE_restore_stack_function
  941.     case SAVE_FUNCTION:
  942.       if (HAVE_restore_stack_function)
  943.     fcn = gen_restore_stack_function;
  944.       break;
  945. #endif
  946. #ifdef HAVE_restore_stack_nonlocal
  947.  
  948.     case SAVE_NONLOCAL:
  949.       if (HAVE_restore_stack_nonlocal)
  950.     fcn = gen_restore_stack_nonlocal;
  951.       break;
  952. #endif
  953.     }
  954.  
  955.   if (sa != 0)
  956.     sa = validize_mem (sa);
  957.  
  958.   if (after)
  959.     {
  960.       rtx seq;
  961.  
  962.       start_sequence ();
  963.       emit_insn (fcn (stack_pointer_rtx, sa));
  964.       seq = gen_sequence ();
  965.       end_sequence ();
  966.       emit_insn_after (seq, after);
  967.     }
  968.   else
  969.     emit_insn (fcn (stack_pointer_rtx, sa));
  970. }
  971.  
  972. /* Return an rtx representing the address of an area of memory dynamically
  973.    pushed on the stack.  This region of memory is always aligned to
  974.    a multiple of BIGGEST_ALIGNMENT.
  975.  
  976.    Any required stack pointer alignment is preserved.
  977.  
  978.    SIZE is an rtx representing the size of the area.
  979.    TARGET is a place in which the address can be placed.
  980.  
  981.    KNOWN_ALIGN is the alignment (in bits) that we know SIZE has.  */
  982.  
  983. rtx
  984. allocate_dynamic_stack_space (size, target, known_align)
  985.      rtx size;
  986.      rtx target;
  987.      int known_align;
  988. {
  989.   /* If we're asking for zero bytes, it doesn't matter what we point
  990.      to since we can't dereference it.  But return a reasonable
  991.      address anyway.  */
  992.   if (size == const0_rtx)
  993.     return virtual_stack_dynamic_rtx;
  994.  
  995.   /* Otherwise, show we're calling alloca or equivalent.  */
  996.   current_function_calls_alloca = 1;
  997.  
  998.   /* Ensure the size is in the proper mode.  */
  999.   if (GET_MODE (size) != VOIDmode && GET_MODE (size) != Pmode)
  1000.     size = convert_to_mode (Pmode, size, 1);
  1001.  
  1002.   /* We will need to ensure that the address we return is aligned to
  1003.      BIGGEST_ALIGNMENT.  If STACK_DYNAMIC_OFFSET is defined, we don't
  1004.      always know its final value at this point in the compilation (it 
  1005.      might depend on the size of the outgoing parameter lists, for
  1006.      example), so we must align the value to be returned in that case.
  1007.      (Note that STACK_DYNAMIC_OFFSET will have a default non-zero value if
  1008.      STACK_POINTER_OFFSET or ACCUMULATE_OUTGOING_ARGS are defined).
  1009.      We must also do an alignment operation on the returned value if
  1010.      the stack pointer alignment is less strict that BIGGEST_ALIGNMENT.
  1011.  
  1012.      If we have to align, we must leave space in SIZE for the hole
  1013.      that might result from the alignment operation.  */
  1014.  
  1015. #if defined (STACK_DYNAMIC_OFFSET) || defined (STACK_POINTER_OFFSET) || defined (ALLOCATE_OUTGOING_ARGS) || ! defined (STACK_BOUNDARY)
  1016. #define MUST_ALIGN 1
  1017. #else
  1018. #define MUST_ALIGN (STACK_BOUNDARY < BIGGEST_ALIGNMENT)
  1019. #endif
  1020.  
  1021.   if (MUST_ALIGN)
  1022.     {
  1023.       if (GET_CODE (size) == CONST_INT)
  1024.     size = GEN_INT (INTVAL (size)
  1025.             + (BIGGEST_ALIGNMENT / BITS_PER_UNIT - 1));
  1026.       else
  1027.     size = expand_binop (Pmode, add_optab, size,
  1028.                  GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT - 1),
  1029.                  NULL_RTX, 1, OPTAB_LIB_WIDEN);
  1030.     }
  1031.  
  1032. #ifdef SETJMP_VIA_SAVE_AREA
  1033.   /* If setjmp restores regs from a save area in the stack frame,
  1034.      avoid clobbering the reg save area.  Note that the offset of
  1035.      virtual_incoming_args_rtx includes the preallocated stack args space.
  1036.      It would be no problem to clobber that, but it's on the wrong side
  1037.      of the old save area.  */
  1038.   {
  1039.     rtx dynamic_offset
  1040.       = expand_binop (Pmode, sub_optab, virtual_stack_dynamic_rtx,
  1041.               stack_pointer_rtx, NULL_RTX, 1, OPTAB_LIB_WIDEN);
  1042.     size = expand_binop (Pmode, add_optab, size, dynamic_offset,
  1043.              NULL_RTX, 1, OPTAB_LIB_WIDEN);
  1044.   }
  1045. #endif /* SETJMP_VIA_SAVE_AREA */
  1046.  
  1047.   /* Round the size to a multiple of the required stack alignment.
  1048.      Since the stack if presumed to be rounded before this allocation,
  1049.      this will maintain the required alignment.
  1050.  
  1051.      If the stack grows downward, we could save an insn by subtracting
  1052.      SIZE from the stack pointer and then aligning the stack pointer.
  1053.      The problem with this is that the stack pointer may be unaligned
  1054.      between the execution of the subtraction and alignment insns and
  1055.      some machines do not allow this.  Even on those that do, some
  1056.      signal handlers malfunction if a signal should occur between those
  1057.      insns.  Since this is an extremely rare event, we have no reliable
  1058.      way of knowing which systems have this problem.  So we avoid even
  1059.      momentarily mis-aligning the stack.  */
  1060.  
  1061. #ifdef STACK_BOUNDARY
  1062.   /* If we added a variable amount to SIZE,
  1063.      we can no longer assume it is aligned.  */
  1064. #if !defined (SETJMP_VIA_SAVE_AREA)
  1065.   if (MUST_ALIGN || known_align % STACK_BOUNDARY != 0)
  1066. #endif
  1067.     size = round_push (size);
  1068. #endif
  1069.  
  1070.   do_pending_stack_adjust ();
  1071.  
  1072.   /* Don't use a TARGET that isn't a pseudo.  */
  1073.   if (target == 0 || GET_CODE (target) != REG
  1074.       || REGNO (target) < FIRST_PSEUDO_REGISTER)
  1075.     target = gen_reg_rtx (Pmode);
  1076.  
  1077.   mark_reg_pointer (target);
  1078.  
  1079. #ifndef STACK_GROWS_DOWNWARD
  1080.   emit_move_insn (target, virtual_stack_dynamic_rtx);
  1081. #endif
  1082.  
  1083.   /* Perform the required allocation from the stack.  Some systems do
  1084.      this differently than simply incrementing/decrementing from the
  1085.      stack pointer.  */
  1086. #ifdef HAVE_allocate_stack
  1087.   if (HAVE_allocate_stack)
  1088.     {
  1089.       enum machine_mode mode
  1090.     = insn_operand_mode[(int) CODE_FOR_allocate_stack][0];
  1091.  
  1092.       size = convert_modes (mode, ptr_mode, size, 1);
  1093.  
  1094.       if (insn_operand_predicate[(int) CODE_FOR_allocate_stack][0]
  1095.       && ! ((*insn_operand_predicate[(int) CODE_FOR_allocate_stack][0])
  1096.         (size, mode)))
  1097.     size = copy_to_mode_reg (mode, size);
  1098.  
  1099.       emit_insn (gen_allocate_stack (size));
  1100.     }
  1101.   else
  1102. #endif
  1103.     {
  1104.       size = convert_modes (Pmode, ptr_mode, size, 1);
  1105.       anti_adjust_stack (size);
  1106.     }
  1107.  
  1108. #ifdef STACK_GROWS_DOWNWARD
  1109.   emit_move_insn (target, virtual_stack_dynamic_rtx);
  1110. #endif
  1111.  
  1112.   if (MUST_ALIGN)
  1113.     {
  1114.       /* CEIL_DIV_EXPR needs to worry about the addition overflowing,
  1115.      but we know it can't.  So add ourselves and then do TRUNC_DIV_EXPR. */
  1116.       target = expand_binop (Pmode, add_optab, target,
  1117.                  GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT - 1),
  1118.                  NULL_RTX, 1, OPTAB_LIB_WIDEN);
  1119.       target = expand_divmod (0, TRUNC_DIV_EXPR, Pmode, target,
  1120.                   GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT),
  1121.                   NULL_RTX, 1);
  1122.       target = expand_mult (Pmode, target,
  1123.                 GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT),
  1124.                 NULL_RTX, 1);
  1125.     }
  1126.   
  1127.   /* Some systems require a particular insn to refer to the stack
  1128.      to make the pages exist.  */
  1129. #ifdef HAVE_probe
  1130.   if (HAVE_probe)
  1131.     emit_insn (gen_probe ());
  1132. #endif
  1133.  
  1134.   /* Record the new stack level for nonlocal gotos.  */
  1135.   if (nonlocal_goto_handler_slot != 0)
  1136.     emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level, NULL_RTX);
  1137.  
  1138.   return target;
  1139. }
  1140.  
  1141. /* Return an rtx representing the register or memory location
  1142.    in which a scalar value of data type VALTYPE
  1143.    was returned by a function call to function FUNC.
  1144.    FUNC is a FUNCTION_DECL node if the precise function is known,
  1145.    otherwise 0.  */
  1146.  
  1147. rtx
  1148. hard_function_value (valtype, func)
  1149.      tree valtype;
  1150.      tree func;
  1151. {
  1152.   rtx val = FUNCTION_VALUE (valtype, func);
  1153.   if (GET_CODE (val) == REG
  1154.       && GET_MODE (val) == BLKmode)
  1155.     {
  1156.       int bytes = int_size_in_bytes (valtype);
  1157.       enum machine_mode tmpmode;
  1158.       for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
  1159.            tmpmode != MAX_MACHINE_MODE;
  1160.            tmpmode = GET_MODE_WIDER_MODE (tmpmode))
  1161.         {
  1162.           /* Have we found a large enough mode?  */
  1163.           if (GET_MODE_SIZE (tmpmode) >= bytes)
  1164.             break;
  1165.         }
  1166.  
  1167.       /* No suitable mode found.  */
  1168.       if (tmpmode == MAX_MACHINE_MODE)
  1169.         abort ();
  1170.  
  1171.       PUT_MODE (val, tmpmode);
  1172.     }      
  1173.   return val;
  1174. }
  1175.  
  1176. /* Return an rtx representing the register or memory location
  1177.    in which a scalar value of mode MODE was returned by a library call.  */
  1178.  
  1179. rtx
  1180. hard_libcall_value (mode)
  1181.      enum machine_mode mode;
  1182. {
  1183.   return LIBCALL_VALUE (mode);
  1184. }
  1185.  
  1186. /* Look up the tree code for a given rtx code
  1187.    to provide the arithmetic operation for REAL_ARITHMETIC.
  1188.    The function returns an int because the caller may not know
  1189.    what `enum tree_code' means.  */
  1190.  
  1191. int
  1192. rtx_to_tree_code (code)
  1193.      enum rtx_code code;
  1194. {
  1195.   enum tree_code tcode;
  1196.  
  1197.   switch (code)
  1198.     {
  1199.     case PLUS:
  1200.       tcode = PLUS_EXPR;
  1201.       break;
  1202.     case MINUS:
  1203.       tcode = MINUS_EXPR;
  1204.       break;
  1205.     case MULT:
  1206.       tcode = MULT_EXPR;
  1207.       break;
  1208.     case DIV:
  1209.       tcode = RDIV_EXPR;
  1210.       break;
  1211.     case SMIN:
  1212.       tcode = MIN_EXPR;
  1213.       break;
  1214.     case SMAX:
  1215.       tcode = MAX_EXPR;
  1216.       break;
  1217.     default:
  1218.       tcode = LAST_AND_UNUSED_TREE_CODE;
  1219.       break;
  1220.     }
  1221.   return ((int) tcode);
  1222. }
  1223.