OSDN Git Service

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