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