OSDN Git Service

* mkconfig.sh: Include insn-flags.h.
[pf3gnuchains/gcc-fork.git] / gcc / stmt.c
1 /* Expands front end tree to back end RTL for GNU C-Compiler
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3    1998, 1999, 2000 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* This file handles the generation of rtl code from tree structure
23    above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
24    It also creates the rtl expressions for parameters and auto variables
25    and has full responsibility for allocating stack slots.
26
27    The functions whose names start with `expand_' are called by the
28    parser to generate RTL instructions for various kinds of constructs.
29
30    Some control and binding constructs require calling several such
31    functions at different times.  For example, a simple if-then
32    is expanded by calling `expand_start_cond' (with the condition-expression
33    as argument) before parsing the then-clause and calling `expand_end_cond'
34    after parsing the then-clause.  */
35
36 #include "config.h"
37 #include "system.h"
38
39 #include "rtl.h"
40 #include "tree.h"
41 #include "tm_p.h"
42 #include "flags.h"
43 #include "except.h"
44 #include "function.h"
45 #include "insn-config.h"
46 #include "expr.h"
47 #include "hard-reg-set.h"
48 #include "obstack.h"
49 #include "loop.h"
50 #include "recog.h"
51 #include "machmode.h"
52 #include "toplev.h"
53 #include "output.h"
54 #include "ggc.h"
55
56 #define obstack_chunk_alloc xmalloc
57 #define obstack_chunk_free free
58 struct obstack stmt_obstack;
59
60 /* Assume that case vectors are not pc-relative.  */
61 #ifndef CASE_VECTOR_PC_RELATIVE
62 #define CASE_VECTOR_PC_RELATIVE 0
63 #endif
64 \f
65 /* Functions and data structures for expanding case statements.  */
66
67 /* Case label structure, used to hold info on labels within case
68    statements.  We handle "range" labels; for a single-value label
69    as in C, the high and low limits are the same.
70
71    An AVL tree of case nodes is initially created, and later transformed
72    to a list linked via the RIGHT fields in the nodes.  Nodes with
73    higher case values are later in the list.
74
75    Switch statements can be output in one of two forms.  A branch table
76    is used if there are more than a few labels and the labels are dense
77    within the range between the smallest and largest case value.  If a
78    branch table is used, no further manipulations are done with the case
79    node chain.
80
81    The alternative to the use of a branch table is to generate a series
82    of compare and jump insns.  When that is done, we use the LEFT, RIGHT,
83    and PARENT fields to hold a binary tree.  Initially the tree is
84    totally unbalanced, with everything on the right.  We balance the tree
85    with nodes on the left having lower case values than the parent
86    and nodes on the right having higher values.  We then output the tree
87    in order.  */
88
89 struct case_node
90 {
91   struct case_node      *left;  /* Left son in binary tree */
92   struct case_node      *right; /* Right son in binary tree; also node chain */
93   struct case_node      *parent; /* Parent of node in binary tree */
94   tree                  low;    /* Lowest index value for this label */
95   tree                  high;   /* Highest index value for this label */
96   tree                  code_label; /* Label to jump to when node matches */
97   int                   balance;
98 };
99
100 typedef struct case_node case_node;
101 typedef struct case_node *case_node_ptr;
102
103 /* These are used by estimate_case_costs and balance_case_nodes.  */
104
105 /* This must be a signed type, and non-ANSI compilers lack signed char.  */
106 static short cost_table_[129];
107 static int use_cost_table;
108 static int cost_table_initialized;
109
110 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
111    is unsigned.  */
112 #define COST_TABLE(I)  cost_table_[(unsigned HOST_WIDE_INT)((I) + 1)]
113 \f
114 /* Stack of control and binding constructs we are currently inside.
115
116    These constructs begin when you call `expand_start_WHATEVER'
117    and end when you call `expand_end_WHATEVER'.  This stack records
118    info about how the construct began that tells the end-function
119    what to do.  It also may provide information about the construct
120    to alter the behavior of other constructs within the body.
121    For example, they may affect the behavior of C `break' and `continue'.
122
123    Each construct gets one `struct nesting' object.
124    All of these objects are chained through the `all' field.
125    `nesting_stack' points to the first object (innermost construct).
126    The position of an entry on `nesting_stack' is in its `depth' field.
127
128    Each type of construct has its own individual stack.
129    For example, loops have `loop_stack'.  Each object points to the
130    next object of the same type through the `next' field.
131
132    Some constructs are visible to `break' exit-statements and others
133    are not.  Which constructs are visible depends on the language.
134    Therefore, the data structure allows each construct to be visible
135    or not, according to the args given when the construct is started.
136    The construct is visible if the `exit_label' field is non-null.
137    In that case, the value should be a CODE_LABEL rtx.  */
138
139 struct nesting
140 {
141   struct nesting *all;
142   struct nesting *next;
143   int depth;
144   rtx exit_label;
145   union
146     {
147       /* For conds (if-then and if-then-else statements).  */
148       struct
149         {
150           /* Label for the end of the if construct.
151              There is none if EXITFLAG was not set
152              and no `else' has been seen yet.  */
153           rtx endif_label;
154           /* Label for the end of this alternative.
155              This may be the end of the if or the next else/elseif.  */
156           rtx next_label;
157         } cond;
158       /* For loops.  */
159       struct
160         {
161           /* Label at the top of the loop; place to loop back to.  */
162           rtx start_label;
163           /* Label at the end of the whole construct.  */
164           rtx end_label;
165           /* Label before a jump that branches to the end of the whole
166              construct.  This is where destructors go if any.  */
167           rtx alt_end_label;
168           /* Label for `continue' statement to jump to;
169              this is in front of the stepper of the loop.  */
170           rtx continue_label;
171         } loop;
172       /* For variable binding contours.  */
173       struct
174         {
175           /* Sequence number of this binding contour within the function,
176              in order of entry.  */
177           int block_start_count;
178           /* Nonzero => value to restore stack to on exit.  */
179           rtx stack_level;
180           /* The NOTE that starts this contour.
181              Used by expand_goto to check whether the destination
182              is within each contour or not.  */
183           rtx first_insn;
184           /* Innermost containing binding contour that has a stack level.  */
185           struct nesting *innermost_stack_block;
186           /* List of cleanups to be run on exit from this contour.
187              This is a list of expressions to be evaluated.
188              The TREE_PURPOSE of each link is the ..._DECL node
189              which the cleanup pertains to.  */
190           tree cleanups;
191           /* List of cleanup-lists of blocks containing this block,
192              as they were at the locus where this block appears.
193              There is an element for each containing block,
194              ordered innermost containing block first.
195              The tail of this list can be 0,
196              if all remaining elements would be empty lists.
197              The element's TREE_VALUE is the cleanup-list of that block,
198              which may be null.  */
199           tree outer_cleanups;
200           /* Chain of labels defined inside this binding contour.
201              For contours that have stack levels or cleanups.  */
202           struct label_chain *label_chain;
203           /* Number of function calls seen, as of start of this block.  */
204           int n_function_calls;
205           /* Nonzero if this is associated with a EH region.  */
206           int exception_region;
207           /* The saved target_temp_slot_level from our outer block.
208              We may reset target_temp_slot_level to be the level of
209              this block, if that is done, target_temp_slot_level
210              reverts to the saved target_temp_slot_level at the very
211              end of the block.  */
212           int block_target_temp_slot_level;
213           /* True if we are currently emitting insns in an area of
214              output code that is controlled by a conditional
215              expression.  This is used by the cleanup handling code to
216              generate conditional cleanup actions.  */
217           int conditional_code;
218           /* A place to move the start of the exception region for any
219              of the conditional cleanups, must be at the end or after
220              the start of the last unconditional cleanup, and before any
221              conditional branch points.  */
222           rtx last_unconditional_cleanup;
223           /* When in a conditional context, this is the specific
224              cleanup list associated with last_unconditional_cleanup,
225              where we place the conditionalized cleanups.  */
226           tree *cleanup_ptr;
227         } block;
228       /* For switch (C) or case (Pascal) statements,
229          and also for dummies (see `expand_start_case_dummy').  */
230       struct
231         {
232           /* The insn after which the case dispatch should finally
233              be emitted.  Zero for a dummy.  */
234           rtx start;
235           /* A list of case labels; it is first built as an AVL tree.
236              During expand_end_case, this is converted to a list, and may be
237              rearranged into a nearly balanced binary tree.  */
238           struct case_node *case_list;
239           /* Label to jump to if no case matches.  */
240           tree default_label;
241           /* The expression to be dispatched on.  */
242           tree index_expr;
243           /* Type that INDEX_EXPR should be converted to.  */
244           tree nominal_type;
245           /* Name of this kind of statement, for warnings.  */
246           const char *printname;
247           /* Used to save no_line_numbers till we see the first case label.
248              We set this to -1 when we see the first case label in this
249              case statement.  */
250           int line_number_status;
251         } case_stmt;
252     } data;
253 };
254
255 /* Allocate and return a new `struct nesting'.  */
256
257 #define ALLOC_NESTING() \
258  (struct nesting *) obstack_alloc (&stmt_obstack, sizeof (struct nesting))
259
260 /* Pop the nesting stack element by element until we pop off
261    the element which is at the top of STACK.
262    Update all the other stacks, popping off elements from them
263    as we pop them from nesting_stack.  */
264
265 #define POPSTACK(STACK)                                 \
266 do { struct nesting *target = STACK;                    \
267      struct nesting *this;                              \
268      do { this = nesting_stack;                         \
269           if (loop_stack == this)                       \
270             loop_stack = loop_stack->next;              \
271           if (cond_stack == this)                       \
272             cond_stack = cond_stack->next;              \
273           if (block_stack == this)                      \
274             block_stack = block_stack->next;            \
275           if (stack_block_stack == this)                \
276             stack_block_stack = stack_block_stack->next; \
277           if (case_stack == this)                       \
278             case_stack = case_stack->next;              \
279           nesting_depth = nesting_stack->depth - 1;     \
280           nesting_stack = this->all;                    \
281           obstack_free (&stmt_obstack, this); }         \
282      while (this != target); } while (0)
283 \f
284 /* In some cases it is impossible to generate code for a forward goto
285    until the label definition is seen.  This happens when it may be necessary
286    for the goto to reset the stack pointer: we don't yet know how to do that.
287    So expand_goto puts an entry on this fixup list.
288    Each time a binding contour that resets the stack is exited,
289    we check each fixup.
290    If the target label has now been defined, we can insert the proper code.  */
291
292 struct goto_fixup
293 {
294   /* Points to following fixup.  */
295   struct goto_fixup *next;
296   /* Points to the insn before the jump insn.
297      If more code must be inserted, it goes after this insn.  */
298   rtx before_jump;
299   /* The LABEL_DECL that this jump is jumping to, or 0
300      for break, continue or return.  */
301   tree target;
302   /* The BLOCK for the place where this goto was found.  */
303   tree context;
304   /* The CODE_LABEL rtx that this is jumping to.  */
305   rtx target_rtl;
306   /* Number of binding contours started in current function
307      before the label reference.  */
308   int block_start_count;
309   /* The outermost stack level that should be restored for this jump.
310      Each time a binding contour that resets the stack is exited,
311      if the target label is *not* yet defined, this slot is updated.  */
312   rtx stack_level;
313   /* List of lists of cleanup expressions to be run by this goto.
314      There is one element for each block that this goto is within.
315      The tail of this list can be 0,
316      if all remaining elements would be empty.
317      The TREE_VALUE contains the cleanup list of that block as of the
318      time this goto was seen.
319      The TREE_ADDRESSABLE flag is 1 for a block that has been exited.  */
320   tree cleanup_list_list;
321 };
322
323 /* Within any binding contour that must restore a stack level,
324    all labels are recorded with a chain of these structures.  */
325
326 struct label_chain
327 {
328   /* Points to following fixup.  */
329   struct label_chain *next;
330   tree label;
331 };
332
333 struct stmt_status
334 {
335   /* Chain of all pending binding contours.  */
336   struct nesting *x_block_stack;
337
338   /* If any new stacks are added here, add them to POPSTACKS too.  */
339
340   /* Chain of all pending binding contours that restore stack levels
341      or have cleanups.  */
342   struct nesting *x_stack_block_stack;
343
344   /* Chain of all pending conditional statements.  */
345   struct nesting *x_cond_stack;
346
347   /* Chain of all pending loops.  */
348   struct nesting *x_loop_stack;
349
350   /* Chain of all pending case or switch statements.  */
351   struct nesting *x_case_stack;
352
353   /* Separate chain including all of the above,
354      chained through the `all' field.  */
355   struct nesting *x_nesting_stack;
356
357   /* Number of entries on nesting_stack now.  */
358   int x_nesting_depth;
359
360   /* Number of binding contours started so far in this function.  */
361   int x_block_start_count;
362
363   /* Each time we expand an expression-statement,
364      record the expr's type and its RTL value here.  */
365   tree x_last_expr_type;
366   rtx x_last_expr_value;
367
368   /* Nonzero if within a ({...}) grouping, in which case we must
369      always compute a value for each expr-stmt in case it is the last one.  */
370   int x_expr_stmts_for_value;
371
372   /* Filename and line number of last line-number note,
373      whether we actually emitted it or not.  */
374   const char *x_emit_filename;
375   int x_emit_lineno;
376
377   struct goto_fixup *x_goto_fixup_chain;
378 };
379
380 #define block_stack (cfun->stmt->x_block_stack)
381 #define stack_block_stack (cfun->stmt->x_stack_block_stack)
382 #define cond_stack (cfun->stmt->x_cond_stack)
383 #define loop_stack (cfun->stmt->x_loop_stack)
384 #define case_stack (cfun->stmt->x_case_stack)
385 #define nesting_stack (cfun->stmt->x_nesting_stack)
386 #define nesting_depth (cfun->stmt->x_nesting_depth)
387 #define current_block_start_count (cfun->stmt->x_block_start_count)
388 #define last_expr_type (cfun->stmt->x_last_expr_type)
389 #define last_expr_value (cfun->stmt->x_last_expr_value)
390 #define expr_stmts_for_value (cfun->stmt->x_expr_stmts_for_value)
391 #define emit_filename (cfun->stmt->x_emit_filename)
392 #define emit_lineno (cfun->stmt->x_emit_lineno)
393 #define goto_fixup_chain (cfun->stmt->x_goto_fixup_chain)
394
395 /* Non-zero if we are using EH to handle cleanus.  */
396 static int using_eh_for_cleanups_p = 0;
397
398 static int n_occurrences                PARAMS ((int, const char *));
399 static void expand_goto_internal        PARAMS ((tree, rtx, rtx));
400 static int expand_fixup                 PARAMS ((tree, rtx, rtx));
401 static rtx expand_nl_handler_label      PARAMS ((rtx, rtx));
402 static void expand_nl_goto_receiver     PARAMS ((void));
403 static void expand_nl_goto_receivers    PARAMS ((struct nesting *));
404 static void fixup_gotos                 PARAMS ((struct nesting *, rtx, tree,
405                                                rtx, int));
406 static void expand_null_return_1        PARAMS ((rtx, int));
407 static void expand_value_return         PARAMS ((rtx));
408 static int tail_recursion_args          PARAMS ((tree, tree));
409 static void expand_cleanups             PARAMS ((tree, tree, int, int));
410 static void check_seenlabel             PARAMS ((void));
411 static void do_jump_if_equal            PARAMS ((rtx, rtx, rtx, int));
412 static int estimate_case_costs          PARAMS ((case_node_ptr));
413 static void group_case_nodes            PARAMS ((case_node_ptr));
414 static void balance_case_nodes          PARAMS ((case_node_ptr *,
415                                                case_node_ptr));
416 static int node_has_low_bound           PARAMS ((case_node_ptr, tree));
417 static int node_has_high_bound          PARAMS ((case_node_ptr, tree));
418 static int node_is_bounded              PARAMS ((case_node_ptr, tree));
419 static void emit_jump_if_reachable      PARAMS ((rtx));
420 static void emit_case_nodes             PARAMS ((rtx, case_node_ptr, rtx, tree));
421 static struct case_node *case_tree2list PARAMS ((case_node *, case_node *));
422 static void mark_cond_nesting           PARAMS ((struct nesting *));
423 static void mark_loop_nesting           PARAMS ((struct nesting *));
424 static void mark_block_nesting          PARAMS ((struct nesting *));
425 static void mark_case_nesting           PARAMS ((struct nesting *));
426 static void mark_case_node              PARAMS ((struct case_node *));
427 static void mark_goto_fixup             PARAMS ((struct goto_fixup *));
428 static void free_case_nodes             PARAMS ((case_node_ptr));
429 \f
430 void
431 using_eh_for_cleanups ()
432 {
433   using_eh_for_cleanups_p = 1;
434 }
435
436 /* Mark N (known to be a cond-nesting) for GC.  */
437
438 static void
439 mark_cond_nesting (n)
440      struct nesting *n;
441 {
442   while (n)
443     {
444       ggc_mark_rtx (n->exit_label);
445       ggc_mark_rtx (n->data.cond.endif_label);
446       ggc_mark_rtx (n->data.cond.next_label);
447
448       n = n->next;
449     }
450 }
451
452 /* Mark N (known to be a loop-nesting) for GC.  */
453
454 static void
455 mark_loop_nesting (n)
456      struct nesting *n;
457 {
458
459   while (n)
460     {
461       ggc_mark_rtx (n->exit_label);
462       ggc_mark_rtx (n->data.loop.start_label);
463       ggc_mark_rtx (n->data.loop.end_label);
464       ggc_mark_rtx (n->data.loop.alt_end_label);
465       ggc_mark_rtx (n->data.loop.continue_label);
466
467       n = n->next;
468     }
469 }
470
471 /* Mark N (known to be a block-nesting) for GC.  */
472
473 static void
474 mark_block_nesting (n)
475      struct nesting *n;
476 {
477   while (n)
478     {
479       struct label_chain *l;
480
481       ggc_mark_rtx (n->exit_label);
482       ggc_mark_rtx (n->data.block.stack_level);
483       ggc_mark_rtx (n->data.block.first_insn);
484       ggc_mark_tree (n->data.block.cleanups);
485       ggc_mark_tree (n->data.block.outer_cleanups);
486
487       for (l = n->data.block.label_chain; l != NULL; l = l->next) 
488         {
489           ggc_mark (l);
490           ggc_mark_tree (l->label);
491         }
492
493       ggc_mark_rtx (n->data.block.last_unconditional_cleanup);
494
495       /* ??? cleanup_ptr never points outside the stack, does it?  */
496
497       n = n->next;
498     }
499 }
500
501 /* Mark N (known to be a case-nesting) for GC.  */
502
503 static void
504 mark_case_nesting (n)
505      struct nesting *n;
506 {
507   while (n)
508     {
509       ggc_mark_rtx (n->exit_label);
510       ggc_mark_rtx (n->data.case_stmt.start);
511
512       ggc_mark_tree (n->data.case_stmt.default_label);
513       ggc_mark_tree (n->data.case_stmt.index_expr);
514       ggc_mark_tree (n->data.case_stmt.nominal_type);
515
516       mark_case_node (n->data.case_stmt.case_list);
517       n = n->next;
518     }
519 }
520
521 /* Mark C for GC.  */
522
523 static void
524 mark_case_node (c)
525      struct case_node *c;
526 {
527   if (c != 0)
528     {
529       ggc_mark_tree (c->low);
530       ggc_mark_tree (c->high);
531       ggc_mark_tree (c->code_label);
532
533       mark_case_node (c->right);
534       mark_case_node (c->left);
535     }
536 }
537
538 /* Mark G for GC.  */
539
540 static void
541 mark_goto_fixup (g)
542      struct goto_fixup *g;
543 {
544   while (g)
545     {
546       ggc_mark (g);
547       ggc_mark_rtx (g->before_jump);
548       ggc_mark_tree (g->target);
549       ggc_mark_tree (g->context);
550       ggc_mark_rtx (g->target_rtl);
551       ggc_mark_rtx (g->stack_level);
552       ggc_mark_tree (g->cleanup_list_list);
553
554       g = g->next;
555     }
556 }
557
558 /* Clear out all parts of the state in F that can safely be discarded
559    after the function has been compiled, to let garbage collection
560    reclaim the memory.  */
561
562 void
563 free_stmt_status (f)
564      struct function *f;
565 {
566   /* We're about to free the function obstack.  If we hold pointers to
567      things allocated there, then we'll try to mark them when we do
568      GC.  So, we clear them out here explicitly.  */
569   if (f->stmt)
570     free (f->stmt);
571   f->stmt = NULL;
572 }
573
574 /* Mark P for GC.  */
575
576 void
577 mark_stmt_status (p)
578      struct stmt_status *p;
579 {
580   if (p == 0)
581     return;
582
583   mark_block_nesting (p->x_block_stack);
584   mark_cond_nesting (p->x_cond_stack);
585   mark_loop_nesting (p->x_loop_stack);
586   mark_case_nesting (p->x_case_stack);
587
588   ggc_mark_tree (p->x_last_expr_type);
589   /* last_epxr_value is only valid if last_expr_type is nonzero.  */
590   if (p->x_last_expr_type)
591     ggc_mark_rtx (p->x_last_expr_value);
592
593   mark_goto_fixup (p->x_goto_fixup_chain);
594 }
595
596 void
597 init_stmt ()
598 {
599   gcc_obstack_init (&stmt_obstack);
600 }
601
602 void
603 init_stmt_for_function ()
604 {
605   cfun->stmt = (struct stmt_status *) xmalloc (sizeof (struct stmt_status));
606
607   /* We are not currently within any block, conditional, loop or case.  */
608   block_stack = 0;
609   stack_block_stack = 0;
610   loop_stack = 0;
611   case_stack = 0;
612   cond_stack = 0;
613   nesting_stack = 0;
614   nesting_depth = 0;
615
616   current_block_start_count = 0;
617
618   /* No gotos have been expanded yet.  */
619   goto_fixup_chain = 0;
620
621   /* We are not processing a ({...}) grouping.  */
622   expr_stmts_for_value = 0;
623   last_expr_type = 0;
624   last_expr_value = NULL_RTX;
625 }
626 \f
627 /* Return nonzero if anything is pushed on the loop, condition, or case
628    stack.  */
629 int
630 in_control_zone_p ()
631 {
632   return cond_stack || loop_stack || case_stack;
633 }
634
635 /* Record the current file and line.  Called from emit_line_note.  */
636 void
637 set_file_and_line_for_stmt (file, line)
638      const char *file;
639      int line;
640 {
641   /* If we're outputting an inline function, and we add a line note,
642      there may be no CFUN->STMT information.  So, there's no need to
643      update it.  */
644   if (cfun->stmt)
645     {
646       emit_filename = file;
647       emit_lineno = line;
648     }
649 }
650
651 /* Emit a no-op instruction.  */
652
653 void
654 emit_nop ()
655 {
656   rtx last_insn;
657
658   last_insn = get_last_insn ();
659   if (!optimize
660       && (GET_CODE (last_insn) == CODE_LABEL
661           || (GET_CODE (last_insn) == NOTE
662               && prev_real_insn (last_insn) == 0)))
663     emit_insn (gen_nop ());
664 }
665 \f
666 /* Return the rtx-label that corresponds to a LABEL_DECL,
667    creating it if necessary.  */
668
669 rtx
670 label_rtx (label)
671      tree label;
672 {
673   if (TREE_CODE (label) != LABEL_DECL)
674     abort ();
675
676   if (!DECL_RTL_SET_P (label))
677     SET_DECL_RTL (label, gen_label_rtx ());
678
679   return DECL_RTL (label);
680 }
681
682
683 /* Add an unconditional jump to LABEL as the next sequential instruction.  */
684
685 void
686 emit_jump (label)
687      rtx label;
688 {
689   do_pending_stack_adjust ();
690   emit_jump_insn (gen_jump (label));
691   emit_barrier ();
692 }
693
694 /* Emit code to jump to the address
695    specified by the pointer expression EXP.  */
696
697 void
698 expand_computed_goto (exp)
699      tree exp;
700 {
701   rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
702
703 #ifdef POINTERS_EXTEND_UNSIGNED
704   x = convert_memory_address (Pmode, x);
705 #endif
706
707   emit_queue ();
708   /* Be sure the function is executable.  */
709   if (current_function_check_memory_usage)
710     emit_library_call (chkr_check_exec_libfunc, LCT_CONST_MAKE_BLOCK,
711                        VOIDmode, 1, x, ptr_mode);
712
713   do_pending_stack_adjust ();
714   emit_indirect_jump (x);
715
716   current_function_has_computed_jump = 1;
717 }
718 \f
719 /* Handle goto statements and the labels that they can go to.  */
720
721 /* Specify the location in the RTL code of a label LABEL,
722    which is a LABEL_DECL tree node.
723
724    This is used for the kind of label that the user can jump to with a
725    goto statement, and for alternatives of a switch or case statement.
726    RTL labels generated for loops and conditionals don't go through here;
727    they are generated directly at the RTL level, by other functions below.
728
729    Note that this has nothing to do with defining label *names*.
730    Languages vary in how they do that and what that even means.  */
731
732 void
733 expand_label (label)
734      tree label;
735 {
736   struct label_chain *p;
737
738   do_pending_stack_adjust ();
739   emit_label (label_rtx (label));
740   if (DECL_NAME (label))
741     LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
742
743   if (stack_block_stack != 0)
744     {
745       p = (struct label_chain *) ggc_alloc (sizeof (struct label_chain));
746       p->next = stack_block_stack->data.block.label_chain;
747       stack_block_stack->data.block.label_chain = p;
748       p->label = label;
749     }
750 }
751
752 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
753    from nested functions.  */
754
755 void
756 declare_nonlocal_label (label)
757      tree label;
758 {
759   rtx slot = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
760
761   nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
762   LABEL_PRESERVE_P (label_rtx (label)) = 1;
763   if (nonlocal_goto_handler_slots == 0)
764     {
765       emit_stack_save (SAVE_NONLOCAL,
766                        &nonlocal_goto_stack_level,
767                        PREV_INSN (tail_recursion_reentry));
768     }
769   nonlocal_goto_handler_slots
770     = gen_rtx_EXPR_LIST (VOIDmode, slot, nonlocal_goto_handler_slots);
771 }
772
773 /* Generate RTL code for a `goto' statement with target label LABEL.
774    LABEL should be a LABEL_DECL tree node that was or will later be
775    defined with `expand_label'.  */
776
777 void
778 expand_goto (label)
779      tree label;
780 {
781   tree context;
782
783   /* Check for a nonlocal goto to a containing function.  */
784   context = decl_function_context (label);
785   if (context != 0 && context != current_function_decl)
786     {
787       struct function *p = find_function_data (context);
788       rtx label_ref = gen_rtx_LABEL_REF (Pmode, label_rtx (label));
789       rtx handler_slot, static_chain, save_area, insn;
790       tree link;
791
792       /* Find the corresponding handler slot for this label.  */
793       handler_slot = p->x_nonlocal_goto_handler_slots;
794       for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label;
795            link = TREE_CHAIN (link))
796         handler_slot = XEXP (handler_slot, 1);
797       handler_slot = XEXP (handler_slot, 0);
798
799       p->has_nonlocal_label = 1;
800       current_function_has_nonlocal_goto = 1;
801       LABEL_REF_NONLOCAL_P (label_ref) = 1;
802
803       /* Copy the rtl for the slots so that they won't be shared in
804          case the virtual stack vars register gets instantiated differently
805          in the parent than in the child.  */
806
807       static_chain = copy_to_reg (lookup_static_chain (label));
808
809       /* Get addr of containing function's current nonlocal goto handler,
810          which will do any cleanups and then jump to the label.  */
811       handler_slot = copy_to_reg (replace_rtx (copy_rtx (handler_slot),
812                                                virtual_stack_vars_rtx,
813                                                static_chain));
814
815       /* Get addr of containing function's nonlocal save area.  */
816       save_area = p->x_nonlocal_goto_stack_level;
817       if (save_area)
818         save_area = replace_rtx (copy_rtx (save_area),
819                                  virtual_stack_vars_rtx, static_chain);
820
821 #if HAVE_nonlocal_goto
822       if (HAVE_nonlocal_goto)
823         emit_insn (gen_nonlocal_goto (static_chain, handler_slot,
824                                       save_area, label_ref));
825       else
826 #endif
827         {
828           /* Restore frame pointer for containing function.
829              This sets the actual hard register used for the frame pointer
830              to the location of the function's incoming static chain info.
831              The non-local goto handler will then adjust it to contain the
832              proper value and reload the argument pointer, if needed.  */
833           emit_move_insn (hard_frame_pointer_rtx, static_chain);
834           emit_stack_restore (SAVE_NONLOCAL, save_area, NULL_RTX);
835
836           /* USE of hard_frame_pointer_rtx added for consistency;
837              not clear if really needed.  */
838           emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
839           emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
840           emit_indirect_jump (handler_slot);
841         }
842
843       /* Search backwards to the jump insn and mark it as a 
844          non-local goto.  */
845       for (insn = get_last_insn ();
846            GET_CODE (insn) != JUMP_INSN; 
847            insn = PREV_INSN (insn))
848         continue;
849       REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO, const0_rtx,
850                                           REG_NOTES (insn));
851     }
852   else
853     expand_goto_internal (label, label_rtx (label), NULL_RTX);
854 }
855
856 /* Generate RTL code for a `goto' statement with target label BODY.
857    LABEL should be a LABEL_REF.
858    LAST_INSN, if non-0, is the rtx we should consider as the last
859    insn emitted (for the purposes of cleaning up a return).  */
860
861 static void
862 expand_goto_internal (body, label, last_insn)
863      tree body;
864      rtx label;
865      rtx last_insn;
866 {
867   struct nesting *block;
868   rtx stack_level = 0;
869
870   if (GET_CODE (label) != CODE_LABEL)
871     abort ();
872
873   /* If label has already been defined, we can tell now
874      whether and how we must alter the stack level.  */
875
876   if (PREV_INSN (label) != 0)
877     {
878       /* Find the innermost pending block that contains the label.
879          (Check containment by comparing insn-uids.)
880          Then restore the outermost stack level within that block,
881          and do cleanups of all blocks contained in it.  */
882       for (block = block_stack; block; block = block->next)
883         {
884           if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
885             break;
886           if (block->data.block.stack_level != 0)
887             stack_level = block->data.block.stack_level;
888           /* Execute the cleanups for blocks we are exiting.  */
889           if (block->data.block.cleanups != 0)
890             {
891               expand_cleanups (block->data.block.cleanups, NULL_TREE, 1, 1);
892               do_pending_stack_adjust ();
893             }
894         }
895
896       if (stack_level)
897         {
898           /* Ensure stack adjust isn't done by emit_jump, as this
899              would clobber the stack pointer.  This one should be
900              deleted as dead by flow.  */
901           clear_pending_stack_adjust ();
902           do_pending_stack_adjust ();
903
904           /* Don't do this adjust if it's to the end label and this function
905              is to return with a depressed stack pointer.  */
906           if (label == return_label
907               && (((TREE_CODE (TREE_TYPE (current_function_decl))
908                    == FUNCTION_TYPE)
909                    && (TYPE_RETURNS_STACK_DEPRESSED
910                        (TREE_TYPE (current_function_decl))))))
911             ;
912           else
913             emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
914         }
915
916       if (body != 0 && DECL_TOO_LATE (body))
917         error ("jump to `%s' invalidly jumps into binding contour",
918                IDENTIFIER_POINTER (DECL_NAME (body)));
919     }
920   /* Label not yet defined: may need to put this goto
921      on the fixup list.  */
922   else if (! expand_fixup (body, label, last_insn))
923     {
924       /* No fixup needed.  Record that the label is the target
925          of at least one goto that has no fixup.  */
926       if (body != 0)
927         TREE_ADDRESSABLE (body) = 1;
928     }
929
930   emit_jump (label);
931 }
932 \f
933 /* Generate if necessary a fixup for a goto
934    whose target label in tree structure (if any) is TREE_LABEL
935    and whose target in rtl is RTL_LABEL.
936
937    If LAST_INSN is nonzero, we pretend that the jump appears
938    after insn LAST_INSN instead of at the current point in the insn stream.
939
940    The fixup will be used later to insert insns just before the goto.
941    Those insns will restore the stack level as appropriate for the
942    target label, and will (in the case of C++) also invoke any object
943    destructors which have to be invoked when we exit the scopes which
944    are exited by the goto.
945
946    Value is nonzero if a fixup is made.  */
947
948 static int
949 expand_fixup (tree_label, rtl_label, last_insn)
950      tree tree_label;
951      rtx rtl_label;
952      rtx last_insn;
953 {
954   struct nesting *block, *end_block;
955
956   /* See if we can recognize which block the label will be output in.
957      This is possible in some very common cases.
958      If we succeed, set END_BLOCK to that block.
959      Otherwise, set it to 0.  */
960
961   if (cond_stack
962       && (rtl_label == cond_stack->data.cond.endif_label
963           || rtl_label == cond_stack->data.cond.next_label))
964     end_block = cond_stack;
965   /* If we are in a loop, recognize certain labels which
966      are likely targets.  This reduces the number of fixups
967      we need to create.  */
968   else if (loop_stack
969       && (rtl_label == loop_stack->data.loop.start_label
970           || rtl_label == loop_stack->data.loop.end_label
971           || rtl_label == loop_stack->data.loop.continue_label))
972     end_block = loop_stack;
973   else
974     end_block = 0;
975
976   /* Now set END_BLOCK to the binding level to which we will return.  */
977
978   if (end_block)
979     {
980       struct nesting *next_block = end_block->all;
981       block = block_stack;
982
983       /* First see if the END_BLOCK is inside the innermost binding level.
984          If so, then no cleanups or stack levels are relevant.  */
985       while (next_block && next_block != block)
986         next_block = next_block->all;
987
988       if (next_block)
989         return 0;
990
991       /* Otherwise, set END_BLOCK to the innermost binding level
992          which is outside the relevant control-structure nesting.  */
993       next_block = block_stack->next;
994       for (block = block_stack; block != end_block; block = block->all)
995         if (block == next_block)
996           next_block = next_block->next;
997       end_block = next_block;
998     }
999
1000   /* Does any containing block have a stack level or cleanups?
1001      If not, no fixup is needed, and that is the normal case
1002      (the only case, for standard C).  */
1003   for (block = block_stack; block != end_block; block = block->next)
1004     if (block->data.block.stack_level != 0
1005         || block->data.block.cleanups != 0)
1006       break;
1007
1008   if (block != end_block)
1009     {
1010       /* Ok, a fixup is needed.  Add a fixup to the list of such.  */
1011       struct goto_fixup *fixup
1012         = (struct goto_fixup *) ggc_alloc (sizeof (struct goto_fixup));
1013       /* In case an old stack level is restored, make sure that comes
1014          after any pending stack adjust.  */
1015       /* ?? If the fixup isn't to come at the present position,
1016          doing the stack adjust here isn't useful.  Doing it with our
1017          settings at that location isn't useful either.  Let's hope
1018          someone does it!  */
1019       if (last_insn == 0)
1020         do_pending_stack_adjust ();
1021       fixup->target = tree_label;
1022       fixup->target_rtl = rtl_label;
1023
1024       /* Create a BLOCK node and a corresponding matched set of
1025          NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
1026          this point.  The notes will encapsulate any and all fixup
1027          code which we might later insert at this point in the insn
1028          stream.  Also, the BLOCK node will be the parent (i.e. the
1029          `SUPERBLOCK') of any other BLOCK nodes which we might create
1030          later on when we are expanding the fixup code.
1031
1032          Note that optimization passes (including expand_end_loop)
1033          might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
1034          as a placeholder.  */
1035
1036       {
1037         register rtx original_before_jump
1038           = last_insn ? last_insn : get_last_insn ();
1039         rtx start;
1040         rtx end;
1041         tree block;
1042
1043         block = make_node (BLOCK);
1044         TREE_USED (block) = 1;
1045
1046         if (!cfun->x_whole_function_mode_p)
1047           insert_block (block);
1048         else
1049           {
1050             BLOCK_CHAIN (block)
1051               = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
1052             BLOCK_CHAIN (DECL_INITIAL (current_function_decl))
1053               = block;
1054           }
1055
1056         start_sequence ();
1057         start = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
1058         if (cfun->x_whole_function_mode_p)
1059           NOTE_BLOCK (start) = block;
1060         fixup->before_jump = emit_note (NULL_PTR, NOTE_INSN_DELETED);
1061         end = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
1062         if (cfun->x_whole_function_mode_p)
1063           NOTE_BLOCK (end) = block;
1064         fixup->context = block;
1065         end_sequence ();
1066         emit_insns_after (start, original_before_jump);
1067       }
1068
1069       fixup->block_start_count = current_block_start_count;
1070       fixup->stack_level = 0;
1071       fixup->cleanup_list_list
1072         = ((block->data.block.outer_cleanups
1073             || block->data.block.cleanups)
1074            ? tree_cons (NULL_TREE, block->data.block.cleanups,
1075                         block->data.block.outer_cleanups)
1076            : 0);
1077       fixup->next = goto_fixup_chain;
1078       goto_fixup_chain = fixup;
1079     }
1080
1081   return block != 0;
1082 }
1083 \f
1084 /* Expand any needed fixups in the outputmost binding level of the
1085    function.  FIRST_INSN is the first insn in the function.  */
1086
1087 void
1088 expand_fixups (first_insn)
1089      rtx first_insn;
1090 {
1091   fixup_gotos (NULL_PTR, NULL_RTX, NULL_TREE, first_insn, 0);
1092 }
1093
1094 /* When exiting a binding contour, process all pending gotos requiring fixups.
1095    THISBLOCK is the structure that describes the block being exited.
1096    STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
1097    CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
1098    FIRST_INSN is the insn that began this contour.
1099
1100    Gotos that jump out of this contour must restore the
1101    stack level and do the cleanups before actually jumping.
1102
1103    DONT_JUMP_IN nonzero means report error there is a jump into this
1104    contour from before the beginning of the contour.
1105    This is also done if STACK_LEVEL is nonzero.  */
1106
1107 static void
1108 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
1109      struct nesting *thisblock;
1110      rtx stack_level;
1111      tree cleanup_list;
1112      rtx first_insn;
1113      int dont_jump_in;
1114 {
1115   register struct goto_fixup *f, *prev;
1116
1117   /* F is the fixup we are considering; PREV is the previous one.  */
1118   /* We run this loop in two passes so that cleanups of exited blocks
1119      are run first, and blocks that are exited are marked so
1120      afterwards.  */
1121
1122   for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1123     {
1124       /* Test for a fixup that is inactive because it is already handled.  */
1125       if (f->before_jump == 0)
1126         {
1127           /* Delete inactive fixup from the chain, if that is easy to do.  */
1128           if (prev != 0)
1129             prev->next = f->next;
1130         }
1131       /* Has this fixup's target label been defined?
1132          If so, we can finalize it.  */
1133       else if (PREV_INSN (f->target_rtl) != 0)
1134         {
1135           register rtx cleanup_insns;
1136
1137           /* If this fixup jumped into this contour from before the beginning
1138              of this contour, report an error.   This code used to use
1139              the first non-label insn after f->target_rtl, but that's
1140              wrong since such can be added, by things like put_var_into_stack
1141              and have INSN_UIDs that are out of the range of the block.  */
1142           /* ??? Bug: this does not detect jumping in through intermediate
1143              blocks that have stack levels or cleanups.
1144              It detects only a problem with the innermost block
1145              around the label.  */
1146           if (f->target != 0
1147               && (dont_jump_in || stack_level || cleanup_list)
1148               && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
1149               && INSN_UID (first_insn) > INSN_UID (f->before_jump)
1150               && ! DECL_ERROR_ISSUED (f->target))
1151             {
1152               error_with_decl (f->target,
1153                                "label `%s' used before containing binding contour");
1154               /* Prevent multiple errors for one label.  */
1155               DECL_ERROR_ISSUED (f->target) = 1;
1156             }
1157
1158           /* We will expand the cleanups into a sequence of their own and
1159              then later on we will attach this new sequence to the insn
1160              stream just ahead of the actual jump insn.  */
1161
1162           start_sequence ();
1163
1164           /* Temporarily restore the lexical context where we will
1165              logically be inserting the fixup code.  We do this for the
1166              sake of getting the debugging information right.  */
1167
1168           pushlevel (0);
1169           set_block (f->context);
1170
1171           /* Expand the cleanups for blocks this jump exits.  */
1172           if (f->cleanup_list_list)
1173             {
1174               tree lists;
1175               for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1176                 /* Marked elements correspond to blocks that have been closed.
1177                    Do their cleanups.  */
1178                 if (TREE_ADDRESSABLE (lists)
1179                     && TREE_VALUE (lists) != 0)
1180                   {
1181                     expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1182                     /* Pop any pushes done in the cleanups,
1183                        in case function is about to return.  */
1184                     do_pending_stack_adjust ();
1185                   }
1186             }
1187
1188           /* Restore stack level for the biggest contour that this
1189              jump jumps out of.  */
1190           if (f->stack_level
1191               && ! (f->target_rtl == return_label
1192                     && ((TREE_CODE (TREE_TYPE (current_function_decl))
1193                          == FUNCTION_TYPE)
1194                         && (TYPE_RETURNS_STACK_DEPRESSED
1195                             (TREE_TYPE (current_function_decl))))))
1196             emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1197
1198           /* Finish up the sequence containing the insns which implement the
1199              necessary cleanups, and then attach that whole sequence to the
1200              insn stream just ahead of the actual jump insn.  Attaching it
1201              at that point insures that any cleanups which are in fact
1202              implicit C++ object destructions (which must be executed upon
1203              leaving the block) appear (to the debugger) to be taking place
1204              in an area of the generated code where the object(s) being
1205              destructed are still "in scope".  */
1206
1207           cleanup_insns = get_insns ();
1208           poplevel (1, 0, 0);
1209
1210           end_sequence ();
1211           emit_insns_after (cleanup_insns, f->before_jump);
1212
1213           f->before_jump = 0;
1214         }
1215     }
1216
1217   /* For any still-undefined labels, do the cleanups for this block now.
1218      We must do this now since items in the cleanup list may go out
1219      of scope when the block ends.  */
1220   for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1221     if (f->before_jump != 0
1222         && PREV_INSN (f->target_rtl) == 0
1223         /* Label has still not appeared.  If we are exiting a block with
1224            a stack level to restore, that started before the fixup,
1225            mark this stack level as needing restoration
1226            when the fixup is later finalized.   */
1227         && thisblock != 0
1228         /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1229            means the label is undefined.  That's erroneous, but possible.  */
1230         && (thisblock->data.block.block_start_count
1231             <= f->block_start_count))
1232       {
1233         tree lists = f->cleanup_list_list;
1234         rtx cleanup_insns;
1235
1236         for (; lists; lists = TREE_CHAIN (lists))
1237           /* If the following elt. corresponds to our containing block
1238              then the elt. must be for this block.  */
1239           if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1240             {
1241               start_sequence ();
1242               pushlevel (0);
1243               set_block (f->context);
1244               expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1245               do_pending_stack_adjust ();
1246               cleanup_insns = get_insns ();
1247               poplevel (1, 0, 0);
1248               end_sequence ();
1249               if (cleanup_insns != 0)
1250                 f->before_jump
1251                   = emit_insns_after (cleanup_insns, f->before_jump);
1252
1253               f->cleanup_list_list = TREE_CHAIN (lists);
1254             }
1255
1256         if (stack_level)
1257           f->stack_level = stack_level;
1258       }
1259 }
1260 \f
1261 /* Return the number of times character C occurs in string S.  */
1262 static int
1263 n_occurrences (c, s)
1264      int c;
1265      const char *s;
1266 {
1267   int n = 0;
1268   while (*s)
1269     n += (*s++ == c);
1270   return n;
1271 }
1272 \f
1273 /* Generate RTL for an asm statement (explicit assembler code).
1274    BODY is a STRING_CST node containing the assembler code text,
1275    or an ADDR_EXPR containing a STRING_CST.  */
1276
1277 void
1278 expand_asm (body)
1279      tree body;
1280 {
1281   if (current_function_check_memory_usage)
1282     {
1283       error ("`asm' cannot be used in function where memory usage is checked");
1284       return;
1285     }
1286
1287   if (TREE_CODE (body) == ADDR_EXPR)
1288     body = TREE_OPERAND (body, 0);
1289
1290   emit_insn (gen_rtx_ASM_INPUT (VOIDmode,
1291                                 TREE_STRING_POINTER (body)));
1292   last_expr_type = 0;
1293 }
1294
1295 /* Generate RTL for an asm statement with arguments.
1296    STRING is the instruction template.
1297    OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1298    Each output or input has an expression in the TREE_VALUE and
1299    a constraint-string in the TREE_PURPOSE.
1300    CLOBBERS is a list of STRING_CST nodes each naming a hard register
1301    that is clobbered by this insn.
1302
1303    Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1304    Some elements of OUTPUTS may be replaced with trees representing temporary
1305    values.  The caller should copy those temporary values to the originally
1306    specified lvalues.
1307
1308    VOL nonzero means the insn is volatile; don't optimize it.  */
1309
1310 void
1311 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1312      tree string, outputs, inputs, clobbers;
1313      int vol;
1314      const char *filename;
1315      int line;
1316 {
1317   rtvec argvec, constraints;
1318   rtx body;
1319   int ninputs = list_length (inputs);
1320   int noutputs = list_length (outputs);
1321   int ninout = 0;
1322   int nclobbers;
1323   tree tail;
1324   register int i;
1325   /* Vector of RTX's of evaluated output operands.  */
1326   rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1327   int *inout_opnum = (int *) alloca (noutputs * sizeof (int));
1328   rtx *real_output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1329   enum machine_mode *inout_mode
1330     = (enum machine_mode *) alloca (noutputs * sizeof (enum machine_mode));
1331   /* The insn we have emitted.  */
1332   rtx insn;
1333   int old_generating_concat_p = generating_concat_p;
1334
1335   /* An ASM with no outputs needs to be treated as volatile, for now.  */
1336   if (noutputs == 0)
1337     vol = 1;
1338
1339   if (current_function_check_memory_usage)
1340     {
1341       error ("`asm' cannot be used with `-fcheck-memory-usage'");
1342       return;
1343     }
1344
1345 #ifdef MD_ASM_CLOBBERS
1346   /* Sometimes we wish to automatically clobber registers across an asm.
1347      Case in point is when the i386 backend moved from cc0 to a hard reg --
1348      maintaining source-level compatability means automatically clobbering
1349      the flags register.  */
1350   MD_ASM_CLOBBERS (clobbers);
1351 #endif
1352
1353   if (current_function_check_memory_usage)
1354     {
1355       error ("`asm' cannot be used in function where memory usage is checked");
1356       return;
1357     }
1358
1359   /* Count the number of meaningful clobbered registers, ignoring what
1360      we would ignore later.  */
1361   nclobbers = 0;
1362   for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1363     {
1364       const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1365
1366       i = decode_reg_name (regname);
1367       if (i >= 0 || i == -4)
1368         ++nclobbers;
1369       else if (i == -2)
1370         error ("unknown register name `%s' in `asm'", regname);
1371     }
1372
1373   last_expr_type = 0;
1374
1375   /* Check that the number of alternatives is constant across all
1376      operands.  */
1377   if (outputs || inputs)
1378     {
1379       tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1380       int nalternatives = n_occurrences (',', TREE_STRING_POINTER (tmp));
1381       tree next = inputs;
1382
1383       if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1384         {
1385           error ("too many alternatives in `asm'");
1386           return;
1387         }
1388
1389       tmp = outputs;
1390       while (tmp)
1391         {
1392           const char *constraint = TREE_STRING_POINTER (TREE_PURPOSE (tmp));
1393
1394           if (n_occurrences (',', constraint) != nalternatives)
1395             {
1396               error ("operand constraints for `asm' differ in number of alternatives");
1397               return;
1398             }
1399
1400           if (TREE_CHAIN (tmp))
1401             tmp = TREE_CHAIN (tmp);
1402           else
1403             tmp = next, next = 0;
1404         }
1405     }
1406
1407   for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1408     {
1409       tree val = TREE_VALUE (tail);
1410       tree type = TREE_TYPE (val);
1411       const char *constraint;
1412       char *p;
1413       int c_len;
1414       int j;
1415       int is_inout = 0;
1416       int allows_reg = 0;
1417       int allows_mem = 0;
1418
1419       /* If there's an erroneous arg, emit no insn.  */
1420       if (TREE_TYPE (val) == error_mark_node)
1421         return;
1422
1423       /* Make sure constraint has `=' and does not have `+'.  Also, see
1424          if it allows any register.  Be liberal on the latter test, since
1425          the worst that happens if we get it wrong is we issue an error
1426          message.  */
1427
1428       constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1429       c_len = strlen (constraint);
1430
1431       /* Allow the `=' or `+' to not be at the beginning of the string,
1432          since it wasn't explicitly documented that way, and there is a
1433          large body of code that puts it last.  Swap the character to
1434          the front, so as not to uglify any place else.  */
1435       switch (c_len)
1436         {
1437         default:
1438           if ((p = strchr (constraint, '=')) != NULL)
1439             break;
1440           if ((p = strchr (constraint, '+')) != NULL)
1441             break;
1442         case 0:
1443           error ("output operand constraint lacks `='");
1444           return;
1445         }
1446       j = p - constraint;
1447       is_inout = *p == '+';
1448
1449       if (j || is_inout)
1450         {
1451           /* Have to throw away this constraint string and get a new one.  */
1452           char *buf = alloca (c_len + 1);
1453           buf[0] = '=';
1454           if (j)
1455             memcpy (buf + 1, constraint, j);
1456           memcpy (buf + 1 + j, p + 1, c_len - j);  /* not -j-1 - copy null */
1457           constraint = ggc_alloc_string (buf, c_len);
1458
1459           if (j)
1460             warning (
1461                 "output constraint `%c' for operand %d is not at the beginning",
1462                 *p, i);
1463         }
1464
1465       /* Make sure we can specify the matching operand.  */
1466       if (is_inout && i > 9)
1467         {
1468           error ("output operand constraint %d contains `+'", i);
1469           return;
1470         }
1471
1472       for (j = 1; j < c_len; j++)
1473         switch (constraint[j])
1474           {
1475           case '+':
1476           case '=':
1477             error ("operand constraint contains '+' or '=' at illegal position.");
1478             return;
1479
1480           case '%':
1481             if (i + 1 == ninputs + noutputs)
1482               {
1483                 error ("`%%' constraint used with last operand");
1484                 return;
1485               }
1486             break;
1487
1488           case '?':  case '!':  case '*':  case '&':  case '#':
1489           case 'E':  case 'F':  case 'G':  case 'H':
1490           case 's':  case 'i':  case 'n':
1491           case 'I':  case 'J':  case 'K':  case 'L':  case 'M':
1492           case 'N':  case 'O':  case 'P':  case ',':
1493             break;
1494
1495           case '0':  case '1':  case '2':  case '3':  case '4':
1496           case '5':  case '6':  case '7':  case '8':  case '9':
1497             error ("matching constraint not valid in output operand");
1498             break;
1499
1500           case 'V':  case 'm':  case 'o':
1501             allows_mem = 1;
1502             break;
1503
1504           case '<':  case '>':
1505           /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1506              excepting those that expand_call created.  So match memory
1507              and hope.  */
1508             allows_mem = 1;
1509             break;
1510
1511           case 'g':  case 'X':
1512             allows_reg = 1;
1513             allows_mem = 1;
1514             break;
1515
1516           case 'p': case 'r':
1517             allows_reg = 1;
1518             break;
1519
1520           default:
1521             if (! ISALPHA (constraint[j]))
1522               {
1523                 error ("invalid punctuation `%c' in constraint",
1524                        constraint[j]);
1525                 return;
1526               }
1527             if (REG_CLASS_FROM_LETTER (constraint[j]) != NO_REGS)
1528               allows_reg = 1;
1529 #ifdef EXTRA_CONSTRAINT
1530             else
1531               {
1532                 /* Otherwise we can't assume anything about the nature of
1533                    the constraint except that it isn't purely registers.
1534                    Treat it like "g" and hope for the best.  */
1535                 allows_reg = 1;
1536                 allows_mem = 1;
1537               }
1538 #endif
1539             break;
1540           }
1541
1542       /* If an output operand is not a decl or indirect ref and our constraint
1543          allows a register, make a temporary to act as an intermediate.
1544          Make the asm insn write into that, then our caller will copy it to
1545          the real output operand.  Likewise for promoted variables.  */
1546
1547       generating_concat_p = 0;
1548
1549       real_output_rtx[i] = NULL_RTX;
1550       if ((TREE_CODE (val) == INDIRECT_REF
1551            && allows_mem)
1552           || (DECL_P (val)
1553               && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1554               && ! (GET_CODE (DECL_RTL (val)) == REG
1555                     && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1556           || ! allows_reg
1557           || is_inout)
1558         {
1559           if (! allows_reg)
1560             mark_addressable (TREE_VALUE (tail));
1561
1562           output_rtx[i]
1563             = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode,
1564                            EXPAND_MEMORY_USE_WO);
1565
1566           if (! allows_reg && GET_CODE (output_rtx[i]) != MEM)
1567             error ("output number %d not directly addressable", i);
1568           if ((! allows_mem && GET_CODE (output_rtx[i]) == MEM)
1569               || GET_CODE (output_rtx[i]) == CONCAT)
1570             {
1571               real_output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1572               output_rtx[i] = gen_reg_rtx (GET_MODE (output_rtx[i]));
1573               if (is_inout)
1574                 emit_move_insn (output_rtx[i], real_output_rtx[i]);
1575             }
1576         }
1577       else
1578         {
1579           output_rtx[i] = assign_temp (type, 0, 0, 1);
1580           TREE_VALUE (tail) = make_tree (type, output_rtx[i]);
1581         }
1582
1583       generating_concat_p = old_generating_concat_p;
1584
1585       if (is_inout)
1586         {
1587           inout_mode[ninout] = TYPE_MODE (TREE_TYPE (TREE_VALUE (tail)));
1588           inout_opnum[ninout++] = i;
1589         }
1590     }
1591
1592   ninputs += ninout;
1593   if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1594     {
1595       error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1596       return;
1597     }
1598
1599   /* Make vectors for the expression-rtx and constraint strings.  */
1600
1601   argvec = rtvec_alloc (ninputs);
1602   constraints = rtvec_alloc (ninputs);
1603
1604   body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
1605                                 : GET_MODE (output_rtx[0])),
1606                                TREE_STRING_POINTER (string), 
1607                                empty_string, 0, argvec, constraints,
1608                                filename, line);
1609
1610   MEM_VOLATILE_P (body) = vol;
1611
1612   /* Eval the inputs and put them into ARGVEC.
1613      Put their constraints into ASM_INPUTs and store in CONSTRAINTS.  */
1614
1615   i = 0;
1616   for (tail = inputs; tail; tail = TREE_CHAIN (tail))
1617     {
1618       int j;
1619       int allows_reg = 0, allows_mem = 0;
1620       const char *constraint, *orig_constraint;
1621       int c_len;
1622       rtx op;
1623
1624       /* If there's an erroneous arg, emit no insn,
1625          because the ASM_INPUT would get VOIDmode
1626          and that could cause a crash in reload.  */
1627       if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1628         return;
1629
1630       /* ??? Can this happen, and does the error message make any sense? */
1631       if (TREE_PURPOSE (tail) == NULL_TREE)
1632         {
1633           error ("hard register `%s' listed as input operand to `asm'",
1634                  TREE_STRING_POINTER (TREE_VALUE (tail)) );
1635           return;
1636         }
1637
1638       constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1639       c_len = strlen (constraint);
1640       orig_constraint = constraint;
1641
1642       /* Make sure constraint has neither `=', `+', nor '&'.  */
1643
1644       for (j = 0; j < c_len; j++)
1645         switch (constraint[j])
1646           {
1647           case '+':  case '=':  case '&':
1648             if (constraint == orig_constraint)
1649               {
1650                 error ("input operand constraint contains `%c'",
1651                        constraint[j]);
1652                 return;
1653               }
1654             break;
1655
1656           case '%':
1657             if (constraint == orig_constraint
1658                 && i + 1 == ninputs - ninout)
1659               {
1660                 error ("`%%' constraint used with last operand");
1661                 return;
1662               }
1663             break;
1664
1665           case 'V':  case 'm':  case 'o':
1666             allows_mem = 1;
1667             break;
1668
1669           case '<':  case '>':
1670           case '?':  case '!':  case '*':  case '#':
1671           case 'E':  case 'F':  case 'G':  case 'H':
1672           case 's':  case 'i':  case 'n':
1673           case 'I':  case 'J':  case 'K':  case 'L':  case 'M':
1674           case 'N':  case 'O':  case 'P':  case ',':
1675             break;
1676
1677             /* Whether or not a numeric constraint allows a register is
1678                decided by the matching constraint, and so there is no need
1679                to do anything special with them.  We must handle them in
1680                the default case, so that we don't unnecessarily force
1681                operands to memory.  */
1682           case '0':  case '1':  case '2':  case '3':  case '4':
1683           case '5':  case '6':  case '7':  case '8':  case '9':
1684             if (constraint[j] >= '0' + noutputs)
1685               {
1686                 error
1687                   ("matching constraint references invalid operand number");
1688                 return;
1689               }
1690
1691             /* Try and find the real constraint for this dup.  */
1692             if ((j == 0 && c_len == 1)
1693                 || (j == 1 && c_len == 2 && constraint[0] == '%'))
1694               {
1695                 tree o = outputs;
1696
1697                 for (j = constraint[j] - '0'; j > 0; --j)
1698                   o = TREE_CHAIN (o);
1699
1700                 constraint = TREE_STRING_POINTER (TREE_PURPOSE (o));
1701                 c_len = strlen (constraint);
1702                 j = 0;
1703                 break;
1704               }
1705
1706             /* Fall through.  */
1707
1708           case 'p':  case 'r':
1709             allows_reg = 1;
1710             break;
1711
1712           case 'g':  case 'X':
1713             allows_reg = 1;
1714             allows_mem = 1;
1715             break;
1716
1717           default:
1718             if (! ISALPHA (constraint[j]))
1719               {
1720                 error ("invalid punctuation `%c' in constraint",
1721                        constraint[j]);
1722                 return;
1723               }
1724             if (REG_CLASS_FROM_LETTER (constraint[j]) != NO_REGS)
1725               allows_reg = 1;
1726 #ifdef EXTRA_CONSTRAINT
1727             else
1728               {
1729                 /* Otherwise we can't assume anything about the nature of
1730                    the constraint except that it isn't purely registers.
1731                    Treat it like "g" and hope for the best.  */
1732                 allows_reg = 1;
1733                 allows_mem = 1;
1734               }
1735 #endif
1736             break;
1737           }
1738
1739       if (! allows_reg && allows_mem)
1740         mark_addressable (TREE_VALUE (tail));
1741
1742       op = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode, 0);
1743
1744       /* Never pass a CONCAT to an ASM.  */
1745       generating_concat_p = 0;
1746       if (GET_CODE (op) == CONCAT)
1747         op = force_reg (GET_MODE (op), op);
1748
1749       if (asm_operand_ok (op, constraint) <= 0)
1750         {
1751           if (allows_reg)
1752             op = force_reg (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))), op);
1753           else if (!allows_mem)
1754             warning ("asm operand %d probably doesn't match constraints", i);
1755           else if (CONSTANT_P (op))
1756             op = force_const_mem (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1757                                   op);
1758           else if (GET_CODE (op) == REG
1759                    || GET_CODE (op) == SUBREG
1760                    || GET_CODE (op) == CONCAT)
1761             {
1762               tree type = TREE_TYPE (TREE_VALUE (tail));
1763               tree qual_type = build_qualified_type (type,
1764                                                      (TYPE_QUALS (type)
1765                                                       | TYPE_QUAL_CONST));
1766               rtx memloc = assign_temp (qual_type, 1, 1, 1);
1767
1768               emit_move_insn (memloc, op);
1769               op = memloc;
1770             }
1771
1772           else if (GET_CODE (op) == MEM && MEM_VOLATILE_P (op))
1773             /* We won't recognize volatile memory as available a
1774                memory_operand at this point.  Ignore it.  */
1775             ;
1776           else if (queued_subexp_p (op))
1777             ;
1778           else
1779             /* ??? Leave this only until we have experience with what
1780                happens in combine and elsewhere when constraints are
1781                not satisfied.  */
1782             warning ("asm operand %d probably doesn't match constraints", i);
1783         }
1784       generating_concat_p = old_generating_concat_p;
1785       ASM_OPERANDS_INPUT (body, i) = op;
1786
1787       ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
1788         = gen_rtx_ASM_INPUT (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1789                              orig_constraint);
1790       i++;
1791     }
1792
1793   /* Protect all the operands from the queue now that they have all been
1794      evaluated.  */
1795
1796   generating_concat_p = 0;
1797
1798   for (i = 0; i < ninputs - ninout; i++)
1799     ASM_OPERANDS_INPUT (body, i)
1800       = protect_from_queue (ASM_OPERANDS_INPUT (body, i), 0);
1801
1802   for (i = 0; i < noutputs; i++)
1803     output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1804
1805   /* For in-out operands, copy output rtx to input rtx.  */
1806   for (i = 0; i < ninout; i++)
1807     {
1808       int j = inout_opnum[i];
1809
1810       ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
1811         = output_rtx[j];
1812       ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
1813         = gen_rtx_ASM_INPUT (inout_mode[i], digit_string (j));
1814     }
1815
1816   generating_concat_p = old_generating_concat_p;
1817
1818   /* Now, for each output, construct an rtx
1819      (set OUTPUT (asm_operands INSN OUTPUTNUMBER OUTPUTCONSTRAINT
1820                                ARGVEC CONSTRAINTS))
1821      If there is more than one, put them inside a PARALLEL.  */
1822
1823   if (noutputs == 1 && nclobbers == 0)
1824     {
1825       ASM_OPERANDS_OUTPUT_CONSTRAINT (body)
1826         = TREE_STRING_POINTER (TREE_PURPOSE (outputs));
1827       insn = emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1828     }
1829
1830   else if (noutputs == 0 && nclobbers == 0)
1831     {
1832       /* No output operands: put in a raw ASM_OPERANDS rtx.  */
1833       insn = emit_insn (body);
1834     }
1835
1836   else
1837     {
1838       rtx obody = body;
1839       int num = noutputs;
1840
1841       if (num == 0)
1842         num = 1;
1843
1844       body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1845
1846       /* For each output operand, store a SET.  */
1847       for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1848         {
1849           XVECEXP (body, 0, i)
1850             = gen_rtx_SET (VOIDmode,
1851                            output_rtx[i],
1852                            gen_rtx_ASM_OPERANDS
1853                            (GET_MODE (output_rtx[i]),
1854                             TREE_STRING_POINTER (string),
1855                             TREE_STRING_POINTER (TREE_PURPOSE (tail)),
1856                             i, argvec, constraints,
1857                             filename, line));
1858
1859           MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1860         }
1861
1862       /* If there are no outputs (but there are some clobbers)
1863          store the bare ASM_OPERANDS into the PARALLEL.  */
1864
1865       if (i == 0)
1866         XVECEXP (body, 0, i++) = obody;
1867
1868       /* Store (clobber REG) for each clobbered register specified.  */
1869
1870       for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1871         {
1872           const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1873           int j = decode_reg_name (regname);
1874
1875           if (j < 0)
1876             {
1877               if (j == -3)      /* `cc', which is not a register */
1878                 continue;
1879
1880               if (j == -4)      /* `memory', don't cache memory across asm */
1881                 {
1882                   XVECEXP (body, 0, i++)
1883                     = gen_rtx_CLOBBER (VOIDmode,
1884                                        gen_rtx_MEM
1885                                        (BLKmode,
1886                                         gen_rtx_SCRATCH (VOIDmode)));
1887                   continue;
1888                 }
1889
1890               /* Ignore unknown register, error already signaled.  */
1891               continue;
1892             }
1893
1894           /* Use QImode since that's guaranteed to clobber just one reg.  */
1895           XVECEXP (body, 0, i++)
1896             = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (QImode, j));
1897         }
1898
1899       insn = emit_insn (body);
1900     }
1901
1902   /* For any outputs that needed reloading into registers, spill them
1903      back to where they belong.  */
1904   for (i = 0; i < noutputs; ++i)
1905     if (real_output_rtx[i])
1906       emit_move_insn (real_output_rtx[i], output_rtx[i]);
1907
1908   free_temp_slots ();
1909 }
1910 \f
1911 /* Generate RTL to evaluate the expression EXP
1912    and remember it in case this is the VALUE in a ({... VALUE; }) constr.  */
1913
1914 void
1915 expand_expr_stmt (exp)
1916      tree exp;
1917 {
1918   /* If -W, warn about statements with no side effects,
1919      except for an explicit cast to void (e.g. for assert()), and
1920      except inside a ({...}) where they may be useful.  */
1921   if (expr_stmts_for_value == 0 && exp != error_mark_node)
1922     {
1923       if (! TREE_SIDE_EFFECTS (exp))
1924         {
1925           if ((extra_warnings || warn_unused_value)
1926               && !(TREE_CODE (exp) == CONVERT_EXPR
1927                    && VOID_TYPE_P (TREE_TYPE (exp))))
1928             warning_with_file_and_line (emit_filename, emit_lineno,
1929                                         "statement with no effect");
1930         }
1931       else if (warn_unused_value)
1932         warn_if_unused_value (exp);
1933     }
1934
1935   /* If EXP is of function type and we are expanding statements for
1936      value, convert it to pointer-to-function.  */
1937   if (expr_stmts_for_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
1938     exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
1939
1940   /* The call to `expand_expr' could cause last_expr_type and
1941      last_expr_value to get reset.  Therefore, we set last_expr_value
1942      and last_expr_type *after* calling expand_expr.  */
1943   last_expr_value = expand_expr (exp,
1944                                  (expr_stmts_for_value
1945                                   ? NULL_RTX : const0_rtx),
1946                                  VOIDmode, 0);
1947   last_expr_type = TREE_TYPE (exp);
1948
1949   /* If all we do is reference a volatile value in memory,
1950      copy it to a register to be sure it is actually touched.  */
1951   if (last_expr_value != 0 && GET_CODE (last_expr_value) == MEM
1952       && TREE_THIS_VOLATILE (exp))
1953     {
1954       if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode)
1955         ;
1956       else if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
1957         copy_to_reg (last_expr_value);
1958       else
1959         {
1960           rtx lab = gen_label_rtx ();
1961
1962           /* Compare the value with itself to reference it.  */
1963           emit_cmp_and_jump_insns (last_expr_value, last_expr_value, EQ,
1964                                    expand_expr (TYPE_SIZE (last_expr_type),
1965                                                 NULL_RTX, VOIDmode, 0),
1966                                    BLKmode, 0,
1967                                    TYPE_ALIGN (last_expr_type) / BITS_PER_UNIT,
1968                                    lab);
1969           emit_label (lab);
1970         }
1971     }
1972
1973   /* If this expression is part of a ({...}) and is in memory, we may have
1974      to preserve temporaries.  */
1975   preserve_temp_slots (last_expr_value);
1976
1977   /* Free any temporaries used to evaluate this expression.  Any temporary
1978      used as a result of this expression will already have been preserved
1979      above.  */
1980   free_temp_slots ();
1981
1982   emit_queue ();
1983 }
1984
1985 /* Warn if EXP contains any computations whose results are not used.
1986    Return 1 if a warning is printed; 0 otherwise.  */
1987
1988 int
1989 warn_if_unused_value (exp)
1990      tree exp;
1991 {
1992   if (TREE_USED (exp))
1993     return 0;
1994
1995   /* Don't warn about void constructs.  This includes casting to void,
1996      void function calls, and statement expressions with a final cast
1997      to void.  */
1998   if (VOID_TYPE_P (TREE_TYPE (exp)))
1999     return 0;
2000
2001   /* If this is an expression with side effects, don't warn.  */
2002   if (TREE_SIDE_EFFECTS (exp))
2003     return 0;
2004
2005   switch (TREE_CODE (exp))
2006     {
2007     case PREINCREMENT_EXPR:
2008     case POSTINCREMENT_EXPR:
2009     case PREDECREMENT_EXPR:
2010     case POSTDECREMENT_EXPR:
2011     case MODIFY_EXPR:
2012     case INIT_EXPR:
2013     case TARGET_EXPR:
2014     case CALL_EXPR:
2015     case METHOD_CALL_EXPR:
2016     case RTL_EXPR:
2017     case TRY_CATCH_EXPR:
2018     case WITH_CLEANUP_EXPR:
2019     case EXIT_EXPR:
2020       return 0;
2021
2022     case BIND_EXPR:
2023       /* For a binding, warn if no side effect within it.  */
2024       return warn_if_unused_value (TREE_OPERAND (exp, 1));
2025
2026     case SAVE_EXPR:
2027       return warn_if_unused_value (TREE_OPERAND (exp, 1));
2028
2029     case TRUTH_ORIF_EXPR:
2030     case TRUTH_ANDIF_EXPR:
2031       /* In && or ||, warn if 2nd operand has no side effect.  */
2032       return warn_if_unused_value (TREE_OPERAND (exp, 1));
2033
2034     case COMPOUND_EXPR:
2035       if (TREE_NO_UNUSED_WARNING (exp))
2036         return 0;
2037       if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
2038         return 1;
2039       /* Let people do `(foo (), 0)' without a warning.  */
2040       if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
2041         return 0;
2042       return warn_if_unused_value (TREE_OPERAND (exp, 1));
2043
2044     case NOP_EXPR:
2045     case CONVERT_EXPR:
2046     case NON_LVALUE_EXPR:
2047       /* Don't warn about conversions not explicit in the user's program.  */
2048       if (TREE_NO_UNUSED_WARNING (exp))
2049         return 0;
2050       /* Assignment to a cast usually results in a cast of a modify.
2051          Don't complain about that.  There can be an arbitrary number of
2052          casts before the modify, so we must loop until we find the first
2053          non-cast expression and then test to see if that is a modify.  */
2054       {
2055         tree tem = TREE_OPERAND (exp, 0);
2056
2057         while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
2058           tem = TREE_OPERAND (tem, 0);
2059
2060         if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
2061             || TREE_CODE (tem) == CALL_EXPR)
2062           return 0;
2063       }
2064       goto warn;
2065
2066     case INDIRECT_REF:
2067       /* Don't warn about automatic dereferencing of references, since
2068          the user cannot control it.  */
2069       if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
2070         return warn_if_unused_value (TREE_OPERAND (exp, 0));
2071       /* Fall through.  */
2072
2073     default:
2074       /* Referencing a volatile value is a side effect, so don't warn.  */
2075       if ((DECL_P (exp)
2076            || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
2077           && TREE_THIS_VOLATILE (exp))
2078         return 0;
2079
2080       /* If this is an expression which has no operands, there is no value
2081          to be unused.  There are no such language-independent codes,
2082          but front ends may define such.  */
2083       if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'e'
2084           && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
2085         return 0;
2086
2087     warn:
2088       warning_with_file_and_line (emit_filename, emit_lineno,
2089                                   "value computed is not used");
2090       return 1;
2091     }
2092 }
2093
2094 /* Clear out the memory of the last expression evaluated.  */
2095
2096 void
2097 clear_last_expr ()
2098 {
2099   last_expr_type = 0;
2100 }
2101
2102 /* Begin a statement which will return a value.
2103    Return the RTL_EXPR for this statement expr.
2104    The caller must save that value and pass it to expand_end_stmt_expr.  */
2105
2106 tree
2107 expand_start_stmt_expr ()
2108 {
2109   tree t;
2110
2111   /* Make the RTL_EXPR node temporary, not momentary,
2112      so that rtl_expr_chain doesn't become garbage.  */
2113   t = make_node (RTL_EXPR);
2114   do_pending_stack_adjust ();
2115   start_sequence_for_rtl_expr (t);
2116   NO_DEFER_POP;
2117   expr_stmts_for_value++;
2118   return t;
2119 }
2120
2121 /* Restore the previous state at the end of a statement that returns a value.
2122    Returns a tree node representing the statement's value and the
2123    insns to compute the value.
2124
2125    The nodes of that expression have been freed by now, so we cannot use them.
2126    But we don't want to do that anyway; the expression has already been
2127    evaluated and now we just want to use the value.  So generate a RTL_EXPR
2128    with the proper type and RTL value.
2129
2130    If the last substatement was not an expression,
2131    return something with type `void'.  */
2132
2133 tree
2134 expand_end_stmt_expr (t)
2135      tree t;
2136 {
2137   OK_DEFER_POP;
2138
2139   if (last_expr_type == 0)
2140     {
2141       last_expr_type = void_type_node;
2142       last_expr_value = const0_rtx;
2143     }
2144   else if (last_expr_value == 0)
2145     /* There are some cases where this can happen, such as when the
2146        statement is void type.  */
2147     last_expr_value = const0_rtx;
2148   else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2149     /* Remove any possible QUEUED.  */
2150     last_expr_value = protect_from_queue (last_expr_value, 0);
2151
2152   emit_queue ();
2153
2154   TREE_TYPE (t) = last_expr_type;
2155   RTL_EXPR_RTL (t) = last_expr_value;
2156   RTL_EXPR_SEQUENCE (t) = get_insns ();
2157
2158   rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2159
2160   end_sequence ();
2161
2162   /* Don't consider deleting this expr or containing exprs at tree level.  */
2163   TREE_SIDE_EFFECTS (t) = 1;
2164   /* Propagate volatility of the actual RTL expr.  */
2165   TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2166
2167   last_expr_type = 0;
2168   expr_stmts_for_value--;
2169
2170   return t;
2171 }
2172 \f
2173 /* Generate RTL for the start of an if-then.  COND is the expression
2174    whose truth should be tested.
2175
2176    If EXITFLAG is nonzero, this conditional is visible to
2177    `exit_something'.  */
2178
2179 void
2180 expand_start_cond (cond, exitflag)
2181      tree cond;
2182      int exitflag;
2183 {
2184   struct nesting *thiscond = ALLOC_NESTING ();
2185
2186   /* Make an entry on cond_stack for the cond we are entering.  */
2187
2188   thiscond->next = cond_stack;
2189   thiscond->all = nesting_stack;
2190   thiscond->depth = ++nesting_depth;
2191   thiscond->data.cond.next_label = gen_label_rtx ();
2192   /* Before we encounter an `else', we don't need a separate exit label
2193      unless there are supposed to be exit statements
2194      to exit this conditional.  */
2195   thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2196   thiscond->data.cond.endif_label = thiscond->exit_label;
2197   cond_stack = thiscond;
2198   nesting_stack = thiscond;
2199
2200   do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2201 }
2202
2203 /* Generate RTL between then-clause and the elseif-clause
2204    of an if-then-elseif-....  */
2205
2206 void
2207 expand_start_elseif (cond)
2208      tree cond;
2209 {
2210   if (cond_stack->data.cond.endif_label == 0)
2211     cond_stack->data.cond.endif_label = gen_label_rtx ();
2212   emit_jump (cond_stack->data.cond.endif_label);
2213   emit_label (cond_stack->data.cond.next_label);
2214   cond_stack->data.cond.next_label = gen_label_rtx ();
2215   do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2216 }
2217
2218 /* Generate RTL between the then-clause and the else-clause
2219    of an if-then-else.  */
2220
2221 void
2222 expand_start_else ()
2223 {
2224   if (cond_stack->data.cond.endif_label == 0)
2225     cond_stack->data.cond.endif_label = gen_label_rtx ();
2226
2227   emit_jump (cond_stack->data.cond.endif_label);
2228   emit_label (cond_stack->data.cond.next_label);
2229   cond_stack->data.cond.next_label = 0;  /* No more _else or _elseif calls.  */
2230 }
2231
2232 /* After calling expand_start_else, turn this "else" into an "else if"
2233    by providing another condition.  */
2234
2235 void
2236 expand_elseif (cond)
2237      tree cond;
2238 {
2239   cond_stack->data.cond.next_label = gen_label_rtx ();
2240   do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2241 }
2242
2243 /* Generate RTL for the end of an if-then.
2244    Pop the record for it off of cond_stack.  */
2245
2246 void
2247 expand_end_cond ()
2248 {
2249   struct nesting *thiscond = cond_stack;
2250
2251   do_pending_stack_adjust ();
2252   if (thiscond->data.cond.next_label)
2253     emit_label (thiscond->data.cond.next_label);
2254   if (thiscond->data.cond.endif_label)
2255     emit_label (thiscond->data.cond.endif_label);
2256
2257   POPSTACK (cond_stack);
2258   last_expr_type = 0;
2259 }
2260 \f
2261 /* Generate RTL for the start of a loop.  EXIT_FLAG is nonzero if this
2262    loop should be exited by `exit_something'.  This is a loop for which
2263    `expand_continue' will jump to the top of the loop.
2264
2265    Make an entry on loop_stack to record the labels associated with
2266    this loop.  */
2267
2268 struct nesting *
2269 expand_start_loop (exit_flag)
2270      int exit_flag;
2271 {
2272   register struct nesting *thisloop = ALLOC_NESTING ();
2273
2274   /* Make an entry on loop_stack for the loop we are entering.  */
2275
2276   thisloop->next = loop_stack;
2277   thisloop->all = nesting_stack;
2278   thisloop->depth = ++nesting_depth;
2279   thisloop->data.loop.start_label = gen_label_rtx ();
2280   thisloop->data.loop.end_label = gen_label_rtx ();
2281   thisloop->data.loop.alt_end_label = 0;
2282   thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2283   thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2284   loop_stack = thisloop;
2285   nesting_stack = thisloop;
2286
2287   do_pending_stack_adjust ();
2288   emit_queue ();
2289   emit_note (NULL_PTR, NOTE_INSN_LOOP_BEG);
2290   emit_label (thisloop->data.loop.start_label);
2291
2292   return thisloop;
2293 }
2294
2295 /* Like expand_start_loop but for a loop where the continuation point
2296    (for expand_continue_loop) will be specified explicitly.  */
2297
2298 struct nesting *
2299 expand_start_loop_continue_elsewhere (exit_flag)
2300      int exit_flag;
2301 {
2302   struct nesting *thisloop = expand_start_loop (exit_flag);
2303   loop_stack->data.loop.continue_label = gen_label_rtx ();
2304   return thisloop;
2305 }
2306
2307 /* Begin a null, aka do { } while (0) "loop".  But since the contents
2308    of said loop can still contain a break, we must frob the loop nest.  */
2309
2310 struct nesting *
2311 expand_start_null_loop ()
2312 {
2313   register struct nesting *thisloop = ALLOC_NESTING ();
2314
2315   /* Make an entry on loop_stack for the loop we are entering.  */
2316
2317   thisloop->next = loop_stack;
2318   thisloop->all = nesting_stack;
2319   thisloop->depth = ++nesting_depth;
2320   thisloop->data.loop.start_label = emit_note (NULL, NOTE_INSN_DELETED);
2321   thisloop->data.loop.end_label = gen_label_rtx ();
2322   thisloop->data.loop.alt_end_label = NULL_RTX;
2323   thisloop->data.loop.continue_label = thisloop->data.loop.end_label;
2324   thisloop->exit_label = thisloop->data.loop.end_label;
2325   loop_stack = thisloop;
2326   nesting_stack = thisloop;
2327
2328   return thisloop;
2329 }
2330
2331 /* Specify the continuation point for a loop started with
2332    expand_start_loop_continue_elsewhere.
2333    Use this at the point in the code to which a continue statement
2334    should jump.  */
2335
2336 void
2337 expand_loop_continue_here ()
2338 {
2339   do_pending_stack_adjust ();
2340   emit_note (NULL_PTR, NOTE_INSN_LOOP_CONT);
2341   emit_label (loop_stack->data.loop.continue_label);
2342 }
2343
2344 /* Finish a loop.  Generate a jump back to the top and the loop-exit label.
2345    Pop the block off of loop_stack.  */
2346
2347 void
2348 expand_end_loop ()
2349 {
2350   rtx start_label = loop_stack->data.loop.start_label;
2351   rtx insn = get_last_insn ();
2352   int needs_end_jump = 1;
2353
2354   /* Mark the continue-point at the top of the loop if none elsewhere.  */
2355   if (start_label == loop_stack->data.loop.continue_label)
2356     emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2357
2358   do_pending_stack_adjust ();
2359
2360   /* If optimizing, perhaps reorder the loop.
2361      First, try to use a condjump near the end.
2362      expand_exit_loop_if_false ends loops with unconditional jumps,
2363      like this:
2364
2365      if (test) goto label;
2366      optional: cleanup
2367      goto loop_stack->data.loop.end_label
2368      barrier
2369      label:
2370
2371      If we find such a pattern, we can end the loop earlier.  */
2372
2373   if (optimize
2374       && GET_CODE (insn) == CODE_LABEL
2375       && LABEL_NAME (insn) == NULL
2376       && GET_CODE (PREV_INSN (insn)) == BARRIER)
2377     {
2378       rtx label = insn;
2379       rtx jump = PREV_INSN (PREV_INSN (label));
2380
2381       if (GET_CODE (jump) == JUMP_INSN
2382           && GET_CODE (PATTERN (jump)) == SET
2383           && SET_DEST (PATTERN (jump)) == pc_rtx
2384           && GET_CODE (SET_SRC (PATTERN (jump))) == LABEL_REF
2385           && (XEXP (SET_SRC (PATTERN (jump)), 0)
2386               == loop_stack->data.loop.end_label))
2387         {
2388           rtx prev;
2389
2390           /* The test might be complex and reference LABEL multiple times,
2391              like the loop in loop_iterations to set vtop.  To handle this,
2392              we move LABEL.  */
2393           insn = PREV_INSN (label);
2394           reorder_insns (label, label, start_label);
2395
2396           for (prev = PREV_INSN (jump);; prev = PREV_INSN (prev))
2397             {
2398               /* We ignore line number notes, but if we see any other note,
2399                  in particular NOTE_INSN_BLOCK_*, NOTE_INSN_EH_REGION_*,
2400                  NOTE_INSN_LOOP_*, we disable this optimization.  */
2401               if (GET_CODE (prev) == NOTE)
2402                 {
2403                   if (NOTE_LINE_NUMBER (prev) < 0)
2404                     break;
2405                   continue;
2406                 }
2407               if (GET_CODE (prev) == CODE_LABEL)
2408                 break;
2409               if (GET_CODE (prev) == JUMP_INSN)
2410                 {
2411                   if (GET_CODE (PATTERN (prev)) == SET
2412                       && SET_DEST (PATTERN (prev)) == pc_rtx
2413                       && GET_CODE (SET_SRC (PATTERN (prev))) == IF_THEN_ELSE
2414                       && (GET_CODE (XEXP (SET_SRC (PATTERN (prev)), 1))
2415                           == LABEL_REF)
2416                       && XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0) == label)
2417                     {
2418                       XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0)
2419                         = start_label;
2420                       emit_note_after (NOTE_INSN_LOOP_END, prev);
2421                       needs_end_jump = 0;
2422                     }
2423                   break;
2424                 }
2425            }
2426         }
2427     }
2428
2429      /* If the loop starts with a loop exit, roll that to the end where
2430      it will optimize together with the jump back.
2431
2432      We look for the conditional branch to the exit, except that once
2433      we find such a branch, we don't look past 30 instructions.
2434
2435      In more detail, if the loop presently looks like this (in pseudo-C):
2436
2437          start_label:
2438          if (test) goto end_label;
2439          body;
2440          goto start_label;
2441          end_label:
2442
2443      transform it to look like:
2444
2445          goto start_label;
2446          newstart_label:
2447          body;
2448          start_label:
2449          if (test) goto end_label;
2450          goto newstart_label;
2451          end_label:
2452
2453      Here, the `test' may actually consist of some reasonably complex
2454      code, terminating in a test.  */
2455
2456   if (optimize
2457       && needs_end_jump
2458       &&
2459       ! (GET_CODE (insn) == JUMP_INSN
2460          && GET_CODE (PATTERN (insn)) == SET
2461          && SET_DEST (PATTERN (insn)) == pc_rtx
2462          && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE))
2463     {
2464       int eh_regions = 0;
2465       int num_insns = 0;
2466       rtx last_test_insn = NULL_RTX;
2467
2468       /* Scan insns from the top of the loop looking for a qualified
2469          conditional exit.  */
2470       for (insn = NEXT_INSN (loop_stack->data.loop.start_label); insn;
2471            insn = NEXT_INSN (insn))
2472         {
2473           if (GET_CODE (insn) == NOTE)
2474             {
2475               if (optimize < 2
2476                   && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2477                       || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2478                 /* The code that actually moves the exit test will
2479                    carefully leave BLOCK notes in their original
2480                    location.  That means, however, that we can't debug
2481                    the exit test itself.  So, we refuse to move code
2482                    containing BLOCK notes at low optimization levels.  */
2483                 break;
2484
2485               if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG)
2486                 ++eh_regions;
2487               else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END)
2488                 {
2489                   --eh_regions;
2490                   if (eh_regions < 0)
2491                     /* We've come to the end of an EH region, but
2492                        never saw the beginning of that region.  That
2493                        means that an EH region begins before the top
2494                        of the loop, and ends in the middle of it.  The
2495                        existence of such a situation violates a basic
2496                        assumption in this code, since that would imply
2497                        that even when EH_REGIONS is zero, we might
2498                        move code out of an exception region.  */
2499                     abort ();
2500                 }
2501
2502               /* We must not walk into a nested loop.  */
2503               if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
2504                 break;
2505
2506               /* We already know this INSN is a NOTE, so there's no
2507                  point in looking at it to see if it's a JUMP.  */
2508               continue;
2509             }
2510
2511           if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == INSN)
2512             num_insns++;
2513
2514           if (last_test_insn && num_insns > 30)
2515             break;
2516
2517           if (eh_regions > 0)
2518             /* We don't want to move a partial EH region.  Consider:
2519
2520                   while ( ( { try {
2521                                 if (cond ()) 0;
2522                                 else {
2523                                   bar();
2524                                   1;
2525                                 }
2526                               } catch (...) {
2527                                 1;
2528                               } )) {
2529                      body;
2530                   }
2531
2532                 This isn't legal C++, but here's what it's supposed to
2533                 mean: if cond() is true, stop looping.  Otherwise,
2534                 call bar, and keep looping.  In addition, if cond
2535                 throws an exception, catch it and keep looping. Such
2536                 constructs are certainy legal in LISP.
2537
2538                 We should not move the `if (cond()) 0' test since then
2539                 the EH-region for the try-block would be broken up.
2540                 (In this case we would the EH_BEG note for the `try'
2541                 and `if cond()' but not the call to bar() or the
2542                 EH_END note.)
2543
2544                 So we don't look for tests within an EH region.  */
2545             continue;
2546
2547           if (GET_CODE (insn) == JUMP_INSN
2548               && GET_CODE (PATTERN (insn)) == SET
2549               && SET_DEST (PATTERN (insn)) == pc_rtx)
2550             {
2551               /* This is indeed a jump.  */
2552               rtx dest1 = NULL_RTX;
2553               rtx dest2 = NULL_RTX;
2554               rtx potential_last_test;
2555               if (GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE)
2556                 {
2557                   /* A conditional jump.  */
2558                   dest1 = XEXP (SET_SRC (PATTERN (insn)), 1);
2559                   dest2 = XEXP (SET_SRC (PATTERN (insn)), 2);
2560                   potential_last_test = insn;
2561                 }
2562               else
2563                 {
2564                   /* An unconditional jump.  */
2565                   dest1 = SET_SRC (PATTERN (insn));
2566                   /* Include the BARRIER after the JUMP.  */
2567                   potential_last_test = NEXT_INSN (insn);
2568                 }
2569
2570               do {
2571                 if (dest1 && GET_CODE (dest1) == LABEL_REF
2572                     && ((XEXP (dest1, 0)
2573                          == loop_stack->data.loop.alt_end_label)
2574                         || (XEXP (dest1, 0)
2575                             == loop_stack->data.loop.end_label)))
2576                   {
2577                     last_test_insn = potential_last_test;
2578                     break;
2579                   }
2580
2581                 /* If this was a conditional jump, there may be
2582                    another label at which we should look.  */
2583                 dest1 = dest2;
2584                 dest2 = NULL_RTX;
2585               } while (dest1);
2586             }
2587         }
2588
2589       if (last_test_insn != 0 && last_test_insn != get_last_insn ())
2590         {
2591           /* We found one.  Move everything from there up
2592              to the end of the loop, and add a jump into the loop
2593              to jump to there.  */
2594           register rtx newstart_label = gen_label_rtx ();
2595           register rtx start_move = start_label;
2596           rtx next_insn;
2597
2598           /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2599              then we want to move this note also.  */
2600           if (GET_CODE (PREV_INSN (start_move)) == NOTE
2601               && (NOTE_LINE_NUMBER (PREV_INSN (start_move))
2602                   == NOTE_INSN_LOOP_CONT))
2603             start_move = PREV_INSN (start_move);
2604
2605           emit_label_after (newstart_label, PREV_INSN (start_move));
2606
2607           /* Actually move the insns.  Start at the beginning, and
2608              keep copying insns until we've copied the
2609              last_test_insn.  */
2610           for (insn = start_move; insn; insn = next_insn)
2611             {
2612               /* Figure out which insn comes after this one.  We have
2613                  to do this before we move INSN.  */
2614               if (insn == last_test_insn)
2615                 /* We've moved all the insns.  */
2616                 next_insn = NULL_RTX;
2617               else
2618                 next_insn = NEXT_INSN (insn);
2619
2620               if (GET_CODE (insn) == NOTE
2621                   && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2622                       || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2623                 /* We don't want to move NOTE_INSN_BLOCK_BEGs or
2624                    NOTE_INSN_BLOCK_ENDs because the correct generation
2625                    of debugging information depends on these appearing
2626                    in the same order in the RTL and in the tree
2627                    structure, where they are represented as BLOCKs.
2628                    So, we don't move block notes.  Of course, moving
2629                    the code inside the block is likely to make it
2630                    impossible to debug the instructions in the exit
2631                    test, but such is the price of optimization.  */
2632                 continue;
2633
2634               /* Move the INSN.  */
2635               reorder_insns (insn, insn, get_last_insn ());
2636             }
2637
2638           emit_jump_insn_after (gen_jump (start_label),
2639                                 PREV_INSN (newstart_label));
2640           emit_barrier_after (PREV_INSN (newstart_label));
2641           start_label = newstart_label;
2642         }
2643     }
2644
2645   if (needs_end_jump)
2646     {
2647       emit_jump (start_label);
2648       emit_note (NULL_PTR, NOTE_INSN_LOOP_END);
2649     }
2650   emit_label (loop_stack->data.loop.end_label);
2651
2652   POPSTACK (loop_stack);
2653
2654   last_expr_type = 0;
2655 }
2656
2657 /* Finish a null loop, aka do { } while (0).  */
2658
2659 void
2660 expand_end_null_loop ()
2661 {
2662   do_pending_stack_adjust ();
2663   emit_label (loop_stack->data.loop.end_label);
2664
2665   POPSTACK (loop_stack);
2666
2667   last_expr_type = 0;
2668 }
2669
2670 /* Generate a jump to the current loop's continue-point.
2671    This is usually the top of the loop, but may be specified
2672    explicitly elsewhere.  If not currently inside a loop,
2673    return 0 and do nothing; caller will print an error message.  */
2674
2675 int
2676 expand_continue_loop (whichloop)
2677      struct nesting *whichloop;
2678 {
2679   last_expr_type = 0;
2680   if (whichloop == 0)
2681     whichloop = loop_stack;
2682   if (whichloop == 0)
2683     return 0;
2684   expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2685                         NULL_RTX);
2686   return 1;
2687 }
2688
2689 /* Generate a jump to exit the current loop.  If not currently inside a loop,
2690    return 0 and do nothing; caller will print an error message.  */
2691
2692 int
2693 expand_exit_loop (whichloop)
2694      struct nesting *whichloop;
2695 {
2696   last_expr_type = 0;
2697   if (whichloop == 0)
2698     whichloop = loop_stack;
2699   if (whichloop == 0)
2700     return 0;
2701   expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2702   return 1;
2703 }
2704
2705 /* Generate a conditional jump to exit the current loop if COND
2706    evaluates to zero.  If not currently inside a loop,
2707    return 0 and do nothing; caller will print an error message.  */
2708
2709 int
2710 expand_exit_loop_if_false (whichloop, cond)
2711      struct nesting *whichloop;
2712      tree cond;
2713 {
2714   rtx label = gen_label_rtx ();
2715   rtx last_insn;
2716   last_expr_type = 0;
2717
2718   if (whichloop == 0)
2719     whichloop = loop_stack;
2720   if (whichloop == 0)
2721     return 0;
2722   /* In order to handle fixups, we actually create a conditional jump
2723      around a unconditional branch to exit the loop.  If fixups are
2724      necessary, they go before the unconditional branch.  */
2725
2726   do_jump (cond, NULL_RTX, label);
2727   last_insn = get_last_insn ();
2728   if (GET_CODE (last_insn) == CODE_LABEL)
2729     whichloop->data.loop.alt_end_label = last_insn;
2730   expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2731                         NULL_RTX);
2732   emit_label (label);
2733
2734   return 1;
2735 }
2736
2737 /* Return nonzero if the loop nest is empty.  Else return zero.  */
2738
2739 int
2740 stmt_loop_nest_empty ()
2741 {
2742   /* cfun->stmt can be NULL if we are building a call to get the
2743      EH context for a setjmp/longjmp EH target and the current
2744      function was a deferred inline function.  */
2745   return (cfun->stmt == NULL || loop_stack == NULL);
2746 }
2747
2748 /* Return non-zero if we should preserve sub-expressions as separate
2749    pseudos.  We never do so if we aren't optimizing.  We always do so
2750    if -fexpensive-optimizations.
2751
2752    Otherwise, we only do so if we are in the "early" part of a loop.  I.e.,
2753    the loop may still be a small one.  */
2754
2755 int
2756 preserve_subexpressions_p ()
2757 {
2758   rtx insn;
2759
2760   if (flag_expensive_optimizations)
2761     return 1;
2762
2763   if (optimize == 0 || cfun == 0 || cfun->stmt == 0 || loop_stack == 0)
2764     return 0;
2765
2766   insn = get_last_insn_anywhere ();
2767
2768   return (insn
2769           && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2770               < n_non_fixed_regs * 3));
2771
2772 }
2773
2774 /* Generate a jump to exit the current loop, conditional, binding contour
2775    or case statement.  Not all such constructs are visible to this function,
2776    only those started with EXIT_FLAG nonzero.  Individual languages use
2777    the EXIT_FLAG parameter to control which kinds of constructs you can
2778    exit this way.
2779
2780    If not currently inside anything that can be exited,
2781    return 0 and do nothing; caller will print an error message.  */
2782
2783 int
2784 expand_exit_something ()
2785 {
2786   struct nesting *n;
2787   last_expr_type = 0;
2788   for (n = nesting_stack; n; n = n->all)
2789     if (n->exit_label != 0)
2790       {
2791         expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2792         return 1;
2793       }
2794
2795   return 0;
2796 }
2797 \f
2798 /* Generate RTL to return from the current function, with no value.
2799    (That is, we do not do anything about returning any value.)  */
2800
2801 void
2802 expand_null_return ()
2803 {
2804   struct nesting *block = block_stack;
2805   rtx last_insn = get_last_insn ();
2806
2807   /* If this function was declared to return a value, but we
2808      didn't, clobber the return registers so that they are not
2809      propogated live to the rest of the function.  */
2810   clobber_return_register ();
2811
2812   /* Does any pending block have cleanups?  */
2813   while (block && block->data.block.cleanups == 0)
2814     block = block->next;
2815
2816   /* If yes, use a goto to return, since that runs cleanups.  */
2817
2818   expand_null_return_1 (last_insn, block != 0);
2819 }
2820
2821 /* Generate RTL to return from the current function, with value VAL.  */
2822
2823 static void
2824 expand_value_return (val)
2825      rtx val;
2826 {
2827   struct nesting *block = block_stack;
2828   rtx last_insn = get_last_insn ();
2829   rtx return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2830
2831   /* Copy the value to the return location
2832      unless it's already there.  */
2833
2834   if (return_reg != val)
2835     {
2836       tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
2837 #ifdef PROMOTE_FUNCTION_RETURN
2838       int unsignedp = TREE_UNSIGNED (type);
2839       enum machine_mode old_mode
2840         = DECL_MODE (DECL_RESULT (current_function_decl));
2841       enum machine_mode mode
2842         = promote_mode (type, old_mode, &unsignedp, 1);
2843
2844       if (mode != old_mode)
2845         val = convert_modes (mode, old_mode, val, unsignedp);
2846 #endif
2847       if (GET_CODE (return_reg) == PARALLEL)
2848         emit_group_load (return_reg, val, int_size_in_bytes (type),
2849                          TYPE_ALIGN (type));
2850       else
2851         emit_move_insn (return_reg, val);
2852     }
2853
2854   /* Does any pending block have cleanups?  */
2855
2856   while (block && block->data.block.cleanups == 0)
2857     block = block->next;
2858
2859   /* If yes, use a goto to return, since that runs cleanups.
2860      Use LAST_INSN to put cleanups *before* the move insn emitted above.  */
2861
2862   expand_null_return_1 (last_insn, block != 0);
2863 }
2864
2865 /* Output a return with no value.  If LAST_INSN is nonzero,
2866    pretend that the return takes place after LAST_INSN.
2867    If USE_GOTO is nonzero then don't use a return instruction;
2868    go to the return label instead.  This causes any cleanups
2869    of pending blocks to be executed normally.  */
2870
2871 static void
2872 expand_null_return_1 (last_insn, use_goto)
2873      rtx last_insn;
2874      int use_goto;
2875 {
2876   rtx end_label = cleanup_label ? cleanup_label : return_label;
2877
2878   clear_pending_stack_adjust ();
2879   do_pending_stack_adjust ();
2880   last_expr_type = 0;
2881
2882   /* PCC-struct return always uses an epilogue.  */
2883   if (current_function_returns_pcc_struct || use_goto)
2884     {
2885       if (end_label == 0)
2886         end_label = return_label = gen_label_rtx ();
2887       expand_goto_internal (NULL_TREE, end_label, last_insn);
2888       return;
2889     }
2890
2891   /* Otherwise output a simple return-insn if one is available,
2892      unless it won't do the job.  */
2893 #ifdef HAVE_return
2894   if (HAVE_return && use_goto == 0 && cleanup_label == 0)
2895     {
2896       emit_jump_insn (gen_return ());
2897       emit_barrier ();
2898       return;
2899     }
2900 #endif
2901
2902   /* Otherwise jump to the epilogue.  */
2903   expand_goto_internal (NULL_TREE, end_label, last_insn);
2904 }
2905 \f
2906 /* Generate RTL to evaluate the expression RETVAL and return it
2907    from the current function.  */
2908
2909 void
2910 expand_return (retval)
2911      tree retval;
2912 {
2913   /* If there are any cleanups to be performed, then they will
2914      be inserted following LAST_INSN.  It is desirable
2915      that the last_insn, for such purposes, should be the
2916      last insn before computing the return value.  Otherwise, cleanups
2917      which call functions can clobber the return value.  */
2918   /* ??? rms: I think that is erroneous, because in C++ it would
2919      run destructors on variables that might be used in the subsequent
2920      computation of the return value.  */
2921   rtx last_insn = 0;
2922   rtx result_rtl;
2923   register rtx val = 0;
2924   tree retval_rhs;
2925   int cleanups;
2926
2927   /* If function wants no value, give it none.  */
2928   if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
2929     {
2930       expand_expr (retval, NULL_RTX, VOIDmode, 0);
2931       emit_queue ();
2932       expand_null_return ();
2933       return;
2934     }
2935
2936   /* Are any cleanups needed?  E.g. C++ destructors to be run?  */
2937   /* This is not sufficient.  We also need to watch for cleanups of the
2938      expression we are about to expand.  Unfortunately, we cannot know
2939      if it has cleanups until we expand it, and we want to change how we
2940      expand it depending upon if we need cleanups.  We can't win.  */
2941 #if 0
2942   cleanups = any_pending_cleanups (1);
2943 #else
2944   cleanups = 1;
2945 #endif
2946
2947   if (retval == error_mark_node)
2948     {
2949       /* Treat this like a return of no value from a function that
2950          returns a value.  */
2951       expand_null_return ();
2952       return; 
2953     }
2954   else if (TREE_CODE (retval) == RESULT_DECL)
2955     retval_rhs = retval;
2956   else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
2957            && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
2958     retval_rhs = TREE_OPERAND (retval, 1);
2959   else if (VOID_TYPE_P (TREE_TYPE (retval)))
2960     /* Recognize tail-recursive call to void function.  */
2961     retval_rhs = retval;
2962   else
2963     retval_rhs = NULL_TREE;
2964
2965   /* Only use `last_insn' if there are cleanups which must be run.  */
2966   if (cleanups || cleanup_label != 0)
2967     last_insn = get_last_insn ();
2968
2969   /* Distribute return down conditional expr if either of the sides
2970      may involve tail recursion (see test below).  This enhances the number
2971      of tail recursions we see.  Don't do this always since it can produce
2972      sub-optimal code in some cases and we distribute assignments into
2973      conditional expressions when it would help.  */
2974
2975   if (optimize && retval_rhs != 0
2976       && frame_offset == 0
2977       && TREE_CODE (retval_rhs) == COND_EXPR
2978       && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
2979           || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
2980     {
2981       rtx label = gen_label_rtx ();
2982       tree expr;
2983
2984       do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
2985       start_cleanup_deferral ();
2986       expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2987                     DECL_RESULT (current_function_decl),
2988                     TREE_OPERAND (retval_rhs, 1));
2989       TREE_SIDE_EFFECTS (expr) = 1;
2990       expand_return (expr);
2991       emit_label (label);
2992
2993       expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2994                     DECL_RESULT (current_function_decl),
2995                     TREE_OPERAND (retval_rhs, 2));
2996       TREE_SIDE_EFFECTS (expr) = 1;
2997       expand_return (expr);
2998       end_cleanup_deferral ();
2999       return;
3000     }
3001
3002   result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
3003
3004   /* If the result is an aggregate that is being returned in one (or more)
3005      registers, load the registers here.  The compiler currently can't handle
3006      copying a BLKmode value into registers.  We could put this code in a
3007      more general area (for use by everyone instead of just function
3008      call/return), but until this feature is generally usable it is kept here
3009      (and in expand_call).  The value must go into a pseudo in case there
3010      are cleanups that will clobber the real return register.  */
3011
3012   if (retval_rhs != 0
3013       && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
3014       && GET_CODE (result_rtl) == REG)
3015     {
3016       int i;
3017       unsigned HOST_WIDE_INT bitpos, xbitpos;
3018       unsigned HOST_WIDE_INT big_endian_correction = 0;
3019       unsigned HOST_WIDE_INT bytes
3020         = int_size_in_bytes (TREE_TYPE (retval_rhs));
3021       int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3022       unsigned int bitsize
3023         = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
3024       rtx *result_pseudos = (rtx *) alloca (sizeof (rtx) * n_regs);
3025       rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
3026       rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
3027       enum machine_mode tmpmode, result_reg_mode;
3028
3029       if (bytes == 0)
3030         {
3031           expand_null_return ();
3032           return;
3033         }
3034
3035       /* Structures whose size is not a multiple of a word are aligned
3036          to the least significant byte (to the right).  On a BYTES_BIG_ENDIAN
3037          machine, this means we must skip the empty high order bytes when
3038          calculating the bit offset.  */
3039       if (BYTES_BIG_ENDIAN && bytes % UNITS_PER_WORD)
3040         big_endian_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
3041                                                   * BITS_PER_UNIT));
3042
3043       /* Copy the structure BITSIZE bits at a time.  */
3044       for (bitpos = 0, xbitpos = big_endian_correction;
3045            bitpos < bytes * BITS_PER_UNIT;
3046            bitpos += bitsize, xbitpos += bitsize)
3047         {
3048           /* We need a new destination pseudo each time xbitpos is
3049              on a word boundary and when xbitpos == big_endian_correction
3050              (the first time through).  */
3051           if (xbitpos % BITS_PER_WORD == 0
3052               || xbitpos == big_endian_correction)
3053             {
3054               /* Generate an appropriate register.  */
3055               dst = gen_reg_rtx (word_mode);
3056               result_pseudos[xbitpos / BITS_PER_WORD] = dst;
3057
3058               /* Clobber the destination before we move anything into it.  */
3059               emit_insn (gen_rtx_CLOBBER (VOIDmode, dst));
3060             }
3061
3062           /* We need a new source operand each time bitpos is on a word
3063              boundary.  */
3064           if (bitpos % BITS_PER_WORD == 0)
3065             src = operand_subword_force (result_val,
3066                                          bitpos / BITS_PER_WORD,
3067                                          BLKmode);
3068
3069           /* Use bitpos for the source extraction (left justified) and
3070              xbitpos for the destination store (right justified).  */
3071           store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
3072                            extract_bit_field (src, bitsize,
3073                                               bitpos % BITS_PER_WORD, 1,
3074                                               NULL_RTX, word_mode, word_mode,
3075                                               bitsize, BITS_PER_WORD),
3076                            bitsize, BITS_PER_WORD);
3077         }
3078
3079       /* Find the smallest integer mode large enough to hold the
3080          entire structure and use that mode instead of BLKmode
3081          on the USE insn for the return register.   */
3082       for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3083            tmpmode != VOIDmode;
3084            tmpmode = GET_MODE_WIDER_MODE (tmpmode))
3085         /* Have we found a large enough mode?  */
3086         if (GET_MODE_SIZE (tmpmode) >= bytes)
3087           break;
3088
3089       /* No suitable mode found.  */
3090       if (tmpmode == VOIDmode)
3091         abort ();
3092
3093       PUT_MODE (result_rtl, tmpmode);
3094
3095       if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
3096         result_reg_mode = word_mode;
3097       else
3098         result_reg_mode = tmpmode;
3099       result_reg = gen_reg_rtx (result_reg_mode);
3100
3101       emit_queue ();
3102       for (i = 0; i < n_regs; i++)
3103         emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
3104                         result_pseudos[i]);
3105
3106       if (tmpmode != result_reg_mode)
3107         result_reg = gen_lowpart (tmpmode, result_reg);
3108
3109       expand_value_return (result_reg);
3110     }
3111   else if (cleanups
3112       && retval_rhs != 0
3113       && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3114       && (GET_CODE (result_rtl) == REG
3115           || (GET_CODE (result_rtl) == PARALLEL)))
3116     {
3117       /* Calculate the return value into a temporary (usually a pseudo
3118          reg).  */
3119       tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
3120       tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
3121
3122       val = assign_temp (nt, 0, 0, 1);
3123       val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3124       val = force_not_mem (val);
3125       emit_queue ();
3126       /* Return the calculated value, doing cleanups first.  */
3127       expand_value_return (val);
3128     }
3129   else
3130     {
3131       /* No cleanups or no hard reg used;
3132          calculate value into hard return reg.  */
3133       expand_expr (retval, const0_rtx, VOIDmode, 0);
3134       emit_queue ();
3135       expand_value_return (result_rtl);
3136     }
3137 }
3138
3139 /* Return 1 if the end of the generated RTX is not a barrier.
3140    This means code already compiled can drop through.  */
3141
3142 int
3143 drop_through_at_end_p ()
3144 {
3145   rtx insn = get_last_insn ();
3146   while (insn && GET_CODE (insn) == NOTE)
3147     insn = PREV_INSN (insn);
3148   return insn && GET_CODE (insn) != BARRIER;
3149 }
3150 \f
3151 /* Attempt to optimize a potential tail recursion call into a goto.
3152    ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3153    where to place the jump to the tail recursion label.
3154
3155    Return TRUE if the call was optimized into a goto.  */
3156
3157 int
3158 optimize_tail_recursion (arguments, last_insn)
3159      tree arguments;
3160      rtx last_insn;
3161 {
3162   /* Finish checking validity, and if valid emit code to set the
3163      argument variables for the new call.  */
3164   if (tail_recursion_args (arguments, DECL_ARGUMENTS (current_function_decl)))
3165     {
3166       if (tail_recursion_label == 0)
3167         {
3168           tail_recursion_label = gen_label_rtx ();
3169           emit_label_after (tail_recursion_label,
3170                             tail_recursion_reentry);
3171         }
3172       emit_queue ();
3173       expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3174       emit_barrier ();
3175       return 1;
3176     }
3177   return 0;
3178 }
3179
3180 /* Emit code to alter this function's formal parms for a tail-recursive call.
3181    ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3182    FORMALS is the chain of decls of formals.
3183    Return 1 if this can be done;
3184    otherwise return 0 and do not emit any code.  */
3185
3186 static int
3187 tail_recursion_args (actuals, formals)
3188      tree actuals, formals;
3189 {
3190   register tree a = actuals, f = formals;
3191   register int i;
3192   register rtx *argvec;
3193
3194   /* Check that number and types of actuals are compatible
3195      with the formals.  This is not always true in valid C code.
3196      Also check that no formal needs to be addressable
3197      and that all formals are scalars.  */
3198
3199   /* Also count the args.  */
3200
3201   for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3202     {
3203       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3204           != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3205         return 0;
3206       if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3207         return 0;
3208     }
3209   if (a != 0 || f != 0)
3210     return 0;
3211
3212   /* Compute all the actuals.  */
3213
3214   argvec = (rtx *) alloca (i * sizeof (rtx));
3215
3216   for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3217     argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3218
3219   /* Find which actual values refer to current values of previous formals.
3220      Copy each of them now, before any formal is changed.  */
3221
3222   for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3223     {
3224       int copy = 0;
3225       register int j;
3226       for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3227         if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3228           {
3229             copy = 1;
3230             break;
3231           }
3232       if (copy)
3233         argvec[i] = copy_to_reg (argvec[i]);
3234     }
3235
3236   /* Store the values of the actuals into the formals.  */
3237
3238   for (f = formals, a = actuals, i = 0; f;
3239        f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3240     {
3241       if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3242         emit_move_insn (DECL_RTL (f), argvec[i]);
3243       else
3244         convert_move (DECL_RTL (f), argvec[i],
3245                       TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
3246     }
3247
3248   free_temp_slots ();
3249   return 1;
3250 }
3251 \f
3252 /* Generate the RTL code for entering a binding contour.
3253    The variables are declared one by one, by calls to `expand_decl'.
3254
3255    FLAGS is a bitwise or of the following flags:
3256
3257      1 - Nonzero if this construct should be visible to
3258          `exit_something'.
3259
3260      2 - Nonzero if this contour does not require a
3261          NOTE_INSN_BLOCK_BEG note.  Virtually all calls from
3262          language-independent code should set this flag because they
3263          will not create corresponding BLOCK nodes.  (There should be
3264          a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3265          and BLOCKs.)  If this flag is set, MARK_ENDS should be zero
3266          when expand_end_bindings is called.
3267
3268     If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3269     optionally be supplied.  If so, it becomes the NOTE_BLOCK for the
3270     note.  */
3271
3272 void
3273 expand_start_bindings_and_block (flags, block)
3274      int flags;
3275      tree block;
3276 {
3277   struct nesting *thisblock = ALLOC_NESTING ();
3278   rtx note;
3279   int exit_flag = ((flags & 1) != 0);
3280   int block_flag = ((flags & 2) == 0);
3281
3282   /* If a BLOCK is supplied, then the caller should be requesting a
3283      NOTE_INSN_BLOCK_BEG note.  */
3284   if (!block_flag && block)
3285     abort ();
3286
3287   /* Create a note to mark the beginning of the block.  */
3288   if (block_flag)
3289     {
3290       note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
3291       NOTE_BLOCK (note) = block;
3292     }
3293   else
3294     note = emit_note (NULL_PTR, NOTE_INSN_DELETED);
3295
3296   /* Make an entry on block_stack for the block we are entering.  */
3297
3298   thisblock->next = block_stack;
3299   thisblock->all = nesting_stack;
3300   thisblock->depth = ++nesting_depth;
3301   thisblock->data.block.stack_level = 0;
3302   thisblock->data.block.cleanups = 0;
3303   thisblock->data.block.n_function_calls = 0;
3304   thisblock->data.block.exception_region = 0;
3305   thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3306
3307   thisblock->data.block.conditional_code = 0;
3308   thisblock->data.block.last_unconditional_cleanup = note;
3309   /* When we insert instructions after the last unconditional cleanup,
3310      we don't adjust last_insn.  That means that a later add_insn will
3311      clobber the instructions we've just added.  The easiest way to
3312      fix this is to just insert another instruction here, so that the
3313      instructions inserted after the last unconditional cleanup are
3314      never the last instruction.  */
3315   emit_note (NULL_PTR, NOTE_INSN_DELETED);
3316   thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
3317
3318   if (block_stack
3319       && !(block_stack->data.block.cleanups == NULL_TREE
3320            && block_stack->data.block.outer_cleanups == NULL_TREE))
3321     thisblock->data.block.outer_cleanups
3322       = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3323                    block_stack->data.block.outer_cleanups);
3324   else
3325     thisblock->data.block.outer_cleanups = 0;
3326   thisblock->data.block.label_chain = 0;
3327   thisblock->data.block.innermost_stack_block = stack_block_stack;
3328   thisblock->data.block.first_insn = note;
3329   thisblock->data.block.block_start_count = ++current_block_start_count;
3330   thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3331   block_stack = thisblock;
3332   nesting_stack = thisblock;
3333
3334   /* Make a new level for allocating stack slots.  */
3335   push_temp_slots ();
3336 }
3337
3338 /* Specify the scope of temporaries created by TARGET_EXPRs.  Similar
3339    to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3340    expand_expr are made.  After we end the region, we know that all
3341    space for all temporaries that were created by TARGET_EXPRs will be
3342    destroyed and their space freed for reuse.  */
3343
3344 void
3345 expand_start_target_temps ()
3346 {
3347   /* This is so that even if the result is preserved, the space
3348      allocated will be freed, as we know that it is no longer in use.  */
3349   push_temp_slots ();
3350
3351   /* Start a new binding layer that will keep track of all cleanup
3352      actions to be performed.  */
3353   expand_start_bindings (2);
3354
3355   target_temp_slot_level = temp_slot_level;
3356 }
3357
3358 void
3359 expand_end_target_temps ()
3360 {
3361   expand_end_bindings (NULL_TREE, 0, 0);
3362
3363   /* This is so that even if the result is preserved, the space
3364      allocated will be freed, as we know that it is no longer in use.  */
3365   pop_temp_slots ();
3366 }
3367
3368 /* Given a pointer to a BLOCK node return non-zero if (and only if) the node
3369    in question represents the outermost pair of curly braces (i.e. the "body
3370    block") of a function or method.
3371
3372    For any BLOCK node representing a "body block" of a function or method, the
3373    BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3374    represents the outermost (function) scope for the function or method (i.e.
3375    the one which includes the formal parameters).  The BLOCK_SUPERCONTEXT of
3376    *that* node in turn will point to the relevant FUNCTION_DECL node.  */
3377
3378 int
3379 is_body_block (stmt)
3380      register tree stmt;
3381 {
3382   if (TREE_CODE (stmt) == BLOCK)
3383     {
3384       tree parent = BLOCK_SUPERCONTEXT (stmt);
3385
3386       if (parent && TREE_CODE (parent) == BLOCK)
3387         {
3388           tree grandparent = BLOCK_SUPERCONTEXT (parent);
3389
3390           if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
3391             return 1;
3392         }
3393     }
3394
3395   return 0;
3396 }
3397
3398 /* Mark top block of block_stack as an implicit binding for an
3399    exception region.  This is used to prevent infinite recursion when
3400    ending a binding with expand_end_bindings.  It is only ever called
3401    by expand_eh_region_start, as that it the only way to create a
3402    block stack for a exception region.  */
3403
3404 void
3405 mark_block_as_eh_region ()
3406 {
3407   block_stack->data.block.exception_region = 1;
3408   if (block_stack->next
3409       && block_stack->next->data.block.conditional_code)
3410     {
3411       block_stack->data.block.conditional_code
3412         = block_stack->next->data.block.conditional_code;
3413       block_stack->data.block.last_unconditional_cleanup
3414         = block_stack->next->data.block.last_unconditional_cleanup;
3415       block_stack->data.block.cleanup_ptr
3416         = block_stack->next->data.block.cleanup_ptr;
3417     }
3418 }
3419
3420 /* True if we are currently emitting insns in an area of output code
3421    that is controlled by a conditional expression.  This is used by
3422    the cleanup handling code to generate conditional cleanup actions.  */
3423
3424 int
3425 conditional_context ()
3426 {
3427   return block_stack && block_stack->data.block.conditional_code;
3428 }
3429
3430 /* Mark top block of block_stack as not for an implicit binding for an
3431    exception region.  This is only ever done by expand_eh_region_end
3432    to let expand_end_bindings know that it is being called explicitly
3433    to end the binding layer for just the binding layer associated with
3434    the exception region, otherwise expand_end_bindings would try and
3435    end all implicit binding layers for exceptions regions, and then
3436    one normal binding layer.  */
3437
3438 void
3439 mark_block_as_not_eh_region ()
3440 {
3441   block_stack->data.block.exception_region = 0;
3442 }
3443
3444 /* True if the top block of block_stack was marked as for an exception
3445    region by mark_block_as_eh_region.  */
3446
3447 int
3448 is_eh_region ()
3449 {
3450   return cfun && block_stack && block_stack->data.block.exception_region;
3451 }
3452
3453 /* Emit a handler label for a nonlocal goto handler.
3454    Also emit code to store the handler label in SLOT before BEFORE_INSN.  */
3455
3456 static rtx
3457 expand_nl_handler_label (slot, before_insn)
3458      rtx slot, before_insn;
3459 {
3460   rtx insns;
3461   rtx handler_label = gen_label_rtx ();
3462
3463   /* Don't let jump_optimize delete the handler.  */
3464   LABEL_PRESERVE_P (handler_label) = 1;
3465
3466   start_sequence ();
3467   emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3468   insns = get_insns ();
3469   end_sequence ();
3470   emit_insns_before (insns, before_insn);
3471
3472   emit_label (handler_label);
3473
3474   return handler_label;
3475 }
3476
3477 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3478    handler.  */
3479 static void
3480 expand_nl_goto_receiver ()
3481 {
3482 #ifdef HAVE_nonlocal_goto
3483   if (! HAVE_nonlocal_goto)
3484 #endif
3485     /* First adjust our frame pointer to its actual value.  It was
3486        previously set to the start of the virtual area corresponding to
3487        the stacked variables when we branched here and now needs to be
3488        adjusted to the actual hardware fp value.
3489
3490        Assignments are to virtual registers are converted by
3491        instantiate_virtual_regs into the corresponding assignment
3492        to the underlying register (fp in this case) that makes
3493        the original assignment true.
3494        So the following insn will actually be
3495        decrementing fp by STARTING_FRAME_OFFSET.  */
3496     emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3497
3498 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3499   if (fixed_regs[ARG_POINTER_REGNUM])
3500     {
3501 #ifdef ELIMINABLE_REGS
3502       /* If the argument pointer can be eliminated in favor of the
3503          frame pointer, we don't need to restore it.  We assume here
3504          that if such an elimination is present, it can always be used.
3505          This is the case on all known machines; if we don't make this
3506          assumption, we do unnecessary saving on many machines.  */
3507       static struct elims {int from, to;} elim_regs[] = ELIMINABLE_REGS;
3508       size_t i;
3509
3510       for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
3511         if (elim_regs[i].from == ARG_POINTER_REGNUM
3512             && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3513           break;
3514
3515       if (i == ARRAY_SIZE (elim_regs))
3516 #endif
3517         {
3518           /* Now restore our arg pointer from the address at which it
3519              was saved in our stack frame.
3520              If there hasn't be space allocated for it yet, make
3521              some now.  */
3522           if (arg_pointer_save_area == 0)
3523             arg_pointer_save_area
3524               = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
3525           emit_move_insn (virtual_incoming_args_rtx,
3526                           /* We need a pseudo here, or else
3527                              instantiate_virtual_regs_1 complains.  */
3528                           copy_to_reg (arg_pointer_save_area));
3529         }
3530     }
3531 #endif
3532
3533 #ifdef HAVE_nonlocal_goto_receiver
3534   if (HAVE_nonlocal_goto_receiver)
3535     emit_insn (gen_nonlocal_goto_receiver ());
3536 #endif
3537 }
3538
3539 /* Make handlers for nonlocal gotos taking place in the function calls in
3540    block THISBLOCK.  */
3541
3542 static void
3543 expand_nl_goto_receivers (thisblock)
3544      struct nesting *thisblock;
3545 {
3546   tree link;
3547   rtx afterward = gen_label_rtx ();
3548   rtx insns, slot;
3549   rtx label_list;
3550   int any_invalid;
3551
3552   /* Record the handler address in the stack slot for that purpose,
3553      during this block, saving and restoring the outer value.  */
3554   if (thisblock->next != 0)
3555     for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3556       {
3557         rtx save_receiver = gen_reg_rtx (Pmode);
3558         emit_move_insn (XEXP (slot, 0), save_receiver);
3559
3560         start_sequence ();
3561         emit_move_insn (save_receiver, XEXP (slot, 0));
3562         insns = get_insns ();
3563         end_sequence ();
3564         emit_insns_before (insns, thisblock->data.block.first_insn);
3565       }
3566
3567   /* Jump around the handlers; they run only when specially invoked.  */
3568   emit_jump (afterward);
3569
3570   /* Make a separate handler for each label.  */
3571   link = nonlocal_labels;
3572   slot = nonlocal_goto_handler_slots;
3573   label_list = NULL_RTX;
3574   for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3575     /* Skip any labels we shouldn't be able to jump to from here,
3576        we generate one special handler for all of them below which just calls
3577        abort.  */
3578     if (! DECL_TOO_LATE (TREE_VALUE (link)))
3579       {
3580         rtx lab;
3581         lab = expand_nl_handler_label (XEXP (slot, 0),
3582                                        thisblock->data.block.first_insn);
3583         label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3584
3585         expand_nl_goto_receiver ();
3586
3587         /* Jump to the "real" nonlocal label.  */
3588         expand_goto (TREE_VALUE (link));
3589       }
3590
3591   /* A second pass over all nonlocal labels; this time we handle those
3592      we should not be able to jump to at this point.  */
3593   link = nonlocal_labels;
3594   slot = nonlocal_goto_handler_slots;
3595   any_invalid = 0;
3596   for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3597     if (DECL_TOO_LATE (TREE_VALUE (link)))
3598       {
3599         rtx lab;
3600         lab = expand_nl_handler_label (XEXP (slot, 0),
3601                                        thisblock->data.block.first_insn);
3602         label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3603         any_invalid = 1;
3604       }
3605
3606   if (any_invalid)
3607     {
3608       expand_nl_goto_receiver ();
3609       emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "abort"), 0,
3610                          VOIDmode, 0);
3611       emit_barrier ();
3612     }
3613
3614   nonlocal_goto_handler_labels = label_list;
3615   emit_label (afterward);
3616 }
3617
3618 /* Warn about any unused VARS (which may contain nodes other than
3619    VAR_DECLs, but such nodes are ignored).  The nodes are connected
3620    via the TREE_CHAIN field.  */
3621
3622 void
3623 warn_about_unused_variables (vars)
3624      tree vars;
3625 {
3626   tree decl;
3627
3628   if (warn_unused_variable)
3629     for (decl = vars; decl; decl = TREE_CHAIN (decl))
3630       if (TREE_CODE (decl) == VAR_DECL
3631           && ! TREE_USED (decl)
3632           && ! DECL_IN_SYSTEM_HEADER (decl)
3633           && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3634         warning_with_decl (decl, "unused variable `%s'");
3635 }
3636
3637 /* Generate RTL code to terminate a binding contour.
3638
3639    VARS is the chain of VAR_DECL nodes for the variables bound in this
3640    contour.  There may actually be other nodes in this chain, but any
3641    nodes other than VAR_DECLS are ignored.
3642
3643    MARK_ENDS is nonzero if we should put a note at the beginning
3644    and end of this binding contour.
3645
3646    DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
3647    (That is true automatically if the contour has a saved stack level.)  */
3648
3649 void
3650 expand_end_bindings (vars, mark_ends, dont_jump_in)
3651      tree vars;
3652      int mark_ends;
3653      int dont_jump_in;
3654 {
3655   register struct nesting *thisblock;
3656
3657   while (block_stack->data.block.exception_region)
3658     {
3659       /* Because we don't need or want a new temporary level and
3660          because we didn't create one in expand_eh_region_start,
3661          create a fake one now to avoid removing one in
3662          expand_end_bindings.  */
3663       push_temp_slots ();
3664
3665       block_stack->data.block.exception_region = 0;
3666
3667       expand_end_bindings (NULL_TREE, 0, 0);
3668     }
3669
3670   /* Since expand_eh_region_start does an expand_start_bindings, we
3671      have to first end all the bindings that were created by
3672      expand_eh_region_start.  */
3673
3674   thisblock = block_stack;
3675
3676   /* If any of the variables in this scope were not used, warn the
3677      user.  */
3678   warn_about_unused_variables (vars);
3679
3680   if (thisblock->exit_label)
3681     {
3682       do_pending_stack_adjust ();
3683       emit_label (thisblock->exit_label);
3684     }
3685
3686   /* If necessary, make handlers for nonlocal gotos taking
3687      place in the function calls in this block.  */
3688   if (function_call_count != thisblock->data.block.n_function_calls
3689       && nonlocal_labels
3690       /* Make handler for outermost block
3691          if there were any nonlocal gotos to this function.  */
3692       && (thisblock->next == 0 ? current_function_has_nonlocal_label
3693           /* Make handler for inner block if it has something
3694              special to do when you jump out of it.  */
3695           : (thisblock->data.block.cleanups != 0
3696              || thisblock->data.block.stack_level != 0)))
3697     expand_nl_goto_receivers (thisblock);
3698
3699   /* Don't allow jumping into a block that has a stack level.
3700      Cleanups are allowed, though.  */
3701   if (dont_jump_in
3702       || thisblock->data.block.stack_level != 0)
3703     {
3704       struct label_chain *chain;
3705
3706       /* Any labels in this block are no longer valid to go to.
3707          Mark them to cause an error message.  */
3708       for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3709         {
3710           DECL_TOO_LATE (chain->label) = 1;
3711           /* If any goto without a fixup came to this label,
3712              that must be an error, because gotos without fixups
3713              come from outside all saved stack-levels.  */
3714           if (TREE_ADDRESSABLE (chain->label))
3715             error_with_decl (chain->label,
3716                              "label `%s' used before containing binding contour");
3717         }
3718     }
3719
3720   /* Restore stack level in effect before the block
3721      (only if variable-size objects allocated).  */
3722   /* Perform any cleanups associated with the block.  */
3723
3724   if (thisblock->data.block.stack_level != 0
3725       || thisblock->data.block.cleanups != 0)
3726     {
3727       int reachable;
3728       rtx insn;
3729
3730       /* Don't let cleanups affect ({...}) constructs.  */
3731       int old_expr_stmts_for_value = expr_stmts_for_value;
3732       rtx old_last_expr_value = last_expr_value;
3733       tree old_last_expr_type = last_expr_type;
3734       expr_stmts_for_value = 0;
3735
3736       /* Only clean up here if this point can actually be reached.  */
3737       insn = get_last_insn ();
3738       if (GET_CODE (insn) == NOTE)
3739         insn = prev_nonnote_insn (insn);
3740       reachable = (! insn || GET_CODE (insn) != BARRIER);
3741
3742       /* Do the cleanups.  */
3743       expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);
3744       if (reachable)
3745         do_pending_stack_adjust ();
3746
3747       expr_stmts_for_value = old_expr_stmts_for_value;
3748       last_expr_value = old_last_expr_value;
3749       last_expr_type = old_last_expr_type;
3750
3751       /* Restore the stack level.  */
3752
3753       if (reachable && thisblock->data.block.stack_level != 0)
3754         {
3755           emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3756                               thisblock->data.block.stack_level, NULL_RTX);
3757           if (nonlocal_goto_handler_slots != 0)
3758             emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3759                              NULL_RTX);
3760         }
3761
3762       /* Any gotos out of this block must also do these things.
3763          Also report any gotos with fixups that came to labels in this
3764          level.  */
3765       fixup_gotos (thisblock,
3766                    thisblock->data.block.stack_level,
3767                    thisblock->data.block.cleanups,
3768                    thisblock->data.block.first_insn,
3769                    dont_jump_in);
3770     }
3771
3772   /* Mark the beginning and end of the scope if requested.
3773      We do this now, after running cleanups on the variables
3774      just going out of scope, so they are in scope for their cleanups.  */
3775
3776   if (mark_ends)
3777     {
3778       rtx note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
3779       NOTE_BLOCK (note) = NOTE_BLOCK (thisblock->data.block.first_insn);
3780     }
3781   else
3782     /* Get rid of the beginning-mark if we don't make an end-mark.  */
3783     NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3784
3785   /* Restore the temporary level of TARGET_EXPRs.  */
3786   target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3787
3788   /* Restore block_stack level for containing block.  */
3789
3790   stack_block_stack = thisblock->data.block.innermost_stack_block;
3791   POPSTACK (block_stack);
3792
3793   /* Pop the stack slot nesting and free any slots at this level.  */
3794   pop_temp_slots ();
3795 }
3796 \f
3797 /* Generate code to save the stack pointer at the start of the current block
3798    and set up to restore it on exit.  */
3799
3800 void
3801 save_stack_pointer ()
3802 {
3803   struct nesting *thisblock = block_stack;
3804
3805   if (thisblock->data.block.stack_level == 0)
3806     {
3807       emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3808                        &thisblock->data.block.stack_level,
3809                        thisblock->data.block.first_insn);
3810       stack_block_stack = thisblock;
3811     }
3812 }
3813 \f
3814 /* Generate RTL for the automatic variable declaration DECL.
3815    (Other kinds of declarations are simply ignored if seen here.)  */
3816
3817 void
3818 expand_decl (decl)
3819      register tree decl;
3820 {
3821   struct nesting *thisblock;
3822   tree type;
3823
3824   type = TREE_TYPE (decl);
3825
3826   /* Only automatic variables need any expansion done.
3827      Static and external variables, and external functions,
3828      will be handled by `assemble_variable' (called from finish_decl).
3829      TYPE_DECL and CONST_DECL require nothing.
3830      PARM_DECLs are handled in `assign_parms'.  */
3831
3832   if (TREE_CODE (decl) != VAR_DECL)
3833     return;
3834   if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3835     return;
3836
3837   thisblock = block_stack;
3838
3839   /* Create the RTL representation for the variable.  */
3840
3841   if (type == error_mark_node)
3842     SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
3843
3844   else if (DECL_SIZE (decl) == 0)
3845     /* Variable with incomplete type.  */
3846     {
3847       if (DECL_INITIAL (decl) == 0)
3848         /* Error message was already done; now avoid a crash.  */
3849         SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
3850       else
3851         /* An initializer is going to decide the size of this array.
3852            Until we know the size, represent its address with a reg.  */
3853         SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode)));
3854
3855       set_mem_attributes (DECL_RTL (decl), decl, 1);
3856     }
3857   else if (DECL_MODE (decl) != BLKmode
3858            /* If -ffloat-store, don't put explicit float vars
3859               into regs.  */
3860            && !(flag_float_store
3861                 && TREE_CODE (type) == REAL_TYPE)
3862            && ! TREE_THIS_VOLATILE (decl)
3863            && (DECL_REGISTER (decl) || optimize)
3864            /* if -fcheck-memory-usage, check all variables.  */
3865            && ! current_function_check_memory_usage)
3866     {
3867       /* Automatic variable that can go in a register.  */
3868       int unsignedp = TREE_UNSIGNED (type);
3869       enum machine_mode reg_mode
3870         = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3871
3872       SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
3873       mark_user_reg (DECL_RTL (decl));
3874
3875       if (POINTER_TYPE_P (type))
3876         mark_reg_pointer (DECL_RTL (decl),
3877                           TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
3878
3879       maybe_set_unchanging (DECL_RTL (decl), decl);
3880
3881       /* If something wants our address, try to use ADDRESSOF.  */
3882       if (TREE_ADDRESSABLE (decl))
3883         put_var_into_stack (decl);
3884     }
3885
3886   else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
3887            && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3888                  && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
3889                                           STACK_CHECK_MAX_VAR_SIZE)))
3890     {
3891       /* Variable of fixed size that goes on the stack.  */
3892       rtx oldaddr = 0;
3893       rtx addr;
3894
3895       /* If we previously made RTL for this decl, it must be an array
3896          whose size was determined by the initializer.
3897          The old address was a register; set that register now
3898          to the proper address.  */
3899       if (DECL_RTL_SET_P (decl))
3900         {
3901           if (GET_CODE (DECL_RTL (decl)) != MEM
3902               || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3903             abort ();
3904           oldaddr = XEXP (DECL_RTL (decl), 0);
3905         }
3906
3907       SET_DECL_RTL (decl,
3908                     assign_temp (TREE_TYPE (decl), 1, 1, 1));
3909
3910       /* Set alignment we actually gave this decl.  */
3911       DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3912                            : GET_MODE_BITSIZE (DECL_MODE (decl)));
3913       DECL_USER_ALIGN (decl) = 0;
3914
3915       if (oldaddr)
3916         {
3917           addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3918           if (addr != oldaddr)
3919             emit_move_insn (oldaddr, addr);
3920         }
3921     }
3922   else
3923     /* Dynamic-size object: must push space on the stack.  */
3924     {
3925       rtx address, size;
3926
3927       /* Record the stack pointer on entry to block, if have
3928          not already done so.  */
3929       do_pending_stack_adjust ();
3930       save_stack_pointer ();
3931
3932       /* In function-at-a-time mode, variable_size doesn't expand this,
3933          so do it now.  */
3934       if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
3935         expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
3936                      const0_rtx, VOIDmode, 0);
3937
3938       /* Compute the variable's size, in bytes.  */
3939       size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
3940       free_temp_slots ();
3941
3942       /* Allocate space on the stack for the variable.  Note that
3943          DECL_ALIGN says how the variable is to be aligned and we
3944          cannot use it to conclude anything about the alignment of
3945          the size.  */
3946       address = allocate_dynamic_stack_space (size, NULL_RTX,
3947                                               TYPE_ALIGN (TREE_TYPE (decl)));
3948
3949       /* Reference the variable indirect through that rtx.  */
3950       SET_DECL_RTL (decl, gen_rtx_MEM (DECL_MODE (decl), address));
3951
3952       set_mem_attributes (DECL_RTL (decl), decl, 1);
3953
3954       /* Indicate the alignment we actually gave this variable.  */
3955 #ifdef STACK_BOUNDARY
3956       DECL_ALIGN (decl) = STACK_BOUNDARY;
3957 #else
3958       DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
3959 #endif
3960       DECL_USER_ALIGN (decl) = 0;
3961     }
3962 }
3963 \f
3964 /* Emit code to perform the initialization of a declaration DECL.  */
3965
3966 void
3967 expand_decl_init (decl)
3968      tree decl;
3969 {
3970   int was_used = TREE_USED (decl);
3971
3972   /* If this is a CONST_DECL, we don't have to generate any code, but
3973      if DECL_INITIAL is a constant, call expand_expr to force TREE_CST_RTL
3974      to be set while in the obstack containing the constant.  If we don't
3975      do this, we can lose if we have functions nested three deep and the middle
3976      function makes a CONST_DECL whose DECL_INITIAL is a STRING_CST while
3977      the innermost function is the first to expand that STRING_CST.  */
3978   if (TREE_CODE (decl) == CONST_DECL)
3979     {
3980       if (DECL_INITIAL (decl) && TREE_CONSTANT (DECL_INITIAL (decl)))
3981         expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
3982                      EXPAND_INITIALIZER);
3983       return;
3984     }
3985
3986   if (TREE_STATIC (decl))
3987     return;
3988
3989   /* Compute and store the initial value now.  */
3990
3991   if (DECL_INITIAL (decl) == error_mark_node)
3992     {
3993       enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3994
3995       if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3996           || code == POINTER_TYPE || code == REFERENCE_TYPE)
3997         expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
3998                            0, 0);
3999       emit_queue ();
4000     }
4001   else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
4002     {
4003       emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
4004       expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
4005       emit_queue ();
4006     }
4007
4008   /* Don't let the initialization count as "using" the variable.  */
4009   TREE_USED (decl) = was_used;
4010
4011   /* Free any temporaries we made while initializing the decl.  */
4012   preserve_temp_slots (NULL_RTX);
4013   free_temp_slots ();
4014 }
4015
4016 /* CLEANUP is an expression to be executed at exit from this binding contour;
4017    for example, in C++, it might call the destructor for this variable.
4018
4019    We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
4020    CLEANUP multiple times, and have the correct semantics.  This
4021    happens in exception handling, for gotos, returns, breaks that
4022    leave the current scope.
4023
4024    If CLEANUP is nonzero and DECL is zero, we record a cleanup
4025    that is not associated with any particular variable.   */
4026
4027 int
4028 expand_decl_cleanup (decl, cleanup)
4029      tree decl, cleanup;
4030 {
4031   struct nesting *thisblock;
4032
4033   /* Error if we are not in any block.  */
4034   if (cfun == 0 || block_stack == 0)
4035     return 0;
4036
4037   thisblock = block_stack;
4038
4039   /* Record the cleanup if there is one.  */
4040
4041   if (cleanup != 0)
4042     {
4043       tree t;
4044       rtx seq;
4045       tree *cleanups = &thisblock->data.block.cleanups;
4046       int cond_context = conditional_context ();
4047
4048       if (cond_context)
4049         {
4050           rtx flag = gen_reg_rtx (word_mode);
4051           rtx set_flag_0;
4052           tree cond;
4053
4054           start_sequence ();
4055           emit_move_insn (flag, const0_rtx);
4056           set_flag_0 = get_insns ();
4057           end_sequence ();
4058
4059           thisblock->data.block.last_unconditional_cleanup
4060             = emit_insns_after (set_flag_0,
4061                                 thisblock->data.block.last_unconditional_cleanup);
4062
4063           emit_move_insn (flag, const1_rtx);
4064
4065           cond = build_decl (VAR_DECL, NULL_TREE, type_for_mode (word_mode, 1));
4066           SET_DECL_RTL (cond, flag);
4067
4068           /* Conditionalize the cleanup.  */
4069           cleanup = build (COND_EXPR, void_type_node,
4070                            truthvalue_conversion (cond),
4071                            cleanup, integer_zero_node);
4072           cleanup = fold (cleanup);
4073
4074           cleanups = thisblock->data.block.cleanup_ptr;
4075         }
4076
4077       cleanup = unsave_expr (cleanup);
4078
4079       t = *cleanups = tree_cons (decl, cleanup, *cleanups);
4080
4081       if (! cond_context)
4082         /* If this block has a cleanup, it belongs in stack_block_stack.  */
4083         stack_block_stack = thisblock;
4084
4085       if (cond_context)
4086         {
4087           start_sequence ();
4088         }
4089
4090       /* If this was optimized so that there is no exception region for the
4091          cleanup, then mark the TREE_LIST node, so that we can later tell
4092          if we need to call expand_eh_region_end.  */
4093       if (! using_eh_for_cleanups_p
4094           || expand_eh_region_start_tree (decl, cleanup))
4095         TREE_ADDRESSABLE (t) = 1;
4096       /* If that started a new EH region, we're in a new block.  */
4097       thisblock = block_stack;
4098
4099       if (cond_context)
4100         {
4101           seq = get_insns ();
4102           end_sequence ();
4103           if (seq)
4104             thisblock->data.block.last_unconditional_cleanup
4105               = emit_insns_after (seq,
4106                                   thisblock->data.block.last_unconditional_cleanup);
4107         }
4108       else
4109         {
4110           thisblock->data.block.last_unconditional_cleanup
4111             = get_last_insn ();
4112           /* When we insert instructions after the last unconditional cleanup,
4113              we don't adjust last_insn.  That means that a later add_insn will
4114              clobber the instructions we've just added.  The easiest way to
4115              fix this is to just insert another instruction here, so that the
4116              instructions inserted after the last unconditional cleanup are
4117              never the last instruction.  */
4118           emit_note (NULL_PTR, NOTE_INSN_DELETED);
4119           thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
4120         }
4121     }
4122   return 1;
4123 }
4124
4125 /* Like expand_decl_cleanup, but suppress generating an exception handler
4126    to perform the cleanup.  */
4127
4128 #if 0
4129 int
4130 expand_decl_cleanup_no_eh (decl, cleanup)
4131      tree decl, cleanup;
4132 {
4133   int save_eh = using_eh_for_cleanups_p;
4134   int result;
4135
4136   using_eh_for_cleanups_p = 0;
4137   result = expand_decl_cleanup (decl, cleanup);
4138   using_eh_for_cleanups_p = save_eh;
4139
4140   return result;
4141 }
4142 #endif
4143
4144 /* Arrange for the top element of the dynamic cleanup chain to be
4145    popped if we exit the current binding contour.  DECL is the
4146    associated declaration, if any, otherwise NULL_TREE.  If the
4147    current contour is left via an exception, then __sjthrow will pop
4148    the top element off the dynamic cleanup chain.  The code that
4149    avoids doing the action we push into the cleanup chain in the
4150    exceptional case is contained in expand_cleanups.
4151
4152    This routine is only used by expand_eh_region_start, and that is
4153    the only way in which an exception region should be started.  This
4154    routine is only used when using the setjmp/longjmp codegen method
4155    for exception handling.  */
4156
4157 int
4158 expand_dcc_cleanup (decl)
4159      tree decl;
4160 {
4161   struct nesting *thisblock;
4162   tree cleanup;
4163
4164   /* Error if we are not in any block.  */
4165   if (cfun == 0 || block_stack == 0)
4166     return 0;
4167   thisblock = block_stack;
4168
4169   /* Record the cleanup for the dynamic handler chain.  */
4170
4171   cleanup = make_node (POPDCC_EXPR);
4172
4173   /* Add the cleanup in a manner similar to expand_decl_cleanup.  */
4174   thisblock->data.block.cleanups
4175     = tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4176
4177   /* If this block has a cleanup, it belongs in stack_block_stack.  */
4178   stack_block_stack = thisblock;
4179   return 1;
4180 }
4181
4182 /* Arrange for the top element of the dynamic handler chain to be
4183    popped if we exit the current binding contour.  DECL is the
4184    associated declaration, if any, otherwise NULL_TREE.  If the current
4185    contour is left via an exception, then __sjthrow will pop the top
4186    element off the dynamic handler chain.  The code that avoids doing
4187    the action we push into the handler chain in the exceptional case
4188    is contained in expand_cleanups.
4189
4190    This routine is only used by expand_eh_region_start, and that is
4191    the only way in which an exception region should be started.  This
4192    routine is only used when using the setjmp/longjmp codegen method
4193    for exception handling.  */
4194
4195 int
4196 expand_dhc_cleanup (decl)
4197      tree decl;
4198 {
4199   struct nesting *thisblock;
4200   tree cleanup;
4201
4202   /* Error if we are not in any block.  */
4203   if (cfun == 0 || block_stack == 0)
4204     return 0;
4205   thisblock = block_stack;
4206
4207   /* Record the cleanup for the dynamic handler chain.  */
4208
4209   cleanup = make_node (POPDHC_EXPR);
4210
4211   /* Add the cleanup in a manner similar to expand_decl_cleanup.  */
4212   thisblock->data.block.cleanups
4213     = tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4214
4215   /* If this block has a cleanup, it belongs in stack_block_stack.  */
4216   stack_block_stack = thisblock;
4217   return 1;
4218 }
4219 \f
4220 /* DECL is an anonymous union.  CLEANUP is a cleanup for DECL.
4221    DECL_ELTS is the list of elements that belong to DECL's type.
4222    In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup.  */
4223
4224 void
4225 expand_anon_union_decl (decl, cleanup, decl_elts)
4226      tree decl, cleanup, decl_elts;
4227 {
4228   struct nesting *thisblock = cfun == 0 ? 0 : block_stack;
4229   rtx x;
4230   tree t;
4231
4232   /* If any of the elements are addressable, so is the entire union.  */
4233   for (t = decl_elts; t; t = TREE_CHAIN (t))
4234     if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4235       {
4236         TREE_ADDRESSABLE (decl) = 1;
4237         break;
4238       }
4239
4240   expand_decl (decl);
4241   expand_decl_cleanup (decl, cleanup);
4242   x = DECL_RTL (decl);
4243
4244   /* Go through the elements, assigning RTL to each.  */
4245   for (t = decl_elts; t; t = TREE_CHAIN (t))
4246     {
4247       tree decl_elt = TREE_VALUE (t);
4248       tree cleanup_elt = TREE_PURPOSE (t);
4249       enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4250
4251       /* Propagate the union's alignment to the elements.  */
4252       DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4253       DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
4254
4255       /* If the element has BLKmode and the union doesn't, the union is
4256          aligned such that the element doesn't need to have BLKmode, so
4257          change the element's mode to the appropriate one for its size.  */
4258       if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4259         DECL_MODE (decl_elt) = mode
4260           = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
4261
4262       /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4263          instead create a new MEM rtx with the proper mode.  */
4264       if (GET_CODE (x) == MEM)
4265         {
4266           if (mode == GET_MODE (x))
4267             SET_DECL_RTL (decl_elt, x);
4268           else
4269             {
4270               SET_DECL_RTL (decl_elt,
4271                             gen_rtx_MEM (mode, copy_rtx (XEXP (x, 0))));
4272               MEM_COPY_ATTRIBUTES (DECL_RTL (decl_elt), x);
4273             }
4274         }
4275       else if (GET_CODE (x) == REG)
4276         {
4277           if (mode == GET_MODE (x))
4278             SET_DECL_RTL (decl_elt, x);
4279           else
4280             SET_DECL_RTL (decl_elt, gen_rtx_SUBREG (mode, x, 0));
4281         }
4282       else
4283         abort ();
4284
4285       /* Record the cleanup if there is one.  */
4286
4287       if (cleanup != 0)
4288         thisblock->data.block.cleanups
4289           = tree_cons (decl_elt, cleanup_elt,
4290                        thisblock->data.block.cleanups);
4291     }
4292 }
4293 \f
4294 /* Expand a list of cleanups LIST.
4295    Elements may be expressions or may be nested lists.
4296
4297    If DONT_DO is nonnull, then any list-element
4298    whose TREE_PURPOSE matches DONT_DO is omitted.
4299    This is sometimes used to avoid a cleanup associated with
4300    a value that is being returned out of the scope.
4301
4302    If IN_FIXUP is non-zero, we are generating this cleanup for a fixup
4303    goto and handle protection regions specially in that case.
4304
4305    If REACHABLE, we emit code, otherwise just inform the exception handling
4306    code about this finalization.  */
4307
4308 static void
4309 expand_cleanups (list, dont_do, in_fixup, reachable)
4310      tree list;
4311      tree dont_do;
4312      int in_fixup;
4313      int reachable;
4314 {
4315   tree tail;
4316   for (tail = list; tail; tail = TREE_CHAIN (tail))
4317     if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4318       {
4319         if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4320           expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4321         else
4322           {
4323             if (! in_fixup)
4324               {
4325                 tree cleanup = TREE_VALUE (tail);
4326
4327                 /* See expand_d{h,c}c_cleanup for why we avoid this.  */
4328                 if (TREE_CODE (cleanup) != POPDHC_EXPR
4329                     && TREE_CODE (cleanup) != POPDCC_EXPR
4330                     /* See expand_eh_region_start_tree for this case.  */
4331                     && ! TREE_ADDRESSABLE (tail))
4332                   {
4333                     cleanup = protect_with_terminate (cleanup);
4334                     expand_eh_region_end (cleanup);
4335                   }
4336               }
4337
4338             if (reachable)
4339               {
4340                 /* Cleanups may be run multiple times.  For example,
4341                    when exiting a binding contour, we expand the
4342                    cleanups associated with that contour.  When a goto
4343                    within that binding contour has a target outside that
4344                    contour, it will expand all cleanups from its scope to
4345                    the target.  Though the cleanups are expanded multiple
4346                    times, the control paths are non-overlapping so the
4347                    cleanups will not be executed twice.  */
4348
4349                 /* We may need to protect fixups with rethrow regions.  */
4350                 int protect = (in_fixup && ! TREE_ADDRESSABLE (tail));
4351
4352                 if (protect)
4353                   expand_fixup_region_start ();
4354
4355                 /* The cleanup might contain try-blocks, so we have to
4356                    preserve our current queue.  */
4357                 push_ehqueue ();
4358                 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4359                 pop_ehqueue ();
4360                 if (protect)
4361                   expand_fixup_region_end (TREE_VALUE (tail));
4362                 free_temp_slots ();
4363               }
4364           }
4365       }
4366 }
4367
4368 /* Mark when the context we are emitting RTL for as a conditional
4369    context, so that any cleanup actions we register with
4370    expand_decl_init will be properly conditionalized when those
4371    cleanup actions are later performed.  Must be called before any
4372    expression (tree) is expanded that is within a conditional context.  */
4373
4374 void
4375 start_cleanup_deferral ()
4376 {
4377   /* block_stack can be NULL if we are inside the parameter list.  It is
4378      OK to do nothing, because cleanups aren't possible here.  */
4379   if (block_stack)
4380     ++block_stack->data.block.conditional_code;
4381 }
4382
4383 /* Mark the end of a conditional region of code.  Because cleanup
4384    deferrals may be nested, we may still be in a conditional region
4385    after we end the currently deferred cleanups, only after we end all
4386    deferred cleanups, are we back in unconditional code.  */
4387
4388 void
4389 end_cleanup_deferral ()
4390 {
4391   /* block_stack can be NULL if we are inside the parameter list.  It is
4392      OK to do nothing, because cleanups aren't possible here.  */
4393   if (block_stack)
4394     --block_stack->data.block.conditional_code;
4395 }
4396
4397 /* Move all cleanups from the current block_stack
4398    to the containing block_stack, where they are assumed to
4399    have been created.  If anything can cause a temporary to
4400    be created, but not expanded for more than one level of
4401    block_stacks, then this code will have to change.  */
4402
4403 void
4404 move_cleanups_up ()
4405 {
4406   struct nesting *block = block_stack;
4407   struct nesting *outer = block->next;
4408
4409   outer->data.block.cleanups
4410     = chainon (block->data.block.cleanups,
4411                outer->data.block.cleanups);
4412   block->data.block.cleanups = 0;
4413 }
4414
4415 tree
4416 last_cleanup_this_contour ()
4417 {
4418   if (block_stack == 0)
4419     return 0;
4420
4421   return block_stack->data.block.cleanups;
4422 }
4423
4424 /* Return 1 if there are any pending cleanups at this point.
4425    If THIS_CONTOUR is nonzero, check the current contour as well.
4426    Otherwise, look only at the contours that enclose this one.  */
4427
4428 int
4429 any_pending_cleanups (this_contour)
4430      int this_contour;
4431 {
4432   struct nesting *block;
4433
4434   if (cfun == NULL || cfun->stmt == NULL || block_stack == 0)
4435     return 0;
4436
4437   if (this_contour && block_stack->data.block.cleanups != NULL)
4438     return 1;
4439   if (block_stack->data.block.cleanups == 0
4440       && block_stack->data.block.outer_cleanups == 0)
4441     return 0;
4442
4443   for (block = block_stack->next; block; block = block->next)
4444     if (block->data.block.cleanups != 0)
4445       return 1;
4446
4447   return 0;
4448 }
4449 \f
4450 /* Enter a case (Pascal) or switch (C) statement.
4451    Push a block onto case_stack and nesting_stack
4452    to accumulate the case-labels that are seen
4453    and to record the labels generated for the statement.
4454
4455    EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4456    Otherwise, this construct is transparent for `exit_something'.
4457
4458    EXPR is the index-expression to be dispatched on.
4459    TYPE is its nominal type.  We could simply convert EXPR to this type,
4460    but instead we take short cuts.  */
4461
4462 void
4463 expand_start_case (exit_flag, expr, type, printname)
4464      int exit_flag;
4465      tree expr;
4466      tree type;
4467      const char *printname;
4468 {
4469   register struct nesting *thiscase = ALLOC_NESTING ();
4470
4471   /* Make an entry on case_stack for the case we are entering.  */
4472
4473   thiscase->next = case_stack;
4474   thiscase->all = nesting_stack;
4475   thiscase->depth = ++nesting_depth;
4476   thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4477   thiscase->data.case_stmt.case_list = 0;
4478   thiscase->data.case_stmt.index_expr = expr;
4479   thiscase->data.case_stmt.nominal_type = type;
4480   thiscase->data.case_stmt.default_label = 0;
4481   thiscase->data.case_stmt.printname = printname;
4482   thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4483   case_stack = thiscase;
4484   nesting_stack = thiscase;
4485
4486   do_pending_stack_adjust ();
4487
4488   /* Make sure case_stmt.start points to something that won't
4489      need any transformation before expand_end_case.  */
4490   if (GET_CODE (get_last_insn ()) != NOTE)
4491     emit_note (NULL_PTR, NOTE_INSN_DELETED);
4492
4493   thiscase->data.case_stmt.start = get_last_insn ();
4494
4495   start_cleanup_deferral ();
4496 }
4497
4498 /* Start a "dummy case statement" within which case labels are invalid
4499    and are not connected to any larger real case statement.
4500    This can be used if you don't want to let a case statement jump
4501    into the middle of certain kinds of constructs.  */
4502
4503 void
4504 expand_start_case_dummy ()
4505 {
4506   register struct nesting *thiscase = ALLOC_NESTING ();
4507
4508   /* Make an entry on case_stack for the dummy.  */
4509
4510   thiscase->next = case_stack;
4511   thiscase->all = nesting_stack;
4512   thiscase->depth = ++nesting_depth;
4513   thiscase->exit_label = 0;
4514   thiscase->data.case_stmt.case_list = 0;
4515   thiscase->data.case_stmt.start = 0;
4516   thiscase->data.case_stmt.nominal_type = 0;
4517   thiscase->data.case_stmt.default_label = 0;
4518   case_stack = thiscase;
4519   nesting_stack = thiscase;
4520   start_cleanup_deferral ();
4521 }
4522
4523 /* End a dummy case statement.  */
4524
4525 void
4526 expand_end_case_dummy ()
4527 {
4528   end_cleanup_deferral ();
4529   POPSTACK (case_stack);
4530 }
4531
4532 /* Return the data type of the index-expression
4533    of the innermost case statement, or null if none.  */
4534
4535 tree
4536 case_index_expr_type ()
4537 {
4538   if (case_stack)
4539     return TREE_TYPE (case_stack->data.case_stmt.index_expr);
4540   return 0;
4541 }
4542 \f
4543 static void
4544 check_seenlabel ()
4545 {
4546   /* If this is the first label, warn if any insns have been emitted.  */
4547   if (case_stack->data.case_stmt.line_number_status >= 0)
4548     {
4549       rtx insn;
4550
4551       restore_line_number_status
4552         (case_stack->data.case_stmt.line_number_status);
4553       case_stack->data.case_stmt.line_number_status = -1;
4554
4555       for (insn = case_stack->data.case_stmt.start;
4556            insn;
4557            insn = NEXT_INSN (insn))
4558         {
4559           if (GET_CODE (insn) == CODE_LABEL)
4560             break;
4561           if (GET_CODE (insn) != NOTE
4562               && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4563             {
4564               do
4565                 insn = PREV_INSN (insn);
4566               while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4567
4568               /* If insn is zero, then there must have been a syntax error.  */
4569               if (insn)
4570                 warning_with_file_and_line (NOTE_SOURCE_FILE (insn),
4571                                             NOTE_LINE_NUMBER (insn),
4572                                             "unreachable code at beginning of %s",
4573                                             case_stack->data.case_stmt.printname);
4574               break;
4575             }
4576         }
4577     }
4578 }
4579
4580 /* Accumulate one case or default label inside a case or switch statement.
4581    VALUE is the value of the case (a null pointer, for a default label).
4582    The function CONVERTER, when applied to arguments T and V,
4583    converts the value V to the type T.
4584
4585    If not currently inside a case or switch statement, return 1 and do
4586    nothing.  The caller will print a language-specific error message.
4587    If VALUE is a duplicate or overlaps, return 2 and do nothing
4588    except store the (first) duplicate node in *DUPLICATE.
4589    If VALUE is out of range, return 3 and do nothing.
4590    If we are jumping into the scope of a cleanup or var-sized array, return 5.
4591    Return 0 on success.
4592
4593    Extended to handle range statements.  */
4594
4595 int
4596 pushcase (value, converter, label, duplicate)
4597      register tree value;
4598      tree (*converter) PARAMS ((tree, tree));
4599      register tree label;
4600      tree *duplicate;
4601 {
4602   tree index_type;
4603   tree nominal_type;
4604
4605   /* Fail if not inside a real case statement.  */
4606   if (! (case_stack && case_stack->data.case_stmt.start))
4607     return 1;
4608
4609   if (stack_block_stack
4610       && stack_block_stack->depth > case_stack->depth)
4611     return 5;
4612
4613   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4614   nominal_type = case_stack->data.case_stmt.nominal_type;
4615
4616   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
4617   if (index_type == error_mark_node)
4618     return 0;
4619
4620   /* Convert VALUE to the type in which the comparisons are nominally done.  */
4621   if (value != 0)
4622     value = (*converter) (nominal_type, value);
4623
4624   check_seenlabel ();
4625
4626   /* Fail if this value is out of range for the actual type of the index
4627      (which may be narrower than NOMINAL_TYPE).  */
4628   if (value != 0
4629       && (TREE_CONSTANT_OVERFLOW (value)
4630           || ! int_fits_type_p (value, index_type)))
4631     return 3;
4632
4633   return add_case_node (value, value, label, duplicate);
4634 }
4635
4636 /* Like pushcase but this case applies to all values between VALUE1 and
4637    VALUE2 (inclusive).  If VALUE1 is NULL, the range starts at the lowest
4638    value of the index type and ends at VALUE2.  If VALUE2 is NULL, the range
4639    starts at VALUE1 and ends at the highest value of the index type.
4640    If both are NULL, this case applies to all values.
4641
4642    The return value is the same as that of pushcase but there is one
4643    additional error code: 4 means the specified range was empty.  */
4644
4645 int
4646 pushcase_range (value1, value2, converter, label, duplicate)
4647      register tree value1, value2;
4648      tree (*converter) PARAMS ((tree, tree));
4649      register tree label;
4650      tree *duplicate;
4651 {
4652   tree index_type;
4653   tree nominal_type;
4654
4655   /* Fail if not inside a real case statement.  */
4656   if (! (case_stack && case_stack->data.case_stmt.start))
4657     return 1;
4658
4659   if (stack_block_stack
4660       && stack_block_stack->depth > case_stack->depth)
4661     return 5;
4662
4663   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4664   nominal_type = case_stack->data.case_stmt.nominal_type;
4665
4666   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
4667   if (index_type == error_mark_node)
4668     return 0;
4669
4670   check_seenlabel ();
4671
4672   /* Convert VALUEs to type in which the comparisons are nominally done
4673      and replace any unspecified value with the corresponding bound.  */
4674   if (value1 == 0)
4675     value1 = TYPE_MIN_VALUE (index_type);
4676   if (value2 == 0)
4677     value2 = TYPE_MAX_VALUE (index_type);
4678
4679   /* Fail if the range is empty.  Do this before any conversion since
4680      we want to allow out-of-range empty ranges.  */
4681   if (value2 != 0 && tree_int_cst_lt (value2, value1))
4682     return 4;
4683
4684   /* If the max was unbounded, use the max of the nominal_type we are
4685      converting to.  Do this after the < check above to suppress false
4686      positives.  */
4687   if (value2 == 0)
4688     value2 = TYPE_MAX_VALUE (nominal_type);
4689
4690   value1 = (*converter) (nominal_type, value1);
4691   value2 = (*converter) (nominal_type, value2);
4692
4693   /* Fail if these values are out of range.  */
4694   if (TREE_CONSTANT_OVERFLOW (value1)
4695       || ! int_fits_type_p (value1, index_type))
4696     return 3;
4697
4698   if (TREE_CONSTANT_OVERFLOW (value2)
4699       || ! int_fits_type_p (value2, index_type))
4700     return 3;
4701
4702   return add_case_node (value1, value2, label, duplicate);
4703 }
4704
4705 /* Do the actual insertion of a case label for pushcase and pushcase_range
4706    into case_stack->data.case_stmt.case_list.  Use an AVL tree to avoid
4707    slowdown for large switch statements.  */
4708
4709 int
4710 add_case_node (low, high, label, duplicate)
4711      tree low, high;
4712      tree label;
4713      tree *duplicate;
4714 {
4715   struct case_node *p, **q, *r;
4716
4717   /* If there's no HIGH value, then this is not a case range; it's
4718      just a simple case label.  But that's just a degenerate case
4719      range.  */
4720   if (!high)
4721     high = low;
4722
4723   /* Handle default labels specially.  */
4724   if (!high && !low)
4725     {
4726       if (case_stack->data.case_stmt.default_label != 0)
4727         {
4728           *duplicate = case_stack->data.case_stmt.default_label;
4729           return 2;
4730         }
4731       case_stack->data.case_stmt.default_label = label;
4732       expand_label (label);
4733       return 0;
4734     }
4735
4736   q = &case_stack->data.case_stmt.case_list;
4737   p = *q;
4738
4739   while ((r = *q))
4740     {
4741       p = r;
4742
4743       /* Keep going past elements distinctly greater than HIGH.  */
4744       if (tree_int_cst_lt (high, p->low))
4745         q = &p->left;
4746
4747       /* or distinctly less than LOW.  */
4748       else if (tree_int_cst_lt (p->high, low))
4749         q = &p->right;
4750
4751       else
4752         {
4753           /* We have an overlap; this is an error.  */
4754           *duplicate = p->code_label;
4755           return 2;
4756         }
4757     }
4758
4759   /* Add this label to the chain, and succeed.  */
4760
4761   r = (struct case_node *) xmalloc (sizeof (struct case_node));
4762   r->low = low;
4763
4764   /* If the bounds are equal, turn this into the one-value case.  */
4765   if (tree_int_cst_equal (low, high))
4766     r->high = r->low;
4767   else
4768     r->high = high;
4769
4770   r->code_label = label;
4771   expand_label (label);
4772
4773   *q = r;
4774   r->parent = p;
4775   r->left = 0;
4776   r->right = 0;
4777   r->balance = 0;
4778
4779   while (p)
4780     {
4781       struct case_node *s;
4782
4783       if (r == p->left)
4784         {
4785           int b;
4786
4787           if (! (b = p->balance))
4788             /* Growth propagation from left side.  */
4789             p->balance = -1;
4790           else if (b < 0)
4791             {
4792               if (r->balance < 0)
4793                 {
4794                   /* R-Rotation */
4795                   if ((p->left = s = r->right))
4796                     s->parent = p;
4797
4798                   r->right = p;
4799                   p->balance = 0;
4800                   r->balance = 0;
4801                   s = p->parent;
4802                   p->parent = r;
4803
4804                   if ((r->parent = s))
4805                     {
4806                       if (s->left == p)
4807                         s->left = r;
4808                       else
4809                         s->right = r;
4810                     }
4811                   else
4812                     case_stack->data.case_stmt.case_list = r;
4813                 }
4814               else
4815                 /* r->balance == +1 */
4816                 {
4817                   /* LR-Rotation */
4818
4819                   int b2;
4820                   struct case_node *t = r->right;
4821
4822                   if ((p->left = s = t->right))
4823                     s->parent = p;
4824
4825                   t->right = p;
4826                   if ((r->right = s = t->left))
4827                     s->parent = r;
4828
4829                   t->left = r;
4830                   b = t->balance;
4831                   b2 = b < 0;
4832                   p->balance = b2;
4833                   b2 = -b2 - b;
4834                   r->balance = b2;
4835                   t->balance = 0;
4836                   s = p->parent;
4837                   p->parent = t;
4838                   r->parent = t;
4839
4840                   if ((t->parent = s))
4841                     {
4842                       if (s->left == p)
4843                         s->left = t;
4844                       else
4845                         s->right = t;
4846                     }
4847                   else
4848                     case_stack->data.case_stmt.case_list = t;
4849                 }
4850               break;
4851             }
4852
4853           else
4854             {
4855               /* p->balance == +1; growth of left side balances the node.  */
4856               p->balance = 0;
4857               break;
4858             }
4859         }
4860       else
4861         /* r == p->right */
4862         {
4863           int b;
4864
4865           if (! (b = p->balance))
4866             /* Growth propagation from right side.  */
4867             p->balance++;
4868           else if (b > 0)
4869             {
4870               if (r->balance > 0)
4871                 {
4872                   /* L-Rotation */
4873
4874                   if ((p->right = s = r->left))
4875                     s->parent = p;
4876
4877                   r->left = p;
4878                   p->balance = 0;
4879                   r->balance = 0;
4880                   s = p->parent;
4881                   p->parent = r;
4882                   if ((r->parent = s))
4883                     {
4884                       if (s->left == p)
4885                         s->left = r;
4886                       else
4887                         s->right = r;
4888                     }
4889
4890                   else
4891                     case_stack->data.case_stmt.case_list = r;
4892                 }
4893
4894               else
4895                 /* r->balance == -1 */
4896                 {
4897                   /* RL-Rotation */
4898                   int b2;
4899                   struct case_node *t = r->left;
4900
4901                   if ((p->right = s = t->left))
4902                     s->parent = p;
4903
4904                   t->left = p;
4905
4906                   if ((r->left = s = t->right))
4907                     s->parent = r;
4908
4909                   t->right = r;
4910                   b = t->balance;
4911                   b2 = b < 0;
4912                   r->balance = b2;
4913                   b2 = -b2 - b;
4914                   p->balance = b2;
4915                   t->balance = 0;
4916                   s = p->parent;
4917                   p->parent = t;
4918                   r->parent = t;
4919
4920                   if ((t->parent = s))
4921                     {
4922                       if (s->left == p)
4923                         s->left = t;
4924                       else
4925                         s->right = t;
4926                     }
4927
4928                   else
4929                     case_stack->data.case_stmt.case_list = t;
4930                 }
4931               break;
4932             }
4933           else
4934             {
4935               /* p->balance == -1; growth of right side balances the node.  */
4936               p->balance = 0;
4937               break;
4938             }
4939         }
4940
4941       r = p;
4942       p = p->parent;
4943     }
4944
4945   return 0;
4946 }
4947 \f
4948 /* Returns the number of possible values of TYPE.
4949    Returns -1 if the number is unknown, variable, or if the number does not
4950    fit in a HOST_WIDE_INT.
4951    Sets *SPARENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4952    do not increase monotonically (there may be duplicates);
4953    to 1 if the values increase monotonically, but not always by 1;
4954    otherwise sets it to 0.  */
4955
4956 HOST_WIDE_INT
4957 all_cases_count (type, spareness)
4958      tree type;
4959      int *spareness;
4960 {
4961   tree t;
4962   HOST_WIDE_INT count, minval, lastval;
4963
4964   *spareness = 0;
4965
4966   switch (TREE_CODE (type))
4967     {
4968     case BOOLEAN_TYPE:
4969       count = 2;
4970       break;
4971
4972     case CHAR_TYPE:
4973       count = 1 << BITS_PER_UNIT;
4974       break;
4975
4976     default:
4977     case INTEGER_TYPE:
4978       if (TYPE_MAX_VALUE (type) != 0
4979           && 0 != (t = fold (build (MINUS_EXPR, type, TYPE_MAX_VALUE (type),
4980                                     TYPE_MIN_VALUE (type))))
4981           && 0 != (t = fold (build (PLUS_EXPR, type, t,
4982                                     convert (type, integer_zero_node))))
4983           && host_integerp (t, 1))
4984         count = tree_low_cst (t, 1);
4985       else
4986         return -1;
4987       break;
4988
4989     case ENUMERAL_TYPE:
4990       /* Don't waste time with enumeral types with huge values.  */
4991       if (! host_integerp (TYPE_MIN_VALUE (type), 0)
4992           || TYPE_MAX_VALUE (type) == 0
4993           || ! host_integerp (TYPE_MAX_VALUE (type), 0))
4994         return -1;
4995
4996       lastval = minval = tree_low_cst (TYPE_MIN_VALUE (type), 0);
4997       count = 0;
4998
4999       for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
5000         {
5001           HOST_WIDE_INT thisval = tree_low_cst (TREE_VALUE (t), 0);
5002
5003           if (*spareness == 2 || thisval < lastval)
5004             *spareness = 2;
5005           else if (thisval != minval + count)
5006             *spareness = 1;
5007
5008           count++;
5009         }
5010     }
5011
5012   return count;
5013 }
5014
5015 #define BITARRAY_TEST(ARRAY, INDEX) \
5016   ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
5017                           & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
5018 #define BITARRAY_SET(ARRAY, INDEX) \
5019   ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
5020                           |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
5021
5022 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
5023    with the case values we have seen, assuming the case expression
5024    has the given TYPE.
5025    SPARSENESS is as determined by all_cases_count.
5026
5027    The time needed is proportional to COUNT, unless
5028    SPARSENESS is 2, in which case quadratic time is needed.  */
5029
5030 void
5031 mark_seen_cases (type, cases_seen, count, sparseness)
5032      tree type;
5033      unsigned char *cases_seen;
5034      HOST_WIDE_INT count;
5035      int sparseness;
5036 {
5037   tree next_node_to_try = NULL_TREE;
5038   HOST_WIDE_INT next_node_offset = 0;
5039
5040   register struct case_node *n, *root = case_stack->data.case_stmt.case_list;
5041   tree val = make_node (INTEGER_CST);
5042
5043   TREE_TYPE (val) = type;
5044   if (! root)
5045     /* Do nothing.  */
5046     ;
5047   else if (sparseness == 2)
5048     {
5049       tree t;
5050       unsigned HOST_WIDE_INT xlo;
5051
5052       /* This less efficient loop is only needed to handle
5053          duplicate case values (multiple enum constants
5054          with the same value).  */
5055       TREE_TYPE (val) = TREE_TYPE (root->low);
5056       for (t = TYPE_VALUES (type), xlo = 0; t != NULL_TREE;
5057            t = TREE_CHAIN (t), xlo++)
5058         {
5059           TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
5060           TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
5061           n = root;
5062           do
5063             {
5064               /* Keep going past elements distinctly greater than VAL.  */
5065               if (tree_int_cst_lt (val, n->low))
5066                 n = n->left;
5067
5068               /* or distinctly less than VAL.  */
5069               else if (tree_int_cst_lt (n->high, val))
5070                 n = n->right;
5071
5072               else
5073                 {
5074                   /* We have found a matching range.  */
5075                   BITARRAY_SET (cases_seen, xlo);
5076                   break;
5077                 }
5078             }
5079           while (n);
5080         }
5081     }
5082   else
5083     {
5084       if (root->left)
5085         case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
5086
5087       for (n = root; n; n = n->right)
5088         {
5089           TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
5090           TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
5091           while (! tree_int_cst_lt (n->high, val))
5092             {
5093               /* Calculate (into xlo) the "offset" of the integer (val).
5094                  The element with lowest value has offset 0, the next smallest
5095                  element has offset 1, etc.  */
5096
5097               unsigned HOST_WIDE_INT xlo;
5098               HOST_WIDE_INT xhi;
5099               tree t;
5100
5101               if (sparseness && TYPE_VALUES (type) != NULL_TREE)
5102                 {
5103                   /* The TYPE_VALUES will be in increasing order, so
5104                      starting searching where we last ended.  */
5105                   t = next_node_to_try;
5106                   xlo = next_node_offset;
5107                   xhi = 0;
5108                   for (;;)
5109                     {
5110                       if (t == NULL_TREE)
5111                         {
5112                           t = TYPE_VALUES (type);
5113                           xlo = 0;
5114                         }
5115                       if (tree_int_cst_equal (val, TREE_VALUE (t)))
5116                         {
5117                           next_node_to_try = TREE_CHAIN (t);
5118                           next_node_offset = xlo + 1;
5119                           break;
5120                         }
5121                       xlo++;
5122                       t = TREE_CHAIN (t);
5123                       if (t == next_node_to_try)
5124                         {
5125                           xlo = -1;
5126                           break;
5127                         }
5128                     }
5129                 }
5130               else
5131                 {
5132                   t = TYPE_MIN_VALUE (type);
5133                   if (t)
5134                     neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
5135                                 &xlo, &xhi);
5136                   else
5137                     xlo = xhi = 0;
5138                   add_double (xlo, xhi,
5139                               TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5140                               &xlo, &xhi);
5141                 }
5142
5143               if (xhi == 0 && xlo < (unsigned HOST_WIDE_INT) count)
5144                 BITARRAY_SET (cases_seen, xlo);
5145
5146               add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5147                           1, 0,
5148                           &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5149             }
5150         }
5151     }
5152 }
5153
5154 /* Called when the index of a switch statement is an enumerated type
5155    and there is no default label.
5156
5157    Checks that all enumeration literals are covered by the case
5158    expressions of a switch.  Also, warn if there are any extra
5159    switch cases that are *not* elements of the enumerated type.
5160
5161    If all enumeration literals were covered by the case expressions,
5162    turn one of the expressions into the default expression since it should
5163    not be possible to fall through such a switch.  */
5164
5165 void
5166 check_for_full_enumeration_handling (type)
5167      tree type;
5168 {
5169   register struct case_node *n;
5170   register tree chain;
5171 #if 0  /* variable used by 'if 0'ed  code below.  */
5172   register struct case_node **l;
5173   int all_values = 1;
5174 #endif
5175
5176   /* True iff the selector type is a numbered set mode.  */
5177   int sparseness = 0;
5178
5179   /* The number of possible selector values.  */
5180   HOST_WIDE_INT size;
5181
5182   /* For each possible selector value. a one iff it has been matched
5183      by a case value alternative.  */
5184   unsigned char *cases_seen;
5185
5186   /* The allocated size of cases_seen, in chars.  */
5187   HOST_WIDE_INT bytes_needed;
5188
5189   if (! warn_switch)
5190     return;
5191
5192   size = all_cases_count (type, &sparseness);
5193   bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5194
5195   if (size > 0 && size < 600000
5196       /* We deliberately use calloc here, not cmalloc, so that we can suppress
5197          this optimization if we don't have enough memory rather than
5198          aborting, as xmalloc would do.  */
5199       && (cases_seen =
5200           (unsigned char *) really_call_calloc (bytes_needed, 1)) != NULL)
5201     {
5202       HOST_WIDE_INT i;
5203       tree v = TYPE_VALUES (type);
5204
5205       /* The time complexity of this code is normally O(N), where
5206          N being the number of members in the enumerated type.
5207          However, if type is a ENUMERAL_TYPE whose values do not
5208          increase monotonically, O(N*log(N)) time may be needed.  */
5209
5210       mark_seen_cases (type, cases_seen, size, sparseness);
5211
5212       for (i = 0; v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5213         if (BITARRAY_TEST (cases_seen, i) == 0)
5214           warning ("enumeration value `%s' not handled in switch",
5215                    IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5216
5217       free (cases_seen);
5218     }
5219
5220   /* Now we go the other way around; we warn if there are case
5221      expressions that don't correspond to enumerators.  This can
5222      occur since C and C++ don't enforce type-checking of
5223      assignments to enumeration variables.  */
5224
5225   if (case_stack->data.case_stmt.case_list
5226       && case_stack->data.case_stmt.case_list->left)
5227     case_stack->data.case_stmt.case_list
5228       = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5229   if (warn_switch)
5230     for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5231       {
5232         for (chain = TYPE_VALUES (type);
5233              chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5234              chain = TREE_CHAIN (chain))
5235           ;
5236
5237         if (!chain)
5238           {
5239             if (TYPE_NAME (type) == 0)
5240               warning ("case value `%ld' not in enumerated type",
5241                        (long) TREE_INT_CST_LOW (n->low));
5242             else
5243               warning ("case value `%ld' not in enumerated type `%s'",
5244                        (long) TREE_INT_CST_LOW (n->low),
5245                        IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5246                                             == IDENTIFIER_NODE)
5247                                            ? TYPE_NAME (type)
5248                                            : DECL_NAME (TYPE_NAME (type))));
5249           }
5250         if (!tree_int_cst_equal (n->low, n->high))
5251           {
5252             for (chain = TYPE_VALUES (type);
5253                  chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5254                  chain = TREE_CHAIN (chain))
5255               ;
5256
5257             if (!chain)
5258               {
5259                 if (TYPE_NAME (type) == 0)
5260                   warning ("case value `%ld' not in enumerated type",
5261                            (long) TREE_INT_CST_LOW (n->high));
5262                 else
5263                   warning ("case value `%ld' not in enumerated type `%s'",
5264                            (long) TREE_INT_CST_LOW (n->high),
5265                            IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5266                                                 == IDENTIFIER_NODE)
5267                                                ? TYPE_NAME (type)
5268                                                : DECL_NAME (TYPE_NAME (type))));
5269               }
5270           }
5271       }
5272
5273 #if 0
5274   /* ??? This optimization is disabled because it causes valid programs to
5275      fail.  ANSI C does not guarantee that an expression with enum type
5276      will have a value that is the same as one of the enumeration literals.  */
5277
5278   /* If all values were found as case labels, make one of them the default
5279      label.  Thus, this switch will never fall through.  We arbitrarily pick
5280      the last one to make the default since this is likely the most
5281      efficient choice.  */
5282
5283   if (all_values)
5284     {
5285       for (l = &case_stack->data.case_stmt.case_list;
5286            (*l)->right != 0;
5287            l = &(*l)->right)
5288         ;
5289
5290       case_stack->data.case_stmt.default_label = (*l)->code_label;
5291       *l = 0;
5292     }
5293 #endif /* 0 */
5294 }
5295
5296 /* Free CN, and its children.  */
5297
5298 static void 
5299 free_case_nodes (cn)
5300      case_node_ptr cn;
5301 {
5302   if (cn) 
5303     {
5304       free_case_nodes (cn->left);
5305       free_case_nodes (cn->right);
5306       free (cn);
5307     }
5308 }
5309
5310 \f
5311 /* Terminate a case (Pascal) or switch (C) statement
5312    in which ORIG_INDEX is the expression to be tested.
5313    Generate the code to test it and jump to the right place.  */
5314
5315 void
5316 expand_end_case (orig_index)
5317      tree orig_index;
5318 {
5319   tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE, orig_minval;
5320   rtx default_label = 0;
5321   register struct case_node *n;
5322   unsigned int count;
5323   rtx index;
5324   rtx table_label;
5325   int ncases;
5326   rtx *labelvec;
5327   register int i;
5328   rtx before_case;
5329   register struct nesting *thiscase = case_stack;
5330   tree index_expr, index_type;
5331   int unsignedp;
5332
5333   /* Don't crash due to previous errors.  */
5334   if (thiscase == NULL)
5335     return;
5336
5337   table_label = gen_label_rtx ();
5338   index_expr = thiscase->data.case_stmt.index_expr;
5339   index_type = TREE_TYPE (index_expr);
5340   unsignedp = TREE_UNSIGNED (index_type);
5341
5342   do_pending_stack_adjust ();
5343
5344   /* This might get an spurious warning in the presence of a syntax error;
5345      it could be fixed by moving the call to check_seenlabel after the
5346      check for error_mark_node, and copying the code of check_seenlabel that
5347      deals with case_stack->data.case_stmt.line_number_status /
5348      restore_line_number_status in front of the call to end_cleanup_deferral;
5349      However, this might miss some useful warnings in the presence of
5350      non-syntax errors.  */
5351   check_seenlabel ();
5352
5353   /* An ERROR_MARK occurs for various reasons including invalid data type.  */
5354   if (index_type != error_mark_node)
5355     {
5356       /* If switch expression was an enumerated type, check that all
5357          enumeration literals are covered by the cases.
5358          No sense trying this if there's a default case, however.  */
5359
5360       if (!thiscase->data.case_stmt.default_label
5361           && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
5362           && TREE_CODE (index_expr) != INTEGER_CST)
5363         check_for_full_enumeration_handling (TREE_TYPE (orig_index));
5364
5365       /* If we don't have a default-label, create one here,
5366          after the body of the switch.  */
5367       if (thiscase->data.case_stmt.default_label == 0)
5368         {
5369           thiscase->data.case_stmt.default_label
5370             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5371           expand_label (thiscase->data.case_stmt.default_label);
5372         }
5373       default_label = label_rtx (thiscase->data.case_stmt.default_label);
5374
5375       before_case = get_last_insn ();
5376
5377       if (thiscase->data.case_stmt.case_list
5378           && thiscase->data.case_stmt.case_list->left)
5379         thiscase->data.case_stmt.case_list
5380           = case_tree2list (thiscase->data.case_stmt.case_list, 0);
5381
5382       /* Simplify the case-list before we count it.  */
5383       group_case_nodes (thiscase->data.case_stmt.case_list);
5384
5385       /* Get upper and lower bounds of case values.
5386          Also convert all the case values to the index expr's data type.  */
5387
5388       count = 0;
5389       for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5390         {
5391           /* Check low and high label values are integers.  */
5392           if (TREE_CODE (n->low) != INTEGER_CST)
5393             abort ();
5394           if (TREE_CODE (n->high) != INTEGER_CST)
5395             abort ();
5396
5397           n->low = convert (index_type, n->low);
5398           n->high = convert (index_type, n->high);
5399
5400           /* Count the elements and track the largest and smallest
5401              of them (treating them as signed even if they are not).  */
5402           if (count++ == 0)
5403             {
5404               minval = n->low;
5405               maxval = n->high;
5406             }
5407           else
5408             {
5409               if (INT_CST_LT (n->low, minval))
5410                 minval = n->low;
5411               if (INT_CST_LT (maxval, n->high))
5412                 maxval = n->high;
5413             }
5414           /* A range counts double, since it requires two compares.  */
5415           if (! tree_int_cst_equal (n->low, n->high))
5416             count++;
5417         }
5418
5419       orig_minval = minval;
5420
5421       /* Compute span of values.  */
5422       if (count != 0)
5423         range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5424
5425       end_cleanup_deferral ();
5426
5427       if (count == 0)
5428         {
5429           expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5430           emit_queue ();
5431           emit_jump (default_label);
5432         }
5433
5434       /* If range of values is much bigger than number of values,
5435          make a sequence of conditional branches instead of a dispatch.
5436          If the switch-index is a constant, do it this way
5437          because we can optimize it.  */
5438
5439 #ifndef CASE_VALUES_THRESHOLD
5440 #ifdef HAVE_casesi
5441 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
5442 #else
5443       /* If machine does not have a case insn that compares the
5444          bounds, this means extra overhead for dispatch tables
5445          which raises the threshold for using them.  */
5446 #define CASE_VALUES_THRESHOLD 5
5447 #endif /* HAVE_casesi */
5448 #endif /* CASE_VALUES_THRESHOLD */
5449
5450       else if (count < CASE_VALUES_THRESHOLD
5451                || compare_tree_int (range, 10 * count) > 0
5452                /* RANGE may be signed, and really large ranges will show up
5453                   as negative numbers.  */
5454                || compare_tree_int (range, 0) < 0
5455 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5456                || flag_pic
5457 #endif
5458                || TREE_CODE (index_expr) == INTEGER_CST
5459                /* These will reduce to a constant.  */
5460                || (TREE_CODE (index_expr) == CALL_EXPR
5461                    && TREE_CODE (TREE_OPERAND (index_expr, 0)) == ADDR_EXPR
5462                    && TREE_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == FUNCTION_DECL
5463                    && DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_NORMAL
5464                    && DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_CLASSIFY_TYPE)
5465                || (TREE_CODE (index_expr) == COMPOUND_EXPR
5466                    && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
5467         {
5468           index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5469
5470           /* If the index is a short or char that we do not have
5471              an insn to handle comparisons directly, convert it to
5472              a full integer now, rather than letting each comparison
5473              generate the conversion.  */
5474
5475           if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5476               && (cmp_optab->handlers[(int) GET_MODE (index)].insn_code
5477                   == CODE_FOR_nothing))
5478             {
5479               enum machine_mode wider_mode;
5480               for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5481                    wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5482                 if (cmp_optab->handlers[(int) wider_mode].insn_code
5483                     != CODE_FOR_nothing)
5484                   {
5485                     index = convert_to_mode (wider_mode, index, unsignedp);
5486                     break;
5487                   }
5488             }
5489
5490           emit_queue ();
5491           do_pending_stack_adjust ();
5492
5493           index = protect_from_queue (index, 0);
5494           if (GET_CODE (index) == MEM)
5495             index = copy_to_reg (index);
5496           if (GET_CODE (index) == CONST_INT
5497               || TREE_CODE (index_expr) == INTEGER_CST)
5498             {
5499               /* Make a tree node with the proper constant value
5500                  if we don't already have one.  */
5501               if (TREE_CODE (index_expr) != INTEGER_CST)
5502                 {
5503                   index_expr
5504                     = build_int_2 (INTVAL (index),
5505                                    unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5506                   index_expr = convert (index_type, index_expr);
5507                 }
5508
5509               /* For constant index expressions we need only
5510                  issue a unconditional branch to the appropriate
5511                  target code.  The job of removing any unreachable
5512                  code is left to the optimisation phase if the
5513                  "-O" option is specified.  */
5514               for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5515                 if (! tree_int_cst_lt (index_expr, n->low)
5516                     && ! tree_int_cst_lt (n->high, index_expr))
5517                   break;
5518
5519               if (n)
5520                 emit_jump (label_rtx (n->code_label));
5521               else
5522                 emit_jump (default_label);
5523             }
5524           else
5525             {
5526               /* If the index expression is not constant we generate
5527                  a binary decision tree to select the appropriate
5528                  target code.  This is done as follows:
5529
5530                  The list of cases is rearranged into a binary tree,
5531                  nearly optimal assuming equal probability for each case.
5532
5533                  The tree is transformed into RTL, eliminating
5534                  redundant test conditions at the same time.
5535
5536                  If program flow could reach the end of the
5537                  decision tree an unconditional jump to the
5538                  default code is emitted.  */
5539
5540               use_cost_table
5541                 = (TREE_CODE (TREE_TYPE (orig_index)) != ENUMERAL_TYPE
5542                    && estimate_case_costs (thiscase->data.case_stmt.case_list));
5543               balance_case_nodes (&thiscase->data.case_stmt.case_list,
5544                                   NULL_PTR);
5545               emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5546                                default_label, index_type);
5547               emit_jump_if_reachable (default_label);
5548             }
5549         }
5550       else
5551         {
5552           int win = 0;
5553 #ifdef HAVE_casesi
5554           if (HAVE_casesi)
5555             {
5556               enum machine_mode index_mode = SImode;
5557               int index_bits = GET_MODE_BITSIZE (index_mode);
5558               rtx op1, op2;
5559               enum machine_mode op_mode;
5560
5561               /* Convert the index to SImode.  */
5562               if (GET_MODE_BITSIZE (TYPE_MODE (index_type))
5563                   > GET_MODE_BITSIZE (index_mode))
5564                 {
5565                   enum machine_mode omode = TYPE_MODE (index_type);
5566                   rtx rangertx = expand_expr (range, NULL_RTX, VOIDmode, 0);
5567
5568                   /* We must handle the endpoints in the original mode.  */
5569                   index_expr = build (MINUS_EXPR, index_type,
5570                                       index_expr, minval);
5571                   minval = integer_zero_node;
5572                   index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5573                   emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
5574                                            omode, 1, 0, default_label);
5575                   /* Now we can safely truncate.  */
5576                   index = convert_to_mode (index_mode, index, 0);
5577                 }
5578               else
5579                 {
5580                   if (TYPE_MODE (index_type) != index_mode)
5581                     {
5582                       index_expr = convert (type_for_size (index_bits, 0),
5583                                             index_expr);
5584                       index_type = TREE_TYPE (index_expr);
5585                     }
5586
5587                   index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5588                 }
5589               emit_queue ();
5590               index = protect_from_queue (index, 0);
5591               do_pending_stack_adjust ();
5592
5593               op_mode = insn_data[(int) CODE_FOR_casesi].operand[0].mode;
5594               if (! (*insn_data[(int) CODE_FOR_casesi].operand[0].predicate)
5595                   (index, op_mode))
5596                 index = copy_to_mode_reg (op_mode, index);
5597
5598               op1 = expand_expr (minval, NULL_RTX, VOIDmode, 0);
5599
5600               op_mode = insn_data[(int) CODE_FOR_casesi].operand[1].mode;
5601               if (! (*insn_data[(int) CODE_FOR_casesi].operand[1].predicate)
5602                   (op1, op_mode))
5603                 op1 = copy_to_mode_reg (op_mode, op1);
5604
5605               op2 = expand_expr (range, NULL_RTX, VOIDmode, 0);
5606
5607               op_mode = insn_data[(int) CODE_FOR_casesi].operand[2].mode;
5608               if (! (*insn_data[(int) CODE_FOR_casesi].operand[2].predicate)
5609                   (op2, op_mode))
5610                 op2 = copy_to_mode_reg (op_mode, op2);
5611
5612               emit_jump_insn (gen_casesi (index, op1, op2,
5613                                           table_label, default_label));
5614               win = 1;
5615             }
5616 #endif
5617 #ifdef HAVE_tablejump
5618           if (! win && HAVE_tablejump)
5619             {
5620               index_type = thiscase->data.case_stmt.nominal_type;
5621               index_expr = fold (build (MINUS_EXPR, index_type,
5622                                         convert (index_type, index_expr),
5623                                         convert (index_type, minval)));
5624               index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5625               emit_queue ();
5626               index = protect_from_queue (index, 0);
5627               do_pending_stack_adjust ();
5628
5629               do_tablejump (index, TYPE_MODE (index_type),
5630                             expand_expr (range, NULL_RTX, VOIDmode, 0),
5631                             table_label, default_label);
5632               win = 1;
5633             }
5634 #endif
5635           if (! win)
5636             abort ();
5637
5638           /* Get table of labels to jump to, in order of case index.  */
5639
5640           ncases = TREE_INT_CST_LOW (range) + 1;
5641           labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5642           memset ((char *) labelvec, 0, ncases * sizeof (rtx));
5643
5644           for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5645             {
5646               register HOST_WIDE_INT i
5647                 = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (orig_minval);
5648
5649               while (1)
5650                 {
5651                   labelvec[i]
5652                     = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5653                   if (i + TREE_INT_CST_LOW (orig_minval)
5654                       == TREE_INT_CST_LOW (n->high))
5655                     break;
5656                   i++;
5657                 }
5658             }
5659
5660           /* Fill in the gaps with the default.  */
5661           for (i = 0; i < ncases; i++)
5662             if (labelvec[i] == 0)
5663               labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5664
5665           /* Output the table */
5666           emit_label (table_label);
5667
5668           if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5669             emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5670                                                    gen_rtx_LABEL_REF (Pmode, table_label),
5671                                                    gen_rtvec_v (ncases, labelvec),
5672                                                    const0_rtx, const0_rtx));
5673           else
5674             emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5675                                               gen_rtvec_v (ncases, labelvec)));
5676
5677           /* If the case insn drops through the table,
5678              after the table we must jump to the default-label.
5679              Otherwise record no drop-through after the table.  */
5680 #ifdef CASE_DROPS_THROUGH
5681           emit_jump (default_label);
5682 #else
5683           emit_barrier ();
5684 #endif
5685         }
5686
5687       before_case = squeeze_notes (NEXT_INSN (before_case), get_last_insn ());
5688       reorder_insns (before_case, get_last_insn (),
5689                      thiscase->data.case_stmt.start);
5690     }
5691   else
5692     end_cleanup_deferral ();
5693
5694   if (thiscase->exit_label)
5695     emit_label (thiscase->exit_label);
5696
5697   free_case_nodes (case_stack->data.case_stmt.case_list);
5698   POPSTACK (case_stack);
5699
5700   free_temp_slots ();
5701 }
5702
5703 /* Convert the tree NODE into a list linked by the right field, with the left
5704    field zeroed.  RIGHT is used for recursion; it is a list to be placed
5705    rightmost in the resulting list.  */
5706
5707 static struct case_node *
5708 case_tree2list (node, right)
5709      struct case_node *node, *right;
5710 {
5711   struct case_node *left;
5712
5713   if (node->right)
5714     right = case_tree2list (node->right, right);
5715
5716   node->right = right;
5717   if ((left = node->left))
5718     {
5719       node->left = 0;
5720       return case_tree2list (left, node);
5721     }
5722
5723   return node;
5724 }
5725
5726 /* Generate code to jump to LABEL if OP1 and OP2 are equal.  */
5727
5728 static void
5729 do_jump_if_equal (op1, op2, label, unsignedp)
5730      rtx op1, op2, label;
5731      int unsignedp;
5732 {
5733   if (GET_CODE (op1) == CONST_INT
5734       && GET_CODE (op2) == CONST_INT)
5735     {
5736       if (INTVAL (op1) == INTVAL (op2))
5737         emit_jump (label);
5738     }
5739   else
5740     {
5741       enum machine_mode mode = GET_MODE (op1);
5742       if (mode == VOIDmode)
5743         mode = GET_MODE (op2);
5744       emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX, mode, unsignedp,
5745                                0, label);
5746     }
5747 }
5748 \f
5749 /* Not all case values are encountered equally.  This function
5750    uses a heuristic to weight case labels, in cases where that
5751    looks like a reasonable thing to do.
5752
5753    Right now, all we try to guess is text, and we establish the
5754    following weights:
5755
5756         chars above space:      16
5757         digits:                 16
5758         default:                12
5759         space, punct:           8
5760         tab:                    4
5761         newline:                2
5762         other "\" chars:        1
5763         remaining chars:        0
5764
5765    If we find any cases in the switch that are not either -1 or in the range
5766    of valid ASCII characters, or are control characters other than those
5767    commonly used with "\", don't treat this switch scanning text.
5768
5769    Return 1 if these nodes are suitable for cost estimation, otherwise
5770    return 0.  */
5771
5772 static int
5773 estimate_case_costs (node)
5774      case_node_ptr node;
5775 {
5776   tree min_ascii = integer_minus_one_node;
5777   tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5778   case_node_ptr n;
5779   int i;
5780
5781   /* If we haven't already made the cost table, make it now.  Note that the
5782      lower bound of the table is -1, not zero.  */
5783
5784   if (! cost_table_initialized)
5785     {
5786       cost_table_initialized = 1;
5787
5788       for (i = 0; i < 128; i++)
5789         {
5790           if (ISALNUM (i))
5791             COST_TABLE (i) = 16;
5792           else if (ISPUNCT (i))
5793             COST_TABLE (i) = 8;
5794           else if (ISCNTRL (i))
5795             COST_TABLE (i) = -1;
5796         }
5797
5798       COST_TABLE (' ') = 8;
5799       COST_TABLE ('\t') = 4;
5800       COST_TABLE ('\0') = 4;
5801       COST_TABLE ('\n') = 2;
5802       COST_TABLE ('\f') = 1;
5803       COST_TABLE ('\v') = 1;
5804       COST_TABLE ('\b') = 1;
5805     }
5806
5807   /* See if all the case expressions look like text.  It is text if the
5808      constant is >= -1 and the highest constant is <= 127.  Do all comparisons
5809      as signed arithmetic since we don't want to ever access cost_table with a
5810      value less than -1.  Also check that none of the constants in a range
5811      are strange control characters.  */
5812
5813   for (n = node; n; n = n->right)
5814     {
5815       if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5816         return 0;
5817
5818       for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
5819            i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
5820         if (COST_TABLE (i) < 0)
5821           return 0;
5822     }
5823
5824   /* All interesting values are within the range of interesting
5825      ASCII characters.  */
5826   return 1;
5827 }
5828
5829 /* Scan an ordered list of case nodes
5830    combining those with consecutive values or ranges.
5831
5832    Eg. three separate entries 1: 2: 3: become one entry 1..3:  */
5833
5834 static void
5835 group_case_nodes (head)
5836      case_node_ptr head;
5837 {
5838   case_node_ptr node = head;
5839
5840   while (node)
5841     {
5842       rtx lb = next_real_insn (label_rtx (node->code_label));
5843       rtx lb2;
5844       case_node_ptr np = node;
5845
5846       /* Try to group the successors of NODE with NODE.  */
5847       while (((np = np->right) != 0)
5848              /* Do they jump to the same place?  */
5849              && ((lb2 = next_real_insn (label_rtx (np->code_label))) == lb
5850                  || (lb != 0 && lb2 != 0
5851                      && simplejump_p (lb)
5852                      && simplejump_p (lb2)
5853                      && rtx_equal_p (SET_SRC (PATTERN (lb)),
5854                                      SET_SRC (PATTERN (lb2)))))
5855              /* Are their ranges consecutive?  */
5856              && tree_int_cst_equal (np->low,
5857                                     fold (build (PLUS_EXPR,
5858                                                  TREE_TYPE (node->high),
5859                                                  node->high,
5860                                                  integer_one_node)))
5861              /* An overflow is not consecutive.  */
5862              && tree_int_cst_lt (node->high,
5863                                  fold (build (PLUS_EXPR,
5864                                               TREE_TYPE (node->high),
5865                                               node->high,
5866                                               integer_one_node))))
5867         {
5868           node->high = np->high;
5869         }
5870       /* NP is the first node after NODE which can't be grouped with it.
5871          Delete the nodes in between, and move on to that node.  */
5872       node->right = np;
5873       node = np;
5874     }
5875 }
5876
5877 /* Take an ordered list of case nodes
5878    and transform them into a near optimal binary tree,
5879    on the assumption that any target code selection value is as
5880    likely as any other.
5881
5882    The transformation is performed by splitting the ordered
5883    list into two equal sections plus a pivot.  The parts are
5884    then attached to the pivot as left and right branches.  Each
5885    branch is then transformed recursively.  */
5886
5887 static void
5888 balance_case_nodes (head, parent)
5889      case_node_ptr *head;
5890      case_node_ptr parent;
5891 {
5892   register case_node_ptr np;
5893
5894   np = *head;
5895   if (np)
5896     {
5897       int cost = 0;
5898       int i = 0;
5899       int ranges = 0;
5900       register case_node_ptr *npp;
5901       case_node_ptr left;
5902
5903       /* Count the number of entries on branch.  Also count the ranges.  */
5904
5905       while (np)
5906         {
5907           if (!tree_int_cst_equal (np->low, np->high))
5908             {
5909               ranges++;
5910               if (use_cost_table)
5911                 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
5912             }
5913
5914           if (use_cost_table)
5915             cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
5916
5917           i++;
5918           np = np->right;
5919         }
5920
5921       if (i > 2)
5922         {
5923           /* Split this list if it is long enough for that to help.  */
5924           npp = head;
5925           left = *npp;
5926           if (use_cost_table)
5927             {
5928               /* Find the place in the list that bisects the list's total cost,
5929                  Here I gets half the total cost.  */
5930               int n_moved = 0;
5931               i = (cost + 1) / 2;
5932               while (1)
5933                 {
5934                   /* Skip nodes while their cost does not reach that amount.  */
5935                   if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5936                     i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
5937                   i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
5938                   if (i <= 0)
5939                     break;
5940                   npp = &(*npp)->right;
5941                   n_moved += 1;
5942                 }
5943               if (n_moved == 0)
5944                 {
5945                   /* Leave this branch lopsided, but optimize left-hand
5946                      side and fill in `parent' fields for right-hand side.  */
5947                   np = *head;
5948                   np->parent = parent;
5949                   balance_case_nodes (&np->left, np);
5950                   for (; np->right; np = np->right)
5951                     np->right->parent = np;
5952                   return;
5953                 }
5954             }
5955           /* If there are just three nodes, split at the middle one.  */
5956           else if (i == 3)
5957             npp = &(*npp)->right;
5958           else
5959             {
5960               /* Find the place in the list that bisects the list's total cost,
5961                  where ranges count as 2.
5962                  Here I gets half the total cost.  */
5963               i = (i + ranges + 1) / 2;
5964               while (1)
5965                 {
5966                   /* Skip nodes while their cost does not reach that amount.  */
5967                   if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5968                     i--;
5969                   i--;
5970                   if (i <= 0)
5971                     break;
5972                   npp = &(*npp)->right;
5973                 }
5974             }
5975           *head = np = *npp;
5976           *npp = 0;
5977           np->parent = parent;
5978           np->left = left;
5979
5980           /* Optimize each of the two split parts.  */
5981           balance_case_nodes (&np->left, np);
5982           balance_case_nodes (&np->right, np);
5983         }
5984       else
5985         {
5986           /* Else leave this branch as one level,
5987              but fill in `parent' fields.  */
5988           np = *head;
5989           np->parent = parent;
5990           for (; np->right; np = np->right)
5991             np->right->parent = np;
5992         }
5993     }
5994 }
5995 \f
5996 /* Search the parent sections of the case node tree
5997    to see if a test for the lower bound of NODE would be redundant.
5998    INDEX_TYPE is the type of the index expression.
5999
6000    The instructions to generate the case decision tree are
6001    output in the same order as nodes are processed so it is
6002    known that if a parent node checks the range of the current
6003    node minus one that the current node is bounded at its lower
6004    span.  Thus the test would be redundant.  */
6005
6006 static int
6007 node_has_low_bound (node, index_type)
6008      case_node_ptr node;
6009      tree index_type;
6010 {
6011   tree low_minus_one;
6012   case_node_ptr pnode;
6013
6014   /* If the lower bound of this node is the lowest value in the index type,
6015      we need not test it.  */
6016
6017   if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
6018     return 1;
6019
6020   /* If this node has a left branch, the value at the left must be less
6021      than that at this node, so it cannot be bounded at the bottom and
6022      we need not bother testing any further.  */
6023
6024   if (node->left)
6025     return 0;
6026
6027   low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
6028                                node->low, integer_one_node));
6029
6030   /* If the subtraction above overflowed, we can't verify anything.
6031      Otherwise, look for a parent that tests our value - 1.  */
6032
6033   if (! tree_int_cst_lt (low_minus_one, node->low))
6034     return 0;
6035
6036   for (pnode = node->parent; pnode; pnode = pnode->parent)
6037     if (tree_int_cst_equal (low_minus_one, pnode->high))
6038       return 1;
6039
6040   return 0;
6041 }
6042
6043 /* Search the parent sections of the case node tree
6044    to see if a test for the upper bound of NODE would be redundant.
6045    INDEX_TYPE is the type of the index expression.
6046
6047    The instructions to generate the case decision tree are
6048    output in the same order as nodes are processed so it is
6049    known that if a parent node checks the range of the current
6050    node plus one that the current node is bounded at its upper
6051    span.  Thus the test would be redundant.  */
6052
6053 static int
6054 node_has_high_bound (node, index_type)
6055      case_node_ptr node;
6056      tree index_type;
6057 {
6058   tree high_plus_one;
6059   case_node_ptr pnode;
6060
6061   /* If there is no upper bound, obviously no test is needed.  */
6062
6063   if (TYPE_MAX_VALUE (index_type) == NULL)
6064     return 1;
6065
6066   /* If the upper bound of this node is the highest value in the type
6067      of the index expression, we need not test against it.  */
6068
6069   if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
6070     return 1;
6071
6072   /* If this node has a right branch, the value at the right must be greater
6073      than that at this node, so it cannot be bounded at the top and
6074      we need not bother testing any further.  */
6075
6076   if (node->right)
6077     return 0;
6078
6079   high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
6080                                node->high, integer_one_node));
6081
6082   /* If the addition above overflowed, we can't verify anything.
6083      Otherwise, look for a parent that tests our value + 1.  */
6084
6085   if (! tree_int_cst_lt (node->high, high_plus_one))
6086     return 0;
6087
6088   for (pnode = node->parent; pnode; pnode = pnode->parent)
6089     if (tree_int_cst_equal (high_plus_one, pnode->low))
6090       return 1;
6091
6092   return 0;
6093 }
6094
6095 /* Search the parent sections of the
6096    case node tree to see if both tests for the upper and lower
6097    bounds of NODE would be redundant.  */
6098
6099 static int
6100 node_is_bounded (node, index_type)
6101      case_node_ptr node;
6102      tree index_type;
6103 {
6104   return (node_has_low_bound (node, index_type)
6105           && node_has_high_bound (node, index_type));
6106 }
6107
6108 /*  Emit an unconditional jump to LABEL unless it would be dead code.  */
6109
6110 static void
6111 emit_jump_if_reachable (label)
6112      rtx label;
6113 {
6114   if (GET_CODE (get_last_insn ()) != BARRIER)
6115     emit_jump (label);
6116 }
6117 \f
6118 /* Emit step-by-step code to select a case for the value of INDEX.
6119    The thus generated decision tree follows the form of the
6120    case-node binary tree NODE, whose nodes represent test conditions.
6121    INDEX_TYPE is the type of the index of the switch.
6122
6123    Care is taken to prune redundant tests from the decision tree
6124    by detecting any boundary conditions already checked by
6125    emitted rtx.  (See node_has_high_bound, node_has_low_bound
6126    and node_is_bounded, above.)
6127
6128    Where the test conditions can be shown to be redundant we emit
6129    an unconditional jump to the target code.  As a further
6130    optimization, the subordinates of a tree node are examined to
6131    check for bounded nodes.  In this case conditional and/or
6132    unconditional jumps as a result of the boundary check for the
6133    current node are arranged to target the subordinates associated
6134    code for out of bound conditions on the current node.
6135
6136    We can assume that when control reaches the code generated here,
6137    the index value has already been compared with the parents
6138    of this node, and determined to be on the same side of each parent
6139    as this node is.  Thus, if this node tests for the value 51,
6140    and a parent tested for 52, we don't need to consider
6141    the possibility of a value greater than 51.  If another parent
6142    tests for the value 50, then this node need not test anything.  */
6143
6144 static void
6145 emit_case_nodes (index, node, default_label, index_type)
6146      rtx index;
6147      case_node_ptr node;
6148      rtx default_label;
6149      tree index_type;
6150 {
6151   /* If INDEX has an unsigned type, we must make unsigned branches.  */
6152   int unsignedp = TREE_UNSIGNED (index_type);
6153   enum machine_mode mode = GET_MODE (index);
6154
6155   /* See if our parents have already tested everything for us.
6156      If they have, emit an unconditional jump for this node.  */
6157   if (node_is_bounded (node, index_type))
6158     emit_jump (label_rtx (node->code_label));
6159
6160   else if (tree_int_cst_equal (node->low, node->high))
6161     {
6162       /* Node is single valued.  First see if the index expression matches
6163          this node and then check our children, if any.  */
6164
6165       do_jump_if_equal (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
6166                         label_rtx (node->code_label), unsignedp);
6167
6168       if (node->right != 0 && node->left != 0)
6169         {
6170           /* This node has children on both sides.
6171              Dispatch to one side or the other
6172              by comparing the index value with this node's value.
6173              If one subtree is bounded, check that one first,
6174              so we can avoid real branches in the tree.  */
6175
6176           if (node_is_bounded (node->right, index_type))
6177             {
6178               emit_cmp_and_jump_insns (index,
6179                                        expand_expr (node->high, NULL_RTX,
6180                                                     VOIDmode, 0),
6181                                        GT, NULL_RTX, mode, unsignedp, 0,
6182                                        label_rtx (node->right->code_label));
6183               emit_case_nodes (index, node->left, default_label, index_type);
6184             }
6185
6186           else if (node_is_bounded (node->left, index_type))
6187             {
6188               emit_cmp_and_jump_insns (index,
6189                                        expand_expr (node->high, NULL_RTX,
6190                                                     VOIDmode, 0),
6191                                        LT, NULL_RTX, mode, unsignedp, 0,
6192                                        label_rtx (node->left->code_label));
6193               emit_case_nodes (index, node->right, default_label, index_type);
6194             }
6195
6196           else
6197             {
6198               /* Neither node is bounded.  First distinguish the two sides;
6199                  then emit the code for one side at a time.  */
6200
6201               tree test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6202
6203               /* See if the value is on the right.  */
6204               emit_cmp_and_jump_insns (index,
6205                                        expand_expr (node->high, NULL_RTX,
6206                                                     VOIDmode, 0),
6207                                        GT, NULL_RTX, mode, unsignedp, 0,
6208                                        label_rtx (test_label));
6209
6210               /* Value must be on the left.
6211                  Handle the left-hand subtree.  */
6212               emit_case_nodes (index, node->left, default_label, index_type);
6213               /* If left-hand subtree does nothing,
6214                  go to default.  */
6215               emit_jump_if_reachable (default_label);
6216
6217               /* Code branches here for the right-hand subtree.  */
6218               expand_label (test_label);
6219               emit_case_nodes (index, node->right, default_label, index_type);
6220             }
6221         }
6222
6223       else if (node->right != 0 && node->left == 0)
6224         {
6225           /* Here we have a right child but no left so we issue conditional
6226              branch to default and process the right child.
6227
6228              Omit the conditional branch to default if we it avoid only one
6229              right child; it costs too much space to save so little time.  */
6230
6231           if (node->right->right || node->right->left
6232               || !tree_int_cst_equal (node->right->low, node->right->high))
6233             {
6234               if (!node_has_low_bound (node, index_type))
6235                 {
6236                   emit_cmp_and_jump_insns (index,
6237                                            expand_expr (node->high, NULL_RTX,
6238                                                         VOIDmode, 0),
6239                                            LT, NULL_RTX, mode, unsignedp, 0,
6240                                            default_label);
6241                 }
6242
6243               emit_case_nodes (index, node->right, default_label, index_type);
6244             }
6245           else
6246             /* We cannot process node->right normally
6247                since we haven't ruled out the numbers less than
6248                this node's value.  So handle node->right explicitly.  */
6249             do_jump_if_equal (index,
6250                               expand_expr (node->right->low, NULL_RTX,
6251                                            VOIDmode, 0),
6252                               label_rtx (node->right->code_label), unsignedp);
6253         }
6254
6255       else if (node->right == 0 && node->left != 0)
6256         {
6257           /* Just one subtree, on the left.  */
6258
6259 #if 0 /* The following code and comment were formerly part
6260          of the condition here, but they didn't work
6261          and I don't understand what the idea was.  -- rms.  */
6262           /* If our "most probable entry" is less probable
6263              than the default label, emit a jump to
6264              the default label using condition codes
6265              already lying around.  With no right branch,
6266              a branch-greater-than will get us to the default
6267              label correctly.  */
6268           if (use_cost_table
6269               && COST_TABLE (TREE_INT_CST_LOW (node->high)) < 12)
6270             ;
6271 #endif /* 0 */
6272           if (node->left->left || node->left->right
6273               || !tree_int_cst_equal (node->left->low, node->left->high))
6274             {
6275               if (!node_has_high_bound (node, index_type))
6276                 {
6277                   emit_cmp_and_jump_insns (index, expand_expr (node->high,
6278                                                                NULL_RTX,
6279                                                                VOIDmode, 0),
6280                                            GT, NULL_RTX, mode, unsignedp, 0,
6281                                            default_label);
6282                 }
6283
6284               emit_case_nodes (index, node->left, default_label, index_type);
6285             }
6286           else
6287             /* We cannot process node->left normally
6288                since we haven't ruled out the numbers less than
6289                this node's value.  So handle node->left explicitly.  */
6290             do_jump_if_equal (index,
6291                               expand_expr (node->left->low, NULL_RTX,
6292                                            VOIDmode, 0),
6293                               label_rtx (node->left->code_label), unsignedp);
6294         }
6295     }
6296   else
6297     {
6298       /* Node is a range.  These cases are very similar to those for a single
6299          value, except that we do not start by testing whether this node
6300          is the one to branch to.  */
6301
6302       if (node->right != 0 && node->left != 0)
6303         {
6304           /* Node has subtrees on both sides.
6305              If the right-hand subtree is bounded,
6306              test for it first, since we can go straight there.
6307              Otherwise, we need to make a branch in the control structure,
6308              then handle the two subtrees.  */
6309           tree test_label = 0;
6310
6311           if (node_is_bounded (node->right, index_type))
6312             /* Right hand node is fully bounded so we can eliminate any
6313                testing and branch directly to the target code.  */
6314             emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6315                                                          VOIDmode, 0),
6316                                      GT, NULL_RTX, mode, unsignedp, 0,
6317                                      label_rtx (node->right->code_label));
6318           else
6319             {
6320               /* Right hand node requires testing.
6321                  Branch to a label where we will handle it later.  */
6322
6323               test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6324               emit_cmp_and_jump_insns (index,
6325                                        expand_expr (node->high, NULL_RTX,
6326                                                     VOIDmode, 0),
6327                                        GT, NULL_RTX, mode, unsignedp, 0,
6328                                        label_rtx (test_label));
6329             }
6330
6331           /* Value belongs to this node or to the left-hand subtree.  */
6332
6333           emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6334                                                        VOIDmode, 0),
6335                                    GE, NULL_RTX, mode, unsignedp, 0,
6336                                    label_rtx (node->code_label));
6337
6338           /* Handle the left-hand subtree.  */
6339           emit_case_nodes (index, node->left, default_label, index_type);
6340
6341           /* If right node had to be handled later, do that now.  */
6342
6343           if (test_label)
6344             {
6345               /* If the left-hand subtree fell through,
6346                  don't let it fall into the right-hand subtree.  */
6347               emit_jump_if_reachable (default_label);
6348
6349               expand_label (test_label);
6350               emit_case_nodes (index, node->right, default_label, index_type);
6351             }
6352         }
6353
6354       else if (node->right != 0 && node->left == 0)
6355         {
6356           /* Deal with values to the left of this node,
6357              if they are possible.  */
6358           if (!node_has_low_bound (node, index_type))
6359             {
6360               emit_cmp_and_jump_insns (index,
6361                                        expand_expr (node->low, NULL_RTX,
6362                                                     VOIDmode, 0),
6363                                        LT, NULL_RTX, mode, unsignedp, 0,
6364                                        default_label);
6365             }
6366
6367           /* Value belongs to this node or to the right-hand subtree.  */
6368
6369           emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6370                                                        VOIDmode, 0),
6371                                    LE, NULL_RTX, mode, unsignedp, 0,
6372                                    label_rtx (node->code_label));
6373
6374           emit_case_nodes (index, node->right, default_label, index_type);
6375         }
6376
6377       else if (node->right == 0 && node->left != 0)
6378         {
6379           /* Deal with values to the right of this node,
6380              if they are possible.  */
6381           if (!node_has_high_bound (node, index_type))
6382             {
6383               emit_cmp_and_jump_insns (index,
6384                                        expand_expr (node->high, NULL_RTX,
6385                                                     VOIDmode, 0),
6386                                        GT, NULL_RTX, mode, unsignedp, 0,
6387                                        default_label);
6388             }
6389
6390           /* Value belongs to this node or to the left-hand subtree.  */
6391
6392           emit_cmp_and_jump_insns (index,
6393                                    expand_expr (node->low, NULL_RTX,
6394                                                 VOIDmode, 0),
6395                                    GE, NULL_RTX, mode, unsignedp, 0,
6396                                    label_rtx (node->code_label));
6397
6398           emit_case_nodes (index, node->left, default_label, index_type);
6399         }
6400
6401       else
6402         {
6403           /* Node has no children so we check low and high bounds to remove
6404              redundant tests.  Only one of the bounds can exist,
6405              since otherwise this node is bounded--a case tested already.  */
6406
6407           if (!node_has_high_bound (node, index_type))
6408             {
6409               emit_cmp_and_jump_insns (index,
6410                                        expand_expr (node->high, NULL_RTX,
6411                                                     VOIDmode, 0),
6412                                        GT, NULL_RTX, mode, unsignedp, 0,
6413                                        default_label);
6414             }
6415
6416           if (!node_has_low_bound (node, index_type))
6417             {
6418               emit_cmp_and_jump_insns (index,
6419                                        expand_expr (node->low, NULL_RTX,
6420                                                     VOIDmode, 0),
6421                                        LT, NULL_RTX, mode, unsignedp, 0,
6422                                        default_label);
6423             }
6424
6425           emit_jump (label_rtx (node->code_label));
6426         }
6427     }
6428 }