OSDN Git Service

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