Add D30V options
[official-gcc.git] / gcc / stmt.c
blob3f102cf28cd31f88b6bc795a97333b9ba8002441
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 temp, handler_slot;
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 #if HAVE_nonlocal_goto
820 if (HAVE_nonlocal_goto)
821 emit_insn (gen_nonlocal_goto (lookup_static_chain (label),
822 copy_rtx (handler_slot),
823 copy_rtx (p->x_nonlocal_goto_stack_level),
824 label_ref));
825 else
826 #endif
828 rtx addr;
830 /* Restore frame pointer for containing function.
831 This sets the actual hard register used for the frame pointer
832 to the location of the function's incoming static chain info.
833 The non-local goto handler will then adjust it to contain the
834 proper value and reload the argument pointer, if needed. */
835 emit_move_insn (hard_frame_pointer_rtx, lookup_static_chain (label));
837 /* We have now loaded the frame pointer hardware register with
838 the address of that corresponds to the start of the virtual
839 stack vars. So replace virtual_stack_vars_rtx in all
840 addresses we use with stack_pointer_rtx. */
842 /* Get addr of containing function's current nonlocal goto handler,
843 which will do any cleanups and then jump to the label. */
844 addr = copy_rtx (handler_slot);
845 temp = copy_to_reg (replace_rtx (addr, virtual_stack_vars_rtx,
846 hard_frame_pointer_rtx));
848 /* Restore the stack pointer. Note this uses fp just restored. */
849 addr = p->x_nonlocal_goto_stack_level;
850 if (addr)
851 addr = replace_rtx (copy_rtx (addr),
852 virtual_stack_vars_rtx,
853 hard_frame_pointer_rtx);
855 emit_stack_restore (SAVE_NONLOCAL, addr, NULL_RTX);
857 /* USE of hard_frame_pointer_rtx added for consistency; not clear if
858 really needed. */
859 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
860 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
861 emit_indirect_jump (temp);
864 else
865 expand_goto_internal (label, label_rtx (label), NULL_RTX);
868 /* Generate RTL code for a `goto' statement with target label BODY.
869 LABEL should be a LABEL_REF.
870 LAST_INSN, if non-0, is the rtx we should consider as the last
871 insn emitted (for the purposes of cleaning up a return). */
873 static void
874 expand_goto_internal (body, label, last_insn)
875 tree body;
876 rtx label;
877 rtx last_insn;
879 struct nesting *block;
880 rtx stack_level = 0;
882 if (GET_CODE (label) != CODE_LABEL)
883 abort ();
885 /* If label has already been defined, we can tell now
886 whether and how we must alter the stack level. */
888 if (PREV_INSN (label) != 0)
890 /* Find the innermost pending block that contains the label.
891 (Check containment by comparing insn-uids.)
892 Then restore the outermost stack level within that block,
893 and do cleanups of all blocks contained in it. */
894 for (block = block_stack; block; block = block->next)
896 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
897 break;
898 if (block->data.block.stack_level != 0)
899 stack_level = block->data.block.stack_level;
900 /* Execute the cleanups for blocks we are exiting. */
901 if (block->data.block.cleanups != 0)
903 expand_cleanups (block->data.block.cleanups, NULL_TREE, 1, 1);
904 do_pending_stack_adjust ();
908 if (stack_level)
910 /* Ensure stack adjust isn't done by emit_jump, as this
911 would clobber the stack pointer. This one should be
912 deleted as dead by flow. */
913 clear_pending_stack_adjust ();
914 do_pending_stack_adjust ();
915 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
918 if (body != 0 && DECL_TOO_LATE (body))
919 error ("jump to `%s' invalidly jumps into binding contour",
920 IDENTIFIER_POINTER (DECL_NAME (body)));
922 /* Label not yet defined: may need to put this goto
923 on the fixup list. */
924 else if (! expand_fixup (body, label, last_insn))
926 /* No fixup needed. Record that the label is the target
927 of at least one goto that has no fixup. */
928 if (body != 0)
929 TREE_ADDRESSABLE (body) = 1;
932 emit_jump (label);
935 /* Generate if necessary a fixup for a goto
936 whose target label in tree structure (if any) is TREE_LABEL
937 and whose target in rtl is RTL_LABEL.
939 If LAST_INSN is nonzero, we pretend that the jump appears
940 after insn LAST_INSN instead of at the current point in the insn stream.
942 The fixup will be used later to insert insns just before the goto.
943 Those insns will restore the stack level as appropriate for the
944 target label, and will (in the case of C++) also invoke any object
945 destructors which have to be invoked when we exit the scopes which
946 are exited by the goto.
948 Value is nonzero if a fixup is made. */
950 static int
951 expand_fixup (tree_label, rtl_label, last_insn)
952 tree tree_label;
953 rtx rtl_label;
954 rtx last_insn;
956 struct nesting *block, *end_block;
958 /* See if we can recognize which block the label will be output in.
959 This is possible in some very common cases.
960 If we succeed, set END_BLOCK to that block.
961 Otherwise, set it to 0. */
963 if (cond_stack
964 && (rtl_label == cond_stack->data.cond.endif_label
965 || rtl_label == cond_stack->data.cond.next_label))
966 end_block = cond_stack;
967 /* If we are in a loop, recognize certain labels which
968 are likely targets. This reduces the number of fixups
969 we need to create. */
970 else if (loop_stack
971 && (rtl_label == loop_stack->data.loop.start_label
972 || rtl_label == loop_stack->data.loop.end_label
973 || rtl_label == loop_stack->data.loop.continue_label))
974 end_block = loop_stack;
975 else
976 end_block = 0;
978 /* Now set END_BLOCK to the binding level to which we will return. */
980 if (end_block)
982 struct nesting *next_block = end_block->all;
983 block = block_stack;
985 /* First see if the END_BLOCK is inside the innermost binding level.
986 If so, then no cleanups or stack levels are relevant. */
987 while (next_block && next_block != block)
988 next_block = next_block->all;
990 if (next_block)
991 return 0;
993 /* Otherwise, set END_BLOCK to the innermost binding level
994 which is outside the relevant control-structure nesting. */
995 next_block = block_stack->next;
996 for (block = block_stack; block != end_block; block = block->all)
997 if (block == next_block)
998 next_block = next_block->next;
999 end_block = next_block;
1002 /* Does any containing block have a stack level or cleanups?
1003 If not, no fixup is needed, and that is the normal case
1004 (the only case, for standard C). */
1005 for (block = block_stack; block != end_block; block = block->next)
1006 if (block->data.block.stack_level != 0
1007 || block->data.block.cleanups != 0)
1008 break;
1010 if (block != end_block)
1012 /* Ok, a fixup is needed. Add a fixup to the list of such. */
1013 struct goto_fixup *fixup
1014 = (struct goto_fixup *) ggc_alloc (sizeof (struct goto_fixup));
1015 /* In case an old stack level is restored, make sure that comes
1016 after any pending stack adjust. */
1017 /* ?? If the fixup isn't to come at the present position,
1018 doing the stack adjust here isn't useful. Doing it with our
1019 settings at that location isn't useful either. Let's hope
1020 someone does it! */
1021 if (last_insn == 0)
1022 do_pending_stack_adjust ();
1023 fixup->target = tree_label;
1024 fixup->target_rtl = rtl_label;
1026 /* Create a BLOCK node and a corresponding matched set of
1027 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
1028 this point. The notes will encapsulate any and all fixup
1029 code which we might later insert at this point in the insn
1030 stream. Also, the BLOCK node will be the parent (i.e. the
1031 `SUPERBLOCK') of any other BLOCK nodes which we might create
1032 later on when we are expanding the fixup code.
1034 Note that optimization passes (including expand_end_loop)
1035 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
1036 as a placeholder. */
1039 register rtx original_before_jump
1040 = last_insn ? last_insn : get_last_insn ();
1041 rtx start;
1042 rtx end;
1043 tree block;
1045 block = make_node (BLOCK);
1046 TREE_USED (block) = 1;
1048 if (!cfun->x_whole_function_mode_p)
1049 insert_block (block);
1050 else
1052 BLOCK_CHAIN (block)
1053 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
1054 BLOCK_CHAIN (DECL_INITIAL (current_function_decl))
1055 = block;
1058 start_sequence ();
1059 start = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
1060 if (cfun->x_whole_function_mode_p)
1061 NOTE_BLOCK (start) = block;
1062 fixup->before_jump = emit_note (NULL_PTR, NOTE_INSN_DELETED);
1063 end = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
1064 if (cfun->x_whole_function_mode_p)
1065 NOTE_BLOCK (end) = block;
1066 fixup->context = block;
1067 end_sequence ();
1068 emit_insns_after (start, original_before_jump);
1071 fixup->block_start_count = current_block_start_count;
1072 fixup->stack_level = 0;
1073 fixup->cleanup_list_list
1074 = ((block->data.block.outer_cleanups
1075 || block->data.block.cleanups)
1076 ? tree_cons (NULL_TREE, block->data.block.cleanups,
1077 block->data.block.outer_cleanups)
1078 : 0);
1079 fixup->next = goto_fixup_chain;
1080 goto_fixup_chain = fixup;
1083 return block != 0;
1088 /* Expand any needed fixups in the outputmost binding level of the
1089 function. FIRST_INSN is the first insn in the function. */
1091 void
1092 expand_fixups (first_insn)
1093 rtx first_insn;
1095 fixup_gotos (NULL_PTR, NULL_RTX, NULL_TREE, first_insn, 0);
1098 /* When exiting a binding contour, process all pending gotos requiring fixups.
1099 THISBLOCK is the structure that describes the block being exited.
1100 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
1101 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
1102 FIRST_INSN is the insn that began this contour.
1104 Gotos that jump out of this contour must restore the
1105 stack level and do the cleanups before actually jumping.
1107 DONT_JUMP_IN nonzero means report error there is a jump into this
1108 contour from before the beginning of the contour.
1109 This is also done if STACK_LEVEL is nonzero. */
1111 static void
1112 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
1113 struct nesting *thisblock;
1114 rtx stack_level;
1115 tree cleanup_list;
1116 rtx first_insn;
1117 int dont_jump_in;
1119 register struct goto_fixup *f, *prev;
1121 /* F is the fixup we are considering; PREV is the previous one. */
1122 /* We run this loop in two passes so that cleanups of exited blocks
1123 are run first, and blocks that are exited are marked so
1124 afterwards. */
1126 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1128 /* Test for a fixup that is inactive because it is already handled. */
1129 if (f->before_jump == 0)
1131 /* Delete inactive fixup from the chain, if that is easy to do. */
1132 if (prev != 0)
1133 prev->next = f->next;
1135 /* Has this fixup's target label been defined?
1136 If so, we can finalize it. */
1137 else if (PREV_INSN (f->target_rtl) != 0)
1139 register rtx cleanup_insns;
1141 /* If this fixup jumped into this contour from before the beginning
1142 of this contour, report an error. This code used to use
1143 the first non-label insn after f->target_rtl, but that's
1144 wrong since such can be added, by things like put_var_into_stack
1145 and have INSN_UIDs that are out of the range of the block. */
1146 /* ??? Bug: this does not detect jumping in through intermediate
1147 blocks that have stack levels or cleanups.
1148 It detects only a problem with the innermost block
1149 around the label. */
1150 if (f->target != 0
1151 && (dont_jump_in || stack_level || cleanup_list)
1152 && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
1153 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
1154 && ! DECL_ERROR_ISSUED (f->target))
1156 error_with_decl (f->target,
1157 "label `%s' used before containing binding contour");
1158 /* Prevent multiple errors for one label. */
1159 DECL_ERROR_ISSUED (f->target) = 1;
1162 /* We will expand the cleanups into a sequence of their own and
1163 then later on we will attach this new sequence to the insn
1164 stream just ahead of the actual jump insn. */
1166 start_sequence ();
1168 /* Temporarily restore the lexical context where we will
1169 logically be inserting the fixup code. We do this for the
1170 sake of getting the debugging information right. */
1172 pushlevel (0);
1173 set_block (f->context);
1175 /* Expand the cleanups for blocks this jump exits. */
1176 if (f->cleanup_list_list)
1178 tree lists;
1179 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1180 /* Marked elements correspond to blocks that have been closed.
1181 Do their cleanups. */
1182 if (TREE_ADDRESSABLE (lists)
1183 && TREE_VALUE (lists) != 0)
1185 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1186 /* Pop any pushes done in the cleanups,
1187 in case function is about to return. */
1188 do_pending_stack_adjust ();
1192 /* Restore stack level for the biggest contour that this
1193 jump jumps out of. */
1194 if (f->stack_level)
1195 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1197 /* Finish up the sequence containing the insns which implement the
1198 necessary cleanups, and then attach that whole sequence to the
1199 insn stream just ahead of the actual jump insn. Attaching it
1200 at that point insures that any cleanups which are in fact
1201 implicit C++ object destructions (which must be executed upon
1202 leaving the block) appear (to the debugger) to be taking place
1203 in an area of the generated code where the object(s) being
1204 destructed are still "in scope". */
1206 cleanup_insns = get_insns ();
1207 poplevel (1, 0, 0);
1209 end_sequence ();
1210 emit_insns_after (cleanup_insns, f->before_jump);
1213 f->before_jump = 0;
1217 /* For any still-undefined labels, do the cleanups for this block now.
1218 We must do this now since items in the cleanup list may go out
1219 of scope when the block ends. */
1220 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1221 if (f->before_jump != 0
1222 && PREV_INSN (f->target_rtl) == 0
1223 /* Label has still not appeared. If we are exiting a block with
1224 a stack level to restore, that started before the fixup,
1225 mark this stack level as needing restoration
1226 when the fixup is later finalized. */
1227 && thisblock != 0
1228 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1229 means the label is undefined. That's erroneous, but possible. */
1230 && (thisblock->data.block.block_start_count
1231 <= f->block_start_count))
1233 tree lists = f->cleanup_list_list;
1234 rtx cleanup_insns;
1236 for (; lists; lists = TREE_CHAIN (lists))
1237 /* If the following elt. corresponds to our containing block
1238 then the elt. must be for this block. */
1239 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1241 start_sequence ();
1242 pushlevel (0);
1243 set_block (f->context);
1244 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1245 do_pending_stack_adjust ();
1246 cleanup_insns = get_insns ();
1247 poplevel (1, 0, 0);
1248 end_sequence ();
1249 if (cleanup_insns != 0)
1250 f->before_jump
1251 = emit_insns_after (cleanup_insns, f->before_jump);
1253 f->cleanup_list_list = TREE_CHAIN (lists);
1256 if (stack_level)
1257 f->stack_level = stack_level;
1261 /* Return the number of times character C occurs in string S. */
1262 static int
1263 n_occurrences (c, s)
1264 int c;
1265 const char *s;
1267 int n = 0;
1268 while (*s)
1269 n += (*s++ == c);
1270 return n;
1273 /* Generate RTL for an asm statement (explicit assembler code).
1274 BODY is a STRING_CST node containing the assembler code text,
1275 or an ADDR_EXPR containing a STRING_CST. */
1277 void
1278 expand_asm (body)
1279 tree body;
1281 if (current_function_check_memory_usage)
1283 error ("`asm' cannot be used in function where memory usage is checked");
1284 return;
1287 if (TREE_CODE (body) == ADDR_EXPR)
1288 body = TREE_OPERAND (body, 0);
1290 emit_insn (gen_rtx_ASM_INPUT (VOIDmode,
1291 TREE_STRING_POINTER (body)));
1292 last_expr_type = 0;
1295 /* Generate RTL for an asm statement with arguments.
1296 STRING is the instruction template.
1297 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1298 Each output or input has an expression in the TREE_VALUE and
1299 a constraint-string in the TREE_PURPOSE.
1300 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1301 that is clobbered by this insn.
1303 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1304 Some elements of OUTPUTS may be replaced with trees representing temporary
1305 values. The caller should copy those temporary values to the originally
1306 specified lvalues.
1308 VOL nonzero means the insn is volatile; don't optimize it. */
1310 void
1311 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1312 tree string, outputs, inputs, clobbers;
1313 int vol;
1314 const char *filename;
1315 int line;
1317 rtvec argvec, constraints;
1318 rtx body;
1319 int ninputs = list_length (inputs);
1320 int noutputs = list_length (outputs);
1321 int ninout = 0;
1322 int nclobbers;
1323 tree tail;
1324 register int i;
1325 /* Vector of RTX's of evaluated output operands. */
1326 rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1327 int *inout_opnum = (int *) alloca (noutputs * sizeof (int));
1328 rtx *real_output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1329 enum machine_mode *inout_mode
1330 = (enum machine_mode *) alloca (noutputs * sizeof (enum machine_mode));
1331 /* The insn we have emitted. */
1332 rtx insn;
1334 /* An ASM with no outputs needs to be treated as volatile, for now. */
1335 if (noutputs == 0)
1336 vol = 1;
1338 if (current_function_check_memory_usage)
1340 error ("`asm' cannot be used with `-fcheck-memory-usage'");
1341 return;
1344 #ifdef MD_ASM_CLOBBERS
1345 /* Sometimes we wish to automatically clobber registers across an asm.
1346 Case in point is when the i386 backend moved from cc0 to a hard reg --
1347 maintaining source-level compatability means automatically clobbering
1348 the flags register. */
1349 MD_ASM_CLOBBERS (clobbers);
1350 #endif
1352 if (current_function_check_memory_usage)
1354 error ("`asm' cannot be used in function where memory usage is checked");
1355 return;
1358 /* Count the number of meaningful clobbered registers, ignoring what
1359 we would ignore later. */
1360 nclobbers = 0;
1361 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1363 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1365 i = decode_reg_name (regname);
1366 if (i >= 0 || i == -4)
1367 ++nclobbers;
1368 else if (i == -2)
1369 error ("unknown register name `%s' in `asm'", regname);
1372 last_expr_type = 0;
1374 /* Check that the number of alternatives is constant across all
1375 operands. */
1376 if (outputs || inputs)
1378 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1379 int nalternatives = n_occurrences (',', TREE_STRING_POINTER (tmp));
1380 tree next = inputs;
1382 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1384 error ("too many alternatives in `asm'");
1385 return;
1388 tmp = outputs;
1389 while (tmp)
1391 const char *constraint = TREE_STRING_POINTER (TREE_PURPOSE (tmp));
1393 if (n_occurrences (',', constraint) != nalternatives)
1395 error ("operand constraints for `asm' differ in number of alternatives");
1396 return;
1399 if (TREE_CHAIN (tmp))
1400 tmp = TREE_CHAIN (tmp);
1401 else
1402 tmp = next, next = 0;
1406 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1408 tree val = TREE_VALUE (tail);
1409 tree type = TREE_TYPE (val);
1410 char *constraint;
1411 char *p;
1412 int c_len;
1413 int j;
1414 int is_inout = 0;
1415 int allows_reg = 0;
1416 int allows_mem = 0;
1418 /* If there's an erroneous arg, emit no insn. */
1419 if (TREE_TYPE (val) == error_mark_node)
1420 return;
1422 /* Make sure constraint has `=' and does not have `+'. Also, see
1423 if it allows any register. Be liberal on the latter test, since
1424 the worst that happens if we get it wrong is we issue an error
1425 message. */
1427 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (tail)));
1428 constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1430 /* Allow the `=' or `+' to not be at the beginning of the string,
1431 since it wasn't explicitly documented that way, and there is a
1432 large body of code that puts it last. Swap the character to
1433 the front, so as not to uglify any place else. */
1434 switch (c_len)
1436 default:
1437 if ((p = strchr (constraint, '=')) != NULL)
1438 break;
1439 if ((p = strchr (constraint, '+')) != NULL)
1440 break;
1441 case 0:
1442 error ("output operand constraint lacks `='");
1443 return;
1446 if (p != constraint)
1448 j = *p;
1449 bcopy (constraint, constraint+1, p-constraint);
1450 *constraint = j;
1452 warning ("output constraint `%c' for operand %d is not at the beginning", j, i);
1455 is_inout = constraint[0] == '+';
1456 /* Replace '+' with '='. */
1457 constraint[0] = '=';
1458 /* Make sure we can specify the matching operand. */
1459 if (is_inout && i > 9)
1461 error ("output operand constraint %d contains `+'", i);
1462 return;
1465 for (j = 1; j < c_len; j++)
1466 switch (constraint[j])
1468 case '+':
1469 case '=':
1470 error ("operand constraint contains '+' or '=' at illegal position.");
1471 return;
1473 case '%':
1474 if (i + 1 == ninputs + noutputs)
1476 error ("`%%' constraint used with last operand");
1477 return;
1479 break;
1481 case '?': case '!': case '*': case '&':
1482 case 'E': case 'F': case 'G': case 'H':
1483 case 's': case 'i': case 'n':
1484 case 'I': case 'J': case 'K': case 'L': case 'M':
1485 case 'N': case 'O': case 'P': case ',':
1486 #ifdef EXTRA_CONSTRAINT
1487 case 'Q': case 'R': case 'S': case 'T': case 'U':
1488 #endif
1489 break;
1491 case '0': case '1': case '2': case '3': case '4':
1492 case '5': case '6': case '7': case '8': case '9':
1493 error ("matching constraint not valid in output operand");
1494 break;
1496 case 'V': case 'm': case 'o':
1497 allows_mem = 1;
1498 break;
1500 case '<': case '>':
1501 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1502 excepting those that expand_call created. So match memory
1503 and hope. */
1504 allows_mem = 1;
1505 break;
1507 case 'g': case 'X':
1508 allows_reg = 1;
1509 allows_mem = 1;
1510 break;
1512 case 'p': case 'r':
1513 default:
1514 allows_reg = 1;
1515 break;
1518 /* If an output operand is not a decl or indirect ref and our constraint
1519 allows a register, make a temporary to act as an intermediate.
1520 Make the asm insn write into that, then our caller will copy it to
1521 the real output operand. Likewise for promoted variables. */
1523 real_output_rtx[i] = NULL_RTX;
1524 if ((TREE_CODE (val) == INDIRECT_REF
1525 && allows_mem)
1526 || (DECL_P (val)
1527 && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1528 && ! (GET_CODE (DECL_RTL (val)) == REG
1529 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1530 || ! allows_reg
1531 || is_inout)
1533 if (! allows_reg)
1534 mark_addressable (TREE_VALUE (tail));
1536 output_rtx[i]
1537 = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode,
1538 EXPAND_MEMORY_USE_WO);
1540 if (! allows_reg && GET_CODE (output_rtx[i]) != MEM)
1541 error ("output number %d not directly addressable", i);
1542 if (! allows_mem && GET_CODE (output_rtx[i]) == MEM)
1544 real_output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1545 output_rtx[i] = gen_reg_rtx (GET_MODE (output_rtx[i]));
1546 if (is_inout)
1547 emit_move_insn (output_rtx[i], real_output_rtx[i]);
1550 else
1552 output_rtx[i] = assign_temp (type, 0, 0, 1);
1553 TREE_VALUE (tail) = make_tree (type, output_rtx[i]);
1556 if (is_inout)
1558 inout_mode[ninout] = TYPE_MODE (TREE_TYPE (TREE_VALUE (tail)));
1559 inout_opnum[ninout++] = i;
1563 ninputs += ninout;
1564 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1566 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1567 return;
1570 /* Make vectors for the expression-rtx and constraint strings. */
1572 argvec = rtvec_alloc (ninputs);
1573 constraints = rtvec_alloc (ninputs);
1575 body = gen_rtx_ASM_OPERANDS (VOIDmode, TREE_STRING_POINTER (string),
1576 empty_string, 0, argvec, constraints,
1577 filename, line);
1579 MEM_VOLATILE_P (body) = vol;
1581 /* Eval the inputs and put them into ARGVEC.
1582 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1584 i = 0;
1585 for (tail = inputs; tail; tail = TREE_CHAIN (tail))
1587 int j;
1588 int allows_reg = 0, allows_mem = 0;
1589 char *constraint, *orig_constraint;
1590 int c_len;
1591 rtx op;
1593 /* If there's an erroneous arg, emit no insn,
1594 because the ASM_INPUT would get VOIDmode
1595 and that could cause a crash in reload. */
1596 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1597 return;
1599 /* ??? Can this happen, and does the error message make any sense? */
1600 if (TREE_PURPOSE (tail) == NULL_TREE)
1602 error ("hard register `%s' listed as input operand to `asm'",
1603 TREE_STRING_POINTER (TREE_VALUE (tail)) );
1604 return;
1607 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (tail)));
1608 constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1609 orig_constraint = constraint;
1611 /* Make sure constraint has neither `=', `+', nor '&'. */
1613 for (j = 0; j < c_len; j++)
1614 switch (constraint[j])
1616 case '+': case '=': case '&':
1617 if (constraint == orig_constraint)
1619 error ("input operand constraint contains `%c'",
1620 constraint[j]);
1621 return;
1623 break;
1625 case '%':
1626 if (constraint == orig_constraint
1627 && i + 1 == ninputs - ninout)
1629 error ("`%%' constraint used with last operand");
1630 return;
1632 break;
1634 case 'V': case 'm': case 'o':
1635 allows_mem = 1;
1636 break;
1638 case '<': case '>':
1639 case '?': case '!': case '*':
1640 case 'E': case 'F': case 'G': case 'H': case 'X':
1641 case 's': case 'i': case 'n':
1642 case 'I': case 'J': case 'K': case 'L': case 'M':
1643 case 'N': case 'O': case 'P': case ',':
1644 #ifdef EXTRA_CONSTRAINT
1645 case 'Q': case 'R': case 'S': case 'T': case 'U':
1646 #endif
1647 break;
1649 /* Whether or not a numeric constraint allows a register is
1650 decided by the matching constraint, and so there is no need
1651 to do anything special with them. We must handle them in
1652 the default case, so that we don't unnecessarily force
1653 operands to memory. */
1654 case '0': case '1': case '2': case '3': case '4':
1655 case '5': case '6': case '7': case '8': case '9':
1656 if (constraint[j] >= '0' + noutputs)
1658 error
1659 ("matching constraint references invalid operand number");
1660 return;
1663 /* Try and find the real constraint for this dup. */
1664 if ((j == 0 && c_len == 1)
1665 || (j == 1 && c_len == 2 && constraint[0] == '%'))
1667 tree o = outputs;
1669 for (j = constraint[j] - '0'; j > 0; --j)
1670 o = TREE_CHAIN (o);
1672 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (o)));
1673 constraint = TREE_STRING_POINTER (TREE_PURPOSE (o));
1674 j = 0;
1675 break;
1678 /* ... fall through ... */
1680 case 'p': case 'r':
1681 default:
1682 allows_reg = 1;
1683 break;
1685 case 'g':
1686 allows_reg = 1;
1687 allows_mem = 1;
1688 break;
1691 if (! allows_reg && allows_mem)
1692 mark_addressable (TREE_VALUE (tail));
1694 op = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode, 0);
1696 if (asm_operand_ok (op, constraint) <= 0)
1698 if (allows_reg)
1699 op = force_reg (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))), op);
1700 else if (!allows_mem)
1701 warning ("asm operand %d probably doesn't match constraints", i);
1702 else if (CONSTANT_P (op))
1703 op = force_const_mem (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1704 op);
1705 else if (GET_CODE (op) == REG
1706 || GET_CODE (op) == SUBREG
1707 || GET_CODE (op) == CONCAT)
1709 tree type = TREE_TYPE (TREE_VALUE (tail));
1710 rtx memloc = assign_temp (type, 1, 1, 1);
1712 emit_move_insn (memloc, op);
1713 op = memloc;
1716 else if (GET_CODE (op) == MEM && MEM_VOLATILE_P (op))
1717 /* We won't recognize volatile memory as available a
1718 memory_operand at this point. Ignore it. */
1720 else if (queued_subexp_p (op))
1722 else
1723 /* ??? Leave this only until we have experience with what
1724 happens in combine and elsewhere when constraints are
1725 not satisfied. */
1726 warning ("asm operand %d probably doesn't match constraints", i);
1728 XVECEXP (body, 3, i) = op;
1730 XVECEXP (body, 4, i) /* constraints */
1731 = gen_rtx_ASM_INPUT (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1732 orig_constraint);
1733 i++;
1736 /* Protect all the operands from the queue now that they have all been
1737 evaluated. */
1739 for (i = 0; i < ninputs - ninout; i++)
1740 XVECEXP (body, 3, i) = protect_from_queue (XVECEXP (body, 3, i), 0);
1742 for (i = 0; i < noutputs; i++)
1743 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1745 /* For in-out operands, copy output rtx to input rtx. */
1746 for (i = 0; i < ninout; i++)
1748 int j = inout_opnum[i];
1750 XVECEXP (body, 3, ninputs - ninout + i) /* argvec */
1751 = output_rtx[j];
1752 XVECEXP (body, 4, ninputs - ninout + i) /* constraints */
1753 = gen_rtx_ASM_INPUT (inout_mode[i], digit_strings[j]);
1756 /* Now, for each output, construct an rtx
1757 (set OUTPUT (asm_operands INSN OUTPUTNUMBER OUTPUTCONSTRAINT
1758 ARGVEC CONSTRAINTS))
1759 If there is more than one, put them inside a PARALLEL. */
1761 if (noutputs == 1 && nclobbers == 0)
1763 XSTR (body, 1) = TREE_STRING_POINTER (TREE_PURPOSE (outputs));
1764 insn = emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1767 else if (noutputs == 0 && nclobbers == 0)
1769 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1770 insn = emit_insn (body);
1773 else
1775 rtx obody = body;
1776 int num = noutputs;
1778 if (num == 0)
1779 num = 1;
1781 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1783 /* For each output operand, store a SET. */
1784 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1786 XVECEXP (body, 0, i)
1787 = gen_rtx_SET (VOIDmode,
1788 output_rtx[i],
1789 gen_rtx_ASM_OPERANDS
1790 (VOIDmode,
1791 TREE_STRING_POINTER (string),
1792 TREE_STRING_POINTER (TREE_PURPOSE (tail)),
1793 i, argvec, constraints,
1794 filename, line));
1796 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1799 /* If there are no outputs (but there are some clobbers)
1800 store the bare ASM_OPERANDS into the PARALLEL. */
1802 if (i == 0)
1803 XVECEXP (body, 0, i++) = obody;
1805 /* Store (clobber REG) for each clobbered register specified. */
1807 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1809 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1810 int j = decode_reg_name (regname);
1812 if (j < 0)
1814 if (j == -3) /* `cc', which is not a register */
1815 continue;
1817 if (j == -4) /* `memory', don't cache memory across asm */
1819 XVECEXP (body, 0, i++)
1820 = gen_rtx_CLOBBER (VOIDmode,
1821 gen_rtx_MEM
1822 (BLKmode,
1823 gen_rtx_SCRATCH (VOIDmode)));
1824 continue;
1827 /* Ignore unknown register, error already signaled. */
1828 continue;
1831 /* Use QImode since that's guaranteed to clobber just one reg. */
1832 XVECEXP (body, 0, i++)
1833 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (QImode, j));
1836 insn = emit_insn (body);
1839 /* For any outputs that needed reloading into registers, spill them
1840 back to where they belong. */
1841 for (i = 0; i < noutputs; ++i)
1842 if (real_output_rtx[i])
1843 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1845 free_temp_slots ();
1848 /* Generate RTL to evaluate the expression EXP
1849 and remember it in case this is the VALUE in a ({... VALUE; }) constr. */
1851 void
1852 expand_expr_stmt (exp)
1853 tree exp;
1855 /* If -W, warn about statements with no side effects,
1856 except for an explicit cast to void (e.g. for assert()), and
1857 except inside a ({...}) where they may be useful. */
1858 if (expr_stmts_for_value == 0 && exp != error_mark_node)
1860 if (! TREE_SIDE_EFFECTS (exp)
1861 && (extra_warnings || warn_unused_value)
1862 && !(TREE_CODE (exp) == CONVERT_EXPR
1863 && VOID_TYPE_P (TREE_TYPE (exp))))
1864 warning_with_file_and_line (emit_filename, emit_lineno,
1865 "statement with no effect");
1866 else if (warn_unused_value)
1867 warn_if_unused_value (exp);
1870 /* If EXP is of function type and we are expanding statements for
1871 value, convert it to pointer-to-function. */
1872 if (expr_stmts_for_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
1873 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
1875 last_expr_type = TREE_TYPE (exp);
1876 last_expr_value = expand_expr (exp,
1877 (expr_stmts_for_value
1878 ? NULL_RTX : const0_rtx),
1879 VOIDmode, 0);
1881 /* If all we do is reference a volatile value in memory,
1882 copy it to a register to be sure it is actually touched. */
1883 if (last_expr_value != 0 && GET_CODE (last_expr_value) == MEM
1884 && TREE_THIS_VOLATILE (exp))
1886 if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode)
1888 else if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
1889 copy_to_reg (last_expr_value);
1890 else
1892 rtx lab = gen_label_rtx ();
1894 /* Compare the value with itself to reference it. */
1895 emit_cmp_and_jump_insns (last_expr_value, last_expr_value, EQ,
1896 expand_expr (TYPE_SIZE (last_expr_type),
1897 NULL_RTX, VOIDmode, 0),
1898 BLKmode, 0,
1899 TYPE_ALIGN (last_expr_type) / BITS_PER_UNIT,
1900 lab);
1901 emit_label (lab);
1905 /* If this expression is part of a ({...}) and is in memory, we may have
1906 to preserve temporaries. */
1907 preserve_temp_slots (last_expr_value);
1909 /* Free any temporaries used to evaluate this expression. Any temporary
1910 used as a result of this expression will already have been preserved
1911 above. */
1912 free_temp_slots ();
1914 emit_queue ();
1917 /* Warn if EXP contains any computations whose results are not used.
1918 Return 1 if a warning is printed; 0 otherwise. */
1921 warn_if_unused_value (exp)
1922 tree exp;
1924 if (TREE_USED (exp))
1925 return 0;
1927 switch (TREE_CODE (exp))
1929 case PREINCREMENT_EXPR:
1930 case POSTINCREMENT_EXPR:
1931 case PREDECREMENT_EXPR:
1932 case POSTDECREMENT_EXPR:
1933 case MODIFY_EXPR:
1934 case INIT_EXPR:
1935 case TARGET_EXPR:
1936 case CALL_EXPR:
1937 case METHOD_CALL_EXPR:
1938 case RTL_EXPR:
1939 case TRY_CATCH_EXPR:
1940 case WITH_CLEANUP_EXPR:
1941 case EXIT_EXPR:
1942 /* We don't warn about COND_EXPR because it may be a useful
1943 construct if either arm contains a side effect. */
1944 case COND_EXPR:
1945 return 0;
1947 case BIND_EXPR:
1948 /* For a binding, warn if no side effect within it. */
1949 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1951 case SAVE_EXPR:
1952 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1954 case TRUTH_ORIF_EXPR:
1955 case TRUTH_ANDIF_EXPR:
1956 /* In && or ||, warn if 2nd operand has no side effect. */
1957 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1959 case COMPOUND_EXPR:
1960 if (TREE_NO_UNUSED_WARNING (exp))
1961 return 0;
1962 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
1963 return 1;
1964 /* Let people do `(foo (), 0)' without a warning. */
1965 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1966 return 0;
1967 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1969 case NOP_EXPR:
1970 case CONVERT_EXPR:
1971 case NON_LVALUE_EXPR:
1972 /* Don't warn about values cast to void. */
1973 if (VOID_TYPE_P (TREE_TYPE (exp)))
1974 return 0;
1975 /* Don't warn about conversions not explicit in the user's program. */
1976 if (TREE_NO_UNUSED_WARNING (exp))
1977 return 0;
1978 /* Assignment to a cast usually results in a cast of a modify.
1979 Don't complain about that. There can be an arbitrary number of
1980 casts before the modify, so we must loop until we find the first
1981 non-cast expression and then test to see if that is a modify. */
1983 tree tem = TREE_OPERAND (exp, 0);
1985 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
1986 tem = TREE_OPERAND (tem, 0);
1988 if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
1989 || TREE_CODE (tem) == CALL_EXPR)
1990 return 0;
1992 goto warn;
1994 case INDIRECT_REF:
1995 /* Don't warn about automatic dereferencing of references, since
1996 the user cannot control it. */
1997 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
1998 return warn_if_unused_value (TREE_OPERAND (exp, 0));
1999 /* ... fall through ... */
2001 default:
2002 /* Referencing a volatile value is a side effect, so don't warn. */
2003 if ((DECL_P (exp)
2004 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
2005 && TREE_THIS_VOLATILE (exp))
2006 return 0;
2008 /* If this is an expression which has no operands, there is no value
2009 to be unused. There are no such language-independent codes,
2010 but front ends may define such. */
2011 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'e'
2012 && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
2013 return 0;
2015 warn:
2016 warning_with_file_and_line (emit_filename, emit_lineno,
2017 "value computed is not used");
2018 return 1;
2022 /* Clear out the memory of the last expression evaluated. */
2024 void
2025 clear_last_expr ()
2027 last_expr_type = 0;
2030 /* Begin a statement which will return a value.
2031 Return the RTL_EXPR for this statement expr.
2032 The caller must save that value and pass it to expand_end_stmt_expr. */
2034 tree
2035 expand_start_stmt_expr ()
2037 int momentary;
2038 tree t;
2040 /* Make the RTL_EXPR node temporary, not momentary,
2041 so that rtl_expr_chain doesn't become garbage. */
2042 momentary = suspend_momentary ();
2043 t = make_node (RTL_EXPR);
2044 resume_momentary (momentary);
2045 do_pending_stack_adjust ();
2046 start_sequence_for_rtl_expr (t);
2047 NO_DEFER_POP;
2048 expr_stmts_for_value++;
2049 return t;
2052 /* Restore the previous state at the end of a statement that returns a value.
2053 Returns a tree node representing the statement's value and the
2054 insns to compute the value.
2056 The nodes of that expression have been freed by now, so we cannot use them.
2057 But we don't want to do that anyway; the expression has already been
2058 evaluated and now we just want to use the value. So generate a RTL_EXPR
2059 with the proper type and RTL value.
2061 If the last substatement was not an expression,
2062 return something with type `void'. */
2064 tree
2065 expand_end_stmt_expr (t)
2066 tree t;
2068 OK_DEFER_POP;
2070 if (last_expr_type == 0)
2072 last_expr_type = void_type_node;
2073 last_expr_value = const0_rtx;
2075 else if (last_expr_value == 0)
2076 /* There are some cases where this can happen, such as when the
2077 statement is void type. */
2078 last_expr_value = const0_rtx;
2079 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2080 /* Remove any possible QUEUED. */
2081 last_expr_value = protect_from_queue (last_expr_value, 0);
2083 emit_queue ();
2085 TREE_TYPE (t) = last_expr_type;
2086 RTL_EXPR_RTL (t) = last_expr_value;
2087 RTL_EXPR_SEQUENCE (t) = get_insns ();
2089 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2091 end_sequence ();
2093 /* Don't consider deleting this expr or containing exprs at tree level. */
2094 TREE_SIDE_EFFECTS (t) = 1;
2095 /* Propagate volatility of the actual RTL expr. */
2096 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2098 last_expr_type = 0;
2099 expr_stmts_for_value--;
2101 return t;
2104 /* Generate RTL for the start of an if-then. COND is the expression
2105 whose truth should be tested.
2107 If EXITFLAG is nonzero, this conditional is visible to
2108 `exit_something'. */
2110 void
2111 expand_start_cond (cond, exitflag)
2112 tree cond;
2113 int exitflag;
2115 struct nesting *thiscond = ALLOC_NESTING ();
2117 /* Make an entry on cond_stack for the cond we are entering. */
2119 thiscond->next = cond_stack;
2120 thiscond->all = nesting_stack;
2121 thiscond->depth = ++nesting_depth;
2122 thiscond->data.cond.next_label = gen_label_rtx ();
2123 /* Before we encounter an `else', we don't need a separate exit label
2124 unless there are supposed to be exit statements
2125 to exit this conditional. */
2126 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2127 thiscond->data.cond.endif_label = thiscond->exit_label;
2128 cond_stack = thiscond;
2129 nesting_stack = thiscond;
2131 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2134 /* Generate RTL between then-clause and the elseif-clause
2135 of an if-then-elseif-.... */
2137 void
2138 expand_start_elseif (cond)
2139 tree cond;
2141 if (cond_stack->data.cond.endif_label == 0)
2142 cond_stack->data.cond.endif_label = gen_label_rtx ();
2143 emit_jump (cond_stack->data.cond.endif_label);
2144 emit_label (cond_stack->data.cond.next_label);
2145 cond_stack->data.cond.next_label = gen_label_rtx ();
2146 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2149 /* Generate RTL between the then-clause and the else-clause
2150 of an if-then-else. */
2152 void
2153 expand_start_else ()
2155 if (cond_stack->data.cond.endif_label == 0)
2156 cond_stack->data.cond.endif_label = gen_label_rtx ();
2158 emit_jump (cond_stack->data.cond.endif_label);
2159 emit_label (cond_stack->data.cond.next_label);
2160 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
2163 /* After calling expand_start_else, turn this "else" into an "else if"
2164 by providing another condition. */
2166 void
2167 expand_elseif (cond)
2168 tree cond;
2170 cond_stack->data.cond.next_label = gen_label_rtx ();
2171 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2174 /* Generate RTL for the end of an if-then.
2175 Pop the record for it off of cond_stack. */
2177 void
2178 expand_end_cond ()
2180 struct nesting *thiscond = cond_stack;
2182 do_pending_stack_adjust ();
2183 if (thiscond->data.cond.next_label)
2184 emit_label (thiscond->data.cond.next_label);
2185 if (thiscond->data.cond.endif_label)
2186 emit_label (thiscond->data.cond.endif_label);
2188 POPSTACK (cond_stack);
2189 last_expr_type = 0;
2194 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2195 loop should be exited by `exit_something'. This is a loop for which
2196 `expand_continue' will jump to the top of the loop.
2198 Make an entry on loop_stack to record the labels associated with
2199 this loop. */
2201 struct nesting *
2202 expand_start_loop (exit_flag)
2203 int exit_flag;
2205 register struct nesting *thisloop = ALLOC_NESTING ();
2207 /* Make an entry on loop_stack for the loop we are entering. */
2209 thisloop->next = loop_stack;
2210 thisloop->all = nesting_stack;
2211 thisloop->depth = ++nesting_depth;
2212 thisloop->data.loop.start_label = gen_label_rtx ();
2213 thisloop->data.loop.end_label = gen_label_rtx ();
2214 thisloop->data.loop.alt_end_label = 0;
2215 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2216 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2217 loop_stack = thisloop;
2218 nesting_stack = thisloop;
2220 do_pending_stack_adjust ();
2221 emit_queue ();
2222 emit_note (NULL_PTR, NOTE_INSN_LOOP_BEG);
2223 emit_label (thisloop->data.loop.start_label);
2225 return thisloop;
2228 /* Like expand_start_loop but for a loop where the continuation point
2229 (for expand_continue_loop) will be specified explicitly. */
2231 struct nesting *
2232 expand_start_loop_continue_elsewhere (exit_flag)
2233 int exit_flag;
2235 struct nesting *thisloop = expand_start_loop (exit_flag);
2236 loop_stack->data.loop.continue_label = gen_label_rtx ();
2237 return thisloop;
2240 /* Specify the continuation point for a loop started with
2241 expand_start_loop_continue_elsewhere.
2242 Use this at the point in the code to which a continue statement
2243 should jump. */
2245 void
2246 expand_loop_continue_here ()
2248 do_pending_stack_adjust ();
2249 emit_note (NULL_PTR, NOTE_INSN_LOOP_CONT);
2250 emit_label (loop_stack->data.loop.continue_label);
2253 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2254 Pop the block off of loop_stack. */
2256 void
2257 expand_end_loop ()
2259 rtx start_label = loop_stack->data.loop.start_label;
2260 rtx insn = get_last_insn ();
2261 int needs_end_jump = 1;
2263 /* Mark the continue-point at the top of the loop if none elsewhere. */
2264 if (start_label == loop_stack->data.loop.continue_label)
2265 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2267 do_pending_stack_adjust ();
2269 /* If optimizing, perhaps reorder the loop.
2270 First, try to use a condjump near the end.
2271 expand_exit_loop_if_false ends loops with unconditional jumps,
2272 like this:
2274 if (test) goto label;
2275 optional: cleanup
2276 goto loop_stack->data.loop.end_label
2277 barrier
2278 label:
2280 If we find such a pattern, we can end the loop earlier. */
2282 if (optimize
2283 && GET_CODE (insn) == CODE_LABEL
2284 && LABEL_NAME (insn) == NULL
2285 && GET_CODE (PREV_INSN (insn)) == BARRIER)
2287 rtx label = insn;
2288 rtx jump = PREV_INSN (PREV_INSN (label));
2290 if (GET_CODE (jump) == JUMP_INSN
2291 && GET_CODE (PATTERN (jump)) == SET
2292 && SET_DEST (PATTERN (jump)) == pc_rtx
2293 && GET_CODE (SET_SRC (PATTERN (jump))) == LABEL_REF
2294 && (XEXP (SET_SRC (PATTERN (jump)), 0)
2295 == loop_stack->data.loop.end_label))
2297 rtx prev;
2299 /* The test might be complex and reference LABEL multiple times,
2300 like the loop in loop_iterations to set vtop. To handle this,
2301 we move LABEL. */
2302 insn = PREV_INSN (label);
2303 reorder_insns (label, label, start_label);
2305 for (prev = PREV_INSN (jump); ; prev = PREV_INSN (prev))
2307 /* We ignore line number notes, but if we see any other note,
2308 in particular NOTE_INSN_BLOCK_*, NOTE_INSN_EH_REGION_*,
2309 NOTE_INSN_LOOP_*, we disable this optimization. */
2310 if (GET_CODE (prev) == NOTE)
2312 if (NOTE_LINE_NUMBER (prev) < 0)
2313 break;
2314 continue;
2316 if (GET_CODE (prev) == CODE_LABEL)
2317 break;
2318 if (GET_CODE (prev) == JUMP_INSN)
2320 if (GET_CODE (PATTERN (prev)) == SET
2321 && SET_DEST (PATTERN (prev)) == pc_rtx
2322 && GET_CODE (SET_SRC (PATTERN (prev))) == IF_THEN_ELSE
2323 && (GET_CODE (XEXP (SET_SRC (PATTERN (prev)), 1))
2324 == LABEL_REF)
2325 && XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0) == label)
2327 XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0)
2328 = start_label;
2329 emit_note_after (NOTE_INSN_LOOP_END, prev);
2330 needs_end_jump = 0;
2332 break;
2338 /* If the loop starts with a loop exit, roll that to the end where
2339 it will optimize together with the jump back.
2341 We look for the conditional branch to the exit, except that once
2342 we find such a branch, we don't look past 30 instructions.
2344 In more detail, if the loop presently looks like this (in pseudo-C):
2346 start_label:
2347 if (test) goto end_label;
2348 body;
2349 goto start_label;
2350 end_label:
2352 transform it to look like:
2354 goto start_label;
2355 newstart_label:
2356 body;
2357 start_label:
2358 if (test) goto end_label;
2359 goto newstart_label;
2360 end_label:
2362 Here, the `test' may actually consist of some reasonably complex
2363 code, terminating in a test. */
2365 if (optimize
2366 && needs_end_jump
2368 ! (GET_CODE (insn) == JUMP_INSN
2369 && GET_CODE (PATTERN (insn)) == SET
2370 && SET_DEST (PATTERN (insn)) == pc_rtx
2371 && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE))
2373 int eh_regions = 0;
2374 int num_insns = 0;
2375 rtx last_test_insn = NULL_RTX;
2377 /* Scan insns from the top of the loop looking for a qualified
2378 conditional exit. */
2379 for (insn = NEXT_INSN (loop_stack->data.loop.start_label); insn;
2380 insn = NEXT_INSN (insn))
2382 if (GET_CODE (insn) == NOTE)
2384 if (optimize < 2
2385 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2386 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2387 /* The code that actually moves the exit test will
2388 carefully leave BLOCK notes in their original
2389 location. That means, however, that we can't debug
2390 the exit test itself. So, we refuse to move code
2391 containing BLOCK notes at low optimization levels. */
2392 break;
2394 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG)
2395 ++eh_regions;
2396 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END)
2398 --eh_regions;
2399 if (eh_regions < 0)
2400 /* We've come to the end of an EH region, but
2401 never saw the beginning of that region. That
2402 means that an EH region begins before the top
2403 of the loop, and ends in the middle of it. The
2404 existence of such a situation violates a basic
2405 assumption in this code, since that would imply
2406 that even when EH_REGIONS is zero, we might
2407 move code out of an exception region. */
2408 abort ();
2411 /* We must not walk into a nested loop. */
2412 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
2413 break;
2415 /* We already know this INSN is a NOTE, so there's no
2416 point in looking at it to see if it's a JUMP. */
2417 continue;
2420 if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == INSN)
2421 num_insns++;
2423 if (last_test_insn && num_insns > 30)
2424 break;
2426 if (eh_regions > 0)
2427 /* We don't want to move a partial EH region. Consider:
2429 while ( ( { try {
2430 if (cond ()) 0;
2431 else {
2432 bar();
2435 } catch (...) {
2437 } )) {
2438 body;
2441 This isn't legal C++, but here's what it's supposed to
2442 mean: if cond() is true, stop looping. Otherwise,
2443 call bar, and keep looping. In addition, if cond
2444 throws an exception, catch it and keep looping. Such
2445 constructs are certainy legal in LISP.
2447 We should not move the `if (cond()) 0' test since then
2448 the EH-region for the try-block would be broken up.
2449 (In this case we would the EH_BEG note for the `try'
2450 and `if cond()' but not the call to bar() or the
2451 EH_END note.)
2453 So we don't look for tests within an EH region. */
2454 continue;
2456 if (GET_CODE (insn) == JUMP_INSN
2457 && GET_CODE (PATTERN (insn)) == SET
2458 && SET_DEST (PATTERN (insn)) == pc_rtx)
2460 /* This is indeed a jump. */
2461 rtx dest1 = NULL_RTX;
2462 rtx dest2 = NULL_RTX;
2463 rtx potential_last_test;
2464 if (GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE)
2466 /* A conditional jump. */
2467 dest1 = XEXP (SET_SRC (PATTERN (insn)), 1);
2468 dest2 = XEXP (SET_SRC (PATTERN (insn)), 2);
2469 potential_last_test = insn;
2471 else
2473 /* An unconditional jump. */
2474 dest1 = SET_SRC (PATTERN (insn));
2475 /* Include the BARRIER after the JUMP. */
2476 potential_last_test = NEXT_INSN (insn);
2479 do {
2480 if (dest1 && GET_CODE (dest1) == LABEL_REF
2481 && ((XEXP (dest1, 0)
2482 == loop_stack->data.loop.alt_end_label)
2483 || (XEXP (dest1, 0)
2484 == loop_stack->data.loop.end_label)))
2486 last_test_insn = potential_last_test;
2487 break;
2490 /* If this was a conditional jump, there may be
2491 another label at which we should look. */
2492 dest1 = dest2;
2493 dest2 = NULL_RTX;
2494 } while (dest1);
2498 if (last_test_insn != 0 && last_test_insn != get_last_insn ())
2500 /* We found one. Move everything from there up
2501 to the end of the loop, and add a jump into the loop
2502 to jump to there. */
2503 register rtx newstart_label = gen_label_rtx ();
2504 register rtx start_move = start_label;
2505 rtx next_insn;
2507 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2508 then we want to move this note also. */
2509 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2510 && (NOTE_LINE_NUMBER (PREV_INSN (start_move))
2511 == NOTE_INSN_LOOP_CONT))
2512 start_move = PREV_INSN (start_move);
2514 emit_label_after (newstart_label, PREV_INSN (start_move));
2516 /* Actually move the insns. Start at the beginning, and
2517 keep copying insns until we've copied the
2518 last_test_insn. */
2519 for (insn = start_move; insn; insn = next_insn)
2521 /* Figure out which insn comes after this one. We have
2522 to do this before we move INSN. */
2523 if (insn == last_test_insn)
2524 /* We've moved all the insns. */
2525 next_insn = NULL_RTX;
2526 else
2527 next_insn = NEXT_INSN (insn);
2529 if (GET_CODE (insn) == NOTE
2530 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2531 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2532 /* We don't want to move NOTE_INSN_BLOCK_BEGs or
2533 NOTE_INSN_BLOCK_ENDs because the correct generation
2534 of debugging information depends on these appearing
2535 in the same order in the RTL and in the tree
2536 structure, where they are represented as BLOCKs.
2537 So, we don't move block notes. Of course, moving
2538 the code inside the block is likely to make it
2539 impossible to debug the instructions in the exit
2540 test, but such is the price of optimization. */
2541 continue;
2543 /* Move the INSN. */
2544 reorder_insns (insn, insn, get_last_insn ());
2547 emit_jump_insn_after (gen_jump (start_label),
2548 PREV_INSN (newstart_label));
2549 emit_barrier_after (PREV_INSN (newstart_label));
2550 start_label = newstart_label;
2554 if (needs_end_jump)
2556 emit_jump (start_label);
2557 emit_note (NULL_PTR, NOTE_INSN_LOOP_END);
2559 emit_label (loop_stack->data.loop.end_label);
2561 POPSTACK (loop_stack);
2563 last_expr_type = 0;
2566 /* Generate a jump to the current loop's continue-point.
2567 This is usually the top of the loop, but may be specified
2568 explicitly elsewhere. If not currently inside a loop,
2569 return 0 and do nothing; caller will print an error message. */
2572 expand_continue_loop (whichloop)
2573 struct nesting *whichloop;
2575 last_expr_type = 0;
2576 if (whichloop == 0)
2577 whichloop = loop_stack;
2578 if (whichloop == 0)
2579 return 0;
2580 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2581 NULL_RTX);
2582 return 1;
2585 /* Generate a jump to exit the current loop. If not currently inside a loop,
2586 return 0 and do nothing; caller will print an error message. */
2589 expand_exit_loop (whichloop)
2590 struct nesting *whichloop;
2592 last_expr_type = 0;
2593 if (whichloop == 0)
2594 whichloop = loop_stack;
2595 if (whichloop == 0)
2596 return 0;
2597 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2598 return 1;
2601 /* Generate a conditional jump to exit the current loop if COND
2602 evaluates to zero. If not currently inside a loop,
2603 return 0 and do nothing; caller will print an error message. */
2606 expand_exit_loop_if_false (whichloop, cond)
2607 struct nesting *whichloop;
2608 tree cond;
2610 rtx label = gen_label_rtx ();
2611 rtx last_insn;
2612 last_expr_type = 0;
2614 if (whichloop == 0)
2615 whichloop = loop_stack;
2616 if (whichloop == 0)
2617 return 0;
2618 /* In order to handle fixups, we actually create a conditional jump
2619 around a unconditional branch to exit the loop. If fixups are
2620 necessary, they go before the unconditional branch. */
2623 do_jump (cond, NULL_RTX, label);
2624 last_insn = get_last_insn ();
2625 if (GET_CODE (last_insn) == CODE_LABEL)
2626 whichloop->data.loop.alt_end_label = last_insn;
2627 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2628 NULL_RTX);
2629 emit_label (label);
2631 return 1;
2634 /* Return nonzero if the loop nest is empty. Else return zero. */
2637 stmt_loop_nest_empty ()
2639 /* cfun->stmt can be NULL if we are building a call to get the
2640 EH context for a setjmp/longjmp EH target and the current
2641 function was a deferred inline function. */
2642 return (cfun->stmt == NULL || loop_stack == NULL);
2645 /* Return non-zero if we should preserve sub-expressions as separate
2646 pseudos. We never do so if we aren't optimizing. We always do so
2647 if -fexpensive-optimizations.
2649 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2650 the loop may still be a small one. */
2653 preserve_subexpressions_p ()
2655 rtx insn;
2657 if (flag_expensive_optimizations)
2658 return 1;
2660 if (optimize == 0 || cfun == 0 || cfun->stmt == 0 || loop_stack == 0)
2661 return 0;
2663 insn = get_last_insn_anywhere ();
2665 return (insn
2666 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2667 < n_non_fixed_regs * 3));
2671 /* Generate a jump to exit the current loop, conditional, binding contour
2672 or case statement. Not all such constructs are visible to this function,
2673 only those started with EXIT_FLAG nonzero. Individual languages use
2674 the EXIT_FLAG parameter to control which kinds of constructs you can
2675 exit this way.
2677 If not currently inside anything that can be exited,
2678 return 0 and do nothing; caller will print an error message. */
2681 expand_exit_something ()
2683 struct nesting *n;
2684 last_expr_type = 0;
2685 for (n = nesting_stack; n; n = n->all)
2686 if (n->exit_label != 0)
2688 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2689 return 1;
2692 return 0;
2695 /* Generate RTL to return from the current function, with no value.
2696 (That is, we do not do anything about returning any value.) */
2698 void
2699 expand_null_return ()
2701 struct nesting *block = block_stack;
2702 rtx last_insn = get_last_insn ();
2704 /* If this function was declared to return a value, but we
2705 didn't, clobber the return registers so that they are not
2706 propogated live to the rest of the function. */
2707 clobber_return_register ();
2709 /* Does any pending block have cleanups? */
2710 while (block && block->data.block.cleanups == 0)
2711 block = block->next;
2713 /* If yes, use a goto to return, since that runs cleanups. */
2715 expand_null_return_1 (last_insn, block != 0);
2718 /* Generate RTL to return from the current function, with value VAL. */
2720 static void
2721 expand_value_return (val)
2722 rtx val;
2724 struct nesting *block = block_stack;
2725 rtx last_insn = get_last_insn ();
2726 rtx return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2728 /* Copy the value to the return location
2729 unless it's already there. */
2731 if (return_reg != val)
2733 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
2734 #ifdef PROMOTE_FUNCTION_RETURN
2735 int unsignedp = TREE_UNSIGNED (type);
2736 enum machine_mode old_mode
2737 = DECL_MODE (DECL_RESULT (current_function_decl));
2738 enum machine_mode mode
2739 = promote_mode (type, old_mode, &unsignedp, 1);
2741 if (mode != old_mode)
2742 val = convert_modes (mode, old_mode, val, unsignedp);
2743 #endif
2744 if (GET_CODE (return_reg) == PARALLEL)
2745 emit_group_load (return_reg, val, int_size_in_bytes (type),
2746 TYPE_ALIGN (type));
2747 else
2748 emit_move_insn (return_reg, val);
2751 /* Does any pending block have cleanups? */
2753 while (block && block->data.block.cleanups == 0)
2754 block = block->next;
2756 /* If yes, use a goto to return, since that runs cleanups.
2757 Use LAST_INSN to put cleanups *before* the move insn emitted above. */
2759 expand_null_return_1 (last_insn, block != 0);
2762 /* Output a return with no value. If LAST_INSN is nonzero,
2763 pretend that the return takes place after LAST_INSN.
2764 If USE_GOTO is nonzero then don't use a return instruction;
2765 go to the return label instead. This causes any cleanups
2766 of pending blocks to be executed normally. */
2768 static void
2769 expand_null_return_1 (last_insn, use_goto)
2770 rtx last_insn;
2771 int use_goto;
2773 rtx end_label = cleanup_label ? cleanup_label : return_label;
2775 clear_pending_stack_adjust ();
2776 do_pending_stack_adjust ();
2777 last_expr_type = 0;
2779 /* PCC-struct return always uses an epilogue. */
2780 if (current_function_returns_pcc_struct || use_goto)
2782 if (end_label == 0)
2783 end_label = return_label = gen_label_rtx ();
2784 expand_goto_internal (NULL_TREE, end_label, last_insn);
2785 return;
2788 /* Otherwise output a simple return-insn if one is available,
2789 unless it won't do the job. */
2790 #ifdef HAVE_return
2791 if (HAVE_return && use_goto == 0 && cleanup_label == 0)
2793 emit_jump_insn (gen_return ());
2794 emit_barrier ();
2795 return;
2797 #endif
2799 /* Otherwise jump to the epilogue. */
2800 expand_goto_internal (NULL_TREE, end_label, last_insn);
2803 /* Generate RTL to evaluate the expression RETVAL and return it
2804 from the current function. */
2806 void
2807 expand_return (retval)
2808 tree retval;
2810 /* If there are any cleanups to be performed, then they will
2811 be inserted following LAST_INSN. It is desirable
2812 that the last_insn, for such purposes, should be the
2813 last insn before computing the return value. Otherwise, cleanups
2814 which call functions can clobber the return value. */
2815 /* ??? rms: I think that is erroneous, because in C++ it would
2816 run destructors on variables that might be used in the subsequent
2817 computation of the return value. */
2818 rtx last_insn = 0;
2819 rtx result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
2820 register rtx val = 0;
2821 #ifdef HAVE_return
2822 register rtx op0;
2823 #endif
2824 tree retval_rhs;
2825 int cleanups;
2827 /* If function wants no value, give it none. */
2828 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
2830 expand_expr (retval, NULL_RTX, VOIDmode, 0);
2831 emit_queue ();
2832 expand_null_return ();
2833 return;
2836 /* Are any cleanups needed? E.g. C++ destructors to be run? */
2837 /* This is not sufficient. We also need to watch for cleanups of the
2838 expression we are about to expand. Unfortunately, we cannot know
2839 if it has cleanups until we expand it, and we want to change how we
2840 expand it depending upon if we need cleanups. We can't win. */
2841 #if 0
2842 cleanups = any_pending_cleanups (1);
2843 #else
2844 cleanups = 1;
2845 #endif
2847 if (retval == error_mark_node)
2848 retval_rhs = NULL_TREE;
2849 else if (TREE_CODE (retval) == RESULT_DECL)
2850 retval_rhs = retval;
2851 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
2852 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
2853 retval_rhs = TREE_OPERAND (retval, 1);
2854 else if (VOID_TYPE_P (TREE_TYPE (retval)))
2855 /* Recognize tail-recursive call to void function. */
2856 retval_rhs = retval;
2857 else
2858 retval_rhs = NULL_TREE;
2860 /* Only use `last_insn' if there are cleanups which must be run. */
2861 if (cleanups || cleanup_label != 0)
2862 last_insn = get_last_insn ();
2864 /* Distribute return down conditional expr if either of the sides
2865 may involve tail recursion (see test below). This enhances the number
2866 of tail recursions we see. Don't do this always since it can produce
2867 sub-optimal code in some cases and we distribute assignments into
2868 conditional expressions when it would help. */
2870 if (optimize && retval_rhs != 0
2871 && frame_offset == 0
2872 && TREE_CODE (retval_rhs) == COND_EXPR
2873 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
2874 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
2876 rtx label = gen_label_rtx ();
2877 tree expr;
2879 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
2880 start_cleanup_deferral ();
2881 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2882 DECL_RESULT (current_function_decl),
2883 TREE_OPERAND (retval_rhs, 1));
2884 TREE_SIDE_EFFECTS (expr) = 1;
2885 expand_return (expr);
2886 emit_label (label);
2888 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2889 DECL_RESULT (current_function_decl),
2890 TREE_OPERAND (retval_rhs, 2));
2891 TREE_SIDE_EFFECTS (expr) = 1;
2892 expand_return (expr);
2893 end_cleanup_deferral ();
2894 return;
2897 /* Attempt to optimize the call if it is tail recursive. */
2898 if (flag_optimize_sibling_calls
2899 && retval_rhs != NULL_TREE
2900 && frame_offset == 0
2901 && TREE_CODE (retval_rhs) == CALL_EXPR
2902 && TREE_CODE (TREE_OPERAND (retval_rhs, 0)) == ADDR_EXPR
2903 && (TREE_OPERAND (TREE_OPERAND (retval_rhs, 0), 0)
2904 == current_function_decl)
2905 && optimize_tail_recursion (TREE_OPERAND (retval_rhs, 1), last_insn))
2906 return;
2908 #ifdef HAVE_return
2909 /* This optimization is safe if there are local cleanups
2910 because expand_null_return takes care of them.
2911 ??? I think it should also be safe when there is a cleanup label,
2912 because expand_null_return takes care of them, too.
2913 Any reason why not? */
2914 if (HAVE_return && cleanup_label == 0
2915 && ! current_function_returns_pcc_struct
2916 && BRANCH_COST <= 1)
2918 /* If this is return x == y; then generate
2919 if (x == y) return 1; else return 0;
2920 if we can do it with explicit return insns and branches are cheap,
2921 but not if we have the corresponding scc insn. */
2922 int has_scc = 0;
2923 if (retval_rhs)
2924 switch (TREE_CODE (retval_rhs))
2926 case EQ_EXPR:
2927 #ifdef HAVE_seq
2928 has_scc = HAVE_seq;
2929 #endif
2930 case NE_EXPR:
2931 #ifdef HAVE_sne
2932 has_scc = HAVE_sne;
2933 #endif
2934 case GT_EXPR:
2935 #ifdef HAVE_sgt
2936 has_scc = HAVE_sgt;
2937 #endif
2938 case GE_EXPR:
2939 #ifdef HAVE_sge
2940 has_scc = HAVE_sge;
2941 #endif
2942 case LT_EXPR:
2943 #ifdef HAVE_slt
2944 has_scc = HAVE_slt;
2945 #endif
2946 case LE_EXPR:
2947 #ifdef HAVE_sle
2948 has_scc = HAVE_sle;
2949 #endif
2950 case TRUTH_ANDIF_EXPR:
2951 case TRUTH_ORIF_EXPR:
2952 case TRUTH_AND_EXPR:
2953 case TRUTH_OR_EXPR:
2954 case TRUTH_NOT_EXPR:
2955 case TRUTH_XOR_EXPR:
2956 if (! has_scc)
2958 op0 = gen_label_rtx ();
2959 jumpifnot (retval_rhs, op0);
2960 expand_value_return (const1_rtx);
2961 emit_label (op0);
2962 expand_value_return (const0_rtx);
2963 return;
2965 break;
2967 default:
2968 break;
2971 #endif /* HAVE_return */
2973 /* If the result is an aggregate that is being returned in one (or more)
2974 registers, load the registers here. The compiler currently can't handle
2975 copying a BLKmode value into registers. We could put this code in a
2976 more general area (for use by everyone instead of just function
2977 call/return), but until this feature is generally usable it is kept here
2978 (and in expand_call). The value must go into a pseudo in case there
2979 are cleanups that will clobber the real return register. */
2981 if (retval_rhs != 0
2982 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
2983 && GET_CODE (result_rtl) == REG)
2985 int i;
2986 unsigned HOST_WIDE_INT bitpos, xbitpos;
2987 unsigned HOST_WIDE_INT big_endian_correction = 0;
2988 unsigned HOST_WIDE_INT bytes
2989 = int_size_in_bytes (TREE_TYPE (retval_rhs));
2990 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
2991 unsigned int bitsize
2992 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
2993 rtx *result_pseudos = (rtx *) alloca (sizeof (rtx) * n_regs);
2994 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
2995 rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
2996 enum machine_mode tmpmode, result_reg_mode;
2998 /* Structures whose size is not a multiple of a word are aligned
2999 to the least significant byte (to the right). On a BYTES_BIG_ENDIAN
3000 machine, this means we must skip the empty high order bytes when
3001 calculating the bit offset. */
3002 if (BYTES_BIG_ENDIAN && bytes % UNITS_PER_WORD)
3003 big_endian_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
3004 * BITS_PER_UNIT));
3006 /* Copy the structure BITSIZE bits at a time. */
3007 for (bitpos = 0, xbitpos = big_endian_correction;
3008 bitpos < bytes * BITS_PER_UNIT;
3009 bitpos += bitsize, xbitpos += bitsize)
3011 /* We need a new destination pseudo each time xbitpos is
3012 on a word boundary and when xbitpos == big_endian_correction
3013 (the first time through). */
3014 if (xbitpos % BITS_PER_WORD == 0
3015 || xbitpos == big_endian_correction)
3017 /* Generate an appropriate register. */
3018 dst = gen_reg_rtx (word_mode);
3019 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
3021 /* Clobber the destination before we move anything into it. */
3022 emit_insn (gen_rtx_CLOBBER (VOIDmode, dst));
3025 /* We need a new source operand each time bitpos is on a word
3026 boundary. */
3027 if (bitpos % BITS_PER_WORD == 0)
3028 src = operand_subword_force (result_val,
3029 bitpos / BITS_PER_WORD,
3030 BLKmode);
3032 /* Use bitpos for the source extraction (left justified) and
3033 xbitpos for the destination store (right justified). */
3034 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
3035 extract_bit_field (src, bitsize,
3036 bitpos % BITS_PER_WORD, 1,
3037 NULL_RTX, word_mode, word_mode,
3038 bitsize, BITS_PER_WORD),
3039 bitsize, BITS_PER_WORD);
3042 /* Find the smallest integer mode large enough to hold the
3043 entire structure and use that mode instead of BLKmode
3044 on the USE insn for the return register. */
3045 bytes = int_size_in_bytes (TREE_TYPE (retval_rhs));
3046 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3047 tmpmode != VOIDmode;
3048 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
3050 /* Have we found a large enough mode? */
3051 if (GET_MODE_SIZE (tmpmode) >= bytes)
3052 break;
3055 /* No suitable mode found. */
3056 if (tmpmode == VOIDmode)
3057 abort ();
3059 PUT_MODE (result_rtl, tmpmode);
3061 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
3062 result_reg_mode = word_mode;
3063 else
3064 result_reg_mode = tmpmode;
3065 result_reg = gen_reg_rtx (result_reg_mode);
3067 emit_queue ();
3068 for (i = 0; i < n_regs; i++)
3069 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
3070 result_pseudos[i]);
3072 if (tmpmode != result_reg_mode)
3073 result_reg = gen_lowpart (tmpmode, result_reg);
3075 expand_value_return (result_reg);
3077 else if (cleanups
3078 && retval_rhs != 0
3079 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3080 && (GET_CODE (result_rtl) == REG
3081 || (GET_CODE (result_rtl) == PARALLEL)))
3083 /* Calculate the return value into a temporary (usually a pseudo
3084 reg). */
3085 val = assign_temp (TREE_TYPE (DECL_RESULT (current_function_decl)),
3086 0, 0, 1);
3087 val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3088 val = force_not_mem (val);
3089 emit_queue ();
3090 /* Return the calculated value, doing cleanups first. */
3091 expand_value_return (val);
3093 else
3095 /* No cleanups or no hard reg used;
3096 calculate value into hard return reg. */
3097 expand_expr (retval, const0_rtx, VOIDmode, 0);
3098 emit_queue ();
3099 expand_value_return (result_rtl);
3103 /* Return 1 if the end of the generated RTX is not a barrier.
3104 This means code already compiled can drop through. */
3107 drop_through_at_end_p ()
3109 rtx insn = get_last_insn ();
3110 while (insn && GET_CODE (insn) == NOTE)
3111 insn = PREV_INSN (insn);
3112 return insn && GET_CODE (insn) != BARRIER;
3115 /* Attempt to optimize a potential tail recursion call into a goto.
3116 ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3117 where to place the jump to the tail recursion label.
3119 Return TRUE if the call was optimized into a goto. */
3122 optimize_tail_recursion (arguments, last_insn)
3123 tree arguments;
3124 rtx last_insn;
3126 /* Finish checking validity, and if valid emit code to set the
3127 argument variables for the new call. */
3128 if (tail_recursion_args (arguments, DECL_ARGUMENTS (current_function_decl)))
3130 if (tail_recursion_label == 0)
3132 tail_recursion_label = gen_label_rtx ();
3133 emit_label_after (tail_recursion_label,
3134 tail_recursion_reentry);
3136 emit_queue ();
3137 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3138 emit_barrier ();
3139 return 1;
3141 return 0;
3144 /* Emit code to alter this function's formal parms for a tail-recursive call.
3145 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3146 FORMALS is the chain of decls of formals.
3147 Return 1 if this can be done;
3148 otherwise return 0 and do not emit any code. */
3150 static int
3151 tail_recursion_args (actuals, formals)
3152 tree actuals, formals;
3154 register tree a = actuals, f = formals;
3155 register int i;
3156 register rtx *argvec;
3158 /* Check that number and types of actuals are compatible
3159 with the formals. This is not always true in valid C code.
3160 Also check that no formal needs to be addressable
3161 and that all formals are scalars. */
3163 /* Also count the args. */
3165 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3167 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3168 != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3169 return 0;
3170 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3171 return 0;
3173 if (a != 0 || f != 0)
3174 return 0;
3176 /* Compute all the actuals. */
3178 argvec = (rtx *) alloca (i * sizeof (rtx));
3180 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3181 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3183 /* Find which actual values refer to current values of previous formals.
3184 Copy each of them now, before any formal is changed. */
3186 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3188 int copy = 0;
3189 register int j;
3190 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3191 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3192 { copy = 1; break; }
3193 if (copy)
3194 argvec[i] = copy_to_reg (argvec[i]);
3197 /* Store the values of the actuals into the formals. */
3199 for (f = formals, a = actuals, i = 0; f;
3200 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3202 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3203 emit_move_insn (DECL_RTL (f), argvec[i]);
3204 else
3205 convert_move (DECL_RTL (f), argvec[i],
3206 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
3209 free_temp_slots ();
3210 return 1;
3213 /* Generate the RTL code for entering a binding contour.
3214 The variables are declared one by one, by calls to `expand_decl'.
3216 FLAGS is a bitwise or of the following flags:
3218 1 - Nonzero if this construct should be visible to
3219 `exit_something'.
3221 2 - Nonzero if this contour does not require a
3222 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3223 language-independent code should set this flag because they
3224 will not create corresponding BLOCK nodes. (There should be
3225 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3226 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3227 when expand_end_bindings is called.
3229 If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3230 optionally be supplied. If so, it becomes the NOTE_BLOCK for the
3231 note. */
3233 void
3234 expand_start_bindings_and_block (flags, block)
3235 int flags;
3236 tree block;
3238 struct nesting *thisblock = ALLOC_NESTING ();
3239 rtx note;
3240 int exit_flag = ((flags & 1) != 0);
3241 int block_flag = ((flags & 2) == 0);
3243 /* If a BLOCK is supplied, then the caller should be requesting a
3244 NOTE_INSN_BLOCK_BEG note. */
3245 if (!block_flag && block)
3246 abort ();
3248 /* Create a note to mark the beginning of the block. */
3249 if (block_flag)
3251 note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
3252 NOTE_BLOCK (note) = block;
3254 else
3255 note = emit_note (NULL_PTR, NOTE_INSN_DELETED);
3257 /* Make an entry on block_stack for the block we are entering. */
3259 thisblock->next = block_stack;
3260 thisblock->all = nesting_stack;
3261 thisblock->depth = ++nesting_depth;
3262 thisblock->data.block.stack_level = 0;
3263 thisblock->data.block.cleanups = 0;
3264 thisblock->data.block.n_function_calls = 0;
3265 thisblock->data.block.exception_region = 0;
3266 thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3268 thisblock->data.block.conditional_code = 0;
3269 thisblock->data.block.last_unconditional_cleanup = note;
3270 /* When we insert instructions after the last unconditional cleanup,
3271 we don't adjust last_insn. That means that a later add_insn will
3272 clobber the instructions we've just added. The easiest way to
3273 fix this is to just insert another instruction here, so that the
3274 instructions inserted after the last unconditional cleanup are
3275 never the last instruction. */
3276 emit_note (NULL_PTR, NOTE_INSN_DELETED);
3277 thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
3279 if (block_stack
3280 && !(block_stack->data.block.cleanups == NULL_TREE
3281 && block_stack->data.block.outer_cleanups == NULL_TREE))
3282 thisblock->data.block.outer_cleanups
3283 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3284 block_stack->data.block.outer_cleanups);
3285 else
3286 thisblock->data.block.outer_cleanups = 0;
3287 thisblock->data.block.label_chain = 0;
3288 thisblock->data.block.innermost_stack_block = stack_block_stack;
3289 thisblock->data.block.first_insn = note;
3290 thisblock->data.block.block_start_count = ++current_block_start_count;
3291 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3292 block_stack = thisblock;
3293 nesting_stack = thisblock;
3295 /* Make a new level for allocating stack slots. */
3296 push_temp_slots ();
3299 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3300 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3301 expand_expr are made. After we end the region, we know that all
3302 space for all temporaries that were created by TARGET_EXPRs will be
3303 destroyed and their space freed for reuse. */
3305 void
3306 expand_start_target_temps ()
3308 /* This is so that even if the result is preserved, the space
3309 allocated will be freed, as we know that it is no longer in use. */
3310 push_temp_slots ();
3312 /* Start a new binding layer that will keep track of all cleanup
3313 actions to be performed. */
3314 expand_start_bindings (2);
3316 target_temp_slot_level = temp_slot_level;
3319 void
3320 expand_end_target_temps ()
3322 expand_end_bindings (NULL_TREE, 0, 0);
3324 /* This is so that even if the result is preserved, the space
3325 allocated will be freed, as we know that it is no longer in use. */
3326 pop_temp_slots ();
3329 /* Given a pointer to a BLOCK node return non-zero if (and only if) the node
3330 in question represents the outermost pair of curly braces (i.e. the "body
3331 block") of a function or method.
3333 For any BLOCK node representing a "body block" of a function or method, the
3334 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3335 represents the outermost (function) scope for the function or method (i.e.
3336 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
3337 *that* node in turn will point to the relevant FUNCTION_DECL node. */
3340 is_body_block (stmt)
3341 register tree stmt;
3343 if (TREE_CODE (stmt) == BLOCK)
3345 tree parent = BLOCK_SUPERCONTEXT (stmt);
3347 if (parent && TREE_CODE (parent) == BLOCK)
3349 tree grandparent = BLOCK_SUPERCONTEXT (parent);
3351 if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
3352 return 1;
3356 return 0;
3359 /* Mark top block of block_stack as an implicit binding for an
3360 exception region. This is used to prevent infinite recursion when
3361 ending a binding with expand_end_bindings. It is only ever called
3362 by expand_eh_region_start, as that it the only way to create a
3363 block stack for a exception region. */
3365 void
3366 mark_block_as_eh_region ()
3368 block_stack->data.block.exception_region = 1;
3369 if (block_stack->next
3370 && block_stack->next->data.block.conditional_code)
3372 block_stack->data.block.conditional_code
3373 = block_stack->next->data.block.conditional_code;
3374 block_stack->data.block.last_unconditional_cleanup
3375 = block_stack->next->data.block.last_unconditional_cleanup;
3376 block_stack->data.block.cleanup_ptr
3377 = block_stack->next->data.block.cleanup_ptr;
3381 /* True if we are currently emitting insns in an area of output code
3382 that is controlled by a conditional expression. This is used by
3383 the cleanup handling code to generate conditional cleanup actions. */
3386 conditional_context ()
3388 return block_stack && block_stack->data.block.conditional_code;
3391 /* Mark top block of block_stack as not for an implicit binding for an
3392 exception region. This is only ever done by expand_eh_region_end
3393 to let expand_end_bindings know that it is being called explicitly
3394 to end the binding layer for just the binding layer associated with
3395 the exception region, otherwise expand_end_bindings would try and
3396 end all implicit binding layers for exceptions regions, and then
3397 one normal binding layer. */
3399 void
3400 mark_block_as_not_eh_region ()
3402 block_stack->data.block.exception_region = 0;
3405 /* True if the top block of block_stack was marked as for an exception
3406 region by mark_block_as_eh_region. */
3409 is_eh_region ()
3411 return cfun && block_stack && block_stack->data.block.exception_region;
3414 /* Emit a handler label for a nonlocal goto handler.
3415 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3417 static rtx
3418 expand_nl_handler_label (slot, before_insn)
3419 rtx slot, before_insn;
3421 rtx insns;
3422 rtx handler_label = gen_label_rtx ();
3424 /* Don't let jump_optimize delete the handler. */
3425 LABEL_PRESERVE_P (handler_label) = 1;
3427 start_sequence ();
3428 emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3429 insns = get_insns ();
3430 end_sequence ();
3431 emit_insns_before (insns, before_insn);
3433 emit_label (handler_label);
3435 return handler_label;
3438 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3439 handler. */
3440 static void
3441 expand_nl_goto_receiver ()
3443 #ifdef HAVE_nonlocal_goto
3444 if (! HAVE_nonlocal_goto)
3445 #endif
3446 /* First adjust our frame pointer to its actual value. It was
3447 previously set to the start of the virtual area corresponding to
3448 the stacked variables when we branched here and now needs to be
3449 adjusted to the actual hardware fp value.
3451 Assignments are to virtual registers are converted by
3452 instantiate_virtual_regs into the corresponding assignment
3453 to the underlying register (fp in this case) that makes
3454 the original assignment true.
3455 So the following insn will actually be
3456 decrementing fp by STARTING_FRAME_OFFSET. */
3457 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3459 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3460 if (fixed_regs[ARG_POINTER_REGNUM])
3462 #ifdef ELIMINABLE_REGS
3463 /* If the argument pointer can be eliminated in favor of the
3464 frame pointer, we don't need to restore it. We assume here
3465 that if such an elimination is present, it can always be used.
3466 This is the case on all known machines; if we don't make this
3467 assumption, we do unnecessary saving on many machines. */
3468 static struct elims {int from, to;} elim_regs[] = ELIMINABLE_REGS;
3469 size_t i;
3471 for (i = 0; i < sizeof elim_regs / sizeof elim_regs[0]; i++)
3472 if (elim_regs[i].from == ARG_POINTER_REGNUM
3473 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3474 break;
3476 if (i == sizeof elim_regs / sizeof elim_regs [0])
3477 #endif
3479 /* Now restore our arg pointer from the address at which it
3480 was saved in our stack frame.
3481 If there hasn't be space allocated for it yet, make
3482 some now. */
3483 if (arg_pointer_save_area == 0)
3484 arg_pointer_save_area
3485 = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
3486 emit_move_insn (virtual_incoming_args_rtx,
3487 /* We need a pseudo here, or else
3488 instantiate_virtual_regs_1 complains. */
3489 copy_to_reg (arg_pointer_save_area));
3492 #endif
3494 #ifdef HAVE_nonlocal_goto_receiver
3495 if (HAVE_nonlocal_goto_receiver)
3496 emit_insn (gen_nonlocal_goto_receiver ());
3497 #endif
3500 /* Make handlers for nonlocal gotos taking place in the function calls in
3501 block THISBLOCK. */
3503 static void
3504 expand_nl_goto_receivers (thisblock)
3505 struct nesting *thisblock;
3507 tree link;
3508 rtx afterward = gen_label_rtx ();
3509 rtx insns, slot;
3510 rtx label_list;
3511 int any_invalid;
3513 /* Record the handler address in the stack slot for that purpose,
3514 during this block, saving and restoring the outer value. */
3515 if (thisblock->next != 0)
3516 for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3518 rtx save_receiver = gen_reg_rtx (Pmode);
3519 emit_move_insn (XEXP (slot, 0), save_receiver);
3521 start_sequence ();
3522 emit_move_insn (save_receiver, XEXP (slot, 0));
3523 insns = get_insns ();
3524 end_sequence ();
3525 emit_insns_before (insns, thisblock->data.block.first_insn);
3528 /* Jump around the handlers; they run only when specially invoked. */
3529 emit_jump (afterward);
3531 /* Make a separate handler for each label. */
3532 link = nonlocal_labels;
3533 slot = nonlocal_goto_handler_slots;
3534 label_list = NULL_RTX;
3535 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3536 /* Skip any labels we shouldn't be able to jump to from here,
3537 we generate one special handler for all of them below which just calls
3538 abort. */
3539 if (! DECL_TOO_LATE (TREE_VALUE (link)))
3541 rtx lab;
3542 lab = expand_nl_handler_label (XEXP (slot, 0),
3543 thisblock->data.block.first_insn);
3544 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3546 expand_nl_goto_receiver ();
3548 /* Jump to the "real" nonlocal label. */
3549 expand_goto (TREE_VALUE (link));
3552 /* A second pass over all nonlocal labels; this time we handle those
3553 we should not be able to jump to at this point. */
3554 link = nonlocal_labels;
3555 slot = nonlocal_goto_handler_slots;
3556 any_invalid = 0;
3557 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3558 if (DECL_TOO_LATE (TREE_VALUE (link)))
3560 rtx lab;
3561 lab = expand_nl_handler_label (XEXP (slot, 0),
3562 thisblock->data.block.first_insn);
3563 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3564 any_invalid = 1;
3567 if (any_invalid)
3569 expand_nl_goto_receiver ();
3570 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "abort"), 0,
3571 VOIDmode, 0);
3572 emit_barrier ();
3575 nonlocal_goto_handler_labels = label_list;
3576 emit_label (afterward);
3579 /* Warn about any unused VARS (which may contain nodes other than
3580 VAR_DECLs, but such nodes are ignored). The nodes are connected
3581 via the TREE_CHAIN field. */
3583 void
3584 warn_about_unused_variables (vars)
3585 tree vars;
3587 tree decl;
3589 if (warn_unused_variable)
3590 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3591 if (TREE_CODE (decl) == VAR_DECL
3592 && ! TREE_USED (decl)
3593 && ! DECL_IN_SYSTEM_HEADER (decl)
3594 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3595 warning_with_decl (decl, "unused variable `%s'");
3598 /* Generate RTL code to terminate a binding contour.
3600 VARS is the chain of VAR_DECL nodes for the variables bound in this
3601 contour. There may actually be other nodes in this chain, but any
3602 nodes other than VAR_DECLS are ignored.
3604 MARK_ENDS is nonzero if we should put a note at the beginning
3605 and end of this binding contour.
3607 DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
3608 (That is true automatically if the contour has a saved stack level.) */
3610 void
3611 expand_end_bindings (vars, mark_ends, dont_jump_in)
3612 tree vars;
3613 int mark_ends;
3614 int dont_jump_in;
3616 register struct nesting *thisblock;
3618 while (block_stack->data.block.exception_region)
3620 /* Because we don't need or want a new temporary level and
3621 because we didn't create one in expand_eh_region_start,
3622 create a fake one now to avoid removing one in
3623 expand_end_bindings. */
3624 push_temp_slots ();
3626 block_stack->data.block.exception_region = 0;
3628 expand_end_bindings (NULL_TREE, 0, 0);
3631 /* Since expand_eh_region_start does an expand_start_bindings, we
3632 have to first end all the bindings that were created by
3633 expand_eh_region_start. */
3635 thisblock = block_stack;
3637 /* If any of the variables in this scope were not used, warn the
3638 user. */
3639 warn_about_unused_variables (vars);
3641 if (thisblock->exit_label)
3643 do_pending_stack_adjust ();
3644 emit_label (thisblock->exit_label);
3647 /* If necessary, make handlers for nonlocal gotos taking
3648 place in the function calls in this block. */
3649 if (function_call_count != thisblock->data.block.n_function_calls
3650 && nonlocal_labels
3651 /* Make handler for outermost block
3652 if there were any nonlocal gotos to this function. */
3653 && (thisblock->next == 0 ? current_function_has_nonlocal_label
3654 /* Make handler for inner block if it has something
3655 special to do when you jump out of it. */
3656 : (thisblock->data.block.cleanups != 0
3657 || thisblock->data.block.stack_level != 0)))
3658 expand_nl_goto_receivers (thisblock);
3660 /* Don't allow jumping into a block that has a stack level.
3661 Cleanups are allowed, though. */
3662 if (dont_jump_in
3663 || thisblock->data.block.stack_level != 0)
3665 struct label_chain *chain;
3667 /* Any labels in this block are no longer valid to go to.
3668 Mark them to cause an error message. */
3669 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3671 DECL_TOO_LATE (chain->label) = 1;
3672 /* If any goto without a fixup came to this label,
3673 that must be an error, because gotos without fixups
3674 come from outside all saved stack-levels. */
3675 if (TREE_ADDRESSABLE (chain->label))
3676 error_with_decl (chain->label,
3677 "label `%s' used before containing binding contour");
3681 /* Restore stack level in effect before the block
3682 (only if variable-size objects allocated). */
3683 /* Perform any cleanups associated with the block. */
3685 if (thisblock->data.block.stack_level != 0
3686 || thisblock->data.block.cleanups != 0)
3688 int reachable;
3689 rtx insn;
3691 /* Don't let cleanups affect ({...}) constructs. */
3692 int old_expr_stmts_for_value = expr_stmts_for_value;
3693 rtx old_last_expr_value = last_expr_value;
3694 tree old_last_expr_type = last_expr_type;
3695 expr_stmts_for_value = 0;
3697 /* Only clean up here if this point can actually be reached. */
3698 insn = get_last_insn ();
3699 if (GET_CODE (insn) == NOTE)
3700 insn = prev_nonnote_insn (insn);
3701 reachable = (! insn || GET_CODE (insn) != BARRIER);
3703 /* Do the cleanups. */
3704 expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);
3705 if (reachable)
3706 do_pending_stack_adjust ();
3708 expr_stmts_for_value = old_expr_stmts_for_value;
3709 last_expr_value = old_last_expr_value;
3710 last_expr_type = old_last_expr_type;
3712 /* Restore the stack level. */
3714 if (reachable && thisblock->data.block.stack_level != 0)
3716 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3717 thisblock->data.block.stack_level, NULL_RTX);
3718 if (nonlocal_goto_handler_slots != 0)
3719 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3720 NULL_RTX);
3723 /* Any gotos out of this block must also do these things.
3724 Also report any gotos with fixups that came to labels in this
3725 level. */
3726 fixup_gotos (thisblock,
3727 thisblock->data.block.stack_level,
3728 thisblock->data.block.cleanups,
3729 thisblock->data.block.first_insn,
3730 dont_jump_in);
3733 /* Mark the beginning and end of the scope if requested.
3734 We do this now, after running cleanups on the variables
3735 just going out of scope, so they are in scope for their cleanups. */
3737 if (mark_ends)
3739 rtx note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
3740 NOTE_BLOCK (note) = NOTE_BLOCK (thisblock->data.block.first_insn);
3742 else
3743 /* Get rid of the beginning-mark if we don't make an end-mark. */
3744 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3746 /* Restore the temporary level of TARGET_EXPRs. */
3747 target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3749 /* Restore block_stack level for containing block. */
3751 stack_block_stack = thisblock->data.block.innermost_stack_block;
3752 POPSTACK (block_stack);
3754 /* Pop the stack slot nesting and free any slots at this level. */
3755 pop_temp_slots ();
3758 /* Generate RTL for the automatic variable declaration DECL.
3759 (Other kinds of declarations are simply ignored if seen here.) */
3761 void
3762 expand_decl (decl)
3763 register tree decl;
3765 struct nesting *thisblock;
3766 tree type;
3768 type = TREE_TYPE (decl);
3770 /* Only automatic variables need any expansion done.
3771 Static and external variables, and external functions,
3772 will be handled by `assemble_variable' (called from finish_decl).
3773 TYPE_DECL and CONST_DECL require nothing.
3774 PARM_DECLs are handled in `assign_parms'. */
3776 if (TREE_CODE (decl) != VAR_DECL)
3777 return;
3778 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3779 return;
3781 thisblock = block_stack;
3783 /* Create the RTL representation for the variable. */
3785 if (type == error_mark_node)
3786 DECL_RTL (decl) = gen_rtx_MEM (BLKmode, const0_rtx);
3787 else if (DECL_SIZE (decl) == 0)
3788 /* Variable with incomplete type. */
3790 if (DECL_INITIAL (decl) == 0)
3791 /* Error message was already done; now avoid a crash. */
3792 DECL_RTL (decl) = assign_stack_temp (DECL_MODE (decl), 0, 1);
3793 else
3794 /* An initializer is going to decide the size of this array.
3795 Until we know the size, represent its address with a reg. */
3796 DECL_RTL (decl) = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
3798 set_mem_attributes (DECL_RTL (decl), decl, 1);
3800 else if (DECL_MODE (decl) != BLKmode
3801 /* If -ffloat-store, don't put explicit float vars
3802 into regs. */
3803 && !(flag_float_store
3804 && TREE_CODE (type) == REAL_TYPE)
3805 && ! TREE_THIS_VOLATILE (decl)
3806 && ! TREE_ADDRESSABLE (decl)
3807 && (DECL_REGISTER (decl) || optimize)
3808 /* if -fcheck-memory-usage, check all variables. */
3809 && ! current_function_check_memory_usage)
3811 /* Automatic variable that can go in a register. */
3812 int unsignedp = TREE_UNSIGNED (type);
3813 enum machine_mode reg_mode
3814 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3816 DECL_RTL (decl) = gen_reg_rtx (reg_mode);
3817 mark_user_reg (DECL_RTL (decl));
3819 if (POINTER_TYPE_P (type))
3820 mark_reg_pointer (DECL_RTL (decl),
3821 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
3823 maybe_set_unchanging (DECL_RTL (decl), decl);
3826 else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
3827 && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3828 && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
3829 STACK_CHECK_MAX_VAR_SIZE)))
3831 /* Variable of fixed size that goes on the stack. */
3832 rtx oldaddr = 0;
3833 rtx addr;
3835 /* If we previously made RTL for this decl, it must be an array
3836 whose size was determined by the initializer.
3837 The old address was a register; set that register now
3838 to the proper address. */
3839 if (DECL_RTL (decl) != 0)
3841 if (GET_CODE (DECL_RTL (decl)) != MEM
3842 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3843 abort ();
3844 oldaddr = XEXP (DECL_RTL (decl), 0);
3847 DECL_RTL (decl) = assign_temp (TREE_TYPE (decl), 1, 1, 1);
3849 /* Set alignment we actually gave this decl. */
3850 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3851 : GET_MODE_BITSIZE (DECL_MODE (decl)));
3852 DECL_USER_ALIGN (decl) = 0;
3854 if (oldaddr)
3856 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3857 if (addr != oldaddr)
3858 emit_move_insn (oldaddr, addr);
3861 else
3862 /* Dynamic-size object: must push space on the stack. */
3864 rtx address, size;
3866 /* Record the stack pointer on entry to block, if have
3867 not already done so. */
3868 if (thisblock->data.block.stack_level == 0)
3870 do_pending_stack_adjust ();
3871 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3872 &thisblock->data.block.stack_level,
3873 thisblock->data.block.first_insn);
3874 stack_block_stack = thisblock;
3877 /* In function-at-a-time mode, variable_size doesn't expand this,
3878 so do it now. */
3879 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
3880 expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
3881 const0_rtx, VOIDmode, 0);
3883 /* Compute the variable's size, in bytes. */
3884 size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
3885 free_temp_slots ();
3887 /* Allocate space on the stack for the variable. Note that
3888 DECL_ALIGN says how the variable is to be aligned and we
3889 cannot use it to conclude anything about the alignment of
3890 the size. */
3891 address = allocate_dynamic_stack_space (size, NULL_RTX,
3892 TYPE_ALIGN (TREE_TYPE (decl)));
3894 /* Reference the variable indirect through that rtx. */
3895 DECL_RTL (decl) = gen_rtx_MEM (DECL_MODE (decl), address);
3897 set_mem_attributes (DECL_RTL (decl), decl, 1);
3899 /* Indicate the alignment we actually gave this variable. */
3900 #ifdef STACK_BOUNDARY
3901 DECL_ALIGN (decl) = STACK_BOUNDARY;
3902 #else
3903 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
3904 #endif
3905 DECL_USER_ALIGN (decl) = 0;
3909 /* Emit code to perform the initialization of a declaration DECL. */
3911 void
3912 expand_decl_init (decl)
3913 tree decl;
3915 int was_used = TREE_USED (decl);
3917 /* If this is a CONST_DECL, we don't have to generate any code, but
3918 if DECL_INITIAL is a constant, call expand_expr to force TREE_CST_RTL
3919 to be set while in the obstack containing the constant. If we don't
3920 do this, we can lose if we have functions nested three deep and the middle
3921 function makes a CONST_DECL whose DECL_INITIAL is a STRING_CST while
3922 the innermost function is the first to expand that STRING_CST. */
3923 if (TREE_CODE (decl) == CONST_DECL)
3925 if (DECL_INITIAL (decl) && TREE_CONSTANT (DECL_INITIAL (decl)))
3926 expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
3927 EXPAND_INITIALIZER);
3928 return;
3931 if (TREE_STATIC (decl))
3932 return;
3934 /* Compute and store the initial value now. */
3936 if (DECL_INITIAL (decl) == error_mark_node)
3938 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3940 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3941 || code == POINTER_TYPE || code == REFERENCE_TYPE)
3942 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
3943 0, 0);
3944 emit_queue ();
3946 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
3948 emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3949 expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
3950 emit_queue ();
3953 /* Don't let the initialization count as "using" the variable. */
3954 TREE_USED (decl) = was_used;
3956 /* Free any temporaries we made while initializing the decl. */
3957 preserve_temp_slots (NULL_RTX);
3958 free_temp_slots ();
3961 /* CLEANUP is an expression to be executed at exit from this binding contour;
3962 for example, in C++, it might call the destructor for this variable.
3964 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
3965 CLEANUP multiple times, and have the correct semantics. This
3966 happens in exception handling, for gotos, returns, breaks that
3967 leave the current scope.
3969 If CLEANUP is nonzero and DECL is zero, we record a cleanup
3970 that is not associated with any particular variable. */
3973 expand_decl_cleanup (decl, cleanup)
3974 tree decl, cleanup;
3976 struct nesting *thisblock;
3978 /* Error if we are not in any block. */
3979 if (cfun == 0 || block_stack == 0)
3980 return 0;
3982 thisblock = block_stack;
3984 /* Record the cleanup if there is one. */
3986 if (cleanup != 0)
3988 tree t;
3989 rtx seq;
3990 tree *cleanups = &thisblock->data.block.cleanups;
3991 int cond_context = conditional_context ();
3993 if (cond_context)
3995 rtx flag = gen_reg_rtx (word_mode);
3996 rtx set_flag_0;
3997 tree cond;
3999 start_sequence ();
4000 emit_move_insn (flag, const0_rtx);
4001 set_flag_0 = get_insns ();
4002 end_sequence ();
4004 thisblock->data.block.last_unconditional_cleanup
4005 = emit_insns_after (set_flag_0,
4006 thisblock->data.block.last_unconditional_cleanup);
4008 emit_move_insn (flag, const1_rtx);
4010 /* All cleanups must be on the function_obstack. */
4011 push_obstacks_nochange ();
4012 resume_temporary_allocation ();
4014 cond = build_decl (VAR_DECL, NULL_TREE, type_for_mode (word_mode, 1));
4015 DECL_RTL (cond) = flag;
4017 /* Conditionalize the cleanup. */
4018 cleanup = build (COND_EXPR, void_type_node,
4019 truthvalue_conversion (cond),
4020 cleanup, integer_zero_node);
4021 cleanup = fold (cleanup);
4023 pop_obstacks ();
4025 cleanups = thisblock->data.block.cleanup_ptr;
4028 /* All cleanups must be on the function_obstack. */
4029 push_obstacks_nochange ();
4030 resume_temporary_allocation ();
4031 cleanup = unsave_expr (cleanup);
4032 pop_obstacks ();
4034 t = *cleanups = temp_tree_cons (decl, cleanup, *cleanups);
4036 if (! cond_context)
4037 /* If this block has a cleanup, it belongs in stack_block_stack. */
4038 stack_block_stack = thisblock;
4040 if (cond_context)
4042 start_sequence ();
4045 /* If this was optimized so that there is no exception region for the
4046 cleanup, then mark the TREE_LIST node, so that we can later tell
4047 if we need to call expand_eh_region_end. */
4048 if (! using_eh_for_cleanups_p
4049 || expand_eh_region_start_tree (decl, cleanup))
4050 TREE_ADDRESSABLE (t) = 1;
4051 /* If that started a new EH region, we're in a new block. */
4052 thisblock = block_stack;
4054 if (cond_context)
4056 seq = get_insns ();
4057 end_sequence ();
4058 if (seq)
4059 thisblock->data.block.last_unconditional_cleanup
4060 = emit_insns_after (seq,
4061 thisblock->data.block.last_unconditional_cleanup);
4063 else
4065 thisblock->data.block.last_unconditional_cleanup
4066 = get_last_insn ();
4067 /* When we insert instructions after the last unconditional cleanup,
4068 we don't adjust last_insn. That means that a later add_insn will
4069 clobber the instructions we've just added. The easiest way to
4070 fix this is to just insert another instruction here, so that the
4071 instructions inserted after the last unconditional cleanup are
4072 never the last instruction. */
4073 emit_note (NULL_PTR, NOTE_INSN_DELETED);
4074 thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
4077 return 1;
4080 /* Like expand_decl_cleanup, but suppress generating an exception handler
4081 to perform the cleanup. */
4083 #if 0
4085 expand_decl_cleanup_no_eh (decl, cleanup)
4086 tree decl, cleanup;
4088 int save_eh = using_eh_for_cleanups_p;
4089 int result;
4091 using_eh_for_cleanups_p = 0;
4092 result = expand_decl_cleanup (decl, cleanup);
4093 using_eh_for_cleanups_p = save_eh;
4095 return result;
4097 #endif
4099 /* Arrange for the top element of the dynamic cleanup chain to be
4100 popped if we exit the current binding contour. DECL is the
4101 associated declaration, if any, otherwise NULL_TREE. If the
4102 current contour is left via an exception, then __sjthrow will pop
4103 the top element off the dynamic cleanup chain. The code that
4104 avoids doing the action we push into the cleanup chain in the
4105 exceptional case is contained in expand_cleanups.
4107 This routine is only used by expand_eh_region_start, and that is
4108 the only way in which an exception region should be started. This
4109 routine is only used when using the setjmp/longjmp codegen method
4110 for exception handling. */
4113 expand_dcc_cleanup (decl)
4114 tree decl;
4116 struct nesting *thisblock;
4117 tree cleanup;
4119 /* Error if we are not in any block. */
4120 if (cfun == 0 || block_stack == 0)
4121 return 0;
4122 thisblock = block_stack;
4124 /* Record the cleanup for the dynamic handler chain. */
4126 /* All cleanups must be on the function_obstack. */
4127 push_obstacks_nochange ();
4128 resume_temporary_allocation ();
4129 cleanup = make_node (POPDCC_EXPR);
4130 pop_obstacks ();
4132 /* Add the cleanup in a manner similar to expand_decl_cleanup. */
4133 thisblock->data.block.cleanups
4134 = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4136 /* If this block has a cleanup, it belongs in stack_block_stack. */
4137 stack_block_stack = thisblock;
4138 return 1;
4141 /* Arrange for the top element of the dynamic handler chain to be
4142 popped if we exit the current binding contour. DECL is the
4143 associated declaration, if any, otherwise NULL_TREE. If the current
4144 contour is left via an exception, then __sjthrow will pop the top
4145 element off the dynamic handler chain. The code that avoids doing
4146 the action we push into the handler chain in the exceptional case
4147 is contained in expand_cleanups.
4149 This routine is only used by expand_eh_region_start, and that is
4150 the only way in which an exception region should be started. This
4151 routine is only used when using the setjmp/longjmp codegen method
4152 for exception handling. */
4155 expand_dhc_cleanup (decl)
4156 tree decl;
4158 struct nesting *thisblock;
4159 tree cleanup;
4161 /* Error if we are not in any block. */
4162 if (cfun == 0 || block_stack == 0)
4163 return 0;
4164 thisblock = block_stack;
4166 /* Record the cleanup for the dynamic handler chain. */
4168 /* All cleanups must be on the function_obstack. */
4169 push_obstacks_nochange ();
4170 resume_temporary_allocation ();
4171 cleanup = make_node (POPDHC_EXPR);
4172 pop_obstacks ();
4174 /* Add the cleanup in a manner similar to expand_decl_cleanup. */
4175 thisblock->data.block.cleanups
4176 = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4178 /* If this block has a cleanup, it belongs in stack_block_stack. */
4179 stack_block_stack = thisblock;
4180 return 1;
4183 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4184 DECL_ELTS is the list of elements that belong to DECL's type.
4185 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4187 void
4188 expand_anon_union_decl (decl, cleanup, decl_elts)
4189 tree decl, cleanup, decl_elts;
4191 struct nesting *thisblock = cfun == 0 ? 0 : block_stack;
4192 rtx x;
4193 tree t;
4195 /* If any of the elements are addressable, so is the entire union. */
4196 for (t = decl_elts; t; t = TREE_CHAIN (t))
4197 if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4199 TREE_ADDRESSABLE (decl) = 1;
4200 break;
4203 expand_decl (decl);
4204 expand_decl_cleanup (decl, cleanup);
4205 x = DECL_RTL (decl);
4207 /* Go through the elements, assigning RTL to each. */
4208 for (t = decl_elts; t; t = TREE_CHAIN (t))
4210 tree decl_elt = TREE_VALUE (t);
4211 tree cleanup_elt = TREE_PURPOSE (t);
4212 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4214 /* Propagate the union's alignment to the elements. */
4215 DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4216 DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
4218 /* If the element has BLKmode and the union doesn't, the union is
4219 aligned such that the element doesn't need to have BLKmode, so
4220 change the element's mode to the appropriate one for its size. */
4221 if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4222 DECL_MODE (decl_elt) = mode
4223 = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
4225 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4226 instead create a new MEM rtx with the proper mode. */
4227 if (GET_CODE (x) == MEM)
4229 if (mode == GET_MODE (x))
4230 DECL_RTL (decl_elt) = x;
4231 else
4233 DECL_RTL (decl_elt) = gen_rtx_MEM (mode, copy_rtx (XEXP (x, 0)));
4234 MEM_COPY_ATTRIBUTES (DECL_RTL (decl_elt), x);
4237 else if (GET_CODE (x) == REG)
4239 if (mode == GET_MODE (x))
4240 DECL_RTL (decl_elt) = x;
4241 else
4242 DECL_RTL (decl_elt) = gen_rtx_SUBREG (mode, x, 0);
4244 else
4245 abort ();
4247 /* Record the cleanup if there is one. */
4249 if (cleanup != 0)
4250 thisblock->data.block.cleanups
4251 = temp_tree_cons (decl_elt, cleanup_elt,
4252 thisblock->data.block.cleanups);
4256 /* Expand a list of cleanups LIST.
4257 Elements may be expressions or may be nested lists.
4259 If DONT_DO is nonnull, then any list-element
4260 whose TREE_PURPOSE matches DONT_DO is omitted.
4261 This is sometimes used to avoid a cleanup associated with
4262 a value that is being returned out of the scope.
4264 If IN_FIXUP is non-zero, we are generating this cleanup for a fixup
4265 goto and handle protection regions specially in that case.
4267 If REACHABLE, we emit code, otherwise just inform the exception handling
4268 code about this finalization. */
4270 static void
4271 expand_cleanups (list, dont_do, in_fixup, reachable)
4272 tree list;
4273 tree dont_do;
4274 int in_fixup;
4275 int reachable;
4277 tree tail;
4278 for (tail = list; tail; tail = TREE_CHAIN (tail))
4279 if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4281 if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4282 expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4283 else
4285 if (! in_fixup)
4287 tree cleanup = TREE_VALUE (tail);
4289 /* See expand_d{h,c}c_cleanup for why we avoid this. */
4290 if (TREE_CODE (cleanup) != POPDHC_EXPR
4291 && TREE_CODE (cleanup) != POPDCC_EXPR
4292 /* See expand_eh_region_start_tree for this case. */
4293 && ! TREE_ADDRESSABLE (tail))
4295 cleanup = protect_with_terminate (cleanup);
4296 expand_eh_region_end (cleanup);
4300 if (reachable)
4302 /* Cleanups may be run multiple times. For example,
4303 when exiting a binding contour, we expand the
4304 cleanups associated with that contour. When a goto
4305 within that binding contour has a target outside that
4306 contour, it will expand all cleanups from its scope to
4307 the target. Though the cleanups are expanded multiple
4308 times, the control paths are non-overlapping so the
4309 cleanups will not be executed twice. */
4311 /* We may need to protect fixups with rethrow regions. */
4312 int protect = (in_fixup && ! TREE_ADDRESSABLE (tail));
4314 if (protect)
4315 expand_fixup_region_start ();
4317 /* The cleanup might contain try-blocks, so we have to
4318 preserve our current queue. */
4319 push_ehqueue ();
4320 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4321 pop_ehqueue ();
4322 if (protect)
4323 expand_fixup_region_end (TREE_VALUE (tail));
4324 free_temp_slots ();
4330 /* Mark when the context we are emitting RTL for as a conditional
4331 context, so that any cleanup actions we register with
4332 expand_decl_init will be properly conditionalized when those
4333 cleanup actions are later performed. Must be called before any
4334 expression (tree) is expanded that is within a conditional context. */
4336 void
4337 start_cleanup_deferral ()
4339 /* block_stack can be NULL if we are inside the parameter list. It is
4340 OK to do nothing, because cleanups aren't possible here. */
4341 if (block_stack)
4342 ++block_stack->data.block.conditional_code;
4345 /* Mark the end of a conditional region of code. Because cleanup
4346 deferrals may be nested, we may still be in a conditional region
4347 after we end the currently deferred cleanups, only after we end all
4348 deferred cleanups, are we back in unconditional code. */
4350 void
4351 end_cleanup_deferral ()
4353 /* block_stack can be NULL if we are inside the parameter list. It is
4354 OK to do nothing, because cleanups aren't possible here. */
4355 if (block_stack)
4356 --block_stack->data.block.conditional_code;
4359 /* Move all cleanups from the current block_stack
4360 to the containing block_stack, where they are assumed to
4361 have been created. If anything can cause a temporary to
4362 be created, but not expanded for more than one level of
4363 block_stacks, then this code will have to change. */
4365 void
4366 move_cleanups_up ()
4368 struct nesting *block = block_stack;
4369 struct nesting *outer = block->next;
4371 outer->data.block.cleanups
4372 = chainon (block->data.block.cleanups,
4373 outer->data.block.cleanups);
4374 block->data.block.cleanups = 0;
4377 tree
4378 last_cleanup_this_contour ()
4380 if (block_stack == 0)
4381 return 0;
4383 return block_stack->data.block.cleanups;
4386 /* Return 1 if there are any pending cleanups at this point.
4387 If THIS_CONTOUR is nonzero, check the current contour as well.
4388 Otherwise, look only at the contours that enclose this one. */
4391 any_pending_cleanups (this_contour)
4392 int this_contour;
4394 struct nesting *block;
4396 if (cfun == NULL || cfun->stmt == NULL || block_stack == 0)
4397 return 0;
4399 if (this_contour && block_stack->data.block.cleanups != NULL)
4400 return 1;
4401 if (block_stack->data.block.cleanups == 0
4402 && block_stack->data.block.outer_cleanups == 0)
4403 return 0;
4405 for (block = block_stack->next; block; block = block->next)
4406 if (block->data.block.cleanups != 0)
4407 return 1;
4409 return 0;
4412 /* Enter a case (Pascal) or switch (C) statement.
4413 Push a block onto case_stack and nesting_stack
4414 to accumulate the case-labels that are seen
4415 and to record the labels generated for the statement.
4417 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4418 Otherwise, this construct is transparent for `exit_something'.
4420 EXPR is the index-expression to be dispatched on.
4421 TYPE is its nominal type. We could simply convert EXPR to this type,
4422 but instead we take short cuts. */
4424 void
4425 expand_start_case (exit_flag, expr, type, printname)
4426 int exit_flag;
4427 tree expr;
4428 tree type;
4429 const char *printname;
4431 register struct nesting *thiscase = ALLOC_NESTING ();
4433 /* Make an entry on case_stack for the case we are entering. */
4435 thiscase->next = case_stack;
4436 thiscase->all = nesting_stack;
4437 thiscase->depth = ++nesting_depth;
4438 thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4439 thiscase->data.case_stmt.case_list = 0;
4440 thiscase->data.case_stmt.index_expr = expr;
4441 thiscase->data.case_stmt.nominal_type = type;
4442 thiscase->data.case_stmt.default_label = 0;
4443 thiscase->data.case_stmt.num_ranges = 0;
4444 thiscase->data.case_stmt.printname = printname;
4445 thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4446 case_stack = thiscase;
4447 nesting_stack = thiscase;
4449 do_pending_stack_adjust ();
4451 /* Make sure case_stmt.start points to something that won't
4452 need any transformation before expand_end_case. */
4453 if (GET_CODE (get_last_insn ()) != NOTE)
4454 emit_note (NULL_PTR, NOTE_INSN_DELETED);
4456 thiscase->data.case_stmt.start = get_last_insn ();
4458 start_cleanup_deferral ();
4462 /* Start a "dummy case statement" within which case labels are invalid
4463 and are not connected to any larger real case statement.
4464 This can be used if you don't want to let a case statement jump
4465 into the middle of certain kinds of constructs. */
4467 void
4468 expand_start_case_dummy ()
4470 register struct nesting *thiscase = ALLOC_NESTING ();
4472 /* Make an entry on case_stack for the dummy. */
4474 thiscase->next = case_stack;
4475 thiscase->all = nesting_stack;
4476 thiscase->depth = ++nesting_depth;
4477 thiscase->exit_label = 0;
4478 thiscase->data.case_stmt.case_list = 0;
4479 thiscase->data.case_stmt.start = 0;
4480 thiscase->data.case_stmt.nominal_type = 0;
4481 thiscase->data.case_stmt.default_label = 0;
4482 thiscase->data.case_stmt.num_ranges = 0;
4483 case_stack = thiscase;
4484 nesting_stack = thiscase;
4485 start_cleanup_deferral ();
4488 /* End a dummy case statement. */
4490 void
4491 expand_end_case_dummy ()
4493 end_cleanup_deferral ();
4494 POPSTACK (case_stack);
4497 /* Return the data type of the index-expression
4498 of the innermost case statement, or null if none. */
4500 tree
4501 case_index_expr_type ()
4503 if (case_stack)
4504 return TREE_TYPE (case_stack->data.case_stmt.index_expr);
4505 return 0;
4508 static void
4509 check_seenlabel ()
4511 /* If this is the first label, warn if any insns have been emitted. */
4512 if (case_stack->data.case_stmt.line_number_status >= 0)
4514 rtx insn;
4516 restore_line_number_status
4517 (case_stack->data.case_stmt.line_number_status);
4518 case_stack->data.case_stmt.line_number_status = -1;
4520 for (insn = case_stack->data.case_stmt.start;
4521 insn;
4522 insn = NEXT_INSN (insn))
4524 if (GET_CODE (insn) == CODE_LABEL)
4525 break;
4526 if (GET_CODE (insn) != NOTE
4527 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4530 insn = PREV_INSN (insn);
4531 while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4533 /* If insn is zero, then there must have been a syntax error. */
4534 if (insn)
4535 warning_with_file_and_line (NOTE_SOURCE_FILE(insn),
4536 NOTE_LINE_NUMBER(insn),
4537 "unreachable code at beginning of %s",
4538 case_stack->data.case_stmt.printname);
4539 break;
4545 /* Accumulate one case or default label inside a case or switch statement.
4546 VALUE is the value of the case (a null pointer, for a default label).
4547 The function CONVERTER, when applied to arguments T and V,
4548 converts the value V to the type T.
4550 If not currently inside a case or switch statement, return 1 and do
4551 nothing. The caller will print a language-specific error message.
4552 If VALUE is a duplicate or overlaps, return 2 and do nothing
4553 except store the (first) duplicate node in *DUPLICATE.
4554 If VALUE is out of range, return 3 and do nothing.
4555 If we are jumping into the scope of a cleanup or var-sized array, return 5.
4556 Return 0 on success.
4558 Extended to handle range statements. */
4561 pushcase (value, converter, label, duplicate)
4562 register tree value;
4563 tree (*converter) PARAMS ((tree, tree));
4564 register tree label;
4565 tree *duplicate;
4567 tree index_type;
4568 tree nominal_type;
4570 /* Fail if not inside a real case statement. */
4571 if (! (case_stack && case_stack->data.case_stmt.start))
4572 return 1;
4574 if (stack_block_stack
4575 && stack_block_stack->depth > case_stack->depth)
4576 return 5;
4578 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4579 nominal_type = case_stack->data.case_stmt.nominal_type;
4581 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4582 if (index_type == error_mark_node)
4583 return 0;
4585 /* Convert VALUE to the type in which the comparisons are nominally done. */
4586 if (value != 0)
4587 value = (*converter) (nominal_type, value);
4589 check_seenlabel ();
4591 /* Fail if this value is out of range for the actual type of the index
4592 (which may be narrower than NOMINAL_TYPE). */
4593 if (value != 0
4594 && (TREE_CONSTANT_OVERFLOW (value)
4595 || ! int_fits_type_p (value, index_type)))
4596 return 3;
4598 /* Fail if this is a duplicate or overlaps another entry. */
4599 if (value == 0)
4601 if (case_stack->data.case_stmt.default_label != 0)
4603 *duplicate = case_stack->data.case_stmt.default_label;
4604 return 2;
4606 case_stack->data.case_stmt.default_label = label;
4608 else
4609 return add_case_node (value, value, label, duplicate);
4611 expand_label (label);
4612 return 0;
4615 /* Like pushcase but this case applies to all values between VALUE1 and
4616 VALUE2 (inclusive). If VALUE1 is NULL, the range starts at the lowest
4617 value of the index type and ends at VALUE2. If VALUE2 is NULL, the range
4618 starts at VALUE1 and ends at the highest value of the index type.
4619 If both are NULL, this case applies to all values.
4621 The return value is the same as that of pushcase but there is one
4622 additional error code: 4 means the specified range was empty. */
4625 pushcase_range (value1, value2, converter, label, duplicate)
4626 register tree value1, value2;
4627 tree (*converter) PARAMS ((tree, tree));
4628 register tree label;
4629 tree *duplicate;
4631 tree index_type;
4632 tree nominal_type;
4634 /* Fail if not inside a real case statement. */
4635 if (! (case_stack && case_stack->data.case_stmt.start))
4636 return 1;
4638 if (stack_block_stack
4639 && stack_block_stack->depth > case_stack->depth)
4640 return 5;
4642 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4643 nominal_type = case_stack->data.case_stmt.nominal_type;
4645 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4646 if (index_type == error_mark_node)
4647 return 0;
4649 check_seenlabel ();
4651 /* Convert VALUEs to type in which the comparisons are nominally done
4652 and replace any unspecified value with the corresponding bound. */
4653 if (value1 == 0)
4654 value1 = TYPE_MIN_VALUE (index_type);
4655 if (value2 == 0)
4656 value2 = TYPE_MAX_VALUE (index_type);
4658 /* Fail if the range is empty. Do this before any conversion since
4659 we want to allow out-of-range empty ranges. */
4660 if (value2 != 0 && tree_int_cst_lt (value2, value1))
4661 return 4;
4663 /* If the max was unbounded, use the max of the nominal_type we are
4664 converting to. Do this after the < check above to suppress false
4665 positives. */
4666 if (value2 == 0)
4667 value2 = TYPE_MAX_VALUE (nominal_type);
4669 value1 = (*converter) (nominal_type, value1);
4670 value2 = (*converter) (nominal_type, value2);
4672 /* Fail if these values are out of range. */
4673 if (TREE_CONSTANT_OVERFLOW (value1)
4674 || ! int_fits_type_p (value1, index_type))
4675 return 3;
4677 if (TREE_CONSTANT_OVERFLOW (value2)
4678 || ! int_fits_type_p (value2, index_type))
4679 return 3;
4681 return add_case_node (value1, value2, label, duplicate);
4684 /* Do the actual insertion of a case label for pushcase and pushcase_range
4685 into case_stack->data.case_stmt.case_list. Use an AVL tree to avoid
4686 slowdown for large switch statements. */
4688 static int
4689 add_case_node (low, high, label, duplicate)
4690 tree low, high;
4691 tree label;
4692 tree *duplicate;
4694 struct case_node *p, **q, *r;
4696 q = &case_stack->data.case_stmt.case_list;
4697 p = *q;
4699 while ((r = *q))
4701 p = r;
4703 /* Keep going past elements distinctly greater than HIGH. */
4704 if (tree_int_cst_lt (high, p->low))
4705 q = &p->left;
4707 /* or distinctly less than LOW. */
4708 else if (tree_int_cst_lt (p->high, low))
4709 q = &p->right;
4711 else
4713 /* We have an overlap; this is an error. */
4714 *duplicate = p->code_label;
4715 return 2;
4719 /* Add this label to the chain, and succeed.
4720 Copy LOW, HIGH so they are on temporary rather than momentary
4721 obstack and will thus survive till the end of the case statement. */
4723 r = (struct case_node *) oballoc (sizeof (struct case_node));
4724 r->low = copy_node (low);
4726 /* If the bounds are equal, turn this into the one-value case. */
4728 if (tree_int_cst_equal (low, high))
4729 r->high = r->low;
4730 else
4732 r->high = copy_node (high);
4733 case_stack->data.case_stmt.num_ranges++;
4736 r->code_label = label;
4737 expand_label (label);
4739 *q = r;
4740 r->parent = p;
4741 r->left = 0;
4742 r->right = 0;
4743 r->balance = 0;
4745 while (p)
4747 struct case_node *s;
4749 if (r == p->left)
4751 int b;
4753 if (! (b = p->balance))
4754 /* Growth propagation from left side. */
4755 p->balance = -1;
4756 else if (b < 0)
4758 if (r->balance < 0)
4760 /* R-Rotation */
4761 if ((p->left = s = r->right))
4762 s->parent = p;
4764 r->right = p;
4765 p->balance = 0;
4766 r->balance = 0;
4767 s = p->parent;
4768 p->parent = r;
4770 if ((r->parent = s))
4772 if (s->left == p)
4773 s->left = r;
4774 else
4775 s->right = r;
4777 else
4778 case_stack->data.case_stmt.case_list = r;
4780 else
4781 /* r->balance == +1 */
4783 /* LR-Rotation */
4785 int b2;
4786 struct case_node *t = r->right;
4788 if ((p->left = s = t->right))
4789 s->parent = p;
4791 t->right = p;
4792 if ((r->right = s = t->left))
4793 s->parent = r;
4795 t->left = r;
4796 b = t->balance;
4797 b2 = b < 0;
4798 p->balance = b2;
4799 b2 = -b2 - b;
4800 r->balance = b2;
4801 t->balance = 0;
4802 s = p->parent;
4803 p->parent = t;
4804 r->parent = t;
4806 if ((t->parent = s))
4808 if (s->left == p)
4809 s->left = t;
4810 else
4811 s->right = t;
4813 else
4814 case_stack->data.case_stmt.case_list = t;
4816 break;
4819 else
4821 /* p->balance == +1; growth of left side balances the node. */
4822 p->balance = 0;
4823 break;
4826 else
4827 /* r == p->right */
4829 int b;
4831 if (! (b = p->balance))
4832 /* Growth propagation from right side. */
4833 p->balance++;
4834 else if (b > 0)
4836 if (r->balance > 0)
4838 /* L-Rotation */
4840 if ((p->right = s = r->left))
4841 s->parent = p;
4843 r->left = p;
4844 p->balance = 0;
4845 r->balance = 0;
4846 s = p->parent;
4847 p->parent = r;
4848 if ((r->parent = s))
4850 if (s->left == p)
4851 s->left = r;
4852 else
4853 s->right = r;
4856 else
4857 case_stack->data.case_stmt.case_list = r;
4860 else
4861 /* r->balance == -1 */
4863 /* RL-Rotation */
4864 int b2;
4865 struct case_node *t = r->left;
4867 if ((p->right = s = t->left))
4868 s->parent = p;
4870 t->left = p;
4872 if ((r->left = s = t->right))
4873 s->parent = r;
4875 t->right = r;
4876 b = t->balance;
4877 b2 = b < 0;
4878 r->balance = b2;
4879 b2 = -b2 - b;
4880 p->balance = b2;
4881 t->balance = 0;
4882 s = p->parent;
4883 p->parent = t;
4884 r->parent = t;
4886 if ((t->parent = s))
4888 if (s->left == p)
4889 s->left = t;
4890 else
4891 s->right = t;
4894 else
4895 case_stack->data.case_stmt.case_list = t;
4897 break;
4899 else
4901 /* p->balance == -1; growth of right side balances the node. */
4902 p->balance = 0;
4903 break;
4907 r = p;
4908 p = p->parent;
4911 return 0;
4915 /* Returns the number of possible values of TYPE.
4916 Returns -1 if the number is unknown, variable, or if the number does not
4917 fit in a HOST_WIDE_INT.
4918 Sets *SPARENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4919 do not increase monotonically (there may be duplicates);
4920 to 1 if the values increase monotonically, but not always by 1;
4921 otherwise sets it to 0. */
4923 HOST_WIDE_INT
4924 all_cases_count (type, spareness)
4925 tree type;
4926 int *spareness;
4928 tree t;
4929 HOST_WIDE_INT count, minval, lastval;
4931 *spareness = 0;
4933 switch (TREE_CODE (type))
4935 case BOOLEAN_TYPE:
4936 count = 2;
4937 break;
4939 case CHAR_TYPE:
4940 count = 1 << BITS_PER_UNIT;
4941 break;
4943 default:
4944 case INTEGER_TYPE:
4945 if (TYPE_MAX_VALUE (type) != 0
4946 && 0 != (t = fold (build (MINUS_EXPR, type, TYPE_MAX_VALUE (type),
4947 TYPE_MIN_VALUE (type))))
4948 && 0 != (t = fold (build (PLUS_EXPR, type, t,
4949 convert (type, integer_zero_node))))
4950 && host_integerp (t, 1))
4951 count = tree_low_cst (t, 1);
4952 else
4953 return -1;
4954 break;
4956 case ENUMERAL_TYPE:
4957 /* Don't waste time with enumeral types with huge values. */
4958 if (! host_integerp (TYPE_MIN_VALUE (type), 0)
4959 || TYPE_MAX_VALUE (type) == 0
4960 || ! host_integerp (TYPE_MAX_VALUE (type), 0))
4961 return -1;
4963 lastval = minval = tree_low_cst (TYPE_MIN_VALUE (type), 0);
4964 count = 0;
4966 for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
4968 HOST_WIDE_INT thisval = tree_low_cst (TREE_VALUE (t), 0);
4970 if (*spareness == 2 || thisval < lastval)
4971 *spareness = 2;
4972 else if (thisval != minval + count)
4973 *spareness = 1;
4975 count++;
4979 return count;
4982 #define BITARRAY_TEST(ARRAY, INDEX) \
4983 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4984 & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4985 #define BITARRAY_SET(ARRAY, INDEX) \
4986 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4987 |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4989 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4990 with the case values we have seen, assuming the case expression
4991 has the given TYPE.
4992 SPARSENESS is as determined by all_cases_count.
4994 The time needed is proportional to COUNT, unless
4995 SPARSENESS is 2, in which case quadratic time is needed. */
4997 void
4998 mark_seen_cases (type, cases_seen, count, sparseness)
4999 tree type;
5000 unsigned char *cases_seen;
5001 HOST_WIDE_INT count;
5002 int sparseness;
5004 tree next_node_to_try = NULL_TREE;
5005 HOST_WIDE_INT next_node_offset = 0;
5007 register struct case_node *n, *root = case_stack->data.case_stmt.case_list;
5008 tree val = make_node (INTEGER_CST);
5010 TREE_TYPE (val) = type;
5011 if (! root)
5012 ; /* Do nothing */
5013 else if (sparseness == 2)
5015 tree t;
5016 unsigned HOST_WIDE_INT xlo;
5018 /* This less efficient loop is only needed to handle
5019 duplicate case values (multiple enum constants
5020 with the same value). */
5021 TREE_TYPE (val) = TREE_TYPE (root->low);
5022 for (t = TYPE_VALUES (type), xlo = 0; t != NULL_TREE;
5023 t = TREE_CHAIN (t), xlo++)
5025 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
5026 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
5027 n = root;
5030 /* Keep going past elements distinctly greater than VAL. */
5031 if (tree_int_cst_lt (val, n->low))
5032 n = n->left;
5034 /* or distinctly less than VAL. */
5035 else if (tree_int_cst_lt (n->high, val))
5036 n = n->right;
5038 else
5040 /* We have found a matching range. */
5041 BITARRAY_SET (cases_seen, xlo);
5042 break;
5045 while (n);
5048 else
5050 if (root->left)
5051 case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
5053 for (n = root; n; n = n->right)
5055 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
5056 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
5057 while ( ! tree_int_cst_lt (n->high, val))
5059 /* Calculate (into xlo) the "offset" of the integer (val).
5060 The element with lowest value has offset 0, the next smallest
5061 element has offset 1, etc. */
5063 unsigned HOST_WIDE_INT xlo;
5064 HOST_WIDE_INT xhi;
5065 tree t;
5067 if (sparseness && TYPE_VALUES (type) != NULL_TREE)
5069 /* The TYPE_VALUES will be in increasing order, so
5070 starting searching where we last ended. */
5071 t = next_node_to_try;
5072 xlo = next_node_offset;
5073 xhi = 0;
5074 for (;;)
5076 if (t == NULL_TREE)
5078 t = TYPE_VALUES (type);
5079 xlo = 0;
5081 if (tree_int_cst_equal (val, TREE_VALUE (t)))
5083 next_node_to_try = TREE_CHAIN (t);
5084 next_node_offset = xlo + 1;
5085 break;
5087 xlo++;
5088 t = TREE_CHAIN (t);
5089 if (t == next_node_to_try)
5091 xlo = -1;
5092 break;
5096 else
5098 t = TYPE_MIN_VALUE (type);
5099 if (t)
5100 neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
5101 &xlo, &xhi);
5102 else
5103 xlo = xhi = 0;
5104 add_double (xlo, xhi,
5105 TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5106 &xlo, &xhi);
5109 if (xhi == 0 && xlo < (unsigned HOST_WIDE_INT) count)
5110 BITARRAY_SET (cases_seen, xlo);
5112 add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5113 1, 0,
5114 &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5120 /* Called when the index of a switch statement is an enumerated type
5121 and there is no default label.
5123 Checks that all enumeration literals are covered by the case
5124 expressions of a switch. Also, warn if there are any extra
5125 switch cases that are *not* elements of the enumerated type.
5127 If all enumeration literals were covered by the case expressions,
5128 turn one of the expressions into the default expression since it should
5129 not be possible to fall through such a switch. */
5131 void
5132 check_for_full_enumeration_handling (type)
5133 tree type;
5135 register struct case_node *n;
5136 register tree chain;
5137 #if 0 /* variable used by 'if 0'ed code below. */
5138 register struct case_node **l;
5139 int all_values = 1;
5140 #endif
5142 /* True iff the selector type is a numbered set mode. */
5143 int sparseness = 0;
5145 /* The number of possible selector values. */
5146 HOST_WIDE_INT size;
5148 /* For each possible selector value. a one iff it has been matched
5149 by a case value alternative. */
5150 unsigned char *cases_seen;
5152 /* The allocated size of cases_seen, in chars. */
5153 HOST_WIDE_INT bytes_needed;
5155 if (! warn_switch)
5156 return;
5158 size = all_cases_count (type, &sparseness);
5159 bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5161 if (size > 0 && size < 600000
5162 /* We deliberately use calloc here, not cmalloc, so that we can suppress
5163 this optimization if we don't have enough memory rather than
5164 aborting, as xmalloc would do. */
5165 && (cases_seen = (unsigned char *) calloc (bytes_needed, 1)) != NULL)
5167 HOST_WIDE_INT i;
5168 tree v = TYPE_VALUES (type);
5170 /* The time complexity of this code is normally O(N), where
5171 N being the number of members in the enumerated type.
5172 However, if type is a ENUMERAL_TYPE whose values do not
5173 increase monotonically, O(N*log(N)) time may be needed. */
5175 mark_seen_cases (type, cases_seen, size, sparseness);
5177 for (i = 0; v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5178 if (BITARRAY_TEST(cases_seen, i) == 0)
5179 warning ("enumeration value `%s' not handled in switch",
5180 IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5182 free (cases_seen);
5185 /* Now we go the other way around; we warn if there are case
5186 expressions that don't correspond to enumerators. This can
5187 occur since C and C++ don't enforce type-checking of
5188 assignments to enumeration variables. */
5190 if (case_stack->data.case_stmt.case_list
5191 && case_stack->data.case_stmt.case_list->left)
5192 case_stack->data.case_stmt.case_list
5193 = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5194 if (warn_switch)
5195 for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5197 for (chain = TYPE_VALUES (type);
5198 chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5199 chain = TREE_CHAIN (chain))
5202 if (!chain)
5204 if (TYPE_NAME (type) == 0)
5205 warning ("case value `%ld' not in enumerated type",
5206 (long) TREE_INT_CST_LOW (n->low));
5207 else
5208 warning ("case value `%ld' not in enumerated type `%s'",
5209 (long) TREE_INT_CST_LOW (n->low),
5210 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5211 == IDENTIFIER_NODE)
5212 ? TYPE_NAME (type)
5213 : DECL_NAME (TYPE_NAME (type))));
5215 if (!tree_int_cst_equal (n->low, n->high))
5217 for (chain = TYPE_VALUES (type);
5218 chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5219 chain = TREE_CHAIN (chain))
5222 if (!chain)
5224 if (TYPE_NAME (type) == 0)
5225 warning ("case value `%ld' not in enumerated type",
5226 (long) TREE_INT_CST_LOW (n->high));
5227 else
5228 warning ("case value `%ld' not in enumerated type `%s'",
5229 (long) TREE_INT_CST_LOW (n->high),
5230 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5231 == IDENTIFIER_NODE)
5232 ? TYPE_NAME (type)
5233 : DECL_NAME (TYPE_NAME (type))));
5238 #if 0
5239 /* ??? This optimization is disabled because it causes valid programs to
5240 fail. ANSI C does not guarantee that an expression with enum type
5241 will have a value that is the same as one of the enumeration literals. */
5243 /* If all values were found as case labels, make one of them the default
5244 label. Thus, this switch will never fall through. We arbitrarily pick
5245 the last one to make the default since this is likely the most
5246 efficient choice. */
5248 if (all_values)
5250 for (l = &case_stack->data.case_stmt.case_list;
5251 (*l)->right != 0;
5252 l = &(*l)->right)
5255 case_stack->data.case_stmt.default_label = (*l)->code_label;
5256 *l = 0;
5258 #endif /* 0 */
5262 /* Terminate a case (Pascal) or switch (C) statement
5263 in which ORIG_INDEX is the expression to be tested.
5264 Generate the code to test it and jump to the right place. */
5266 void
5267 expand_end_case (orig_index)
5268 tree orig_index;
5270 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE, orig_minval;
5271 rtx default_label = 0;
5272 register struct case_node *n;
5273 unsigned int count;
5274 rtx index;
5275 rtx table_label;
5276 int ncases;
5277 rtx *labelvec;
5278 register int i;
5279 rtx before_case;
5280 register struct nesting *thiscase = case_stack;
5281 tree index_expr, index_type;
5282 int unsignedp;
5284 /* Don't crash due to previous errors. */
5285 if (thiscase == NULL)
5286 return;
5288 table_label = gen_label_rtx ();
5289 index_expr = thiscase->data.case_stmt.index_expr;
5290 index_type = TREE_TYPE (index_expr);
5291 unsignedp = TREE_UNSIGNED (index_type);
5293 do_pending_stack_adjust ();
5295 /* This might get an spurious warning in the presence of a syntax error;
5296 it could be fixed by moving the call to check_seenlabel after the
5297 check for error_mark_node, and copying the code of check_seenlabel that
5298 deals with case_stack->data.case_stmt.line_number_status /
5299 restore_line_number_status in front of the call to end_cleanup_deferral;
5300 However, this might miss some useful warnings in the presence of
5301 non-syntax errors. */
5302 check_seenlabel ();
5304 /* An ERROR_MARK occurs for various reasons including invalid data type. */
5305 if (index_type != error_mark_node)
5307 /* If switch expression was an enumerated type, check that all
5308 enumeration literals are covered by the cases.
5309 No sense trying this if there's a default case, however. */
5311 if (!thiscase->data.case_stmt.default_label
5312 && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
5313 && TREE_CODE (index_expr) != INTEGER_CST)
5314 check_for_full_enumeration_handling (TREE_TYPE (orig_index));
5316 /* If we don't have a default-label, create one here,
5317 after the body of the switch. */
5318 if (thiscase->data.case_stmt.default_label == 0)
5320 thiscase->data.case_stmt.default_label
5321 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5322 expand_label (thiscase->data.case_stmt.default_label);
5324 default_label = label_rtx (thiscase->data.case_stmt.default_label);
5326 before_case = get_last_insn ();
5328 if (thiscase->data.case_stmt.case_list
5329 && thiscase->data.case_stmt.case_list->left)
5330 thiscase->data.case_stmt.case_list
5331 = case_tree2list(thiscase->data.case_stmt.case_list, 0);
5333 /* Simplify the case-list before we count it. */
5334 group_case_nodes (thiscase->data.case_stmt.case_list);
5336 /* Get upper and lower bounds of case values.
5337 Also convert all the case values to the index expr's data type. */
5339 count = 0;
5340 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5342 /* Check low and high label values are integers. */
5343 if (TREE_CODE (n->low) != INTEGER_CST)
5344 abort ();
5345 if (TREE_CODE (n->high) != INTEGER_CST)
5346 abort ();
5348 n->low = convert (index_type, n->low);
5349 n->high = convert (index_type, n->high);
5351 /* Count the elements and track the largest and smallest
5352 of them (treating them as signed even if they are not). */
5353 if (count++ == 0)
5355 minval = n->low;
5356 maxval = n->high;
5358 else
5360 if (INT_CST_LT (n->low, minval))
5361 minval = n->low;
5362 if (INT_CST_LT (maxval, n->high))
5363 maxval = n->high;
5365 /* A range counts double, since it requires two compares. */
5366 if (! tree_int_cst_equal (n->low, n->high))
5367 count++;
5370 orig_minval = minval;
5372 /* Compute span of values. */
5373 if (count != 0)
5374 range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5376 end_cleanup_deferral ();
5378 if (count == 0)
5380 expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5381 emit_queue ();
5382 emit_jump (default_label);
5385 /* If range of values is much bigger than number of values,
5386 make a sequence of conditional branches instead of a dispatch.
5387 If the switch-index is a constant, do it this way
5388 because we can optimize it. */
5390 #ifndef CASE_VALUES_THRESHOLD
5391 #ifdef HAVE_casesi
5392 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
5393 #else
5394 /* If machine does not have a case insn that compares the
5395 bounds, this means extra overhead for dispatch tables
5396 which raises the threshold for using them. */
5397 #define CASE_VALUES_THRESHOLD 5
5398 #endif /* HAVE_casesi */
5399 #endif /* CASE_VALUES_THRESHOLD */
5401 else if (count < CASE_VALUES_THRESHOLD
5402 || compare_tree_int (range, 10 * count) > 0
5403 /* RANGE may be signed, and really large ranges will show up
5404 as negative numbers. */
5405 || compare_tree_int (range, 0) < 0
5406 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5407 || flag_pic
5408 #endif
5409 || TREE_CODE (index_expr) == INTEGER_CST
5410 /* These will reduce to a constant. */
5411 || (TREE_CODE (index_expr) == CALL_EXPR
5412 && TREE_CODE (TREE_OPERAND (index_expr, 0)) == ADDR_EXPR
5413 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == FUNCTION_DECL
5414 && DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_NORMAL
5415 && DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_CLASSIFY_TYPE)
5416 || (TREE_CODE (index_expr) == COMPOUND_EXPR
5417 && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
5419 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5421 /* If the index is a short or char that we do not have
5422 an insn to handle comparisons directly, convert it to
5423 a full integer now, rather than letting each comparison
5424 generate the conversion. */
5426 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5427 && (cmp_optab->handlers[(int) GET_MODE(index)].insn_code
5428 == CODE_FOR_nothing))
5430 enum machine_mode wider_mode;
5431 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5432 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5433 if (cmp_optab->handlers[(int) wider_mode].insn_code
5434 != CODE_FOR_nothing)
5436 index = convert_to_mode (wider_mode, index, unsignedp);
5437 break;
5441 emit_queue ();
5442 do_pending_stack_adjust ();
5444 index = protect_from_queue (index, 0);
5445 if (GET_CODE (index) == MEM)
5446 index = copy_to_reg (index);
5447 if (GET_CODE (index) == CONST_INT
5448 || TREE_CODE (index_expr) == INTEGER_CST)
5450 /* Make a tree node with the proper constant value
5451 if we don't already have one. */
5452 if (TREE_CODE (index_expr) != INTEGER_CST)
5454 index_expr
5455 = build_int_2 (INTVAL (index),
5456 unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5457 index_expr = convert (index_type, index_expr);
5460 /* For constant index expressions we need only
5461 issue a unconditional branch to the appropriate
5462 target code. The job of removing any unreachable
5463 code is left to the optimisation phase if the
5464 "-O" option is specified. */
5465 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5466 if (! tree_int_cst_lt (index_expr, n->low)
5467 && ! tree_int_cst_lt (n->high, index_expr))
5468 break;
5470 if (n)
5471 emit_jump (label_rtx (n->code_label));
5472 else
5473 emit_jump (default_label);
5475 else
5477 /* If the index expression is not constant we generate
5478 a binary decision tree to select the appropriate
5479 target code. This is done as follows:
5481 The list of cases is rearranged into a binary tree,
5482 nearly optimal assuming equal probability for each case.
5484 The tree is transformed into RTL, eliminating
5485 redundant test conditions at the same time.
5487 If program flow could reach the end of the
5488 decision tree an unconditional jump to the
5489 default code is emitted. */
5491 use_cost_table
5492 = (TREE_CODE (TREE_TYPE (orig_index)) != ENUMERAL_TYPE
5493 && estimate_case_costs (thiscase->data.case_stmt.case_list));
5494 balance_case_nodes (&thiscase->data.case_stmt.case_list,
5495 NULL_PTR);
5496 emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5497 default_label, index_type);
5498 emit_jump_if_reachable (default_label);
5501 else
5503 int win = 0;
5504 #ifdef HAVE_casesi
5505 if (HAVE_casesi)
5507 enum machine_mode index_mode = SImode;
5508 int index_bits = GET_MODE_BITSIZE (index_mode);
5509 rtx op1, op2;
5510 enum machine_mode op_mode;
5512 /* Convert the index to SImode. */
5513 if (GET_MODE_BITSIZE (TYPE_MODE (index_type))
5514 > GET_MODE_BITSIZE (index_mode))
5516 enum machine_mode omode = TYPE_MODE (index_type);
5517 rtx rangertx = expand_expr (range, NULL_RTX, VOIDmode, 0);
5519 /* We must handle the endpoints in the original mode. */
5520 index_expr = build (MINUS_EXPR, index_type,
5521 index_expr, minval);
5522 minval = integer_zero_node;
5523 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5524 emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
5525 omode, 1, 0, default_label);
5526 /* Now we can safely truncate. */
5527 index = convert_to_mode (index_mode, index, 0);
5529 else
5531 if (TYPE_MODE (index_type) != index_mode)
5533 index_expr = convert (type_for_size (index_bits, 0),
5534 index_expr);
5535 index_type = TREE_TYPE (index_expr);
5538 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5540 emit_queue ();
5541 index = protect_from_queue (index, 0);
5542 do_pending_stack_adjust ();
5544 op_mode = insn_data[(int)CODE_FOR_casesi].operand[0].mode;
5545 if (! (*insn_data[(int)CODE_FOR_casesi].operand[0].predicate)
5546 (index, op_mode))
5547 index = copy_to_mode_reg (op_mode, index);
5549 op1 = expand_expr (minval, NULL_RTX, VOIDmode, 0);
5551 op_mode = insn_data[(int)CODE_FOR_casesi].operand[1].mode;
5552 if (! (*insn_data[(int)CODE_FOR_casesi].operand[1].predicate)
5553 (op1, op_mode))
5554 op1 = copy_to_mode_reg (op_mode, op1);
5556 op2 = expand_expr (range, NULL_RTX, VOIDmode, 0);
5558 op_mode = insn_data[(int)CODE_FOR_casesi].operand[2].mode;
5559 if (! (*insn_data[(int)CODE_FOR_casesi].operand[2].predicate)
5560 (op2, op_mode))
5561 op2 = copy_to_mode_reg (op_mode, op2);
5563 emit_jump_insn (gen_casesi (index, op1, op2,
5564 table_label, default_label));
5565 win = 1;
5567 #endif
5568 #ifdef HAVE_tablejump
5569 if (! win && HAVE_tablejump)
5571 index_type = thiscase->data.case_stmt.nominal_type;
5572 index_expr = fold (build (MINUS_EXPR, index_type,
5573 convert (index_type, index_expr),
5574 convert (index_type, minval)));
5575 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5576 emit_queue ();
5577 index = protect_from_queue (index, 0);
5578 do_pending_stack_adjust ();
5580 do_tablejump (index, TYPE_MODE (index_type),
5581 expand_expr (range, NULL_RTX, VOIDmode, 0),
5582 table_label, default_label);
5583 win = 1;
5585 #endif
5586 if (! win)
5587 abort ();
5589 /* Get table of labels to jump to, in order of case index. */
5591 ncases = TREE_INT_CST_LOW (range) + 1;
5592 labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5593 bzero ((char *) labelvec, ncases * sizeof (rtx));
5595 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5597 register HOST_WIDE_INT i
5598 = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (orig_minval);
5600 while (1)
5602 labelvec[i]
5603 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5604 if (i + TREE_INT_CST_LOW (orig_minval)
5605 == TREE_INT_CST_LOW (n->high))
5606 break;
5607 i++;
5611 /* Fill in the gaps with the default. */
5612 for (i = 0; i < ncases; i++)
5613 if (labelvec[i] == 0)
5614 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5616 /* Output the table */
5617 emit_label (table_label);
5619 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5620 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5621 gen_rtx_LABEL_REF (Pmode, table_label),
5622 gen_rtvec_v (ncases, labelvec),
5623 const0_rtx, const0_rtx));
5624 else
5625 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5626 gen_rtvec_v (ncases, labelvec)));
5628 /* If the case insn drops through the table,
5629 after the table we must jump to the default-label.
5630 Otherwise record no drop-through after the table. */
5631 #ifdef CASE_DROPS_THROUGH
5632 emit_jump (default_label);
5633 #else
5634 emit_barrier ();
5635 #endif
5638 before_case = squeeze_notes (NEXT_INSN (before_case), get_last_insn ());
5639 reorder_insns (before_case, get_last_insn (),
5640 thiscase->data.case_stmt.start);
5642 else
5643 end_cleanup_deferral ();
5645 if (thiscase->exit_label)
5646 emit_label (thiscase->exit_label);
5648 POPSTACK (case_stack);
5650 free_temp_slots ();
5653 /* Convert the tree NODE into a list linked by the right field, with the left
5654 field zeroed. RIGHT is used for recursion; it is a list to be placed
5655 rightmost in the resulting list. */
5657 static struct case_node *
5658 case_tree2list (node, right)
5659 struct case_node *node, *right;
5661 struct case_node *left;
5663 if (node->right)
5664 right = case_tree2list (node->right, right);
5666 node->right = right;
5667 if ((left = node->left))
5669 node->left = 0;
5670 return case_tree2list (left, node);
5673 return node;
5676 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
5678 static void
5679 do_jump_if_equal (op1, op2, label, unsignedp)
5680 rtx op1, op2, label;
5681 int unsignedp;
5683 if (GET_CODE (op1) == CONST_INT
5684 && GET_CODE (op2) == CONST_INT)
5686 if (INTVAL (op1) == INTVAL (op2))
5687 emit_jump (label);
5689 else
5691 enum machine_mode mode = GET_MODE (op1);
5692 if (mode == VOIDmode)
5693 mode = GET_MODE (op2);
5694 emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX, mode, unsignedp,
5695 0, label);
5699 /* Not all case values are encountered equally. This function
5700 uses a heuristic to weight case labels, in cases where that
5701 looks like a reasonable thing to do.
5703 Right now, all we try to guess is text, and we establish the
5704 following weights:
5706 chars above space: 16
5707 digits: 16
5708 default: 12
5709 space, punct: 8
5710 tab: 4
5711 newline: 2
5712 other "\" chars: 1
5713 remaining chars: 0
5715 If we find any cases in the switch that are not either -1 or in the range
5716 of valid ASCII characters, or are control characters other than those
5717 commonly used with "\", don't treat this switch scanning text.
5719 Return 1 if these nodes are suitable for cost estimation, otherwise
5720 return 0. */
5722 static int
5723 estimate_case_costs (node)
5724 case_node_ptr node;
5726 tree min_ascii = build_int_2 (-1, -1);
5727 tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5728 case_node_ptr n;
5729 int i;
5731 /* If we haven't already made the cost table, make it now. Note that the
5732 lower bound of the table is -1, not zero. */
5734 if (cost_table == NULL)
5736 cost_table = cost_table_ + 1;
5738 for (i = 0; i < 128; i++)
5740 if (ISALNUM (i))
5741 cost_table[i] = 16;
5742 else if (ISPUNCT (i))
5743 cost_table[i] = 8;
5744 else if (ISCNTRL (i))
5745 cost_table[i] = -1;
5748 cost_table[' '] = 8;
5749 cost_table['\t'] = 4;
5750 cost_table['\0'] = 4;
5751 cost_table['\n'] = 2;
5752 cost_table['\f'] = 1;
5753 cost_table['\v'] = 1;
5754 cost_table['\b'] = 1;
5757 /* See if all the case expressions look like text. It is text if the
5758 constant is >= -1 and the highest constant is <= 127. Do all comparisons
5759 as signed arithmetic since we don't want to ever access cost_table with a
5760 value less than -1. Also check that none of the constants in a range
5761 are strange control characters. */
5763 for (n = node; n; n = n->right)
5765 if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5766 return 0;
5768 for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
5769 i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
5770 if (cost_table[i] < 0)
5771 return 0;
5774 /* All interesting values are within the range of interesting
5775 ASCII characters. */
5776 return 1;
5779 /* Scan an ordered list of case nodes
5780 combining those with consecutive values or ranges.
5782 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
5784 static void
5785 group_case_nodes (head)
5786 case_node_ptr head;
5788 case_node_ptr node = head;
5790 while (node)
5792 rtx lb = next_real_insn (label_rtx (node->code_label));
5793 rtx lb2;
5794 case_node_ptr np = node;
5796 /* Try to group the successors of NODE with NODE. */
5797 while (((np = np->right) != 0)
5798 /* Do they jump to the same place? */
5799 && ((lb2 = next_real_insn (label_rtx (np->code_label))) == lb
5800 || (lb != 0 && lb2 != 0
5801 && simplejump_p (lb)
5802 && simplejump_p (lb2)
5803 && rtx_equal_p (SET_SRC (PATTERN (lb)),
5804 SET_SRC (PATTERN (lb2)))))
5805 /* Are their ranges consecutive? */
5806 && tree_int_cst_equal (np->low,
5807 fold (build (PLUS_EXPR,
5808 TREE_TYPE (node->high),
5809 node->high,
5810 integer_one_node)))
5811 /* An overflow is not consecutive. */
5812 && tree_int_cst_lt (node->high,
5813 fold (build (PLUS_EXPR,
5814 TREE_TYPE (node->high),
5815 node->high,
5816 integer_one_node))))
5818 node->high = np->high;
5820 /* NP is the first node after NODE which can't be grouped with it.
5821 Delete the nodes in between, and move on to that node. */
5822 node->right = np;
5823 node = np;
5827 /* Take an ordered list of case nodes
5828 and transform them into a near optimal binary tree,
5829 on the assumption that any target code selection value is as
5830 likely as any other.
5832 The transformation is performed by splitting the ordered
5833 list into two equal sections plus a pivot. The parts are
5834 then attached to the pivot as left and right branches. Each
5835 branch is then transformed recursively. */
5837 static void
5838 balance_case_nodes (head, parent)
5839 case_node_ptr *head;
5840 case_node_ptr parent;
5842 register case_node_ptr np;
5844 np = *head;
5845 if (np)
5847 int cost = 0;
5848 int i = 0;
5849 int ranges = 0;
5850 register case_node_ptr *npp;
5851 case_node_ptr left;
5853 /* Count the number of entries on branch. Also count the ranges. */
5855 while (np)
5857 if (!tree_int_cst_equal (np->low, np->high))
5859 ranges++;
5860 if (use_cost_table)
5861 cost += cost_table[TREE_INT_CST_LOW (np->high)];
5864 if (use_cost_table)
5865 cost += cost_table[TREE_INT_CST_LOW (np->low)];
5867 i++;
5868 np = np->right;
5871 if (i > 2)
5873 /* Split this list if it is long enough for that to help. */
5874 npp = head;
5875 left = *npp;
5876 if (use_cost_table)
5878 /* Find the place in the list that bisects the list's total cost,
5879 Here I gets half the total cost. */
5880 int n_moved = 0;
5881 i = (cost + 1) / 2;
5882 while (1)
5884 /* Skip nodes while their cost does not reach that amount. */
5885 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5886 i -= cost_table[TREE_INT_CST_LOW ((*npp)->high)];
5887 i -= cost_table[TREE_INT_CST_LOW ((*npp)->low)];
5888 if (i <= 0)
5889 break;
5890 npp = &(*npp)->right;
5891 n_moved += 1;
5893 if (n_moved == 0)
5895 /* Leave this branch lopsided, but optimize left-hand
5896 side and fill in `parent' fields for right-hand side. */
5897 np = *head;
5898 np->parent = parent;
5899 balance_case_nodes (&np->left, np);
5900 for (; np->right; np = np->right)
5901 np->right->parent = np;
5902 return;
5905 /* If there are just three nodes, split at the middle one. */
5906 else if (i == 3)
5907 npp = &(*npp)->right;
5908 else
5910 /* Find the place in the list that bisects the list's total cost,
5911 where ranges count as 2.
5912 Here I gets half the total cost. */
5913 i = (i + ranges + 1) / 2;
5914 while (1)
5916 /* Skip nodes while their cost does not reach that amount. */
5917 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5918 i--;
5919 i--;
5920 if (i <= 0)
5921 break;
5922 npp = &(*npp)->right;
5925 *head = np = *npp;
5926 *npp = 0;
5927 np->parent = parent;
5928 np->left = left;
5930 /* Optimize each of the two split parts. */
5931 balance_case_nodes (&np->left, np);
5932 balance_case_nodes (&np->right, np);
5934 else
5936 /* Else leave this branch as one level,
5937 but fill in `parent' fields. */
5938 np = *head;
5939 np->parent = parent;
5940 for (; np->right; np = np->right)
5941 np->right->parent = np;
5946 /* Search the parent sections of the case node tree
5947 to see if a test for the lower bound of NODE would be redundant.
5948 INDEX_TYPE is the type of the index expression.
5950 The instructions to generate the case decision tree are
5951 output in the same order as nodes are processed so it is
5952 known that if a parent node checks the range of the current
5953 node minus one that the current node is bounded at its lower
5954 span. Thus the test would be redundant. */
5956 static int
5957 node_has_low_bound (node, index_type)
5958 case_node_ptr node;
5959 tree index_type;
5961 tree low_minus_one;
5962 case_node_ptr pnode;
5964 /* If the lower bound of this node is the lowest value in the index type,
5965 we need not test it. */
5967 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
5968 return 1;
5970 /* If this node has a left branch, the value at the left must be less
5971 than that at this node, so it cannot be bounded at the bottom and
5972 we need not bother testing any further. */
5974 if (node->left)
5975 return 0;
5977 low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
5978 node->low, integer_one_node));
5980 /* If the subtraction above overflowed, we can't verify anything.
5981 Otherwise, look for a parent that tests our value - 1. */
5983 if (! tree_int_cst_lt (low_minus_one, node->low))
5984 return 0;
5986 for (pnode = node->parent; pnode; pnode = pnode->parent)
5987 if (tree_int_cst_equal (low_minus_one, pnode->high))
5988 return 1;
5990 return 0;
5993 /* Search the parent sections of the case node tree
5994 to see if a test for the upper bound of NODE would be redundant.
5995 INDEX_TYPE is the type of the index expression.
5997 The instructions to generate the case decision tree are
5998 output in the same order as nodes are processed so it is
5999 known that if a parent node checks the range of the current
6000 node plus one that the current node is bounded at its upper
6001 span. Thus the test would be redundant. */
6003 static int
6004 node_has_high_bound (node, index_type)
6005 case_node_ptr node;
6006 tree index_type;
6008 tree high_plus_one;
6009 case_node_ptr pnode;
6011 /* If there is no upper bound, obviously no test is needed. */
6013 if (TYPE_MAX_VALUE (index_type) == NULL)
6014 return 1;
6016 /* If the upper bound of this node is the highest value in the type
6017 of the index expression, we need not test against it. */
6019 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
6020 return 1;
6022 /* If this node has a right branch, the value at the right must be greater
6023 than that at this node, so it cannot be bounded at the top and
6024 we need not bother testing any further. */
6026 if (node->right)
6027 return 0;
6029 high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
6030 node->high, integer_one_node));
6032 /* If the addition above overflowed, we can't verify anything.
6033 Otherwise, look for a parent that tests our value + 1. */
6035 if (! tree_int_cst_lt (node->high, high_plus_one))
6036 return 0;
6038 for (pnode = node->parent; pnode; pnode = pnode->parent)
6039 if (tree_int_cst_equal (high_plus_one, pnode->low))
6040 return 1;
6042 return 0;
6045 /* Search the parent sections of the
6046 case node tree to see if both tests for the upper and lower
6047 bounds of NODE would be redundant. */
6049 static int
6050 node_is_bounded (node, index_type)
6051 case_node_ptr node;
6052 tree index_type;
6054 return (node_has_low_bound (node, index_type)
6055 && node_has_high_bound (node, index_type));
6058 /* Emit an unconditional jump to LABEL unless it would be dead code. */
6060 static void
6061 emit_jump_if_reachable (label)
6062 rtx label;
6064 if (GET_CODE (get_last_insn ()) != BARRIER)
6065 emit_jump (label);
6068 /* Emit step-by-step code to select a case for the value of INDEX.
6069 The thus generated decision tree follows the form of the
6070 case-node binary tree NODE, whose nodes represent test conditions.
6071 INDEX_TYPE is the type of the index of the switch.
6073 Care is taken to prune redundant tests from the decision tree
6074 by detecting any boundary conditions already checked by
6075 emitted rtx. (See node_has_high_bound, node_has_low_bound
6076 and node_is_bounded, above.)
6078 Where the test conditions can be shown to be redundant we emit
6079 an unconditional jump to the target code. As a further
6080 optimization, the subordinates of a tree node are examined to
6081 check for bounded nodes. In this case conditional and/or
6082 unconditional jumps as a result of the boundary check for the
6083 current node are arranged to target the subordinates associated
6084 code for out of bound conditions on the current node.
6086 We can assume that when control reaches the code generated here,
6087 the index value has already been compared with the parents
6088 of this node, and determined to be on the same side of each parent
6089 as this node is. Thus, if this node tests for the value 51,
6090 and a parent tested for 52, we don't need to consider
6091 the possibility of a value greater than 51. If another parent
6092 tests for the value 50, then this node need not test anything. */
6094 static void
6095 emit_case_nodes (index, node, default_label, index_type)
6096 rtx index;
6097 case_node_ptr node;
6098 rtx default_label;
6099 tree index_type;
6101 /* If INDEX has an unsigned type, we must make unsigned branches. */
6102 int unsignedp = TREE_UNSIGNED (index_type);
6103 enum machine_mode mode = GET_MODE (index);
6105 /* See if our parents have already tested everything for us.
6106 If they have, emit an unconditional jump for this node. */
6107 if (node_is_bounded (node, index_type))
6108 emit_jump (label_rtx (node->code_label));
6110 else if (tree_int_cst_equal (node->low, node->high))
6112 /* Node is single valued. First see if the index expression matches
6113 this node and then check our children, if any. */
6115 do_jump_if_equal (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
6116 label_rtx (node->code_label), unsignedp);
6118 if (node->right != 0 && node->left != 0)
6120 /* This node has children on both sides.
6121 Dispatch to one side or the other
6122 by comparing the index value with this node's value.
6123 If one subtree is bounded, check that one first,
6124 so we can avoid real branches in the tree. */
6126 if (node_is_bounded (node->right, index_type))
6128 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6129 VOIDmode, 0),
6130 GT, NULL_RTX, mode, unsignedp, 0,
6131 label_rtx (node->right->code_label));
6132 emit_case_nodes (index, node->left, default_label, index_type);
6135 else if (node_is_bounded (node->left, index_type))
6137 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6138 VOIDmode, 0),
6139 LT, NULL_RTX, mode, unsignedp, 0,
6140 label_rtx (node->left->code_label));
6141 emit_case_nodes (index, node->right, default_label, index_type);
6144 else
6146 /* Neither node is bounded. First distinguish the two sides;
6147 then emit the code for one side at a time. */
6149 tree test_label
6150 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6152 /* See if the value is on the right. */
6153 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6154 VOIDmode, 0),
6155 GT, NULL_RTX, mode, unsignedp, 0,
6156 label_rtx (test_label));
6158 /* Value must be on the left.
6159 Handle the left-hand subtree. */
6160 emit_case_nodes (index, node->left, default_label, index_type);
6161 /* If left-hand subtree does nothing,
6162 go to default. */
6163 emit_jump_if_reachable (default_label);
6165 /* Code branches here for the right-hand subtree. */
6166 expand_label (test_label);
6167 emit_case_nodes (index, node->right, default_label, index_type);
6171 else if (node->right != 0 && node->left == 0)
6173 /* Here we have a right child but no left so we issue conditional
6174 branch to default and process the right child.
6176 Omit the conditional branch to default if we it avoid only one
6177 right child; it costs too much space to save so little time. */
6179 if (node->right->right || node->right->left
6180 || !tree_int_cst_equal (node->right->low, node->right->high))
6182 if (!node_has_low_bound (node, index_type))
6184 emit_cmp_and_jump_insns (index, expand_expr (node->high,
6185 NULL_RTX,
6186 VOIDmode, 0),
6187 LT, NULL_RTX, mode, unsignedp, 0,
6188 default_label);
6191 emit_case_nodes (index, node->right, default_label, index_type);
6193 else
6194 /* We cannot process node->right normally
6195 since we haven't ruled out the numbers less than
6196 this node's value. So handle node->right explicitly. */
6197 do_jump_if_equal (index,
6198 expand_expr (node->right->low, NULL_RTX,
6199 VOIDmode, 0),
6200 label_rtx (node->right->code_label), unsignedp);
6203 else if (node->right == 0 && node->left != 0)
6205 /* Just one subtree, on the left. */
6207 #if 0 /* The following code and comment were formerly part
6208 of the condition here, but they didn't work
6209 and I don't understand what the idea was. -- rms. */
6210 /* If our "most probable entry" is less probable
6211 than the default label, emit a jump to
6212 the default label using condition codes
6213 already lying around. With no right branch,
6214 a branch-greater-than will get us to the default
6215 label correctly. */
6216 if (use_cost_table
6217 && cost_table[TREE_INT_CST_LOW (node->high)] < 12)
6219 #endif /* 0 */
6220 if (node->left->left || node->left->right
6221 || !tree_int_cst_equal (node->left->low, node->left->high))
6223 if (!node_has_high_bound (node, index_type))
6225 emit_cmp_and_jump_insns (index, expand_expr (node->high,
6226 NULL_RTX,
6227 VOIDmode, 0),
6228 GT, NULL_RTX, mode, unsignedp, 0,
6229 default_label);
6232 emit_case_nodes (index, node->left, default_label, index_type);
6234 else
6235 /* We cannot process node->left normally
6236 since we haven't ruled out the numbers less than
6237 this node's value. So handle node->left explicitly. */
6238 do_jump_if_equal (index,
6239 expand_expr (node->left->low, NULL_RTX,
6240 VOIDmode, 0),
6241 label_rtx (node->left->code_label), unsignedp);
6244 else
6246 /* Node is a range. These cases are very similar to those for a single
6247 value, except that we do not start by testing whether this node
6248 is the one to branch to. */
6250 if (node->right != 0 && node->left != 0)
6252 /* Node has subtrees on both sides.
6253 If the right-hand subtree is bounded,
6254 test for it first, since we can go straight there.
6255 Otherwise, we need to make a branch in the control structure,
6256 then handle the two subtrees. */
6257 tree test_label = 0;
6260 if (node_is_bounded (node->right, index_type))
6261 /* Right hand node is fully bounded so we can eliminate any
6262 testing and branch directly to the target code. */
6263 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6264 VOIDmode, 0),
6265 GT, NULL_RTX, mode, unsignedp, 0,
6266 label_rtx (node->right->code_label));
6267 else
6269 /* Right hand node requires testing.
6270 Branch to a label where we will handle it later. */
6272 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6273 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6274 VOIDmode, 0),
6275 GT, NULL_RTX, mode, unsignedp, 0,
6276 label_rtx (test_label));
6279 /* Value belongs to this node or to the left-hand subtree. */
6281 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6282 VOIDmode, 0),
6283 GE, NULL_RTX, mode, unsignedp, 0,
6284 label_rtx (node->code_label));
6286 /* Handle the left-hand subtree. */
6287 emit_case_nodes (index, node->left, default_label, index_type);
6289 /* If right node had to be handled later, do that now. */
6291 if (test_label)
6293 /* If the left-hand subtree fell through,
6294 don't let it fall into the right-hand subtree. */
6295 emit_jump_if_reachable (default_label);
6297 expand_label (test_label);
6298 emit_case_nodes (index, node->right, default_label, index_type);
6302 else if (node->right != 0 && node->left == 0)
6304 /* Deal with values to the left of this node,
6305 if they are possible. */
6306 if (!node_has_low_bound (node, index_type))
6308 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6309 VOIDmode, 0),
6310 LT, NULL_RTX, mode, unsignedp, 0,
6311 default_label);
6314 /* Value belongs to this node or to the right-hand subtree. */
6316 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6317 VOIDmode, 0),
6318 LE, NULL_RTX, mode, unsignedp, 0,
6319 label_rtx (node->code_label));
6321 emit_case_nodes (index, node->right, default_label, index_type);
6324 else if (node->right == 0 && node->left != 0)
6326 /* Deal with values to the right of this node,
6327 if they are possible. */
6328 if (!node_has_high_bound (node, index_type))
6330 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6331 VOIDmode, 0),
6332 GT, NULL_RTX, mode, unsignedp, 0,
6333 default_label);
6336 /* Value belongs to this node or to the left-hand subtree. */
6338 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6339 VOIDmode, 0),
6340 GE, NULL_RTX, mode, unsignedp, 0,
6341 label_rtx (node->code_label));
6343 emit_case_nodes (index, node->left, default_label, index_type);
6346 else
6348 /* Node has no children so we check low and high bounds to remove
6349 redundant tests. Only one of the bounds can exist,
6350 since otherwise this node is bounded--a case tested already. */
6352 if (!node_has_high_bound (node, index_type))
6354 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6355 VOIDmode, 0),
6356 GT, NULL_RTX, mode, unsignedp, 0,
6357 default_label);
6360 if (!node_has_low_bound (node, index_type))
6362 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6363 VOIDmode, 0),
6364 LT, NULL_RTX, mode, unsignedp, 0,
6365 default_label);
6368 emit_jump (label_rtx (node->code_label));