OSDN Git Service

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