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