* stmt.c (expand_decl): Do set RTX_UNCHANGING_P for TREE_READONLY.
[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
3872   if (TREE_READONLY (decl))
3873     RTX_UNCHANGING_P (DECL_RTL (decl)) = 1;
3874 }
3875 \f
3876 /* Emit code to perform the initialization of a declaration DECL.  */
3877
3878 void
3879 expand_decl_init (decl)
3880      tree decl;
3881 {
3882   int was_used = TREE_USED (decl);
3883
3884   /* If this is a CONST_DECL, we don't have to generate any code, but
3885      if DECL_INITIAL is a constant, call expand_expr to force TREE_CST_RTL
3886      to be set while in the obstack containing the constant.  If we don't
3887      do this, we can lose if we have functions nested three deep and the middle
3888      function makes a CONST_DECL whose DECL_INITIAL is a STRING_CST while
3889      the innermost function is the first to expand that STRING_CST.  */
3890   if (TREE_CODE (decl) == CONST_DECL)
3891     {
3892       if (DECL_INITIAL (decl) && TREE_CONSTANT (DECL_INITIAL (decl)))
3893         expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
3894                      EXPAND_INITIALIZER);
3895       return;
3896     }
3897
3898   if (TREE_STATIC (decl))
3899     return;
3900
3901   /* Compute and store the initial value now.  */
3902
3903   if (DECL_INITIAL (decl) == error_mark_node)
3904     {
3905       enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3906
3907       if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3908           || code == POINTER_TYPE || code == REFERENCE_TYPE)
3909         expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
3910                            0, 0);
3911       emit_queue ();
3912     }
3913   else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
3914     {
3915       emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3916       expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
3917       emit_queue ();
3918     }
3919
3920   /* Don't let the initialization count as "using" the variable.  */
3921   TREE_USED (decl) = was_used;
3922
3923   /* Free any temporaries we made while initializing the decl.  */
3924   preserve_temp_slots (NULL_RTX);
3925   free_temp_slots ();
3926 }
3927
3928 /* CLEANUP is an expression to be executed at exit from this binding contour;
3929    for example, in C++, it might call the destructor for this variable.
3930
3931    We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
3932    CLEANUP multiple times, and have the correct semantics.  This
3933    happens in exception handling, for gotos, returns, breaks that
3934    leave the current scope.
3935
3936    If CLEANUP is nonzero and DECL is zero, we record a cleanup
3937    that is not associated with any particular variable.   */
3938
3939 int
3940 expand_decl_cleanup (decl, cleanup)
3941      tree decl, cleanup;
3942 {
3943   struct nesting *thisblock;
3944
3945   /* Error if we are not in any block.  */
3946   if (cfun == 0 || block_stack == 0)
3947     return 0;
3948
3949   thisblock = block_stack;
3950
3951   /* Record the cleanup if there is one.  */
3952
3953   if (cleanup != 0)
3954     {
3955       tree t;
3956       rtx seq;
3957       tree *cleanups = &thisblock->data.block.cleanups;
3958       int cond_context = conditional_context ();
3959
3960       if (cond_context)
3961         {
3962           rtx flag = gen_reg_rtx (word_mode);
3963           rtx set_flag_0;
3964           tree cond;
3965
3966           start_sequence ();
3967           emit_move_insn (flag, const0_rtx);
3968           set_flag_0 = get_insns ();
3969           end_sequence ();
3970
3971           thisblock->data.block.last_unconditional_cleanup
3972             = emit_insns_after (set_flag_0,
3973                                 thisblock->data.block.last_unconditional_cleanup);
3974
3975           emit_move_insn (flag, const1_rtx);
3976
3977           /* All cleanups must be on the function_obstack.  */
3978           push_obstacks_nochange ();
3979           resume_temporary_allocation ();
3980
3981           cond = build_decl (VAR_DECL, NULL_TREE, type_for_mode (word_mode, 1));
3982           DECL_RTL (cond) = flag;
3983
3984           /* Conditionalize the cleanup.  */
3985           cleanup = build (COND_EXPR, void_type_node,
3986                            truthvalue_conversion (cond),
3987                            cleanup, integer_zero_node);
3988           cleanup = fold (cleanup);
3989
3990           pop_obstacks ();
3991
3992           cleanups = thisblock->data.block.cleanup_ptr;
3993         }
3994
3995       /* All cleanups must be on the function_obstack.  */
3996       push_obstacks_nochange ();
3997       resume_temporary_allocation ();
3998       cleanup = unsave_expr (cleanup);
3999       pop_obstacks ();
4000
4001       t = *cleanups = temp_tree_cons (decl, cleanup, *cleanups);
4002
4003       if (! cond_context)
4004         /* If this block has a cleanup, it belongs in stack_block_stack.  */
4005         stack_block_stack = thisblock;
4006
4007       if (cond_context)
4008         {
4009           start_sequence ();
4010         }
4011
4012       /* If this was optimized so that there is no exception region for the
4013          cleanup, then mark the TREE_LIST node, so that we can later tell
4014          if we need to call expand_eh_region_end.  */
4015       if (! using_eh_for_cleanups_p
4016           || expand_eh_region_start_tree (decl, cleanup))
4017         TREE_ADDRESSABLE (t) = 1;
4018       /* If that started a new EH region, we're in a new block.  */
4019       thisblock = block_stack;
4020
4021       if (cond_context)
4022         {
4023           seq = get_insns ();
4024           end_sequence ();
4025           if (seq)
4026             thisblock->data.block.last_unconditional_cleanup
4027               = emit_insns_after (seq,
4028                                   thisblock->data.block.last_unconditional_cleanup);
4029         }
4030       else
4031         {
4032           thisblock->data.block.last_unconditional_cleanup
4033             = get_last_insn ();
4034           thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
4035         }
4036     }
4037   return 1;
4038 }
4039
4040 /* Like expand_decl_cleanup, but suppress generating an exception handler
4041    to perform the cleanup.  */
4042
4043 #if 0
4044 int
4045 expand_decl_cleanup_no_eh (decl, cleanup)
4046      tree decl, cleanup;
4047 {
4048   int save_eh = using_eh_for_cleanups_p;
4049   int result;
4050
4051   using_eh_for_cleanups_p = 0;
4052   result = expand_decl_cleanup (decl, cleanup);
4053   using_eh_for_cleanups_p = save_eh;
4054
4055   return result;
4056 }
4057 #endif
4058
4059 /* Arrange for the top element of the dynamic cleanup chain to be
4060    popped if we exit the current binding contour.  DECL is the
4061    associated declaration, if any, otherwise NULL_TREE.  If the
4062    current contour is left via an exception, then __sjthrow will pop
4063    the top element off the dynamic cleanup chain.  The code that
4064    avoids doing the action we push into the cleanup chain in the
4065    exceptional case is contained in expand_cleanups.
4066
4067    This routine is only used by expand_eh_region_start, and that is
4068    the only way in which an exception region should be started.  This
4069    routine is only used when using the setjmp/longjmp codegen method
4070    for exception handling.  */
4071
4072 int
4073 expand_dcc_cleanup (decl)
4074      tree decl;
4075 {
4076   struct nesting *thisblock;
4077   tree cleanup;
4078
4079   /* Error if we are not in any block.  */
4080   if (cfun == 0 || block_stack == 0)
4081     return 0;
4082   thisblock = block_stack;
4083
4084   /* Record the cleanup for the dynamic handler chain.  */
4085
4086   /* All cleanups must be on the function_obstack.  */
4087   push_obstacks_nochange ();
4088   resume_temporary_allocation ();
4089   cleanup = make_node (POPDCC_EXPR);
4090   pop_obstacks ();
4091
4092   /* Add the cleanup in a manner similar to expand_decl_cleanup.  */
4093   thisblock->data.block.cleanups
4094     = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4095
4096   /* If this block has a cleanup, it belongs in stack_block_stack.  */
4097   stack_block_stack = thisblock;
4098   return 1;
4099 }
4100
4101 /* Arrange for the top element of the dynamic handler chain to be
4102    popped if we exit the current binding contour.  DECL is the
4103    associated declaration, if any, otherwise NULL_TREE.  If the current
4104    contour is left via an exception, then __sjthrow will pop the top
4105    element off the dynamic handler chain.  The code that avoids doing
4106    the action we push into the handler chain in the exceptional case
4107    is contained in expand_cleanups.
4108
4109    This routine is only used by expand_eh_region_start, and that is
4110    the only way in which an exception region should be started.  This
4111    routine is only used when using the setjmp/longjmp codegen method
4112    for exception handling.  */
4113
4114 int
4115 expand_dhc_cleanup (decl)
4116      tree decl;
4117 {
4118   struct nesting *thisblock;
4119   tree cleanup;
4120
4121   /* Error if we are not in any block.  */
4122   if (cfun == 0 || block_stack == 0)
4123     return 0;
4124   thisblock = block_stack;
4125
4126   /* Record the cleanup for the dynamic handler chain.  */
4127
4128   /* All cleanups must be on the function_obstack.  */
4129   push_obstacks_nochange ();
4130   resume_temporary_allocation ();
4131   cleanup = make_node (POPDHC_EXPR);
4132   pop_obstacks ();
4133
4134   /* Add the cleanup in a manner similar to expand_decl_cleanup.  */
4135   thisblock->data.block.cleanups
4136     = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4137
4138   /* If this block has a cleanup, it belongs in stack_block_stack.  */
4139   stack_block_stack = thisblock;
4140   return 1;
4141 }
4142 \f
4143 /* DECL is an anonymous union.  CLEANUP is a cleanup for DECL.
4144    DECL_ELTS is the list of elements that belong to DECL's type.
4145    In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup.  */
4146
4147 void
4148 expand_anon_union_decl (decl, cleanup, decl_elts)
4149      tree decl, cleanup, decl_elts;
4150 {
4151   struct nesting *thisblock = cfun == 0 ? 0 : block_stack;
4152   rtx x;
4153   tree t;
4154
4155   /* If any of the elements are addressable, so is the entire union.  */
4156   for (t = decl_elts; t; t = TREE_CHAIN (t))
4157     if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4158       {
4159         TREE_ADDRESSABLE (decl) = 1;
4160         break;
4161       }
4162           
4163   expand_decl (decl);
4164   expand_decl_cleanup (decl, cleanup);
4165   x = DECL_RTL (decl);
4166
4167   /* Go through the elements, assigning RTL to each.  */
4168   for (t = decl_elts; t; t = TREE_CHAIN (t))
4169     {
4170       tree decl_elt = TREE_VALUE (t);
4171       tree cleanup_elt = TREE_PURPOSE (t);
4172       enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4173
4174       /* Propagate the union's alignment to the elements.  */
4175       DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4176
4177       /* If the element has BLKmode and the union doesn't, the union is
4178          aligned such that the element doesn't need to have BLKmode, so
4179          change the element's mode to the appropriate one for its size.  */
4180       if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4181         DECL_MODE (decl_elt) = mode
4182           = mode_for_size (TREE_INT_CST_LOW (DECL_SIZE (decl_elt)),
4183                            MODE_INT, 1);
4184
4185       /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4186          instead create a new MEM rtx with the proper mode.  */
4187       if (GET_CODE (x) == MEM)
4188         {
4189           if (mode == GET_MODE (x))
4190             DECL_RTL (decl_elt) = x;
4191           else
4192             {
4193               DECL_RTL (decl_elt) = gen_rtx_MEM (mode, copy_rtx (XEXP (x, 0)));
4194               MEM_COPY_ATTRIBUTES (DECL_RTL (decl_elt), x);
4195               RTX_UNCHANGING_P (DECL_RTL (decl_elt)) = RTX_UNCHANGING_P (x);
4196             }
4197         }
4198       else if (GET_CODE (x) == REG)
4199         {
4200           if (mode == GET_MODE (x))
4201             DECL_RTL (decl_elt) = x;
4202           else
4203             DECL_RTL (decl_elt) = gen_rtx_SUBREG (mode, x, 0);
4204         }
4205       else
4206         abort ();
4207
4208       /* Record the cleanup if there is one.  */
4209
4210       if (cleanup != 0)
4211         thisblock->data.block.cleanups
4212           = temp_tree_cons (decl_elt, cleanup_elt,
4213                             thisblock->data.block.cleanups);
4214     }
4215 }
4216 \f
4217 /* Expand a list of cleanups LIST.
4218    Elements may be expressions or may be nested lists.
4219
4220    If DONT_DO is nonnull, then any list-element
4221    whose TREE_PURPOSE matches DONT_DO is omitted.
4222    This is sometimes used to avoid a cleanup associated with
4223    a value that is being returned out of the scope.
4224
4225    If IN_FIXUP is non-zero, we are generating this cleanup for a fixup
4226    goto and handle protection regions specially in that case.
4227
4228    If REACHABLE, we emit code, otherwise just inform the exception handling
4229    code about this finalization.  */
4230
4231 static void
4232 expand_cleanups (list, dont_do, in_fixup, reachable)
4233      tree list;
4234      tree dont_do;
4235      int in_fixup;
4236      int reachable;
4237 {
4238   tree tail;
4239   for (tail = list; tail; tail = TREE_CHAIN (tail))
4240     if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4241       {
4242         if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4243           expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4244         else
4245           {
4246             if (! in_fixup)
4247               {
4248                 tree cleanup = TREE_VALUE (tail);
4249
4250                 /* See expand_d{h,c}c_cleanup for why we avoid this.  */
4251                 if (TREE_CODE (cleanup) != POPDHC_EXPR
4252                     && TREE_CODE (cleanup) != POPDCC_EXPR
4253                     /* See expand_eh_region_start_tree for this case.  */
4254                     && ! TREE_ADDRESSABLE (tail))
4255                   {
4256                     cleanup = protect_with_terminate (cleanup);
4257                     expand_eh_region_end (cleanup);
4258                   }
4259               }
4260
4261             if (reachable)
4262               {
4263                 /* Cleanups may be run multiple times.  For example,
4264                    when exiting a binding contour, we expand the
4265                    cleanups associated with that contour.  When a goto
4266                    within that binding contour has a target outside that
4267                    contour, it will expand all cleanups from its scope to
4268                    the target.  Though the cleanups are expanded multiple
4269                    times, the control paths are non-overlapping so the
4270                    cleanups will not be executed twice.  */
4271
4272                 /* We may need to protect fixups with rethrow regions.  */
4273                 int protect = (in_fixup && ! TREE_ADDRESSABLE (tail));
4274
4275                 if (protect)
4276                   expand_fixup_region_start ();
4277
4278                 /* The cleanup might contain try-blocks, so we have to
4279                    preserve our current queue.  */
4280                 push_ehqueue ();
4281                 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4282                 pop_ehqueue ();
4283                 if (protect)
4284                   expand_fixup_region_end (TREE_VALUE (tail));
4285                 free_temp_slots ();
4286               }
4287           }
4288       }
4289 }
4290
4291 /* Mark when the context we are emitting RTL for as a conditional
4292    context, so that any cleanup actions we register with
4293    expand_decl_init will be properly conditionalized when those
4294    cleanup actions are later performed.  Must be called before any
4295    expression (tree) is expanded that is within a conditional context.  */
4296
4297 void
4298 start_cleanup_deferral ()
4299 {
4300   /* block_stack can be NULL if we are inside the parameter list.  It is
4301      OK to do nothing, because cleanups aren't possible here.  */
4302   if (block_stack)
4303     ++block_stack->data.block.conditional_code;
4304 }
4305
4306 /* Mark the end of a conditional region of code.  Because cleanup
4307    deferrals may be nested, we may still be in a conditional region
4308    after we end the currently deferred cleanups, only after we end all
4309    deferred cleanups, are we back in unconditional code.  */
4310
4311 void
4312 end_cleanup_deferral ()
4313 {
4314   /* block_stack can be NULL if we are inside the parameter list.  It is
4315      OK to do nothing, because cleanups aren't possible here.  */
4316   if (block_stack)
4317     --block_stack->data.block.conditional_code;
4318 }
4319
4320 /* Move all cleanups from the current block_stack
4321    to the containing block_stack, where they are assumed to
4322    have been created.  If anything can cause a temporary to
4323    be created, but not expanded for more than one level of
4324    block_stacks, then this code will have to change.  */
4325
4326 void
4327 move_cleanups_up ()
4328 {
4329   struct nesting *block = block_stack;
4330   struct nesting *outer = block->next;
4331
4332   outer->data.block.cleanups
4333     = chainon (block->data.block.cleanups,
4334                outer->data.block.cleanups);
4335   block->data.block.cleanups = 0;
4336 }
4337
4338 tree
4339 last_cleanup_this_contour ()
4340 {
4341   if (block_stack == 0)
4342     return 0;
4343
4344   return block_stack->data.block.cleanups;
4345 }
4346
4347 /* Return 1 if there are any pending cleanups at this point.
4348    If THIS_CONTOUR is nonzero, check the current contour as well.
4349    Otherwise, look only at the contours that enclose this one.  */
4350
4351 int
4352 any_pending_cleanups (this_contour)
4353      int this_contour;
4354 {
4355   struct nesting *block;
4356
4357   if (cfun == NULL || cfun->stmt == NULL || block_stack == 0)
4358     return 0;
4359
4360   if (this_contour && block_stack->data.block.cleanups != NULL)
4361     return 1;
4362   if (block_stack->data.block.cleanups == 0
4363       && block_stack->data.block.outer_cleanups == 0)
4364     return 0;
4365
4366   for (block = block_stack->next; block; block = block->next)
4367     if (block->data.block.cleanups != 0)
4368       return 1;
4369
4370   return 0;
4371 }
4372 \f
4373 /* Enter a case (Pascal) or switch (C) statement.
4374    Push a block onto case_stack and nesting_stack
4375    to accumulate the case-labels that are seen
4376    and to record the labels generated for the statement.
4377
4378    EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4379    Otherwise, this construct is transparent for `exit_something'.
4380
4381    EXPR is the index-expression to be dispatched on.
4382    TYPE is its nominal type.  We could simply convert EXPR to this type,
4383    but instead we take short cuts.  */
4384
4385 void
4386 expand_start_case (exit_flag, expr, type, printname)
4387      int exit_flag;
4388      tree expr;
4389      tree type;
4390      const char *printname;
4391 {
4392   register struct nesting *thiscase = ALLOC_NESTING ();
4393
4394   /* Make an entry on case_stack for the case we are entering.  */
4395
4396   thiscase->next = case_stack;
4397   thiscase->all = nesting_stack;
4398   thiscase->depth = ++nesting_depth;
4399   thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4400   thiscase->data.case_stmt.case_list = 0;
4401   thiscase->data.case_stmt.index_expr = expr;
4402   thiscase->data.case_stmt.nominal_type = type;
4403   thiscase->data.case_stmt.default_label = 0;
4404   thiscase->data.case_stmt.num_ranges = 0;
4405   thiscase->data.case_stmt.printname = printname;
4406   thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4407   case_stack = thiscase;
4408   nesting_stack = thiscase;
4409
4410   do_pending_stack_adjust ();
4411
4412   /* Make sure case_stmt.start points to something that won't
4413      need any transformation before expand_end_case.  */
4414   if (GET_CODE (get_last_insn ()) != NOTE)
4415     emit_note (NULL_PTR, NOTE_INSN_DELETED);
4416
4417   thiscase->data.case_stmt.start = get_last_insn ();
4418
4419   start_cleanup_deferral ();
4420 }
4421
4422
4423 /* Start a "dummy case statement" within which case labels are invalid
4424    and are not connected to any larger real case statement.
4425    This can be used if you don't want to let a case statement jump
4426    into the middle of certain kinds of constructs.  */
4427
4428 void
4429 expand_start_case_dummy ()
4430 {
4431   register struct nesting *thiscase = ALLOC_NESTING ();
4432
4433   /* Make an entry on case_stack for the dummy.  */
4434
4435   thiscase->next = case_stack;
4436   thiscase->all = nesting_stack;
4437   thiscase->depth = ++nesting_depth;
4438   thiscase->exit_label = 0;
4439   thiscase->data.case_stmt.case_list = 0;
4440   thiscase->data.case_stmt.start = 0;
4441   thiscase->data.case_stmt.nominal_type = 0;
4442   thiscase->data.case_stmt.default_label = 0;
4443   thiscase->data.case_stmt.num_ranges = 0;
4444   case_stack = thiscase;
4445   nesting_stack = thiscase;
4446   start_cleanup_deferral ();
4447 }
4448
4449 /* End a dummy case statement.  */
4450
4451 void
4452 expand_end_case_dummy ()
4453 {
4454   end_cleanup_deferral ();
4455   POPSTACK (case_stack);
4456 }
4457
4458 /* Return the data type of the index-expression
4459    of the innermost case statement, or null if none.  */
4460
4461 tree
4462 case_index_expr_type ()
4463 {
4464   if (case_stack)
4465     return TREE_TYPE (case_stack->data.case_stmt.index_expr);
4466   return 0;
4467 }
4468 \f
4469 static void
4470 check_seenlabel ()
4471 {
4472   /* If this is the first label, warn if any insns have been emitted.  */
4473   if (case_stack->data.case_stmt.line_number_status >= 0)
4474     {
4475       rtx insn;
4476
4477       restore_line_number_status
4478         (case_stack->data.case_stmt.line_number_status);
4479       case_stack->data.case_stmt.line_number_status = -1;
4480
4481       for (insn = case_stack->data.case_stmt.start;
4482            insn;
4483            insn = NEXT_INSN (insn))
4484         {
4485           if (GET_CODE (insn) == CODE_LABEL)
4486             break;
4487           if (GET_CODE (insn) != NOTE
4488               && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4489             {
4490               do
4491                 insn = PREV_INSN (insn);
4492               while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4493
4494               /* If insn is zero, then there must have been a syntax error.  */
4495               if (insn)
4496                 warning_with_file_and_line (NOTE_SOURCE_FILE(insn),
4497                                             NOTE_LINE_NUMBER(insn),
4498                                             "unreachable code at beginning of %s",
4499                                             case_stack->data.case_stmt.printname);
4500               break;
4501             }
4502         }
4503     }
4504 }
4505
4506 /* Accumulate one case or default label inside a case or switch statement.
4507    VALUE is the value of the case (a null pointer, for a default label).
4508    The function CONVERTER, when applied to arguments T and V,
4509    converts the value V to the type T.
4510
4511    If not currently inside a case or switch statement, return 1 and do
4512    nothing.  The caller will print a language-specific error message.
4513    If VALUE is a duplicate or overlaps, return 2 and do nothing
4514    except store the (first) duplicate node in *DUPLICATE.
4515    If VALUE is out of range, return 3 and do nothing.
4516    If we are jumping into the scope of a cleanup or var-sized array, return 5.
4517    Return 0 on success.
4518
4519    Extended to handle range statements.  */
4520
4521 int
4522 pushcase (value, converter, label, duplicate)
4523      register tree value;
4524      tree (*converter) PARAMS ((tree, tree));
4525      register tree label;
4526      tree *duplicate;
4527 {
4528   tree index_type;
4529   tree nominal_type;
4530
4531   /* Fail if not inside a real case statement.  */
4532   if (! (case_stack && case_stack->data.case_stmt.start))
4533     return 1;
4534
4535   if (stack_block_stack
4536       && stack_block_stack->depth > case_stack->depth)
4537     return 5;
4538
4539   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4540   nominal_type = case_stack->data.case_stmt.nominal_type;
4541
4542   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
4543   if (index_type == error_mark_node)
4544     return 0;
4545
4546   /* Convert VALUE to the type in which the comparisons are nominally done.  */
4547   if (value != 0)
4548     value = (*converter) (nominal_type, value);
4549
4550   check_seenlabel ();
4551
4552   /* Fail if this value is out of range for the actual type of the index
4553      (which may be narrower than NOMINAL_TYPE).  */
4554   if (value != 0
4555       && (TREE_CONSTANT_OVERFLOW (value)
4556           || ! int_fits_type_p (value, index_type)))
4557     return 3;
4558
4559   /* Fail if this is a duplicate or overlaps another entry.  */
4560   if (value == 0)
4561     {
4562       if (case_stack->data.case_stmt.default_label != 0)
4563         {
4564           *duplicate = case_stack->data.case_stmt.default_label;
4565           return 2;
4566         }
4567       case_stack->data.case_stmt.default_label = label;
4568     }
4569   else
4570     return add_case_node (value, value, label, duplicate);
4571
4572   expand_label (label);
4573   return 0;
4574 }
4575
4576 /* Like pushcase but this case applies to all values between VALUE1 and
4577    VALUE2 (inclusive).  If VALUE1 is NULL, the range starts at the lowest
4578    value of the index type and ends at VALUE2.  If VALUE2 is NULL, the range
4579    starts at VALUE1 and ends at the highest value of the index type.
4580    If both are NULL, this case applies to all values.
4581
4582    The return value is the same as that of pushcase but there is one
4583    additional error code: 4 means the specified range was empty.  */
4584
4585 int
4586 pushcase_range (value1, value2, converter, label, duplicate)
4587      register tree value1, value2;
4588      tree (*converter) PARAMS ((tree, tree));
4589      register tree label;
4590      tree *duplicate;
4591 {
4592   tree index_type;
4593   tree nominal_type;
4594
4595   /* Fail if not inside a real case statement.  */
4596   if (! (case_stack && case_stack->data.case_stmt.start))
4597     return 1;
4598
4599   if (stack_block_stack
4600       && stack_block_stack->depth > case_stack->depth)
4601     return 5;
4602
4603   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4604   nominal_type = case_stack->data.case_stmt.nominal_type;
4605
4606   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
4607   if (index_type == error_mark_node)
4608     return 0;
4609
4610   check_seenlabel ();
4611
4612   /* Convert VALUEs to type in which the comparisons are nominally done
4613      and replace any unspecified value with the corresponding bound.  */
4614   if (value1 == 0)
4615     value1 = TYPE_MIN_VALUE (index_type);
4616   if (value2 == 0)
4617     value2 = TYPE_MAX_VALUE (index_type);
4618
4619   /* Fail if the range is empty.  Do this before any conversion since
4620      we want to allow out-of-range empty ranges.  */
4621   if (value2 != 0 && tree_int_cst_lt (value2, value1))
4622     return 4;
4623
4624   /* If the max was unbounded, use the max of the nominal_type we are 
4625      converting to.  Do this after the < check above to suppress false
4626      positives.  */
4627   if (value2 == 0)
4628     value2 = TYPE_MAX_VALUE (nominal_type);
4629
4630   value1 = (*converter) (nominal_type, value1);
4631   value2 = (*converter) (nominal_type, value2);
4632
4633   /* Fail if these values are out of range.  */
4634   if (TREE_CONSTANT_OVERFLOW (value1)
4635       || ! int_fits_type_p (value1, index_type))
4636     return 3;
4637
4638   if (TREE_CONSTANT_OVERFLOW (value2)
4639       || ! int_fits_type_p (value2, index_type))
4640     return 3;
4641
4642   return add_case_node (value1, value2, label, duplicate);
4643 }
4644
4645 /* Do the actual insertion of a case label for pushcase and pushcase_range
4646    into case_stack->data.case_stmt.case_list.  Use an AVL tree to avoid
4647    slowdown for large switch statements.  */
4648
4649 static int
4650 add_case_node (low, high, label, duplicate)
4651      tree low, high;
4652      tree label;
4653      tree *duplicate;
4654 {
4655   struct case_node *p, **q, *r;
4656
4657   q = &case_stack->data.case_stmt.case_list;
4658   p = *q;
4659
4660   while ((r = *q))
4661     {
4662       p = r;
4663
4664       /* Keep going past elements distinctly greater than HIGH.  */
4665       if (tree_int_cst_lt (high, p->low))
4666         q = &p->left;
4667
4668       /* or distinctly less than LOW.  */
4669       else if (tree_int_cst_lt (p->high, low))
4670         q = &p->right;
4671
4672       else
4673         {
4674           /* We have an overlap; this is an error.  */
4675           *duplicate = p->code_label;
4676           return 2;
4677         }
4678     }
4679
4680   /* Add this label to the chain, and succeed.
4681      Copy LOW, HIGH so they are on temporary rather than momentary
4682      obstack and will thus survive till the end of the case statement.  */
4683
4684   r = (struct case_node *) oballoc (sizeof (struct case_node));
4685   r->low = copy_node (low);
4686
4687   /* If the bounds are equal, turn this into the one-value case.  */
4688
4689   if (tree_int_cst_equal (low, high))
4690     r->high = r->low;
4691   else
4692     {
4693       r->high = copy_node (high);
4694       case_stack->data.case_stmt.num_ranges++;
4695     }
4696
4697   r->code_label = label;
4698   expand_label (label);
4699
4700   *q = r;
4701   r->parent = p;
4702   r->left = 0;
4703   r->right = 0;
4704   r->balance = 0;
4705
4706   while (p)
4707     {
4708       struct case_node *s;
4709
4710       if (r == p->left)
4711         {
4712           int b;
4713
4714           if (! (b = p->balance))
4715             /* Growth propagation from left side.  */
4716             p->balance = -1;
4717           else if (b < 0)
4718             {
4719               if (r->balance < 0)
4720                 {
4721                   /* R-Rotation */
4722                   if ((p->left = s = r->right))
4723                     s->parent = p;
4724
4725                   r->right = p;
4726                   p->balance = 0;
4727                   r->balance = 0;
4728                   s = p->parent;
4729                   p->parent = r;
4730
4731                   if ((r->parent = s))
4732                     {
4733                       if (s->left == p)
4734                         s->left = r;
4735                       else
4736                         s->right = r;
4737                     }
4738                   else
4739                     case_stack->data.case_stmt.case_list = r;
4740                 }
4741               else
4742                 /* r->balance == +1 */
4743                 {
4744                   /* LR-Rotation */
4745
4746                   int b2;
4747                   struct case_node *t = r->right;
4748
4749                   if ((p->left = s = t->right))
4750                     s->parent = p;
4751
4752                   t->right = p;
4753                   if ((r->right = s = t->left))
4754                     s->parent = r;
4755
4756                   t->left = r;
4757                   b = t->balance;
4758                   b2 = b < 0;
4759                   p->balance = b2;
4760                   b2 = -b2 - b;
4761                   r->balance = b2;
4762                   t->balance = 0;
4763                   s = p->parent;
4764                   p->parent = t;
4765                   r->parent = t;
4766
4767                   if ((t->parent = s))
4768                     {
4769                       if (s->left == p)
4770                         s->left = t;
4771                       else
4772                         s->right = t;
4773                     }
4774                   else
4775                     case_stack->data.case_stmt.case_list = t;
4776                 }
4777               break;
4778             }
4779
4780           else
4781             {
4782               /* p->balance == +1; growth of left side balances the node.  */
4783               p->balance = 0;
4784               break;
4785             }
4786         }
4787       else
4788         /* r == p->right */
4789         {
4790           int b;
4791
4792           if (! (b = p->balance))
4793             /* Growth propagation from right side.  */
4794             p->balance++;
4795           else if (b > 0)
4796             {
4797               if (r->balance > 0)
4798                 {
4799                   /* L-Rotation */
4800
4801                   if ((p->right = s = r->left))
4802                     s->parent = p;
4803
4804                   r->left = p;
4805                   p->balance = 0;
4806                   r->balance = 0;
4807                   s = p->parent;
4808                   p->parent = r;
4809                   if ((r->parent = s))
4810                     {
4811                       if (s->left == p)
4812                         s->left = r;
4813                       else
4814                         s->right = r;
4815                     }
4816
4817                   else
4818                     case_stack->data.case_stmt.case_list = r;
4819                 }
4820
4821               else
4822                 /* r->balance == -1 */
4823                 {
4824                   /* RL-Rotation */
4825                   int b2;
4826                   struct case_node *t = r->left;
4827
4828                   if ((p->right = s = t->left))
4829                     s->parent = p;
4830
4831                   t->left = p;
4832
4833                   if ((r->left = s = t->right))
4834                     s->parent = r;
4835
4836                   t->right = r;
4837                   b = t->balance;
4838                   b2 = b < 0;
4839                   r->balance = b2;
4840                   b2 = -b2 - b;
4841                   p->balance = b2;
4842                   t->balance = 0;
4843                   s = p->parent;
4844                   p->parent = t;
4845                   r->parent = t;
4846
4847                   if ((t->parent = s))
4848                     {
4849                       if (s->left == p)
4850                         s->left = t;
4851                       else
4852                         s->right = t;
4853                     }
4854
4855                   else
4856                     case_stack->data.case_stmt.case_list = t;
4857                 }
4858               break;
4859             }
4860           else
4861             {
4862               /* p->balance == -1; growth of right side balances the node.  */
4863               p->balance = 0;
4864               break;
4865             }
4866         }
4867
4868       r = p;
4869       p = p->parent;
4870     }
4871
4872   return 0;
4873 }
4874
4875 \f
4876 /* Returns the number of possible values of TYPE.
4877    Returns -1 if the number is unknown or variable.
4878    Returns -2 if the number does not fit in a HOST_WIDE_INT.
4879    Sets *SPARENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4880    do not increase monotonically (there may be duplicates);
4881    to 1 if the values increase monotonically, but not always by 1;
4882    otherwise sets it to 0.  */
4883
4884 HOST_WIDE_INT
4885 all_cases_count (type, spareness)
4886      tree type;
4887      int *spareness;
4888 {
4889   HOST_WIDE_INT count;
4890   *spareness = 0;
4891
4892   switch (TREE_CODE (type))
4893     {
4894       tree t;
4895     case BOOLEAN_TYPE:
4896       count = 2;
4897       break;
4898     case CHAR_TYPE:
4899       count = 1 << BITS_PER_UNIT;
4900       break;
4901     default:
4902     case INTEGER_TYPE:
4903       if (TREE_CODE (TYPE_MIN_VALUE (type)) != INTEGER_CST
4904           || TYPE_MAX_VALUE (type) == NULL
4905           || TREE_CODE (TYPE_MAX_VALUE (type)) != INTEGER_CST)
4906         return -1;
4907       else
4908         {
4909           /* count
4910              = TREE_INT_CST_LOW (TYPE_MAX_VALUE (type))
4911              - TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)) + 1
4912              but with overflow checking.  */
4913           tree mint = TYPE_MIN_VALUE (type);
4914           tree maxt = TYPE_MAX_VALUE (type);
4915           HOST_WIDE_INT lo, hi;
4916           neg_double(TREE_INT_CST_LOW (mint), TREE_INT_CST_HIGH (mint),
4917                      &lo, &hi);
4918           add_double(TREE_INT_CST_LOW (maxt), TREE_INT_CST_HIGH (maxt),
4919                      lo, hi, &lo, &hi);
4920           add_double (lo, hi, 1, 0, &lo, &hi);
4921           if (hi != 0 || lo < 0)
4922             return -2;
4923           count = lo;
4924         }
4925       break;
4926     case ENUMERAL_TYPE:
4927       count = 0;
4928       for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
4929         {
4930           if (TREE_CODE (TYPE_MIN_VALUE (type)) != INTEGER_CST
4931               || TREE_CODE (TREE_VALUE (t)) != INTEGER_CST
4932               || TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)) + count
4933               != TREE_INT_CST_LOW (TREE_VALUE (t)))
4934             *spareness = 1;
4935           count++;
4936         }
4937       if (*spareness == 1)
4938         {
4939           tree prev = TREE_VALUE (TYPE_VALUES (type));
4940           for (t = TYPE_VALUES (type); t = TREE_CHAIN (t), t != NULL_TREE; )
4941             {
4942               if (! tree_int_cst_lt (prev, TREE_VALUE (t)))
4943                 {
4944                   *spareness = 2;
4945                   break;
4946                 }
4947               prev = TREE_VALUE (t);
4948             }
4949           
4950         }
4951     }
4952   return count;
4953 }
4954
4955
4956 #define BITARRAY_TEST(ARRAY, INDEX) \
4957   ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4958                           & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4959 #define BITARRAY_SET(ARRAY, INDEX) \
4960   ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4961                           |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4962
4963 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4964    with the case values we have seen, assuming the case expression
4965    has the given TYPE.
4966    SPARSENESS is as determined by all_cases_count.
4967
4968    The time needed is proportional to COUNT, unless
4969    SPARSENESS is 2, in which case quadratic time is needed.  */
4970
4971 void
4972 mark_seen_cases (type, cases_seen, count, sparseness)
4973      tree type;
4974      unsigned char *cases_seen;
4975      long count;
4976      int sparseness;
4977 {
4978   tree next_node_to_try = NULL_TREE;
4979   long next_node_offset = 0;
4980
4981   register struct case_node *n, *root = case_stack->data.case_stmt.case_list;
4982   tree val = make_node (INTEGER_CST);
4983   TREE_TYPE (val) = type;
4984   if (! root)
4985     ; /* Do nothing */
4986   else if (sparseness == 2)
4987     {
4988       tree t;
4989       HOST_WIDE_INT xlo;
4990
4991       /* This less efficient loop is only needed to handle
4992          duplicate case values (multiple enum constants
4993          with the same value).  */
4994       TREE_TYPE (val) = TREE_TYPE (root->low);
4995       for (t = TYPE_VALUES (type), xlo = 0;  t != NULL_TREE;
4996            t = TREE_CHAIN (t), xlo++)
4997         {
4998           TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
4999           TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
5000           n = root;
5001           do
5002             {
5003               /* Keep going past elements distinctly greater than VAL.  */
5004               if (tree_int_cst_lt (val, n->low))
5005                 n = n->left;
5006         
5007               /* or distinctly less than VAL.  */
5008               else if (tree_int_cst_lt (n->high, val))
5009                 n = n->right;
5010         
5011               else
5012                 {
5013                   /* We have found a matching range.  */
5014                   BITARRAY_SET (cases_seen, xlo);
5015                   break;
5016                 }
5017             }
5018           while (n);
5019         }
5020     }
5021   else
5022     {
5023       if (root->left)
5024         case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
5025       for (n = root; n; n = n->right)
5026         {
5027           TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
5028           TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
5029           while ( ! tree_int_cst_lt (n->high, val))
5030             {
5031               /* Calculate (into xlo) the "offset" of the integer (val).
5032                  The element with lowest value has offset 0, the next smallest
5033                  element has offset 1, etc.  */
5034
5035               HOST_WIDE_INT xlo, xhi;
5036               tree t;
5037               if (sparseness && TYPE_VALUES (type) != NULL_TREE)
5038                 {
5039                   /* The TYPE_VALUES will be in increasing order, so
5040                      starting searching where we last ended.  */
5041                   t = next_node_to_try;
5042                   xlo = next_node_offset;
5043                   xhi = 0;
5044                   for (;;)
5045                     {
5046                       if (t == NULL_TREE)
5047                         {
5048                           t = TYPE_VALUES (type);
5049                           xlo = 0;
5050                         }
5051                       if (tree_int_cst_equal (val, TREE_VALUE (t)))
5052                         {
5053                           next_node_to_try = TREE_CHAIN (t);
5054                           next_node_offset = xlo + 1;
5055                           break;
5056                         }
5057                       xlo++;
5058                       t = TREE_CHAIN (t);
5059                       if (t == next_node_to_try)
5060                         {
5061                           xlo = -1;
5062                           break;
5063                         }
5064                     }
5065                 }
5066               else
5067                 {
5068                   t = TYPE_MIN_VALUE (type);
5069                   if (t)
5070                     neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
5071                                 &xlo, &xhi);
5072                   else
5073                     xlo = xhi = 0;
5074                   add_double (xlo, xhi,
5075                               TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5076                               &xlo, &xhi);
5077                 }
5078               
5079               if (xhi == 0 && xlo >= 0 && xlo < count)
5080                 BITARRAY_SET (cases_seen, xlo);
5081               add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5082                           1, 0,
5083                           &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5084             }
5085         }
5086     }
5087 }
5088
5089 /* Called when the index of a switch statement is an enumerated type
5090    and there is no default label.
5091
5092    Checks that all enumeration literals are covered by the case
5093    expressions of a switch.  Also, warn if there are any extra
5094    switch cases that are *not* elements of the enumerated type.
5095
5096    If all enumeration literals were covered by the case expressions,
5097    turn one of the expressions into the default expression since it should
5098    not be possible to fall through such a switch.  */
5099
5100 void
5101 check_for_full_enumeration_handling (type)
5102      tree type;
5103 {
5104   register struct case_node *n;
5105   register tree chain;
5106 #if 0  /* variable used by 'if 0'ed  code below. */
5107   register struct case_node **l;
5108   int all_values = 1;
5109 #endif
5110
5111   /* True iff the selector type is a numbered set mode.  */
5112   int sparseness = 0;
5113
5114   /* The number of possible selector values.  */
5115   HOST_WIDE_INT size;
5116
5117   /* For each possible selector value. a one iff it has been matched
5118      by a case value alternative.  */
5119   unsigned char *cases_seen;
5120
5121   /* The allocated size of cases_seen, in chars.  */
5122   long bytes_needed;
5123
5124   if (! warn_switch)
5125     return;
5126
5127   size = all_cases_count (type, &sparseness);
5128   bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5129
5130   if (size > 0 && size < 600000
5131       /* We deliberately use calloc here, not cmalloc, so that we can suppress
5132          this optimization if we don't have enough memory rather than 
5133          aborting, as xmalloc would do.  */
5134       && (cases_seen = (unsigned char *) calloc (bytes_needed, 1)) != NULL)
5135     {
5136       long i;
5137       tree v = TYPE_VALUES (type);
5138
5139       /* The time complexity of this code is normally O(N), where
5140          N being the number of members in the enumerated type.
5141          However, if type is a ENUMERAL_TYPE whose values do not
5142          increase monotonically, O(N*log(N)) time may be needed.  */
5143
5144       mark_seen_cases (type, cases_seen, size, sparseness);
5145
5146       for (i = 0;  v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5147         {
5148           if (BITARRAY_TEST(cases_seen, i) == 0)
5149             warning ("enumeration value `%s' not handled in switch",
5150                      IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5151         }
5152
5153       free (cases_seen);
5154     }
5155
5156   /* Now we go the other way around; we warn if there are case
5157      expressions that don't correspond to enumerators.  This can
5158      occur since C and C++ don't enforce type-checking of
5159      assignments to enumeration variables.  */
5160
5161   if (case_stack->data.case_stmt.case_list
5162       && case_stack->data.case_stmt.case_list->left)
5163     case_stack->data.case_stmt.case_list
5164       = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5165   if (warn_switch)
5166     for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5167       {
5168         for (chain = TYPE_VALUES (type);
5169              chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5170              chain = TREE_CHAIN (chain))
5171           ;
5172
5173         if (!chain)
5174           {
5175             if (TYPE_NAME (type) == 0)
5176               warning ("case value `%ld' not in enumerated type",
5177                        (long) TREE_INT_CST_LOW (n->low));
5178             else
5179               warning ("case value `%ld' not in enumerated type `%s'",
5180                        (long) TREE_INT_CST_LOW (n->low),
5181                        IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5182                                             == IDENTIFIER_NODE)
5183                                            ? TYPE_NAME (type)
5184                                            : DECL_NAME (TYPE_NAME (type))));
5185           }
5186         if (!tree_int_cst_equal (n->low, n->high))
5187           {
5188             for (chain = TYPE_VALUES (type);
5189                  chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5190                  chain = TREE_CHAIN (chain))
5191               ;
5192
5193             if (!chain)
5194               {
5195                 if (TYPE_NAME (type) == 0)
5196                   warning ("case value `%ld' not in enumerated type",
5197                            (long) TREE_INT_CST_LOW (n->high));
5198                 else
5199                   warning ("case value `%ld' not in enumerated type `%s'",
5200                            (long) TREE_INT_CST_LOW (n->high),
5201                            IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5202                                                 == IDENTIFIER_NODE)
5203                                                ? TYPE_NAME (type)
5204                                                : DECL_NAME (TYPE_NAME (type))));
5205               }
5206           }
5207       }
5208
5209 #if 0
5210   /* ??? This optimization is disabled because it causes valid programs to
5211      fail.  ANSI C does not guarantee that an expression with enum type
5212      will have a value that is the same as one of the enumeration literals.  */
5213
5214   /* If all values were found as case labels, make one of them the default
5215      label.  Thus, this switch will never fall through.  We arbitrarily pick
5216      the last one to make the default since this is likely the most
5217      efficient choice.  */
5218
5219   if (all_values)
5220     {
5221       for (l = &case_stack->data.case_stmt.case_list;
5222            (*l)->right != 0;
5223            l = &(*l)->right)
5224         ;
5225
5226       case_stack->data.case_stmt.default_label = (*l)->code_label;
5227       *l = 0;
5228     }
5229 #endif /* 0 */
5230 }
5231
5232 \f
5233 /* Terminate a case (Pascal) or switch (C) statement
5234    in which ORIG_INDEX is the expression to be tested.
5235    Generate the code to test it and jump to the right place.  */
5236
5237 void
5238 expand_end_case (orig_index)
5239      tree orig_index;
5240 {
5241   tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE, orig_minval;
5242   rtx default_label = 0;
5243   register struct case_node *n;
5244   unsigned int count;
5245   rtx index;
5246   rtx table_label;
5247   int ncases;
5248   rtx *labelvec;
5249   register int i;
5250   rtx before_case;
5251   register struct nesting *thiscase = case_stack;
5252   tree index_expr, index_type;
5253   int unsignedp;
5254
5255   /* Don't crash due to previous errors.  */
5256   if (thiscase == NULL)
5257     return;
5258
5259   table_label = gen_label_rtx ();
5260   index_expr = thiscase->data.case_stmt.index_expr;
5261   index_type = TREE_TYPE (index_expr);
5262   unsignedp = TREE_UNSIGNED (index_type);
5263
5264   do_pending_stack_adjust ();
5265
5266   /* This might get an spurious warning in the presence of a syntax error;
5267      it could be fixed by moving the call to check_seenlabel after the
5268      check for error_mark_node, and copying the code of check_seenlabel that
5269      deals with case_stack->data.case_stmt.line_number_status /
5270      restore_line_number_status in front of the call to end_cleanup_deferral;
5271      However, this might miss some useful warnings in the presence of
5272      non-syntax errors.  */
5273   check_seenlabel ();
5274
5275   /* An ERROR_MARK occurs for various reasons including invalid data type.  */
5276   if (index_type != error_mark_node)
5277     {
5278       /* If switch expression was an enumerated type, check that all
5279          enumeration literals are covered by the cases.
5280          No sense trying this if there's a default case, however.  */
5281
5282       if (!thiscase->data.case_stmt.default_label
5283           && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
5284           && TREE_CODE (index_expr) != INTEGER_CST)
5285         check_for_full_enumeration_handling (TREE_TYPE (orig_index));
5286
5287       /* If we don't have a default-label, create one here,
5288          after the body of the switch.  */
5289       if (thiscase->data.case_stmt.default_label == 0)
5290         {
5291           thiscase->data.case_stmt.default_label
5292             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5293           expand_label (thiscase->data.case_stmt.default_label);
5294         }
5295       default_label = label_rtx (thiscase->data.case_stmt.default_label);
5296
5297       before_case = get_last_insn ();
5298
5299       if (thiscase->data.case_stmt.case_list
5300           && thiscase->data.case_stmt.case_list->left)
5301         thiscase->data.case_stmt.case_list
5302           = case_tree2list(thiscase->data.case_stmt.case_list, 0);
5303
5304       /* Simplify the case-list before we count it.  */
5305       group_case_nodes (thiscase->data.case_stmt.case_list);
5306
5307       /* Get upper and lower bounds of case values.
5308          Also convert all the case values to the index expr's data type.  */
5309
5310       count = 0;
5311       for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5312         {
5313           /* Check low and high label values are integers.  */
5314           if (TREE_CODE (n->low) != INTEGER_CST)
5315             abort ();
5316           if (TREE_CODE (n->high) != INTEGER_CST)
5317             abort ();
5318
5319           n->low = convert (index_type, n->low);
5320           n->high = convert (index_type, n->high);
5321
5322           /* Count the elements and track the largest and smallest
5323              of them (treating them as signed even if they are not).  */
5324           if (count++ == 0)
5325             {
5326               minval = n->low;
5327               maxval = n->high;
5328             }
5329           else
5330             {
5331               if (INT_CST_LT (n->low, minval))
5332                 minval = n->low;
5333               if (INT_CST_LT (maxval, n->high))
5334                 maxval = n->high;
5335             }
5336           /* A range counts double, since it requires two compares.  */
5337           if (! tree_int_cst_equal (n->low, n->high))
5338             count++;
5339         }
5340
5341       orig_minval = minval;
5342
5343       /* Compute span of values.  */
5344       if (count != 0)
5345         range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5346
5347       end_cleanup_deferral ();
5348
5349       if (count == 0)
5350         {
5351           expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5352           emit_queue ();
5353           emit_jump (default_label);
5354         }
5355
5356       /* If range of values is much bigger than number of values,
5357          make a sequence of conditional branches instead of a dispatch.
5358          If the switch-index is a constant, do it this way
5359          because we can optimize it.  */
5360
5361 #ifndef CASE_VALUES_THRESHOLD
5362 #ifdef HAVE_casesi
5363 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
5364 #else
5365       /* If machine does not have a case insn that compares the
5366          bounds, this means extra overhead for dispatch tables
5367          which raises the threshold for using them.  */
5368 #define CASE_VALUES_THRESHOLD 5
5369 #endif /* HAVE_casesi */
5370 #endif /* CASE_VALUES_THRESHOLD */
5371
5372       else if (TREE_INT_CST_HIGH (range) != 0
5373                || count < (unsigned int) CASE_VALUES_THRESHOLD
5374                || ((unsigned HOST_WIDE_INT) (TREE_INT_CST_LOW (range))
5375                    > 10 * count)
5376 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5377                || flag_pic
5378 #endif
5379                || TREE_CODE (index_expr) == INTEGER_CST
5380                /* These will reduce to a constant.  */
5381                || (TREE_CODE (index_expr) == CALL_EXPR
5382                    && TREE_CODE (TREE_OPERAND (index_expr, 0)) == ADDR_EXPR
5383                    && TREE_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == FUNCTION_DECL
5384                    && DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_NORMAL
5385                    && DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_CLASSIFY_TYPE)
5386                || (TREE_CODE (index_expr) == COMPOUND_EXPR
5387                    && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
5388         {
5389           index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5390
5391           /* If the index is a short or char that we do not have
5392              an insn to handle comparisons directly, convert it to
5393              a full integer now, rather than letting each comparison
5394              generate the conversion.  */
5395
5396           if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5397               && (cmp_optab->handlers[(int) GET_MODE(index)].insn_code
5398                   == CODE_FOR_nothing))
5399             {
5400               enum machine_mode wider_mode;
5401               for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5402                    wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5403                 if (cmp_optab->handlers[(int) wider_mode].insn_code
5404                     != CODE_FOR_nothing)
5405                   {
5406                     index = convert_to_mode (wider_mode, index, unsignedp);
5407                     break;
5408                   }
5409             }
5410
5411           emit_queue ();
5412           do_pending_stack_adjust ();
5413
5414           index = protect_from_queue (index, 0);
5415           if (GET_CODE (index) == MEM)
5416             index = copy_to_reg (index);
5417           if (GET_CODE (index) == CONST_INT
5418               || TREE_CODE (index_expr) == INTEGER_CST)
5419             {
5420               /* Make a tree node with the proper constant value
5421                  if we don't already have one.  */
5422               if (TREE_CODE (index_expr) != INTEGER_CST)
5423                 {
5424                   index_expr
5425                     = build_int_2 (INTVAL (index),
5426                                    unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5427                   index_expr = convert (index_type, index_expr);
5428                 }
5429
5430               /* For constant index expressions we need only
5431                  issue a unconditional branch to the appropriate
5432                  target code.  The job of removing any unreachable
5433                  code is left to the optimisation phase if the
5434                  "-O" option is specified.  */
5435               for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5436                 if (! tree_int_cst_lt (index_expr, n->low)
5437                     && ! tree_int_cst_lt (n->high, index_expr))
5438                   break;
5439
5440               if (n)
5441                 emit_jump (label_rtx (n->code_label));
5442               else
5443                 emit_jump (default_label);
5444             }
5445           else
5446             {
5447               /* If the index expression is not constant we generate
5448                  a binary decision tree to select the appropriate
5449                  target code.  This is done as follows:
5450
5451                  The list of cases is rearranged into a binary tree,
5452                  nearly optimal assuming equal probability for each case.
5453
5454                  The tree is transformed into RTL, eliminating
5455                  redundant test conditions at the same time.
5456
5457                  If program flow could reach the end of the
5458                  decision tree an unconditional jump to the
5459                  default code is emitted.  */
5460
5461               use_cost_table
5462                 = (TREE_CODE (TREE_TYPE (orig_index)) != ENUMERAL_TYPE
5463                    && estimate_case_costs (thiscase->data.case_stmt.case_list));
5464               balance_case_nodes (&thiscase->data.case_stmt.case_list, 
5465                                   NULL_PTR);
5466               emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5467                                default_label, index_type);
5468               emit_jump_if_reachable (default_label);
5469             }
5470         }
5471       else
5472         {
5473           int win = 0;
5474 #ifdef HAVE_casesi
5475           if (HAVE_casesi)
5476             {
5477               enum machine_mode index_mode = SImode;
5478               int index_bits = GET_MODE_BITSIZE (index_mode);
5479               rtx op1, op2;
5480               enum machine_mode op_mode;
5481
5482               /* Convert the index to SImode.  */
5483               if (GET_MODE_BITSIZE (TYPE_MODE (index_type))
5484                   > GET_MODE_BITSIZE (index_mode))
5485                 {
5486                   enum machine_mode omode = TYPE_MODE (index_type);
5487                   rtx rangertx = expand_expr (range, NULL_RTX, VOIDmode, 0);
5488
5489                   /* We must handle the endpoints in the original mode.  */
5490                   index_expr = build (MINUS_EXPR, index_type,
5491                                       index_expr, minval);
5492                   minval = integer_zero_node;
5493                   index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5494                   emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
5495                                            omode, 1, 0, default_label);
5496                   /* Now we can safely truncate.  */
5497                   index = convert_to_mode (index_mode, index, 0);
5498                 }
5499               else
5500                 {
5501                   if (TYPE_MODE (index_type) != index_mode)
5502                     {
5503                       index_expr = convert (type_for_size (index_bits, 0),
5504                                             index_expr);
5505                       index_type = TREE_TYPE (index_expr);
5506                     }
5507
5508                   index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5509                 }
5510               emit_queue ();
5511               index = protect_from_queue (index, 0);
5512               do_pending_stack_adjust ();
5513
5514               op_mode = insn_data[(int)CODE_FOR_casesi].operand[0].mode;
5515               if (! (*insn_data[(int)CODE_FOR_casesi].operand[0].predicate)
5516                   (index, op_mode))
5517                 index = copy_to_mode_reg (op_mode, index);
5518
5519               op1 = expand_expr (minval, NULL_RTX, VOIDmode, 0);
5520
5521               op_mode = insn_data[(int)CODE_FOR_casesi].operand[1].mode;
5522               if (! (*insn_data[(int)CODE_FOR_casesi].operand[1].predicate)
5523                   (op1, op_mode))
5524                 op1 = copy_to_mode_reg (op_mode, op1);
5525
5526               op2 = expand_expr (range, NULL_RTX, VOIDmode, 0);
5527
5528               op_mode = insn_data[(int)CODE_FOR_casesi].operand[2].mode;
5529               if (! (*insn_data[(int)CODE_FOR_casesi].operand[2].predicate)
5530                   (op2, op_mode))
5531                 op2 = copy_to_mode_reg (op_mode, op2);
5532
5533               emit_jump_insn (gen_casesi (index, op1, op2,
5534                                           table_label, default_label));
5535               win = 1;
5536             }
5537 #endif
5538 #ifdef HAVE_tablejump
5539           if (! win && HAVE_tablejump)
5540             {
5541               index_expr = convert (thiscase->data.case_stmt.nominal_type,
5542                                     fold (build (MINUS_EXPR, index_type,
5543                                                  index_expr, minval)));
5544               index_type = TREE_TYPE (index_expr);
5545               index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5546               emit_queue ();
5547               index = protect_from_queue (index, 0);
5548               do_pending_stack_adjust ();
5549
5550               do_tablejump (index, TYPE_MODE (index_type),
5551                             expand_expr (range, NULL_RTX, VOIDmode, 0),
5552                             table_label, default_label);
5553               win = 1;
5554             }
5555 #endif
5556           if (! win)
5557             abort ();
5558
5559           /* Get table of labels to jump to, in order of case index.  */
5560
5561           ncases = TREE_INT_CST_LOW (range) + 1;
5562           labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5563           bzero ((char *) labelvec, ncases * sizeof (rtx));
5564
5565           for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5566             {
5567               register HOST_WIDE_INT i
5568                 = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (orig_minval);
5569
5570               while (1)
5571                 {
5572                   labelvec[i]
5573                     = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5574                   if (i + TREE_INT_CST_LOW (orig_minval)
5575                       == TREE_INT_CST_LOW (n->high))
5576                     break;
5577                   i++;
5578                 }
5579             }
5580
5581           /* Fill in the gaps with the default.  */
5582           for (i = 0; i < ncases; i++)
5583             if (labelvec[i] == 0)
5584               labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5585
5586           /* Output the table */
5587           emit_label (table_label);
5588
5589           if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5590             emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5591                                                    gen_rtx_LABEL_REF (Pmode, table_label),
5592                                                    gen_rtvec_v (ncases, labelvec),
5593                                                     const0_rtx, const0_rtx));
5594           else
5595             emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5596                                               gen_rtvec_v (ncases, labelvec)));
5597
5598           /* If the case insn drops through the table,
5599              after the table we must jump to the default-label.
5600              Otherwise record no drop-through after the table.  */
5601 #ifdef CASE_DROPS_THROUGH
5602           emit_jump (default_label);
5603 #else
5604           emit_barrier ();
5605 #endif
5606         }
5607
5608       before_case = squeeze_notes (NEXT_INSN (before_case), get_last_insn ());
5609       reorder_insns (before_case, get_last_insn (),
5610                      thiscase->data.case_stmt.start);
5611     }
5612   else
5613     end_cleanup_deferral ();
5614
5615   if (thiscase->exit_label)
5616     emit_label (thiscase->exit_label);
5617
5618   POPSTACK (case_stack);
5619
5620   free_temp_slots ();
5621 }
5622
5623 /* Convert the tree NODE into a list linked by the right field, with the left
5624    field zeroed.  RIGHT is used for recursion; it is a list to be placed
5625    rightmost in the resulting list.  */
5626
5627 static struct case_node *
5628 case_tree2list (node, right)
5629      struct case_node *node, *right;
5630 {
5631   struct case_node *left;
5632
5633   if (node->right)
5634     right = case_tree2list (node->right, right);
5635
5636   node->right = right;
5637   if ((left = node->left))
5638     {
5639       node->left = 0;
5640       return case_tree2list (left, node);
5641     }
5642
5643   return node;
5644 }
5645
5646 /* Generate code to jump to LABEL if OP1 and OP2 are equal.  */
5647
5648 static void
5649 do_jump_if_equal (op1, op2, label, unsignedp)
5650      rtx op1, op2, label;
5651      int unsignedp;
5652 {
5653   if (GET_CODE (op1) == CONST_INT
5654       && GET_CODE (op2) == CONST_INT)
5655     {
5656       if (INTVAL (op1) == INTVAL (op2))
5657         emit_jump (label);
5658     }
5659   else
5660     {
5661       enum machine_mode mode = GET_MODE (op1);
5662       if (mode == VOIDmode)
5663         mode = GET_MODE (op2);
5664       emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX, mode, unsignedp,
5665                                0, label);
5666     }
5667 }
5668 \f
5669 /* Not all case values are encountered equally.  This function
5670    uses a heuristic to weight case labels, in cases where that
5671    looks like a reasonable thing to do.
5672
5673    Right now, all we try to guess is text, and we establish the
5674    following weights:
5675
5676         chars above space:      16
5677         digits:                 16
5678         default:                12
5679         space, punct:           8
5680         tab:                    4
5681         newline:                2
5682         other "\" chars:        1
5683         remaining chars:        0
5684
5685    If we find any cases in the switch that are not either -1 or in the range
5686    of valid ASCII characters, or are control characters other than those
5687    commonly used with "\", don't treat this switch scanning text.
5688
5689    Return 1 if these nodes are suitable for cost estimation, otherwise
5690    return 0.  */
5691
5692 static int
5693 estimate_case_costs (node)
5694      case_node_ptr node;
5695 {
5696   tree min_ascii = build_int_2 (-1, -1);
5697   tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5698   case_node_ptr n;
5699   int i;
5700
5701   /* If we haven't already made the cost table, make it now.  Note that the
5702      lower bound of the table is -1, not zero.  */
5703
5704   if (cost_table == NULL)
5705     {
5706       cost_table = cost_table_ + 1;
5707
5708       for (i = 0; i < 128; i++)
5709         {
5710           if (ISALNUM (i))
5711             cost_table[i] = 16;
5712           else if (ISPUNCT (i))
5713             cost_table[i] = 8;
5714           else if (ISCNTRL (i))
5715             cost_table[i] = -1;
5716         }
5717
5718       cost_table[' '] = 8;
5719       cost_table['\t'] = 4;
5720       cost_table['\0'] = 4;
5721       cost_table['\n'] = 2;
5722       cost_table['\f'] = 1;
5723       cost_table['\v'] = 1;
5724       cost_table['\b'] = 1;
5725     }
5726
5727   /* See if all the case expressions look like text.  It is text if the
5728      constant is >= -1 and the highest constant is <= 127.  Do all comparisons
5729      as signed arithmetic since we don't want to ever access cost_table with a
5730      value less than -1.  Also check that none of the constants in a range
5731      are strange control characters.  */
5732
5733   for (n = node; n; n = n->right)
5734     {
5735       if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5736         return 0;
5737
5738       for (i = TREE_INT_CST_LOW (n->low); i <= TREE_INT_CST_LOW (n->high); i++)
5739         if (cost_table[i] < 0)
5740           return 0;
5741     }
5742
5743   /* All interesting values are within the range of interesting
5744      ASCII characters.  */
5745   return 1;
5746 }
5747
5748 /* Scan an ordered list of case nodes
5749    combining those with consecutive values or ranges.
5750
5751    Eg. three separate entries 1: 2: 3: become one entry 1..3:  */
5752
5753 static void
5754 group_case_nodes (head)
5755      case_node_ptr head;
5756 {
5757   case_node_ptr node = head;
5758
5759   while (node)
5760     {
5761       rtx lb = next_real_insn (label_rtx (node->code_label));
5762       rtx lb2;
5763       case_node_ptr np = node;
5764
5765       /* Try to group the successors of NODE with NODE.  */
5766       while (((np = np->right) != 0)
5767              /* Do they jump to the same place?  */
5768              && ((lb2 = next_real_insn (label_rtx (np->code_label))) == lb
5769                  || (lb != 0 && lb2 != 0
5770                      && simplejump_p (lb)
5771                      && simplejump_p (lb2)
5772                      && rtx_equal_p (SET_SRC (PATTERN (lb)),
5773                                      SET_SRC (PATTERN (lb2)))))
5774              /* Are their ranges consecutive?  */
5775              && tree_int_cst_equal (np->low,
5776                                     fold (build (PLUS_EXPR,
5777                                                  TREE_TYPE (node->high),
5778                                                  node->high,
5779                                                  integer_one_node)))
5780              /* An overflow is not consecutive.  */
5781              && tree_int_cst_lt (node->high,
5782                                  fold (build (PLUS_EXPR,
5783                                               TREE_TYPE (node->high),
5784                                               node->high,
5785                                               integer_one_node))))
5786         {
5787           node->high = np->high;
5788         }
5789       /* NP is the first node after NODE which can't be grouped with it.
5790          Delete the nodes in between, and move on to that node.  */
5791       node->right = np;
5792       node = np;
5793     }
5794 }
5795
5796 /* Take an ordered list of case nodes
5797    and transform them into a near optimal binary tree,
5798    on the assumption that any target code selection value is as
5799    likely as any other.
5800
5801    The transformation is performed by splitting the ordered
5802    list into two equal sections plus a pivot.  The parts are
5803    then attached to the pivot as left and right branches.  Each
5804    branch is then transformed recursively.  */
5805
5806 static void
5807 balance_case_nodes (head, parent)
5808      case_node_ptr *head;
5809      case_node_ptr parent;
5810 {
5811   register case_node_ptr np;
5812
5813   np = *head;
5814   if (np)
5815     {
5816       int cost = 0;
5817       int i = 0;
5818       int ranges = 0;
5819       register case_node_ptr *npp;
5820       case_node_ptr left;
5821
5822       /* Count the number of entries on branch.  Also count the ranges.  */
5823
5824       while (np)
5825         {
5826           if (!tree_int_cst_equal (np->low, np->high))
5827             {
5828               ranges++;
5829               if (use_cost_table)
5830                 cost += cost_table[TREE_INT_CST_LOW (np->high)];
5831             }
5832
5833           if (use_cost_table)
5834             cost += cost_table[TREE_INT_CST_LOW (np->low)];
5835
5836           i++;
5837           np = np->right;
5838         }
5839
5840       if (i > 2)
5841         {
5842           /* Split this list if it is long enough for that to help.  */
5843           npp = head;
5844           left = *npp;
5845           if (use_cost_table)
5846             {
5847               /* Find the place in the list that bisects the list's total cost,
5848                  Here I gets half the total cost.  */
5849               int n_moved = 0;
5850               i = (cost + 1) / 2;
5851               while (1)
5852                 {
5853                   /* Skip nodes while their cost does not reach that amount.  */
5854                   if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5855                     i -= cost_table[TREE_INT_CST_LOW ((*npp)->high)];
5856                   i -= cost_table[TREE_INT_CST_LOW ((*npp)->low)];
5857                   if (i <= 0)
5858                     break;
5859                   npp = &(*npp)->right;
5860                   n_moved += 1;
5861                 }
5862               if (n_moved == 0)
5863                 {
5864                   /* Leave this branch lopsided, but optimize left-hand
5865                      side and fill in `parent' fields for right-hand side.  */
5866                   np = *head;
5867                   np->parent = parent;
5868                   balance_case_nodes (&np->left, np);
5869                   for (; np->right; np = np->right)
5870                     np->right->parent = np;
5871                   return;
5872                 }
5873             }
5874           /* If there are just three nodes, split at the middle one.  */
5875           else if (i == 3)
5876             npp = &(*npp)->right;
5877           else
5878             {
5879               /* Find the place in the list that bisects the list's total cost,
5880                  where ranges count as 2.
5881                  Here I gets half the total cost.  */
5882               i = (i + ranges + 1) / 2;
5883               while (1)
5884                 {
5885                   /* Skip nodes while their cost does not reach that amount.  */
5886                   if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5887                     i--;
5888                   i--;
5889                   if (i <= 0)
5890                     break;
5891                   npp = &(*npp)->right;
5892                 }
5893             }
5894           *head = np = *npp;
5895           *npp = 0;
5896           np->parent = parent;
5897           np->left = left;
5898
5899           /* Optimize each of the two split parts.  */
5900           balance_case_nodes (&np->left, np);
5901           balance_case_nodes (&np->right, np);
5902         }
5903       else
5904         {
5905           /* Else leave this branch as one level,
5906              but fill in `parent' fields.  */
5907           np = *head;
5908           np->parent = parent;
5909           for (; np->right; np = np->right)
5910             np->right->parent = np;
5911         }
5912     }
5913 }
5914 \f
5915 /* Search the parent sections of the case node tree
5916    to see if a test for the lower bound of NODE would be redundant.
5917    INDEX_TYPE is the type of the index expression.
5918
5919    The instructions to generate the case decision tree are
5920    output in the same order as nodes are processed so it is
5921    known that if a parent node checks the range of the current
5922    node minus one that the current node is bounded at its lower
5923    span.  Thus the test would be redundant.  */
5924
5925 static int
5926 node_has_low_bound (node, index_type)
5927      case_node_ptr node;
5928      tree index_type;
5929 {
5930   tree low_minus_one;
5931   case_node_ptr pnode;
5932
5933   /* If the lower bound of this node is the lowest value in the index type,
5934      we need not test it.  */
5935
5936   if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
5937     return 1;
5938
5939   /* If this node has a left branch, the value at the left must be less
5940      than that at this node, so it cannot be bounded at the bottom and
5941      we need not bother testing any further.  */
5942
5943   if (node->left)
5944     return 0;
5945
5946   low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
5947                                node->low, integer_one_node));
5948
5949   /* If the subtraction above overflowed, we can't verify anything.
5950      Otherwise, look for a parent that tests our value - 1.  */
5951
5952   if (! tree_int_cst_lt (low_minus_one, node->low))
5953     return 0;
5954
5955   for (pnode = node->parent; pnode; pnode = pnode->parent)
5956     if (tree_int_cst_equal (low_minus_one, pnode->high))
5957       return 1;
5958
5959   return 0;
5960 }
5961
5962 /* Search the parent sections of the case node tree
5963    to see if a test for the upper bound of NODE would be redundant.
5964    INDEX_TYPE is the type of the index expression.
5965
5966    The instructions to generate the case decision tree are
5967    output in the same order as nodes are processed so it is
5968    known that if a parent node checks the range of the current
5969    node plus one that the current node is bounded at its upper
5970    span.  Thus the test would be redundant.  */
5971
5972 static int
5973 node_has_high_bound (node, index_type)
5974      case_node_ptr node;
5975      tree index_type;
5976 {
5977   tree high_plus_one;
5978   case_node_ptr pnode;
5979
5980   /* If there is no upper bound, obviously no test is needed.  */
5981
5982   if (TYPE_MAX_VALUE (index_type) == NULL)
5983     return 1;
5984
5985   /* If the upper bound of this node is the highest value in the type
5986      of the index expression, we need not test against it.  */
5987
5988   if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
5989     return 1;
5990
5991   /* If this node has a right branch, the value at the right must be greater
5992      than that at this node, so it cannot be bounded at the top and
5993      we need not bother testing any further.  */
5994
5995   if (node->right)
5996     return 0;
5997
5998   high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
5999                                node->high, integer_one_node));
6000
6001   /* If the addition above overflowed, we can't verify anything.
6002      Otherwise, look for a parent that tests our value + 1.  */
6003
6004   if (! tree_int_cst_lt (node->high, high_plus_one))
6005     return 0;
6006
6007   for (pnode = node->parent; pnode; pnode = pnode->parent)
6008     if (tree_int_cst_equal (high_plus_one, pnode->low))
6009       return 1;
6010
6011   return 0;
6012 }
6013
6014 /* Search the parent sections of the
6015    case node tree to see if both tests for the upper and lower
6016    bounds of NODE would be redundant.  */
6017
6018 static int
6019 node_is_bounded (node, index_type)
6020      case_node_ptr node;
6021      tree index_type;
6022 {
6023   return (node_has_low_bound (node, index_type)
6024           && node_has_high_bound (node, index_type));
6025 }
6026
6027 /*  Emit an unconditional jump to LABEL unless it would be dead code.  */
6028
6029 static void
6030 emit_jump_if_reachable (label)
6031      rtx label;
6032 {
6033   if (GET_CODE (get_last_insn ()) != BARRIER)
6034     emit_jump (label);
6035 }
6036 \f
6037 /* Emit step-by-step code to select a case for the value of INDEX.
6038    The thus generated decision tree follows the form of the
6039    case-node binary tree NODE, whose nodes represent test conditions.
6040    INDEX_TYPE is the type of the index of the switch.
6041
6042    Care is taken to prune redundant tests from the decision tree
6043    by detecting any boundary conditions already checked by
6044    emitted rtx.  (See node_has_high_bound, node_has_low_bound
6045    and node_is_bounded, above.)
6046
6047    Where the test conditions can be shown to be redundant we emit
6048    an unconditional jump to the target code.  As a further
6049    optimization, the subordinates of a tree node are examined to
6050    check for bounded nodes.  In this case conditional and/or
6051    unconditional jumps as a result of the boundary check for the
6052    current node are arranged to target the subordinates associated
6053    code for out of bound conditions on the current node.
6054
6055    We can assume that when control reaches the code generated here,
6056    the index value has already been compared with the parents
6057    of this node, and determined to be on the same side of each parent
6058    as this node is.  Thus, if this node tests for the value 51,
6059    and a parent tested for 52, we don't need to consider
6060    the possibility of a value greater than 51.  If another parent
6061    tests for the value 50, then this node need not test anything.  */
6062
6063 static void
6064 emit_case_nodes (index, node, default_label, index_type)
6065      rtx index;
6066      case_node_ptr node;
6067      rtx default_label;
6068      tree index_type;
6069 {
6070   /* If INDEX has an unsigned type, we must make unsigned branches.  */
6071   int unsignedp = TREE_UNSIGNED (index_type);
6072   enum machine_mode mode = GET_MODE (index);
6073
6074   /* See if our parents have already tested everything for us.
6075      If they have, emit an unconditional jump for this node.  */
6076   if (node_is_bounded (node, index_type))
6077     emit_jump (label_rtx (node->code_label));
6078
6079   else if (tree_int_cst_equal (node->low, node->high))
6080     {
6081       /* Node is single valued.  First see if the index expression matches
6082          this node and then check our children, if any.  */
6083
6084       do_jump_if_equal (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
6085                         label_rtx (node->code_label), unsignedp);
6086
6087       if (node->right != 0 && node->left != 0)
6088         {
6089           /* This node has children on both sides.
6090              Dispatch to one side or the other
6091              by comparing the index value with this node's value.
6092              If one subtree is bounded, check that one first,
6093              so we can avoid real branches in the tree.  */
6094
6095           if (node_is_bounded (node->right, index_type))
6096             {
6097               emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6098                                                            VOIDmode, 0),
6099                                         GT, NULL_RTX, mode, unsignedp, 0,
6100                                         label_rtx (node->right->code_label));
6101               emit_case_nodes (index, node->left, default_label, index_type);
6102             }
6103
6104           else if (node_is_bounded (node->left, index_type))
6105             {
6106               emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6107                                                            VOIDmode, 0),
6108                                        LT, NULL_RTX, mode, unsignedp, 0,
6109                                        label_rtx (node->left->code_label));
6110               emit_case_nodes (index, node->right, default_label, index_type);
6111             }
6112
6113           else
6114             {
6115               /* Neither node is bounded.  First distinguish the two sides;
6116                  then emit the code for one side at a time.  */
6117
6118               tree test_label
6119                 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6120
6121               /* See if the value is on the right.  */
6122               emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6123                                                            VOIDmode, 0),
6124                                        GT, NULL_RTX, mode, unsignedp, 0,
6125                                        label_rtx (test_label));
6126
6127               /* Value must be on the left.
6128                  Handle the left-hand subtree.  */
6129               emit_case_nodes (index, node->left, default_label, index_type);
6130               /* If left-hand subtree does nothing,
6131                  go to default.  */
6132               emit_jump_if_reachable (default_label);
6133
6134               /* Code branches here for the right-hand subtree.  */
6135               expand_label (test_label);
6136               emit_case_nodes (index, node->right, default_label, index_type);
6137             }
6138         }
6139
6140       else if (node->right != 0 && node->left == 0)
6141         {
6142           /* Here we have a right child but no left so we issue conditional
6143              branch to default and process the right child.
6144
6145              Omit the conditional branch to default if we it avoid only one
6146              right child; it costs too much space to save so little time.  */
6147
6148           if (node->right->right || node->right->left
6149               || !tree_int_cst_equal (node->right->low, node->right->high))
6150             {
6151               if (!node_has_low_bound (node, index_type))
6152                 {
6153                   emit_cmp_and_jump_insns (index, expand_expr (node->high,
6154                                                                NULL_RTX,
6155                                                                VOIDmode, 0),
6156                                            LT, NULL_RTX, mode, unsignedp, 0,
6157                                            default_label);
6158                 }
6159
6160               emit_case_nodes (index, node->right, default_label, index_type);
6161             }
6162           else
6163             /* We cannot process node->right normally
6164                since we haven't ruled out the numbers less than
6165                this node's value.  So handle node->right explicitly.  */
6166             do_jump_if_equal (index,
6167                               expand_expr (node->right->low, NULL_RTX,
6168                                            VOIDmode, 0),
6169                               label_rtx (node->right->code_label), unsignedp);
6170         }
6171
6172       else if (node->right == 0 && node->left != 0)
6173         {
6174           /* Just one subtree, on the left.  */
6175
6176 #if 0 /* The following code and comment were formerly part
6177          of the condition here, but they didn't work
6178          and I don't understand what the idea was.  -- rms.  */
6179           /* If our "most probable entry" is less probable
6180              than the default label, emit a jump to
6181              the default label using condition codes
6182              already lying around.  With no right branch,
6183              a branch-greater-than will get us to the default
6184              label correctly.  */
6185           if (use_cost_table
6186                && cost_table[TREE_INT_CST_LOW (node->high)] < 12)
6187             ;
6188 #endif /* 0 */
6189           if (node->left->left || node->left->right
6190               || !tree_int_cst_equal (node->left->low, node->left->high))
6191             {
6192               if (!node_has_high_bound (node, index_type))
6193                 {
6194                   emit_cmp_and_jump_insns (index, expand_expr (node->high,
6195                                                                NULL_RTX,
6196                                                                VOIDmode, 0),
6197                                            GT, NULL_RTX, mode, unsignedp, 0,
6198                                            default_label);
6199                 }
6200
6201               emit_case_nodes (index, node->left, default_label, index_type);
6202             }
6203           else
6204             /* We cannot process node->left normally
6205                since we haven't ruled out the numbers less than
6206                this node's value.  So handle node->left explicitly.  */
6207             do_jump_if_equal (index,
6208                               expand_expr (node->left->low, NULL_RTX,
6209                                            VOIDmode, 0),
6210                               label_rtx (node->left->code_label), unsignedp);
6211         }
6212     }
6213   else
6214     {
6215       /* Node is a range.  These cases are very similar to those for a single
6216          value, except that we do not start by testing whether this node
6217          is the one to branch to.  */
6218
6219       if (node->right != 0 && node->left != 0)
6220         {
6221           /* Node has subtrees on both sides.
6222              If the right-hand subtree is bounded,
6223              test for it first, since we can go straight there.
6224              Otherwise, we need to make a branch in the control structure,
6225              then handle the two subtrees.  */
6226           tree test_label = 0;
6227
6228
6229           if (node_is_bounded (node->right, index_type))
6230             /* Right hand node is fully bounded so we can eliminate any
6231                testing and branch directly to the target code.  */
6232             emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6233                                                          VOIDmode, 0),
6234                                      GT, NULL_RTX, mode, unsignedp, 0,
6235                                      label_rtx (node->right->code_label));
6236           else
6237             {
6238               /* Right hand node requires testing.
6239                  Branch to a label where we will handle it later.  */
6240
6241               test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6242               emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6243                                                            VOIDmode, 0),
6244                                        GT, NULL_RTX, mode, unsignedp, 0,
6245                                        label_rtx (test_label));
6246             }
6247
6248           /* Value belongs to this node or to the left-hand subtree.  */
6249
6250           emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6251                                                        VOIDmode, 0),
6252                                    GE, NULL_RTX, mode, unsignedp, 0,
6253                                    label_rtx (node->code_label));
6254
6255           /* Handle the left-hand subtree.  */
6256           emit_case_nodes (index, node->left, default_label, index_type);
6257
6258           /* If right node had to be handled later, do that now.  */
6259
6260           if (test_label)
6261             {
6262               /* If the left-hand subtree fell through,
6263                  don't let it fall into the right-hand subtree.  */
6264               emit_jump_if_reachable (default_label);
6265
6266               expand_label (test_label);
6267               emit_case_nodes (index, node->right, default_label, index_type);
6268             }
6269         }
6270
6271       else if (node->right != 0 && node->left == 0)
6272         {
6273           /* Deal with values to the left of this node,
6274              if they are possible.  */
6275           if (!node_has_low_bound (node, index_type))
6276             {
6277               emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6278                                                            VOIDmode, 0),
6279                                        LT, NULL_RTX, mode, unsignedp, 0,
6280                                        default_label);
6281             }
6282
6283           /* Value belongs to this node or to the right-hand subtree.  */
6284
6285           emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6286                                                        VOIDmode, 0),
6287                                    LE, NULL_RTX, mode, unsignedp, 0,
6288                                    label_rtx (node->code_label));
6289
6290           emit_case_nodes (index, node->right, default_label, index_type);
6291         }
6292
6293       else if (node->right == 0 && node->left != 0)
6294         {
6295           /* Deal with values to the right of this node,
6296              if they are possible.  */
6297           if (!node_has_high_bound (node, index_type))
6298             {
6299               emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6300                                                            VOIDmode, 0),
6301                                        GT, NULL_RTX, mode, unsignedp, 0,
6302                                        default_label);
6303             }
6304
6305           /* Value belongs to this node or to the left-hand subtree.  */
6306
6307           emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6308                                                        VOIDmode, 0),
6309                                    GE, NULL_RTX, mode, unsignedp, 0,
6310                                    label_rtx (node->code_label));
6311
6312           emit_case_nodes (index, node->left, default_label, index_type);
6313         }
6314
6315       else
6316         {
6317           /* Node has no children so we check low and high bounds to remove
6318              redundant tests.  Only one of the bounds can exist,
6319              since otherwise this node is bounded--a case tested already.  */
6320
6321           if (!node_has_high_bound (node, index_type))
6322             {
6323               emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6324                                                            VOIDmode, 0),
6325                                        GT, NULL_RTX, mode, unsignedp, 0,
6326                                        default_label);
6327             }
6328
6329           if (!node_has_low_bound (node, index_type))
6330             {
6331               emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6332                                                            VOIDmode, 0),
6333                                        LT, NULL_RTX, mode, unsignedp, 0,
6334                                        default_label);
6335             }
6336
6337           emit_jump (label_rtx (node->code_label));
6338         }
6339     }
6340 }
6341 \f
6342 /* These routines are used by the loop unrolling code.  They copy BLOCK trees
6343    so that the debugging info will be correct for the unrolled loop.  */
6344
6345 void
6346 find_loop_tree_blocks ()
6347 {
6348   identify_blocks (DECL_INITIAL (current_function_decl), get_insns ());
6349 }
6350
6351 void
6352 unroll_block_trees ()
6353 {
6354   tree block = DECL_INITIAL (current_function_decl);
6355
6356   reorder_blocks (block, get_insns ());
6357 }