OSDN Git Service

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