home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / stmt.c < prev    next >
C/C++ Source or Header  |  1991-06-03  |  136KB  |  4,387 lines

  1. /* Expands front end tree to back end RTL for GNU C-Compiler
  2.    Copyright (C) 1987-1991 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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* This file handles the generation of rtl code from tree structure
  22.    above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
  23.    It also creates the rtl expressions for parameters and auto variables
  24.    and has full responsibility for allocating stack slots.
  25.  
  26.    The functions whose names start with `expand_' are called by the
  27.    parser to generate RTL instructions for various kinds of constructs.
  28.  
  29.    Some control and binding constructs require calling several such
  30.    functions at different times.  For example, a simple if-then
  31.    is expanded by calling `expand_start_cond' (with the condition-expression
  32.    as argument) before parsing the then-clause and calling `expand_end_cond'
  33.    after parsing the then-clause.  */
  34.  
  35. #include "config.h"
  36.  
  37. #include <stdio.h>
  38.  
  39. #include "rtl.h"
  40. #include "tree.h"
  41. #include "flags.h"
  42. #include "function.h"
  43. #include "insn-flags.h"
  44. #include "insn-config.h"
  45. #include "insn-codes.h"
  46. #include "expr.h"
  47. #include "hard-reg-set.h"
  48. #include "obstack.h"
  49. #include "loop.h"
  50.  
  51. #define obstack_chunk_alloc xmalloc
  52. #define obstack_chunk_free free
  53. struct obstack stmt_obstack;
  54.  
  55. extern int xmalloc ();
  56. extern void free ();
  57.  
  58. #define MAX(x,y) (((x) > (y)) ? (x) : (y))
  59. #define MIN(x,y) (((x) < (y)) ? (x) : (y))
  60.  
  61. /* Filename and line number of last line-number note,
  62.    whether we actually emitted it or not.  */
  63. char *emit_filename;
  64. int emit_lineno;
  65.  
  66. /* Nonzero if within a ({...}) grouping, in which case we must
  67.    always compute a value for each expr-stmt in case it is the last one.  */
  68.  
  69. int expr_stmts_for_value;
  70.  
  71. /* Each time we expand an expression-statement,
  72.    record the expr's type and its RTL value here.  */
  73.  
  74. static tree last_expr_type;
  75. static rtx last_expr_value;
  76.  
  77. /* Number of binding contours started so far in this function.  */
  78.  
  79. int block_start_count;
  80.  
  81. /* Nonzero if function being compiled needs to
  82.    return the address of where it has put a structure value.  */
  83.  
  84. extern int current_function_returns_pcc_struct;
  85.  
  86. /* Label that will go on parm cleanup code, if any.
  87.    Jumping to this label runs cleanup code for parameters, if
  88.    such code must be run.  Following this code is the logical return label.  */
  89.  
  90. extern rtx cleanup_label;
  91.  
  92. /* Label that will go on function epilogue.
  93.    Jumping to this label serves as a "return" instruction
  94.    on machines which require execution of the epilogue on all returns.  */
  95.  
  96. extern rtx return_label;
  97.  
  98. /* List (chain of EXPR_LISTs) of pseudo-regs of SAVE_EXPRs.
  99.    So we can mark them all live at the end of the function, if nonopt.  */
  100. extern rtx save_expr_regs;
  101.  
  102. /* Offset to end of allocated area of stack frame.
  103.    If stack grows down, this is the address of the last stack slot allocated.
  104.    If stack grows up, this is the address for the next slot.  */
  105. extern int frame_offset;
  106.  
  107. /* Label to jump back to for tail recursion, or 0 if we have
  108.    not yet needed one for this function.  */
  109. extern rtx tail_recursion_label;
  110.  
  111. /* Place after which to insert the tail_recursion_label if we need one.  */
  112. extern rtx tail_recursion_reentry;
  113.  
  114. /* Location at which to save the argument pointer if it will need to be
  115.    referenced.  There are two cases where this is done: if nonlocal gotos
  116.    exist, or if vars whose is an offset from the argument pointer will be
  117.    needed by inner routines.  */
  118.  
  119. extern rtx arg_pointer_save_area;
  120.  
  121. /* Chain of all RTL_EXPRs that have insns in them.  */
  122. extern tree rtl_expr_chain;
  123.  
  124. #if 0  /* Turned off because 0 seems to work just as well.  */
  125. /* Cleanup lists are required for binding levels regardless of whether
  126.    that binding level has cleanups or not.  This node serves as the
  127.    cleanup list whenever an empty list is required.  */
  128. static tree empty_cleanup_list;
  129. #endif
  130.  
  131. /* Functions and data structures for expanding case statements.  */
  132.  
  133. /* Case label structure, used to hold info on labels within case
  134.    statements.  We handle "range" labels; for a single-value label
  135.    as in C, the high and low limits are the same.  */
  136.  
  137. struct case_node
  138. {
  139.   struct case_node    *left;
  140.   struct case_node    *right;
  141.   struct case_node    *parent;
  142.   tree            low;
  143.   tree            high;
  144.   tree            test_label;
  145.   tree            code_label;
  146. };
  147.  
  148. typedef struct case_node case_node;
  149. typedef struct case_node *case_node_ptr;
  150.  
  151. static void estimate_case_costs ();
  152. static void balance_case_nodes ();
  153. static void emit_case_nodes ();
  154. static void group_case_nodes ();
  155. static void emit_jump_if_reachable ();
  156.  
  157. static int warn_if_unused_value ();
  158. static void expand_goto_internal ();
  159. static int expand_fixup ();
  160. void fixup_gotos ();
  161. void free_temp_slots ();
  162. static void expand_cleanups ();
  163. static void fixup_cleanups ();
  164. static void expand_null_return_1 ();
  165. static int tail_recursion_args ();
  166. static void do_jump_if_equal ();
  167.  
  168. /* Stack of control and binding constructs we are currently inside.
  169.  
  170.    These constructs begin when you call `expand_start_WHATEVER'
  171.    and end when you call `expand_end_WHATEVER'.  This stack records
  172.    info about how the construct began that tells the end-function
  173.    what to do.  It also may provide information about the construct
  174.    to alter the behavior of other constructs within the body.
  175.    For example, they may affect the behavior of C `break' and `continue'.
  176.  
  177.    Each construct gets one `struct nesting' object.
  178.    All of these objects are chained through the `all' field.
  179.    `nesting_stack' points to the first object (innermost construct).
  180.    The position of an entry on `nesting_stack' is in its `depth' field.
  181.  
  182.    Each type of construct has its own individual stack.
  183.    For example, loops have `loop_stack'.  Each object points to the
  184.    next object of the same type through the `next' field.
  185.  
  186.    Some constructs are visible to `break' exit-statements and others
  187.    are not.  Which constructs are visible depends on the language.
  188.    Therefore, the data structure allows each construct to be visible
  189.    or not, according to the args given when the construct is started.
  190.    The construct is visible if the `exit_label' field is non-null.
  191.    In that case, the value should be a CODE_LABEL rtx.  */
  192.  
  193. struct nesting
  194. {
  195.   struct nesting *all;
  196.   struct nesting *next;
  197.   int depth;
  198.   rtx exit_label;
  199.   union
  200.     {
  201.       /* For conds (if-then and if-then-else statements).  */
  202.       struct
  203.     {
  204.       /* Label for the end of the if construct.
  205.          There is none if EXITFLAG was not set
  206.          and no `else' has been seen yet.  */
  207.       rtx endif_label;
  208.       /* Label for the end of this alternative.
  209.          This may be the end of the if or the next else/elseif. */
  210.       rtx next_label;
  211.     } cond;
  212.       /* For loops.  */
  213.       struct
  214.     {
  215.       /* Label at the top of the loop; place to loop back to.  */
  216.       rtx start_label;
  217.       /* Label at the end of the whole construct.  */
  218.       rtx end_label;
  219.       /* Label for `continue' statement to jump to;
  220.          this is in front of the stepper of the loop.  */
  221.       rtx continue_label;
  222.     } loop;
  223.       /* For variable binding contours.  */
  224.       struct
  225.     {
  226.       /* Sequence number of this binding contour within the function,
  227.          in order of entry.  */
  228.       int block_start_count;
  229.       /* Nonzero => value to restore stack to on exit.  */
  230.       rtx stack_level;
  231.       /* The NOTE that starts this contour.
  232.          Used by expand_goto to check whether the destination
  233.          is within each contour or not.  */
  234.       rtx first_insn;
  235.       /* Innermost containing binding contour that has a stack level.  */
  236.       struct nesting *innermost_stack_block;
  237.       /* List of cleanups to be run on exit from this contour.
  238.          This is a list of expressions to be evaluated.
  239.          The TREE_PURPOSE of each link is the ..._DECL node
  240.          which the cleanup pertains to.  */
  241.       tree cleanups;
  242.       /* List of cleanup-lists of blocks containing this block,
  243.          as they were at the locus where this block appears.
  244.          There is an element for each containing block,
  245.          ordered innermost containing block first.
  246.          The tail of this list can be 0 (was empty_cleanup_list),
  247.          if all remaining elements would be empty lists.
  248.          The element's TREE_VALUE is the cleanup-list of that block,
  249.          which may be null.  */
  250.       tree outer_cleanups;
  251.       /* Chain of labels defined inside this binding contour.
  252.          For contours that have stack levels or cleanups.  */
  253.       struct label_chain *label_chain;
  254.       /* Number of function calls seen, as of start of this block.  */
  255.       int function_call_count;
  256.     } block;
  257.       /* For switch (C) or case (Pascal) statements,
  258.      and also for dummies (see `expand_start_case_dummy').  */
  259.       struct
  260.     {
  261.       /* The insn after which the case dispatch should finally
  262.          be emitted.  Zero for a dummy.  */
  263.       rtx start;
  264.       /* A list of case labels, kept in ascending order by value
  265.          as the list is built.
  266.          During expand_end_case, this list may be rearranged into a
  267.          nearly balanced binary tree.  */
  268.       struct case_node *case_list;
  269.       /* Label to jump to if no case matches.  */
  270.       tree default_label;
  271.       /* The expression to be dispatched on.  */
  272.       tree index_expr;
  273.       /* Type that INDEX_EXPR should be converted to.  */
  274.       tree nominal_type;
  275.       /* Number of range exprs in case statement.  */
  276.       int num_ranges;
  277.       /* Name of this kind of statement, for warnings.  */
  278.       char *printname;
  279.       /* Nonzero if a case label has been seen in this case stmt.  */
  280.       char seenlabel;
  281.     } case_stmt;
  282.       /* For exception contours.  */
  283.       struct
  284.     {
  285.       /* List of exceptions raised.  This is a TREE_LIST
  286.          of whatever you want.  */
  287.       tree raised;
  288.       /* List of exceptions caught.  This is also a TREE_LIST
  289.          of whatever you want.  As a special case, it has the
  290.          value `void_type_node' if it handles default exceptions.  */
  291.       tree handled;
  292.  
  293.       /* First insn of TRY block, in case resumptive model is needed.  */
  294.       rtx first_insn;
  295.       /* Label for the catch clauses.  */
  296.       rtx except_label;
  297.       /* Label for unhandled exceptions.  */
  298.       rtx unhandled_label;
  299.       /* Label at the end of whole construct.  */
  300.       rtx after_label;
  301.       /* Label which "escapes" the exception construct.
  302.          Like EXIT_LABEL for BREAK construct, but for exceptions.  */
  303.       rtx escape_label;
  304.     } except_stmt;
  305.     } data;
  306. };
  307.  
  308. /* Chain of all pending binding contours.  */
  309. struct nesting *block_stack;
  310.  
  311. /* Chain of all pending binding contours that restore stack levels
  312.    or have cleanups.  */
  313. struct nesting *stack_block_stack;
  314.  
  315. /* Chain of all pending conditional statements.  */
  316. struct nesting *cond_stack;
  317.  
  318. /* Chain of all pending loops.  */
  319. struct nesting *loop_stack;
  320.  
  321. /* Chain of all pending case or switch statements.  */
  322. struct nesting *case_stack;
  323.  
  324. /* Chain of all pending exception contours.  */
  325. struct nesting *except_stack;
  326.  
  327. /* Separate chain including all of the above,
  328.    chained through the `all' field.  */
  329. struct nesting *nesting_stack;
  330.  
  331. /* Number of entries on nesting_stack now.  */
  332. int nesting_depth;
  333.  
  334. /* Allocate and return a new `struct nesting'.  */
  335.  
  336. #define ALLOC_NESTING() \
  337.  (struct nesting *) obstack_alloc (&stmt_obstack, sizeof (struct nesting))
  338.  
  339. /* Pop one of the sub-stacks, such as `loop_stack' or `cond_stack';
  340.    and pop off `nesting_stack' down to the same level.  */
  341.  
  342. #define POPSTACK(STACK)                    \
  343. do { int initial_depth = nesting_stack->depth;        \
  344.      do { struct nesting *this = STACK;            \
  345.       STACK = this->next;                \
  346.       nesting_stack = this->all;            \
  347.       nesting_depth = this->depth;            \
  348.       obstack_free (&stmt_obstack, this); }        \
  349.      while (nesting_depth > initial_depth); } while (0)
  350.  
  351. /* In some cases it is impossible to generate code for a forward goto 
  352.    until the label definition is seen.  This happens when it may be necessary
  353.    for the goto to reset the stack pointer: we don't yet know how to do that.
  354.    So expand_goto puts an entry on this fixup list.
  355.    Each time a binding contour that resets the stack is exited,
  356.    we check each fixup.
  357.    If the target label has now been defined, we can insert the proper code.  */
  358.  
  359. struct goto_fixup
  360. {
  361.   /* Points to following fixup.  */
  362.   struct goto_fixup *next;
  363.   /* Points to the insn before the jump insn.
  364.      If more code must be inserted, it goes after this insn.  */
  365.   rtx before_jump;
  366.   /* The LABEL_DECL that this jump is jumping to, or 0
  367.      for break, continue or return.  */
  368.   tree target;
  369.   /* The CODE_LABEL rtx that this is jumping to.  */
  370.   rtx target_rtl;
  371.   /* Number of binding contours started in current function
  372.      before the label reference.  */
  373.   int block_start_count;
  374.   /* The outermost stack level that should be restored for this jump.
  375.      Each time a binding contour that resets the stack is exited,
  376.      if the target label is *not* yet defined, this slot is updated.  */
  377.   rtx stack_level;
  378.   /* List of lists of cleanup expressions to be run by this goto.
  379.      There is one element for each block that this goto is within.
  380.      The tail of this list can be 0 (was empty_cleanup_list),
  381.      if all remaining elements would be empty.
  382.      The TREE_VALUE contains the cleanup list of that block as of the
  383.      time this goto was seen.
  384.      The TREE_ADDRESSABLE flag is 1 for a block that has been exited.  */
  385.   tree cleanup_list_list;
  386. };
  387.  
  388. static struct goto_fixup *goto_fixup_chain;
  389.  
  390. /* Within any binding contour that must restore a stack level,
  391.    all labels are recorded with a chain of these structures.  */
  392.  
  393. struct label_chain
  394. {
  395.   /* Points to following fixup.  */
  396.   struct label_chain *next;
  397.   tree label;
  398. };
  399.  
  400. init_stmt ()
  401. {
  402.   gcc_obstack_init (&stmt_obstack);
  403. #if 0
  404.   empty_cleanup_list = build_tree_list (NULL_TREE, NULL_TREE);
  405. #endif
  406. }
  407.  
  408. init_stmt_for_function ()
  409. {
  410.   /* We are not currently within any block, conditional, loop or case.  */
  411.   block_stack = 0;
  412.   loop_stack = 0;
  413.   case_stack = 0;
  414.   cond_stack = 0;
  415.   nesting_stack = 0;
  416.   nesting_depth = 0;
  417.  
  418.   block_start_count = 0;
  419.  
  420.   /* No gotos have been expanded yet.  */
  421.   goto_fixup_chain = 0;
  422.  
  423.   /* We are not processing a ({...}) grouping.  */
  424.   expr_stmts_for_value = 0;
  425.   last_expr_type = 0;
  426. }
  427.  
  428. void
  429. save_stmt_status (p)
  430.      struct function *p;
  431. {
  432.   p->block_stack = block_stack;
  433.   p->stack_block_stack = stack_block_stack;
  434.   p->cond_stack = cond_stack;
  435.   p->loop_stack = loop_stack;
  436.   p->case_stack = case_stack;
  437.   p->nesting_stack = nesting_stack;
  438.   p->nesting_depth = nesting_depth;
  439.   p->block_start_count = block_start_count;
  440.   p->last_expr_type = last_expr_type;
  441.   p->last_expr_value = last_expr_value;
  442.   p->expr_stmts_for_value = expr_stmts_for_value;
  443.   p->emit_filename = emit_filename;
  444.   p->emit_lineno = emit_lineno;
  445.   p->goto_fixup_chain = goto_fixup_chain;
  446. }
  447.  
  448. void
  449. restore_stmt_status (p)
  450.      struct function *p;
  451. {
  452.   block_stack = p->block_stack;
  453.   stack_block_stack = p->stack_block_stack;
  454.   cond_stack = p->cond_stack;
  455.   loop_stack = p->loop_stack;
  456.   case_stack = p->case_stack;
  457.   nesting_stack = p->nesting_stack;
  458.   nesting_depth = p->nesting_depth;
  459.   block_start_count = p->block_start_count;
  460.   last_expr_type = p->last_expr_type;
  461.   last_expr_value = p->last_expr_value;
  462.   expr_stmts_for_value = p->expr_stmts_for_value;
  463.   emit_filename = p->emit_filename;
  464.   emit_lineno = p->emit_lineno;
  465.   goto_fixup_chain = p->goto_fixup_chain;
  466. }
  467.  
  468. /* Emit a no-op instruction.  */
  469.  
  470. void
  471. emit_nop ()
  472. {
  473.   rtx last_insn = get_last_insn ();
  474.   if (!optimize
  475.       && (GET_CODE (last_insn) == CODE_LABEL
  476.       || prev_real_insn (last_insn) == 0))
  477.     emit_insn (gen_nop ());
  478. }
  479.  
  480. /* Return the rtx-label that corresponds to a LABEL_DECL,
  481.    creating it if necessary.  */
  482.  
  483. rtx
  484. label_rtx (label)
  485.      tree label;
  486. {
  487.   if (TREE_CODE (label) != LABEL_DECL)
  488.     abort ();
  489.  
  490.   if (DECL_RTL (label))
  491.     return DECL_RTL (label);
  492.  
  493.   return DECL_RTL (label) = gen_label_rtx ();
  494. }
  495.  
  496. /* Add an unconditional jump to LABEL as the next sequential instruction.  */
  497.  
  498. void
  499. emit_jump (label)
  500.      rtx label;
  501. {
  502.   do_pending_stack_adjust ();
  503.   emit_jump_insn (gen_jump (label));
  504.   emit_barrier ();
  505. }
  506.  
  507. /* Emit code to jump to the address
  508.    specified by the pointer expression EXP.  */
  509.  
  510. void
  511. expand_computed_goto (exp)
  512.      tree exp;
  513. {
  514.   rtx x = expand_expr (exp, 0, VOIDmode, 0);
  515.   emit_indirect_jump (x);
  516.   emit_barrier ();
  517. }
  518.  
  519. /* Handle goto statements and the labels that they can go to.  */
  520.  
  521. /* Specify the location in the RTL code of a label LABEL,
  522.    which is a LABEL_DECL tree node.
  523.  
  524.    This is used for the kind of label that the user can jump to with a
  525.    goto statement, and for alternatives of a switch or case statement.
  526.    RTL labels generated for loops and conditionals don't go through here;
  527.    they are generated directly at the RTL level, by other functions below.
  528.  
  529.    Note that this has nothing to do with defining label *names*.
  530.    Languages vary in how they do that and what that even means.  */
  531.  
  532. void
  533. expand_label (label)
  534.      tree label;
  535. {
  536.   struct label_chain *p;
  537.  
  538.   do_pending_stack_adjust ();
  539.   emit_label (label_rtx (label));
  540.   if (DECL_NAME (label))
  541.     LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
  542.  
  543.   if (stack_block_stack != 0)
  544.     {
  545.       p = (struct label_chain *) oballoc (sizeof (struct label_chain));
  546.       p->next = stack_block_stack->data.block.label_chain;
  547.       stack_block_stack->data.block.label_chain = p;
  548.       p->label = label;
  549.     }
  550. }
  551.  
  552. /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
  553.    from nested functions.  */
  554.  
  555. void
  556. declare_nonlocal_label (label)
  557.      tree label;
  558. {
  559.   nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
  560.   LABEL_PRESERVE_P (label_rtx (label)) = 1;
  561.   if (nonlocal_goto_handler_slot == 0)
  562.     {
  563.       nonlocal_goto_handler_slot
  564.     = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
  565.       nonlocal_goto_stack_level
  566.     = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
  567.       emit_insn_before (gen_move_insn (nonlocal_goto_stack_level,
  568.                        stack_pointer_rtx),
  569.             tail_recursion_reentry);
  570.     }
  571. }
  572.  
  573. /* Generate RTL code for a `goto' statement with target label LABEL.
  574.    LABEL should be a LABEL_DECL tree node that was or will later be
  575.    defined with `expand_label'.  */
  576.  
  577. void
  578. expand_goto (label)
  579.      tree label;
  580. {
  581.   /* Check for a nonlocal goto to a containing function.  */
  582.   tree context = decl_function_context (label);
  583.   if (context != 0 && context != current_function_decl)
  584.     {
  585.       struct function *p = find_function_data (context);
  586.       rtx temp;
  587.       p->has_nonlocal_label = 1;
  588.       /* Restore frame pointer for containing function.
  589.      This sets the actual hard register used for the frame pointer
  590.      to the location of the function's incoming static chain info.
  591.      The non-local goto handler will then adjust it to contain the
  592.      proper value and reload the argument pointer, if needed.  */
  593.       emit_move_insn (frame_pointer_rtx, lookup_static_chain (label));
  594.       /* Jump to the containing function's current nonlocal goto handler,
  595.      which will do any cleanups and then jump to the label.  */
  596.       temp = copy_to_reg (p->nonlocal_goto_handler_slot);
  597.       /* Restore the stack pointer.  */
  598.       emit_move_insn (stack_pointer_rtx, p->nonlocal_goto_stack_level);
  599.       /* Put in the static chain register the nonlocal label address.  */
  600.       emit_move_insn (static_chain_rtx,
  601.               gen_rtx (LABEL_REF, Pmode, label_rtx (label)));
  602.       /* USE of frame_pointer_rtx added for consistency; not clear if
  603.      really needed.  */
  604.       emit_insn (gen_rtx (USE, VOIDmode, frame_pointer_rtx));
  605.       emit_insn (gen_rtx (USE, VOIDmode, stack_pointer_rtx));
  606.       emit_insn (gen_rtx (USE, VOIDmode, static_chain_rtx));
  607.       emit_indirect_jump (temp);
  608.      }
  609.   else
  610.     expand_goto_internal (label, label_rtx (label), 0);
  611. }
  612.  
  613. /* Generate RTL code for a `goto' statement with target label BODY.
  614.    LABEL should be a LABEL_REF.
  615.    LAST_INSN, if non-0, is the rtx we should consider as the last
  616.    insn emitted (for the purposes of cleaning up a return).  */
  617.  
  618. static void
  619. expand_goto_internal (body, label, last_insn)
  620.      tree body;
  621.      rtx label;
  622.      rtx last_insn;
  623. {
  624.   struct nesting *block;
  625.   rtx stack_level = 0;
  626.  
  627.   if (GET_CODE (label) != CODE_LABEL)
  628.     abort ();
  629.  
  630.   /* If label has already been defined, we can tell now
  631.      whether and how we must alter the stack level.  */
  632.  
  633.   if (PREV_INSN (label) != 0)
  634.     {
  635.       /* Find the innermost pending block that contains the label.
  636.      (Check containment by comparing insn-uids.)
  637.      Then restore the outermost stack level within that block,
  638.      and do cleanups of all blocks contained in it.  */
  639.       for (block = block_stack; block; block = block->next)
  640.     {
  641.       if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
  642.         break;
  643.       if (block->data.block.stack_level != 0)
  644.         stack_level = block->data.block.stack_level;
  645.       /* Execute the cleanups for blocks we are exiting.  */
  646.       if (block->data.block.cleanups != 0)
  647.         {
  648.           expand_cleanups (block->data.block.cleanups, 0);
  649.           do_pending_stack_adjust ();
  650.         }
  651.     }
  652.  
  653.       if (stack_level)
  654.     {
  655.       /* Ensure stack adjust isn't done by emit_jump, as this would clobber
  656.          the stack pointer.  This one should be deleted as dead by flow. */
  657.       clear_pending_stack_adjust ();
  658.       do_pending_stack_adjust ();
  659.       emit_move_insn (stack_pointer_rtx, stack_level);
  660.     }
  661.  
  662.       if (body != 0 && DECL_TOO_LATE (body))
  663.     error ("jump to `%s' invalidly jumps into binding contour",
  664.            IDENTIFIER_POINTER (DECL_NAME (body)));
  665.     }
  666.   /* Label not yet defined: may need to put this goto
  667.      on the fixup list.  */
  668.   else if (! expand_fixup (body, label, last_insn))
  669.     {
  670.       /* No fixup needed.  Record that the label is the target
  671.      of at least one goto that has no fixup.  */
  672.       if (body != 0)
  673.     TREE_ADDRESSABLE (body) = 1;
  674.     }
  675.  
  676.   emit_jump (label);
  677. }
  678.  
  679. /* Generate if necessary a fixup for a goto
  680.    whose target label in tree structure (if any) is TREE_LABEL
  681.    and whose target in rtl is RTL_LABEL.
  682.  
  683.    If LAST_INSN is nonzero, we pretend that the jump appears
  684.    after insn LAST_INSN instead of at the current point in the insn stream.
  685.  
  686.    The fixup will be used later to insert insns at this point
  687.    to restore the stack level as appropriate for the target label.
  688.  
  689.    Value is nonzero if a fixup is made.  */
  690.  
  691. static int
  692. expand_fixup (tree_label, rtl_label, last_insn)
  693.      tree tree_label;
  694.      rtx rtl_label;
  695.      rtx last_insn;
  696. {
  697.   struct nesting *block, *end_block;
  698.  
  699.   /* See if we can recognize which block the label will be output in.
  700.      This is possible in some very common cases.
  701.      If we succeed, set END_BLOCK to that block.
  702.      Otherwise, set it to 0.  */
  703.  
  704.   if (cond_stack
  705.       && (rtl_label == cond_stack->data.cond.endif_label
  706.       || rtl_label == cond_stack->data.cond.next_label))
  707.     end_block = cond_stack;
  708.   /* If we are in a loop, recognize certain labels which
  709.      are likely targets.  This reduces the number of fixups
  710.      we need to create.  */
  711.   else if (loop_stack
  712.       && (rtl_label == loop_stack->data.loop.start_label
  713.       || rtl_label == loop_stack->data.loop.end_label
  714.       || rtl_label == loop_stack->data.loop.continue_label))
  715.     end_block = loop_stack;
  716.   else
  717.     end_block = 0;
  718.  
  719.   /* Now set END_BLOCK to the binding level to which we will return.  */
  720.  
  721.   if (end_block)
  722.     {
  723.       struct nesting *next_block = end_block->all;
  724.       block = block_stack;
  725.  
  726.       /* First see if the END_BLOCK is inside the innermost binding level.
  727.      If so, then no cleanups or stack levels are relevant.  */
  728.       while (next_block && next_block != block)
  729.     next_block = next_block->all;
  730.  
  731.       if (next_block)
  732.     return 0;
  733.  
  734.       /* Otherwise, set END_BLOCK to the innermost binding level
  735.      which is outside the relevant control-structure nesting.  */
  736.       next_block = block_stack->next;
  737.       for (block = block_stack; block != end_block; block = block->all)
  738.     if (block == next_block)
  739.       next_block = next_block->next;
  740.       end_block = next_block;
  741.     }
  742.  
  743.   /* Does any containing block have a stack level or cleanups?
  744.      If not, no fixup is needed, and that is the normal case
  745.      (the only case, for standard C).  */
  746.   for (block = block_stack; block != end_block; block = block->next)
  747.     if (block->data.block.stack_level != 0
  748.     || block->data.block.cleanups != 0)
  749.       break;
  750.  
  751.   if (block != end_block)
  752.     {
  753.       /* Ok, a fixup is needed.  Add a fixup to the list of such.  */
  754.       struct goto_fixup *fixup
  755.     = (struct goto_fixup *) oballoc (sizeof (struct goto_fixup));
  756.       /* In case an old stack level is restored, make sure that comes
  757.      after any pending stack adjust.  */
  758.       /* ?? If the fixup isn't to come at the present position,
  759.      doing the stack adjust here isn't useful.  Doing it with our
  760.      settings at that location isn't useful either.  Let's hope
  761.      someone does it!  */
  762.       if (last_insn == 0)
  763.     do_pending_stack_adjust ();
  764.       fixup->before_jump = last_insn ? last_insn : get_last_insn ();
  765.       fixup->target = tree_label;
  766.       fixup->target_rtl = rtl_label;
  767.       fixup->block_start_count = block_start_count;
  768.       fixup->stack_level = 0;
  769.       fixup->cleanup_list_list
  770.     = (((block->data.block.outer_cleanups
  771. #if 0
  772.          && block->data.block.outer_cleanups != empty_cleanup_list
  773. #endif
  774.          )
  775.         || block->data.block.cleanups)
  776.        ? tree_cons (0, block->data.block.cleanups,
  777.             block->data.block.outer_cleanups)
  778.        : 0);
  779.       fixup->next = goto_fixup_chain;
  780.       goto_fixup_chain = fixup;
  781.     }
  782.  
  783.   return block != 0;
  784. }
  785.  
  786. /* When exiting a binding contour, process all pending gotos requiring fixups.
  787.    THISBLOCK is the structure that describes the block being exited.
  788.    STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
  789.    CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
  790.    FIRST_INSN is the insn that began this contour.
  791.  
  792.    Gotos that jump out of this contour must restore the
  793.    stack level and do the cleanups before actually jumping.
  794.  
  795.    DONT_JUMP_IN nonzero means report error there is a jump into this
  796.    contour from before the beginning of the contour.
  797.    This is also done if STACK_LEVEL is nonzero.  */
  798.  
  799. void
  800. fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
  801.      struct nesting *thisblock;
  802.      rtx stack_level;
  803.      tree cleanup_list;
  804.      rtx first_insn;
  805.      int dont_jump_in;
  806. {
  807.   register struct goto_fixup *f, *prev;
  808.  
  809.   /* F is the fixup we are considering; PREV is the previous one.  */
  810.   /* We run this loop in two passes so that cleanups of exited blocks
  811.      are run first, and blocks that are exited are marked so
  812.      afterwards.  */
  813.  
  814.   for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
  815.     {
  816.       /* Test for a fixup that is inactive because it is already handled.  */
  817.       if (f->before_jump == 0)
  818.     {
  819.       /* Delete inactive fixup from the chain, if that is easy to do.  */
  820.       if (prev != 0)
  821.         prev->next = f->next;
  822.     }
  823.       /* Has this fixup's target label been defined?
  824.      If so, we can finalize it.  */
  825.       else if (PREV_INSN (f->target_rtl) != 0)
  826.     {
  827.       /* Get the first non-label after the label
  828.          this goto jumps to.  If that's before this scope begins,
  829.          we don't have a jump into the scope.  */
  830.       rtx after_label = f->target_rtl;
  831.       while (after_label != 0 && GET_CODE (after_label) == CODE_LABEL)
  832.         after_label = NEXT_INSN (after_label);
  833.  
  834.       /* If this fixup jumped into this contour from before the beginning
  835.          of this contour, report an error.  */
  836.       /* ??? Bug: this does not detect jumping in through intermediate
  837.          blocks that have stack levels or cleanups.
  838.          It detects only a problem with the innermost block
  839.          around the label.  */
  840.       if (f->target != 0
  841.           && (dont_jump_in || stack_level || cleanup_list)
  842.           /* If AFTER_LABEL is 0, it means the jump goes to the end
  843.          of the rtl, which means it jumps into this scope.  */
  844.           && (after_label == 0
  845.           || INSN_UID (first_insn) < INSN_UID (after_label))
  846.           && INSN_UID (first_insn) > INSN_UID (f->before_jump)
  847.           && ! TREE_REGDECL (f->target))
  848.         {
  849.           error_with_decl (f->target,
  850.                    "label `%s' used before containing binding contour");
  851.           /* Prevent multiple errors for one label.  */
  852.           TREE_REGDECL (f->target) = 1;
  853.         }
  854.  
  855.       /* Execute cleanups for blocks this jump exits.  */
  856.       if (f->cleanup_list_list)
  857.         {
  858.           tree lists;
  859.           for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
  860.         /* Marked elements correspond to blocks that have been closed.
  861.            Do their cleanups.  */
  862.         if (TREE_ADDRESSABLE (lists)
  863.             && TREE_VALUE (lists) != 0)
  864.           fixup_cleanups (TREE_VALUE (lists), &f->before_jump);
  865.         }
  866.  
  867.       /* Restore stack level for the biggest contour that this
  868.          jump jumps out of.  */
  869.       if (f->stack_level)
  870.         emit_insn_after (gen_move_insn (stack_pointer_rtx, f->stack_level),
  871.                  f->before_jump);
  872.       f->before_jump = 0;
  873.     }
  874.     }
  875.  
  876.   /* Mark the cleanups of exited blocks so that they are executed
  877.      by the code above.  */
  878.   for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
  879.     if (f->before_jump != 0
  880.     && PREV_INSN (f->target_rtl) == 0
  881.     /* Label has still not appeared.  If we are exiting a block with
  882.        a stack level to restore, that started before the fixup,
  883.        mark this stack level as needing restoration
  884.        when the fixup is later finalized.
  885.        Also mark the cleanup_list_list element for F
  886.        that corresponds to this block, so that ultimately
  887.        this block's cleanups will be executed by the code above.  */
  888.     && thisblock != 0
  889.     /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared,
  890.        it means the label is undefined.  That's erroneous, but possible.  */
  891.     && (thisblock->data.block.block_start_count
  892.         <= f->block_start_count))
  893.       {
  894.     tree lists = f->cleanup_list_list;
  895.     for (; lists; lists = TREE_CHAIN (lists))
  896.       /* If the following elt. corresponds to our containing block
  897.          then the elt. must be for this block.  */
  898.       if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
  899.         TREE_ADDRESSABLE (lists) = 1;
  900.  
  901.     if (stack_level)
  902.       f->stack_level = stack_level;
  903.       }
  904. }
  905.  
  906. /* Generate RTL for an asm statement (explicit assembler code).
  907.    BODY is a STRING_CST node containing the assembler code text.  */
  908.  
  909. void
  910. expand_asm (body)
  911.      tree body;
  912. {
  913.   emit_insn (gen_rtx (ASM_INPUT, VOIDmode,
  914.               TREE_STRING_POINTER (body)));
  915.   last_expr_type = 0;
  916. }
  917.  
  918. /* Generate RTL for an asm statement with arguments.
  919.    STRING is the instruction template.
  920.    OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
  921.    Each output or input has an expression in the TREE_VALUE and
  922.    a constraint-string in the TREE_PURPOSE.
  923.    CLOBBERS is a list of STRING_CST nodes each naming a hard register
  924.    that is clobbered by this insn.
  925.  
  926.    Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
  927.    Some elements of OUTPUTS may be replaced with trees representing temporary
  928.    values.  The caller should copy those temporary values to the originally
  929.    specified lvalues.
  930.  
  931.    VOL nonzero means the insn is volatile; don't optimize it.  */
  932.  
  933. void
  934. expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
  935.      tree string, outputs, inputs, clobbers;
  936.      int vol;
  937.      char *filename;
  938.      int line;
  939. {
  940.   rtvec argvec, constraints;
  941.   rtx body;
  942.   int ninputs = list_length (inputs);
  943.   int noutputs = list_length (outputs);
  944.   int nclobbers = list_length (clobbers);
  945.   tree tail;
  946.   register int i;
  947.   /* Vector of RTX's of evaluated output operands.  */
  948.   rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
  949.   /* The insn we have emitted.  */
  950.   rtx insn;
  951.  
  952.   last_expr_type = 0;
  953.  
  954.   for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
  955.     {
  956.       tree val = TREE_VALUE (tail);
  957.       tree val1;
  958.       int j;
  959.       int found_equal;
  960.  
  961.       /* If there's an erroneous arg, emit no insn.  */
  962.       if (TREE_TYPE (val) == error_mark_node)
  963.     return;
  964.  
  965.       /* Make sure constraint has `=' and does not have `+'.  */
  966.  
  967.       found_equal = 0;
  968.       for (j = 0; j < TREE_STRING_LENGTH (TREE_PURPOSE (tail)); j++)
  969.     {
  970.       if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '+')
  971.         {
  972.           error ("output operand constraint contains `+'");
  973.           return;
  974.         }
  975.       if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '=')
  976.         found_equal = 1;
  977.     }
  978.       if (! found_equal)
  979.     {
  980.       error ("output operand constraint lacks `='");
  981.       return;
  982.     }
  983.  
  984.       /* If an output operand is not a variable or indirect ref,
  985.      or a part of one,
  986.      create a SAVE_EXPR which is a pseudo-reg
  987.      to act as an intermediate temporary.
  988.      Make the asm insn write into that, then copy it to
  989.      the real output operand.  */
  990.  
  991.       while (TREE_CODE (val) == COMPONENT_REF
  992.          || TREE_CODE (val) == ARRAY_REF)
  993.     val = TREE_OPERAND (val, 0);
  994.  
  995.       if (TREE_CODE (val) != VAR_DECL
  996.       && TREE_CODE (val) != PARM_DECL
  997.       && TREE_CODE (val) != INDIRECT_REF)
  998.     TREE_VALUE (tail) = save_expr (TREE_VALUE (tail));
  999.  
  1000.       output_rtx[i] = expand_expr (TREE_VALUE (tail), 0, VOIDmode, 0);
  1001.     }
  1002.  
  1003.   if (ninputs + noutputs > MAX_RECOG_OPERANDS)
  1004.     {
  1005.       error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
  1006.       return;
  1007.     }
  1008.  
  1009.   /* Make vectors for the expression-rtx and constraint strings.  */
  1010.  
  1011.   argvec = rtvec_alloc (ninputs);
  1012.   constraints = rtvec_alloc (ninputs);
  1013.  
  1014.   body = gen_rtx (ASM_OPERANDS, VOIDmode,
  1015.           TREE_STRING_POINTER (string), "", 0, argvec, constraints,
  1016.           filename, line);
  1017.   MEM_VOLATILE_P (body) = vol;
  1018.  
  1019.   /* Eval the inputs and put them into ARGVEC.
  1020.      Put their constraints into ASM_INPUTs and store in CONSTRAINTS.  */
  1021.  
  1022.   i = 0;
  1023.   for (tail = inputs; tail; tail = TREE_CHAIN (tail))
  1024.     {
  1025.       int j;
  1026.  
  1027.       /* If there's an erroneous arg, emit no insn,
  1028.      because the ASM_INPUT would get VOIDmode
  1029.      and that could cause a crash in reload.  */
  1030.       if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
  1031.     return;
  1032.       if (TREE_PURPOSE (tail) == NULL_TREE)
  1033.     {
  1034.       error ("hard register `%s' listed as input operand to `asm'",
  1035.          TREE_STRING_POINTER (TREE_VALUE (tail)) );
  1036.       return;
  1037.     }
  1038.  
  1039.       /* Make sure constraint has neither `=' nor `+'.  */
  1040.  
  1041.       for (j = 0; j < TREE_STRING_LENGTH (TREE_PURPOSE (tail)); j++)
  1042.     if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '='
  1043.         || TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '+')
  1044.       {
  1045.         error ("input operand constraint contains `%c'",
  1046.            TREE_STRING_POINTER (TREE_PURPOSE (tail))[j]);
  1047.         return;
  1048.       }
  1049.  
  1050.       XVECEXP (body, 3, i)      /* argvec */
  1051.     = expand_expr (TREE_VALUE (tail), 0, VOIDmode, 0);
  1052.       XVECEXP (body, 4, i)      /* constraints */
  1053.     = gen_rtx (ASM_INPUT, TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
  1054.            TREE_STRING_POINTER (TREE_PURPOSE (tail)));
  1055.       i++;
  1056.     }
  1057.  
  1058.   /* Protect all the operands from the queue,
  1059.      now that they have all been evaluated.  */
  1060.  
  1061.   for (i = 0; i < ninputs; i++)
  1062.     XVECEXP (body, 3, i) = protect_from_queue (XVECEXP (body, 3, i), 0);
  1063.  
  1064.   for (i = 0; i < noutputs; i++)
  1065.     output_rtx[i] = protect_from_queue (output_rtx[i], 1);
  1066.  
  1067.   /* Now, for each output, construct an rtx
  1068.      (set OUTPUT (asm_operands INSN OUTPUTNUMBER OUTPUTCONSTRAINT
  1069.                    ARGVEC CONSTRAINTS))
  1070.      If there is more than one, put them inside a PARALLEL.  */
  1071.  
  1072.   if (noutputs == 1 && nclobbers == 0)
  1073.     {
  1074.       XSTR (body, 1) = TREE_STRING_POINTER (TREE_PURPOSE (outputs));
  1075.       insn = emit_insn (gen_rtx (SET, VOIDmode, output_rtx[0], body));
  1076.     }
  1077.   else if (noutputs == 0 && nclobbers == 0)
  1078.     {
  1079.       /* No output operands: put in a raw ASM_OPERANDS rtx.  */
  1080.       insn = emit_insn (body);
  1081.     }
  1082.   else
  1083.     {
  1084.       rtx obody = body;
  1085.       int num = noutputs;
  1086.       if (num == 0) num = 1;
  1087.       body = gen_rtx (PARALLEL, VOIDmode, rtvec_alloc (num + nclobbers));
  1088.  
  1089.       /* For each output operand, store a SET.  */
  1090.  
  1091.       for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
  1092.     {
  1093.       XVECEXP (body, 0, i)
  1094.         = gen_rtx (SET, VOIDmode,
  1095.                output_rtx[i],
  1096.                gen_rtx (ASM_OPERANDS, VOIDmode,
  1097.                 TREE_STRING_POINTER (string),
  1098.                 TREE_STRING_POINTER (TREE_PURPOSE (tail)),
  1099.                 i, argvec, constraints,
  1100.                 filename, line));
  1101.       MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
  1102.     }
  1103.  
  1104.       /* If there are no outputs (but there are some clobbers)
  1105.      store the bare ASM_OPERANDS into the PARALLEL.  */
  1106.  
  1107.       if (i == 0)
  1108.     XVECEXP (body, 0, i++) = obody;
  1109.  
  1110.       /* Store (clobber REG) for each clobbered register specified.  */
  1111.  
  1112.       for (tail = clobbers; tail; tail = TREE_CHAIN (tail), i++)
  1113.     {
  1114.       int j;
  1115.       char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
  1116.       extern char *reg_names[];
  1117.           
  1118.       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
  1119.         if (!strcmp (regname, reg_names[j]))
  1120.           break;
  1121.           
  1122.       if (j == FIRST_PSEUDO_REGISTER)
  1123.         {
  1124.           error ("unknown register name `%s' in `asm'", regname);
  1125.           return;
  1126.         }
  1127.  
  1128.       /* Use QImode since that's guaranteed to clobber just one reg.  */
  1129.       XVECEXP (body, 0, i)
  1130.         = gen_rtx (CLOBBER, VOIDmode, gen_rtx (REG, QImode, j));
  1131.     }
  1132.  
  1133.       insn = emit_insn (body);
  1134.     }
  1135.  
  1136.   free_temp_slots ();
  1137. }
  1138.  
  1139. /* Generate RTL to evaluate the expression EXP
  1140.    and remember it in case this is the VALUE in a ({... VALUE; }) constr.  */
  1141.  
  1142. void
  1143. expand_expr_stmt (exp)
  1144.      tree exp;
  1145. {
  1146.   /* If -W, warn about statements with no side effects,
  1147.      except for an explicit cast to void (e.g. for assert()), and
  1148.      except inside a ({...}) where they may be useful.  */
  1149.   if (expr_stmts_for_value == 0 && exp != error_mark_node)
  1150.     {
  1151.       if (! TREE_SIDE_EFFECTS (exp) && (extra_warnings || warn_unused)
  1152.       && !(TREE_CODE (exp) == CONVERT_EXPR
  1153.            && TREE_TYPE (exp) == void_type_node))
  1154.     warning_with_file_and_line (emit_filename, emit_lineno,
  1155.                     "statement with no effect");
  1156.       else if (warn_unused)
  1157.     warn_if_unused_value (exp);
  1158.     }
  1159.   last_expr_type = TREE_TYPE (exp);
  1160.   if (! flag_syntax_only)
  1161.     last_expr_value = expand_expr (exp, expr_stmts_for_value ? 0 : const0_rtx,
  1162.                    VOIDmode, 0);
  1163.  
  1164.   /* If all we do is reference a volatile value in memory,
  1165.      copy it to a register to be sure it is actually touched.  */
  1166.   if (last_expr_value != 0 && GET_CODE (last_expr_value) == MEM
  1167.       && TREE_THIS_VOLATILE (exp))
  1168.     {
  1169.       if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
  1170.     copy_to_reg (last_expr_value);
  1171.       else
  1172.     /* This case needs to be written.  */
  1173.     abort ();
  1174.     }
  1175.  
  1176.   /* If this expression is part of a ({...}) and is in memory, we may have
  1177.      to preserve temporaries.  */
  1178.   preserve_temp_slots (last_expr_value);
  1179.  
  1180.   /* Free any temporaries used to evaluate this expression.  Any temporary
  1181.      used as a result of this expression will already have been preserved 
  1182.      above.  */
  1183.   free_temp_slots ();
  1184.  
  1185.   emit_queue ();
  1186. }
  1187.  
  1188. /* Warn if EXP contains any computations whose results are not used.
  1189.    Return 1 if a warning is printed; 0 otherwise.  */
  1190.  
  1191. static int
  1192. warn_if_unused_value (exp)
  1193.      tree exp;
  1194. {
  1195.   if (TREE_USED (exp))
  1196.     return 0;
  1197.  
  1198.   switch (TREE_CODE (exp))
  1199.     {
  1200.     case PREINCREMENT_EXPR:
  1201.     case POSTINCREMENT_EXPR:
  1202.     case PREDECREMENT_EXPR:
  1203.     case POSTDECREMENT_EXPR:
  1204.     case MODIFY_EXPR:
  1205.     case INIT_EXPR:
  1206.     case TARGET_EXPR:
  1207.     case CALL_EXPR:
  1208.     case METHOD_CALL_EXPR:
  1209.     case RTL_EXPR:
  1210.     case WRAPPER_EXPR:
  1211.     case ANTI_WRAPPER_EXPR:
  1212.     case WITH_CLEANUP_EXPR:
  1213.       /* We don't warn about COND_EXPR because it may be a useful
  1214.      construct if either arm contains a side effect.  */
  1215.     case COND_EXPR:
  1216.       return 0;
  1217.  
  1218.     case BIND_EXPR:
  1219.       /* For a binding, warn if no side effect within it.  */
  1220.       return warn_if_unused_value (TREE_OPERAND (exp, 1));
  1221.  
  1222.     case TRUTH_ORIF_EXPR:
  1223.     case TRUTH_ANDIF_EXPR:
  1224.       /* In && or ||, warn if 2nd operand has no side effect.  */
  1225.       return warn_if_unused_value (TREE_OPERAND (exp, 1));
  1226.  
  1227.     case COMPOUND_EXPR:
  1228.       if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
  1229.     return 1;
  1230.       return warn_if_unused_value (TREE_OPERAND (exp, 1));
  1231.  
  1232.     case NOP_EXPR:
  1233.     case CONVERT_EXPR:
  1234.       /* Don't warn about values cast to void.  */
  1235.       if (TREE_TYPE (exp) == void_type_node)
  1236.     return 0;
  1237.       /* Don't warn about conversions not explicit in the user's program.  */
  1238.       if (TREE_NO_UNUSED_WARNING (exp))
  1239.     return 0;
  1240.       /* Assignment to a cast usually results in a cast of a modify.
  1241.      Don't complain about that.  */
  1242.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == MODIFY_EXPR)
  1243.     return 0;
  1244.       /* Sometimes it results in a cast of a cast of a modify.
  1245.      Don't complain about that.  */
  1246.       if ((TREE_CODE (TREE_OPERAND (exp, 0)) == CONVERT_EXPR
  1247.        || TREE_CODE (TREE_OPERAND (exp, 0)) == NOP_EXPR)
  1248.       && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)) == MODIFY_EXPR)
  1249.     return 0;
  1250.  
  1251.     default:
  1252.       warning_with_file_and_line (emit_filename, emit_lineno,
  1253.                   "value computed is not used");
  1254.       return 1;
  1255.     }
  1256. }
  1257.  
  1258. /* Clear out the memory of the last expression evaluated.  */
  1259.  
  1260. void
  1261. clear_last_expr ()
  1262. {
  1263.   last_expr_type = 0;
  1264. }
  1265.  
  1266. /* Begin a statement which will return a value.
  1267.    Return the RTL_EXPR for this statement expr.
  1268.    The caller must save that value and pass it to expand_end_stmt_expr.  */
  1269.  
  1270. tree
  1271. expand_start_stmt_expr ()
  1272. {
  1273.   /* Make the RTL_EXPR node temporary, not momentary,
  1274.      so that rtl_expr_chain doesn't become garbage.  */
  1275.   int momentary = suspend_momentary ();
  1276.   tree t = make_node (RTL_EXPR);
  1277.   resume_momentary (momentary);
  1278.   start_sequence ();
  1279.   NO_DEFER_POP;
  1280.   expr_stmts_for_value++;
  1281.   return t;
  1282. }
  1283.  
  1284. /* Restore the previous state at the end of a statement that returns a value.
  1285.    Returns a tree node representing the statement's value and the
  1286.    insns to compute the value.
  1287.  
  1288.    The nodes of that expression have been freed by now, so we cannot use them.
  1289.    But we don't want to do that anyway; the expression has already been
  1290.    evaluated and now we just want to use the value.  So generate a RTL_EXPR
  1291.    with the proper type and RTL value.
  1292.  
  1293.    If the last substatement was not an expression,
  1294.    return something with type `void'.  */
  1295.  
  1296. tree
  1297. expand_end_stmt_expr (t)
  1298.      tree t;
  1299. {
  1300.   OK_DEFER_POP;
  1301.  
  1302.   if (last_expr_type == 0)
  1303.     {
  1304.       last_expr_type = void_type_node;
  1305.       last_expr_value = const0_rtx;
  1306.     }
  1307.   else
  1308.     {
  1309.       /* Remove any possible QUEUED.  */
  1310.       if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
  1311.     last_expr_value
  1312.       = copy_to_reg (protect_from_queue (last_expr_value, 0));
  1313.     }
  1314.  
  1315.   emit_queue ();
  1316.  
  1317.   TREE_TYPE (t) = last_expr_type;
  1318.   RTL_EXPR_RTL (t) = last_expr_value;
  1319.   RTL_EXPR_SEQUENCE (t) = get_insns ();
  1320.  
  1321.   rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
  1322.  
  1323.   end_sequence ();
  1324.  
  1325.   /* Don't consider deleting this expr or containing exprs at tree level.  */
  1326.   TREE_SIDE_EFFECTS (t) = 1;
  1327.   /* Propagate volatility of the actual RTL expr.  */
  1328.   TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
  1329.  
  1330.   last_expr_type = 0;
  1331.   expr_stmts_for_value--;
  1332.  
  1333.   return t;
  1334. }
  1335.  
  1336. /* The exception handling nesting looks like this:
  1337.  
  1338.         <-- Level N-1
  1339.     {        <-- exception handler block
  1340.         <-- Level N
  1341.         <-- in an exception handler
  1342.     {    <-- try block
  1343.     :    <-- in a TRY block
  1344.     :    <-- in an exception handler
  1345.     :
  1346.     }
  1347.  
  1348.     {    <-- except block
  1349.     :    <-- in an except block
  1350.     :    <-- in an exception handler
  1351.     :
  1352.     }
  1353.  
  1354.     }
  1355.  
  1356. /* Return nonzero iff in a try block at level LEVEL.  */
  1357.  
  1358. int
  1359. in_try_block (level)
  1360.      int level;
  1361. {
  1362.   struct nesting *n = except_stack;
  1363.   while (1)
  1364.     {
  1365.       while (n && n->data.except_stmt.after_label != 0)
  1366.     n = n->next;
  1367.       if (n == 0)
  1368.     return 0;
  1369.       if (level == 0)
  1370.     return n != 0;
  1371.       level--;
  1372.       n = n->next;
  1373.     }
  1374. }
  1375.  
  1376. /* Return nonzero iff in an except block at level LEVEL.  */
  1377.  
  1378. int
  1379. in_except_block (level)
  1380.      int level;
  1381. {
  1382.   struct nesting *n = except_stack;
  1383.   while (1)
  1384.     {
  1385.       while (n && n->data.except_stmt.after_label == 0)
  1386.     n = n->next;
  1387.       if (n == 0)
  1388.     return 0;
  1389.       if (level == 0)
  1390.     return n != 0;
  1391.       level--;
  1392.       n = n->next;
  1393.     }
  1394. }
  1395.  
  1396. /* Return nonzero iff in an exception handler at level LEVEL.  */
  1397.  
  1398. int
  1399. in_exception_handler (level)
  1400.      int level;
  1401. {
  1402.   struct nesting *n = except_stack;
  1403.   while (n && level--)
  1404.     n = n->next;
  1405.   return n != 0;
  1406. }
  1407.  
  1408. /* Record the fact that the current exception nesting raises
  1409.    exception EX.  If not in an exception handler, return 0.  */
  1410. int
  1411. expand_raise (ex)
  1412.      tree ex;
  1413. {
  1414.   tree *raises_ptr;
  1415.  
  1416.   if (except_stack == 0)
  1417.     return 0;
  1418.   raises_ptr = &except_stack->data.except_stmt.raised;
  1419.   if (! value_member (ex, *raises_ptr))
  1420.     *raises_ptr = tree_cons (NULL_TREE, ex, *raises_ptr);
  1421.   return 1;
  1422. }
  1423.  
  1424. /* Generate RTL for the start of a try block.
  1425.  
  1426.    TRY_CLAUSE is the condition to test to enter the try block.  */
  1427.  
  1428. void
  1429. expand_start_try (try_clause, exitflag, escapeflag)
  1430.      tree try_clause;
  1431.      int exitflag;
  1432.      int escapeflag;
  1433. {
  1434.   struct nesting *thishandler = ALLOC_NESTING ();
  1435.  
  1436.   /* Make an entry on cond_stack for the cond we are entering.  */
  1437.  
  1438.   thishandler->next = except_stack;
  1439.   thishandler->all = nesting_stack;
  1440.   thishandler->depth = ++nesting_depth;
  1441.   thishandler->data.except_stmt.raised = 0;
  1442.   thishandler->data.except_stmt.handled = 0;
  1443.   thishandler->data.except_stmt.first_insn = get_insns ();
  1444.   thishandler->data.except_stmt.except_label = gen_label_rtx ();
  1445.   thishandler->data.except_stmt.unhandled_label = 0;
  1446.   thishandler->data.except_stmt.after_label = 0;
  1447.   thishandler->data.except_stmt.escape_label
  1448.     = escapeflag ? thishandler->data.except_stmt.except_label : 0;
  1449.   thishandler->exit_label = exitflag ? gen_label_rtx () : 0;
  1450.   except_stack = thishandler;
  1451.   nesting_stack = thishandler;
  1452.  
  1453.   do_jump (try_clause, thishandler->data.except_stmt.except_label, NULL);
  1454. }
  1455.  
  1456. /* End of a TRY block.  Nothing to do for now.  */
  1457.  
  1458. void
  1459. expand_end_try ()
  1460. {
  1461.   except_stack->data.except_stmt.after_label = gen_label_rtx ();
  1462.   expand_goto_internal (NULL, except_stack->data.except_stmt.after_label, 0);
  1463. }
  1464.  
  1465. /* Start an `except' nesting contour.
  1466.    EXITFLAG says whether this contour should be able to `exit' something.
  1467.    ESCAPEFLAG says whether this contour should be escapable.  */
  1468.  
  1469. void
  1470. expand_start_except (exitflag, escapeflag)
  1471.      int exitflag;
  1472.      int escapeflag;
  1473. {
  1474.   if (exitflag)
  1475.     {
  1476.       struct nesting *n;
  1477.       /* An `exit' from catch clauses goes out to next exit level,
  1478.      if there is one.  Otherwise, it just goes to the end
  1479.      of the construct.  */
  1480.       for (n = except_stack->next; n; n = n->next)
  1481.     if (n->exit_label != 0)
  1482.       {
  1483.         except_stack->exit_label = n->exit_label;
  1484.         break;
  1485.       }
  1486.       if (n == 0)
  1487.     except_stack->exit_label = except_stack->data.except_stmt.after_label;
  1488.     }
  1489.   if (escapeflag)
  1490.     {
  1491.       struct nesting *n;
  1492.       /* An `escape' from catch clauses goes out to next escape level,
  1493.      if there is one.  Otherwise, it just goes to the end
  1494.      of the construct.  */
  1495.       for (n = except_stack->next; n; n = n->next)
  1496.     if (n->data.except_stmt.escape_label != 0)
  1497.       {
  1498.         except_stack->data.except_stmt.escape_label
  1499.           = n->data.except_stmt.escape_label;
  1500.         break;
  1501.       }
  1502.       if (n == 0)
  1503.     except_stack->data.except_stmt.escape_label
  1504.       = except_stack->data.except_stmt.after_label;
  1505.     }
  1506.   do_pending_stack_adjust ();
  1507.   emit_label (except_stack->data.except_stmt.except_label);
  1508. }
  1509.  
  1510. /* Generate code to `escape' from an exception contour.  This
  1511.    is like `exiting', but does not conflict with constructs which
  1512.    use `exit_label'.
  1513.  
  1514.    Return nonzero if this contour is escapable, otherwise
  1515.    return zero, and language-specific code will emit the
  1516.    appropriate error message.  */
  1517. int
  1518. expand_escape_except ()
  1519. {
  1520.   struct nesting *n;
  1521.   last_expr_type = 0;
  1522.   for (n = except_stack; n; n = n->next)
  1523.     if (n->data.except_stmt.escape_label != 0)
  1524.       {
  1525.     expand_goto_internal (0, n->data.except_stmt.escape_label, 0);
  1526.     return 1;
  1527.       }
  1528.  
  1529.   return 0;
  1530. }
  1531.  
  1532. /* Finish processing and `except' contour.
  1533.    Culls out all exceptions which might be raise but not
  1534.    handled, and returns the list to the caller.
  1535.    Language-specific code is responsible for dealing with these
  1536.    exceptions.  */
  1537.  
  1538. tree
  1539. expand_end_except ()
  1540. {
  1541.   struct nesting *n;
  1542.   tree raised = NULL_TREE;
  1543.  
  1544.   do_pending_stack_adjust ();
  1545.   emit_label (except_stack->data.except_stmt.after_label);
  1546.  
  1547.   n = except_stack->next;
  1548.   if (n)
  1549.     {
  1550.       /* Propagate exceptions raised but not handled to next
  1551.      highest level.  */
  1552.       tree handled = except_stack->data.except_stmt.raised;
  1553.       if (handled != void_type_node)
  1554.     {
  1555.       tree prev = NULL_TREE;
  1556.       raised = except_stack->data.except_stmt.raised;
  1557.       while (handled)
  1558.         {
  1559.           tree this_raise;
  1560.           for (this_raise = raised, prev = 0; this_raise;
  1561.            this_raise = TREE_CHAIN (this_raise))
  1562.         {
  1563.           if (value_member (TREE_VALUE (this_raise), handled))
  1564.             {
  1565.               if (prev)
  1566.             TREE_CHAIN (prev) = TREE_CHAIN (this_raise);
  1567.               else
  1568.             {
  1569.               raised = TREE_CHAIN (raised);
  1570.               if (raised == NULL_TREE)
  1571.                 goto nada;
  1572.             }
  1573.             }
  1574.           else
  1575.             prev = this_raise;
  1576.         }
  1577.           handled = TREE_CHAIN (handled);
  1578.         }
  1579.       if (prev == NULL_TREE)
  1580.         prev = raised;
  1581.       if (prev)
  1582.         TREE_CHAIN (prev) = n->data.except_stmt.raised;
  1583.     nada:
  1584.       n->data.except_stmt.raised = raised;
  1585.     }
  1586.     }
  1587.  
  1588.   POPSTACK (except_stack);
  1589.   last_expr_type = 0;
  1590.   return raised;
  1591. }
  1592.  
  1593. /* Record that exception EX is caught by this exception handler.
  1594.    Return nonzero if in exception handling construct, otherwise return 0.  */
  1595. int
  1596. expand_catch (ex)
  1597.      tree ex;
  1598. {
  1599.   tree *raises_ptr;
  1600.  
  1601.   if (except_stack == 0)
  1602.     return 0;
  1603.   raises_ptr = &except_stack->data.except_stmt.handled;
  1604.   if (*raises_ptr != void_type_node
  1605.       && ex != NULL_TREE
  1606.       && ! value_member (ex, *raises_ptr))
  1607.     *raises_ptr = tree_cons (NULL_TREE, ex, *raises_ptr);
  1608.   return 1;
  1609. }
  1610.  
  1611. /* Record that this exception handler catches all exceptions.
  1612.    Return nonzero if in exception handling construct, otherwise return 0.  */
  1613.  
  1614. int
  1615. expand_catch_default ()
  1616. {
  1617.   if (except_stack == 0)
  1618.     return 0;
  1619.   except_stack->data.except_stmt.handled = void_type_node;
  1620.   return 1;
  1621. }
  1622.  
  1623. int
  1624. expand_end_catch ()
  1625. {
  1626.   if (except_stack == 0 || except_stack->data.except_stmt.after_label == 0)
  1627.     return 0;
  1628.   expand_goto_internal (0, except_stack->data.except_stmt.after_label, 0);
  1629.   return 1;
  1630. }
  1631.  
  1632. /* Generate RTL for the start of an if-then.  COND is the expression
  1633.    whose truth should be tested.
  1634.  
  1635.    If EXITFLAG is nonzero, this conditional is visible to
  1636.    `exit_something'.  */
  1637.  
  1638. void
  1639. expand_start_cond (cond, exitflag)
  1640.      tree cond;
  1641.      int exitflag;
  1642. {
  1643.   struct nesting *thiscond = ALLOC_NESTING ();
  1644.  
  1645.   /* Make an entry on cond_stack for the cond we are entering.  */
  1646.  
  1647.   thiscond->next = cond_stack;
  1648.   thiscond->all = nesting_stack;
  1649.   thiscond->depth = ++nesting_depth;
  1650.   thiscond->data.cond.next_label = gen_label_rtx ();
  1651.   /* Before we encounter an `else', we don't need a separate exit label
  1652.      unless there are supposed to be exit statements
  1653.      to exit this conditional.  */
  1654.   thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
  1655.   thiscond->data.cond.endif_label = thiscond->exit_label;
  1656.   cond_stack = thiscond;
  1657.   nesting_stack = thiscond;
  1658.  
  1659.   do_jump (cond, thiscond->data.cond.next_label, NULL);
  1660. }
  1661.  
  1662. /* Generate RTL between then-clause and the elseif-clause
  1663.    of an if-then-elseif-....  */
  1664.  
  1665. void
  1666. expand_start_elseif (cond)
  1667.      tree cond;
  1668. {
  1669.   if (cond_stack->data.cond.endif_label == 0)
  1670.     cond_stack->data.cond.endif_label = gen_label_rtx ();
  1671.   emit_jump (cond_stack->data.cond.endif_label);
  1672.   emit_label (cond_stack->data.cond.next_label);
  1673.   cond_stack->data.cond.next_label = gen_label_rtx ();
  1674.   do_jump (cond, cond_stack->data.cond.next_label, NULL);
  1675. }
  1676.  
  1677. /* Generate RTL between the then-clause and the else-clause
  1678.    of an if-then-else.  */
  1679.  
  1680. void
  1681. expand_start_else ()
  1682. {
  1683.   if (cond_stack->data.cond.endif_label == 0)
  1684.     cond_stack->data.cond.endif_label = gen_label_rtx ();
  1685.   emit_jump (cond_stack->data.cond.endif_label);
  1686.   emit_label (cond_stack->data.cond.next_label);
  1687.   cond_stack->data.cond.next_label = 0;  /* No more _else or _elseif calls. */
  1688. }
  1689.  
  1690. /* Generate RTL for the end of an if-then.
  1691.    Pop the record for it off of cond_stack.  */
  1692.  
  1693. void
  1694. expand_end_cond ()
  1695. {
  1696.   struct nesting *thiscond = cond_stack;
  1697.  
  1698.   do_pending_stack_adjust ();
  1699.   if (thiscond->data.cond.next_label)
  1700.     emit_label (thiscond->data.cond.next_label);
  1701.   if (thiscond->data.cond.endif_label)
  1702.     emit_label (thiscond->data.cond.endif_label);
  1703.  
  1704.   POPSTACK (cond_stack);
  1705.   last_expr_type = 0;
  1706. }
  1707.  
  1708. /* Generate RTL for the start of a loop.  EXIT_FLAG is nonzero if this
  1709.    loop should be exited by `exit_something'.  This is a loop for which
  1710.    `expand_continue' will jump to the top of the loop.
  1711.  
  1712.    Make an entry on loop_stack to record the labels associated with
  1713.    this loop.  */
  1714.  
  1715. struct nesting *
  1716. expand_start_loop (exit_flag)
  1717.      int exit_flag;
  1718. {
  1719.   register struct nesting *thisloop = ALLOC_NESTING ();
  1720.  
  1721.   /* Make an entry on loop_stack for the loop we are entering.  */
  1722.  
  1723.   thisloop->next = loop_stack;
  1724.   thisloop->all = nesting_stack;
  1725.   thisloop->depth = ++nesting_depth;
  1726.   thisloop->data.loop.start_label = gen_label_rtx ();
  1727.   thisloop->data.loop.end_label = gen_label_rtx ();
  1728.   thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
  1729.   thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
  1730.   loop_stack = thisloop;
  1731.   nesting_stack = thisloop;
  1732.  
  1733.   do_pending_stack_adjust ();
  1734.   emit_queue ();
  1735.   emit_note (0, NOTE_INSN_LOOP_BEG);
  1736.   emit_label (thisloop->data.loop.start_label);
  1737.  
  1738.   return thisloop;
  1739. }
  1740.  
  1741. /* Like expand_start_loop but for a loop where the continuation point
  1742.    (for expand_continue_loop) will be specified explicitly.  */
  1743.  
  1744. struct nesting *
  1745. expand_start_loop_continue_elsewhere (exit_flag)
  1746.      int exit_flag;
  1747. {
  1748.   struct nesting *thisloop = expand_start_loop (exit_flag);
  1749.   loop_stack->data.loop.continue_label = gen_label_rtx ();
  1750.   return thisloop;
  1751. }
  1752.  
  1753. /* Specify the continuation point for a loop started with
  1754.    expand_start_loop_continue_elsewhere.
  1755.    Use this at the point in the code to which a continue statement
  1756.    should jump.  */
  1757.  
  1758. void
  1759. expand_loop_continue_here ()
  1760. {
  1761.   do_pending_stack_adjust ();
  1762.   emit_note (0, NOTE_INSN_LOOP_CONT);
  1763.   emit_label (loop_stack->data.loop.continue_label);
  1764. }
  1765.  
  1766. /* Finish a loop.  Generate a jump back to the top and the loop-exit label.
  1767.    Pop the block off of loop_stack.  */
  1768.  
  1769. void
  1770. expand_end_loop ()
  1771. {
  1772.   register rtx insn = get_last_insn ();
  1773.   register rtx start_label = loop_stack->data.loop.start_label;
  1774.   rtx last_test_insn = 0;
  1775.   int num_insns = 0;
  1776.  
  1777.   /* Mark the continue-point at the top of the loop if none elsewhere.  */
  1778.   if (start_label == loop_stack->data.loop.continue_label)
  1779.     emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
  1780.  
  1781.   do_pending_stack_adjust ();
  1782.  
  1783.   /* If optimizing, perhaps reorder the loop.  If the loop
  1784.      starts with a conditional exit, roll that to the end
  1785.      where it will optimize together with the jump back.
  1786.  
  1787.      We look for the last conditional branch to the exit that we encounter
  1788.      before hitting 30 insns or a CALL_INSN.  If we see an unconditional
  1789.      branch to the exit first, use it.
  1790.  
  1791.      We must also stop at NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes
  1792.      because moving them is not valid.  */
  1793.  
  1794.   if (optimize
  1795.       &&
  1796.       ! (GET_CODE (insn) == JUMP_INSN
  1797.      && GET_CODE (PATTERN (insn)) == SET
  1798.      && SET_DEST (PATTERN (insn)) == pc_rtx
  1799.      && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE))
  1800.     {
  1801.       /* Scan insns from the top of the loop looking for a qualified
  1802.      conditional exit.  */
  1803.       for (insn = NEXT_INSN (loop_stack->data.loop.start_label); insn;
  1804.        insn = NEXT_INSN (insn))
  1805.     {
  1806.       if (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == CODE_LABEL)
  1807.         break;
  1808.  
  1809.       if (GET_CODE (insn) == NOTE
  1810.           && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
  1811.           || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
  1812.         break;
  1813.  
  1814.       if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == INSN)
  1815.         num_insns++;
  1816.  
  1817.       if (last_test_insn && num_insns > 30)
  1818.         break;
  1819.  
  1820.       if (GET_CODE (insn) == JUMP_INSN && GET_CODE (PATTERN (insn)) == SET
  1821.           && SET_DEST (PATTERN (insn)) == pc_rtx
  1822.           && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE
  1823.           && ((GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == LABEL_REF
  1824.            && (XEXP (XEXP (SET_SRC (PATTERN (insn)), 1), 0)
  1825.                == loop_stack->data.loop.end_label))
  1826.           || (GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 2)) == LABEL_REF
  1827.               && (XEXP (XEXP (SET_SRC (PATTERN (insn)), 2), 0)
  1828.               == loop_stack->data.loop.end_label))))
  1829.         last_test_insn = insn;
  1830.  
  1831.       if (last_test_insn == 0 && GET_CODE (insn) == JUMP_INSN
  1832.           && GET_CODE (PATTERN (insn)) == SET
  1833.           && SET_DEST (PATTERN (insn)) == pc_rtx
  1834.           && GET_CODE (SET_SRC (PATTERN (insn))) == LABEL_REF
  1835.           && (XEXP (SET_SRC (PATTERN (insn)), 0)
  1836.           == loop_stack->data.loop.end_label))
  1837.         /* Include BARRIER.  */
  1838.         last_test_insn = NEXT_INSN (insn);
  1839.     }
  1840.  
  1841.       if (last_test_insn != 0 && last_test_insn != get_last_insn ())
  1842.     {
  1843.       /* We found one.  Move everything from there up
  1844.          to the end of the loop, and add a jump into the loop
  1845.          to jump to there.  */
  1846.       register rtx newstart_label = gen_label_rtx ();
  1847.       register rtx start_move = start_label;
  1848.  
  1849.       /* If the start label is preceeded by a NOTE_INSN_LOOP_CONT note,
  1850.          then we want to move this note also.  */
  1851.       if (GET_CODE (PREV_INSN (start_move)) == NOTE
  1852.           && (NOTE_LINE_NUMBER (PREV_INSN (start_move))
  1853.           == NOTE_INSN_LOOP_CONT))
  1854.         start_move = PREV_INSN (start_move);
  1855.  
  1856.       emit_label_after (newstart_label, PREV_INSN (start_move));
  1857.       reorder_insns (start_move, last_test_insn, get_last_insn ());
  1858.       emit_jump_insn_after (gen_jump (start_label),
  1859.                 PREV_INSN (newstart_label));
  1860.       emit_barrier_after (PREV_INSN (newstart_label));
  1861.       start_label = newstart_label;
  1862.     }
  1863.     }
  1864.  
  1865.   emit_jump (start_label);
  1866.   emit_note (0, NOTE_INSN_LOOP_END);
  1867.   emit_label (loop_stack->data.loop.end_label);
  1868.  
  1869.   POPSTACK (loop_stack);
  1870.  
  1871.   last_expr_type = 0;
  1872. }
  1873.  
  1874. /* Generate a jump to the current loop's continue-point.
  1875.    This is usually the top of the loop, but may be specified
  1876.    explicitly elsewhere.  If not currently inside a loop,
  1877.    return 0 and do nothing; caller will print an error message.  */
  1878.  
  1879. int
  1880. expand_continue_loop (whichloop)
  1881.      struct nesting *whichloop;
  1882. {
  1883.   last_expr_type = 0;
  1884.   if (whichloop == 0)
  1885.     whichloop = loop_stack;
  1886.   if (whichloop == 0)
  1887.     return 0;
  1888.   expand_goto_internal (0, whichloop->data.loop.continue_label, 0);
  1889.   return 1;
  1890. }
  1891.  
  1892. /* Generate a jump to exit the current loop.  If not currently inside a loop,
  1893.    return 0 and do nothing; caller will print an error message.  */
  1894.  
  1895. int
  1896. expand_exit_loop (whichloop)
  1897.      struct nesting *whichloop;
  1898. {
  1899.   last_expr_type = 0;
  1900.   if (whichloop == 0)
  1901.     whichloop = loop_stack;
  1902.   if (whichloop == 0)
  1903.     return 0;
  1904.   expand_goto_internal (0, whichloop->data.loop.end_label, 0);
  1905.   return 1;
  1906. }
  1907.  
  1908. /* Generate a conditional jump to exit the current loop if COND
  1909.    evaluates to zero.  If not currently inside a loop,
  1910.    return 0 and do nothing; caller will print an error message.  */
  1911.  
  1912. int
  1913. expand_exit_loop_if_false (whichloop, cond)
  1914.      struct nesting *whichloop;
  1915.      tree cond;
  1916. {
  1917.   last_expr_type = 0;
  1918.   if (whichloop == 0)
  1919.     whichloop = loop_stack;
  1920.   if (whichloop == 0)
  1921.     return 0;
  1922.   do_jump (cond, whichloop->data.loop.end_label, NULL);
  1923.   return 1;
  1924. }
  1925.  
  1926. /* Return non-zero if we should preserve sub-expressions as separate
  1927.    pseudos.  We never do so if we aren't optimizing.  We always do so
  1928.    if -fexpensive-optimizations.
  1929.  
  1930.    Otherwise, we only do so if we are in the "early" part of a loop.  I.e.,
  1931.    the loop may still be a small one.  */
  1932.  
  1933. int
  1934. preserve_subexpressions_p ()
  1935. {
  1936.   rtx insn;
  1937.  
  1938.   if (flag_expensive_optimizations)
  1939.     return 1;
  1940.  
  1941.   if (optimize == 0 || loop_stack == 0)
  1942.     return 0;
  1943.  
  1944.   insn = get_last_insn_anywhere ();
  1945.  
  1946.   return (insn
  1947.       && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
  1948.           < n_non_fixed_regs * 3));
  1949.  
  1950. }
  1951.  
  1952. /* Generate a jump to exit the current loop, conditional, binding contour
  1953.    or case statement.  Not all such constructs are visible to this function,
  1954.    only those started with EXIT_FLAG nonzero.  Individual languages use
  1955.    the EXIT_FLAG parameter to control which kinds of constructs you can
  1956.    exit this way.
  1957.  
  1958.    If not currently inside anything that can be exited,
  1959.    return 0 and do nothing; caller will print an error message.  */
  1960.  
  1961. int
  1962. expand_exit_something ()
  1963. {
  1964.   struct nesting *n;
  1965.   last_expr_type = 0;
  1966.   for (n = nesting_stack; n; n = n->all)
  1967.     if (n->exit_label != 0)
  1968.       {
  1969.     expand_goto_internal (0, n->exit_label, 0);
  1970.     return 1;
  1971.       }
  1972.  
  1973.   return 0;
  1974. }
  1975.  
  1976. /* Generate RTL to return from the current function, with no value.
  1977.    (That is, we do not do anything about returning any value.)  */
  1978.  
  1979. void
  1980. expand_null_return ()
  1981. {
  1982.   struct nesting *block = block_stack;
  1983.   rtx last_insn = 0;
  1984.  
  1985.   /* Does any pending block have cleanups?  */
  1986.  
  1987.   while (block && block->data.block.cleanups == 0)
  1988.     block = block->next;
  1989.  
  1990.   /* If yes, use a goto to return, since that runs cleanups.  */
  1991.  
  1992.   expand_null_return_1 (last_insn, block != 0);
  1993. }
  1994.  
  1995. /* Output a return with no value.  If LAST_INSN is nonzero,
  1996.    pretend that the return takes place after LAST_INSN.
  1997.    If USE_GOTO is nonzero then don't use a return instruction;
  1998.    go to the return label instead.  This causes any cleanups
  1999.    of pending blocks to be executed normally.  */
  2000.  
  2001. static void
  2002. expand_null_return_1 (last_insn, use_goto)
  2003.      rtx last_insn;
  2004.      int use_goto;
  2005. {
  2006.   rtx end_label = cleanup_label ? cleanup_label : return_label;
  2007.  
  2008.   clear_pending_stack_adjust ();
  2009.   do_pending_stack_adjust ();
  2010.   last_expr_type = 0;
  2011.  
  2012.   /* PCC-struct return always uses an epilogue.  */
  2013.   if (current_function_returns_pcc_struct || use_goto)
  2014.     {
  2015.       if (end_label == 0)
  2016.     end_label = return_label = gen_label_rtx ();
  2017.       expand_goto_internal (0, end_label, last_insn);
  2018.       return;
  2019.     }
  2020.  
  2021.   /* Otherwise output a simple return-insn if one is available,
  2022.      unless it won't do the job.  */
  2023. #ifdef HAVE_return
  2024.   if (HAVE_return && use_goto == 0 && cleanup_label == 0)
  2025.     {
  2026.       emit_jump_insn (gen_return ());
  2027.       emit_barrier ();
  2028.       return;
  2029.     }
  2030. #endif
  2031.  
  2032.   /* Otherwise jump to the epilogue.  */
  2033.   expand_goto_internal (0, end_label, last_insn);
  2034. }
  2035.  
  2036. /* Generate RTL to evaluate the expression RETVAL and return it
  2037.    from the current function.  */
  2038.  
  2039. void
  2040. expand_return (retval)
  2041.      tree retval;
  2042. {
  2043.   /* If there are any cleanups to be performed, then they will
  2044.      be inserted following LAST_INSN.  It is desirable
  2045.      that the last_insn, for such purposes, should be the
  2046.      last insn before computing the return value.  Otherwise, cleanups
  2047.      which call functions can clobber the return value.  */
  2048.   /* ??? rms: I think that is erroneous, because in C++ it would
  2049.      run destructors on variables that might be used in the subsequent
  2050.      computation of the return value.  */
  2051.   rtx last_insn = 0;
  2052.   register rtx val = 0;
  2053.   register rtx op0;
  2054.   tree retval_rhs;
  2055.   int cleanups;
  2056.   struct nesting *block;
  2057.  
  2058.   /* Are any cleanups needed?  E.g. C++ destructors to be run?  */
  2059.   cleanups = any_pending_cleanups (1);
  2060.  
  2061.   if (TREE_CODE (retval) == RESULT_DECL)
  2062.     retval_rhs = retval;
  2063.   else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
  2064.        && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
  2065.     retval_rhs = TREE_OPERAND (retval, 1);
  2066.   else if (TREE_TYPE (retval) == void_type_node)
  2067.     /* Recognize tail-recursive call to void function.  */
  2068.     retval_rhs = retval;
  2069.   else
  2070.     retval_rhs = NULL_TREE;
  2071.  
  2072.   /* Only use `last_insn' if there are cleanups which must be run.  */
  2073.   if (cleanups || cleanup_label != 0)
  2074.     last_insn = get_last_insn ();
  2075.  
  2076.   /* Distribute return down conditional expr if either of the sides
  2077.      may involve tail recursion (see test below).  This enhances the number
  2078.      of tail recursions we see.  Don't do this always since it can produce
  2079.      sub-optimal code in some cases and we distribute assignments into
  2080.      conditional expressions when it would help.  */
  2081.      
  2082.   if (optimize && retval_rhs != 0
  2083.       && frame_offset == 0
  2084.       && TREE_CODE (retval_rhs) == COND_EXPR
  2085.       && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
  2086.       || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
  2087.     {
  2088.       rtx label = gen_label_rtx ();
  2089.       do_jump (TREE_OPERAND (retval_rhs, 0), label, 0);
  2090.       expand_return (build (MODIFY_EXPR, TREE_TYPE (current_function_decl),
  2091.                 DECL_RESULT (current_function_decl),
  2092.                 TREE_OPERAND (retval_rhs, 1)));
  2093.       emit_label (label);
  2094.       expand_return (build (MODIFY_EXPR, TREE_TYPE (current_function_decl),
  2095.                 DECL_RESULT (current_function_decl),
  2096.                 TREE_OPERAND (retval_rhs, 2)));
  2097.       return;
  2098.     }
  2099.  
  2100.   /* For tail-recursive call to current function,
  2101.      just jump back to the beginning.
  2102.      It's unsafe if any auto variable in this function
  2103.      has its address taken; for simplicity,
  2104.      require stack frame to be empty.  */
  2105.   if (optimize && retval_rhs != 0
  2106.       && frame_offset == 0
  2107.       && TREE_CODE (retval_rhs) == CALL_EXPR
  2108.       && TREE_CODE (TREE_OPERAND (retval_rhs, 0)) == ADDR_EXPR
  2109.       && TREE_OPERAND (TREE_OPERAND (retval_rhs, 0), 0) == current_function_decl
  2110.       /* Finish checking validity, and if valid emit code
  2111.      to set the argument variables for the new call.  */
  2112.       && tail_recursion_args (TREE_OPERAND (retval_rhs, 1),
  2113.                   DECL_ARGUMENTS (current_function_decl)))
  2114.     {
  2115.       if (tail_recursion_label == 0)
  2116.     {
  2117.       tail_recursion_label = gen_label_rtx ();
  2118.       emit_label_after (tail_recursion_label,
  2119.                 tail_recursion_reentry);
  2120.     }
  2121.       expand_goto_internal (0, tail_recursion_label, last_insn);
  2122.       emit_barrier ();
  2123.       return;
  2124.     }
  2125. #ifdef HAVE_return
  2126.   /* This optimization is safe if there are local cleanups
  2127.      because expand_null_return takes care of them.
  2128.      ??? I think it should also be safe when there is a cleanup label,
  2129.      because expand_null_return takes care of them, too.
  2130.      Any reason why not?  */
  2131.   if (HAVE_return && cleanup_label == 0
  2132.       && ! current_function_returns_pcc_struct)
  2133.     {
  2134.       /* If this is  return x == y;  then generate
  2135.      if (x == y) return 1; else return 0;
  2136.      if we can do it with explicit return insns.  */
  2137.       if (retval_rhs)
  2138.     switch (TREE_CODE (retval_rhs))
  2139.       {
  2140.       case EQ_EXPR:
  2141.       case NE_EXPR:
  2142.       case GT_EXPR:
  2143.       case GE_EXPR:
  2144.       case LT_EXPR:
  2145.       case LE_EXPR:
  2146.       case TRUTH_ANDIF_EXPR:
  2147.       case TRUTH_ORIF_EXPR:
  2148.       case TRUTH_AND_EXPR:
  2149.       case TRUTH_OR_EXPR:
  2150.       case TRUTH_NOT_EXPR:
  2151.         op0 = gen_label_rtx ();
  2152.         val = DECL_RTL (DECL_RESULT (current_function_decl));
  2153.         jumpifnot (retval_rhs, op0);
  2154.         emit_move_insn (val, const1_rtx);
  2155.         emit_insn (gen_rtx (USE, VOIDmode, val));
  2156.         expand_null_return ();
  2157.         emit_label (op0);
  2158.         emit_move_insn (val, const0_rtx);
  2159.         emit_insn (gen_rtx (USE, VOIDmode, val));
  2160.         expand_null_return ();
  2161.         return;
  2162.       }
  2163.     }
  2164. #endif /* HAVE_return */
  2165.  
  2166.   if (cleanups
  2167.       && retval_rhs != 0
  2168.       && TREE_TYPE (retval_rhs) != void_type_node
  2169.       && GET_CODE (DECL_RTL (DECL_RESULT (current_function_decl))) == REG)
  2170.     {
  2171.       /* Calculate the return value into a pseudo reg.  */
  2172.       val = expand_expr (retval_rhs, 0, VOIDmode, 0);
  2173.       emit_queue ();
  2174.       /* Put the cleanups here.  */
  2175.       last_insn = get_last_insn ();
  2176.       /* Copy the value into hard return reg.  */
  2177.       emit_move_insn (DECL_RTL (DECL_RESULT (current_function_decl)), val);
  2178.       /* All temporaries have now been used.  */
  2179.       free_temp_slots ();
  2180.       val = DECL_RTL (DECL_RESULT (current_function_decl));
  2181.  
  2182.       if (GET_CODE (val) == REG && REGNO (val) < FIRST_PSEUDO_REGISTER)
  2183.     emit_insn (gen_rtx (USE, VOIDmode, val));
  2184.       expand_null_return_1 (last_insn, cleanups);
  2185.     }
  2186.   else
  2187.     {
  2188.       /* No cleanups or no hard reg used;
  2189.      calculate value into hard return reg
  2190.      and let cleanups come after.  */
  2191.       expand_expr (retval, 0, VOIDmode, 0);
  2192.       emit_queue ();
  2193.       free_temp_slots ();
  2194.  
  2195.       val = DECL_RTL (DECL_RESULT (current_function_decl));
  2196.       if (val && GET_CODE (val) == REG
  2197.       && REGNO (val) < FIRST_PSEUDO_REGISTER)
  2198.     emit_insn (gen_rtx (USE, VOIDmode, val));
  2199.       expand_null_return ();
  2200.     }
  2201. }
  2202.  
  2203. /* Return 1 if the end of the generated RTX is not a barrier.
  2204.    This means code already compiled can drop through.  */
  2205.  
  2206. int
  2207. drop_through_at_end_p ()
  2208. {
  2209.   rtx insn = get_last_insn ();
  2210.   while (insn && GET_CODE (insn) == NOTE)
  2211.     insn = PREV_INSN (insn);
  2212.   return insn && GET_CODE (insn) != BARRIER;
  2213. }
  2214.  
  2215. /* Emit code to alter this function's formal parms for a tail-recursive call.
  2216.    ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
  2217.    FORMALS is the chain of decls of formals.
  2218.    Return 1 if this can be done;
  2219.    otherwise return 0 and do not emit any code.  */
  2220.  
  2221. static int
  2222. tail_recursion_args (actuals, formals)
  2223.      tree actuals, formals;
  2224. {
  2225.   register tree a = actuals, f = formals;
  2226.   register int i;
  2227.   register rtx *argvec;
  2228.  
  2229.   /* Check that number and types of actuals are compatible
  2230.      with the formals.  This is not always true in valid C code.
  2231.      Also check that no formal needs to be addressable
  2232.      and that all formals are scalars.  */
  2233.  
  2234.   /* Also count the args.  */
  2235.  
  2236.   for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
  2237.     {
  2238.       if (TREE_TYPE (TREE_VALUE (a)) != TREE_TYPE (f))
  2239.     return 0;
  2240.       if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
  2241.     return 0;
  2242.     }
  2243.   if (a != 0 || f != 0)
  2244.     return 0;
  2245.  
  2246.   /* Compute all the actuals.  */
  2247.  
  2248.   argvec = (rtx *) alloca (i * sizeof (rtx));
  2249.  
  2250.   for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
  2251.     argvec[i] = expand_expr (TREE_VALUE (a), 0, VOIDmode, 0);
  2252.  
  2253.   /* Find which actual values refer to current values of previous formals.
  2254.      Copy each of them now, before any formal is changed.  */
  2255.  
  2256.   for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
  2257.     {
  2258.       int copy = 0;
  2259.       register int j;
  2260.       for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
  2261.     if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
  2262.       { copy = 1; break; }
  2263.       if (copy)
  2264.     argvec[i] = copy_to_reg (argvec[i]);
  2265.     }
  2266.  
  2267.   /* Store the values of the actuals into the formals.  */
  2268.  
  2269.   for (f = formals, a = actuals, i = 0; f;
  2270.        f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
  2271.     {
  2272.       if (DECL_MODE (f) == GET_MODE (argvec[i]))
  2273.     emit_move_insn (DECL_RTL (f), argvec[i]);
  2274.       else
  2275.     convert_move (DECL_RTL (f), argvec[i],
  2276.               TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
  2277.     }
  2278.  
  2279.   free_temp_slots ();
  2280.   return 1;
  2281. }
  2282.  
  2283. /* Generate the RTL code for entering a binding contour.
  2284.    The variables are declared one by one, by calls to `expand_decl'.
  2285.  
  2286.    EXIT_FLAG is nonzero if this construct should be visible to
  2287.    `exit_something'.  */
  2288.  
  2289. void
  2290. expand_start_bindings (exit_flag)
  2291.      int exit_flag;
  2292. {
  2293.   struct nesting *thisblock = ALLOC_NESTING ();
  2294.  
  2295.   rtx note = emit_note (0, NOTE_INSN_BLOCK_BEG);
  2296.  
  2297.   /* Make an entry on block_stack for the block we are entering.  */
  2298.  
  2299.   thisblock->next = block_stack;
  2300.   thisblock->all = nesting_stack;
  2301.   thisblock->depth = ++nesting_depth;
  2302.   thisblock->data.block.stack_level = 0;
  2303.   thisblock->data.block.cleanups = 0;
  2304.   thisblock->data.block.function_call_count = 0;
  2305. #if 0
  2306.   if (block_stack)
  2307.     {
  2308.       if (block_stack->data.block.cleanups == NULL_TREE
  2309.       && (block_stack->data.block.outer_cleanups == NULL_TREE
  2310.           || block_stack->data.block.outer_cleanups == empty_cleanup_list))
  2311.     thisblock->data.block.outer_cleanups = empty_cleanup_list;
  2312.       else
  2313.     thisblock->data.block.outer_cleanups
  2314.        = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
  2315.                block_stack->data.block.outer_cleanups);
  2316.     }
  2317.   else
  2318.     thisblock->data.block.outer_cleanups = 0;
  2319. #endif
  2320. #if 1
  2321.   if (block_stack
  2322.       && !(block_stack->data.block.cleanups == NULL_TREE
  2323.        && block_stack->data.block.outer_cleanups == NULL_TREE))
  2324.     thisblock->data.block.outer_cleanups
  2325.       = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
  2326.            block_stack->data.block.outer_cleanups);
  2327.   else
  2328.     thisblock->data.block.outer_cleanups = 0;
  2329. #endif
  2330.   thisblock->data.block.label_chain = 0;
  2331.   thisblock->data.block.innermost_stack_block = stack_block_stack;
  2332.   thisblock->data.block.first_insn = note;
  2333.   thisblock->data.block.block_start_count = ++block_start_count;
  2334.   thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
  2335.   block_stack = thisblock;
  2336.   nesting_stack = thisblock;
  2337.  
  2338.   /* Make a new level for allocating stack slots.  */
  2339.   push_temp_slots ();
  2340. }
  2341.  
  2342. /* Generate RTL code to terminate a binding contour.
  2343.    VARS is the chain of VAR_DECL nodes
  2344.    for the variables bound in this contour.
  2345.    MARK_ENDS is nonzero if we should put a note at the beginning
  2346.    and end of this binding contour.
  2347.  
  2348.    DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
  2349.    (That is true automatically if the contour has a saved stack level.)  */
  2350.  
  2351. void
  2352. expand_end_bindings (vars, mark_ends, dont_jump_in)
  2353.      tree vars;
  2354.      int mark_ends;
  2355.      int dont_jump_in;
  2356. {
  2357.   register struct nesting *thisblock = block_stack;
  2358.   register tree decl;
  2359.  
  2360.   if (warn_unused)
  2361.     for (decl = vars; decl; decl = TREE_CHAIN (decl))
  2362.       if (! TREE_USED (decl) && TREE_CODE (decl) == VAR_DECL)
  2363.     warning_with_decl (decl, "unused variable `%s'");
  2364.  
  2365.   /* Mark the beginning and end of the scope if requested.  */
  2366.  
  2367.   if (mark_ends)
  2368.     emit_note (0, NOTE_INSN_BLOCK_END);
  2369.   else
  2370.     /* Get rid of the beginning-mark if we don't make an end-mark.  */
  2371.     NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
  2372.  
  2373.   if (thisblock->exit_label)
  2374.     {
  2375.       do_pending_stack_adjust ();
  2376.       emit_label (thisblock->exit_label);
  2377.     }
  2378.  
  2379.   /* If necessary, make a handler for nonlocal gotos taking
  2380.      place in the function calls in this block.  */
  2381.   if (function_call_count != thisblock->data.block.function_call_count
  2382.       && nonlocal_labels
  2383.       /* Make handler for outermost block
  2384.      if there were any nonlocal gotos to this function.  */
  2385.       && (thisblock->next == 0 ? current_function_has_nonlocal_label
  2386.       /* Make handler for inner block if it has something
  2387.          special to do when you jump out of it.  */
  2388.       : (thisblock->data.block.cleanups != 0
  2389.          || thisblock->data.block.stack_level != 0)))
  2390.     {
  2391.       tree link;
  2392.       rtx afterward = gen_label_rtx ();
  2393.       rtx handler_label = gen_label_rtx ();
  2394.       rtx save_receiver = gen_reg_rtx (Pmode);
  2395.  
  2396.       /* Don't let jump_optimize delete the handler.  */
  2397.       LABEL_PRESERVE_P (handler_label) = 1;
  2398.  
  2399.       /* Record the handler address in the stack slot for that purpose,
  2400.      during this block, saving and restoring the outer value.  */
  2401.       if (thisblock->next != 0)
  2402.     {
  2403.       emit_move_insn (nonlocal_goto_handler_slot, save_receiver);
  2404.       emit_insn_before (gen_move_insn (save_receiver,
  2405.                        nonlocal_goto_handler_slot),
  2406.                 thisblock->data.block.first_insn);
  2407.     }
  2408.       emit_insn_before (gen_move_insn (nonlocal_goto_handler_slot,
  2409.                        gen_rtx (LABEL_REF, Pmode,
  2410.                         handler_label)),
  2411.             thisblock->data.block.first_insn);
  2412.  
  2413.       /* Jump around the handler; it runs only when specially invoked.  */
  2414.       emit_jump (afterward);
  2415.       emit_label (handler_label);
  2416.  
  2417.       /* First adjust our frame pointer to its actual value.  It was
  2418.      previously set to the start of the virtual area corresponding to
  2419.      the stacked variables when we branched here and now needs to be
  2420.      adjusted to the actual hardware fp value.
  2421.  
  2422.      Assignments are to virtual registers are converted by
  2423.      instantiate_virtual_regs into the corresponding assignment
  2424.      to the underlying register (fp in this case) that makes
  2425.      the original assignment true.  So the following insn will actually be
  2426.      decrementing fp by STARTING_FRAME_OFFSET.  */
  2427.       emit_move_insn (virtual_stack_vars_rtx, frame_pointer_rtx);
  2428.  
  2429. #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
  2430.       /* Now restore our arg pointer from the address at which it was saved
  2431.      in our stack frame.  If there hasn't be space allocated for it yet,
  2432.      make some now.  */
  2433.       if (arg_pointer_save_area == 0)
  2434.     arg_pointer_save_area = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
  2435.       emit_move_insn (arg_pointer_rtx, arg_pointer_save_area);
  2436. #endif
  2437.  
  2438.       /* The handler expects the desired label address in the static chain
  2439.      register.  It tests the address and does an appropriate jump
  2440.      to whatever label is desired.  */
  2441.       for (link = nonlocal_labels; link; link = TREE_CHAIN (link))
  2442.     /* Skip any labels we shouldn't be able to jump to from here.  */
  2443.     if (! DECL_TOO_LATE (TREE_VALUE (link)))
  2444.       {
  2445.         rtx not_this = gen_label_rtx ();
  2446.         rtx this = gen_label_rtx ();
  2447.         do_jump_if_equal (static_chain_rtx,
  2448.                   gen_rtx (LABEL_REF, Pmode, DECL_RTL (TREE_VALUE (link))),
  2449.                   this, 0);
  2450.         emit_jump (not_this);
  2451.         emit_label (this);
  2452.         expand_goto (TREE_VALUE (link));
  2453.         emit_label (not_this);
  2454.       }
  2455.       /* If label is not recognized, abort.  */
  2456.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "abort"), 0,
  2457.              SImode, 0);
  2458.       emit_label (afterward);
  2459.     }
  2460.  
  2461.   /* Don't allow jumping into a block that has cleanups or a stack level.  */
  2462.   if (dont_jump_in
  2463.       || thisblock->data.block.stack_level != 0
  2464.       || thisblock->data.block.cleanups != 0)
  2465.     {
  2466.       struct label_chain *chain;
  2467.  
  2468.       /* Any labels in this block are no longer valid to go to.
  2469.      Mark them to cause an error message.  */
  2470.       for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
  2471.     {
  2472.       DECL_TOO_LATE (chain->label) = 1;
  2473.       /* If any goto without a fixup came to this label,
  2474.          that must be an error, because gotos without fixups
  2475.          come from outside all saved stack-levels and all cleanups.  */
  2476.       if (TREE_ADDRESSABLE (chain->label))
  2477.         error_with_decl (chain->label,
  2478.                  "label `%s' used before containing binding contour");
  2479.     }
  2480.     }
  2481.  
  2482.   /* Restore stack level in effect before the block
  2483.      (only if variable-size objects allocated).  */
  2484.   /* Perform any cleanups associated with the block.  */
  2485.  
  2486.   if (thisblock->data.block.stack_level != 0
  2487.       || thisblock->data.block.cleanups != 0)
  2488.     {
  2489.       /* Don't let cleanups affect ({...}) constructs.  */
  2490.       int old_expr_stmts_for_value = expr_stmts_for_value;
  2491.       rtx old_last_expr_value = last_expr_value;
  2492.       tree old_last_expr_type = last_expr_type;
  2493.       expr_stmts_for_value = 0;
  2494.  
  2495.       /* Do the cleanups.  */
  2496.       expand_cleanups (thisblock->data.block.cleanups, 0);
  2497.       do_pending_stack_adjust ();
  2498.  
  2499.       expr_stmts_for_value = old_expr_stmts_for_value;
  2500.       last_expr_value = old_last_expr_value;
  2501.       last_expr_type = old_last_expr_type;
  2502.  
  2503.       /* Restore the stack level.  */
  2504.  
  2505.       if (thisblock->data.block.stack_level != 0)
  2506.     {
  2507.       emit_move_insn (stack_pointer_rtx,
  2508.               thisblock->data.block.stack_level);
  2509.       if (nonlocal_goto_stack_level != 0)
  2510.         emit_move_insn (nonlocal_goto_stack_level, stack_pointer_rtx);
  2511.     }
  2512.  
  2513.       /* Any gotos out of this block must also do these things.
  2514.      Also report any gotos with fixups that came to labels in this level.  */
  2515.       fixup_gotos (thisblock,
  2516.            thisblock->data.block.stack_level,
  2517.            thisblock->data.block.cleanups,
  2518.            thisblock->data.block.first_insn,
  2519.            dont_jump_in);
  2520.     }
  2521.  
  2522.   /* If doing stupid register allocation, make sure lives of all
  2523.      register variables declared here extend thru end of scope.  */
  2524.  
  2525.   if (obey_regdecls)
  2526.     for (decl = vars; decl; decl = TREE_CHAIN (decl))
  2527.       {
  2528.     rtx rtl = DECL_RTL (decl);
  2529.     if (TREE_CODE (decl) == VAR_DECL && rtl != 0)
  2530.       use_variable (rtl);
  2531.       }
  2532.  
  2533.   /* Restore block_stack level for containing block.  */
  2534.  
  2535.   stack_block_stack = thisblock->data.block.innermost_stack_block;
  2536.   POPSTACK (block_stack);
  2537.  
  2538.   /* Pop the stack slot nesting and free any slots at this level.  */
  2539.   pop_temp_slots ();
  2540. }
  2541.  
  2542. /* Generate RTL for the automatic variable declaration DECL.
  2543.    (Other kinds of declarations are simply ignored if seen here.)
  2544.    CLEANUP is an expression to be executed at exit from this binding contour;
  2545.    for example, in C++, it might call the destructor for this variable.
  2546.  
  2547.    If CLEANUP contains any SAVE_EXPRs, then you must preevaluate them
  2548.    either before or after calling `expand_decl' but before compiling
  2549.    any subsequent expressions.  This is because CLEANUP may be expanded
  2550.    more than once, on different branches of execution.
  2551.    For the same reason, CLEANUP may not contain a CALL_EXPR
  2552.    except as its topmost node--else `preexpand_calls' would get confused.
  2553.  
  2554.    If CLEANUP is nonzero and DECL is zero, we record a cleanup
  2555.    that is not associated with any particular variable.
  2556.  
  2557.    There is no special support here for C++ constructors.
  2558.    They should be handled by the proper code in DECL_INITIAL.  */
  2559.  
  2560. void
  2561. expand_decl (decl)
  2562.      register tree decl;
  2563. {
  2564.   struct nesting *thisblock = block_stack;
  2565.   tree type = TREE_TYPE (decl);
  2566.  
  2567.   /* Only automatic variables need any expansion done.
  2568.      Static and external variables, and external functions,
  2569.      will be handled by `assemble_variable' (called from finish_decl).
  2570.      TYPE_DECL and CONST_DECL require nothing.
  2571.      PARM_DECLs are handled in `assign_parms'.  */
  2572.  
  2573.   if (TREE_CODE (decl) != VAR_DECL)
  2574.     return;
  2575.   if (TREE_STATIC (decl) || TREE_EXTERNAL (decl))
  2576.     return;
  2577.  
  2578.   /* Create the RTL representation for the variable.  */
  2579.  
  2580.   if (type == error_mark_node)
  2581.     DECL_RTL (decl) = gen_rtx (MEM, BLKmode, const0_rtx);
  2582.   else if (DECL_SIZE (decl) == 0)
  2583.     /* Variable with incomplete type.  */
  2584.     {
  2585.       if (DECL_INITIAL (decl) == 0)
  2586.     /* Error message was already done; now avoid a crash.  */
  2587.     DECL_RTL (decl) = assign_stack_temp (DECL_MODE (decl), 0, 1);
  2588.       else
  2589.     /* An initializer is going to decide the size of this array.
  2590.        Until we know the size, represent its address with a reg.  */
  2591.     DECL_RTL (decl) = gen_rtx (MEM, BLKmode, gen_reg_rtx (Pmode));
  2592.     }
  2593.   else if (DECL_MODE (decl) != BLKmode
  2594.        /* If -ffloat-store, don't put explicit float vars
  2595.           into regs.  */
  2596.        && !(flag_float_store
  2597.         && TREE_CODE (type) == REAL_TYPE)
  2598.        && ! TREE_THIS_VOLATILE (decl)
  2599.        && ! TREE_ADDRESSABLE (decl)
  2600.        && (TREE_REGDECL (decl) || ! obey_regdecls))
  2601.     {
  2602.       /* Automatic variable that can go in a register.  */
  2603.       DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
  2604.       if (TREE_CODE (type) == POINTER_TYPE)
  2605.     mark_reg_pointer (DECL_RTL (decl));
  2606.       REG_USERVAR_P (DECL_RTL (decl)) = 1;
  2607.     }
  2608.   else if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
  2609.     {
  2610.       /* Variable of fixed size that goes on the stack.  */
  2611.       rtx oldaddr = 0;
  2612.       rtx addr;
  2613.  
  2614.       /* If we previously made RTL for this decl, it must be an array
  2615.      whose size was determined by the initializer.
  2616.      The old address was a register; set that register now
  2617.      to the proper address.  */
  2618.       if (DECL_RTL (decl) != 0)
  2619.     {
  2620.       if (GET_CODE (DECL_RTL (decl)) != MEM
  2621.           || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
  2622.         abort ();
  2623.       oldaddr = XEXP (DECL_RTL (decl), 0);
  2624.     }
  2625.  
  2626.       DECL_RTL (decl)
  2627.     = assign_stack_temp (DECL_MODE (decl),
  2628.                  ((TREE_INT_CST_LOW (DECL_SIZE (decl))
  2629.                    + BITS_PER_UNIT - 1)
  2630.                   / BITS_PER_UNIT),
  2631.                  1);
  2632.  
  2633.       /* Set alignment we actually gave this decl.  */
  2634.       DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
  2635.                : GET_MODE_BITSIZE (DECL_MODE (decl)));
  2636.  
  2637.       if (oldaddr)
  2638.     {
  2639.       addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
  2640.       if (addr != oldaddr)
  2641.         emit_move_insn (oldaddr, addr);
  2642.     }
  2643.  
  2644.       /* If this is a memory ref that contains aggregate components,
  2645.      mark it as such for cse and loop optimize.  */
  2646.       MEM_IN_STRUCT_P (DECL_RTL (decl))
  2647.     = (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
  2648.        || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
  2649.        || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE);
  2650. #if 0
  2651.       /* If this is in memory because of -ffloat-store,
  2652.      set the volatile bit, to prevent optimizations from
  2653.      undoing the effects.  */
  2654.       if (flag_float_store && TREE_CODE (type) == REAL_TYPE)
  2655.     MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
  2656. #endif
  2657.     }
  2658.   else
  2659.     /* Dynamic-size object: must push space on the stack.  */
  2660.     {
  2661.       rtx address, size;
  2662.  
  2663.       /* Record the stack pointer on entry to block, if have
  2664.      not already done so.  */
  2665.       if (thisblock->data.block.stack_level == 0)
  2666.     {
  2667.       do_pending_stack_adjust ();
  2668.       thisblock->data.block.stack_level
  2669.         = copy_to_reg (stack_pointer_rtx);
  2670.       stack_block_stack = thisblock;
  2671.     }
  2672.  
  2673.       /* Compute the variable's size, in bytes.  */
  2674.       size = expand_expr (size_binop (CEIL_DIV_EXPR,
  2675.                       DECL_SIZE (decl),
  2676.                       size_int (BITS_PER_UNIT)),
  2677.               0, VOIDmode, 0);
  2678.       free_temp_slots ();
  2679.  
  2680.       /* Allocate space on the stack for the variable.  */
  2681.       address = allocate_dynamic_stack_space (size, 0);
  2682.  
  2683.       if (nonlocal_goto_stack_level != 0)
  2684.     emit_move_insn (nonlocal_goto_stack_level, stack_pointer_rtx);
  2685.  
  2686.       /* Reference the variable indirect through that rtx.  */
  2687.       DECL_RTL (decl) = gen_rtx (MEM, DECL_MODE (decl), address);
  2688.  
  2689.       /* Indicate the alignment we actually gave this variable.  */
  2690. #ifdef STACK_BOUNDARY
  2691.       DECL_ALIGN (decl) = STACK_BOUNDARY;
  2692. #else
  2693.       DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
  2694. #endif
  2695.     }
  2696.  
  2697.   if (TREE_THIS_VOLATILE (decl))
  2698.     MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
  2699.   if (TREE_READONLY (decl))
  2700.     RTX_UNCHANGING_P (DECL_RTL (decl)) = 1;
  2701.  
  2702.   /* If doing stupid register allocation, make sure life of any
  2703.      register variable starts here, at the start of its scope.  */
  2704.  
  2705.   if (obey_regdecls)
  2706.     use_variable (DECL_RTL (decl));
  2707. }
  2708.  
  2709. /* Emit code to perform the initialization of a declaration DECL.  */
  2710.  
  2711. void
  2712. expand_decl_init (decl)
  2713.      tree decl;
  2714. {
  2715.   if (TREE_STATIC (decl))
  2716.     return;
  2717.  
  2718.   /* Compute and store the initial value now.  */
  2719.  
  2720.   if (DECL_INITIAL (decl) == error_mark_node)
  2721.     {
  2722.       enum tree_code code = TREE_CODE (TREE_TYPE (decl));
  2723.       if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
  2724.       || code == POINTER_TYPE)
  2725.     expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
  2726.                0, 0);
  2727.       emit_queue ();
  2728.     }
  2729.   else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
  2730.     {
  2731.       emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
  2732.       expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
  2733.       emit_queue ();
  2734.     }
  2735.  
  2736.   /* Free any temporaries we made while initializing the decl.  */
  2737.   free_temp_slots ();
  2738. }
  2739.  
  2740. /* CLEANUP is an expression to be executed at exit from this binding contour;
  2741.    for example, in C++, it might call the destructor for this variable.
  2742.  
  2743.    If CLEANUP contains any SAVE_EXPRs, then you must preevaluate them
  2744.    either before or after calling `expand_decl' but before compiling
  2745.    any subsequent expressions.  This is because CLEANUP may be expanded
  2746.    more than once, on different branches of execution.
  2747.    For the same reason, CLEANUP may not contain a CALL_EXPR
  2748.    except as its topmost node--else `preexpand_calls' would get confused.
  2749.  
  2750.    If CLEANUP is nonzero and DECL is zero, we record a cleanup
  2751.    that is not associated with any particular variable.   */
  2752.  
  2753. int
  2754. expand_decl_cleanup (decl, cleanup)
  2755. {
  2756.   struct nesting *thisblock = block_stack;
  2757.  
  2758.   /* Error if we are not in any block.  */
  2759.   if (thisblock == 0)
  2760.     return 0;
  2761.  
  2762.   /* Record the cleanup if there is one.  */
  2763.  
  2764.   if (cleanup != 0)
  2765.     {
  2766.       thisblock->data.block.cleanups
  2767.     = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
  2768.       /* If this block has a cleanup, it belongs in stack_block_stack.  */
  2769.       stack_block_stack = thisblock;
  2770.     }
  2771.   return 1;
  2772. }
  2773.  
  2774. /* DECL is an anonymous union.  CLEANUP is a cleanup for DECL.
  2775.    DECL_ELTS is the list of elements that belong to DECL's type.
  2776.    In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup.  */
  2777.  
  2778. void
  2779. expand_anon_union_decl (decl, cleanup, decl_elts)
  2780.      tree decl, cleanup, decl_elts;
  2781. {
  2782.   struct nesting *thisblock = block_stack;
  2783.   rtx x;
  2784.  
  2785.   expand_decl (decl, cleanup);
  2786.   x = DECL_RTL (decl);
  2787.  
  2788.   while (decl_elts)
  2789.     {
  2790.       tree decl_elt = TREE_VALUE (decl_elts);
  2791.       tree cleanup_elt = TREE_PURPOSE (decl_elts);
  2792.  
  2793.       /* (SUBREG (MEM ...)) at RTL generation time is invalid!  */
  2794.       if (GET_MODE (x) != BLKmode && GET_CODE (x) != REG)
  2795.     abort ();
  2796.  
  2797.       DECL_RTL (decl_elt)
  2798.     = (GET_MODE (x) != BLKmode
  2799.        ? gen_rtx (SUBREG, TYPE_MODE (TREE_TYPE (decl_elt)), x, 0)
  2800.        : x);
  2801.  
  2802.       /* Record the cleanup if there is one.  */
  2803.  
  2804.       if (cleanup != 0)
  2805.     thisblock->data.block.cleanups
  2806.       = temp_tree_cons (decl_elt, cleanup_elt,
  2807.                 thisblock->data.block.cleanups);
  2808.  
  2809.       decl_elts = TREE_CHAIN (decl_elts);
  2810.     }
  2811. }
  2812.  
  2813. /* Expand a list of cleanups LIST.
  2814.    Elements may be expressions or may be nested lists.
  2815.  
  2816.    If DONT_DO is nonnull, then any list-element
  2817.    whose TREE_PURPOSE matches DONT_DO is omitted.
  2818.    This is sometimes used to avoid a cleanup associated with
  2819.    a value that is being returned out of the scope.  */
  2820.  
  2821. static void
  2822. expand_cleanups (list, dont_do)
  2823.      tree list;
  2824.      tree dont_do;
  2825. {
  2826.   tree tail;
  2827.   for (tail = list; tail; tail = TREE_CHAIN (tail))
  2828.     if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
  2829.       {
  2830.     if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
  2831.       expand_cleanups (TREE_VALUE (tail), dont_do);
  2832.     else
  2833.       {
  2834.         /* Cleanups may be run multiple times.  For example,
  2835.            when exiting a binding contour, we expand the
  2836.            cleanups associated with that contour.  When a goto
  2837.            within that binding contour has a target outside that
  2838.            contour, it will expand all cleanups from its scope to
  2839.            the target.  Though the cleanups are expanded multiple
  2840.            times, the control paths are non-overlapping so the
  2841.            cleanups will not be executed twice.  */
  2842.         expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
  2843.         free_temp_slots ();
  2844.       }
  2845.       }
  2846. }
  2847.  
  2848. /* Expand a list of cleanups for a goto fixup.
  2849.    The expansion is put into the insn chain after the insn *BEFORE_JUMP
  2850.    and *BEFORE_JUMP is set to the insn that now comes before the jump.  */
  2851.  
  2852. static void
  2853. fixup_cleanups (list, before_jump)
  2854.      tree list;
  2855.      rtx *before_jump;
  2856. {
  2857.   rtx beyond_jump = get_last_insn ();
  2858.   rtx new_before_jump;
  2859.  
  2860.   expand_cleanups (list, 0);
  2861.   /* Pop any pushes done in the cleanups,
  2862.      in case function is about to return.  */
  2863.   do_pending_stack_adjust ();
  2864.  
  2865.   new_before_jump = get_last_insn ();
  2866.  
  2867.   if (beyond_jump != new_before_jump)
  2868.     {
  2869.       /* If cleanups expand to nothing, don't reorder.  */
  2870.       reorder_insns (NEXT_INSN (beyond_jump), new_before_jump, *before_jump);
  2871.       *before_jump = new_before_jump;
  2872.     }
  2873. }
  2874.  
  2875. /* Move all cleanups from the current block_stack
  2876.    to the containing block_stack, where they are assumed to
  2877.    have been created.  If anything can cause a temporary to
  2878.    be created, but not expanded for more than one level of
  2879.    block_stacks, then this code will have to change.  */
  2880.  
  2881. void
  2882. move_cleanups_up ()
  2883. {
  2884.   struct nesting *block = block_stack;
  2885.   struct nesting *outer = block->next;
  2886.  
  2887.   outer->data.block.cleanups
  2888.     = chainon (block->data.block.cleanups,
  2889.            outer->data.block.cleanups);
  2890.   block->data.block.cleanups = 0;
  2891. }
  2892.  
  2893. int
  2894. this_contour_has_cleanups_p ()
  2895. {
  2896.   return block_stack && block_stack->data.block.cleanups != 0;
  2897. }
  2898.  
  2899. /* Return 1 if there are any pending cleanups at this point.
  2900.    If THIS_CONTOUR is nonzero, check the current contour as well.
  2901.    Otherwise, look only at the contours that enclose this one.  */
  2902.  
  2903. int
  2904. any_pending_cleanups (this_contour)
  2905.      int this_contour;
  2906. {
  2907.   struct nesting *block;
  2908.  
  2909.   if (block_stack == 0)
  2910.     return 0;
  2911.  
  2912.   if (this_contour && block_stack->data.block.cleanups != NULL)
  2913.     return 1;
  2914.   if (block_stack->data.block.cleanups == 0
  2915.       && (block_stack->data.block.outer_cleanups == 0
  2916. #if 0
  2917.       || block_stack->data.block.outer_cleanups == empty_cleanup_list
  2918. #endif
  2919.       ))
  2920.     return 0;
  2921.  
  2922.   for (block = block_stack->next; block; block = block->next)
  2923.     if (block->data.block.cleanups != 0)
  2924.       return 1;
  2925.  
  2926.   return 0;
  2927. }
  2928.  
  2929. /* Enter a case (Pascal) or switch (C) statement.
  2930.    Push a block onto case_stack and nesting_stack
  2931.    to accumulate the case-labels that are seen
  2932.    and to record the labels generated for the statement.
  2933.  
  2934.    EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
  2935.    Otherwise, this construct is transparent for `exit_something'.
  2936.  
  2937.    EXPR is the index-expression to be dispatched on.
  2938.    TYPE is its nominal type.  We could simply convert EXPR to this type,
  2939.    but instead we take short cuts.  */
  2940.  
  2941. void
  2942. expand_start_case (exit_flag, expr, type, printname)
  2943.      int exit_flag;
  2944.      tree expr;
  2945.      tree type;
  2946.      char *printname;
  2947. {
  2948.   register struct nesting *thiscase = ALLOC_NESTING ();
  2949.  
  2950.   /* Make an entry on case_stack for the case we are entering.  */
  2951.  
  2952.   thiscase->next = case_stack;
  2953.   thiscase->all = nesting_stack;
  2954.   thiscase->depth = ++nesting_depth;
  2955.   thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
  2956.   thiscase->data.case_stmt.case_list = 0;
  2957.   thiscase->data.case_stmt.index_expr = expr;
  2958.   thiscase->data.case_stmt.nominal_type = type;
  2959.   thiscase->data.case_stmt.default_label = 0;
  2960.   thiscase->data.case_stmt.num_ranges = 0;
  2961.   thiscase->data.case_stmt.printname = printname;
  2962.   thiscase->data.case_stmt.seenlabel = 0;
  2963.   case_stack = thiscase;
  2964.   nesting_stack = thiscase;
  2965.  
  2966.   do_pending_stack_adjust ();
  2967.  
  2968.   /* Make sure case_stmt.start points to something that won't
  2969.      need any transformation before expand_end_case.  */
  2970.   if (GET_CODE (get_last_insn ()) != NOTE)
  2971.     emit_note (0, NOTE_INSN_DELETED);
  2972.  
  2973.   thiscase->data.case_stmt.start = get_last_insn ();
  2974. }
  2975.  
  2976. /* Start a "dummy case statement" within which case labels are invalid
  2977.    and are not connected to any larger real case statement.
  2978.    This can be used if you don't want to let a case statement jump
  2979.    into the middle of certain kinds of constructs.  */
  2980.  
  2981. void
  2982. expand_start_case_dummy ()
  2983. {
  2984.   register struct nesting *thiscase = ALLOC_NESTING ();
  2985.  
  2986.   /* Make an entry on case_stack for the dummy.  */
  2987.  
  2988.   thiscase->next = case_stack;
  2989.   thiscase->all = nesting_stack;
  2990.   thiscase->depth = ++nesting_depth;
  2991.   thiscase->exit_label = 0;
  2992.   thiscase->data.case_stmt.case_list = 0;
  2993.   thiscase->data.case_stmt.start = 0;
  2994.   thiscase->data.case_stmt.nominal_type = 0;
  2995.   thiscase->data.case_stmt.default_label = 0;
  2996.   thiscase->data.case_stmt.num_ranges = 0;
  2997.   case_stack = thiscase;
  2998.   nesting_stack = thiscase;
  2999. }
  3000.  
  3001. /* End a dummy case statement.  */
  3002.  
  3003. void
  3004. expand_end_case_dummy ()
  3005. {
  3006.   POPSTACK (case_stack);
  3007. }
  3008.  
  3009. /* Return the data type of the index-expression
  3010.    of the innermost case statement, or null if none.  */
  3011.  
  3012. tree
  3013. case_index_expr_type ()
  3014. {
  3015.   if (case_stack)
  3016.     return TREE_TYPE (case_stack->data.case_stmt.index_expr);
  3017.   return 0;
  3018. }
  3019.  
  3020. /* Accumulate one case or default label inside a case or switch statement.
  3021.    VALUE is the value of the case (a null pointer, for a default label).
  3022.  
  3023.    If not currently inside a case or switch statement, return 1 and do
  3024.    nothing.  The caller will print a language-specific error message.
  3025.    If VALUE is a duplicate or overlaps, return 2 and do nothing.
  3026.    If VALUE is out of range, return 3 and do nothing.
  3027.    Return 0 on success.
  3028.  
  3029.    Extended to handle range statements.  */
  3030.  
  3031. int
  3032. pushcase (value, label)
  3033.      register tree value;
  3034.      register tree label;
  3035. {
  3036.   register struct case_node **l;
  3037.   register struct case_node *n;
  3038.   tree index_type;
  3039.   tree nominal_type;
  3040.  
  3041.   /* Fail if not inside a real case statement.  */
  3042.   if (! (case_stack && case_stack->data.case_stmt.start))
  3043.     return 1;
  3044.  
  3045.   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
  3046.   nominal_type = case_stack->data.case_stmt.nominal_type;
  3047.  
  3048.   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
  3049.   if (index_type == error_mark_node)
  3050.     return 0;
  3051.  
  3052.   /* Convert VALUE to the type in which the comparisons are nominally done.  */
  3053.   if (value != 0)
  3054.     value = convert (nominal_type, value);
  3055.  
  3056.   /* If this is the first label, warn if any insns have been emitted.  */
  3057.   if (case_stack->data.case_stmt.seenlabel == 0)
  3058.     {
  3059.       rtx insn;
  3060.       for (insn = case_stack->data.case_stmt.start;
  3061.        insn;
  3062.        insn = NEXT_INSN (insn))
  3063.     {
  3064.       if (GET_CODE (insn) == CODE_LABEL)
  3065.         break;
  3066.       if (GET_CODE (insn) != NOTE)
  3067.         {
  3068.           warning ("unreachable code at beginning of %s",
  3069.                case_stack->data.case_stmt.printname);
  3070.           break;
  3071.         }
  3072.     }
  3073.     }
  3074.   case_stack->data.case_stmt.seenlabel = 1;
  3075.  
  3076.   /* Fail if this value is out of range for the actual type of the index
  3077.      (which may be narrower than NOMINAL_TYPE).  */
  3078.   if (value != 0 && ! int_fits_type_p (value, index_type))
  3079.     return 3;
  3080.  
  3081.   /* Fail if this is a duplicate or overlaps another entry.  */
  3082.   if (value == 0)
  3083.     {
  3084.       if (case_stack->data.case_stmt.default_label != 0)
  3085.     return 2;
  3086.       case_stack->data.case_stmt.default_label = label;
  3087.     }
  3088.   else
  3089.     {
  3090.       /* Find the elt in the chain before which to insert the new value,
  3091.      to keep the chain sorted in increasing order.
  3092.      But report an error if this element is a duplicate.  */
  3093.       for (l = &case_stack->data.case_stmt.case_list;
  3094.        /* Keep going past elements distinctly less than VALUE.  */
  3095.        *l != 0 && tree_int_cst_lt ((*l)->high, value);
  3096.        l = &(*l)->right)
  3097.     ;
  3098.       if (*l)
  3099.     {
  3100.       /* Element we will insert before must be distinctly greater;
  3101.          overlap means error.  */
  3102.       if (! tree_int_cst_lt (value, (*l)->low))
  3103.         return 2;
  3104.     }
  3105.  
  3106.       /* Add this label to the chain, and succeed.
  3107.      Copy VALUE so it is on temporary rather than momentary
  3108.      obstack and will thus survive till the end of the case statement.  */
  3109.       n = (struct case_node *) oballoc (sizeof (struct case_node));
  3110.       n->left = 0;
  3111.       n->right = *l;
  3112.       n->high = n->low = copy_node (value);
  3113.       n->code_label = label;
  3114.       n->test_label = 0;
  3115.       *l = n;
  3116.     }
  3117.  
  3118.   expand_label (label);
  3119.   return 0;
  3120. }
  3121.  
  3122. /* Like pushcase but this case applies to all values
  3123.    between VALUE1 and VALUE2 (inclusive).
  3124.    The return value is the same as that of pushcase
  3125.    but there is one additional error code:
  3126.    4 means the specified range was empty.  */
  3127.  
  3128. int
  3129. pushcase_range (value1, value2, label)
  3130.      register tree value1, value2;
  3131.      register tree label;
  3132. {
  3133.   register struct case_node **l;
  3134.   register struct case_node *n;
  3135.   tree index_type;
  3136.   tree nominal_type;
  3137.  
  3138.   /* Fail if not inside a real case statement.  */
  3139.   if (! (case_stack && case_stack->data.case_stmt.start))
  3140.     return 1;
  3141.  
  3142.   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
  3143.   nominal_type = case_stack->data.case_stmt.nominal_type;
  3144.  
  3145.   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
  3146.   if (index_type == error_mark_node)
  3147.     return 0;
  3148.  
  3149.   /* If this is the first label, warn if any insns have been emitted.  */
  3150.   if (case_stack->data.case_stmt.seenlabel == 0)
  3151.     {
  3152.       rtx insn;
  3153.       for (insn = case_stack->data.case_stmt.start;
  3154.        insn;
  3155.        insn = NEXT_INSN (insn))
  3156.     {
  3157.       if (GET_CODE (insn) == CODE_LABEL)
  3158.         break;
  3159.       if (GET_CODE (insn) != NOTE)
  3160.         {
  3161.           warning ("unreachable code at beginning of %s",
  3162.                case_stack->data.case_stmt.printname);
  3163.           break;
  3164.         }
  3165.     }
  3166.     }
  3167.   case_stack->data.case_stmt.seenlabel = 1;
  3168.  
  3169.   /* Convert VALUEs to type in which the comparisons are nominally done.  */
  3170.   if (value1 == 0)  /* Negative infinity. */
  3171.     value1 = TYPE_MIN_VALUE(index_type);
  3172.   value1 = convert (nominal_type, value1);
  3173.  
  3174.   if (value2 == 0)  /* Positive infinity. */
  3175.     value2 = TYPE_MAX_VALUE(index_type);
  3176.   value2 = convert (nominal_type, value2);
  3177.  
  3178.   /* Fail if these values are out of range.  */
  3179.   if (! int_fits_type_p (value1, index_type))
  3180.     return 3;
  3181.  
  3182.   if (! int_fits_type_p (value2, index_type))
  3183.     return 3;
  3184.  
  3185.   /* Fail if the range is empty.  */
  3186.   if (tree_int_cst_lt (value2, value1))
  3187.     return 4;
  3188.  
  3189.   /* If the bounds are equal, turn this into the one-value case.  */
  3190.   if (tree_int_cst_equal (value1, value2))
  3191.     return pushcase (value1, label);
  3192.  
  3193.   /* Find the elt in the chain before which to insert the new value,
  3194.      to keep the chain sorted in increasing order.
  3195.      But report an error if this element is a duplicate.  */
  3196.   for (l = &case_stack->data.case_stmt.case_list;
  3197.        /* Keep going past elements distinctly less than this range.  */
  3198.        *l != 0 && tree_int_cst_lt ((*l)->high, value1);
  3199.        l = &(*l)->right)
  3200.     ;
  3201.   if (*l)
  3202.     {
  3203.       /* Element we will insert before must be distinctly greater;
  3204.      overlap means error.  */
  3205.       if (! tree_int_cst_lt (value2, (*l)->low))
  3206.     return 2;
  3207.     }
  3208.  
  3209.   /* Add this label to the chain, and succeed.
  3210.      Copy VALUE1, VALUE2 so they are on temporary rather than momentary
  3211.      obstack and will thus survive till the end of the case statement.  */
  3212.  
  3213.   n = (struct case_node *) oballoc (sizeof (struct case_node));
  3214.   n->left = 0;
  3215.   n->right = *l;
  3216.   n->low = copy_node (value1);
  3217.   n->high = copy_node (value2);
  3218.   n->code_label = label;
  3219.   n->test_label = 0;
  3220.   *l = n;
  3221.  
  3222.   expand_label (label);
  3223.  
  3224.   case_stack->data.case_stmt.num_ranges++;
  3225.  
  3226.   return 0;
  3227. }
  3228.  
  3229. /* Called when the index of a switch statement is an enumerated type
  3230.    and there is no default label.
  3231.  
  3232.    Checks that all enumeration literals are covered by the case
  3233.    expressions of a switch.  Also, warn if there are any extra
  3234.    switch cases that are *not* elements of the enumerated type.
  3235.  
  3236.    If all enumeration literals were covered by the case expressions,
  3237.    turn one of the expressions into the default expression since it should
  3238.    not be possible to fall through such a switch.  */
  3239.  
  3240. void
  3241. check_for_full_enumeration_handling (type)
  3242.      tree type;
  3243. {
  3244.   register struct case_node *n;
  3245.   register struct case_node **l;
  3246.   register tree chain;
  3247.   int all_values = 1;
  3248.  
  3249.   /* The time complexity of this loop is currently O(N * M), with
  3250.      N being the number of enumerals in the enumerated type, and 
  3251.      M being the number of case expressions in the switch. */
  3252.              
  3253.   for (chain = TYPE_VALUES (type);
  3254.        chain; 
  3255.        chain = TREE_CHAIN (chain))
  3256.     {
  3257.       /* Find a match between enumeral and case expression, if possible.
  3258.      Quit looking when we've gone too far (since case expressions
  3259.      are kept sorted in ascending order).  Warn about enumerals not
  3260.      handled in the switch statement case expression list. */
  3261.  
  3262.       for (n = case_stack->data.case_stmt.case_list; 
  3263.        n && tree_int_cst_lt (n->high, TREE_VALUE (chain));
  3264.        n = n->right)
  3265.     ;
  3266.  
  3267.       if (!(n && tree_int_cst_equal (n->low, TREE_VALUE (chain))))
  3268.     {
  3269.       warning ("enumerated value `%s' not handled in switch",
  3270.            IDENTIFIER_POINTER (TREE_PURPOSE (chain)));
  3271.       all_values = 0;
  3272.     }
  3273.     }
  3274.  
  3275.   /* Now we go the other way around; we warn if there are case 
  3276.      expressions that don't correspond to enumerals.  This can
  3277.      occur since C and C++ don't enforce type-checking of 
  3278.      assignments to enumeration variables. */
  3279.  
  3280.   for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
  3281.     {
  3282.       for (chain = TYPE_VALUES (type);
  3283.        chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain)); 
  3284.        chain = TREE_CHAIN (chain))
  3285.     ;
  3286.  
  3287.       if (!chain)
  3288.     warning ("case value `%d' not in enumerated type `%s'",
  3289.          TREE_INT_CST_LOW (n->low), 
  3290.          IDENTIFIER_POINTER (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
  3291.                      ? TYPE_NAME (type)
  3292.                      : DECL_NAME (TYPE_NAME (type))));
  3293.     }
  3294.  
  3295.   /* If all values were found as case labels, make one of them the default
  3296.      label.  Thus, this switch will never fall through.  We arbitrarily pick
  3297.      the last one to make the default since this is likely the most
  3298.      efficient choice.  */
  3299.  
  3300.   if (all_values)
  3301.     {
  3302.       for (l = &case_stack->data.case_stmt.case_list;
  3303.        (*l)->right != 0;
  3304.        l = &(*l)->right)
  3305.     ;
  3306.  
  3307.       case_stack->data.case_stmt.default_label = (*l)->code_label;
  3308.       *l = 0;
  3309.     }
  3310. }
  3311.  
  3312. /* Terminate a case (Pascal) or switch (C) statement
  3313.    in which CASE_INDEX is the expression to be tested.
  3314.    Generate the code to test it and jump to the right place.  */
  3315.  
  3316. void
  3317. expand_end_case (orig_index)
  3318.      tree orig_index;
  3319. {
  3320.   tree minval, maxval, range;
  3321.   rtx default_label = 0;
  3322.   register struct case_node *n;
  3323.   int count;
  3324.   rtx index;
  3325.   rtx table_label = gen_label_rtx ();
  3326.   int ncases;
  3327.   rtx *labelvec;
  3328.   register int i;
  3329.   rtx before_case;
  3330.   register struct nesting *thiscase = case_stack;
  3331.   tree index_expr = thiscase->data.case_stmt.index_expr;
  3332.   int unsignedp = TREE_UNSIGNED (TREE_TYPE (index_expr));
  3333.  
  3334.   do_pending_stack_adjust ();
  3335.  
  3336.   /* An ERROR_MARK occurs for various reasons including invalid data type.  */
  3337.   if (TREE_TYPE (index_expr) != error_mark_node)
  3338.     {
  3339.       /* If switch expression was an enumerated type, check that all
  3340.      enumeration literals are covered by the cases.
  3341.      No sense trying this if there's a default case, however.  */
  3342.  
  3343.       if (!thiscase->data.case_stmt.default_label 
  3344.       && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
  3345.       && TREE_CODE (index_expr) != INTEGER_CST
  3346.       && warn_switch)
  3347.     check_for_full_enumeration_handling (TREE_TYPE (orig_index));
  3348.  
  3349.       /* If this is the first label, warn if any insns have been emitted.  */
  3350.       if (thiscase->data.case_stmt.seenlabel == 0)
  3351.     {
  3352.       rtx insn;
  3353.       for (insn = get_last_insn ();
  3354.            insn != case_stack->data.case_stmt.start;
  3355.            insn = PREV_INSN (insn))
  3356.         if (GET_CODE (insn) != NOTE)
  3357.           {
  3358.         warning ("unreachable code at beginning of %s",
  3359.              case_stack->data.case_stmt.printname);
  3360.         break;
  3361.           }
  3362.     }
  3363.  
  3364.       /* If we don't have a default-label, create one here,
  3365.      after the body of the switch.  */
  3366.       if (thiscase->data.case_stmt.default_label == 0)
  3367.     {
  3368.       thiscase->data.case_stmt.default_label
  3369.         = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3370.       expand_label (thiscase->data.case_stmt.default_label);
  3371.     }
  3372.       default_label = label_rtx (thiscase->data.case_stmt.default_label);
  3373.  
  3374.       before_case = get_last_insn ();
  3375.  
  3376.       /* Simplify the case-list before we count it.  */
  3377.       group_case_nodes (thiscase->data.case_stmt.case_list);
  3378.  
  3379.       /* Get upper and lower bounds of case values.
  3380.      Also convert all the case values to the index expr's data type.  */
  3381.  
  3382.       count = 0;
  3383.       for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
  3384.     {
  3385.       /* Check low and high label values are integers.  */
  3386.       if (TREE_CODE (n->low) != INTEGER_CST)
  3387.         abort ();
  3388.       if (TREE_CODE (n->high) != INTEGER_CST)
  3389.         abort ();
  3390.  
  3391.       n->low = convert (TREE_TYPE (index_expr), n->low);
  3392.       n->high = convert (TREE_TYPE (index_expr), n->high);
  3393.  
  3394.       /* Count the elements and track the largest and smallest
  3395.          of them (treating them as signed even if they are not).  */
  3396.       if (count++ == 0)
  3397.         {
  3398.           minval = n->low;
  3399.           maxval = n->high;
  3400.         }
  3401.       else
  3402.         {
  3403.           if (INT_CST_LT (n->low, minval))
  3404.         minval = n->low;
  3405.           if (INT_CST_LT (maxval, n->high))
  3406.         maxval = n->high;
  3407.         }
  3408.       /* A range counts double, since it requires two compares.  */
  3409.       if (! tree_int_cst_equal (n->low, n->high))
  3410.         count++;
  3411.     }
  3412.  
  3413.       /* Compute span of values.  */
  3414.       if (count != 0)
  3415.     range = fold (build (MINUS_EXPR, TREE_TYPE (index_expr),
  3416.                  maxval, minval));
  3417.  
  3418.       if (count == 0 || TREE_CODE (TREE_TYPE (index_expr)) == ERROR_MARK)
  3419.     {
  3420.       expand_expr (index_expr, const0_rtx, VOIDmode, 0);
  3421.       emit_queue ();
  3422.       emit_jump (default_label);
  3423.     }
  3424.       /* If range of values is much bigger than number of values,
  3425.      make a sequence of conditional branches instead of a dispatch.
  3426.      If the switch-index is a constant, do it this way
  3427.      because we can optimize it.  */
  3428.       else if (TREE_INT_CST_HIGH (range) != 0
  3429. #ifdef HAVE_casesi
  3430.            || (HAVE_casesi ? count < 4 : count < 5)
  3431. #else
  3432.            /* If machine does not have a case insn that compares the
  3433.           bounds, this means extra overhead for dispatch tables
  3434.           which raises the threshold for using them.  */
  3435.            || count < 5
  3436. #endif
  3437.            || (unsigned) (TREE_INT_CST_LOW (range)) > 10 * count
  3438.            || TREE_CODE (index_expr) == INTEGER_CST)
  3439.     {
  3440.       index = expand_expr (index_expr, 0, VOIDmode, 0);
  3441.  
  3442.       /* If the index is a short or char that we do not have
  3443.          an insn to handle comparisons directly, convert it to
  3444.          a full integer now, rather than letting each comparison
  3445.          generate the conversion.  */
  3446.  
  3447.       if ((GET_MODE (index) == QImode || GET_MODE (index) == HImode)
  3448.           && (cmp_optab->handlers[(int) GET_MODE(index)].insn_code
  3449.           == CODE_FOR_nothing))
  3450.         index = convert_to_mode (SImode, index, unsignedp);
  3451.       
  3452.       emit_queue ();
  3453.       do_pending_stack_adjust ();
  3454.  
  3455.       index = protect_from_queue (index, 0);
  3456.       if (GET_CODE (index) == MEM)
  3457.         index = copy_to_reg (index);
  3458.       if (GET_CODE (index) == CONST_INT
  3459.           || TREE_CODE (index_expr) == INTEGER_CST)
  3460.         {
  3461.           /* Make a tree node with the proper constant value
  3462.          if we don't already have one.  */
  3463.           if (TREE_CODE (index_expr) != INTEGER_CST)
  3464.         {
  3465.           index_expr
  3466.             = build_int_2 (INTVAL (index),
  3467.                    !unsignedp && INTVAL (index) >= 0 ? 0 : -1);
  3468.           index_expr = convert (TREE_TYPE (index_expr), index_expr);
  3469.         }
  3470.  
  3471.           /* For constant index expressions we need only
  3472.          issue a unconditional branch to the appropriate
  3473.          target code.  The job of removing any unreachable
  3474.          code is left to the optimisation phase if the
  3475.          "-O" option is specified.  */
  3476.           for (n = thiscase->data.case_stmt.case_list;
  3477.            n;
  3478.            n = n->right)
  3479.         {
  3480.           if (! tree_int_cst_lt (index_expr, n->low)
  3481.               && ! tree_int_cst_lt (n->high, index_expr))
  3482.             break;
  3483.         }
  3484.           if (n)
  3485.         emit_jump (label_rtx (n->code_label));
  3486.           else
  3487.         emit_jump (default_label);
  3488.         }
  3489.       else
  3490.         {
  3491.           /* If the index expression is not constant we generate
  3492.          a binary decision tree to select the appropriate
  3493.          target code.  This is done as follows:
  3494.  
  3495.          The list of cases is rearranged into a binary tree,
  3496.          nearly optimal assuming equal probability for each case.
  3497.  
  3498.          The tree is transformed into RTL, eliminating
  3499.          redundant test conditions at the same time.
  3500.  
  3501.          If program flow could reach the end of the
  3502.          decision tree an unconditional jump to the
  3503.          default code is emitted.  */
  3504.           if (optimize
  3505.           && TREE_CODE (TREE_TYPE (orig_index)) != ENUMERAL_TYPE)
  3506.         estimate_case_costs (thiscase->data.case_stmt.case_list,
  3507.                      default_label);
  3508.           balance_case_nodes (&thiscase->data.case_stmt.case_list, 0);
  3509.           emit_case_nodes (index, thiscase->data.case_stmt.case_list,
  3510.                    default_label, unsignedp);
  3511.           emit_jump_if_reachable (default_label);
  3512.         }
  3513.     }
  3514.       else
  3515.     {
  3516.       int win = 0;
  3517. #ifdef HAVE_casesi
  3518.       if (HAVE_casesi)
  3519.         {
  3520.           /* Convert the index to SImode.  */
  3521.           if (TYPE_MODE (TREE_TYPE (index_expr)) == DImode)
  3522.         {
  3523.           index_expr = build (MINUS_EXPR, TREE_TYPE (index_expr),
  3524.                       index_expr, minval);
  3525.           minval = integer_zero_node;
  3526.         }
  3527.           if (TYPE_MODE (TREE_TYPE (index_expr)) != SImode)
  3528.         index_expr = convert (type_for_size (GET_MODE_BITSIZE (SImode), 0),
  3529.                       index_expr);
  3530.           index = expand_expr (index_expr, 0, VOIDmode, 0);
  3531.           emit_queue ();
  3532.           index = protect_from_queue (index, 0);
  3533.           do_pending_stack_adjust ();
  3534.  
  3535.           emit_jump_insn (gen_casesi (index, expand_expr (minval, 0, VOIDmode, 0),
  3536.                       expand_expr (range, 0, VOIDmode, 0),
  3537.                       table_label, default_label));
  3538.           win = 1;
  3539.         }
  3540. #endif
  3541. #ifdef HAVE_tablejump
  3542.       if (! win && HAVE_tablejump)
  3543.         {
  3544.           index_expr = convert (type_for_size (GET_MODE_BITSIZE (SImode), 0),
  3545.                     build (MINUS_EXPR, TREE_TYPE (index_expr),
  3546.                        index_expr, minval));
  3547.           index = expand_expr (index_expr, 0, VOIDmode, 0);
  3548.           emit_queue ();
  3549.           index = protect_from_queue (index, 0);
  3550.           do_pending_stack_adjust ();
  3551.  
  3552.           do_tablejump (index,
  3553.                 gen_rtx (CONST_INT, VOIDmode, TREE_INT_CST_LOW (range)),
  3554.                 table_label, default_label);
  3555.           win = 1;
  3556.         }
  3557. #endif
  3558.       if (! win)
  3559.         abort ();
  3560.  
  3561.       /* Get table of labels to jump to, in order of case index.  */
  3562.  
  3563.       ncases = TREE_INT_CST_LOW (range) + 1;
  3564.       labelvec = (rtx *) alloca (ncases * sizeof (rtx));
  3565.       bzero (labelvec, ncases * sizeof (rtx));
  3566.  
  3567.       for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
  3568.         {
  3569.           register int i
  3570.         = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (minval);
  3571.  
  3572.           while (i + TREE_INT_CST_LOW (minval)
  3573.              <= TREE_INT_CST_LOW (n->high))
  3574.         labelvec[i++]
  3575.           = gen_rtx (LABEL_REF, Pmode, label_rtx (n->code_label));
  3576.         }
  3577.  
  3578.       /* Fill in the gaps with the default.  */
  3579.       for (i = 0; i < ncases; i++)
  3580.         if (labelvec[i] == 0)
  3581.           labelvec[i] = gen_rtx (LABEL_REF, Pmode, default_label);
  3582.  
  3583.       /* Output the table */
  3584.       emit_label (table_label);
  3585.  
  3586.       /* This would be a lot nicer if CASE_VECTOR_PC_RELATIVE
  3587.          were an expression, instead of a an #ifdef/#ifndef.  */
  3588.       if (
  3589. #ifdef CASE_VECTOR_PC_RELATIVE
  3590.           1 ||
  3591. #endif
  3592.           flag_pic)
  3593.         emit_jump_insn (gen_rtx (ADDR_DIFF_VEC, CASE_VECTOR_MODE,
  3594.                      gen_rtx (LABEL_REF, Pmode, table_label),
  3595.                      gen_rtvec_v (ncases, labelvec)));
  3596.       else
  3597.         emit_jump_insn (gen_rtx (ADDR_VEC, CASE_VECTOR_MODE,
  3598.                      gen_rtvec_v (ncases, labelvec)));
  3599.  
  3600.       /* If the case insn drops through the table,
  3601.          after the table we must jump to the default-label.
  3602.          Otherwise record no drop-through after the table.  */
  3603. #ifdef CASE_DROPS_THROUGH
  3604.       emit_jump (default_label);
  3605. #else
  3606.       emit_barrier ();
  3607. #endif
  3608.     }
  3609.  
  3610.       reorder_insns (NEXT_INSN (before_case), get_last_insn (),
  3611.              thiscase->data.case_stmt.start);
  3612.     }
  3613.   if (thiscase->exit_label)
  3614.     emit_label (thiscase->exit_label);
  3615.  
  3616.   POPSTACK (case_stack);
  3617.  
  3618.   free_temp_slots ();
  3619. }
  3620.  
  3621. /* Generate code to jump to LABEL if OP1 and OP2 are equal.  */
  3622.  
  3623. static void
  3624. do_jump_if_equal (op1, op2, label, unsignedp)
  3625.      rtx op1, op2, label;
  3626.      int unsignedp;
  3627. {
  3628.   if (GET_CODE (op1) == CONST_INT
  3629.       && GET_CODE (op2) == CONST_INT)
  3630.     {
  3631.       if (INTVAL (op1) == INTVAL (op2))
  3632.     emit_jump (label);
  3633.     }
  3634.   else
  3635.     {
  3636.       emit_cmp_insn (op1, op2, EQ, 0, unsignedp, 0);
  3637.       emit_jump_insn (gen_beq (label));
  3638.     }
  3639. }
  3640.  
  3641. /* Not all case values are encountered equally.  This function
  3642.    uses a heuristic to weight case labels, in cases where that
  3643.    looks like a reasonable thing to do.
  3644.  
  3645.    Right now, all we try to guess is text, and we establish the
  3646.    following weights:
  3647.  
  3648.     chars above space:    16
  3649.     digits:            16
  3650.     default:        12
  3651.     space, punct:        8
  3652.     tab:            4
  3653.     newline:        2
  3654.     other "\" chars:    1
  3655.     remaining chars:    0
  3656.  
  3657.    Under this weighting, ranges are automagically taken care of.  */
  3658.  
  3659. #include <ctype.h>
  3660. static char *cost_table;
  3661. static int use_cost_table;
  3662.  
  3663. static void
  3664. estimate_case_costs (node, default_label)
  3665.      case_node_ptr node;
  3666.      rtx default_label;
  3667. {
  3668.   tree min_ascii = build_int_2 (-1, -1);
  3669.   tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
  3670.   case_node_ptr n;
  3671.  
  3672.   use_cost_table = 0;
  3673.  
  3674.   /* If the user is running without default, who are we
  3675.      to guess where values are likely to land?  */
  3676.   if (default_label == 0)
  3677.     return;
  3678.  
  3679.   /* See if all the case expressions look like text.  It is text if the
  3680.      constant is >= -1 and the highest constant is <= 127.  If the case
  3681.      expression is unsigned, suppress the test for >= -1, since it would
  3682.      always be true.  */
  3683.   for (n = node; n; n = n->right)
  3684.     if ((! TREE_UNSIGNED (TREE_TYPE (n->low))
  3685.      && tree_int_cst_lt (n->low, min_ascii))
  3686.     || tree_int_cst_lt (max_ascii, n->high))
  3687.       return;
  3688.  
  3689.   /* All interesting values with within the range of
  3690.      interesting ASCII characters.  */
  3691.   if (cost_table == NULL)
  3692.     {
  3693.       int i;
  3694.       cost_table = ((char *)xmalloc (129)) + 1;
  3695.       bzero (cost_table-1, 128);
  3696.       for (i = 0; i < 128; i++)
  3697.     {
  3698.       if (isalnum (i))
  3699.         cost_table[i] = 16;
  3700.       else if (ispunct (i))
  3701.         cost_table[i] = 8;
  3702.       else if (iscntrl (i))
  3703.         cost_table[i] = -1;
  3704.     }
  3705.       cost_table[' '] = 8;
  3706.       cost_table['\t'] = 4;
  3707.       cost_table['\0'] = 4;
  3708.       cost_table['\n'] = 2;
  3709.       cost_table['\f'] = 1;
  3710.       cost_table['\v'] = 1;
  3711.       cost_table['\b'] = 1;
  3712.     }
  3713.   use_cost_table = 1;
  3714. }
  3715.  
  3716. /* Scan an ordered list of case nodes
  3717.    combining those with consecutive values or ranges.
  3718.  
  3719.    Eg. three separate entries 1: 2: 3: become one entry 1..3:  */
  3720.  
  3721. static void
  3722. group_case_nodes (head)
  3723.      case_node_ptr head;
  3724. {
  3725.   case_node_ptr node = head;
  3726.  
  3727.   while (node)
  3728.     {
  3729.       rtx lb = next_real_insn (label_rtx (node->code_label));
  3730.       case_node_ptr np = node;
  3731.  
  3732.       /* Try to group the successors of NODE with NODE.  */
  3733.       while (((np = np->right) != 0)
  3734.          /* Do they jump to the same place?  */
  3735.          && next_real_insn (label_rtx (np->code_label)) == lb
  3736.          /* Are their ranges consecutive?  */
  3737.          && tree_int_cst_equal (np->low,
  3738.                     fold (build (PLUS_EXPR,
  3739.                          TREE_TYPE (node->high),
  3740.                          node->high,
  3741.                          integer_one_node)))
  3742.          /* An overflow is not consecutive.  */
  3743.          && tree_int_cst_lt (node->high, 
  3744.                  fold (build (PLUS_EXPR,
  3745.                           TREE_TYPE (node->high),
  3746.                           node->high,
  3747.                           integer_one_node))))
  3748.     {
  3749.       node->high = np->high;
  3750.     }
  3751.       /* NP is the first node after NODE which can't be grouped with it.
  3752.      Delete the nodes in between, and move on to that node.  */
  3753.       node->right = np;
  3754.       node = np;
  3755.     }
  3756. }
  3757.  
  3758. /* Take an ordered list of case nodes
  3759.    and transform them into a near optimal binary tree,
  3760.    on the assumtion that any target code selection value is as
  3761.    likely as any other.
  3762.  
  3763.    The transformation is performed by splitting the ordered
  3764.    list into two equal sections plus a pivot.  The parts are
  3765.    then attached to the pivot as left and right branches.  Each
  3766.    branch is is then transformed recursively.  */
  3767.  
  3768. static void
  3769. balance_case_nodes (head, parent)
  3770.      case_node_ptr *head;
  3771.      case_node_ptr parent;
  3772. {
  3773.   register case_node_ptr np;
  3774.  
  3775.   np = *head;
  3776.   if (np)
  3777.     {
  3778.       int cost = 0;
  3779.       int i = 0;
  3780.       int ranges = 0;
  3781.       register case_node_ptr *npp;
  3782.       case_node_ptr left;
  3783.  
  3784.       /* Count the number of entries on branch.
  3785.      Also count the ranges.  */
  3786.       while (np)
  3787.     {
  3788.       if (!tree_int_cst_equal (np->low, np->high))
  3789.         {
  3790.           ranges++;
  3791.           if (use_cost_table)
  3792.         {
  3793.           int hi_cost = cost_table[TREE_INT_CST_LOW (np->high)];
  3794.           if (hi_cost < 0)
  3795.             use_cost_table = 0;
  3796.           else
  3797.             cost += hi_cost;
  3798.         }
  3799.         }
  3800.       if (use_cost_table)
  3801.         {
  3802.           int lo_cost = cost_table[TREE_INT_CST_LOW (np->low)];
  3803.           if (lo_cost < 0)
  3804.         use_cost_table = 0;
  3805.           else
  3806.         cost += lo_cost;
  3807.         }
  3808.       else
  3809.         cost += 1;
  3810.       i++;
  3811.       np = np->right;
  3812.     }
  3813.       if (i > 2)
  3814.     {
  3815.       /* Split this list if it is long enough for that to help.  */
  3816.       npp = head;
  3817.       left = *npp;
  3818.       if (use_cost_table)
  3819.         {
  3820.           /* Find the place in the list that bisects the list's total cost,
  3821.          Here I gets half the total cost.  */
  3822.           int n_moved = 0;
  3823.           i = (cost + 1) / 2;
  3824.           while (1)
  3825.         {
  3826.           /* Skip nodes while their cost does not reach that amount.  */
  3827.           if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
  3828.             i -= cost_table[TREE_INT_CST_LOW ((*npp)->high)];
  3829.           i -= cost_table[TREE_INT_CST_LOW ((*npp)->low)];
  3830.           if (i <= 0)
  3831.             break;
  3832.           npp = &(*npp)->right;
  3833.           n_moved += 1;
  3834.         }
  3835.           if (n_moved == 0)
  3836.         {
  3837.           /* Leave this branch lopsided, but optimize left-hand
  3838.              side and fill in `parent' fields for right-hand side.  */
  3839.           np = *head;
  3840.           np->parent = parent;
  3841.           balance_case_nodes (&np->left, np);
  3842.           for (; np->right; np = np->right)
  3843.             np->right->parent = np;
  3844.           return;
  3845.         }
  3846.         }
  3847.       /* If there are just three nodes, split at the middle one.  */
  3848.       else if (i == 3)
  3849.         npp = &(*npp)->right;
  3850.       else
  3851.         {
  3852.           /* Find the place in the list that bisects the list's total cost,
  3853.          where ranges count as 2.
  3854.          Here I gets half the total cost.  */
  3855.           i = (i + ranges + 1) / 2;
  3856.           while (1)
  3857.         {
  3858.           /* Skip nodes while their cost does not reach that amount.  */
  3859.           if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
  3860.             i--;
  3861.           i--;
  3862.           if (i <= 0)
  3863.             break;
  3864.           npp = &(*npp)->right;
  3865.         }
  3866.         }
  3867.       *head = np = *npp;
  3868.       *npp = 0;
  3869.       np->parent = parent;
  3870.       np->left = left;
  3871.  
  3872.       /* Optimize each of the two split parts.  */
  3873.       balance_case_nodes (&np->left, np);
  3874.       balance_case_nodes (&np->right, np);
  3875.     }
  3876.       else
  3877.     {
  3878.       /* Else leave this branch as one level,
  3879.          but fill in `parent' fields.  */
  3880.       np = *head;
  3881.       np->parent = parent;
  3882.       for (; np->right; np = np->right)
  3883.         np->right->parent = np;
  3884.     }
  3885.     }
  3886. }
  3887.  
  3888. /* Search the parent sections of the case node tree
  3889.    to see if a test for the lower bound of NODE would be redundant.
  3890.  
  3891.    The instructions to synthesis the case decision tree are
  3892.    output in the same order as nodes are processed so it is
  3893.    known that if a parent node checks the range of the current
  3894.    node minus one that the current node is bounded at its lower
  3895.    span.  Thus the test would be redundant.  */
  3896.  
  3897. static int
  3898. node_has_low_bound (node)
  3899.      case_node_ptr node;
  3900. {
  3901.   tree low_minus_one;
  3902.   case_node_ptr pnode;
  3903.  
  3904.   if (node->left)
  3905.     {
  3906.       low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
  3907.                    node->low, integer_one_node));
  3908.       /* Avoid the screw case of overflow where low_minus_one is > low.  */
  3909.       if (tree_int_cst_lt (low_minus_one, node->low))
  3910.     for (pnode = node->parent; pnode; pnode = pnode->parent)
  3911.       {
  3912.         if (tree_int_cst_equal (low_minus_one, pnode->high))
  3913.           return 1;
  3914.         /* If a parent node has a left branch we know that none
  3915.            of its parents can have a high bound of our target
  3916.            minus one so we abort the search.  */
  3917.         if (node->left)
  3918.           break;
  3919.       }
  3920.     }
  3921.   return 0;
  3922. }
  3923.  
  3924. /* Search the parent sections of the case node tree
  3925.    to see if a test for the upper bound of NODE would be redundant.
  3926.  
  3927.    The instructions to synthesis the case decision tree are
  3928.    output in the same order as nodes are processed so it is
  3929.    known that if a parent node checks the range of the current
  3930.    node plus one that the current node is bounded at its upper
  3931.    span.  Thus the test would be redundant.  */
  3932.  
  3933. static int
  3934. node_has_high_bound (node)
  3935.      case_node_ptr node;
  3936. {
  3937.   tree high_plus_one;
  3938.   case_node_ptr pnode;
  3939.  
  3940.   if (node->right == 0)
  3941.     {
  3942.       high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
  3943.                    node->high, integer_one_node));
  3944.       /* Avoid the screw case of overflow where high_plus_one is > high.  */
  3945.       if (tree_int_cst_lt (node->high, high_plus_one))
  3946.     for (pnode = node->parent; pnode; pnode = pnode->parent)
  3947.       {
  3948.         if (tree_int_cst_equal (high_plus_one, pnode->low))
  3949.           return 1;
  3950.         /* If a parent node has a right branch we know that none
  3951.            of its parents can have a low bound of our target
  3952.            plus one so we abort the search.  */
  3953.         if (node->right)
  3954.           break;
  3955.       }
  3956.     }
  3957.   return 0;
  3958. }
  3959.  
  3960. /* Search the parent sections of the
  3961.    case node tree to see if both tests for the upper and lower
  3962.    bounds of NODE would be redundant.  */
  3963.  
  3964. static int
  3965. node_is_bounded (node)
  3966.      case_node_ptr node;
  3967. {
  3968.   if (node->left || node->right)
  3969.     return 0;
  3970.   return node_has_low_bound (node) && node_has_high_bound (node);
  3971. }
  3972.  
  3973. /*  Emit an unconditional jump to LABEL unless it would be dead code.  */
  3974.  
  3975. static void
  3976. emit_jump_if_reachable (label)
  3977.      rtx label;
  3978. {
  3979.   if (GET_CODE (get_last_insn ()) != BARRIER)
  3980.     emit_jump (label);
  3981. }
  3982.  
  3983. /* Emit step-by-step code to select a case for the value of INDEX.
  3984.    The thus generated decision tree follows the form of the
  3985.    case-node binary tree NODE, whose nodes represent test conditions.
  3986.    UNSIGNEDP is nonzero if we should do unsigned comparisons.
  3987.  
  3988.    Care is taken to prune redundant tests from the decision tree
  3989.    by detecting any boundary conditions already checked by
  3990.    emitted rtx.  (See node_has_high_bound, node_has_low_bound
  3991.    and node_is_bounded, above.)
  3992.  
  3993.    Where the test conditions can be shown to be redundant we emit
  3994.    an unconditional jump to the target code.  As a further
  3995.    optimization, the subordinates of a tree node are examined to
  3996.    check for bounded nodes.  In this case conditional and/or
  3997.    unconditional jumps as a result of the boundary check for the
  3998.    current node are arranged to target the subordinates associated
  3999.    code for out of bound conditions on the current node node.  */
  4000.  
  4001. static void
  4002. emit_case_nodes (index, node, default_label, unsignedp)
  4003.      rtx index;
  4004.      case_node_ptr node;
  4005.      rtx default_label;
  4006.      int unsignedp;
  4007. {
  4008.   /* If INDEX has an unsigned type, we must make unsigned branches.  */
  4009.   typedef rtx rtx_function ();
  4010.   rtx_function *gen_bgt_pat = unsignedp ? gen_bgtu : gen_bgt;
  4011.   rtx_function *gen_bge_pat = unsignedp ? gen_bgeu : gen_bge;
  4012.   rtx_function *gen_blt_pat = unsignedp ? gen_bltu : gen_blt;
  4013.   rtx_function *gen_ble_pat = unsignedp ? gen_bleu : gen_ble;
  4014.   int defaulted_left = 0;
  4015.   int defaulted_right = 0;
  4016.  
  4017.   if (node->test_label)
  4018.     {
  4019.       /* If this test node requires a label it follows that
  4020.      it must be preceeded by an unconditional branch.
  4021.      If control can pass to this point we can assume that
  4022.      a "br default" is in order.  */
  4023.       emit_jump_if_reachable (default_label);
  4024.       expand_label (node->test_label);
  4025.     }
  4026.   if (tree_int_cst_equal (node->low, node->high))
  4027.     {
  4028.       /* Node is single valued.  */
  4029.       do_jump_if_equal (index, expand_expr (node->low, 0, VOIDmode, 0),
  4030.             label_rtx (node->code_label), unsignedp);
  4031.       if (node->right)
  4032.     {
  4033.       if (node->left)
  4034.         {
  4035.           /* This node has children on either side.  */
  4036.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0),
  4037.                  GT, 0, unsignedp, 0);
  4038.  
  4039.           if (node_is_bounded (node->right))
  4040.         {
  4041.           emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->code_label)));
  4042.           if (node_is_bounded (node->left))
  4043.             emit_jump (label_rtx (node->left->code_label));
  4044.           else
  4045.             emit_case_nodes (index, node->left,
  4046.                      default_label, unsignedp);
  4047.         }
  4048.           else
  4049.         {
  4050.           if (node_is_bounded (node->left))
  4051.             emit_jump_insn ((*gen_blt_pat) (label_rtx (node->left->code_label)));
  4052.           else
  4053.             {
  4054.               node->right->test_label =
  4055.             build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  4056.               emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->test_label)));
  4057.               emit_case_nodes (index, node->left,
  4058.                        default_label, unsignedp);
  4059.             }
  4060.           emit_case_nodes (index, node->right,
  4061.                    default_label, unsignedp);
  4062.         }
  4063.         }
  4064.       else
  4065.         {
  4066.           /* Here we have a right child but no left
  4067.          so we issue conditional branch to default
  4068.          and process the right child.  */
  4069.  
  4070.           /* Omit the conditional branch to default
  4071.          if we it avoid only one right child;
  4072.          it costs too much space to save so little time.  */
  4073.           if (node->right->right && !node_has_low_bound (node))
  4074.         {
  4075.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0),
  4076.                  LT, 0, unsignedp, 0);
  4077.           emit_jump_insn ((*gen_blt_pat) (default_label));
  4078.         }
  4079.           if (node_is_bounded (node->right))
  4080.         emit_jump (label_rtx (node->right->code_label));
  4081.           else
  4082.         emit_case_nodes (index, node->right, default_label, unsignedp);
  4083.         }
  4084.     }
  4085.       else if (node->left)
  4086.     {
  4087.       if (use_cost_table
  4088.           && ! defaulted_right
  4089.           && cost_table[TREE_INT_CST_LOW (node->high)] < 12)
  4090.         {
  4091.           /* If our "most probably entry" is less probable
  4092.          than the default label, emit a jump to
  4093.          the default label using condition codes
  4094.          already lying around.  With no right branch,
  4095.          a branch-greater-than will get us to the default
  4096.          label correctly.  */
  4097.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0),
  4098.                  GT, 0, unsignedp, 0);
  4099.           emit_jump_insn ((*gen_bgt_pat) (default_label));
  4100.           /* No sense doing this too often.  */
  4101.           defaulted_right = 1;
  4102.         }
  4103.       if (node_is_bounded (node->left))
  4104.         emit_jump (label_rtx (node->left->code_label));
  4105.       else
  4106.         emit_case_nodes (index, node->left, default_label, unsignedp);
  4107.     }
  4108.     }
  4109.   else
  4110.     {
  4111.       /* Node is a range.  */
  4112.       if (node->right)
  4113.     {
  4114.       if (node->left)
  4115.         {
  4116.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0),
  4117.                  GT, 0, unsignedp, 0);
  4118.           if (node_is_bounded (node->right))
  4119.         {
  4120.           /* Right hand node is fully bounded so we can
  4121.              eliminate any testing and branch directly
  4122.              to the target code.  */
  4123.           emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->code_label)));
  4124.         }
  4125.           else
  4126.         {
  4127.           /* Right hand node requires testing so create
  4128.              a label to put on the cmp code.  */
  4129.           node->right->test_label =
  4130.             build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  4131.           emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->test_label)));
  4132.         }
  4133.           emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0),
  4134.                  GE, 0, unsignedp, 0);
  4135.           emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
  4136.           if (node_is_bounded (node->left))
  4137.         {
  4138.           /* Left hand node is fully bounded so we can
  4139.              eliminate any testing and branch directly
  4140.              to the target code.  */
  4141.           emit_jump (label_rtx (node->left->code_label));
  4142.         }
  4143.           else
  4144.         emit_case_nodes (index, node->left, default_label, unsignedp);
  4145.           /* If right node has been given a test label above
  4146.          we must process it now.  */
  4147.           if (node->right->test_label)
  4148.         emit_case_nodes (index, node->right, default_label, unsignedp);
  4149.         }
  4150.       else
  4151.         {
  4152.           if (!node_has_low_bound (node))
  4153.         {
  4154.           emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0),
  4155.                  LT, 0, unsignedp, 0);
  4156.           emit_jump_insn ((*gen_blt_pat) (default_label));
  4157.         }
  4158.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0),
  4159.                  LE, 0, unsignedp, 0);
  4160.           emit_jump_insn ((*gen_ble_pat) (label_rtx (node->code_label)));
  4161.           if (node_is_bounded (node->right))
  4162.         {
  4163.           /* Right hand node is fully bounded so we can
  4164.              eliminate any testing and branch directly
  4165.              to the target code.  */
  4166.           emit_jump (label_rtx (node->right->code_label));
  4167.         }
  4168.           else
  4169.         emit_case_nodes (index, node->right, default_label, unsignedp);
  4170.         }
  4171.     }
  4172.       else if (node->left)
  4173.     {
  4174.       if (!node_has_high_bound (node))
  4175.         {
  4176.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0),
  4177.                  GT, 0, unsignedp, 0);
  4178.           emit_jump_insn ((*gen_bgt_pat) (default_label));
  4179.         }
  4180.       emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0),
  4181.              GE, 0, unsignedp, 0);
  4182.       emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
  4183.       if (node_is_bounded (node->left))
  4184.         {
  4185.           /* Left hand node is fully bounded so we can
  4186.          eliminate any testing and branch directly
  4187.          to the target code.  */
  4188.           emit_jump (label_rtx (node->left->code_label));
  4189.         }
  4190.       else
  4191.         emit_case_nodes (index, node->left, default_label, unsignedp);
  4192.     }
  4193.       else
  4194.     {
  4195.       /* Node has no children so we check low and
  4196.          high bounds to remove redundant tests. In practice
  4197.          only one of the limits may be bounded or the parent
  4198.          node will have emmited a jump to our target code.  */
  4199.       if (!node_has_high_bound (node))
  4200.         {
  4201.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0),
  4202.                  GT, 0, unsignedp, 0);
  4203.           emit_jump_insn ((*gen_bgt_pat) (default_label));
  4204.         }
  4205.       if (!node_has_low_bound (node))
  4206.         {
  4207.           emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0),
  4208.                  GE, 0, unsignedp, 0);
  4209.           emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
  4210.         }
  4211.       /* We allow the default case to drop through since
  4212.          it will picked up by calls to `jump_if_reachable'
  4213.          either on the next test label or at the end of
  4214.          the decision tree emission.  */
  4215.     }
  4216.     }
  4217. }
  4218.  
  4219. /* These routines are used by the loop unrolling code.  They copy BLOCK trees
  4220.    so that the debugging info will be correct for the unrolled loop.  */
  4221.  
  4222. /* Indexed by loop number, contains pointer to the first block in the loop,
  4223.    or zero if none.  Only valid if doing loop unrolling and outputting debugger
  4224.    info.  */
  4225.  
  4226. tree *loop_number_first_block;
  4227.  
  4228. /* Indexed by loop number, contains pointer to the last block in the loop,
  4229.    only valid if loop_number_first_block is nonzero.  */
  4230.  
  4231. tree *loop_number_last_block;
  4232.  
  4233. /* Indexed by loop number, contains nesting level of first block in the
  4234.    loop, if any.  Only valid if doing loop unrolling and outputting debugger
  4235.    info.  */
  4236.  
  4237. int *loop_number_block_level;
  4238.  
  4239. /* Scan the function looking for loops, and walk the BLOCK tree at the
  4240.    same time.  Record the first and last BLOCK tree corresponding to each
  4241.    loop.  This function is similar to find_and_verify_loops in loop.c.  */
  4242.  
  4243. void
  4244. find_loop_tree_blocks (f)
  4245.      rtx f;
  4246. {
  4247.   rtx insn;
  4248.   int current_loop = -1;
  4249.   int next_loop = -1;
  4250.   int loop;
  4251.   int block_level, tree_level;
  4252.   tree tree_block, parent_tree_block;
  4253.  
  4254.   tree_block = DECL_INITIAL (current_function_decl);
  4255.   parent_tree_block = 0;
  4256.   block_level = 0;
  4257.   tree_level = -1;
  4258.  
  4259.   /* Find boundaries of loops, and save the first and last BLOCK tree
  4260.      corresponding to each loop.  */
  4261.  
  4262.   for (insn = f; insn; insn = NEXT_INSN (insn))
  4263.     {
  4264.       if (GET_CODE (insn) == NOTE)
  4265.     switch (NOTE_LINE_NUMBER (insn))
  4266.       {
  4267.       case NOTE_INSN_LOOP_BEG:
  4268.         loop_number_block_level[++next_loop] = block_level;
  4269.         loop_number_first_block[next_loop] = 0;
  4270.         current_loop = next_loop;
  4271.         break;
  4272.  
  4273.       case NOTE_INSN_LOOP_END:
  4274.         if (current_loop == -1)
  4275.           abort ();
  4276.  
  4277.         current_loop = loop_outer_loop[current_loop];
  4278.         break;
  4279.  
  4280.       case NOTE_INSN_BLOCK_BEG:
  4281.         if (tree_level < block_level)
  4282.           {
  4283.         /* We have seen two NOTE_INSN_BLOCK_BEG notes in a row, so
  4284.            we must now visit the subtree of the current block.  */
  4285.         parent_tree_block = tree_block;
  4286.         tree_block = BLOCK_SUBBLOCKS (tree_block);
  4287.         tree_level++;
  4288.           }
  4289.         else if (tree_level > block_level)
  4290.           abort ();
  4291.  
  4292.         /* Save this block tree here for all nested loops for which
  4293.            this is the topmost block.  */
  4294.         for (loop = current_loop;
  4295.          loop != -1 && block_level == loop_number_block_level[loop];
  4296.          loop = loop_outer_loop[loop])
  4297.           {
  4298.         if (loop_number_first_block[loop] == 0)
  4299.           loop_number_first_block[loop] = tree_block;
  4300.         loop_number_last_block[loop] = tree_block;
  4301.           }
  4302.  
  4303.         block_level++;
  4304.         break;
  4305.  
  4306.       case NOTE_INSN_BLOCK_END:
  4307.         block_level--;
  4308.         if (tree_level > block_level)
  4309.           {
  4310.         /* We have seen two NOTE_INSN_BLOCK_END notes in a row, so
  4311.            we must now visit the parent of the current tree.  */
  4312.         if (tree_block != 0 || parent_tree_block == 0)
  4313.           abort ();
  4314.         tree_block = parent_tree_block;
  4315.         parent_tree_block = BLOCK_SUPERCONTEXT (parent_tree_block);
  4316.         tree_level--;
  4317.           }
  4318.         tree_block = BLOCK_CHAIN (tree_block);
  4319.         break;
  4320.       }
  4321.     }
  4322. }
  4323.  
  4324. /* This routine will make COPIES-1 copies of all BLOCK trees that correspond
  4325.    to BLOCK_BEG notes inside the loop LOOP_NUMBER.
  4326.  
  4327.    Note that we only copy the topmost level of tree nodes; they will share
  4328.    pointers to the same subblocks.  */
  4329.  
  4330. void
  4331. unroll_block_trees (loop_number, copies)
  4332.      int loop_number;
  4333.      int copies;
  4334. {
  4335.   int i;
  4336.   
  4337.   /* First check whether there are any blocks that need to be copied.  */
  4338.   if (loop_number_first_block[loop_number])
  4339.     {
  4340.       tree first_block = loop_number_first_block[loop_number];
  4341.       tree last_block = loop_number_last_block[loop_number];
  4342.       tree last_block_created = 0;
  4343.       
  4344.       for (i = 0; i < copies - 1; i++)
  4345.     {
  4346.       tree block = first_block;
  4347.       tree insert_after = last_block;
  4348.       tree copied_block;
  4349.  
  4350.       /* Copy every block between first_block and last_block inclusive,
  4351.          inserting the new blocks after last_block.  */
  4352.       do
  4353.         {
  4354.           tree new_block = make_node (BLOCK);
  4355.           BLOCK_VARS (new_block) = BLOCK_VARS (block);
  4356.           BLOCK_TYPE_TAGS (new_block) = BLOCK_TYPE_TAGS (block);
  4357.           BLOCK_SUBBLOCKS (new_block) = BLOCK_SUBBLOCKS (block);
  4358.           BLOCK_SUPERCONTEXT (new_block) = BLOCK_SUPERCONTEXT (block);
  4359.           TREE_USED (new_block) = TREE_USED (block);
  4360.           
  4361.           /* Insert the new block after the insertion point, and move
  4362.          the insertion point to the new block.  This ensures that
  4363.          the copies are inserted in the right order.  */
  4364.           BLOCK_CHAIN (new_block) = BLOCK_CHAIN (insert_after);
  4365.           BLOCK_CHAIN (insert_after) = new_block;
  4366.           insert_after = new_block;
  4367.           
  4368.           copied_block = block;
  4369.           block = BLOCK_CHAIN (block);
  4370.         }
  4371.       while (copied_block != last_block);
  4372.       
  4373.       /* Remember the last block created, so that we can update the
  4374.          info in the tables.  */
  4375.       if (last_block_created == 0)
  4376.         last_block_created = insert_after;
  4377.     }
  4378.       
  4379.       /* For all nested loops for which LAST_BLOCK was originally the last
  4380.      block, update the tables to indicate that LAST_BLOCK_CREATED is
  4381.      now the last block in the loop.  */
  4382.       for (i = loop_number; last_block == loop_number_last_block[i];
  4383.        i = loop_outer_loop[i])
  4384.     loop_number_last_block[i] = last_block_created;
  4385.     }
  4386. }
  4387.