* optabs.c (init_optabs): Initialize fixtab, fixtrunctab, floattab,
[official-gcc.git] / gcc / stmt.c
blob2d7566ef4ca67ffd612414301b24955762959789
1 /* Expands front end tree to back end RTL for GNU C-Compiler
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 /* This file handles the generation of rtl code from tree structure
24 above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
25 It also creates the rtl expressions for parameters and auto variables
26 and has full responsibility for allocating stack slots.
28 The functions whose names start with `expand_' are called by the
29 parser to generate RTL instructions for various kinds of constructs.
31 Some control and binding constructs require calling several such
32 functions at different times. For example, a simple if-then
33 is expanded by calling `expand_start_cond' (with the condition-expression
34 as argument) before parsing the then-clause and calling `expand_end_cond'
35 after parsing the then-clause. */
37 #include "config.h"
38 #include "system.h"
40 #include "rtl.h"
41 #include "tree.h"
42 #include "tm_p.h"
43 #include "flags.h"
44 #include "except.h"
45 #include "function.h"
46 #include "insn-flags.h"
47 #include "insn-config.h"
48 #include "insn-codes.h"
49 #include "expr.h"
50 #include "hard-reg-set.h"
51 #include "obstack.h"
52 #include "loop.h"
53 #include "recog.h"
54 #include "machmode.h"
55 #include "toplev.h"
56 #include "output.h"
57 #include "ggc.h"
59 #define obstack_chunk_alloc xmalloc
60 #define obstack_chunk_free free
61 struct obstack stmt_obstack;
63 /* Assume that case vectors are not pc-relative. */
64 #ifndef CASE_VECTOR_PC_RELATIVE
65 #define CASE_VECTOR_PC_RELATIVE 0
66 #endif
69 /* Functions and data structures for expanding case statements. */
71 /* Case label structure, used to hold info on labels within case
72 statements. We handle "range" labels; for a single-value label
73 as in C, the high and low limits are the same.
75 An AVL tree of case nodes is initially created, and later transformed
76 to a list linked via the RIGHT fields in the nodes. Nodes with
77 higher case values are later in the list.
79 Switch statements can be output in one of two forms. A branch table
80 is used if there are more than a few labels and the labels are dense
81 within the range between the smallest and largest case value. If a
82 branch table is used, no further manipulations are done with the case
83 node chain.
85 The alternative to the use of a branch table is to generate a series
86 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
87 and PARENT fields to hold a binary tree. Initially the tree is
88 totally unbalanced, with everything on the right. We balance the tree
89 with nodes on the left having lower case values than the parent
90 and nodes on the right having higher values. We then output the tree
91 in order. */
93 struct case_node
95 struct case_node *left; /* Left son in binary tree */
96 struct case_node *right; /* Right son in binary tree; also node chain */
97 struct case_node *parent; /* Parent of node in binary tree */
98 tree low; /* Lowest index value for this label */
99 tree high; /* Highest index value for this label */
100 tree code_label; /* Label to jump to when node matches */
101 int balance;
104 typedef struct case_node case_node;
105 typedef struct case_node *case_node_ptr;
107 /* These are used by estimate_case_costs and balance_case_nodes. */
109 /* This must be a signed type, and non-ANSI compilers lack signed char. */
110 static short cost_table_[129];
111 static short *cost_table;
112 static int use_cost_table;
114 /* Stack of control and binding constructs we are currently inside.
116 These constructs begin when you call `expand_start_WHATEVER'
117 and end when you call `expand_end_WHATEVER'. This stack records
118 info about how the construct began that tells the end-function
119 what to do. It also may provide information about the construct
120 to alter the behavior of other constructs within the body.
121 For example, they may affect the behavior of C `break' and `continue'.
123 Each construct gets one `struct nesting' object.
124 All of these objects are chained through the `all' field.
125 `nesting_stack' points to the first object (innermost construct).
126 The position of an entry on `nesting_stack' is in its `depth' field.
128 Each type of construct has its own individual stack.
129 For example, loops have `loop_stack'. Each object points to the
130 next object of the same type through the `next' field.
132 Some constructs are visible to `break' exit-statements and others
133 are not. Which constructs are visible depends on the language.
134 Therefore, the data structure allows each construct to be visible
135 or not, according to the args given when the construct is started.
136 The construct is visible if the `exit_label' field is non-null.
137 In that case, the value should be a CODE_LABEL rtx. */
139 struct nesting
141 struct nesting *all;
142 struct nesting *next;
143 int depth;
144 rtx exit_label;
145 union
147 /* For conds (if-then and if-then-else statements). */
148 struct
150 /* Label for the end of the if construct.
151 There is none if EXITFLAG was not set
152 and no `else' has been seen yet. */
153 rtx endif_label;
154 /* Label for the end of this alternative.
155 This may be the end of the if or the next else/elseif. */
156 rtx next_label;
157 } cond;
158 /* For loops. */
159 struct
161 /* Label at the top of the loop; place to loop back to. */
162 rtx start_label;
163 /* Label at the end of the whole construct. */
164 rtx end_label;
165 /* Label before a jump that branches to the end of the whole
166 construct. This is where destructors go if any. */
167 rtx alt_end_label;
168 /* Label for `continue' statement to jump to;
169 this is in front of the stepper of the loop. */
170 rtx continue_label;
171 } loop;
172 /* For variable binding contours. */
173 struct
175 /* Sequence number of this binding contour within the function,
176 in order of entry. */
177 int block_start_count;
178 /* Nonzero => value to restore stack to on exit. */
179 rtx stack_level;
180 /* The NOTE that starts this contour.
181 Used by expand_goto to check whether the destination
182 is within each contour or not. */
183 rtx first_insn;
184 /* Innermost containing binding contour that has a stack level. */
185 struct nesting *innermost_stack_block;
186 /* List of cleanups to be run on exit from this contour.
187 This is a list of expressions to be evaluated.
188 The TREE_PURPOSE of each link is the ..._DECL node
189 which the cleanup pertains to. */
190 tree cleanups;
191 /* List of cleanup-lists of blocks containing this block,
192 as they were at the locus where this block appears.
193 There is an element for each containing block,
194 ordered innermost containing block first.
195 The tail of this list can be 0,
196 if all remaining elements would be empty lists.
197 The element's TREE_VALUE is the cleanup-list of that block,
198 which may be null. */
199 tree outer_cleanups;
200 /* Chain of labels defined inside this binding contour.
201 For contours that have stack levels or cleanups. */
202 struct label_chain *label_chain;
203 /* Number of function calls seen, as of start of this block. */
204 int n_function_calls;
205 /* Nonzero if this is associated with a EH region. */
206 int exception_region;
207 /* The saved target_temp_slot_level from our outer block.
208 We may reset target_temp_slot_level to be the level of
209 this block, if that is done, target_temp_slot_level
210 reverts to the saved target_temp_slot_level at the very
211 end of the block. */
212 int block_target_temp_slot_level;
213 /* True if we are currently emitting insns in an area of
214 output code that is controlled by a conditional
215 expression. This is used by the cleanup handling code to
216 generate conditional cleanup actions. */
217 int conditional_code;
218 /* A place to move the start of the exception region for any
219 of the conditional cleanups, must be at the end or after
220 the start of the last unconditional cleanup, and before any
221 conditional branch points. */
222 rtx last_unconditional_cleanup;
223 /* When in a conditional context, this is the specific
224 cleanup list associated with last_unconditional_cleanup,
225 where we place the conditionalized cleanups. */
226 tree *cleanup_ptr;
227 } block;
228 /* For switch (C) or case (Pascal) statements,
229 and also for dummies (see `expand_start_case_dummy'). */
230 struct
232 /* The insn after which the case dispatch should finally
233 be emitted. Zero for a dummy. */
234 rtx start;
235 /* A list of case labels; it is first built as an AVL tree.
236 During expand_end_case, this is converted to a list, and may be
237 rearranged into a nearly balanced binary tree. */
238 struct case_node *case_list;
239 /* Label to jump to if no case matches. */
240 tree default_label;
241 /* The expression to be dispatched on. */
242 tree index_expr;
243 /* Type that INDEX_EXPR should be converted to. */
244 tree nominal_type;
245 /* Number of range exprs in case statement. */
246 int num_ranges;
247 /* Name of this kind of statement, for warnings. */
248 const char *printname;
249 /* Used to save no_line_numbers till we see the first case label.
250 We set this to -1 when we see the first case label in this
251 case statement. */
252 int line_number_status;
253 } case_stmt;
254 } data;
257 /* Allocate and return a new `struct nesting'. */
259 #define ALLOC_NESTING() \
260 (struct nesting *) obstack_alloc (&stmt_obstack, sizeof (struct nesting))
262 /* Pop the nesting stack element by element until we pop off
263 the element which is at the top of STACK.
264 Update all the other stacks, popping off elements from them
265 as we pop them from nesting_stack. */
267 #define POPSTACK(STACK) \
268 do { struct nesting *target = STACK; \
269 struct nesting *this; \
270 do { this = nesting_stack; \
271 if (loop_stack == this) \
272 loop_stack = loop_stack->next; \
273 if (cond_stack == this) \
274 cond_stack = cond_stack->next; \
275 if (block_stack == this) \
276 block_stack = block_stack->next; \
277 if (stack_block_stack == this) \
278 stack_block_stack = stack_block_stack->next; \
279 if (case_stack == this) \
280 case_stack = case_stack->next; \
281 nesting_depth = nesting_stack->depth - 1; \
282 nesting_stack = this->all; \
283 obstack_free (&stmt_obstack, this); } \
284 while (this != target); } while (0)
286 /* In some cases it is impossible to generate code for a forward goto
287 until the label definition is seen. This happens when it may be necessary
288 for the goto to reset the stack pointer: we don't yet know how to do that.
289 So expand_goto puts an entry on this fixup list.
290 Each time a binding contour that resets the stack is exited,
291 we check each fixup.
292 If the target label has now been defined, we can insert the proper code. */
294 struct goto_fixup
296 /* Points to following fixup. */
297 struct goto_fixup *next;
298 /* Points to the insn before the jump insn.
299 If more code must be inserted, it goes after this insn. */
300 rtx before_jump;
301 /* The LABEL_DECL that this jump is jumping to, or 0
302 for break, continue or return. */
303 tree target;
304 /* The BLOCK for the place where this goto was found. */
305 tree context;
306 /* The CODE_LABEL rtx that this is jumping to. */
307 rtx target_rtl;
308 /* Number of binding contours started in current function
309 before the label reference. */
310 int block_start_count;
311 /* The outermost stack level that should be restored for this jump.
312 Each time a binding contour that resets the stack is exited,
313 if the target label is *not* yet defined, this slot is updated. */
314 rtx stack_level;
315 /* List of lists of cleanup expressions to be run by this goto.
316 There is one element for each block that this goto is within.
317 The tail of this list can be 0,
318 if all remaining elements would be empty.
319 The TREE_VALUE contains the cleanup list of that block as of the
320 time this goto was seen.
321 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
322 tree cleanup_list_list;
325 /* Within any binding contour that must restore a stack level,
326 all labels are recorded with a chain of these structures. */
328 struct label_chain
330 /* Points to following fixup. */
331 struct label_chain *next;
332 tree label;
335 struct stmt_status
337 /* Chain of all pending binding contours. */
338 struct nesting *x_block_stack;
340 /* If any new stacks are added here, add them to POPSTACKS too. */
342 /* Chain of all pending binding contours that restore stack levels
343 or have cleanups. */
344 struct nesting *x_stack_block_stack;
346 /* Chain of all pending conditional statements. */
347 struct nesting *x_cond_stack;
349 /* Chain of all pending loops. */
350 struct nesting *x_loop_stack;
352 /* Chain of all pending case or switch statements. */
353 struct nesting *x_case_stack;
355 /* Separate chain including all of the above,
356 chained through the `all' field. */
357 struct nesting *x_nesting_stack;
359 /* Number of entries on nesting_stack now. */
360 int x_nesting_depth;
362 /* Number of binding contours started so far in this function. */
363 int x_block_start_count;
365 /* Each time we expand an expression-statement,
366 record the expr's type and its RTL value here. */
367 tree x_last_expr_type;
368 rtx x_last_expr_value;
370 /* Nonzero if within a ({...}) grouping, in which case we must
371 always compute a value for each expr-stmt in case it is the last one. */
372 int x_expr_stmts_for_value;
374 /* Filename and line number of last line-number note,
375 whether we actually emitted it or not. */
376 const char *x_emit_filename;
377 int x_emit_lineno;
379 struct goto_fixup *x_goto_fixup_chain;
382 #define block_stack (cfun->stmt->x_block_stack)
383 #define stack_block_stack (cfun->stmt->x_stack_block_stack)
384 #define cond_stack (cfun->stmt->x_cond_stack)
385 #define loop_stack (cfun->stmt->x_loop_stack)
386 #define case_stack (cfun->stmt->x_case_stack)
387 #define nesting_stack (cfun->stmt->x_nesting_stack)
388 #define nesting_depth (cfun->stmt->x_nesting_depth)
389 #define current_block_start_count (cfun->stmt->x_block_start_count)
390 #define last_expr_type (cfun->stmt->x_last_expr_type)
391 #define last_expr_value (cfun->stmt->x_last_expr_value)
392 #define expr_stmts_for_value (cfun->stmt->x_expr_stmts_for_value)
393 #define emit_filename (cfun->stmt->x_emit_filename)
394 #define emit_lineno (cfun->stmt->x_emit_lineno)
395 #define goto_fixup_chain (cfun->stmt->x_goto_fixup_chain)
397 /* Non-zero if we are using EH to handle cleanus. */
398 static int using_eh_for_cleanups_p = 0;
400 /* Character strings, each containing a single decimal digit. */
401 static char *digit_strings[10];
404 static int n_occurrences PARAMS ((int, const char *));
405 static void expand_goto_internal PARAMS ((tree, rtx, rtx));
406 static int expand_fixup PARAMS ((tree, rtx, rtx));
407 static rtx expand_nl_handler_label PARAMS ((rtx, rtx));
408 static void expand_nl_goto_receiver PARAMS ((void));
409 static void expand_nl_goto_receivers PARAMS ((struct nesting *));
410 static void fixup_gotos PARAMS ((struct nesting *, rtx, tree,
411 rtx, int));
412 static void expand_null_return_1 PARAMS ((rtx, int));
413 static void expand_value_return PARAMS ((rtx));
414 static int tail_recursion_args PARAMS ((tree, tree));
415 static void expand_cleanups PARAMS ((tree, tree, int, int));
416 static void check_seenlabel PARAMS ((void));
417 static void do_jump_if_equal PARAMS ((rtx, rtx, rtx, int));
418 static int estimate_case_costs PARAMS ((case_node_ptr));
419 static void group_case_nodes PARAMS ((case_node_ptr));
420 static void balance_case_nodes PARAMS ((case_node_ptr *,
421 case_node_ptr));
422 static int node_has_low_bound PARAMS ((case_node_ptr, tree));
423 static int node_has_high_bound PARAMS ((case_node_ptr, tree));
424 static int node_is_bounded PARAMS ((case_node_ptr, tree));
425 static void emit_jump_if_reachable PARAMS ((rtx));
426 static void emit_case_nodes PARAMS ((rtx, case_node_ptr, rtx, tree));
427 static int add_case_node PARAMS ((tree, tree, tree, tree *));
428 static struct case_node *case_tree2list PARAMS ((case_node *, case_node *));
429 static void mark_cond_nesting PARAMS ((struct nesting *));
430 static void mark_loop_nesting PARAMS ((struct nesting *));
431 static void mark_block_nesting PARAMS ((struct nesting *));
432 static void mark_case_nesting PARAMS ((struct nesting *));
433 static void mark_case_node PARAMS ((struct case_node *));
434 static void mark_goto_fixup PARAMS ((struct goto_fixup *));
437 void
438 using_eh_for_cleanups ()
440 using_eh_for_cleanups_p = 1;
443 /* Mark N (known to be a cond-nesting) for GC. */
445 static void
446 mark_cond_nesting (n)
447 struct nesting *n;
449 while (n)
451 ggc_mark_rtx (n->exit_label);
452 ggc_mark_rtx (n->data.cond.endif_label);
453 ggc_mark_rtx (n->data.cond.next_label);
455 n = n->next;
459 /* Mark N (known to be a loop-nesting) for GC. */
461 static void
462 mark_loop_nesting (n)
463 struct nesting *n;
466 while (n)
468 ggc_mark_rtx (n->exit_label);
469 ggc_mark_rtx (n->data.loop.start_label);
470 ggc_mark_rtx (n->data.loop.end_label);
471 ggc_mark_rtx (n->data.loop.alt_end_label);
472 ggc_mark_rtx (n->data.loop.continue_label);
474 n = n->next;
478 /* Mark N (known to be a block-nesting) for GC. */
480 static void
481 mark_block_nesting (n)
482 struct nesting *n;
484 while (n)
486 struct label_chain *l;
488 ggc_mark_rtx (n->exit_label);
489 ggc_mark_rtx (n->data.block.stack_level);
490 ggc_mark_rtx (n->data.block.first_insn);
491 ggc_mark_tree (n->data.block.cleanups);
492 ggc_mark_tree (n->data.block.outer_cleanups);
494 for (l = n->data.block.label_chain; l != NULL; l = l->next)
495 ggc_mark_tree (l->label);
497 ggc_mark_rtx (n->data.block.last_unconditional_cleanup);
499 /* ??? cleanup_ptr never points outside the stack, does it? */
501 n = n->next;
505 /* Mark N (known to be a case-nesting) for GC. */
507 static void
508 mark_case_nesting (n)
509 struct nesting *n;
511 while (n)
513 ggc_mark_rtx (n->exit_label);
514 ggc_mark_rtx (n->data.case_stmt.start);
516 ggc_mark_tree (n->data.case_stmt.default_label);
517 ggc_mark_tree (n->data.case_stmt.index_expr);
518 ggc_mark_tree (n->data.case_stmt.nominal_type);
520 mark_case_node (n->data.case_stmt.case_list);
521 n = n->next;
525 /* Mark C for GC. */
527 static void
528 mark_case_node (c)
529 struct case_node *c;
531 if (c != 0)
533 ggc_mark_tree (c->low);
534 ggc_mark_tree (c->high);
535 ggc_mark_tree (c->code_label);
537 mark_case_node (c->right);
538 mark_case_node (c->left);
542 /* Mark G for GC. */
544 static void
545 mark_goto_fixup (g)
546 struct goto_fixup *g;
548 while (g)
550 ggc_mark (g);
551 ggc_mark_rtx (g->before_jump);
552 ggc_mark_tree (g->target);
553 ggc_mark_tree (g->context);
554 ggc_mark_rtx (g->target_rtl);
555 ggc_mark_rtx (g->stack_level);
556 ggc_mark_tree (g->cleanup_list_list);
558 g = g->next;
562 /* Clear out all parts of the state in F that can safely be discarded
563 after the function has been compiled, to let garbage collection
564 reclaim the memory. */
566 void
567 free_stmt_status (f)
568 struct function *f;
570 /* We're about to free the function obstack. If we hold pointers to
571 things allocated there, then we'll try to mark them when we do
572 GC. So, we clear them out here explicitly. */
573 if (f->stmt)
574 free (f->stmt);
575 f->stmt = NULL;
578 /* Mark P for GC. */
580 void
581 mark_stmt_status (p)
582 struct stmt_status *p;
584 if (p == 0)
585 return;
587 mark_block_nesting (p->x_block_stack);
588 mark_cond_nesting (p->x_cond_stack);
589 mark_loop_nesting (p->x_loop_stack);
590 mark_case_nesting (p->x_case_stack);
592 ggc_mark_tree (p->x_last_expr_type);
593 /* last_epxr_value is only valid if last_expr_type is nonzero. */
594 if (p->x_last_expr_type)
595 ggc_mark_rtx (p->x_last_expr_value);
597 mark_goto_fixup (p->x_goto_fixup_chain);
600 void
601 init_stmt ()
603 int i;
605 gcc_obstack_init (&stmt_obstack);
607 for (i = 0; i < 10; i++)
609 digit_strings[i] = ggc_alloc_string (NULL, 1);
610 digit_strings[i][0] = '0' + i;
612 ggc_add_string_root (digit_strings, 10);
615 void
616 init_stmt_for_function ()
618 cfun->stmt = (struct stmt_status *) xmalloc (sizeof (struct stmt_status));
620 /* We are not currently within any block, conditional, loop or case. */
621 block_stack = 0;
622 stack_block_stack = 0;
623 loop_stack = 0;
624 case_stack = 0;
625 cond_stack = 0;
626 nesting_stack = 0;
627 nesting_depth = 0;
629 current_block_start_count = 0;
631 /* No gotos have been expanded yet. */
632 goto_fixup_chain = 0;
634 /* We are not processing a ({...}) grouping. */
635 expr_stmts_for_value = 0;
636 last_expr_type = 0;
637 last_expr_value = NULL_RTX;
640 /* Return nonzero if anything is pushed on the loop, condition, or case
641 stack. */
643 in_control_zone_p ()
645 return cond_stack || loop_stack || case_stack;
648 /* Record the current file and line. Called from emit_line_note. */
649 void
650 set_file_and_line_for_stmt (file, line)
651 const char *file;
652 int line;
654 /* If we're outputting an inline function, and we add a line note,
655 there may be no CFUN->STMT information. So, there's no need to
656 update it. */
657 if (cfun->stmt)
659 emit_filename = file;
660 emit_lineno = line;
664 /* Emit a no-op instruction. */
666 void
667 emit_nop ()
669 rtx last_insn;
671 last_insn = get_last_insn ();
672 if (!optimize
673 && (GET_CODE (last_insn) == CODE_LABEL
674 || (GET_CODE (last_insn) == NOTE
675 && prev_real_insn (last_insn) == 0)))
676 emit_insn (gen_nop ());
679 /* Return the rtx-label that corresponds to a LABEL_DECL,
680 creating it if necessary. */
683 label_rtx (label)
684 tree label;
686 if (TREE_CODE (label) != LABEL_DECL)
687 abort ();
689 if (DECL_RTL (label))
690 return DECL_RTL (label);
692 return DECL_RTL (label) = gen_label_rtx ();
695 /* Add an unconditional jump to LABEL as the next sequential instruction. */
697 void
698 emit_jump (label)
699 rtx label;
701 do_pending_stack_adjust ();
702 emit_jump_insn (gen_jump (label));
703 emit_barrier ();
706 /* Emit code to jump to the address
707 specified by the pointer expression EXP. */
709 void
710 expand_computed_goto (exp)
711 tree exp;
713 rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
715 #ifdef POINTERS_EXTEND_UNSIGNED
716 x = convert_memory_address (Pmode, x);
717 #endif
719 emit_queue ();
720 /* Be sure the function is executable. */
721 if (current_function_check_memory_usage)
722 emit_library_call (chkr_check_exec_libfunc, 1,
723 VOIDmode, 1, x, ptr_mode);
725 do_pending_stack_adjust ();
726 emit_indirect_jump (x);
728 current_function_has_computed_jump = 1;
731 /* Handle goto statements and the labels that they can go to. */
733 /* Specify the location in the RTL code of a label LABEL,
734 which is a LABEL_DECL tree node.
736 This is used for the kind of label that the user can jump to with a
737 goto statement, and for alternatives of a switch or case statement.
738 RTL labels generated for loops and conditionals don't go through here;
739 they are generated directly at the RTL level, by other functions below.
741 Note that this has nothing to do with defining label *names*.
742 Languages vary in how they do that and what that even means. */
744 void
745 expand_label (label)
746 tree label;
748 struct label_chain *p;
750 do_pending_stack_adjust ();
751 emit_label (label_rtx (label));
752 if (DECL_NAME (label))
753 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
755 if (stack_block_stack != 0)
757 p = (struct label_chain *) oballoc (sizeof (struct label_chain));
758 p->next = stack_block_stack->data.block.label_chain;
759 stack_block_stack->data.block.label_chain = p;
760 p->label = label;
764 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
765 from nested functions. */
767 void
768 declare_nonlocal_label (label)
769 tree label;
771 rtx slot = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
773 nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
774 LABEL_PRESERVE_P (label_rtx (label)) = 1;
775 if (nonlocal_goto_handler_slots == 0)
777 emit_stack_save (SAVE_NONLOCAL,
778 &nonlocal_goto_stack_level,
779 PREV_INSN (tail_recursion_reentry));
781 nonlocal_goto_handler_slots
782 = gen_rtx_EXPR_LIST (VOIDmode, slot, nonlocal_goto_handler_slots);
785 /* Generate RTL code for a `goto' statement with target label LABEL.
786 LABEL should be a LABEL_DECL tree node that was or will later be
787 defined with `expand_label'. */
789 void
790 expand_goto (label)
791 tree label;
793 tree context;
795 /* Check for a nonlocal goto to a containing function. */
796 context = decl_function_context (label);
797 if (context != 0 && context != current_function_decl)
799 struct function *p = find_function_data (context);
800 rtx label_ref = gen_rtx_LABEL_REF (Pmode, label_rtx (label));
801 rtx handler_slot, static_chain, save_area;
802 tree link;
804 /* Find the corresponding handler slot for this label. */
805 handler_slot = p->x_nonlocal_goto_handler_slots;
806 for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label;
807 link = TREE_CHAIN (link))
808 handler_slot = XEXP (handler_slot, 1);
809 handler_slot = XEXP (handler_slot, 0);
811 p->has_nonlocal_label = 1;
812 current_function_has_nonlocal_goto = 1;
813 LABEL_REF_NONLOCAL_P (label_ref) = 1;
815 /* Copy the rtl for the slots so that they won't be shared in
816 case the virtual stack vars register gets instantiated differently
817 in the parent than in the child. */
819 static_chain = copy_to_reg (lookup_static_chain (label));
821 /* Get addr of containing function's current nonlocal goto handler,
822 which will do any cleanups and then jump to the label. */
823 handler_slot = copy_to_reg (replace_rtx (copy_rtx (handler_slot),
824 virtual_stack_vars_rtx,
825 static_chain));
827 /* Get addr of containing function's nonlocal save area. */
828 save_area = p->x_nonlocal_goto_stack_level;
829 if (save_area)
830 save_area = replace_rtx (copy_rtx (save_area),
831 virtual_stack_vars_rtx, static_chain);
833 #if HAVE_nonlocal_goto
834 if (HAVE_nonlocal_goto)
835 emit_insn (gen_nonlocal_goto (static_chain, handler_slot,
836 save_area, label_ref));
837 else
838 #endif
840 /* Restore frame pointer for containing function.
841 This sets the actual hard register used for the frame pointer
842 to the location of the function's incoming static chain info.
843 The non-local goto handler will then adjust it to contain the
844 proper value and reload the argument pointer, if needed. */
845 emit_move_insn (hard_frame_pointer_rtx, static_chain);
846 emit_stack_restore (SAVE_NONLOCAL, save_area, NULL_RTX);
848 /* USE of hard_frame_pointer_rtx added for consistency;
849 not clear if really needed. */
850 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
851 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
852 emit_indirect_jump (handler_slot);
855 else
856 expand_goto_internal (label, label_rtx (label), NULL_RTX);
859 /* Generate RTL code for a `goto' statement with target label BODY.
860 LABEL should be a LABEL_REF.
861 LAST_INSN, if non-0, is the rtx we should consider as the last
862 insn emitted (for the purposes of cleaning up a return). */
864 static void
865 expand_goto_internal (body, label, last_insn)
866 tree body;
867 rtx label;
868 rtx last_insn;
870 struct nesting *block;
871 rtx stack_level = 0;
873 if (GET_CODE (label) != CODE_LABEL)
874 abort ();
876 /* If label has already been defined, we can tell now
877 whether and how we must alter the stack level. */
879 if (PREV_INSN (label) != 0)
881 /* Find the innermost pending block that contains the label.
882 (Check containment by comparing insn-uids.)
883 Then restore the outermost stack level within that block,
884 and do cleanups of all blocks contained in it. */
885 for (block = block_stack; block; block = block->next)
887 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
888 break;
889 if (block->data.block.stack_level != 0)
890 stack_level = block->data.block.stack_level;
891 /* Execute the cleanups for blocks we are exiting. */
892 if (block->data.block.cleanups != 0)
894 expand_cleanups (block->data.block.cleanups, NULL_TREE, 1, 1);
895 do_pending_stack_adjust ();
899 if (stack_level)
901 /* Ensure stack adjust isn't done by emit_jump, as this
902 would clobber the stack pointer. This one should be
903 deleted as dead by flow. */
904 clear_pending_stack_adjust ();
905 do_pending_stack_adjust ();
907 /* Don't do this adjust if it's to the end label and this function
908 is to return with a depressed stack pointer. */
909 if (label == return_label
910 && (((TREE_CODE (TREE_TYPE (current_function_decl))
911 == FUNCTION_TYPE)
912 && (TYPE_RETURNS_STACK_DEPRESSED
913 (TREE_TYPE (current_function_decl))))))
915 else
916 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
919 if (body != 0 && DECL_TOO_LATE (body))
920 error ("jump to `%s' invalidly jumps into binding contour",
921 IDENTIFIER_POINTER (DECL_NAME (body)));
923 /* Label not yet defined: may need to put this goto
924 on the fixup list. */
925 else if (! expand_fixup (body, label, last_insn))
927 /* No fixup needed. Record that the label is the target
928 of at least one goto that has no fixup. */
929 if (body != 0)
930 TREE_ADDRESSABLE (body) = 1;
933 emit_jump (label);
936 /* Generate if necessary a fixup for a goto
937 whose target label in tree structure (if any) is TREE_LABEL
938 and whose target in rtl is RTL_LABEL.
940 If LAST_INSN is nonzero, we pretend that the jump appears
941 after insn LAST_INSN instead of at the current point in the insn stream.
943 The fixup will be used later to insert insns just before the goto.
944 Those insns will restore the stack level as appropriate for the
945 target label, and will (in the case of C++) also invoke any object
946 destructors which have to be invoked when we exit the scopes which
947 are exited by the goto.
949 Value is nonzero if a fixup is made. */
951 static int
952 expand_fixup (tree_label, rtl_label, last_insn)
953 tree tree_label;
954 rtx rtl_label;
955 rtx last_insn;
957 struct nesting *block, *end_block;
959 /* See if we can recognize which block the label will be output in.
960 This is possible in some very common cases.
961 If we succeed, set END_BLOCK to that block.
962 Otherwise, set it to 0. */
964 if (cond_stack
965 && (rtl_label == cond_stack->data.cond.endif_label
966 || rtl_label == cond_stack->data.cond.next_label))
967 end_block = cond_stack;
968 /* If we are in a loop, recognize certain labels which
969 are likely targets. This reduces the number of fixups
970 we need to create. */
971 else if (loop_stack
972 && (rtl_label == loop_stack->data.loop.start_label
973 || rtl_label == loop_stack->data.loop.end_label
974 || rtl_label == loop_stack->data.loop.continue_label))
975 end_block = loop_stack;
976 else
977 end_block = 0;
979 /* Now set END_BLOCK to the binding level to which we will return. */
981 if (end_block)
983 struct nesting *next_block = end_block->all;
984 block = block_stack;
986 /* First see if the END_BLOCK is inside the innermost binding level.
987 If so, then no cleanups or stack levels are relevant. */
988 while (next_block && next_block != block)
989 next_block = next_block->all;
991 if (next_block)
992 return 0;
994 /* Otherwise, set END_BLOCK to the innermost binding level
995 which is outside the relevant control-structure nesting. */
996 next_block = block_stack->next;
997 for (block = block_stack; block != end_block; block = block->all)
998 if (block == next_block)
999 next_block = next_block->next;
1000 end_block = next_block;
1003 /* Does any containing block have a stack level or cleanups?
1004 If not, no fixup is needed, and that is the normal case
1005 (the only case, for standard C). */
1006 for (block = block_stack; block != end_block; block = block->next)
1007 if (block->data.block.stack_level != 0
1008 || block->data.block.cleanups != 0)
1009 break;
1011 if (block != end_block)
1013 /* Ok, a fixup is needed. Add a fixup to the list of such. */
1014 struct goto_fixup *fixup
1015 = (struct goto_fixup *) ggc_alloc (sizeof (struct goto_fixup));
1016 /* In case an old stack level is restored, make sure that comes
1017 after any pending stack adjust. */
1018 /* ?? If the fixup isn't to come at the present position,
1019 doing the stack adjust here isn't useful. Doing it with our
1020 settings at that location isn't useful either. Let's hope
1021 someone does it! */
1022 if (last_insn == 0)
1023 do_pending_stack_adjust ();
1024 fixup->target = tree_label;
1025 fixup->target_rtl = rtl_label;
1027 /* Create a BLOCK node and a corresponding matched set of
1028 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
1029 this point. The notes will encapsulate any and all fixup
1030 code which we might later insert at this point in the insn
1031 stream. Also, the BLOCK node will be the parent (i.e. the
1032 `SUPERBLOCK') of any other BLOCK nodes which we might create
1033 later on when we are expanding the fixup code.
1035 Note that optimization passes (including expand_end_loop)
1036 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
1037 as a placeholder. */
1040 register rtx original_before_jump
1041 = last_insn ? last_insn : get_last_insn ();
1042 rtx start;
1043 rtx end;
1044 tree block;
1046 block = make_node (BLOCK);
1047 TREE_USED (block) = 1;
1049 if (!cfun->x_whole_function_mode_p)
1050 insert_block (block);
1051 else
1053 BLOCK_CHAIN (block)
1054 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
1055 BLOCK_CHAIN (DECL_INITIAL (current_function_decl))
1056 = block;
1059 start_sequence ();
1060 start = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
1061 if (cfun->x_whole_function_mode_p)
1062 NOTE_BLOCK (start) = block;
1063 fixup->before_jump = emit_note (NULL_PTR, NOTE_INSN_DELETED);
1064 end = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
1065 if (cfun->x_whole_function_mode_p)
1066 NOTE_BLOCK (end) = block;
1067 fixup->context = block;
1068 end_sequence ();
1069 emit_insns_after (start, original_before_jump);
1072 fixup->block_start_count = current_block_start_count;
1073 fixup->stack_level = 0;
1074 fixup->cleanup_list_list
1075 = ((block->data.block.outer_cleanups
1076 || block->data.block.cleanups)
1077 ? tree_cons (NULL_TREE, block->data.block.cleanups,
1078 block->data.block.outer_cleanups)
1079 : 0);
1080 fixup->next = goto_fixup_chain;
1081 goto_fixup_chain = fixup;
1084 return block != 0;
1089 /* Expand any needed fixups in the outputmost binding level of the
1090 function. FIRST_INSN is the first insn in the function. */
1092 void
1093 expand_fixups (first_insn)
1094 rtx first_insn;
1096 fixup_gotos (NULL_PTR, NULL_RTX, NULL_TREE, first_insn, 0);
1099 /* When exiting a binding contour, process all pending gotos requiring fixups.
1100 THISBLOCK is the structure that describes the block being exited.
1101 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
1102 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
1103 FIRST_INSN is the insn that began this contour.
1105 Gotos that jump out of this contour must restore the
1106 stack level and do the cleanups before actually jumping.
1108 DONT_JUMP_IN nonzero means report error there is a jump into this
1109 contour from before the beginning of the contour.
1110 This is also done if STACK_LEVEL is nonzero. */
1112 static void
1113 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
1114 struct nesting *thisblock;
1115 rtx stack_level;
1116 tree cleanup_list;
1117 rtx first_insn;
1118 int dont_jump_in;
1120 register struct goto_fixup *f, *prev;
1122 /* F is the fixup we are considering; PREV is the previous one. */
1123 /* We run this loop in two passes so that cleanups of exited blocks
1124 are run first, and blocks that are exited are marked so
1125 afterwards. */
1127 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1129 /* Test for a fixup that is inactive because it is already handled. */
1130 if (f->before_jump == 0)
1132 /* Delete inactive fixup from the chain, if that is easy to do. */
1133 if (prev != 0)
1134 prev->next = f->next;
1136 /* Has this fixup's target label been defined?
1137 If so, we can finalize it. */
1138 else if (PREV_INSN (f->target_rtl) != 0)
1140 register rtx cleanup_insns;
1142 /* If this fixup jumped into this contour from before the beginning
1143 of this contour, report an error. This code used to use
1144 the first non-label insn after f->target_rtl, but that's
1145 wrong since such can be added, by things like put_var_into_stack
1146 and have INSN_UIDs that are out of the range of the block. */
1147 /* ??? Bug: this does not detect jumping in through intermediate
1148 blocks that have stack levels or cleanups.
1149 It detects only a problem with the innermost block
1150 around the label. */
1151 if (f->target != 0
1152 && (dont_jump_in || stack_level || cleanup_list)
1153 && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
1154 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
1155 && ! DECL_ERROR_ISSUED (f->target))
1157 error_with_decl (f->target,
1158 "label `%s' used before containing binding contour");
1159 /* Prevent multiple errors for one label. */
1160 DECL_ERROR_ISSUED (f->target) = 1;
1163 /* We will expand the cleanups into a sequence of their own and
1164 then later on we will attach this new sequence to the insn
1165 stream just ahead of the actual jump insn. */
1167 start_sequence ();
1169 /* Temporarily restore the lexical context where we will
1170 logically be inserting the fixup code. We do this for the
1171 sake of getting the debugging information right. */
1173 pushlevel (0);
1174 set_block (f->context);
1176 /* Expand the cleanups for blocks this jump exits. */
1177 if (f->cleanup_list_list)
1179 tree lists;
1180 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1181 /* Marked elements correspond to blocks that have been closed.
1182 Do their cleanups. */
1183 if (TREE_ADDRESSABLE (lists)
1184 && TREE_VALUE (lists) != 0)
1186 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1187 /* Pop any pushes done in the cleanups,
1188 in case function is about to return. */
1189 do_pending_stack_adjust ();
1193 /* Restore stack level for the biggest contour that this
1194 jump jumps out of. */
1195 if (f->stack_level
1196 && ! (f->target_rtl == return_label
1197 && ((TREE_CODE (TREE_TYPE (current_function_decl))
1198 == FUNCTION_TYPE)
1199 && (TYPE_RETURNS_STACK_DEPRESSED
1200 (TREE_TYPE (current_function_decl))))))
1201 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1203 /* Finish up the sequence containing the insns which implement the
1204 necessary cleanups, and then attach that whole sequence to the
1205 insn stream just ahead of the actual jump insn. Attaching it
1206 at that point insures that any cleanups which are in fact
1207 implicit C++ object destructions (which must be executed upon
1208 leaving the block) appear (to the debugger) to be taking place
1209 in an area of the generated code where the object(s) being
1210 destructed are still "in scope". */
1212 cleanup_insns = get_insns ();
1213 poplevel (1, 0, 0);
1215 end_sequence ();
1216 emit_insns_after (cleanup_insns, f->before_jump);
1219 f->before_jump = 0;
1223 /* For any still-undefined labels, do the cleanups for this block now.
1224 We must do this now since items in the cleanup list may go out
1225 of scope when the block ends. */
1226 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1227 if (f->before_jump != 0
1228 && PREV_INSN (f->target_rtl) == 0
1229 /* Label has still not appeared. If we are exiting a block with
1230 a stack level to restore, that started before the fixup,
1231 mark this stack level as needing restoration
1232 when the fixup is later finalized. */
1233 && thisblock != 0
1234 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1235 means the label is undefined. That's erroneous, but possible. */
1236 && (thisblock->data.block.block_start_count
1237 <= f->block_start_count))
1239 tree lists = f->cleanup_list_list;
1240 rtx cleanup_insns;
1242 for (; lists; lists = TREE_CHAIN (lists))
1243 /* If the following elt. corresponds to our containing block
1244 then the elt. must be for this block. */
1245 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1247 start_sequence ();
1248 pushlevel (0);
1249 set_block (f->context);
1250 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1251 do_pending_stack_adjust ();
1252 cleanup_insns = get_insns ();
1253 poplevel (1, 0, 0);
1254 end_sequence ();
1255 if (cleanup_insns != 0)
1256 f->before_jump
1257 = emit_insns_after (cleanup_insns, f->before_jump);
1259 f->cleanup_list_list = TREE_CHAIN (lists);
1262 if (stack_level)
1263 f->stack_level = stack_level;
1267 /* Return the number of times character C occurs in string S. */
1268 static int
1269 n_occurrences (c, s)
1270 int c;
1271 const char *s;
1273 int n = 0;
1274 while (*s)
1275 n += (*s++ == c);
1276 return n;
1279 /* Generate RTL for an asm statement (explicit assembler code).
1280 BODY is a STRING_CST node containing the assembler code text,
1281 or an ADDR_EXPR containing a STRING_CST. */
1283 void
1284 expand_asm (body)
1285 tree body;
1287 if (current_function_check_memory_usage)
1289 error ("`asm' cannot be used in function where memory usage is checked");
1290 return;
1293 if (TREE_CODE (body) == ADDR_EXPR)
1294 body = TREE_OPERAND (body, 0);
1296 emit_insn (gen_rtx_ASM_INPUT (VOIDmode,
1297 TREE_STRING_POINTER (body)));
1298 last_expr_type = 0;
1301 /* Generate RTL for an asm statement with arguments.
1302 STRING is the instruction template.
1303 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1304 Each output or input has an expression in the TREE_VALUE and
1305 a constraint-string in the TREE_PURPOSE.
1306 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1307 that is clobbered by this insn.
1309 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1310 Some elements of OUTPUTS may be replaced with trees representing temporary
1311 values. The caller should copy those temporary values to the originally
1312 specified lvalues.
1314 VOL nonzero means the insn is volatile; don't optimize it. */
1316 void
1317 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1318 tree string, outputs, inputs, clobbers;
1319 int vol;
1320 const char *filename;
1321 int line;
1323 rtvec argvec, constraints;
1324 rtx body;
1325 int ninputs = list_length (inputs);
1326 int noutputs = list_length (outputs);
1327 int ninout = 0;
1328 int nclobbers;
1329 tree tail;
1330 register int i;
1331 /* Vector of RTX's of evaluated output operands. */
1332 rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1333 int *inout_opnum = (int *) alloca (noutputs * sizeof (int));
1334 rtx *real_output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1335 enum machine_mode *inout_mode
1336 = (enum machine_mode *) alloca (noutputs * sizeof (enum machine_mode));
1337 /* The insn we have emitted. */
1338 rtx insn;
1340 /* An ASM with no outputs needs to be treated as volatile, for now. */
1341 if (noutputs == 0)
1342 vol = 1;
1344 if (current_function_check_memory_usage)
1346 error ("`asm' cannot be used with `-fcheck-memory-usage'");
1347 return;
1350 #ifdef MD_ASM_CLOBBERS
1351 /* Sometimes we wish to automatically clobber registers across an asm.
1352 Case in point is when the i386 backend moved from cc0 to a hard reg --
1353 maintaining source-level compatability means automatically clobbering
1354 the flags register. */
1355 MD_ASM_CLOBBERS (clobbers);
1356 #endif
1358 if (current_function_check_memory_usage)
1360 error ("`asm' cannot be used in function where memory usage is checked");
1361 return;
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))
1369 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1371 i = decode_reg_name (regname);
1372 if (i >= 0 || i == -4)
1373 ++nclobbers;
1374 else if (i == -2)
1375 error ("unknown register name `%s' in `asm'", regname);
1378 last_expr_type = 0;
1380 /* Check that the number of alternatives is constant across all
1381 operands. */
1382 if (outputs || inputs)
1384 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1385 int nalternatives = n_occurrences (',', TREE_STRING_POINTER (tmp));
1386 tree next = inputs;
1388 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1390 error ("too many alternatives in `asm'");
1391 return;
1394 tmp = outputs;
1395 while (tmp)
1397 const char *constraint = TREE_STRING_POINTER (TREE_PURPOSE (tmp));
1399 if (n_occurrences (',', constraint) != nalternatives)
1401 error ("operand constraints for `asm' differ in number of alternatives");
1402 return;
1405 if (TREE_CHAIN (tmp))
1406 tmp = TREE_CHAIN (tmp);
1407 else
1408 tmp = next, next = 0;
1412 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1414 tree val = TREE_VALUE (tail);
1415 tree type = TREE_TYPE (val);
1416 char *constraint;
1417 char *p;
1418 int c_len;
1419 int j;
1420 int is_inout = 0;
1421 int allows_reg = 0;
1422 int allows_mem = 0;
1424 /* If there's an erroneous arg, emit no insn. */
1425 if (TREE_TYPE (val) == error_mark_node)
1426 return;
1428 /* Make sure constraint has `=' and does not have `+'. Also, see
1429 if it allows any register. Be liberal on the latter test, since
1430 the worst that happens if we get it wrong is we issue an error
1431 message. */
1433 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (tail)));
1434 constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1436 /* Allow the `=' or `+' to not be at the beginning of the string,
1437 since it wasn't explicitly documented that way, and there is a
1438 large body of code that puts it last. Swap the character to
1439 the front, so as not to uglify any place else. */
1440 switch (c_len)
1442 default:
1443 if ((p = strchr (constraint, '=')) != NULL)
1444 break;
1445 if ((p = strchr (constraint, '+')) != NULL)
1446 break;
1447 case 0:
1448 error ("output operand constraint lacks `='");
1449 return;
1452 if (p != constraint)
1454 j = *p;
1455 bcopy (constraint, constraint+1, p-constraint);
1456 *constraint = j;
1458 warning ("output constraint `%c' for operand %d is not at the beginning", j, i);
1461 is_inout = constraint[0] == '+';
1462 /* Replace '+' with '='. */
1463 constraint[0] = '=';
1464 /* Make sure we can specify the matching operand. */
1465 if (is_inout && i > 9)
1467 error ("output operand constraint %d contains `+'", i);
1468 return;
1471 for (j = 1; j < c_len; j++)
1472 switch (constraint[j])
1474 case '+':
1475 case '=':
1476 error ("operand constraint contains '+' or '=' at illegal position.");
1477 return;
1479 case '%':
1480 if (i + 1 == ninputs + noutputs)
1482 error ("`%%' constraint used with last operand");
1483 return;
1485 break;
1487 case '?': case '!': case '*': case '&':
1488 case 'E': case 'F': case 'G': case 'H':
1489 case 's': case 'i': case 'n':
1490 case 'I': case 'J': case 'K': case 'L': case 'M':
1491 case 'N': case 'O': case 'P': case ',':
1492 #ifdef EXTRA_CONSTRAINT
1493 case 'Q': case 'R': case 'S': case 'T': case 'U':
1494 #endif
1495 break;
1497 case '0': case '1': case '2': case '3': case '4':
1498 case '5': case '6': case '7': case '8': case '9':
1499 error ("matching constraint not valid in output operand");
1500 break;
1502 case 'V': case 'm': case 'o':
1503 allows_mem = 1;
1504 break;
1506 case '<': case '>':
1507 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1508 excepting those that expand_call created. So match memory
1509 and hope. */
1510 allows_mem = 1;
1511 break;
1513 case 'g': case 'X':
1514 allows_reg = 1;
1515 allows_mem = 1;
1516 break;
1518 case 'p': case 'r':
1519 default:
1520 allows_reg = 1;
1521 break;
1524 /* If an output operand is not a decl or indirect ref and our constraint
1525 allows a register, make a temporary to act as an intermediate.
1526 Make the asm insn write into that, then our caller will copy it to
1527 the real output operand. Likewise for promoted variables. */
1529 real_output_rtx[i] = NULL_RTX;
1530 if ((TREE_CODE (val) == INDIRECT_REF
1531 && allows_mem)
1532 || (DECL_P (val)
1533 && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1534 && ! (GET_CODE (DECL_RTL (val)) == REG
1535 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1536 || ! allows_reg
1537 || is_inout)
1539 if (! allows_reg)
1540 mark_addressable (TREE_VALUE (tail));
1542 output_rtx[i]
1543 = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode,
1544 EXPAND_MEMORY_USE_WO);
1546 if (! allows_reg && GET_CODE (output_rtx[i]) != MEM)
1547 error ("output number %d not directly addressable", i);
1548 if (! allows_mem && GET_CODE (output_rtx[i]) == MEM)
1550 real_output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1551 output_rtx[i] = gen_reg_rtx (GET_MODE (output_rtx[i]));
1552 if (is_inout)
1553 emit_move_insn (output_rtx[i], real_output_rtx[i]);
1556 else
1558 output_rtx[i] = assign_temp (type, 0, 0, 1);
1559 TREE_VALUE (tail) = make_tree (type, output_rtx[i]);
1562 if (is_inout)
1564 inout_mode[ninout] = TYPE_MODE (TREE_TYPE (TREE_VALUE (tail)));
1565 inout_opnum[ninout++] = i;
1569 ninputs += ninout;
1570 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1572 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1573 return;
1576 /* Make vectors for the expression-rtx and constraint strings. */
1578 argvec = rtvec_alloc (ninputs);
1579 constraints = rtvec_alloc (ninputs);
1581 body = gen_rtx_ASM_OPERANDS (VOIDmode, TREE_STRING_POINTER (string),
1582 empty_string, 0, argvec, constraints,
1583 filename, line);
1585 MEM_VOLATILE_P (body) = vol;
1587 /* Eval the inputs and put them into ARGVEC.
1588 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1590 i = 0;
1591 for (tail = inputs; tail; tail = TREE_CHAIN (tail))
1593 int j;
1594 int allows_reg = 0, allows_mem = 0;
1595 char *constraint, *orig_constraint;
1596 int c_len;
1597 rtx op;
1599 /* If there's an erroneous arg, emit no insn,
1600 because the ASM_INPUT would get VOIDmode
1601 and that could cause a crash in reload. */
1602 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1603 return;
1605 /* ??? Can this happen, and does the error message make any sense? */
1606 if (TREE_PURPOSE (tail) == NULL_TREE)
1608 error ("hard register `%s' listed as input operand to `asm'",
1609 TREE_STRING_POINTER (TREE_VALUE (tail)) );
1610 return;
1613 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (tail)));
1614 constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1615 orig_constraint = constraint;
1617 /* Make sure constraint has neither `=', `+', nor '&'. */
1619 for (j = 0; j < c_len; j++)
1620 switch (constraint[j])
1622 case '+': case '=': case '&':
1623 if (constraint == orig_constraint)
1625 error ("input operand constraint contains `%c'",
1626 constraint[j]);
1627 return;
1629 break;
1631 case '%':
1632 if (constraint == orig_constraint
1633 && i + 1 == ninputs - ninout)
1635 error ("`%%' constraint used with last operand");
1636 return;
1638 break;
1640 case 'V': case 'm': case 'o':
1641 allows_mem = 1;
1642 break;
1644 case '<': case '>':
1645 case '?': case '!': case '*':
1646 case 'E': case 'F': case 'G': case 'H': case 'X':
1647 case 's': case 'i': case 'n':
1648 case 'I': case 'J': case 'K': case 'L': case 'M':
1649 case 'N': case 'O': case 'P': case ',':
1650 #ifdef EXTRA_CONSTRAINT
1651 case 'Q': case 'R': case 'S': case 'T': case 'U':
1652 #endif
1653 break;
1655 /* Whether or not a numeric constraint allows a register is
1656 decided by the matching constraint, and so there is no need
1657 to do anything special with them. We must handle them in
1658 the default case, so that we don't unnecessarily force
1659 operands to memory. */
1660 case '0': case '1': case '2': case '3': case '4':
1661 case '5': case '6': case '7': case '8': case '9':
1662 if (constraint[j] >= '0' + noutputs)
1664 error
1665 ("matching constraint references invalid operand number");
1666 return;
1669 /* Try and find the real constraint for this dup. */
1670 if ((j == 0 && c_len == 1)
1671 || (j == 1 && c_len == 2 && constraint[0] == '%'))
1673 tree o = outputs;
1675 for (j = constraint[j] - '0'; j > 0; --j)
1676 o = TREE_CHAIN (o);
1678 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (o)));
1679 constraint = TREE_STRING_POINTER (TREE_PURPOSE (o));
1680 j = 0;
1681 break;
1684 /* ... fall through ... */
1686 case 'p': case 'r':
1687 default:
1688 allows_reg = 1;
1689 break;
1691 case 'g':
1692 allows_reg = 1;
1693 allows_mem = 1;
1694 break;
1697 if (! allows_reg && allows_mem)
1698 mark_addressable (TREE_VALUE (tail));
1700 op = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode, 0);
1702 if (asm_operand_ok (op, constraint) <= 0)
1704 if (allows_reg)
1705 op = force_reg (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))), op);
1706 else if (!allows_mem)
1707 warning ("asm operand %d probably doesn't match constraints", i);
1708 else if (CONSTANT_P (op))
1709 op = force_const_mem (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1710 op);
1711 else if (GET_CODE (op) == REG
1712 || GET_CODE (op) == SUBREG
1713 || GET_CODE (op) == CONCAT)
1715 tree type = TREE_TYPE (TREE_VALUE (tail));
1716 rtx memloc = assign_temp (type, 1, 1, 1);
1718 emit_move_insn (memloc, op);
1719 op = memloc;
1722 else if (GET_CODE (op) == MEM && MEM_VOLATILE_P (op))
1723 /* We won't recognize volatile memory as available a
1724 memory_operand at this point. Ignore it. */
1726 else if (queued_subexp_p (op))
1728 else
1729 /* ??? Leave this only until we have experience with what
1730 happens in combine and elsewhere when constraints are
1731 not satisfied. */
1732 warning ("asm operand %d probably doesn't match constraints", i);
1734 XVECEXP (body, 3, i) = op;
1736 XVECEXP (body, 4, i) /* constraints */
1737 = gen_rtx_ASM_INPUT (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1738 orig_constraint);
1739 i++;
1742 /* Protect all the operands from the queue now that they have all been
1743 evaluated. */
1745 for (i = 0; i < ninputs - ninout; i++)
1746 XVECEXP (body, 3, i) = protect_from_queue (XVECEXP (body, 3, i), 0);
1748 for (i = 0; i < noutputs; i++)
1749 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1751 /* For in-out operands, copy output rtx to input rtx. */
1752 for (i = 0; i < ninout; i++)
1754 int j = inout_opnum[i];
1756 XVECEXP (body, 3, ninputs - ninout + i) /* argvec */
1757 = output_rtx[j];
1758 XVECEXP (body, 4, ninputs - ninout + i) /* constraints */
1759 = gen_rtx_ASM_INPUT (inout_mode[i], digit_strings[j]);
1762 /* Now, for each output, construct an rtx
1763 (set OUTPUT (asm_operands INSN OUTPUTNUMBER OUTPUTCONSTRAINT
1764 ARGVEC CONSTRAINTS))
1765 If there is more than one, put them inside a PARALLEL. */
1767 if (noutputs == 1 && nclobbers == 0)
1769 XSTR (body, 1) = TREE_STRING_POINTER (TREE_PURPOSE (outputs));
1770 insn = emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1773 else if (noutputs == 0 && nclobbers == 0)
1775 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1776 insn = emit_insn (body);
1779 else
1781 rtx obody = body;
1782 int num = noutputs;
1784 if (num == 0)
1785 num = 1;
1787 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1789 /* For each output operand, store a SET. */
1790 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1792 XVECEXP (body, 0, i)
1793 = gen_rtx_SET (VOIDmode,
1794 output_rtx[i],
1795 gen_rtx_ASM_OPERANDS
1796 (VOIDmode,
1797 TREE_STRING_POINTER (string),
1798 TREE_STRING_POINTER (TREE_PURPOSE (tail)),
1799 i, argvec, constraints,
1800 filename, line));
1802 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1805 /* If there are no outputs (but there are some clobbers)
1806 store the bare ASM_OPERANDS into the PARALLEL. */
1808 if (i == 0)
1809 XVECEXP (body, 0, i++) = obody;
1811 /* Store (clobber REG) for each clobbered register specified. */
1813 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1815 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1816 int j = decode_reg_name (regname);
1818 if (j < 0)
1820 if (j == -3) /* `cc', which is not a register */
1821 continue;
1823 if (j == -4) /* `memory', don't cache memory across asm */
1825 XVECEXP (body, 0, i++)
1826 = gen_rtx_CLOBBER (VOIDmode,
1827 gen_rtx_MEM
1828 (BLKmode,
1829 gen_rtx_SCRATCH (VOIDmode)));
1830 continue;
1833 /* Ignore unknown register, error already signaled. */
1834 continue;
1837 /* Use QImode since that's guaranteed to clobber just one reg. */
1838 XVECEXP (body, 0, i++)
1839 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (QImode, j));
1842 insn = emit_insn (body);
1845 /* For any outputs that needed reloading into registers, spill them
1846 back to where they belong. */
1847 for (i = 0; i < noutputs; ++i)
1848 if (real_output_rtx[i])
1849 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1851 free_temp_slots ();
1854 /* Generate RTL to evaluate the expression EXP
1855 and remember it in case this is the VALUE in a ({... VALUE; }) constr. */
1857 void
1858 expand_expr_stmt (exp)
1859 tree exp;
1861 /* If -W, warn about statements with no side effects,
1862 except for an explicit cast to void (e.g. for assert()), and
1863 except inside a ({...}) where they may be useful. */
1864 if (expr_stmts_for_value == 0 && exp != error_mark_node)
1866 if (! TREE_SIDE_EFFECTS (exp)
1867 && (extra_warnings || warn_unused_value)
1868 && !(TREE_CODE (exp) == CONVERT_EXPR
1869 && VOID_TYPE_P (TREE_TYPE (exp))))
1870 warning_with_file_and_line (emit_filename, emit_lineno,
1871 "statement with no effect");
1872 else if (warn_unused_value)
1873 warn_if_unused_value (exp);
1876 /* If EXP is of function type and we are expanding statements for
1877 value, convert it to pointer-to-function. */
1878 if (expr_stmts_for_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
1879 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
1881 last_expr_type = TREE_TYPE (exp);
1882 last_expr_value = expand_expr (exp,
1883 (expr_stmts_for_value
1884 ? NULL_RTX : const0_rtx),
1885 VOIDmode, 0);
1887 /* If all we do is reference a volatile value in memory,
1888 copy it to a register to be sure it is actually touched. */
1889 if (last_expr_value != 0 && GET_CODE (last_expr_value) == MEM
1890 && TREE_THIS_VOLATILE (exp))
1892 if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode)
1894 else if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
1895 copy_to_reg (last_expr_value);
1896 else
1898 rtx lab = gen_label_rtx ();
1900 /* Compare the value with itself to reference it. */
1901 emit_cmp_and_jump_insns (last_expr_value, last_expr_value, EQ,
1902 expand_expr (TYPE_SIZE (last_expr_type),
1903 NULL_RTX, VOIDmode, 0),
1904 BLKmode, 0,
1905 TYPE_ALIGN (last_expr_type) / BITS_PER_UNIT,
1906 lab);
1907 emit_label (lab);
1911 /* If this expression is part of a ({...}) and is in memory, we may have
1912 to preserve temporaries. */
1913 preserve_temp_slots (last_expr_value);
1915 /* Free any temporaries used to evaluate this expression. Any temporary
1916 used as a result of this expression will already have been preserved
1917 above. */
1918 free_temp_slots ();
1920 emit_queue ();
1923 /* Warn if EXP contains any computations whose results are not used.
1924 Return 1 if a warning is printed; 0 otherwise. */
1927 warn_if_unused_value (exp)
1928 tree exp;
1930 if (TREE_USED (exp))
1931 return 0;
1933 switch (TREE_CODE (exp))
1935 case PREINCREMENT_EXPR:
1936 case POSTINCREMENT_EXPR:
1937 case PREDECREMENT_EXPR:
1938 case POSTDECREMENT_EXPR:
1939 case MODIFY_EXPR:
1940 case INIT_EXPR:
1941 case TARGET_EXPR:
1942 case CALL_EXPR:
1943 case METHOD_CALL_EXPR:
1944 case RTL_EXPR:
1945 case TRY_CATCH_EXPR:
1946 case WITH_CLEANUP_EXPR:
1947 case EXIT_EXPR:
1948 /* We don't warn about COND_EXPR because it may be a useful
1949 construct if either arm contains a side effect. */
1950 case COND_EXPR:
1951 return 0;
1953 case BIND_EXPR:
1954 /* For a binding, warn if no side effect within it. */
1955 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1957 case SAVE_EXPR:
1958 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1960 case TRUTH_ORIF_EXPR:
1961 case TRUTH_ANDIF_EXPR:
1962 /* In && or ||, warn if 2nd operand has no side effect. */
1963 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1965 case COMPOUND_EXPR:
1966 if (TREE_NO_UNUSED_WARNING (exp))
1967 return 0;
1968 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
1969 return 1;
1970 /* Let people do `(foo (), 0)' without a warning. */
1971 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1972 return 0;
1973 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1975 case NOP_EXPR:
1976 case CONVERT_EXPR:
1977 case NON_LVALUE_EXPR:
1978 /* Don't warn about values cast to void. */
1979 if (VOID_TYPE_P (TREE_TYPE (exp)))
1980 return 0;
1981 /* Don't warn about conversions not explicit in the user's program. */
1982 if (TREE_NO_UNUSED_WARNING (exp))
1983 return 0;
1984 /* Assignment to a cast usually results in a cast of a modify.
1985 Don't complain about that. There can be an arbitrary number of
1986 casts before the modify, so we must loop until we find the first
1987 non-cast expression and then test to see if that is a modify. */
1989 tree tem = TREE_OPERAND (exp, 0);
1991 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
1992 tem = TREE_OPERAND (tem, 0);
1994 if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
1995 || TREE_CODE (tem) == CALL_EXPR)
1996 return 0;
1998 goto warn;
2000 case INDIRECT_REF:
2001 /* Don't warn about automatic dereferencing of references, since
2002 the user cannot control it. */
2003 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
2004 return warn_if_unused_value (TREE_OPERAND (exp, 0));
2005 /* ... fall through ... */
2007 default:
2008 /* Referencing a volatile value is a side effect, so don't warn. */
2009 if ((DECL_P (exp)
2010 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
2011 && TREE_THIS_VOLATILE (exp))
2012 return 0;
2014 /* If this is an expression which has no operands, there is no value
2015 to be unused. There are no such language-independent codes,
2016 but front ends may define such. */
2017 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'e'
2018 && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
2019 return 0;
2021 warn:
2022 warning_with_file_and_line (emit_filename, emit_lineno,
2023 "value computed is not used");
2024 return 1;
2028 /* Clear out the memory of the last expression evaluated. */
2030 void
2031 clear_last_expr ()
2033 last_expr_type = 0;
2036 /* Begin a statement which will return a value.
2037 Return the RTL_EXPR for this statement expr.
2038 The caller must save that value and pass it to expand_end_stmt_expr. */
2040 tree
2041 expand_start_stmt_expr ()
2043 int momentary;
2044 tree t;
2046 /* Make the RTL_EXPR node temporary, not momentary,
2047 so that rtl_expr_chain doesn't become garbage. */
2048 momentary = suspend_momentary ();
2049 t = make_node (RTL_EXPR);
2050 resume_momentary (momentary);
2051 do_pending_stack_adjust ();
2052 start_sequence_for_rtl_expr (t);
2053 NO_DEFER_POP;
2054 expr_stmts_for_value++;
2055 return t;
2058 /* Restore the previous state at the end of a statement that returns a value.
2059 Returns a tree node representing the statement's value and the
2060 insns to compute the value.
2062 The nodes of that expression have been freed by now, so we cannot use them.
2063 But we don't want to do that anyway; the expression has already been
2064 evaluated and now we just want to use the value. So generate a RTL_EXPR
2065 with the proper type and RTL value.
2067 If the last substatement was not an expression,
2068 return something with type `void'. */
2070 tree
2071 expand_end_stmt_expr (t)
2072 tree t;
2074 OK_DEFER_POP;
2076 if (last_expr_type == 0)
2078 last_expr_type = void_type_node;
2079 last_expr_value = const0_rtx;
2081 else if (last_expr_value == 0)
2082 /* There are some cases where this can happen, such as when the
2083 statement is void type. */
2084 last_expr_value = const0_rtx;
2085 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2086 /* Remove any possible QUEUED. */
2087 last_expr_value = protect_from_queue (last_expr_value, 0);
2089 emit_queue ();
2091 TREE_TYPE (t) = last_expr_type;
2092 RTL_EXPR_RTL (t) = last_expr_value;
2093 RTL_EXPR_SEQUENCE (t) = get_insns ();
2095 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2097 end_sequence ();
2099 /* Don't consider deleting this expr or containing exprs at tree level. */
2100 TREE_SIDE_EFFECTS (t) = 1;
2101 /* Propagate volatility of the actual RTL expr. */
2102 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2104 last_expr_type = 0;
2105 expr_stmts_for_value--;
2107 return t;
2110 /* Generate RTL for the start of an if-then. COND is the expression
2111 whose truth should be tested.
2113 If EXITFLAG is nonzero, this conditional is visible to
2114 `exit_something'. */
2116 void
2117 expand_start_cond (cond, exitflag)
2118 tree cond;
2119 int exitflag;
2121 struct nesting *thiscond = ALLOC_NESTING ();
2123 /* Make an entry on cond_stack for the cond we are entering. */
2125 thiscond->next = cond_stack;
2126 thiscond->all = nesting_stack;
2127 thiscond->depth = ++nesting_depth;
2128 thiscond->data.cond.next_label = gen_label_rtx ();
2129 /* Before we encounter an `else', we don't need a separate exit label
2130 unless there are supposed to be exit statements
2131 to exit this conditional. */
2132 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2133 thiscond->data.cond.endif_label = thiscond->exit_label;
2134 cond_stack = thiscond;
2135 nesting_stack = thiscond;
2137 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2140 /* Generate RTL between then-clause and the elseif-clause
2141 of an if-then-elseif-.... */
2143 void
2144 expand_start_elseif (cond)
2145 tree cond;
2147 if (cond_stack->data.cond.endif_label == 0)
2148 cond_stack->data.cond.endif_label = gen_label_rtx ();
2149 emit_jump (cond_stack->data.cond.endif_label);
2150 emit_label (cond_stack->data.cond.next_label);
2151 cond_stack->data.cond.next_label = gen_label_rtx ();
2152 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2155 /* Generate RTL between the then-clause and the else-clause
2156 of an if-then-else. */
2158 void
2159 expand_start_else ()
2161 if (cond_stack->data.cond.endif_label == 0)
2162 cond_stack->data.cond.endif_label = gen_label_rtx ();
2164 emit_jump (cond_stack->data.cond.endif_label);
2165 emit_label (cond_stack->data.cond.next_label);
2166 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
2169 /* After calling expand_start_else, turn this "else" into an "else if"
2170 by providing another condition. */
2172 void
2173 expand_elseif (cond)
2174 tree cond;
2176 cond_stack->data.cond.next_label = gen_label_rtx ();
2177 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2180 /* Generate RTL for the end of an if-then.
2181 Pop the record for it off of cond_stack. */
2183 void
2184 expand_end_cond ()
2186 struct nesting *thiscond = cond_stack;
2188 do_pending_stack_adjust ();
2189 if (thiscond->data.cond.next_label)
2190 emit_label (thiscond->data.cond.next_label);
2191 if (thiscond->data.cond.endif_label)
2192 emit_label (thiscond->data.cond.endif_label);
2194 POPSTACK (cond_stack);
2195 last_expr_type = 0;
2200 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2201 loop should be exited by `exit_something'. This is a loop for which
2202 `expand_continue' will jump to the top of the loop.
2204 Make an entry on loop_stack to record the labels associated with
2205 this loop. */
2207 struct nesting *
2208 expand_start_loop (exit_flag)
2209 int exit_flag;
2211 register struct nesting *thisloop = ALLOC_NESTING ();
2213 /* Make an entry on loop_stack for the loop we are entering. */
2215 thisloop->next = loop_stack;
2216 thisloop->all = nesting_stack;
2217 thisloop->depth = ++nesting_depth;
2218 thisloop->data.loop.start_label = gen_label_rtx ();
2219 thisloop->data.loop.end_label = gen_label_rtx ();
2220 thisloop->data.loop.alt_end_label = 0;
2221 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2222 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2223 loop_stack = thisloop;
2224 nesting_stack = thisloop;
2226 do_pending_stack_adjust ();
2227 emit_queue ();
2228 emit_note (NULL_PTR, NOTE_INSN_LOOP_BEG);
2229 emit_label (thisloop->data.loop.start_label);
2231 return thisloop;
2234 /* Like expand_start_loop but for a loop where the continuation point
2235 (for expand_continue_loop) will be specified explicitly. */
2237 struct nesting *
2238 expand_start_loop_continue_elsewhere (exit_flag)
2239 int exit_flag;
2241 struct nesting *thisloop = expand_start_loop (exit_flag);
2242 loop_stack->data.loop.continue_label = gen_label_rtx ();
2243 return thisloop;
2246 /* Specify the continuation point for a loop started with
2247 expand_start_loop_continue_elsewhere.
2248 Use this at the point in the code to which a continue statement
2249 should jump. */
2251 void
2252 expand_loop_continue_here ()
2254 do_pending_stack_adjust ();
2255 emit_note (NULL_PTR, NOTE_INSN_LOOP_CONT);
2256 emit_label (loop_stack->data.loop.continue_label);
2259 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2260 Pop the block off of loop_stack. */
2262 void
2263 expand_end_loop ()
2265 rtx start_label = loop_stack->data.loop.start_label;
2266 rtx insn = get_last_insn ();
2267 int needs_end_jump = 1;
2269 /* Mark the continue-point at the top of the loop if none elsewhere. */
2270 if (start_label == loop_stack->data.loop.continue_label)
2271 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2273 do_pending_stack_adjust ();
2275 /* If optimizing, perhaps reorder the loop.
2276 First, try to use a condjump near the end.
2277 expand_exit_loop_if_false ends loops with unconditional jumps,
2278 like this:
2280 if (test) goto label;
2281 optional: cleanup
2282 goto loop_stack->data.loop.end_label
2283 barrier
2284 label:
2286 If we find such a pattern, we can end the loop earlier. */
2288 if (optimize
2289 && GET_CODE (insn) == CODE_LABEL
2290 && LABEL_NAME (insn) == NULL
2291 && GET_CODE (PREV_INSN (insn)) == BARRIER)
2293 rtx label = insn;
2294 rtx jump = PREV_INSN (PREV_INSN (label));
2296 if (GET_CODE (jump) == JUMP_INSN
2297 && GET_CODE (PATTERN (jump)) == SET
2298 && SET_DEST (PATTERN (jump)) == pc_rtx
2299 && GET_CODE (SET_SRC (PATTERN (jump))) == LABEL_REF
2300 && (XEXP (SET_SRC (PATTERN (jump)), 0)
2301 == loop_stack->data.loop.end_label))
2303 rtx prev;
2305 /* The test might be complex and reference LABEL multiple times,
2306 like the loop in loop_iterations to set vtop. To handle this,
2307 we move LABEL. */
2308 insn = PREV_INSN (label);
2309 reorder_insns (label, label, start_label);
2311 for (prev = PREV_INSN (jump); ; prev = PREV_INSN (prev))
2313 /* We ignore line number notes, but if we see any other note,
2314 in particular NOTE_INSN_BLOCK_*, NOTE_INSN_EH_REGION_*,
2315 NOTE_INSN_LOOP_*, we disable this optimization. */
2316 if (GET_CODE (prev) == NOTE)
2318 if (NOTE_LINE_NUMBER (prev) < 0)
2319 break;
2320 continue;
2322 if (GET_CODE (prev) == CODE_LABEL)
2323 break;
2324 if (GET_CODE (prev) == JUMP_INSN)
2326 if (GET_CODE (PATTERN (prev)) == SET
2327 && SET_DEST (PATTERN (prev)) == pc_rtx
2328 && GET_CODE (SET_SRC (PATTERN (prev))) == IF_THEN_ELSE
2329 && (GET_CODE (XEXP (SET_SRC (PATTERN (prev)), 1))
2330 == LABEL_REF)
2331 && XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0) == label)
2333 XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0)
2334 = start_label;
2335 emit_note_after (NOTE_INSN_LOOP_END, prev);
2336 needs_end_jump = 0;
2338 break;
2344 /* If the loop starts with a loop exit, roll that to the end where
2345 it will optimize together with the jump back.
2347 We look for the conditional branch to the exit, except that once
2348 we find such a branch, we don't look past 30 instructions.
2350 In more detail, if the loop presently looks like this (in pseudo-C):
2352 start_label:
2353 if (test) goto end_label;
2354 body;
2355 goto start_label;
2356 end_label:
2358 transform it to look like:
2360 goto start_label;
2361 newstart_label:
2362 body;
2363 start_label:
2364 if (test) goto end_label;
2365 goto newstart_label;
2366 end_label:
2368 Here, the `test' may actually consist of some reasonably complex
2369 code, terminating in a test. */
2371 if (optimize
2372 && needs_end_jump
2374 ! (GET_CODE (insn) == JUMP_INSN
2375 && GET_CODE (PATTERN (insn)) == SET
2376 && SET_DEST (PATTERN (insn)) == pc_rtx
2377 && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE))
2379 int eh_regions = 0;
2380 int num_insns = 0;
2381 rtx last_test_insn = NULL_RTX;
2383 /* Scan insns from the top of the loop looking for a qualified
2384 conditional exit. */
2385 for (insn = NEXT_INSN (loop_stack->data.loop.start_label); insn;
2386 insn = NEXT_INSN (insn))
2388 if (GET_CODE (insn) == NOTE)
2390 if (optimize < 2
2391 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2392 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2393 /* The code that actually moves the exit test will
2394 carefully leave BLOCK notes in their original
2395 location. That means, however, that we can't debug
2396 the exit test itself. So, we refuse to move code
2397 containing BLOCK notes at low optimization levels. */
2398 break;
2400 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG)
2401 ++eh_regions;
2402 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END)
2404 --eh_regions;
2405 if (eh_regions < 0)
2406 /* We've come to the end of an EH region, but
2407 never saw the beginning of that region. That
2408 means that an EH region begins before the top
2409 of the loop, and ends in the middle of it. The
2410 existence of such a situation violates a basic
2411 assumption in this code, since that would imply
2412 that even when EH_REGIONS is zero, we might
2413 move code out of an exception region. */
2414 abort ();
2417 /* We must not walk into a nested loop. */
2418 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
2419 break;
2421 /* We already know this INSN is a NOTE, so there's no
2422 point in looking at it to see if it's a JUMP. */
2423 continue;
2426 if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == INSN)
2427 num_insns++;
2429 if (last_test_insn && num_insns > 30)
2430 break;
2432 if (eh_regions > 0)
2433 /* We don't want to move a partial EH region. Consider:
2435 while ( ( { try {
2436 if (cond ()) 0;
2437 else {
2438 bar();
2441 } catch (...) {
2443 } )) {
2444 body;
2447 This isn't legal C++, but here's what it's supposed to
2448 mean: if cond() is true, stop looping. Otherwise,
2449 call bar, and keep looping. In addition, if cond
2450 throws an exception, catch it and keep looping. Such
2451 constructs are certainy legal in LISP.
2453 We should not move the `if (cond()) 0' test since then
2454 the EH-region for the try-block would be broken up.
2455 (In this case we would the EH_BEG note for the `try'
2456 and `if cond()' but not the call to bar() or the
2457 EH_END note.)
2459 So we don't look for tests within an EH region. */
2460 continue;
2462 if (GET_CODE (insn) == JUMP_INSN
2463 && GET_CODE (PATTERN (insn)) == SET
2464 && SET_DEST (PATTERN (insn)) == pc_rtx)
2466 /* This is indeed a jump. */
2467 rtx dest1 = NULL_RTX;
2468 rtx dest2 = NULL_RTX;
2469 rtx potential_last_test;
2470 if (GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE)
2472 /* A conditional jump. */
2473 dest1 = XEXP (SET_SRC (PATTERN (insn)), 1);
2474 dest2 = XEXP (SET_SRC (PATTERN (insn)), 2);
2475 potential_last_test = insn;
2477 else
2479 /* An unconditional jump. */
2480 dest1 = SET_SRC (PATTERN (insn));
2481 /* Include the BARRIER after the JUMP. */
2482 potential_last_test = NEXT_INSN (insn);
2485 do {
2486 if (dest1 && GET_CODE (dest1) == LABEL_REF
2487 && ((XEXP (dest1, 0)
2488 == loop_stack->data.loop.alt_end_label)
2489 || (XEXP (dest1, 0)
2490 == loop_stack->data.loop.end_label)))
2492 last_test_insn = potential_last_test;
2493 break;
2496 /* If this was a conditional jump, there may be
2497 another label at which we should look. */
2498 dest1 = dest2;
2499 dest2 = NULL_RTX;
2500 } while (dest1);
2504 if (last_test_insn != 0 && last_test_insn != get_last_insn ())
2506 /* We found one. Move everything from there up
2507 to the end of the loop, and add a jump into the loop
2508 to jump to there. */
2509 register rtx newstart_label = gen_label_rtx ();
2510 register rtx start_move = start_label;
2511 rtx next_insn;
2513 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2514 then we want to move this note also. */
2515 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2516 && (NOTE_LINE_NUMBER (PREV_INSN (start_move))
2517 == NOTE_INSN_LOOP_CONT))
2518 start_move = PREV_INSN (start_move);
2520 emit_label_after (newstart_label, PREV_INSN (start_move));
2522 /* Actually move the insns. Start at the beginning, and
2523 keep copying insns until we've copied the
2524 last_test_insn. */
2525 for (insn = start_move; insn; insn = next_insn)
2527 /* Figure out which insn comes after this one. We have
2528 to do this before we move INSN. */
2529 if (insn == last_test_insn)
2530 /* We've moved all the insns. */
2531 next_insn = NULL_RTX;
2532 else
2533 next_insn = NEXT_INSN (insn);
2535 if (GET_CODE (insn) == NOTE
2536 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2537 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2538 /* We don't want to move NOTE_INSN_BLOCK_BEGs or
2539 NOTE_INSN_BLOCK_ENDs because the correct generation
2540 of debugging information depends on these appearing
2541 in the same order in the RTL and in the tree
2542 structure, where they are represented as BLOCKs.
2543 So, we don't move block notes. Of course, moving
2544 the code inside the block is likely to make it
2545 impossible to debug the instructions in the exit
2546 test, but such is the price of optimization. */
2547 continue;
2549 /* Move the INSN. */
2550 reorder_insns (insn, insn, get_last_insn ());
2553 emit_jump_insn_after (gen_jump (start_label),
2554 PREV_INSN (newstart_label));
2555 emit_barrier_after (PREV_INSN (newstart_label));
2556 start_label = newstart_label;
2560 if (needs_end_jump)
2562 emit_jump (start_label);
2563 emit_note (NULL_PTR, NOTE_INSN_LOOP_END);
2565 emit_label (loop_stack->data.loop.end_label);
2567 POPSTACK (loop_stack);
2569 last_expr_type = 0;
2572 /* Generate a jump to the current loop's continue-point.
2573 This is usually the top of the loop, but may be specified
2574 explicitly elsewhere. If not currently inside a loop,
2575 return 0 and do nothing; caller will print an error message. */
2578 expand_continue_loop (whichloop)
2579 struct nesting *whichloop;
2581 last_expr_type = 0;
2582 if (whichloop == 0)
2583 whichloop = loop_stack;
2584 if (whichloop == 0)
2585 return 0;
2586 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2587 NULL_RTX);
2588 return 1;
2591 /* Generate a jump to exit the current loop. If not currently inside a loop,
2592 return 0 and do nothing; caller will print an error message. */
2595 expand_exit_loop (whichloop)
2596 struct nesting *whichloop;
2598 last_expr_type = 0;
2599 if (whichloop == 0)
2600 whichloop = loop_stack;
2601 if (whichloop == 0)
2602 return 0;
2603 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2604 return 1;
2607 /* Generate a conditional jump to exit the current loop if COND
2608 evaluates to zero. If not currently inside a loop,
2609 return 0 and do nothing; caller will print an error message. */
2612 expand_exit_loop_if_false (whichloop, cond)
2613 struct nesting *whichloop;
2614 tree cond;
2616 rtx label = gen_label_rtx ();
2617 rtx last_insn;
2618 last_expr_type = 0;
2620 if (whichloop == 0)
2621 whichloop = loop_stack;
2622 if (whichloop == 0)
2623 return 0;
2624 /* In order to handle fixups, we actually create a conditional jump
2625 around a unconditional branch to exit the loop. If fixups are
2626 necessary, they go before the unconditional branch. */
2629 do_jump (cond, NULL_RTX, label);
2630 last_insn = get_last_insn ();
2631 if (GET_CODE (last_insn) == CODE_LABEL)
2632 whichloop->data.loop.alt_end_label = last_insn;
2633 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2634 NULL_RTX);
2635 emit_label (label);
2637 return 1;
2640 /* Return nonzero if the loop nest is empty. Else return zero. */
2643 stmt_loop_nest_empty ()
2645 /* cfun->stmt can be NULL if we are building a call to get the
2646 EH context for a setjmp/longjmp EH target and the current
2647 function was a deferred inline function. */
2648 return (cfun->stmt == NULL || loop_stack == NULL);
2651 /* Return non-zero if we should preserve sub-expressions as separate
2652 pseudos. We never do so if we aren't optimizing. We always do so
2653 if -fexpensive-optimizations.
2655 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2656 the loop may still be a small one. */
2659 preserve_subexpressions_p ()
2661 rtx insn;
2663 if (flag_expensive_optimizations)
2664 return 1;
2666 if (optimize == 0 || cfun == 0 || cfun->stmt == 0 || loop_stack == 0)
2667 return 0;
2669 insn = get_last_insn_anywhere ();
2671 return (insn
2672 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2673 < n_non_fixed_regs * 3));
2677 /* Generate a jump to exit the current loop, conditional, binding contour
2678 or case statement. Not all such constructs are visible to this function,
2679 only those started with EXIT_FLAG nonzero. Individual languages use
2680 the EXIT_FLAG parameter to control which kinds of constructs you can
2681 exit this way.
2683 If not currently inside anything that can be exited,
2684 return 0 and do nothing; caller will print an error message. */
2687 expand_exit_something ()
2689 struct nesting *n;
2690 last_expr_type = 0;
2691 for (n = nesting_stack; n; n = n->all)
2692 if (n->exit_label != 0)
2694 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2695 return 1;
2698 return 0;
2701 /* Generate RTL to return from the current function, with no value.
2702 (That is, we do not do anything about returning any value.) */
2704 void
2705 expand_null_return ()
2707 struct nesting *block = block_stack;
2708 rtx last_insn = get_last_insn ();
2710 /* If this function was declared to return a value, but we
2711 didn't, clobber the return registers so that they are not
2712 propogated live to the rest of the function. */
2713 clobber_return_register ();
2715 /* Does any pending block have cleanups? */
2716 while (block && block->data.block.cleanups == 0)
2717 block = block->next;
2719 /* If yes, use a goto to return, since that runs cleanups. */
2721 expand_null_return_1 (last_insn, block != 0);
2724 /* Generate RTL to return from the current function, with value VAL. */
2726 static void
2727 expand_value_return (val)
2728 rtx val;
2730 struct nesting *block = block_stack;
2731 rtx last_insn = get_last_insn ();
2732 rtx return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2734 /* Copy the value to the return location
2735 unless it's already there. */
2737 if (return_reg != val)
2739 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
2740 #ifdef PROMOTE_FUNCTION_RETURN
2741 int unsignedp = TREE_UNSIGNED (type);
2742 enum machine_mode old_mode
2743 = DECL_MODE (DECL_RESULT (current_function_decl));
2744 enum machine_mode mode
2745 = promote_mode (type, old_mode, &unsignedp, 1);
2747 if (mode != old_mode)
2748 val = convert_modes (mode, old_mode, val, unsignedp);
2749 #endif
2750 if (GET_CODE (return_reg) == PARALLEL)
2751 emit_group_load (return_reg, val, int_size_in_bytes (type),
2752 TYPE_ALIGN (type));
2753 else
2754 emit_move_insn (return_reg, val);
2757 /* Does any pending block have cleanups? */
2759 while (block && block->data.block.cleanups == 0)
2760 block = block->next;
2762 /* If yes, use a goto to return, since that runs cleanups.
2763 Use LAST_INSN to put cleanups *before* the move insn emitted above. */
2765 expand_null_return_1 (last_insn, block != 0);
2768 /* Output a return with no value. If LAST_INSN is nonzero,
2769 pretend that the return takes place after LAST_INSN.
2770 If USE_GOTO is nonzero then don't use a return instruction;
2771 go to the return label instead. This causes any cleanups
2772 of pending blocks to be executed normally. */
2774 static void
2775 expand_null_return_1 (last_insn, use_goto)
2776 rtx last_insn;
2777 int use_goto;
2779 rtx end_label = cleanup_label ? cleanup_label : return_label;
2781 clear_pending_stack_adjust ();
2782 do_pending_stack_adjust ();
2783 last_expr_type = 0;
2785 /* PCC-struct return always uses an epilogue. */
2786 if (current_function_returns_pcc_struct || use_goto)
2788 if (end_label == 0)
2789 end_label = return_label = gen_label_rtx ();
2790 expand_goto_internal (NULL_TREE, end_label, last_insn);
2791 return;
2794 /* Otherwise output a simple return-insn if one is available,
2795 unless it won't do the job. */
2796 #ifdef HAVE_return
2797 if (HAVE_return && use_goto == 0 && cleanup_label == 0)
2799 emit_jump_insn (gen_return ());
2800 emit_barrier ();
2801 return;
2803 #endif
2805 /* Otherwise jump to the epilogue. */
2806 expand_goto_internal (NULL_TREE, end_label, last_insn);
2809 /* Generate RTL to evaluate the expression RETVAL and return it
2810 from the current function. */
2812 void
2813 expand_return (retval)
2814 tree retval;
2816 /* If there are any cleanups to be performed, then they will
2817 be inserted following LAST_INSN. It is desirable
2818 that the last_insn, for such purposes, should be the
2819 last insn before computing the return value. Otherwise, cleanups
2820 which call functions can clobber the return value. */
2821 /* ??? rms: I think that is erroneous, because in C++ it would
2822 run destructors on variables that might be used in the subsequent
2823 computation of the return value. */
2824 rtx last_insn = 0;
2825 rtx result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
2826 register rtx val = 0;
2827 tree retval_rhs;
2828 int cleanups;
2830 /* If function wants no value, give it none. */
2831 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
2833 expand_expr (retval, NULL_RTX, VOIDmode, 0);
2834 emit_queue ();
2835 expand_null_return ();
2836 return;
2839 /* Are any cleanups needed? E.g. C++ destructors to be run? */
2840 /* This is not sufficient. We also need to watch for cleanups of the
2841 expression we are about to expand. Unfortunately, we cannot know
2842 if it has cleanups until we expand it, and we want to change how we
2843 expand it depending upon if we need cleanups. We can't win. */
2844 #if 0
2845 cleanups = any_pending_cleanups (1);
2846 #else
2847 cleanups = 1;
2848 #endif
2850 if (retval == error_mark_node)
2851 retval_rhs = NULL_TREE;
2852 else if (TREE_CODE (retval) == RESULT_DECL)
2853 retval_rhs = retval;
2854 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
2855 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
2856 retval_rhs = TREE_OPERAND (retval, 1);
2857 else if (VOID_TYPE_P (TREE_TYPE (retval)))
2858 /* Recognize tail-recursive call to void function. */
2859 retval_rhs = retval;
2860 else
2861 retval_rhs = NULL_TREE;
2863 /* Only use `last_insn' if there are cleanups which must be run. */
2864 if (cleanups || cleanup_label != 0)
2865 last_insn = get_last_insn ();
2867 /* Distribute return down conditional expr if either of the sides
2868 may involve tail recursion (see test below). This enhances the number
2869 of tail recursions we see. Don't do this always since it can produce
2870 sub-optimal code in some cases and we distribute assignments into
2871 conditional expressions when it would help. */
2873 if (optimize && retval_rhs != 0
2874 && frame_offset == 0
2875 && TREE_CODE (retval_rhs) == COND_EXPR
2876 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
2877 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
2879 rtx label = gen_label_rtx ();
2880 tree expr;
2882 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
2883 start_cleanup_deferral ();
2884 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2885 DECL_RESULT (current_function_decl),
2886 TREE_OPERAND (retval_rhs, 1));
2887 TREE_SIDE_EFFECTS (expr) = 1;
2888 expand_return (expr);
2889 emit_label (label);
2891 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2892 DECL_RESULT (current_function_decl),
2893 TREE_OPERAND (retval_rhs, 2));
2894 TREE_SIDE_EFFECTS (expr) = 1;
2895 expand_return (expr);
2896 end_cleanup_deferral ();
2897 return;
2900 /* If the result is an aggregate that is being returned in one (or more)
2901 registers, load the registers here. The compiler currently can't handle
2902 copying a BLKmode value into registers. We could put this code in a
2903 more general area (for use by everyone instead of just function
2904 call/return), but until this feature is generally usable it is kept here
2905 (and in expand_call). The value must go into a pseudo in case there
2906 are cleanups that will clobber the real return register. */
2908 if (retval_rhs != 0
2909 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
2910 && GET_CODE (result_rtl) == REG)
2912 int i;
2913 unsigned HOST_WIDE_INT bitpos, xbitpos;
2914 unsigned HOST_WIDE_INT big_endian_correction = 0;
2915 unsigned HOST_WIDE_INT bytes
2916 = int_size_in_bytes (TREE_TYPE (retval_rhs));
2917 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
2918 unsigned int bitsize
2919 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
2920 rtx *result_pseudos = (rtx *) alloca (sizeof (rtx) * n_regs);
2921 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
2922 rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
2923 enum machine_mode tmpmode, result_reg_mode;
2925 /* Structures whose size is not a multiple of a word are aligned
2926 to the least significant byte (to the right). On a BYTES_BIG_ENDIAN
2927 machine, this means we must skip the empty high order bytes when
2928 calculating the bit offset. */
2929 if (BYTES_BIG_ENDIAN && bytes % UNITS_PER_WORD)
2930 big_endian_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
2931 * BITS_PER_UNIT));
2933 /* Copy the structure BITSIZE bits at a time. */
2934 for (bitpos = 0, xbitpos = big_endian_correction;
2935 bitpos < bytes * BITS_PER_UNIT;
2936 bitpos += bitsize, xbitpos += bitsize)
2938 /* We need a new destination pseudo each time xbitpos is
2939 on a word boundary and when xbitpos == big_endian_correction
2940 (the first time through). */
2941 if (xbitpos % BITS_PER_WORD == 0
2942 || xbitpos == big_endian_correction)
2944 /* Generate an appropriate register. */
2945 dst = gen_reg_rtx (word_mode);
2946 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
2948 /* Clobber the destination before we move anything into it. */
2949 emit_insn (gen_rtx_CLOBBER (VOIDmode, dst));
2952 /* We need a new source operand each time bitpos is on a word
2953 boundary. */
2954 if (bitpos % BITS_PER_WORD == 0)
2955 src = operand_subword_force (result_val,
2956 bitpos / BITS_PER_WORD,
2957 BLKmode);
2959 /* Use bitpos for the source extraction (left justified) and
2960 xbitpos for the destination store (right justified). */
2961 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
2962 extract_bit_field (src, bitsize,
2963 bitpos % BITS_PER_WORD, 1,
2964 NULL_RTX, word_mode, word_mode,
2965 bitsize, BITS_PER_WORD),
2966 bitsize, BITS_PER_WORD);
2969 /* Find the smallest integer mode large enough to hold the
2970 entire structure and use that mode instead of BLKmode
2971 on the USE insn for the return register. */
2972 bytes = int_size_in_bytes (TREE_TYPE (retval_rhs));
2973 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
2974 tmpmode != VOIDmode;
2975 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
2977 /* Have we found a large enough mode? */
2978 if (GET_MODE_SIZE (tmpmode) >= bytes)
2979 break;
2982 /* No suitable mode found. */
2983 if (tmpmode == VOIDmode)
2984 abort ();
2986 PUT_MODE (result_rtl, tmpmode);
2988 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
2989 result_reg_mode = word_mode;
2990 else
2991 result_reg_mode = tmpmode;
2992 result_reg = gen_reg_rtx (result_reg_mode);
2994 emit_queue ();
2995 for (i = 0; i < n_regs; i++)
2996 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
2997 result_pseudos[i]);
2999 if (tmpmode != result_reg_mode)
3000 result_reg = gen_lowpart (tmpmode, result_reg);
3002 expand_value_return (result_reg);
3004 else if (cleanups
3005 && retval_rhs != 0
3006 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3007 && (GET_CODE (result_rtl) == REG
3008 || (GET_CODE (result_rtl) == PARALLEL)))
3010 /* Calculate the return value into a temporary (usually a pseudo
3011 reg). */
3012 val = assign_temp (TREE_TYPE (DECL_RESULT (current_function_decl)),
3013 0, 0, 1);
3014 val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3015 val = force_not_mem (val);
3016 emit_queue ();
3017 /* Return the calculated value, doing cleanups first. */
3018 expand_value_return (val);
3020 else
3022 /* No cleanups or no hard reg used;
3023 calculate value into hard return reg. */
3024 expand_expr (retval, const0_rtx, VOIDmode, 0);
3025 emit_queue ();
3026 expand_value_return (result_rtl);
3030 /* Return 1 if the end of the generated RTX is not a barrier.
3031 This means code already compiled can drop through. */
3034 drop_through_at_end_p ()
3036 rtx insn = get_last_insn ();
3037 while (insn && GET_CODE (insn) == NOTE)
3038 insn = PREV_INSN (insn);
3039 return insn && GET_CODE (insn) != BARRIER;
3042 /* Attempt to optimize a potential tail recursion call into a goto.
3043 ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3044 where to place the jump to the tail recursion label.
3046 Return TRUE if the call was optimized into a goto. */
3049 optimize_tail_recursion (arguments, last_insn)
3050 tree arguments;
3051 rtx last_insn;
3053 /* Finish checking validity, and if valid emit code to set the
3054 argument variables for the new call. */
3055 if (tail_recursion_args (arguments, DECL_ARGUMENTS (current_function_decl)))
3057 if (tail_recursion_label == 0)
3059 tail_recursion_label = gen_label_rtx ();
3060 emit_label_after (tail_recursion_label,
3061 tail_recursion_reentry);
3063 emit_queue ();
3064 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3065 emit_barrier ();
3066 return 1;
3068 return 0;
3071 /* Emit code to alter this function's formal parms for a tail-recursive call.
3072 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3073 FORMALS is the chain of decls of formals.
3074 Return 1 if this can be done;
3075 otherwise return 0 and do not emit any code. */
3077 static int
3078 tail_recursion_args (actuals, formals)
3079 tree actuals, formals;
3081 register tree a = actuals, f = formals;
3082 register int i;
3083 register rtx *argvec;
3085 /* Check that number and types of actuals are compatible
3086 with the formals. This is not always true in valid C code.
3087 Also check that no formal needs to be addressable
3088 and that all formals are scalars. */
3090 /* Also count the args. */
3092 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3094 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3095 != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3096 return 0;
3097 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3098 return 0;
3100 if (a != 0 || f != 0)
3101 return 0;
3103 /* Compute all the actuals. */
3105 argvec = (rtx *) alloca (i * sizeof (rtx));
3107 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3108 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3110 /* Find which actual values refer to current values of previous formals.
3111 Copy each of them now, before any formal is changed. */
3113 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3115 int copy = 0;
3116 register int j;
3117 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3118 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3119 { copy = 1; break; }
3120 if (copy)
3121 argvec[i] = copy_to_reg (argvec[i]);
3124 /* Store the values of the actuals into the formals. */
3126 for (f = formals, a = actuals, i = 0; f;
3127 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3129 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3130 emit_move_insn (DECL_RTL (f), argvec[i]);
3131 else
3132 convert_move (DECL_RTL (f), argvec[i],
3133 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
3136 free_temp_slots ();
3137 return 1;
3140 /* Generate the RTL code for entering a binding contour.
3141 The variables are declared one by one, by calls to `expand_decl'.
3143 FLAGS is a bitwise or of the following flags:
3145 1 - Nonzero if this construct should be visible to
3146 `exit_something'.
3148 2 - Nonzero if this contour does not require a
3149 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3150 language-independent code should set this flag because they
3151 will not create corresponding BLOCK nodes. (There should be
3152 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3153 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3154 when expand_end_bindings is called.
3156 If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3157 optionally be supplied. If so, it becomes the NOTE_BLOCK for the
3158 note. */
3160 void
3161 expand_start_bindings_and_block (flags, block)
3162 int flags;
3163 tree block;
3165 struct nesting *thisblock = ALLOC_NESTING ();
3166 rtx note;
3167 int exit_flag = ((flags & 1) != 0);
3168 int block_flag = ((flags & 2) == 0);
3170 /* If a BLOCK is supplied, then the caller should be requesting a
3171 NOTE_INSN_BLOCK_BEG note. */
3172 if (!block_flag && block)
3173 abort ();
3175 /* Create a note to mark the beginning of the block. */
3176 if (block_flag)
3178 note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
3179 NOTE_BLOCK (note) = block;
3181 else
3182 note = emit_note (NULL_PTR, NOTE_INSN_DELETED);
3184 /* Make an entry on block_stack for the block we are entering. */
3186 thisblock->next = block_stack;
3187 thisblock->all = nesting_stack;
3188 thisblock->depth = ++nesting_depth;
3189 thisblock->data.block.stack_level = 0;
3190 thisblock->data.block.cleanups = 0;
3191 thisblock->data.block.n_function_calls = 0;
3192 thisblock->data.block.exception_region = 0;
3193 thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3195 thisblock->data.block.conditional_code = 0;
3196 thisblock->data.block.last_unconditional_cleanup = note;
3197 /* When we insert instructions after the last unconditional cleanup,
3198 we don't adjust last_insn. That means that a later add_insn will
3199 clobber the instructions we've just added. The easiest way to
3200 fix this is to just insert another instruction here, so that the
3201 instructions inserted after the last unconditional cleanup are
3202 never the last instruction. */
3203 emit_note (NULL_PTR, NOTE_INSN_DELETED);
3204 thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
3206 if (block_stack
3207 && !(block_stack->data.block.cleanups == NULL_TREE
3208 && block_stack->data.block.outer_cleanups == NULL_TREE))
3209 thisblock->data.block.outer_cleanups
3210 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3211 block_stack->data.block.outer_cleanups);
3212 else
3213 thisblock->data.block.outer_cleanups = 0;
3214 thisblock->data.block.label_chain = 0;
3215 thisblock->data.block.innermost_stack_block = stack_block_stack;
3216 thisblock->data.block.first_insn = note;
3217 thisblock->data.block.block_start_count = ++current_block_start_count;
3218 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3219 block_stack = thisblock;
3220 nesting_stack = thisblock;
3222 /* Make a new level for allocating stack slots. */
3223 push_temp_slots ();
3226 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3227 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3228 expand_expr are made. After we end the region, we know that all
3229 space for all temporaries that were created by TARGET_EXPRs will be
3230 destroyed and their space freed for reuse. */
3232 void
3233 expand_start_target_temps ()
3235 /* This is so that even if the result is preserved, the space
3236 allocated will be freed, as we know that it is no longer in use. */
3237 push_temp_slots ();
3239 /* Start a new binding layer that will keep track of all cleanup
3240 actions to be performed. */
3241 expand_start_bindings (2);
3243 target_temp_slot_level = temp_slot_level;
3246 void
3247 expand_end_target_temps ()
3249 expand_end_bindings (NULL_TREE, 0, 0);
3251 /* This is so that even if the result is preserved, the space
3252 allocated will be freed, as we know that it is no longer in use. */
3253 pop_temp_slots ();
3256 /* Given a pointer to a BLOCK node return non-zero if (and only if) the node
3257 in question represents the outermost pair of curly braces (i.e. the "body
3258 block") of a function or method.
3260 For any BLOCK node representing a "body block" of a function or method, the
3261 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3262 represents the outermost (function) scope for the function or method (i.e.
3263 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
3264 *that* node in turn will point to the relevant FUNCTION_DECL node. */
3267 is_body_block (stmt)
3268 register tree stmt;
3270 if (TREE_CODE (stmt) == BLOCK)
3272 tree parent = BLOCK_SUPERCONTEXT (stmt);
3274 if (parent && TREE_CODE (parent) == BLOCK)
3276 tree grandparent = BLOCK_SUPERCONTEXT (parent);
3278 if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
3279 return 1;
3283 return 0;
3286 /* Mark top block of block_stack as an implicit binding for an
3287 exception region. This is used to prevent infinite recursion when
3288 ending a binding with expand_end_bindings. It is only ever called
3289 by expand_eh_region_start, as that it the only way to create a
3290 block stack for a exception region. */
3292 void
3293 mark_block_as_eh_region ()
3295 block_stack->data.block.exception_region = 1;
3296 if (block_stack->next
3297 && block_stack->next->data.block.conditional_code)
3299 block_stack->data.block.conditional_code
3300 = block_stack->next->data.block.conditional_code;
3301 block_stack->data.block.last_unconditional_cleanup
3302 = block_stack->next->data.block.last_unconditional_cleanup;
3303 block_stack->data.block.cleanup_ptr
3304 = block_stack->next->data.block.cleanup_ptr;
3308 /* True if we are currently emitting insns in an area of output code
3309 that is controlled by a conditional expression. This is used by
3310 the cleanup handling code to generate conditional cleanup actions. */
3313 conditional_context ()
3315 return block_stack && block_stack->data.block.conditional_code;
3318 /* Mark top block of block_stack as not for an implicit binding for an
3319 exception region. This is only ever done by expand_eh_region_end
3320 to let expand_end_bindings know that it is being called explicitly
3321 to end the binding layer for just the binding layer associated with
3322 the exception region, otherwise expand_end_bindings would try and
3323 end all implicit binding layers for exceptions regions, and then
3324 one normal binding layer. */
3326 void
3327 mark_block_as_not_eh_region ()
3329 block_stack->data.block.exception_region = 0;
3332 /* True if the top block of block_stack was marked as for an exception
3333 region by mark_block_as_eh_region. */
3336 is_eh_region ()
3338 return cfun && block_stack && block_stack->data.block.exception_region;
3341 /* Emit a handler label for a nonlocal goto handler.
3342 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3344 static rtx
3345 expand_nl_handler_label (slot, before_insn)
3346 rtx slot, before_insn;
3348 rtx insns;
3349 rtx handler_label = gen_label_rtx ();
3351 /* Don't let jump_optimize delete the handler. */
3352 LABEL_PRESERVE_P (handler_label) = 1;
3354 start_sequence ();
3355 emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3356 insns = get_insns ();
3357 end_sequence ();
3358 emit_insns_before (insns, before_insn);
3360 emit_label (handler_label);
3362 return handler_label;
3365 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3366 handler. */
3367 static void
3368 expand_nl_goto_receiver ()
3370 #ifdef HAVE_nonlocal_goto
3371 if (! HAVE_nonlocal_goto)
3372 #endif
3373 /* First adjust our frame pointer to its actual value. It was
3374 previously set to the start of the virtual area corresponding to
3375 the stacked variables when we branched here and now needs to be
3376 adjusted to the actual hardware fp value.
3378 Assignments are to virtual registers are converted by
3379 instantiate_virtual_regs into the corresponding assignment
3380 to the underlying register (fp in this case) that makes
3381 the original assignment true.
3382 So the following insn will actually be
3383 decrementing fp by STARTING_FRAME_OFFSET. */
3384 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3386 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3387 if (fixed_regs[ARG_POINTER_REGNUM])
3389 #ifdef ELIMINABLE_REGS
3390 /* If the argument pointer can be eliminated in favor of the
3391 frame pointer, we don't need to restore it. We assume here
3392 that if such an elimination is present, it can always be used.
3393 This is the case on all known machines; if we don't make this
3394 assumption, we do unnecessary saving on many machines. */
3395 static struct elims {int from, to;} elim_regs[] = ELIMINABLE_REGS;
3396 size_t i;
3398 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
3399 if (elim_regs[i].from == ARG_POINTER_REGNUM
3400 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3401 break;
3403 if (i == ARRAY_SIZE (elim_regs))
3404 #endif
3406 /* Now restore our arg pointer from the address at which it
3407 was saved in our stack frame.
3408 If there hasn't be space allocated for it yet, make
3409 some now. */
3410 if (arg_pointer_save_area == 0)
3411 arg_pointer_save_area
3412 = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
3413 emit_move_insn (virtual_incoming_args_rtx,
3414 /* We need a pseudo here, or else
3415 instantiate_virtual_regs_1 complains. */
3416 copy_to_reg (arg_pointer_save_area));
3419 #endif
3421 #ifdef HAVE_nonlocal_goto_receiver
3422 if (HAVE_nonlocal_goto_receiver)
3423 emit_insn (gen_nonlocal_goto_receiver ());
3424 #endif
3427 /* Make handlers for nonlocal gotos taking place in the function calls in
3428 block THISBLOCK. */
3430 static void
3431 expand_nl_goto_receivers (thisblock)
3432 struct nesting *thisblock;
3434 tree link;
3435 rtx afterward = gen_label_rtx ();
3436 rtx insns, slot;
3437 rtx label_list;
3438 int any_invalid;
3440 /* Record the handler address in the stack slot for that purpose,
3441 during this block, saving and restoring the outer value. */
3442 if (thisblock->next != 0)
3443 for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3445 rtx save_receiver = gen_reg_rtx (Pmode);
3446 emit_move_insn (XEXP (slot, 0), save_receiver);
3448 start_sequence ();
3449 emit_move_insn (save_receiver, XEXP (slot, 0));
3450 insns = get_insns ();
3451 end_sequence ();
3452 emit_insns_before (insns, thisblock->data.block.first_insn);
3455 /* Jump around the handlers; they run only when specially invoked. */
3456 emit_jump (afterward);
3458 /* Make a separate handler for each label. */
3459 link = nonlocal_labels;
3460 slot = nonlocal_goto_handler_slots;
3461 label_list = NULL_RTX;
3462 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3463 /* Skip any labels we shouldn't be able to jump to from here,
3464 we generate one special handler for all of them below which just calls
3465 abort. */
3466 if (! DECL_TOO_LATE (TREE_VALUE (link)))
3468 rtx lab;
3469 lab = expand_nl_handler_label (XEXP (slot, 0),
3470 thisblock->data.block.first_insn);
3471 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3473 expand_nl_goto_receiver ();
3475 /* Jump to the "real" nonlocal label. */
3476 expand_goto (TREE_VALUE (link));
3479 /* A second pass over all nonlocal labels; this time we handle those
3480 we should not be able to jump to at this point. */
3481 link = nonlocal_labels;
3482 slot = nonlocal_goto_handler_slots;
3483 any_invalid = 0;
3484 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3485 if (DECL_TOO_LATE (TREE_VALUE (link)))
3487 rtx lab;
3488 lab = expand_nl_handler_label (XEXP (slot, 0),
3489 thisblock->data.block.first_insn);
3490 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3491 any_invalid = 1;
3494 if (any_invalid)
3496 expand_nl_goto_receiver ();
3497 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "abort"), 0,
3498 VOIDmode, 0);
3499 emit_barrier ();
3502 nonlocal_goto_handler_labels = label_list;
3503 emit_label (afterward);
3506 /* Warn about any unused VARS (which may contain nodes other than
3507 VAR_DECLs, but such nodes are ignored). The nodes are connected
3508 via the TREE_CHAIN field. */
3510 void
3511 warn_about_unused_variables (vars)
3512 tree vars;
3514 tree decl;
3516 if (warn_unused_variable)
3517 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3518 if (TREE_CODE (decl) == VAR_DECL
3519 && ! TREE_USED (decl)
3520 && ! DECL_IN_SYSTEM_HEADER (decl)
3521 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3522 warning_with_decl (decl, "unused variable `%s'");
3525 /* Generate RTL code to terminate a binding contour.
3527 VARS is the chain of VAR_DECL nodes for the variables bound in this
3528 contour. There may actually be other nodes in this chain, but any
3529 nodes other than VAR_DECLS are ignored.
3531 MARK_ENDS is nonzero if we should put a note at the beginning
3532 and end of this binding contour.
3534 DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
3535 (That is true automatically if the contour has a saved stack level.) */
3537 void
3538 expand_end_bindings (vars, mark_ends, dont_jump_in)
3539 tree vars;
3540 int mark_ends;
3541 int dont_jump_in;
3543 register struct nesting *thisblock;
3545 while (block_stack->data.block.exception_region)
3547 /* Because we don't need or want a new temporary level and
3548 because we didn't create one in expand_eh_region_start,
3549 create a fake one now to avoid removing one in
3550 expand_end_bindings. */
3551 push_temp_slots ();
3553 block_stack->data.block.exception_region = 0;
3555 expand_end_bindings (NULL_TREE, 0, 0);
3558 /* Since expand_eh_region_start does an expand_start_bindings, we
3559 have to first end all the bindings that were created by
3560 expand_eh_region_start. */
3562 thisblock = block_stack;
3564 /* If any of the variables in this scope were not used, warn the
3565 user. */
3566 warn_about_unused_variables (vars);
3568 if (thisblock->exit_label)
3570 do_pending_stack_adjust ();
3571 emit_label (thisblock->exit_label);
3574 /* If necessary, make handlers for nonlocal gotos taking
3575 place in the function calls in this block. */
3576 if (function_call_count != thisblock->data.block.n_function_calls
3577 && nonlocal_labels
3578 /* Make handler for outermost block
3579 if there were any nonlocal gotos to this function. */
3580 && (thisblock->next == 0 ? current_function_has_nonlocal_label
3581 /* Make handler for inner block if it has something
3582 special to do when you jump out of it. */
3583 : (thisblock->data.block.cleanups != 0
3584 || thisblock->data.block.stack_level != 0)))
3585 expand_nl_goto_receivers (thisblock);
3587 /* Don't allow jumping into a block that has a stack level.
3588 Cleanups are allowed, though. */
3589 if (dont_jump_in
3590 || thisblock->data.block.stack_level != 0)
3592 struct label_chain *chain;
3594 /* Any labels in this block are no longer valid to go to.
3595 Mark them to cause an error message. */
3596 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3598 DECL_TOO_LATE (chain->label) = 1;
3599 /* If any goto without a fixup came to this label,
3600 that must be an error, because gotos without fixups
3601 come from outside all saved stack-levels. */
3602 if (TREE_ADDRESSABLE (chain->label))
3603 error_with_decl (chain->label,
3604 "label `%s' used before containing binding contour");
3608 /* Restore stack level in effect before the block
3609 (only if variable-size objects allocated). */
3610 /* Perform any cleanups associated with the block. */
3612 if (thisblock->data.block.stack_level != 0
3613 || thisblock->data.block.cleanups != 0)
3615 int reachable;
3616 rtx insn;
3618 /* Don't let cleanups affect ({...}) constructs. */
3619 int old_expr_stmts_for_value = expr_stmts_for_value;
3620 rtx old_last_expr_value = last_expr_value;
3621 tree old_last_expr_type = last_expr_type;
3622 expr_stmts_for_value = 0;
3624 /* Only clean up here if this point can actually be reached. */
3625 insn = get_last_insn ();
3626 if (GET_CODE (insn) == NOTE)
3627 insn = prev_nonnote_insn (insn);
3628 reachable = (! insn || GET_CODE (insn) != BARRIER);
3630 /* Do the cleanups. */
3631 expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);
3632 if (reachable)
3633 do_pending_stack_adjust ();
3635 expr_stmts_for_value = old_expr_stmts_for_value;
3636 last_expr_value = old_last_expr_value;
3637 last_expr_type = old_last_expr_type;
3639 /* Restore the stack level. */
3641 if (reachable && thisblock->data.block.stack_level != 0)
3643 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3644 thisblock->data.block.stack_level, NULL_RTX);
3645 if (nonlocal_goto_handler_slots != 0)
3646 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3647 NULL_RTX);
3650 /* Any gotos out of this block must also do these things.
3651 Also report any gotos with fixups that came to labels in this
3652 level. */
3653 fixup_gotos (thisblock,
3654 thisblock->data.block.stack_level,
3655 thisblock->data.block.cleanups,
3656 thisblock->data.block.first_insn,
3657 dont_jump_in);
3660 /* Mark the beginning and end of the scope if requested.
3661 We do this now, after running cleanups on the variables
3662 just going out of scope, so they are in scope for their cleanups. */
3664 if (mark_ends)
3666 rtx note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
3667 NOTE_BLOCK (note) = NOTE_BLOCK (thisblock->data.block.first_insn);
3669 else
3670 /* Get rid of the beginning-mark if we don't make an end-mark. */
3671 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3673 /* Restore the temporary level of TARGET_EXPRs. */
3674 target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3676 /* Restore block_stack level for containing block. */
3678 stack_block_stack = thisblock->data.block.innermost_stack_block;
3679 POPSTACK (block_stack);
3681 /* Pop the stack slot nesting and free any slots at this level. */
3682 pop_temp_slots ();
3685 /* Generate code to save the stack pointer at the start of the current block
3686 and set up to restore it on exit. */
3688 void
3689 save_stack_pointer ()
3691 struct nesting *thisblock = block_stack;
3693 if (thisblock->data.block.stack_level == 0)
3695 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3696 &thisblock->data.block.stack_level,
3697 thisblock->data.block.first_insn);
3698 stack_block_stack = thisblock;
3702 /* Generate RTL for the automatic variable declaration DECL.
3703 (Other kinds of declarations are simply ignored if seen here.) */
3705 void
3706 expand_decl (decl)
3707 register tree decl;
3709 struct nesting *thisblock;
3710 tree type;
3712 type = TREE_TYPE (decl);
3714 /* Only automatic variables need any expansion done.
3715 Static and external variables, and external functions,
3716 will be handled by `assemble_variable' (called from finish_decl).
3717 TYPE_DECL and CONST_DECL require nothing.
3718 PARM_DECLs are handled in `assign_parms'. */
3720 if (TREE_CODE (decl) != VAR_DECL)
3721 return;
3722 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3723 return;
3725 thisblock = block_stack;
3727 /* Create the RTL representation for the variable. */
3729 if (type == error_mark_node)
3730 DECL_RTL (decl) = gen_rtx_MEM (BLKmode, const0_rtx);
3731 else if (DECL_SIZE (decl) == 0)
3732 /* Variable with incomplete type. */
3734 if (DECL_INITIAL (decl) == 0)
3735 /* Error message was already done; now avoid a crash. */
3736 DECL_RTL (decl) = assign_stack_temp (DECL_MODE (decl), 0, 1);
3737 else
3738 /* An initializer is going to decide the size of this array.
3739 Until we know the size, represent its address with a reg. */
3740 DECL_RTL (decl) = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
3742 set_mem_attributes (DECL_RTL (decl), decl, 1);
3744 else if (DECL_MODE (decl) != BLKmode
3745 /* If -ffloat-store, don't put explicit float vars
3746 into regs. */
3747 && !(flag_float_store
3748 && TREE_CODE (type) == REAL_TYPE)
3749 && ! TREE_THIS_VOLATILE (decl)
3750 && ! TREE_ADDRESSABLE (decl)
3751 && (DECL_REGISTER (decl) || optimize)
3752 /* if -fcheck-memory-usage, check all variables. */
3753 && ! current_function_check_memory_usage)
3755 /* Automatic variable that can go in a register. */
3756 int unsignedp = TREE_UNSIGNED (type);
3757 enum machine_mode reg_mode
3758 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3760 DECL_RTL (decl) = gen_reg_rtx (reg_mode);
3761 mark_user_reg (DECL_RTL (decl));
3763 if (POINTER_TYPE_P (type))
3764 mark_reg_pointer (DECL_RTL (decl),
3765 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
3767 maybe_set_unchanging (DECL_RTL (decl), decl);
3770 else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
3771 && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3772 && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
3773 STACK_CHECK_MAX_VAR_SIZE)))
3775 /* Variable of fixed size that goes on the stack. */
3776 rtx oldaddr = 0;
3777 rtx addr;
3779 /* If we previously made RTL for this decl, it must be an array
3780 whose size was determined by the initializer.
3781 The old address was a register; set that register now
3782 to the proper address. */
3783 if (DECL_RTL (decl) != 0)
3785 if (GET_CODE (DECL_RTL (decl)) != MEM
3786 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3787 abort ();
3788 oldaddr = XEXP (DECL_RTL (decl), 0);
3791 DECL_RTL (decl) = assign_temp (TREE_TYPE (decl), 1, 1, 1);
3793 /* Set alignment we actually gave this decl. */
3794 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3795 : GET_MODE_BITSIZE (DECL_MODE (decl)));
3796 DECL_USER_ALIGN (decl) = 0;
3798 if (oldaddr)
3800 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3801 if (addr != oldaddr)
3802 emit_move_insn (oldaddr, addr);
3805 else
3806 /* Dynamic-size object: must push space on the stack. */
3808 rtx address, size;
3810 /* Record the stack pointer on entry to block, if have
3811 not already done so. */
3812 do_pending_stack_adjust ();
3813 save_stack_pointer ();
3815 /* In function-at-a-time mode, variable_size doesn't expand this,
3816 so do it now. */
3817 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
3818 expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
3819 const0_rtx, VOIDmode, 0);
3821 /* Compute the variable's size, in bytes. */
3822 size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
3823 free_temp_slots ();
3825 /* Allocate space on the stack for the variable. Note that
3826 DECL_ALIGN says how the variable is to be aligned and we
3827 cannot use it to conclude anything about the alignment of
3828 the size. */
3829 address = allocate_dynamic_stack_space (size, NULL_RTX,
3830 TYPE_ALIGN (TREE_TYPE (decl)));
3832 /* Reference the variable indirect through that rtx. */
3833 DECL_RTL (decl) = gen_rtx_MEM (DECL_MODE (decl), address);
3835 set_mem_attributes (DECL_RTL (decl), decl, 1);
3837 /* Indicate the alignment we actually gave this variable. */
3838 #ifdef STACK_BOUNDARY
3839 DECL_ALIGN (decl) = STACK_BOUNDARY;
3840 #else
3841 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
3842 #endif
3843 DECL_USER_ALIGN (decl) = 0;
3847 /* Emit code to perform the initialization of a declaration DECL. */
3849 void
3850 expand_decl_init (decl)
3851 tree decl;
3853 int was_used = TREE_USED (decl);
3855 /* If this is a CONST_DECL, we don't have to generate any code, but
3856 if DECL_INITIAL is a constant, call expand_expr to force TREE_CST_RTL
3857 to be set while in the obstack containing the constant. If we don't
3858 do this, we can lose if we have functions nested three deep and the middle
3859 function makes a CONST_DECL whose DECL_INITIAL is a STRING_CST while
3860 the innermost function is the first to expand that STRING_CST. */
3861 if (TREE_CODE (decl) == CONST_DECL)
3863 if (DECL_INITIAL (decl) && TREE_CONSTANT (DECL_INITIAL (decl)))
3864 expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
3865 EXPAND_INITIALIZER);
3866 return;
3869 if (TREE_STATIC (decl))
3870 return;
3872 /* Compute and store the initial value now. */
3874 if (DECL_INITIAL (decl) == error_mark_node)
3876 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3878 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3879 || code == POINTER_TYPE || code == REFERENCE_TYPE)
3880 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
3881 0, 0);
3882 emit_queue ();
3884 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
3886 emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3887 expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
3888 emit_queue ();
3891 /* Don't let the initialization count as "using" the variable. */
3892 TREE_USED (decl) = was_used;
3894 /* Free any temporaries we made while initializing the decl. */
3895 preserve_temp_slots (NULL_RTX);
3896 free_temp_slots ();
3899 /* CLEANUP is an expression to be executed at exit from this binding contour;
3900 for example, in C++, it might call the destructor for this variable.
3902 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
3903 CLEANUP multiple times, and have the correct semantics. This
3904 happens in exception handling, for gotos, returns, breaks that
3905 leave the current scope.
3907 If CLEANUP is nonzero and DECL is zero, we record a cleanup
3908 that is not associated with any particular variable. */
3911 expand_decl_cleanup (decl, cleanup)
3912 tree decl, cleanup;
3914 struct nesting *thisblock;
3916 /* Error if we are not in any block. */
3917 if (cfun == 0 || block_stack == 0)
3918 return 0;
3920 thisblock = block_stack;
3922 /* Record the cleanup if there is one. */
3924 if (cleanup != 0)
3926 tree t;
3927 rtx seq;
3928 tree *cleanups = &thisblock->data.block.cleanups;
3929 int cond_context = conditional_context ();
3931 if (cond_context)
3933 rtx flag = gen_reg_rtx (word_mode);
3934 rtx set_flag_0;
3935 tree cond;
3937 start_sequence ();
3938 emit_move_insn (flag, const0_rtx);
3939 set_flag_0 = get_insns ();
3940 end_sequence ();
3942 thisblock->data.block.last_unconditional_cleanup
3943 = emit_insns_after (set_flag_0,
3944 thisblock->data.block.last_unconditional_cleanup);
3946 emit_move_insn (flag, const1_rtx);
3948 /* All cleanups must be on the function_obstack. */
3949 push_obstacks_nochange ();
3950 resume_temporary_allocation ();
3952 cond = build_decl (VAR_DECL, NULL_TREE, type_for_mode (word_mode, 1));
3953 DECL_RTL (cond) = flag;
3955 /* Conditionalize the cleanup. */
3956 cleanup = build (COND_EXPR, void_type_node,
3957 truthvalue_conversion (cond),
3958 cleanup, integer_zero_node);
3959 cleanup = fold (cleanup);
3961 pop_obstacks ();
3963 cleanups = thisblock->data.block.cleanup_ptr;
3966 /* All cleanups must be on the function_obstack. */
3967 push_obstacks_nochange ();
3968 resume_temporary_allocation ();
3969 cleanup = unsave_expr (cleanup);
3970 pop_obstacks ();
3972 t = *cleanups = temp_tree_cons (decl, cleanup, *cleanups);
3974 if (! cond_context)
3975 /* If this block has a cleanup, it belongs in stack_block_stack. */
3976 stack_block_stack = thisblock;
3978 if (cond_context)
3980 start_sequence ();
3983 /* If this was optimized so that there is no exception region for the
3984 cleanup, then mark the TREE_LIST node, so that we can later tell
3985 if we need to call expand_eh_region_end. */
3986 if (! using_eh_for_cleanups_p
3987 || expand_eh_region_start_tree (decl, cleanup))
3988 TREE_ADDRESSABLE (t) = 1;
3989 /* If that started a new EH region, we're in a new block. */
3990 thisblock = block_stack;
3992 if (cond_context)
3994 seq = get_insns ();
3995 end_sequence ();
3996 if (seq)
3997 thisblock->data.block.last_unconditional_cleanup
3998 = emit_insns_after (seq,
3999 thisblock->data.block.last_unconditional_cleanup);
4001 else
4003 thisblock->data.block.last_unconditional_cleanup
4004 = get_last_insn ();
4005 /* When we insert instructions after the last unconditional cleanup,
4006 we don't adjust last_insn. That means that a later add_insn will
4007 clobber the instructions we've just added. The easiest way to
4008 fix this is to just insert another instruction here, so that the
4009 instructions inserted after the last unconditional cleanup are
4010 never the last instruction. */
4011 emit_note (NULL_PTR, NOTE_INSN_DELETED);
4012 thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
4015 return 1;
4018 /* Like expand_decl_cleanup, but suppress generating an exception handler
4019 to perform the cleanup. */
4021 #if 0
4023 expand_decl_cleanup_no_eh (decl, cleanup)
4024 tree decl, cleanup;
4026 int save_eh = using_eh_for_cleanups_p;
4027 int result;
4029 using_eh_for_cleanups_p = 0;
4030 result = expand_decl_cleanup (decl, cleanup);
4031 using_eh_for_cleanups_p = save_eh;
4033 return result;
4035 #endif
4037 /* Arrange for the top element of the dynamic cleanup chain to be
4038 popped if we exit the current binding contour. DECL is the
4039 associated declaration, if any, otherwise NULL_TREE. If the
4040 current contour is left via an exception, then __sjthrow will pop
4041 the top element off the dynamic cleanup chain. The code that
4042 avoids doing the action we push into the cleanup chain in the
4043 exceptional case is contained in expand_cleanups.
4045 This routine is only used by expand_eh_region_start, and that is
4046 the only way in which an exception region should be started. This
4047 routine is only used when using the setjmp/longjmp codegen method
4048 for exception handling. */
4051 expand_dcc_cleanup (decl)
4052 tree decl;
4054 struct nesting *thisblock;
4055 tree cleanup;
4057 /* Error if we are not in any block. */
4058 if (cfun == 0 || block_stack == 0)
4059 return 0;
4060 thisblock = block_stack;
4062 /* Record the cleanup for the dynamic handler chain. */
4064 /* All cleanups must be on the function_obstack. */
4065 push_obstacks_nochange ();
4066 resume_temporary_allocation ();
4067 cleanup = make_node (POPDCC_EXPR);
4068 pop_obstacks ();
4070 /* Add the cleanup in a manner similar to expand_decl_cleanup. */
4071 thisblock->data.block.cleanups
4072 = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4074 /* If this block has a cleanup, it belongs in stack_block_stack. */
4075 stack_block_stack = thisblock;
4076 return 1;
4079 /* Arrange for the top element of the dynamic handler chain to be
4080 popped if we exit the current binding contour. DECL is the
4081 associated declaration, if any, otherwise NULL_TREE. If the current
4082 contour is left via an exception, then __sjthrow will pop the top
4083 element off the dynamic handler chain. The code that avoids doing
4084 the action we push into the handler chain in the exceptional case
4085 is contained in expand_cleanups.
4087 This routine is only used by expand_eh_region_start, and that is
4088 the only way in which an exception region should be started. This
4089 routine is only used when using the setjmp/longjmp codegen method
4090 for exception handling. */
4093 expand_dhc_cleanup (decl)
4094 tree decl;
4096 struct nesting *thisblock;
4097 tree cleanup;
4099 /* Error if we are not in any block. */
4100 if (cfun == 0 || block_stack == 0)
4101 return 0;
4102 thisblock = block_stack;
4104 /* Record the cleanup for the dynamic handler chain. */
4106 /* All cleanups must be on the function_obstack. */
4107 push_obstacks_nochange ();
4108 resume_temporary_allocation ();
4109 cleanup = make_node (POPDHC_EXPR);
4110 pop_obstacks ();
4112 /* Add the cleanup in a manner similar to expand_decl_cleanup. */
4113 thisblock->data.block.cleanups
4114 = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4116 /* If this block has a cleanup, it belongs in stack_block_stack. */
4117 stack_block_stack = thisblock;
4118 return 1;
4121 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4122 DECL_ELTS is the list of elements that belong to DECL's type.
4123 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4125 void
4126 expand_anon_union_decl (decl, cleanup, decl_elts)
4127 tree decl, cleanup, decl_elts;
4129 struct nesting *thisblock = cfun == 0 ? 0 : block_stack;
4130 rtx x;
4131 tree t;
4133 /* If any of the elements are addressable, so is the entire union. */
4134 for (t = decl_elts; t; t = TREE_CHAIN (t))
4135 if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4137 TREE_ADDRESSABLE (decl) = 1;
4138 break;
4141 expand_decl (decl);
4142 expand_decl_cleanup (decl, cleanup);
4143 x = DECL_RTL (decl);
4145 /* Go through the elements, assigning RTL to each. */
4146 for (t = decl_elts; t; t = TREE_CHAIN (t))
4148 tree decl_elt = TREE_VALUE (t);
4149 tree cleanup_elt = TREE_PURPOSE (t);
4150 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4152 /* Propagate the union's alignment to the elements. */
4153 DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4154 DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
4156 /* If the element has BLKmode and the union doesn't, the union is
4157 aligned such that the element doesn't need to have BLKmode, so
4158 change the element's mode to the appropriate one for its size. */
4159 if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4160 DECL_MODE (decl_elt) = mode
4161 = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
4163 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4164 instead create a new MEM rtx with the proper mode. */
4165 if (GET_CODE (x) == MEM)
4167 if (mode == GET_MODE (x))
4168 DECL_RTL (decl_elt) = x;
4169 else
4171 DECL_RTL (decl_elt) = gen_rtx_MEM (mode, copy_rtx (XEXP (x, 0)));
4172 MEM_COPY_ATTRIBUTES (DECL_RTL (decl_elt), x);
4175 else if (GET_CODE (x) == REG)
4177 if (mode == GET_MODE (x))
4178 DECL_RTL (decl_elt) = x;
4179 else
4180 DECL_RTL (decl_elt) = gen_rtx_SUBREG (mode, x, 0);
4182 else
4183 abort ();
4185 /* Record the cleanup if there is one. */
4187 if (cleanup != 0)
4188 thisblock->data.block.cleanups
4189 = temp_tree_cons (decl_elt, cleanup_elt,
4190 thisblock->data.block.cleanups);
4194 /* Expand a list of cleanups LIST.
4195 Elements may be expressions or may be nested lists.
4197 If DONT_DO is nonnull, then any list-element
4198 whose TREE_PURPOSE matches DONT_DO is omitted.
4199 This is sometimes used to avoid a cleanup associated with
4200 a value that is being returned out of the scope.
4202 If IN_FIXUP is non-zero, we are generating this cleanup for a fixup
4203 goto and handle protection regions specially in that case.
4205 If REACHABLE, we emit code, otherwise just inform the exception handling
4206 code about this finalization. */
4208 static void
4209 expand_cleanups (list, dont_do, in_fixup, reachable)
4210 tree list;
4211 tree dont_do;
4212 int in_fixup;
4213 int reachable;
4215 tree tail;
4216 for (tail = list; tail; tail = TREE_CHAIN (tail))
4217 if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4219 if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4220 expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4221 else
4223 if (! in_fixup)
4225 tree cleanup = TREE_VALUE (tail);
4227 /* See expand_d{h,c}c_cleanup for why we avoid this. */
4228 if (TREE_CODE (cleanup) != POPDHC_EXPR
4229 && TREE_CODE (cleanup) != POPDCC_EXPR
4230 /* See expand_eh_region_start_tree for this case. */
4231 && ! TREE_ADDRESSABLE (tail))
4233 cleanup = protect_with_terminate (cleanup);
4234 expand_eh_region_end (cleanup);
4238 if (reachable)
4240 /* Cleanups may be run multiple times. For example,
4241 when exiting a binding contour, we expand the
4242 cleanups associated with that contour. When a goto
4243 within that binding contour has a target outside that
4244 contour, it will expand all cleanups from its scope to
4245 the target. Though the cleanups are expanded multiple
4246 times, the control paths are non-overlapping so the
4247 cleanups will not be executed twice. */
4249 /* We may need to protect fixups with rethrow regions. */
4250 int protect = (in_fixup && ! TREE_ADDRESSABLE (tail));
4252 if (protect)
4253 expand_fixup_region_start ();
4255 /* The cleanup might contain try-blocks, so we have to
4256 preserve our current queue. */
4257 push_ehqueue ();
4258 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4259 pop_ehqueue ();
4260 if (protect)
4261 expand_fixup_region_end (TREE_VALUE (tail));
4262 free_temp_slots ();
4268 /* Mark when the context we are emitting RTL for as a conditional
4269 context, so that any cleanup actions we register with
4270 expand_decl_init will be properly conditionalized when those
4271 cleanup actions are later performed. Must be called before any
4272 expression (tree) is expanded that is within a conditional context. */
4274 void
4275 start_cleanup_deferral ()
4277 /* block_stack can be NULL if we are inside the parameter list. It is
4278 OK to do nothing, because cleanups aren't possible here. */
4279 if (block_stack)
4280 ++block_stack->data.block.conditional_code;
4283 /* Mark the end of a conditional region of code. Because cleanup
4284 deferrals may be nested, we may still be in a conditional region
4285 after we end the currently deferred cleanups, only after we end all
4286 deferred cleanups, are we back in unconditional code. */
4288 void
4289 end_cleanup_deferral ()
4291 /* block_stack can be NULL if we are inside the parameter list. It is
4292 OK to do nothing, because cleanups aren't possible here. */
4293 if (block_stack)
4294 --block_stack->data.block.conditional_code;
4297 /* Move all cleanups from the current block_stack
4298 to the containing block_stack, where they are assumed to
4299 have been created. If anything can cause a temporary to
4300 be created, but not expanded for more than one level of
4301 block_stacks, then this code will have to change. */
4303 void
4304 move_cleanups_up ()
4306 struct nesting *block = block_stack;
4307 struct nesting *outer = block->next;
4309 outer->data.block.cleanups
4310 = chainon (block->data.block.cleanups,
4311 outer->data.block.cleanups);
4312 block->data.block.cleanups = 0;
4315 tree
4316 last_cleanup_this_contour ()
4318 if (block_stack == 0)
4319 return 0;
4321 return block_stack->data.block.cleanups;
4324 /* Return 1 if there are any pending cleanups at this point.
4325 If THIS_CONTOUR is nonzero, check the current contour as well.
4326 Otherwise, look only at the contours that enclose this one. */
4329 any_pending_cleanups (this_contour)
4330 int this_contour;
4332 struct nesting *block;
4334 if (cfun == NULL || cfun->stmt == NULL || block_stack == 0)
4335 return 0;
4337 if (this_contour && block_stack->data.block.cleanups != NULL)
4338 return 1;
4339 if (block_stack->data.block.cleanups == 0
4340 && block_stack->data.block.outer_cleanups == 0)
4341 return 0;
4343 for (block = block_stack->next; block; block = block->next)
4344 if (block->data.block.cleanups != 0)
4345 return 1;
4347 return 0;
4350 /* Enter a case (Pascal) or switch (C) statement.
4351 Push a block onto case_stack and nesting_stack
4352 to accumulate the case-labels that are seen
4353 and to record the labels generated for the statement.
4355 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4356 Otherwise, this construct is transparent for `exit_something'.
4358 EXPR is the index-expression to be dispatched on.
4359 TYPE is its nominal type. We could simply convert EXPR to this type,
4360 but instead we take short cuts. */
4362 void
4363 expand_start_case (exit_flag, expr, type, printname)
4364 int exit_flag;
4365 tree expr;
4366 tree type;
4367 const char *printname;
4369 register struct nesting *thiscase = ALLOC_NESTING ();
4371 /* Make an entry on case_stack for the case we are entering. */
4373 thiscase->next = case_stack;
4374 thiscase->all = nesting_stack;
4375 thiscase->depth = ++nesting_depth;
4376 thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4377 thiscase->data.case_stmt.case_list = 0;
4378 thiscase->data.case_stmt.index_expr = expr;
4379 thiscase->data.case_stmt.nominal_type = type;
4380 thiscase->data.case_stmt.default_label = 0;
4381 thiscase->data.case_stmt.num_ranges = 0;
4382 thiscase->data.case_stmt.printname = printname;
4383 thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4384 case_stack = thiscase;
4385 nesting_stack = thiscase;
4387 do_pending_stack_adjust ();
4389 /* Make sure case_stmt.start points to something that won't
4390 need any transformation before expand_end_case. */
4391 if (GET_CODE (get_last_insn ()) != NOTE)
4392 emit_note (NULL_PTR, NOTE_INSN_DELETED);
4394 thiscase->data.case_stmt.start = get_last_insn ();
4396 start_cleanup_deferral ();
4400 /* Start a "dummy case statement" within which case labels are invalid
4401 and are not connected to any larger real case statement.
4402 This can be used if you don't want to let a case statement jump
4403 into the middle of certain kinds of constructs. */
4405 void
4406 expand_start_case_dummy ()
4408 register struct nesting *thiscase = ALLOC_NESTING ();
4410 /* Make an entry on case_stack for the dummy. */
4412 thiscase->next = case_stack;
4413 thiscase->all = nesting_stack;
4414 thiscase->depth = ++nesting_depth;
4415 thiscase->exit_label = 0;
4416 thiscase->data.case_stmt.case_list = 0;
4417 thiscase->data.case_stmt.start = 0;
4418 thiscase->data.case_stmt.nominal_type = 0;
4419 thiscase->data.case_stmt.default_label = 0;
4420 thiscase->data.case_stmt.num_ranges = 0;
4421 case_stack = thiscase;
4422 nesting_stack = thiscase;
4423 start_cleanup_deferral ();
4426 /* End a dummy case statement. */
4428 void
4429 expand_end_case_dummy ()
4431 end_cleanup_deferral ();
4432 POPSTACK (case_stack);
4435 /* Return the data type of the index-expression
4436 of the innermost case statement, or null if none. */
4438 tree
4439 case_index_expr_type ()
4441 if (case_stack)
4442 return TREE_TYPE (case_stack->data.case_stmt.index_expr);
4443 return 0;
4446 static void
4447 check_seenlabel ()
4449 /* If this is the first label, warn if any insns have been emitted. */
4450 if (case_stack->data.case_stmt.line_number_status >= 0)
4452 rtx insn;
4454 restore_line_number_status
4455 (case_stack->data.case_stmt.line_number_status);
4456 case_stack->data.case_stmt.line_number_status = -1;
4458 for (insn = case_stack->data.case_stmt.start;
4459 insn;
4460 insn = NEXT_INSN (insn))
4462 if (GET_CODE (insn) == CODE_LABEL)
4463 break;
4464 if (GET_CODE (insn) != NOTE
4465 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4468 insn = PREV_INSN (insn);
4469 while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4471 /* If insn is zero, then there must have been a syntax error. */
4472 if (insn)
4473 warning_with_file_and_line (NOTE_SOURCE_FILE(insn),
4474 NOTE_LINE_NUMBER(insn),
4475 "unreachable code at beginning of %s",
4476 case_stack->data.case_stmt.printname);
4477 break;
4483 /* Accumulate one case or default label inside a case or switch statement.
4484 VALUE is the value of the case (a null pointer, for a default label).
4485 The function CONVERTER, when applied to arguments T and V,
4486 converts the value V to the type T.
4488 If not currently inside a case or switch statement, return 1 and do
4489 nothing. The caller will print a language-specific error message.
4490 If VALUE is a duplicate or overlaps, return 2 and do nothing
4491 except store the (first) duplicate node in *DUPLICATE.
4492 If VALUE is out of range, return 3 and do nothing.
4493 If we are jumping into the scope of a cleanup or var-sized array, return 5.
4494 Return 0 on success.
4496 Extended to handle range statements. */
4499 pushcase (value, converter, label, duplicate)
4500 register tree value;
4501 tree (*converter) PARAMS ((tree, tree));
4502 register tree label;
4503 tree *duplicate;
4505 tree index_type;
4506 tree nominal_type;
4508 /* Fail if not inside a real case statement. */
4509 if (! (case_stack && case_stack->data.case_stmt.start))
4510 return 1;
4512 if (stack_block_stack
4513 && stack_block_stack->depth > case_stack->depth)
4514 return 5;
4516 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4517 nominal_type = case_stack->data.case_stmt.nominal_type;
4519 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4520 if (index_type == error_mark_node)
4521 return 0;
4523 /* Convert VALUE to the type in which the comparisons are nominally done. */
4524 if (value != 0)
4525 value = (*converter) (nominal_type, value);
4527 check_seenlabel ();
4529 /* Fail if this value is out of range for the actual type of the index
4530 (which may be narrower than NOMINAL_TYPE). */
4531 if (value != 0
4532 && (TREE_CONSTANT_OVERFLOW (value)
4533 || ! int_fits_type_p (value, index_type)))
4534 return 3;
4536 /* Fail if this is a duplicate or overlaps another entry. */
4537 if (value == 0)
4539 if (case_stack->data.case_stmt.default_label != 0)
4541 *duplicate = case_stack->data.case_stmt.default_label;
4542 return 2;
4544 case_stack->data.case_stmt.default_label = label;
4546 else
4547 return add_case_node (value, value, label, duplicate);
4549 expand_label (label);
4550 return 0;
4553 /* Like pushcase but this case applies to all values between VALUE1 and
4554 VALUE2 (inclusive). If VALUE1 is NULL, the range starts at the lowest
4555 value of the index type and ends at VALUE2. If VALUE2 is NULL, the range
4556 starts at VALUE1 and ends at the highest value of the index type.
4557 If both are NULL, this case applies to all values.
4559 The return value is the same as that of pushcase but there is one
4560 additional error code: 4 means the specified range was empty. */
4563 pushcase_range (value1, value2, converter, label, duplicate)
4564 register tree value1, value2;
4565 tree (*converter) PARAMS ((tree, tree));
4566 register tree label;
4567 tree *duplicate;
4569 tree index_type;
4570 tree nominal_type;
4572 /* Fail if not inside a real case statement. */
4573 if (! (case_stack && case_stack->data.case_stmt.start))
4574 return 1;
4576 if (stack_block_stack
4577 && stack_block_stack->depth > case_stack->depth)
4578 return 5;
4580 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4581 nominal_type = case_stack->data.case_stmt.nominal_type;
4583 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4584 if (index_type == error_mark_node)
4585 return 0;
4587 check_seenlabel ();
4589 /* Convert VALUEs to type in which the comparisons are nominally done
4590 and replace any unspecified value with the corresponding bound. */
4591 if (value1 == 0)
4592 value1 = TYPE_MIN_VALUE (index_type);
4593 if (value2 == 0)
4594 value2 = TYPE_MAX_VALUE (index_type);
4596 /* Fail if the range is empty. Do this before any conversion since
4597 we want to allow out-of-range empty ranges. */
4598 if (value2 != 0 && tree_int_cst_lt (value2, value1))
4599 return 4;
4601 /* If the max was unbounded, use the max of the nominal_type we are
4602 converting to. Do this after the < check above to suppress false
4603 positives. */
4604 if (value2 == 0)
4605 value2 = TYPE_MAX_VALUE (nominal_type);
4607 value1 = (*converter) (nominal_type, value1);
4608 value2 = (*converter) (nominal_type, value2);
4610 /* Fail if these values are out of range. */
4611 if (TREE_CONSTANT_OVERFLOW (value1)
4612 || ! int_fits_type_p (value1, index_type))
4613 return 3;
4615 if (TREE_CONSTANT_OVERFLOW (value2)
4616 || ! int_fits_type_p (value2, index_type))
4617 return 3;
4619 return add_case_node (value1, value2, label, duplicate);
4622 /* Do the actual insertion of a case label for pushcase and pushcase_range
4623 into case_stack->data.case_stmt.case_list. Use an AVL tree to avoid
4624 slowdown for large switch statements. */
4626 static int
4627 add_case_node (low, high, label, duplicate)
4628 tree low, high;
4629 tree label;
4630 tree *duplicate;
4632 struct case_node *p, **q, *r;
4634 q = &case_stack->data.case_stmt.case_list;
4635 p = *q;
4637 while ((r = *q))
4639 p = r;
4641 /* Keep going past elements distinctly greater than HIGH. */
4642 if (tree_int_cst_lt (high, p->low))
4643 q = &p->left;
4645 /* or distinctly less than LOW. */
4646 else if (tree_int_cst_lt (p->high, low))
4647 q = &p->right;
4649 else
4651 /* We have an overlap; this is an error. */
4652 *duplicate = p->code_label;
4653 return 2;
4657 /* Add this label to the chain, and succeed.
4658 Copy LOW, HIGH so they are on temporary rather than momentary
4659 obstack and will thus survive till the end of the case statement. */
4661 r = (struct case_node *) oballoc (sizeof (struct case_node));
4662 r->low = copy_node (low);
4664 /* If the bounds are equal, turn this into the one-value case. */
4666 if (tree_int_cst_equal (low, high))
4667 r->high = r->low;
4668 else
4670 r->high = copy_node (high);
4671 case_stack->data.case_stmt.num_ranges++;
4674 r->code_label = label;
4675 expand_label (label);
4677 *q = r;
4678 r->parent = p;
4679 r->left = 0;
4680 r->right = 0;
4681 r->balance = 0;
4683 while (p)
4685 struct case_node *s;
4687 if (r == p->left)
4689 int b;
4691 if (! (b = p->balance))
4692 /* Growth propagation from left side. */
4693 p->balance = -1;
4694 else if (b < 0)
4696 if (r->balance < 0)
4698 /* R-Rotation */
4699 if ((p->left = s = r->right))
4700 s->parent = p;
4702 r->right = p;
4703 p->balance = 0;
4704 r->balance = 0;
4705 s = p->parent;
4706 p->parent = r;
4708 if ((r->parent = s))
4710 if (s->left == p)
4711 s->left = r;
4712 else
4713 s->right = r;
4715 else
4716 case_stack->data.case_stmt.case_list = r;
4718 else
4719 /* r->balance == +1 */
4721 /* LR-Rotation */
4723 int b2;
4724 struct case_node *t = r->right;
4726 if ((p->left = s = t->right))
4727 s->parent = p;
4729 t->right = p;
4730 if ((r->right = s = t->left))
4731 s->parent = r;
4733 t->left = r;
4734 b = t->balance;
4735 b2 = b < 0;
4736 p->balance = b2;
4737 b2 = -b2 - b;
4738 r->balance = b2;
4739 t->balance = 0;
4740 s = p->parent;
4741 p->parent = t;
4742 r->parent = t;
4744 if ((t->parent = s))
4746 if (s->left == p)
4747 s->left = t;
4748 else
4749 s->right = t;
4751 else
4752 case_stack->data.case_stmt.case_list = t;
4754 break;
4757 else
4759 /* p->balance == +1; growth of left side balances the node. */
4760 p->balance = 0;
4761 break;
4764 else
4765 /* r == p->right */
4767 int b;
4769 if (! (b = p->balance))
4770 /* Growth propagation from right side. */
4771 p->balance++;
4772 else if (b > 0)
4774 if (r->balance > 0)
4776 /* L-Rotation */
4778 if ((p->right = s = r->left))
4779 s->parent = p;
4781 r->left = p;
4782 p->balance = 0;
4783 r->balance = 0;
4784 s = p->parent;
4785 p->parent = r;
4786 if ((r->parent = s))
4788 if (s->left == p)
4789 s->left = r;
4790 else
4791 s->right = r;
4794 else
4795 case_stack->data.case_stmt.case_list = r;
4798 else
4799 /* r->balance == -1 */
4801 /* RL-Rotation */
4802 int b2;
4803 struct case_node *t = r->left;
4805 if ((p->right = s = t->left))
4806 s->parent = p;
4808 t->left = p;
4810 if ((r->left = s = t->right))
4811 s->parent = r;
4813 t->right = r;
4814 b = t->balance;
4815 b2 = b < 0;
4816 r->balance = b2;
4817 b2 = -b2 - b;
4818 p->balance = b2;
4819 t->balance = 0;
4820 s = p->parent;
4821 p->parent = t;
4822 r->parent = t;
4824 if ((t->parent = s))
4826 if (s->left == p)
4827 s->left = t;
4828 else
4829 s->right = t;
4832 else
4833 case_stack->data.case_stmt.case_list = t;
4835 break;
4837 else
4839 /* p->balance == -1; growth of right side balances the node. */
4840 p->balance = 0;
4841 break;
4845 r = p;
4846 p = p->parent;
4849 return 0;
4853 /* Returns the number of possible values of TYPE.
4854 Returns -1 if the number is unknown, variable, or if the number does not
4855 fit in a HOST_WIDE_INT.
4856 Sets *SPARENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4857 do not increase monotonically (there may be duplicates);
4858 to 1 if the values increase monotonically, but not always by 1;
4859 otherwise sets it to 0. */
4861 HOST_WIDE_INT
4862 all_cases_count (type, spareness)
4863 tree type;
4864 int *spareness;
4866 tree t;
4867 HOST_WIDE_INT count, minval, lastval;
4869 *spareness = 0;
4871 switch (TREE_CODE (type))
4873 case BOOLEAN_TYPE:
4874 count = 2;
4875 break;
4877 case CHAR_TYPE:
4878 count = 1 << BITS_PER_UNIT;
4879 break;
4881 default:
4882 case INTEGER_TYPE:
4883 if (TYPE_MAX_VALUE (type) != 0
4884 && 0 != (t = fold (build (MINUS_EXPR, type, TYPE_MAX_VALUE (type),
4885 TYPE_MIN_VALUE (type))))
4886 && 0 != (t = fold (build (PLUS_EXPR, type, t,
4887 convert (type, integer_zero_node))))
4888 && host_integerp (t, 1))
4889 count = tree_low_cst (t, 1);
4890 else
4891 return -1;
4892 break;
4894 case ENUMERAL_TYPE:
4895 /* Don't waste time with enumeral types with huge values. */
4896 if (! host_integerp (TYPE_MIN_VALUE (type), 0)
4897 || TYPE_MAX_VALUE (type) == 0
4898 || ! host_integerp (TYPE_MAX_VALUE (type), 0))
4899 return -1;
4901 lastval = minval = tree_low_cst (TYPE_MIN_VALUE (type), 0);
4902 count = 0;
4904 for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
4906 HOST_WIDE_INT thisval = tree_low_cst (TREE_VALUE (t), 0);
4908 if (*spareness == 2 || thisval < lastval)
4909 *spareness = 2;
4910 else if (thisval != minval + count)
4911 *spareness = 1;
4913 count++;
4917 return count;
4920 #define BITARRAY_TEST(ARRAY, INDEX) \
4921 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4922 & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4923 #define BITARRAY_SET(ARRAY, INDEX) \
4924 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4925 |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4927 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4928 with the case values we have seen, assuming the case expression
4929 has the given TYPE.
4930 SPARSENESS is as determined by all_cases_count.
4932 The time needed is proportional to COUNT, unless
4933 SPARSENESS is 2, in which case quadratic time is needed. */
4935 void
4936 mark_seen_cases (type, cases_seen, count, sparseness)
4937 tree type;
4938 unsigned char *cases_seen;
4939 HOST_WIDE_INT count;
4940 int sparseness;
4942 tree next_node_to_try = NULL_TREE;
4943 HOST_WIDE_INT next_node_offset = 0;
4945 register struct case_node *n, *root = case_stack->data.case_stmt.case_list;
4946 tree val = make_node (INTEGER_CST);
4948 TREE_TYPE (val) = type;
4949 if (! root)
4950 ; /* Do nothing */
4951 else if (sparseness == 2)
4953 tree t;
4954 unsigned HOST_WIDE_INT xlo;
4956 /* This less efficient loop is only needed to handle
4957 duplicate case values (multiple enum constants
4958 with the same value). */
4959 TREE_TYPE (val) = TREE_TYPE (root->low);
4960 for (t = TYPE_VALUES (type), xlo = 0; t != NULL_TREE;
4961 t = TREE_CHAIN (t), xlo++)
4963 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
4964 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
4965 n = root;
4968 /* Keep going past elements distinctly greater than VAL. */
4969 if (tree_int_cst_lt (val, n->low))
4970 n = n->left;
4972 /* or distinctly less than VAL. */
4973 else if (tree_int_cst_lt (n->high, val))
4974 n = n->right;
4976 else
4978 /* We have found a matching range. */
4979 BITARRAY_SET (cases_seen, xlo);
4980 break;
4983 while (n);
4986 else
4988 if (root->left)
4989 case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
4991 for (n = root; n; n = n->right)
4993 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
4994 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
4995 while ( ! tree_int_cst_lt (n->high, val))
4997 /* Calculate (into xlo) the "offset" of the integer (val).
4998 The element with lowest value has offset 0, the next smallest
4999 element has offset 1, etc. */
5001 unsigned HOST_WIDE_INT xlo;
5002 HOST_WIDE_INT xhi;
5003 tree t;
5005 if (sparseness && TYPE_VALUES (type) != NULL_TREE)
5007 /* The TYPE_VALUES will be in increasing order, so
5008 starting searching where we last ended. */
5009 t = next_node_to_try;
5010 xlo = next_node_offset;
5011 xhi = 0;
5012 for (;;)
5014 if (t == NULL_TREE)
5016 t = TYPE_VALUES (type);
5017 xlo = 0;
5019 if (tree_int_cst_equal (val, TREE_VALUE (t)))
5021 next_node_to_try = TREE_CHAIN (t);
5022 next_node_offset = xlo + 1;
5023 break;
5025 xlo++;
5026 t = TREE_CHAIN (t);
5027 if (t == next_node_to_try)
5029 xlo = -1;
5030 break;
5034 else
5036 t = TYPE_MIN_VALUE (type);
5037 if (t)
5038 neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
5039 &xlo, &xhi);
5040 else
5041 xlo = xhi = 0;
5042 add_double (xlo, xhi,
5043 TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5044 &xlo, &xhi);
5047 if (xhi == 0 && xlo < (unsigned HOST_WIDE_INT) count)
5048 BITARRAY_SET (cases_seen, xlo);
5050 add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5051 1, 0,
5052 &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5058 /* Called when the index of a switch statement is an enumerated type
5059 and there is no default label.
5061 Checks that all enumeration literals are covered by the case
5062 expressions of a switch. Also, warn if there are any extra
5063 switch cases that are *not* elements of the enumerated type.
5065 If all enumeration literals were covered by the case expressions,
5066 turn one of the expressions into the default expression since it should
5067 not be possible to fall through such a switch. */
5069 void
5070 check_for_full_enumeration_handling (type)
5071 tree type;
5073 register struct case_node *n;
5074 register tree chain;
5075 #if 0 /* variable used by 'if 0'ed code below. */
5076 register struct case_node **l;
5077 int all_values = 1;
5078 #endif
5080 /* True iff the selector type is a numbered set mode. */
5081 int sparseness = 0;
5083 /* The number of possible selector values. */
5084 HOST_WIDE_INT size;
5086 /* For each possible selector value. a one iff it has been matched
5087 by a case value alternative. */
5088 unsigned char *cases_seen;
5090 /* The allocated size of cases_seen, in chars. */
5091 HOST_WIDE_INT bytes_needed;
5093 if (! warn_switch)
5094 return;
5096 size = all_cases_count (type, &sparseness);
5097 bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5099 if (size > 0 && size < 600000
5100 /* We deliberately use calloc here, not cmalloc, so that we can suppress
5101 this optimization if we don't have enough memory rather than
5102 aborting, as xmalloc would do. */
5103 && (cases_seen = (unsigned char *) calloc (bytes_needed, 1)) != NULL)
5105 HOST_WIDE_INT i;
5106 tree v = TYPE_VALUES (type);
5108 /* The time complexity of this code is normally O(N), where
5109 N being the number of members in the enumerated type.
5110 However, if type is a ENUMERAL_TYPE whose values do not
5111 increase monotonically, O(N*log(N)) time may be needed. */
5113 mark_seen_cases (type, cases_seen, size, sparseness);
5115 for (i = 0; v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5116 if (BITARRAY_TEST(cases_seen, i) == 0)
5117 warning ("enumeration value `%s' not handled in switch",
5118 IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5120 free (cases_seen);
5123 /* Now we go the other way around; we warn if there are case
5124 expressions that don't correspond to enumerators. This can
5125 occur since C and C++ don't enforce type-checking of
5126 assignments to enumeration variables. */
5128 if (case_stack->data.case_stmt.case_list
5129 && case_stack->data.case_stmt.case_list->left)
5130 case_stack->data.case_stmt.case_list
5131 = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5132 if (warn_switch)
5133 for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5135 for (chain = TYPE_VALUES (type);
5136 chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5137 chain = TREE_CHAIN (chain))
5140 if (!chain)
5142 if (TYPE_NAME (type) == 0)
5143 warning ("case value `%ld' not in enumerated type",
5144 (long) TREE_INT_CST_LOW (n->low));
5145 else
5146 warning ("case value `%ld' not in enumerated type `%s'",
5147 (long) TREE_INT_CST_LOW (n->low),
5148 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5149 == IDENTIFIER_NODE)
5150 ? TYPE_NAME (type)
5151 : DECL_NAME (TYPE_NAME (type))));
5153 if (!tree_int_cst_equal (n->low, n->high))
5155 for (chain = TYPE_VALUES (type);
5156 chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5157 chain = TREE_CHAIN (chain))
5160 if (!chain)
5162 if (TYPE_NAME (type) == 0)
5163 warning ("case value `%ld' not in enumerated type",
5164 (long) TREE_INT_CST_LOW (n->high));
5165 else
5166 warning ("case value `%ld' not in enumerated type `%s'",
5167 (long) TREE_INT_CST_LOW (n->high),
5168 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5169 == IDENTIFIER_NODE)
5170 ? TYPE_NAME (type)
5171 : DECL_NAME (TYPE_NAME (type))));
5176 #if 0
5177 /* ??? This optimization is disabled because it causes valid programs to
5178 fail. ANSI C does not guarantee that an expression with enum type
5179 will have a value that is the same as one of the enumeration literals. */
5181 /* If all values were found as case labels, make one of them the default
5182 label. Thus, this switch will never fall through. We arbitrarily pick
5183 the last one to make the default since this is likely the most
5184 efficient choice. */
5186 if (all_values)
5188 for (l = &case_stack->data.case_stmt.case_list;
5189 (*l)->right != 0;
5190 l = &(*l)->right)
5193 case_stack->data.case_stmt.default_label = (*l)->code_label;
5194 *l = 0;
5196 #endif /* 0 */
5200 /* Terminate a case (Pascal) or switch (C) statement
5201 in which ORIG_INDEX is the expression to be tested.
5202 Generate the code to test it and jump to the right place. */
5204 void
5205 expand_end_case (orig_index)
5206 tree orig_index;
5208 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE, orig_minval;
5209 rtx default_label = 0;
5210 register struct case_node *n;
5211 unsigned int count;
5212 rtx index;
5213 rtx table_label;
5214 int ncases;
5215 rtx *labelvec;
5216 register int i;
5217 rtx before_case;
5218 register struct nesting *thiscase = case_stack;
5219 tree index_expr, index_type;
5220 int unsignedp;
5222 /* Don't crash due to previous errors. */
5223 if (thiscase == NULL)
5224 return;
5226 table_label = gen_label_rtx ();
5227 index_expr = thiscase->data.case_stmt.index_expr;
5228 index_type = TREE_TYPE (index_expr);
5229 unsignedp = TREE_UNSIGNED (index_type);
5231 do_pending_stack_adjust ();
5233 /* This might get an spurious warning in the presence of a syntax error;
5234 it could be fixed by moving the call to check_seenlabel after the
5235 check for error_mark_node, and copying the code of check_seenlabel that
5236 deals with case_stack->data.case_stmt.line_number_status /
5237 restore_line_number_status in front of the call to end_cleanup_deferral;
5238 However, this might miss some useful warnings in the presence of
5239 non-syntax errors. */
5240 check_seenlabel ();
5242 /* An ERROR_MARK occurs for various reasons including invalid data type. */
5243 if (index_type != error_mark_node)
5245 /* If switch expression was an enumerated type, check that all
5246 enumeration literals are covered by the cases.
5247 No sense trying this if there's a default case, however. */
5249 if (!thiscase->data.case_stmt.default_label
5250 && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
5251 && TREE_CODE (index_expr) != INTEGER_CST)
5252 check_for_full_enumeration_handling (TREE_TYPE (orig_index));
5254 /* If we don't have a default-label, create one here,
5255 after the body of the switch. */
5256 if (thiscase->data.case_stmt.default_label == 0)
5258 thiscase->data.case_stmt.default_label
5259 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5260 expand_label (thiscase->data.case_stmt.default_label);
5262 default_label = label_rtx (thiscase->data.case_stmt.default_label);
5264 before_case = get_last_insn ();
5266 if (thiscase->data.case_stmt.case_list
5267 && thiscase->data.case_stmt.case_list->left)
5268 thiscase->data.case_stmt.case_list
5269 = case_tree2list(thiscase->data.case_stmt.case_list, 0);
5271 /* Simplify the case-list before we count it. */
5272 group_case_nodes (thiscase->data.case_stmt.case_list);
5274 /* Get upper and lower bounds of case values.
5275 Also convert all the case values to the index expr's data type. */
5277 count = 0;
5278 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5280 /* Check low and high label values are integers. */
5281 if (TREE_CODE (n->low) != INTEGER_CST)
5282 abort ();
5283 if (TREE_CODE (n->high) != INTEGER_CST)
5284 abort ();
5286 n->low = convert (index_type, n->low);
5287 n->high = convert (index_type, n->high);
5289 /* Count the elements and track the largest and smallest
5290 of them (treating them as signed even if they are not). */
5291 if (count++ == 0)
5293 minval = n->low;
5294 maxval = n->high;
5296 else
5298 if (INT_CST_LT (n->low, minval))
5299 minval = n->low;
5300 if (INT_CST_LT (maxval, n->high))
5301 maxval = n->high;
5303 /* A range counts double, since it requires two compares. */
5304 if (! tree_int_cst_equal (n->low, n->high))
5305 count++;
5308 orig_minval = minval;
5310 /* Compute span of values. */
5311 if (count != 0)
5312 range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5314 end_cleanup_deferral ();
5316 if (count == 0)
5318 expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5319 emit_queue ();
5320 emit_jump (default_label);
5323 /* If range of values is much bigger than number of values,
5324 make a sequence of conditional branches instead of a dispatch.
5325 If the switch-index is a constant, do it this way
5326 because we can optimize it. */
5328 #ifndef CASE_VALUES_THRESHOLD
5329 #ifdef HAVE_casesi
5330 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
5331 #else
5332 /* If machine does not have a case insn that compares the
5333 bounds, this means extra overhead for dispatch tables
5334 which raises the threshold for using them. */
5335 #define CASE_VALUES_THRESHOLD 5
5336 #endif /* HAVE_casesi */
5337 #endif /* CASE_VALUES_THRESHOLD */
5339 else if (count < CASE_VALUES_THRESHOLD
5340 || compare_tree_int (range, 10 * count) > 0
5341 /* RANGE may be signed, and really large ranges will show up
5342 as negative numbers. */
5343 || compare_tree_int (range, 0) < 0
5344 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5345 || flag_pic
5346 #endif
5347 || TREE_CODE (index_expr) == INTEGER_CST
5348 /* These will reduce to a constant. */
5349 || (TREE_CODE (index_expr) == CALL_EXPR
5350 && TREE_CODE (TREE_OPERAND (index_expr, 0)) == ADDR_EXPR
5351 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == FUNCTION_DECL
5352 && DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_NORMAL
5353 && DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_CLASSIFY_TYPE)
5354 || (TREE_CODE (index_expr) == COMPOUND_EXPR
5355 && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
5357 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5359 /* If the index is a short or char that we do not have
5360 an insn to handle comparisons directly, convert it to
5361 a full integer now, rather than letting each comparison
5362 generate the conversion. */
5364 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5365 && (cmp_optab->handlers[(int) GET_MODE(index)].insn_code
5366 == CODE_FOR_nothing))
5368 enum machine_mode wider_mode;
5369 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5370 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5371 if (cmp_optab->handlers[(int) wider_mode].insn_code
5372 != CODE_FOR_nothing)
5374 index = convert_to_mode (wider_mode, index, unsignedp);
5375 break;
5379 emit_queue ();
5380 do_pending_stack_adjust ();
5382 index = protect_from_queue (index, 0);
5383 if (GET_CODE (index) == MEM)
5384 index = copy_to_reg (index);
5385 if (GET_CODE (index) == CONST_INT
5386 || TREE_CODE (index_expr) == INTEGER_CST)
5388 /* Make a tree node with the proper constant value
5389 if we don't already have one. */
5390 if (TREE_CODE (index_expr) != INTEGER_CST)
5392 index_expr
5393 = build_int_2 (INTVAL (index),
5394 unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5395 index_expr = convert (index_type, index_expr);
5398 /* For constant index expressions we need only
5399 issue a unconditional branch to the appropriate
5400 target code. The job of removing any unreachable
5401 code is left to the optimisation phase if the
5402 "-O" option is specified. */
5403 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5404 if (! tree_int_cst_lt (index_expr, n->low)
5405 && ! tree_int_cst_lt (n->high, index_expr))
5406 break;
5408 if (n)
5409 emit_jump (label_rtx (n->code_label));
5410 else
5411 emit_jump (default_label);
5413 else
5415 /* If the index expression is not constant we generate
5416 a binary decision tree to select the appropriate
5417 target code. This is done as follows:
5419 The list of cases is rearranged into a binary tree,
5420 nearly optimal assuming equal probability for each case.
5422 The tree is transformed into RTL, eliminating
5423 redundant test conditions at the same time.
5425 If program flow could reach the end of the
5426 decision tree an unconditional jump to the
5427 default code is emitted. */
5429 use_cost_table
5430 = (TREE_CODE (TREE_TYPE (orig_index)) != ENUMERAL_TYPE
5431 && estimate_case_costs (thiscase->data.case_stmt.case_list));
5432 balance_case_nodes (&thiscase->data.case_stmt.case_list,
5433 NULL_PTR);
5434 emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5435 default_label, index_type);
5436 emit_jump_if_reachable (default_label);
5439 else
5441 int win = 0;
5442 #ifdef HAVE_casesi
5443 if (HAVE_casesi)
5445 enum machine_mode index_mode = SImode;
5446 int index_bits = GET_MODE_BITSIZE (index_mode);
5447 rtx op1, op2;
5448 enum machine_mode op_mode;
5450 /* Convert the index to SImode. */
5451 if (GET_MODE_BITSIZE (TYPE_MODE (index_type))
5452 > GET_MODE_BITSIZE (index_mode))
5454 enum machine_mode omode = TYPE_MODE (index_type);
5455 rtx rangertx = expand_expr (range, NULL_RTX, VOIDmode, 0);
5457 /* We must handle the endpoints in the original mode. */
5458 index_expr = build (MINUS_EXPR, index_type,
5459 index_expr, minval);
5460 minval = integer_zero_node;
5461 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5462 emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
5463 omode, 1, 0, default_label);
5464 /* Now we can safely truncate. */
5465 index = convert_to_mode (index_mode, index, 0);
5467 else
5469 if (TYPE_MODE (index_type) != index_mode)
5471 index_expr = convert (type_for_size (index_bits, 0),
5472 index_expr);
5473 index_type = TREE_TYPE (index_expr);
5476 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5478 emit_queue ();
5479 index = protect_from_queue (index, 0);
5480 do_pending_stack_adjust ();
5482 op_mode = insn_data[(int)CODE_FOR_casesi].operand[0].mode;
5483 if (! (*insn_data[(int)CODE_FOR_casesi].operand[0].predicate)
5484 (index, op_mode))
5485 index = copy_to_mode_reg (op_mode, index);
5487 op1 = expand_expr (minval, NULL_RTX, VOIDmode, 0);
5489 op_mode = insn_data[(int)CODE_FOR_casesi].operand[1].mode;
5490 if (! (*insn_data[(int)CODE_FOR_casesi].operand[1].predicate)
5491 (op1, op_mode))
5492 op1 = copy_to_mode_reg (op_mode, op1);
5494 op2 = expand_expr (range, NULL_RTX, VOIDmode, 0);
5496 op_mode = insn_data[(int)CODE_FOR_casesi].operand[2].mode;
5497 if (! (*insn_data[(int)CODE_FOR_casesi].operand[2].predicate)
5498 (op2, op_mode))
5499 op2 = copy_to_mode_reg (op_mode, op2);
5501 emit_jump_insn (gen_casesi (index, op1, op2,
5502 table_label, default_label));
5503 win = 1;
5505 #endif
5506 #ifdef HAVE_tablejump
5507 if (! win && HAVE_tablejump)
5509 index_type = thiscase->data.case_stmt.nominal_type;
5510 index_expr = fold (build (MINUS_EXPR, index_type,
5511 convert (index_type, index_expr),
5512 convert (index_type, minval)));
5513 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5514 emit_queue ();
5515 index = protect_from_queue (index, 0);
5516 do_pending_stack_adjust ();
5518 do_tablejump (index, TYPE_MODE (index_type),
5519 expand_expr (range, NULL_RTX, VOIDmode, 0),
5520 table_label, default_label);
5521 win = 1;
5523 #endif
5524 if (! win)
5525 abort ();
5527 /* Get table of labels to jump to, in order of case index. */
5529 ncases = TREE_INT_CST_LOW (range) + 1;
5530 labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5531 bzero ((char *) labelvec, ncases * sizeof (rtx));
5533 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5535 register HOST_WIDE_INT i
5536 = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (orig_minval);
5538 while (1)
5540 labelvec[i]
5541 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5542 if (i + TREE_INT_CST_LOW (orig_minval)
5543 == TREE_INT_CST_LOW (n->high))
5544 break;
5545 i++;
5549 /* Fill in the gaps with the default. */
5550 for (i = 0; i < ncases; i++)
5551 if (labelvec[i] == 0)
5552 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5554 /* Output the table */
5555 emit_label (table_label);
5557 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5558 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5559 gen_rtx_LABEL_REF (Pmode, table_label),
5560 gen_rtvec_v (ncases, labelvec),
5561 const0_rtx, const0_rtx));
5562 else
5563 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5564 gen_rtvec_v (ncases, labelvec)));
5566 /* If the case insn drops through the table,
5567 after the table we must jump to the default-label.
5568 Otherwise record no drop-through after the table. */
5569 #ifdef CASE_DROPS_THROUGH
5570 emit_jump (default_label);
5571 #else
5572 emit_barrier ();
5573 #endif
5576 before_case = squeeze_notes (NEXT_INSN (before_case), get_last_insn ());
5577 reorder_insns (before_case, get_last_insn (),
5578 thiscase->data.case_stmt.start);
5580 else
5581 end_cleanup_deferral ();
5583 if (thiscase->exit_label)
5584 emit_label (thiscase->exit_label);
5586 POPSTACK (case_stack);
5588 free_temp_slots ();
5591 /* Convert the tree NODE into a list linked by the right field, with the left
5592 field zeroed. RIGHT is used for recursion; it is a list to be placed
5593 rightmost in the resulting list. */
5595 static struct case_node *
5596 case_tree2list (node, right)
5597 struct case_node *node, *right;
5599 struct case_node *left;
5601 if (node->right)
5602 right = case_tree2list (node->right, right);
5604 node->right = right;
5605 if ((left = node->left))
5607 node->left = 0;
5608 return case_tree2list (left, node);
5611 return node;
5614 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
5616 static void
5617 do_jump_if_equal (op1, op2, label, unsignedp)
5618 rtx op1, op2, label;
5619 int unsignedp;
5621 if (GET_CODE (op1) == CONST_INT
5622 && GET_CODE (op2) == CONST_INT)
5624 if (INTVAL (op1) == INTVAL (op2))
5625 emit_jump (label);
5627 else
5629 enum machine_mode mode = GET_MODE (op1);
5630 if (mode == VOIDmode)
5631 mode = GET_MODE (op2);
5632 emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX, mode, unsignedp,
5633 0, label);
5637 /* Not all case values are encountered equally. This function
5638 uses a heuristic to weight case labels, in cases where that
5639 looks like a reasonable thing to do.
5641 Right now, all we try to guess is text, and we establish the
5642 following weights:
5644 chars above space: 16
5645 digits: 16
5646 default: 12
5647 space, punct: 8
5648 tab: 4
5649 newline: 2
5650 other "\" chars: 1
5651 remaining chars: 0
5653 If we find any cases in the switch that are not either -1 or in the range
5654 of valid ASCII characters, or are control characters other than those
5655 commonly used with "\", don't treat this switch scanning text.
5657 Return 1 if these nodes are suitable for cost estimation, otherwise
5658 return 0. */
5660 static int
5661 estimate_case_costs (node)
5662 case_node_ptr node;
5664 tree min_ascii = build_int_2 (-1, -1);
5665 tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5666 case_node_ptr n;
5667 int i;
5669 /* If we haven't already made the cost table, make it now. Note that the
5670 lower bound of the table is -1, not zero. */
5672 if (cost_table == NULL)
5674 cost_table = cost_table_ + 1;
5676 for (i = 0; i < 128; i++)
5678 if (ISALNUM (i))
5679 cost_table[i] = 16;
5680 else if (ISPUNCT (i))
5681 cost_table[i] = 8;
5682 else if (ISCNTRL (i))
5683 cost_table[i] = -1;
5686 cost_table[' '] = 8;
5687 cost_table['\t'] = 4;
5688 cost_table['\0'] = 4;
5689 cost_table['\n'] = 2;
5690 cost_table['\f'] = 1;
5691 cost_table['\v'] = 1;
5692 cost_table['\b'] = 1;
5695 /* See if all the case expressions look like text. It is text if the
5696 constant is >= -1 and the highest constant is <= 127. Do all comparisons
5697 as signed arithmetic since we don't want to ever access cost_table with a
5698 value less than -1. Also check that none of the constants in a range
5699 are strange control characters. */
5701 for (n = node; n; n = n->right)
5703 if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5704 return 0;
5706 for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
5707 i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
5708 if (cost_table[i] < 0)
5709 return 0;
5712 /* All interesting values are within the range of interesting
5713 ASCII characters. */
5714 return 1;
5717 /* Scan an ordered list of case nodes
5718 combining those with consecutive values or ranges.
5720 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
5722 static void
5723 group_case_nodes (head)
5724 case_node_ptr head;
5726 case_node_ptr node = head;
5728 while (node)
5730 rtx lb = next_real_insn (label_rtx (node->code_label));
5731 rtx lb2;
5732 case_node_ptr np = node;
5734 /* Try to group the successors of NODE with NODE. */
5735 while (((np = np->right) != 0)
5736 /* Do they jump to the same place? */
5737 && ((lb2 = next_real_insn (label_rtx (np->code_label))) == lb
5738 || (lb != 0 && lb2 != 0
5739 && simplejump_p (lb)
5740 && simplejump_p (lb2)
5741 && rtx_equal_p (SET_SRC (PATTERN (lb)),
5742 SET_SRC (PATTERN (lb2)))))
5743 /* Are their ranges consecutive? */
5744 && tree_int_cst_equal (np->low,
5745 fold (build (PLUS_EXPR,
5746 TREE_TYPE (node->high),
5747 node->high,
5748 integer_one_node)))
5749 /* An overflow is not consecutive. */
5750 && tree_int_cst_lt (node->high,
5751 fold (build (PLUS_EXPR,
5752 TREE_TYPE (node->high),
5753 node->high,
5754 integer_one_node))))
5756 node->high = np->high;
5758 /* NP is the first node after NODE which can't be grouped with it.
5759 Delete the nodes in between, and move on to that node. */
5760 node->right = np;
5761 node = np;
5765 /* Take an ordered list of case nodes
5766 and transform them into a near optimal binary tree,
5767 on the assumption that any target code selection value is as
5768 likely as any other.
5770 The transformation is performed by splitting the ordered
5771 list into two equal sections plus a pivot. The parts are
5772 then attached to the pivot as left and right branches. Each
5773 branch is then transformed recursively. */
5775 static void
5776 balance_case_nodes (head, parent)
5777 case_node_ptr *head;
5778 case_node_ptr parent;
5780 register case_node_ptr np;
5782 np = *head;
5783 if (np)
5785 int cost = 0;
5786 int i = 0;
5787 int ranges = 0;
5788 register case_node_ptr *npp;
5789 case_node_ptr left;
5791 /* Count the number of entries on branch. Also count the ranges. */
5793 while (np)
5795 if (!tree_int_cst_equal (np->low, np->high))
5797 ranges++;
5798 if (use_cost_table)
5799 cost += cost_table[TREE_INT_CST_LOW (np->high)];
5802 if (use_cost_table)
5803 cost += cost_table[TREE_INT_CST_LOW (np->low)];
5805 i++;
5806 np = np->right;
5809 if (i > 2)
5811 /* Split this list if it is long enough for that to help. */
5812 npp = head;
5813 left = *npp;
5814 if (use_cost_table)
5816 /* Find the place in the list that bisects the list's total cost,
5817 Here I gets half the total cost. */
5818 int n_moved = 0;
5819 i = (cost + 1) / 2;
5820 while (1)
5822 /* Skip nodes while their cost does not reach that amount. */
5823 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5824 i -= cost_table[TREE_INT_CST_LOW ((*npp)->high)];
5825 i -= cost_table[TREE_INT_CST_LOW ((*npp)->low)];
5826 if (i <= 0)
5827 break;
5828 npp = &(*npp)->right;
5829 n_moved += 1;
5831 if (n_moved == 0)
5833 /* Leave this branch lopsided, but optimize left-hand
5834 side and fill in `parent' fields for right-hand side. */
5835 np = *head;
5836 np->parent = parent;
5837 balance_case_nodes (&np->left, np);
5838 for (; np->right; np = np->right)
5839 np->right->parent = np;
5840 return;
5843 /* If there are just three nodes, split at the middle one. */
5844 else if (i == 3)
5845 npp = &(*npp)->right;
5846 else
5848 /* Find the place in the list that bisects the list's total cost,
5849 where ranges count as 2.
5850 Here I gets half the total cost. */
5851 i = (i + ranges + 1) / 2;
5852 while (1)
5854 /* Skip nodes while their cost does not reach that amount. */
5855 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5856 i--;
5857 i--;
5858 if (i <= 0)
5859 break;
5860 npp = &(*npp)->right;
5863 *head = np = *npp;
5864 *npp = 0;
5865 np->parent = parent;
5866 np->left = left;
5868 /* Optimize each of the two split parts. */
5869 balance_case_nodes (&np->left, np);
5870 balance_case_nodes (&np->right, np);
5872 else
5874 /* Else leave this branch as one level,
5875 but fill in `parent' fields. */
5876 np = *head;
5877 np->parent = parent;
5878 for (; np->right; np = np->right)
5879 np->right->parent = np;
5884 /* Search the parent sections of the case node tree
5885 to see if a test for the lower bound of NODE would be redundant.
5886 INDEX_TYPE is the type of the index expression.
5888 The instructions to generate the case decision tree are
5889 output in the same order as nodes are processed so it is
5890 known that if a parent node checks the range of the current
5891 node minus one that the current node is bounded at its lower
5892 span. Thus the test would be redundant. */
5894 static int
5895 node_has_low_bound (node, index_type)
5896 case_node_ptr node;
5897 tree index_type;
5899 tree low_minus_one;
5900 case_node_ptr pnode;
5902 /* If the lower bound of this node is the lowest value in the index type,
5903 we need not test it. */
5905 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
5906 return 1;
5908 /* If this node has a left branch, the value at the left must be less
5909 than that at this node, so it cannot be bounded at the bottom and
5910 we need not bother testing any further. */
5912 if (node->left)
5913 return 0;
5915 low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
5916 node->low, integer_one_node));
5918 /* If the subtraction above overflowed, we can't verify anything.
5919 Otherwise, look for a parent that tests our value - 1. */
5921 if (! tree_int_cst_lt (low_minus_one, node->low))
5922 return 0;
5924 for (pnode = node->parent; pnode; pnode = pnode->parent)
5925 if (tree_int_cst_equal (low_minus_one, pnode->high))
5926 return 1;
5928 return 0;
5931 /* Search the parent sections of the case node tree
5932 to see if a test for the upper bound of NODE would be redundant.
5933 INDEX_TYPE is the type of the index expression.
5935 The instructions to generate the case decision tree are
5936 output in the same order as nodes are processed so it is
5937 known that if a parent node checks the range of the current
5938 node plus one that the current node is bounded at its upper
5939 span. Thus the test would be redundant. */
5941 static int
5942 node_has_high_bound (node, index_type)
5943 case_node_ptr node;
5944 tree index_type;
5946 tree high_plus_one;
5947 case_node_ptr pnode;
5949 /* If there is no upper bound, obviously no test is needed. */
5951 if (TYPE_MAX_VALUE (index_type) == NULL)
5952 return 1;
5954 /* If the upper bound of this node is the highest value in the type
5955 of the index expression, we need not test against it. */
5957 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
5958 return 1;
5960 /* If this node has a right branch, the value at the right must be greater
5961 than that at this node, so it cannot be bounded at the top and
5962 we need not bother testing any further. */
5964 if (node->right)
5965 return 0;
5967 high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
5968 node->high, integer_one_node));
5970 /* If the addition above overflowed, we can't verify anything.
5971 Otherwise, look for a parent that tests our value + 1. */
5973 if (! tree_int_cst_lt (node->high, high_plus_one))
5974 return 0;
5976 for (pnode = node->parent; pnode; pnode = pnode->parent)
5977 if (tree_int_cst_equal (high_plus_one, pnode->low))
5978 return 1;
5980 return 0;
5983 /* Search the parent sections of the
5984 case node tree to see if both tests for the upper and lower
5985 bounds of NODE would be redundant. */
5987 static int
5988 node_is_bounded (node, index_type)
5989 case_node_ptr node;
5990 tree index_type;
5992 return (node_has_low_bound (node, index_type)
5993 && node_has_high_bound (node, index_type));
5996 /* Emit an unconditional jump to LABEL unless it would be dead code. */
5998 static void
5999 emit_jump_if_reachable (label)
6000 rtx label;
6002 if (GET_CODE (get_last_insn ()) != BARRIER)
6003 emit_jump (label);
6006 /* Emit step-by-step code to select a case for the value of INDEX.
6007 The thus generated decision tree follows the form of the
6008 case-node binary tree NODE, whose nodes represent test conditions.
6009 INDEX_TYPE is the type of the index of the switch.
6011 Care is taken to prune redundant tests from the decision tree
6012 by detecting any boundary conditions already checked by
6013 emitted rtx. (See node_has_high_bound, node_has_low_bound
6014 and node_is_bounded, above.)
6016 Where the test conditions can be shown to be redundant we emit
6017 an unconditional jump to the target code. As a further
6018 optimization, the subordinates of a tree node are examined to
6019 check for bounded nodes. In this case conditional and/or
6020 unconditional jumps as a result of the boundary check for the
6021 current node are arranged to target the subordinates associated
6022 code for out of bound conditions on the current node.
6024 We can assume that when control reaches the code generated here,
6025 the index value has already been compared with the parents
6026 of this node, and determined to be on the same side of each parent
6027 as this node is. Thus, if this node tests for the value 51,
6028 and a parent tested for 52, we don't need to consider
6029 the possibility of a value greater than 51. If another parent
6030 tests for the value 50, then this node need not test anything. */
6032 static void
6033 emit_case_nodes (index, node, default_label, index_type)
6034 rtx index;
6035 case_node_ptr node;
6036 rtx default_label;
6037 tree index_type;
6039 /* If INDEX has an unsigned type, we must make unsigned branches. */
6040 int unsignedp = TREE_UNSIGNED (index_type);
6041 enum machine_mode mode = GET_MODE (index);
6043 /* See if our parents have already tested everything for us.
6044 If they have, emit an unconditional jump for this node. */
6045 if (node_is_bounded (node, index_type))
6046 emit_jump (label_rtx (node->code_label));
6048 else if (tree_int_cst_equal (node->low, node->high))
6050 /* Node is single valued. First see if the index expression matches
6051 this node and then check our children, if any. */
6053 do_jump_if_equal (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
6054 label_rtx (node->code_label), unsignedp);
6056 if (node->right != 0 && node->left != 0)
6058 /* This node has children on both sides.
6059 Dispatch to one side or the other
6060 by comparing the index value with this node's value.
6061 If one subtree is bounded, check that one first,
6062 so we can avoid real branches in the tree. */
6064 if (node_is_bounded (node->right, index_type))
6066 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6067 VOIDmode, 0),
6068 GT, NULL_RTX, mode, unsignedp, 0,
6069 label_rtx (node->right->code_label));
6070 emit_case_nodes (index, node->left, default_label, index_type);
6073 else if (node_is_bounded (node->left, index_type))
6075 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6076 VOIDmode, 0),
6077 LT, NULL_RTX, mode, unsignedp, 0,
6078 label_rtx (node->left->code_label));
6079 emit_case_nodes (index, node->right, default_label, index_type);
6082 else
6084 /* Neither node is bounded. First distinguish the two sides;
6085 then emit the code for one side at a time. */
6087 tree test_label
6088 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6090 /* See if the value is on the right. */
6091 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6092 VOIDmode, 0),
6093 GT, NULL_RTX, mode, unsignedp, 0,
6094 label_rtx (test_label));
6096 /* Value must be on the left.
6097 Handle the left-hand subtree. */
6098 emit_case_nodes (index, node->left, default_label, index_type);
6099 /* If left-hand subtree does nothing,
6100 go to default. */
6101 emit_jump_if_reachable (default_label);
6103 /* Code branches here for the right-hand subtree. */
6104 expand_label (test_label);
6105 emit_case_nodes (index, node->right, default_label, index_type);
6109 else if (node->right != 0 && node->left == 0)
6111 /* Here we have a right child but no left so we issue conditional
6112 branch to default and process the right child.
6114 Omit the conditional branch to default if we it avoid only one
6115 right child; it costs too much space to save so little time. */
6117 if (node->right->right || node->right->left
6118 || !tree_int_cst_equal (node->right->low, node->right->high))
6120 if (!node_has_low_bound (node, index_type))
6122 emit_cmp_and_jump_insns (index, expand_expr (node->high,
6123 NULL_RTX,
6124 VOIDmode, 0),
6125 LT, NULL_RTX, mode, unsignedp, 0,
6126 default_label);
6129 emit_case_nodes (index, node->right, default_label, index_type);
6131 else
6132 /* We cannot process node->right normally
6133 since we haven't ruled out the numbers less than
6134 this node's value. So handle node->right explicitly. */
6135 do_jump_if_equal (index,
6136 expand_expr (node->right->low, NULL_RTX,
6137 VOIDmode, 0),
6138 label_rtx (node->right->code_label), unsignedp);
6141 else if (node->right == 0 && node->left != 0)
6143 /* Just one subtree, on the left. */
6145 #if 0 /* The following code and comment were formerly part
6146 of the condition here, but they didn't work
6147 and I don't understand what the idea was. -- rms. */
6148 /* If our "most probable entry" is less probable
6149 than the default label, emit a jump to
6150 the default label using condition codes
6151 already lying around. With no right branch,
6152 a branch-greater-than will get us to the default
6153 label correctly. */
6154 if (use_cost_table
6155 && cost_table[TREE_INT_CST_LOW (node->high)] < 12)
6157 #endif /* 0 */
6158 if (node->left->left || node->left->right
6159 || !tree_int_cst_equal (node->left->low, node->left->high))
6161 if (!node_has_high_bound (node, index_type))
6163 emit_cmp_and_jump_insns (index, expand_expr (node->high,
6164 NULL_RTX,
6165 VOIDmode, 0),
6166 GT, NULL_RTX, mode, unsignedp, 0,
6167 default_label);
6170 emit_case_nodes (index, node->left, default_label, index_type);
6172 else
6173 /* We cannot process node->left normally
6174 since we haven't ruled out the numbers less than
6175 this node's value. So handle node->left explicitly. */
6176 do_jump_if_equal (index,
6177 expand_expr (node->left->low, NULL_RTX,
6178 VOIDmode, 0),
6179 label_rtx (node->left->code_label), unsignedp);
6182 else
6184 /* Node is a range. These cases are very similar to those for a single
6185 value, except that we do not start by testing whether this node
6186 is the one to branch to. */
6188 if (node->right != 0 && node->left != 0)
6190 /* Node has subtrees on both sides.
6191 If the right-hand subtree is bounded,
6192 test for it first, since we can go straight there.
6193 Otherwise, we need to make a branch in the control structure,
6194 then handle the two subtrees. */
6195 tree test_label = 0;
6198 if (node_is_bounded (node->right, index_type))
6199 /* Right hand node is fully bounded so we can eliminate any
6200 testing and branch directly to the target code. */
6201 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6202 VOIDmode, 0),
6203 GT, NULL_RTX, mode, unsignedp, 0,
6204 label_rtx (node->right->code_label));
6205 else
6207 /* Right hand node requires testing.
6208 Branch to a label where we will handle it later. */
6210 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6211 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6212 VOIDmode, 0),
6213 GT, NULL_RTX, mode, unsignedp, 0,
6214 label_rtx (test_label));
6217 /* Value belongs to this node or to the left-hand subtree. */
6219 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6220 VOIDmode, 0),
6221 GE, NULL_RTX, mode, unsignedp, 0,
6222 label_rtx (node->code_label));
6224 /* Handle the left-hand subtree. */
6225 emit_case_nodes (index, node->left, default_label, index_type);
6227 /* If right node had to be handled later, do that now. */
6229 if (test_label)
6231 /* If the left-hand subtree fell through,
6232 don't let it fall into the right-hand subtree. */
6233 emit_jump_if_reachable (default_label);
6235 expand_label (test_label);
6236 emit_case_nodes (index, node->right, default_label, index_type);
6240 else if (node->right != 0 && node->left == 0)
6242 /* Deal with values to the left of this node,
6243 if they are possible. */
6244 if (!node_has_low_bound (node, index_type))
6246 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6247 VOIDmode, 0),
6248 LT, NULL_RTX, mode, unsignedp, 0,
6249 default_label);
6252 /* Value belongs to this node or to the right-hand subtree. */
6254 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6255 VOIDmode, 0),
6256 LE, NULL_RTX, mode, unsignedp, 0,
6257 label_rtx (node->code_label));
6259 emit_case_nodes (index, node->right, default_label, index_type);
6262 else if (node->right == 0 && node->left != 0)
6264 /* Deal with values to the right of this node,
6265 if they are possible. */
6266 if (!node_has_high_bound (node, index_type))
6268 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6269 VOIDmode, 0),
6270 GT, NULL_RTX, mode, unsignedp, 0,
6271 default_label);
6274 /* Value belongs to this node or to the left-hand subtree. */
6276 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6277 VOIDmode, 0),
6278 GE, NULL_RTX, mode, unsignedp, 0,
6279 label_rtx (node->code_label));
6281 emit_case_nodes (index, node->left, default_label, index_type);
6284 else
6286 /* Node has no children so we check low and high bounds to remove
6287 redundant tests. Only one of the bounds can exist,
6288 since otherwise this node is bounded--a case tested already. */
6290 if (!node_has_high_bound (node, index_type))
6292 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6293 VOIDmode, 0),
6294 GT, NULL_RTX, mode, unsignedp, 0,
6295 default_label);
6298 if (!node_has_low_bound (node, index_type))
6300 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6301 VOIDmode, 0),
6302 LT, NULL_RTX, mode, unsignedp, 0,
6303 default_label);
6306 emit_jump (label_rtx (node->code_label));