* optimize.c (initialize_inlined_parameters): Take FN to which the
[official-gcc.git] / gcc / stmt.c
blob8256646bab2af3424502d2fa9208982444136911
1 /* Expands front end tree to back end RTL for GNU C-Compiler
2 Copyright (C) 1987, 88, 89, 92-98, 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 /* This file handles the generation of rtl code from tree structure
23 above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
24 It also creates the rtl expressions for parameters and auto variables
25 and has full responsibility for allocating stack slots.
27 The functions whose names start with `expand_' are called by the
28 parser to generate RTL instructions for various kinds of constructs.
30 Some control and binding constructs require calling several such
31 functions at different times. For example, a simple if-then
32 is expanded by calling `expand_start_cond' (with the condition-expression
33 as argument) before parsing the then-clause and calling `expand_end_cond'
34 after parsing the then-clause. */
36 #include "config.h"
37 #include "system.h"
39 #include "rtl.h"
40 #include "tree.h"
41 #include "tm_p.h"
42 #include "flags.h"
43 #include "except.h"
44 #include "function.h"
45 #include "insn-flags.h"
46 #include "insn-config.h"
47 #include "insn-codes.h"
48 #include "expr.h"
49 #include "hard-reg-set.h"
50 #include "obstack.h"
51 #include "loop.h"
52 #include "recog.h"
53 #include "machmode.h"
54 #include "toplev.h"
55 #include "output.h"
56 #include "ggc.h"
58 #define obstack_chunk_alloc xmalloc
59 #define obstack_chunk_free free
60 struct obstack stmt_obstack;
62 /* Assume that case vectors are not pc-relative. */
63 #ifndef CASE_VECTOR_PC_RELATIVE
64 #define CASE_VECTOR_PC_RELATIVE 0
65 #endif
68 /* Functions and data structures for expanding case statements. */
70 /* Case label structure, used to hold info on labels within case
71 statements. We handle "range" labels; for a single-value label
72 as in C, the high and low limits are the same.
74 An AVL tree of case nodes is initially created, and later transformed
75 to a list linked via the RIGHT fields in the nodes. Nodes with
76 higher case values are later in the list.
78 Switch statements can be output in one of two forms. A branch table
79 is used if there are more than a few labels and the labels are dense
80 within the range between the smallest and largest case value. If a
81 branch table is used, no further manipulations are done with the case
82 node chain.
84 The alternative to the use of a branch table is to generate a series
85 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
86 and PARENT fields to hold a binary tree. Initially the tree is
87 totally unbalanced, with everything on the right. We balance the tree
88 with nodes on the left having lower case values than the parent
89 and nodes on the right having higher values. We then output the tree
90 in order. */
92 struct case_node
94 struct case_node *left; /* Left son in binary tree */
95 struct case_node *right; /* Right son in binary tree; also node chain */
96 struct case_node *parent; /* Parent of node in binary tree */
97 tree low; /* Lowest index value for this label */
98 tree high; /* Highest index value for this label */
99 tree code_label; /* Label to jump to when node matches */
100 int balance;
103 typedef struct case_node case_node;
104 typedef struct case_node *case_node_ptr;
106 /* These are used by estimate_case_costs and balance_case_nodes. */
108 /* This must be a signed type, and non-ANSI compilers lack signed char. */
109 static short cost_table_[129];
110 static short *cost_table;
111 static int use_cost_table;
113 /* Stack of control and binding constructs we are currently inside.
115 These constructs begin when you call `expand_start_WHATEVER'
116 and end when you call `expand_end_WHATEVER'. This stack records
117 info about how the construct began that tells the end-function
118 what to do. It also may provide information about the construct
119 to alter the behavior of other constructs within the body.
120 For example, they may affect the behavior of C `break' and `continue'.
122 Each construct gets one `struct nesting' object.
123 All of these objects are chained through the `all' field.
124 `nesting_stack' points to the first object (innermost construct).
125 The position of an entry on `nesting_stack' is in its `depth' field.
127 Each type of construct has its own individual stack.
128 For example, loops have `loop_stack'. Each object points to the
129 next object of the same type through the `next' field.
131 Some constructs are visible to `break' exit-statements and others
132 are not. Which constructs are visible depends on the language.
133 Therefore, the data structure allows each construct to be visible
134 or not, according to the args given when the construct is started.
135 The construct is visible if the `exit_label' field is non-null.
136 In that case, the value should be a CODE_LABEL rtx. */
138 struct nesting
140 struct nesting *all;
141 struct nesting *next;
142 int depth;
143 rtx exit_label;
144 union
146 /* For conds (if-then and if-then-else statements). */
147 struct
149 /* Label for the end of the if construct.
150 There is none if EXITFLAG was not set
151 and no `else' has been seen yet. */
152 rtx endif_label;
153 /* Label for the end of this alternative.
154 This may be the end of the if or the next else/elseif. */
155 rtx next_label;
156 } cond;
157 /* For loops. */
158 struct
160 /* Label at the top of the loop; place to loop back to. */
161 rtx start_label;
162 /* Label at the end of the whole construct. */
163 rtx end_label;
164 /* Label before a jump that branches to the end of the whole
165 construct. This is where destructors go if any. */
166 rtx alt_end_label;
167 /* Label for `continue' statement to jump to;
168 this is in front of the stepper of the loop. */
169 rtx continue_label;
170 } loop;
171 /* For variable binding contours. */
172 struct
174 /* Sequence number of this binding contour within the function,
175 in order of entry. */
176 int block_start_count;
177 /* Nonzero => value to restore stack to on exit. */
178 rtx stack_level;
179 /* The NOTE that starts this contour.
180 Used by expand_goto to check whether the destination
181 is within each contour or not. */
182 rtx first_insn;
183 /* Innermost containing binding contour that has a stack level. */
184 struct nesting *innermost_stack_block;
185 /* List of cleanups to be run on exit from this contour.
186 This is a list of expressions to be evaluated.
187 The TREE_PURPOSE of each link is the ..._DECL node
188 which the cleanup pertains to. */
189 tree cleanups;
190 /* List of cleanup-lists of blocks containing this block,
191 as they were at the locus where this block appears.
192 There is an element for each containing block,
193 ordered innermost containing block first.
194 The tail of this list can be 0,
195 if all remaining elements would be empty lists.
196 The element's TREE_VALUE is the cleanup-list of that block,
197 which may be null. */
198 tree outer_cleanups;
199 /* Chain of labels defined inside this binding contour.
200 For contours that have stack levels or cleanups. */
201 struct label_chain *label_chain;
202 /* Number of function calls seen, as of start of this block. */
203 int n_function_calls;
204 /* Nonzero if this is associated with a EH region. */
205 int exception_region;
206 /* The saved target_temp_slot_level from our outer block.
207 We may reset target_temp_slot_level to be the level of
208 this block, if that is done, target_temp_slot_level
209 reverts to the saved target_temp_slot_level at the very
210 end of the block. */
211 int block_target_temp_slot_level;
212 /* True if we are currently emitting insns in an area of
213 output code that is controlled by a conditional
214 expression. This is used by the cleanup handling code to
215 generate conditional cleanup actions. */
216 int conditional_code;
217 /* A place to move the start of the exception region for any
218 of the conditional cleanups, must be at the end or after
219 the start of the last unconditional cleanup, and before any
220 conditional branch points. */
221 rtx last_unconditional_cleanup;
222 /* When in a conditional context, this is the specific
223 cleanup list associated with last_unconditional_cleanup,
224 where we place the conditionalized cleanups. */
225 tree *cleanup_ptr;
226 } block;
227 /* For switch (C) or case (Pascal) statements,
228 and also for dummies (see `expand_start_case_dummy'). */
229 struct
231 /* The insn after which the case dispatch should finally
232 be emitted. Zero for a dummy. */
233 rtx start;
234 /* A list of case labels; it is first built as an AVL tree.
235 During expand_end_case, this is converted to a list, and may be
236 rearranged into a nearly balanced binary tree. */
237 struct case_node *case_list;
238 /* Label to jump to if no case matches. */
239 tree default_label;
240 /* The expression to be dispatched on. */
241 tree index_expr;
242 /* Type that INDEX_EXPR should be converted to. */
243 tree nominal_type;
244 /* Number of range exprs in case statement. */
245 int num_ranges;
246 /* Name of this kind of statement, for warnings. */
247 const char *printname;
248 /* Used to save no_line_numbers till we see the first case label.
249 We set this to -1 when we see the first case label in this
250 case statement. */
251 int line_number_status;
252 } case_stmt;
253 } data;
256 /* Allocate and return a new `struct nesting'. */
258 #define ALLOC_NESTING() \
259 (struct nesting *) obstack_alloc (&stmt_obstack, sizeof (struct nesting))
261 /* Pop the nesting stack element by element until we pop off
262 the element which is at the top of STACK.
263 Update all the other stacks, popping off elements from them
264 as we pop them from nesting_stack. */
266 #define POPSTACK(STACK) \
267 do { struct nesting *target = STACK; \
268 struct nesting *this; \
269 do { this = nesting_stack; \
270 if (loop_stack == this) \
271 loop_stack = loop_stack->next; \
272 if (cond_stack == this) \
273 cond_stack = cond_stack->next; \
274 if (block_stack == this) \
275 block_stack = block_stack->next; \
276 if (stack_block_stack == this) \
277 stack_block_stack = stack_block_stack->next; \
278 if (case_stack == this) \
279 case_stack = case_stack->next; \
280 nesting_depth = nesting_stack->depth - 1; \
281 nesting_stack = this->all; \
282 obstack_free (&stmt_obstack, this); } \
283 while (this != target); } while (0)
285 /* In some cases it is impossible to generate code for a forward goto
286 until the label definition is seen. This happens when it may be necessary
287 for the goto to reset the stack pointer: we don't yet know how to do that.
288 So expand_goto puts an entry on this fixup list.
289 Each time a binding contour that resets the stack is exited,
290 we check each fixup.
291 If the target label has now been defined, we can insert the proper code. */
293 struct goto_fixup
295 /* Points to following fixup. */
296 struct goto_fixup *next;
297 /* Points to the insn before the jump insn.
298 If more code must be inserted, it goes after this insn. */
299 rtx before_jump;
300 /* The LABEL_DECL that this jump is jumping to, or 0
301 for break, continue or return. */
302 tree target;
303 /* The BLOCK for the place where this goto was found. */
304 tree context;
305 /* The CODE_LABEL rtx that this is jumping to. */
306 rtx target_rtl;
307 /* Number of binding contours started in current function
308 before the label reference. */
309 int block_start_count;
310 /* The outermost stack level that should be restored for this jump.
311 Each time a binding contour that resets the stack is exited,
312 if the target label is *not* yet defined, this slot is updated. */
313 rtx stack_level;
314 /* List of lists of cleanup expressions to be run by this goto.
315 There is one element for each block that this goto is within.
316 The tail of this list can be 0,
317 if all remaining elements would be empty.
318 The TREE_VALUE contains the cleanup list of that block as of the
319 time this goto was seen.
320 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
321 tree cleanup_list_list;
324 /* Within any binding contour that must restore a stack level,
325 all labels are recorded with a chain of these structures. */
327 struct label_chain
329 /* Points to following fixup. */
330 struct label_chain *next;
331 tree label;
334 struct stmt_status
336 /* Chain of all pending binding contours. */
337 struct nesting *x_block_stack;
339 /* If any new stacks are added here, add them to POPSTACKS too. */
341 /* Chain of all pending binding contours that restore stack levels
342 or have cleanups. */
343 struct nesting *x_stack_block_stack;
345 /* Chain of all pending conditional statements. */
346 struct nesting *x_cond_stack;
348 /* Chain of all pending loops. */
349 struct nesting *x_loop_stack;
351 /* Chain of all pending case or switch statements. */
352 struct nesting *x_case_stack;
354 /* Separate chain including all of the above,
355 chained through the `all' field. */
356 struct nesting *x_nesting_stack;
358 /* Number of entries on nesting_stack now. */
359 int x_nesting_depth;
361 /* Number of binding contours started so far in this function. */
362 int x_block_start_count;
364 /* Each time we expand an expression-statement,
365 record the expr's type and its RTL value here. */
366 tree x_last_expr_type;
367 rtx x_last_expr_value;
369 /* Nonzero if within a ({...}) grouping, in which case we must
370 always compute a value for each expr-stmt in case it is the last one. */
371 int x_expr_stmts_for_value;
373 /* Filename and line number of last line-number note,
374 whether we actually emitted it or not. */
375 char *x_emit_filename;
376 int x_emit_lineno;
378 struct goto_fixup *x_goto_fixup_chain;
381 #define block_stack (current_function->stmt->x_block_stack)
382 #define stack_block_stack (current_function->stmt->x_stack_block_stack)
383 #define cond_stack (current_function->stmt->x_cond_stack)
384 #define loop_stack (current_function->stmt->x_loop_stack)
385 #define case_stack (current_function->stmt->x_case_stack)
386 #define nesting_stack (current_function->stmt->x_nesting_stack)
387 #define nesting_depth (current_function->stmt->x_nesting_depth)
388 #define current_block_start_count (current_function->stmt->x_block_start_count)
389 #define last_expr_type (current_function->stmt->x_last_expr_type)
390 #define last_expr_value (current_function->stmt->x_last_expr_value)
391 #define expr_stmts_for_value (current_function->stmt->x_expr_stmts_for_value)
392 #define emit_filename (current_function->stmt->x_emit_filename)
393 #define emit_lineno (current_function->stmt->x_emit_lineno)
394 #define goto_fixup_chain (current_function->stmt->x_goto_fixup_chain)
396 /* Non-zero if we are using EH to handle cleanus. */
397 static int using_eh_for_cleanups_p = 0;
399 /* Character strings, each containing a single decimal digit. */
400 static char *digit_strings[10];
403 static int n_occurrences PROTO((int, const char *));
404 static void expand_goto_internal PROTO((tree, rtx, rtx));
405 static int expand_fixup PROTO((tree, rtx, rtx));
406 static rtx expand_nl_handler_label PROTO((rtx, rtx));
407 static void expand_nl_goto_receiver PROTO((void));
408 static void expand_nl_goto_receivers PROTO((struct nesting *));
409 static void fixup_gotos PROTO((struct nesting *, rtx, tree,
410 rtx, int));
411 static void expand_null_return_1 PROTO((rtx, int));
412 static void expand_value_return PROTO((rtx));
413 static int tail_recursion_args PROTO((tree, tree));
414 static void expand_cleanups PROTO((tree, tree, int, int));
415 static void check_seenlabel PROTO((void));
416 static void do_jump_if_equal PROTO((rtx, rtx, rtx, int));
417 static int estimate_case_costs PROTO((case_node_ptr));
418 static void group_case_nodes PROTO((case_node_ptr));
419 static void balance_case_nodes PROTO((case_node_ptr *,
420 case_node_ptr));
421 static int node_has_low_bound PROTO((case_node_ptr, tree));
422 static int node_has_high_bound PROTO((case_node_ptr, tree));
423 static int node_is_bounded PROTO((case_node_ptr, tree));
424 static void emit_jump_if_reachable PROTO((rtx));
425 static void emit_case_nodes PROTO((rtx, case_node_ptr, rtx, tree));
426 static int add_case_node PROTO((tree, tree, tree, tree *));
427 static struct case_node *case_tree2list PROTO((case_node *, case_node *));
428 static void mark_cond_nesting PROTO((struct nesting *));
429 static void mark_loop_nesting PROTO((struct nesting *));
430 static void mark_block_nesting PROTO((struct nesting *));
431 static void mark_case_nesting PROTO((struct nesting *));
432 static void mark_goto_fixup PROTO((struct goto_fixup *));
435 void
436 using_eh_for_cleanups ()
438 using_eh_for_cleanups_p = 1;
441 /* Mark N (known to be a cond-nesting) for GC. */
443 static void
444 mark_cond_nesting (n)
445 struct nesting *n;
447 while (n)
449 ggc_mark_rtx (n->exit_label);
450 ggc_mark_rtx (n->data.cond.endif_label);
451 ggc_mark_rtx (n->data.cond.next_label);
453 n = n->next;
457 /* Mark N (known to be a loop-nesting) for GC. */
459 static void
460 mark_loop_nesting (n)
461 struct nesting *n;
464 while (n)
466 ggc_mark_rtx (n->exit_label);
467 ggc_mark_rtx (n->data.loop.start_label);
468 ggc_mark_rtx (n->data.loop.end_label);
469 ggc_mark_rtx (n->data.loop.alt_end_label);
470 ggc_mark_rtx (n->data.loop.continue_label);
472 n = n->next;
476 /* Mark N (known to be a block-nesting) for GC. */
478 static void
479 mark_block_nesting (n)
480 struct nesting *n;
482 while (n)
484 struct label_chain *l;
486 ggc_mark_rtx (n->exit_label);
487 ggc_mark_rtx (n->data.block.stack_level);
488 ggc_mark_rtx (n->data.block.first_insn);
489 ggc_mark_tree (n->data.block.cleanups);
490 ggc_mark_tree (n->data.block.outer_cleanups);
492 for (l = n->data.block.label_chain; l != NULL; l = l->next)
493 ggc_mark_tree (l->label);
495 ggc_mark_rtx (n->data.block.last_unconditional_cleanup);
497 /* ??? cleanup_ptr never points outside the stack, does it? */
499 n = n->next;
503 /* Mark N (known to be a case-nesting) for GC. */
505 static void
506 mark_case_nesting (n)
507 struct nesting *n;
509 while (n)
511 struct case_node *node;
513 ggc_mark_rtx (n->exit_label);
514 ggc_mark_rtx (n->data.case_stmt.start);
516 node = n->data.case_stmt.case_list;
517 while (node)
519 ggc_mark_tree (node->low);
520 ggc_mark_tree (node->high);
521 ggc_mark_tree (node->code_label);
522 node = node->right;
525 ggc_mark_tree (n->data.case_stmt.default_label);
526 ggc_mark_tree (n->data.case_stmt.index_expr);
527 ggc_mark_tree (n->data.case_stmt.nominal_type);
529 n = n->next;
533 /* Mark G for GC. */
535 static void
536 mark_goto_fixup (g)
537 struct goto_fixup *g;
539 while (g)
541 ggc_mark_rtx (g->before_jump);
542 ggc_mark_tree (g->target);
543 ggc_mark_tree (g->context);
544 ggc_mark_rtx (g->target_rtl);
545 ggc_mark_rtx (g->stack_level);
546 ggc_mark_tree (g->cleanup_list_list);
548 g = g->next;
552 /* Clear out all parts of the state in F that can safely be discarded
553 after the function has been compiled, to let garbage collection
554 reclaim the memory. */
556 void
557 free_stmt_status (f)
558 struct function *f;
560 /* We're about to free the function obstack. If we hold pointers to
561 things allocated there, then we'll try to mark them when we do
562 GC. So, we clear them out here explicitly. */
563 if (f->stmt)
564 free (f->stmt);
565 f->stmt = NULL;
568 /* Mark P for GC. */
570 void
571 mark_stmt_status (p)
572 struct stmt_status *p;
574 if (p == 0)
575 return;
577 mark_block_nesting (p->x_block_stack);
578 mark_cond_nesting (p->x_cond_stack);
579 mark_loop_nesting (p->x_loop_stack);
580 mark_case_nesting (p->x_case_stack);
582 ggc_mark_tree (p->x_last_expr_type);
583 /* last_epxr_value is only valid if last_expr_type is nonzero. */
584 if (p->x_last_expr_type)
585 ggc_mark_rtx (p->x_last_expr_value);
587 mark_goto_fixup (p->x_goto_fixup_chain);
590 void
591 init_stmt ()
593 int i;
595 gcc_obstack_init (&stmt_obstack);
597 for (i = 0; i < 10; i++)
599 digit_strings[i] = ggc_alloc_string (NULL, 1);
600 digit_strings[i][0] = '0' + i;
602 ggc_add_string_root (digit_strings, 10);
605 void
606 init_stmt_for_function ()
608 current_function->stmt
609 = (struct stmt_status *) xmalloc (sizeof (struct stmt_status));
611 /* We are not currently within any block, conditional, loop or case. */
612 block_stack = 0;
613 stack_block_stack = 0;
614 loop_stack = 0;
615 case_stack = 0;
616 cond_stack = 0;
617 nesting_stack = 0;
618 nesting_depth = 0;
620 current_block_start_count = 0;
622 /* No gotos have been expanded yet. */
623 goto_fixup_chain = 0;
625 /* We are not processing a ({...}) grouping. */
626 expr_stmts_for_value = 0;
627 last_expr_type = 0;
628 last_expr_value = NULL_RTX;
631 /* Return nonzero if anything is pushed on the loop, condition, or case
632 stack. */
634 in_control_zone_p ()
636 return cond_stack || loop_stack || case_stack;
639 /* Record the current file and line. Called from emit_line_note. */
640 void
641 set_file_and_line_for_stmt (file, line)
642 char *file;
643 int line;
645 emit_filename = file;
646 emit_lineno = line;
649 /* Emit a no-op instruction. */
651 void
652 emit_nop ()
654 rtx last_insn;
656 last_insn = get_last_insn ();
657 if (!optimize
658 && (GET_CODE (last_insn) == CODE_LABEL
659 || (GET_CODE (last_insn) == NOTE
660 && prev_real_insn (last_insn) == 0)))
661 emit_insn (gen_nop ());
664 /* Return the rtx-label that corresponds to a LABEL_DECL,
665 creating it if necessary. */
668 label_rtx (label)
669 tree label;
671 if (TREE_CODE (label) != LABEL_DECL)
672 abort ();
674 if (DECL_RTL (label))
675 return DECL_RTL (label);
677 return DECL_RTL (label) = gen_label_rtx ();
680 /* Add an unconditional jump to LABEL as the next sequential instruction. */
682 void
683 emit_jump (label)
684 rtx label;
686 do_pending_stack_adjust ();
687 emit_jump_insn (gen_jump (label));
688 emit_barrier ();
691 /* Emit code to jump to the address
692 specified by the pointer expression EXP. */
694 void
695 expand_computed_goto (exp)
696 tree exp;
698 rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
700 #ifdef POINTERS_EXTEND_UNSIGNED
701 x = convert_memory_address (Pmode, x);
702 #endif
704 emit_queue ();
705 /* Be sure the function is executable. */
706 if (current_function_check_memory_usage)
707 emit_library_call (chkr_check_exec_libfunc, 1,
708 VOIDmode, 1, x, ptr_mode);
710 do_pending_stack_adjust ();
711 emit_indirect_jump (x);
713 current_function_has_computed_jump = 1;
716 /* Handle goto statements and the labels that they can go to. */
718 /* Specify the location in the RTL code of a label LABEL,
719 which is a LABEL_DECL tree node.
721 This is used for the kind of label that the user can jump to with a
722 goto statement, and for alternatives of a switch or case statement.
723 RTL labels generated for loops and conditionals don't go through here;
724 they are generated directly at the RTL level, by other functions below.
726 Note that this has nothing to do with defining label *names*.
727 Languages vary in how they do that and what that even means. */
729 void
730 expand_label (label)
731 tree label;
733 struct label_chain *p;
735 do_pending_stack_adjust ();
736 emit_label (label_rtx (label));
737 if (DECL_NAME (label))
738 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
740 if (stack_block_stack != 0)
742 p = (struct label_chain *) oballoc (sizeof (struct label_chain));
743 p->next = stack_block_stack->data.block.label_chain;
744 stack_block_stack->data.block.label_chain = p;
745 p->label = label;
749 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
750 from nested functions. */
752 void
753 declare_nonlocal_label (label)
754 tree label;
756 rtx slot = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
758 nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
759 LABEL_PRESERVE_P (label_rtx (label)) = 1;
760 if (nonlocal_goto_handler_slots == 0)
762 emit_stack_save (SAVE_NONLOCAL,
763 &nonlocal_goto_stack_level,
764 PREV_INSN (tail_recursion_reentry));
766 nonlocal_goto_handler_slots
767 = gen_rtx_EXPR_LIST (VOIDmode, slot, nonlocal_goto_handler_slots);
770 /* Generate RTL code for a `goto' statement with target label LABEL.
771 LABEL should be a LABEL_DECL tree node that was or will later be
772 defined with `expand_label'. */
774 void
775 expand_goto (label)
776 tree label;
778 tree context;
780 /* Check for a nonlocal goto to a containing function. */
781 context = decl_function_context (label);
782 if (context != 0 && context != current_function_decl)
784 struct function *p = find_function_data (context);
785 rtx label_ref = gen_rtx_LABEL_REF (Pmode, label_rtx (label));
786 rtx temp, handler_slot;
787 tree link;
789 /* Find the corresponding handler slot for this label. */
790 handler_slot = p->x_nonlocal_goto_handler_slots;
791 for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label;
792 link = TREE_CHAIN (link))
793 handler_slot = XEXP (handler_slot, 1);
794 handler_slot = XEXP (handler_slot, 0);
796 p->has_nonlocal_label = 1;
797 current_function_has_nonlocal_goto = 1;
798 LABEL_REF_NONLOCAL_P (label_ref) = 1;
800 /* Copy the rtl for the slots so that they won't be shared in
801 case the virtual stack vars register gets instantiated differently
802 in the parent than in the child. */
804 #if HAVE_nonlocal_goto
805 if (HAVE_nonlocal_goto)
806 emit_insn (gen_nonlocal_goto (lookup_static_chain (label),
807 copy_rtx (handler_slot),
808 copy_rtx (p->x_nonlocal_goto_stack_level),
809 label_ref));
810 else
811 #endif
813 rtx addr;
815 /* Restore frame pointer for containing function.
816 This sets the actual hard register used for the frame pointer
817 to the location of the function's incoming static chain info.
818 The non-local goto handler will then adjust it to contain the
819 proper value and reload the argument pointer, if needed. */
820 emit_move_insn (hard_frame_pointer_rtx, lookup_static_chain (label));
822 /* We have now loaded the frame pointer hardware register with
823 the address of that corresponds to the start of the virtual
824 stack vars. So replace virtual_stack_vars_rtx in all
825 addresses we use with stack_pointer_rtx. */
827 /* Get addr of containing function's current nonlocal goto handler,
828 which will do any cleanups and then jump to the label. */
829 addr = copy_rtx (handler_slot);
830 temp = copy_to_reg (replace_rtx (addr, virtual_stack_vars_rtx,
831 hard_frame_pointer_rtx));
833 /* Restore the stack pointer. Note this uses fp just restored. */
834 addr = p->x_nonlocal_goto_stack_level;
835 if (addr)
836 addr = replace_rtx (copy_rtx (addr),
837 virtual_stack_vars_rtx,
838 hard_frame_pointer_rtx);
840 emit_stack_restore (SAVE_NONLOCAL, addr, NULL_RTX);
842 /* USE of hard_frame_pointer_rtx added for consistency; not clear if
843 really needed. */
844 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
845 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
846 emit_indirect_jump (temp);
849 else
850 expand_goto_internal (label, label_rtx (label), NULL_RTX);
853 /* Generate RTL code for a `goto' statement with target label BODY.
854 LABEL should be a LABEL_REF.
855 LAST_INSN, if non-0, is the rtx we should consider as the last
856 insn emitted (for the purposes of cleaning up a return). */
858 static void
859 expand_goto_internal (body, label, last_insn)
860 tree body;
861 rtx label;
862 rtx last_insn;
864 struct nesting *block;
865 rtx stack_level = 0;
867 if (GET_CODE (label) != CODE_LABEL)
868 abort ();
870 /* If label has already been defined, we can tell now
871 whether and how we must alter the stack level. */
873 if (PREV_INSN (label) != 0)
875 /* Find the innermost pending block that contains the label.
876 (Check containment by comparing insn-uids.)
877 Then restore the outermost stack level within that block,
878 and do cleanups of all blocks contained in it. */
879 for (block = block_stack; block; block = block->next)
881 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
882 break;
883 if (block->data.block.stack_level != 0)
884 stack_level = block->data.block.stack_level;
885 /* Execute the cleanups for blocks we are exiting. */
886 if (block->data.block.cleanups != 0)
888 expand_cleanups (block->data.block.cleanups, NULL_TREE, 1, 1);
889 do_pending_stack_adjust ();
893 if (stack_level)
895 /* Ensure stack adjust isn't done by emit_jump, as this
896 would clobber the stack pointer. This one should be
897 deleted as dead by flow. */
898 clear_pending_stack_adjust ();
899 do_pending_stack_adjust ();
900 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
903 if (body != 0 && DECL_TOO_LATE (body))
904 error ("jump to `%s' invalidly jumps into binding contour",
905 IDENTIFIER_POINTER (DECL_NAME (body)));
907 /* Label not yet defined: may need to put this goto
908 on the fixup list. */
909 else if (! expand_fixup (body, label, last_insn))
911 /* No fixup needed. Record that the label is the target
912 of at least one goto that has no fixup. */
913 if (body != 0)
914 TREE_ADDRESSABLE (body) = 1;
917 emit_jump (label);
920 /* Generate if necessary a fixup for a goto
921 whose target label in tree structure (if any) is TREE_LABEL
922 and whose target in rtl is RTL_LABEL.
924 If LAST_INSN is nonzero, we pretend that the jump appears
925 after insn LAST_INSN instead of at the current point in the insn stream.
927 The fixup will be used later to insert insns just before the goto.
928 Those insns will restore the stack level as appropriate for the
929 target label, and will (in the case of C++) also invoke any object
930 destructors which have to be invoked when we exit the scopes which
931 are exited by the goto.
933 Value is nonzero if a fixup is made. */
935 static int
936 expand_fixup (tree_label, rtl_label, last_insn)
937 tree tree_label;
938 rtx rtl_label;
939 rtx last_insn;
941 struct nesting *block, *end_block;
943 /* See if we can recognize which block the label will be output in.
944 This is possible in some very common cases.
945 If we succeed, set END_BLOCK to that block.
946 Otherwise, set it to 0. */
948 if (cond_stack
949 && (rtl_label == cond_stack->data.cond.endif_label
950 || rtl_label == cond_stack->data.cond.next_label))
951 end_block = cond_stack;
952 /* If we are in a loop, recognize certain labels which
953 are likely targets. This reduces the number of fixups
954 we need to create. */
955 else if (loop_stack
956 && (rtl_label == loop_stack->data.loop.start_label
957 || rtl_label == loop_stack->data.loop.end_label
958 || rtl_label == loop_stack->data.loop.continue_label))
959 end_block = loop_stack;
960 else
961 end_block = 0;
963 /* Now set END_BLOCK to the binding level to which we will return. */
965 if (end_block)
967 struct nesting *next_block = end_block->all;
968 block = block_stack;
970 /* First see if the END_BLOCK is inside the innermost binding level.
971 If so, then no cleanups or stack levels are relevant. */
972 while (next_block && next_block != block)
973 next_block = next_block->all;
975 if (next_block)
976 return 0;
978 /* Otherwise, set END_BLOCK to the innermost binding level
979 which is outside the relevant control-structure nesting. */
980 next_block = block_stack->next;
981 for (block = block_stack; block != end_block; block = block->all)
982 if (block == next_block)
983 next_block = next_block->next;
984 end_block = next_block;
987 /* Does any containing block have a stack level or cleanups?
988 If not, no fixup is needed, and that is the normal case
989 (the only case, for standard C). */
990 for (block = block_stack; block != end_block; block = block->next)
991 if (block->data.block.stack_level != 0
992 || block->data.block.cleanups != 0)
993 break;
995 if (block != end_block)
997 /* Ok, a fixup is needed. Add a fixup to the list of such. */
998 struct goto_fixup *fixup
999 = (struct goto_fixup *) oballoc (sizeof (struct goto_fixup));
1000 /* In case an old stack level is restored, make sure that comes
1001 after any pending stack adjust. */
1002 /* ?? If the fixup isn't to come at the present position,
1003 doing the stack adjust here isn't useful. Doing it with our
1004 settings at that location isn't useful either. Let's hope
1005 someone does it! */
1006 if (last_insn == 0)
1007 do_pending_stack_adjust ();
1008 fixup->target = tree_label;
1009 fixup->target_rtl = rtl_label;
1011 /* Create a BLOCK node and a corresponding matched set of
1012 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
1013 this point. The notes will encapsulate any and all fixup
1014 code which we might later insert at this point in the insn
1015 stream. Also, the BLOCK node will be the parent (i.e. the
1016 `SUPERBLOCK') of any other BLOCK nodes which we might create
1017 later on when we are expanding the fixup code.
1019 Note that optimization passes (including expand_end_loop)
1020 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
1021 as a placeholder. */
1024 register rtx original_before_jump
1025 = last_insn ? last_insn : get_last_insn ();
1026 rtx start;
1027 tree block;
1029 block = make_node (BLOCK);
1030 TREE_USED (block) = 1;
1032 if (current_function->x_whole_function_mode_p)
1034 find_loop_tree_blocks ();
1035 retrofit_block (block, original_before_jump);
1037 else
1038 insert_block (block);
1040 start_sequence ();
1041 start = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
1042 fixup->before_jump = emit_note (NULL_PTR, NOTE_INSN_DELETED);
1043 emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
1044 fixup->context = block;
1045 end_sequence ();
1046 emit_insns_after (start, original_before_jump);
1049 fixup->block_start_count = current_block_start_count;
1050 fixup->stack_level = 0;
1051 fixup->cleanup_list_list
1052 = ((block->data.block.outer_cleanups
1053 || block->data.block.cleanups)
1054 ? tree_cons (NULL_TREE, block->data.block.cleanups,
1055 block->data.block.outer_cleanups)
1056 : 0);
1057 fixup->next = goto_fixup_chain;
1058 goto_fixup_chain = fixup;
1061 return block != 0;
1066 /* Expand any needed fixups in the outputmost binding level of the
1067 function. FIRST_INSN is the first insn in the function. */
1069 void
1070 expand_fixups (first_insn)
1071 rtx first_insn;
1073 fixup_gotos (NULL_PTR, NULL_RTX, NULL_TREE, first_insn, 0);
1076 /* When exiting a binding contour, process all pending gotos requiring fixups.
1077 THISBLOCK is the structure that describes the block being exited.
1078 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
1079 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
1080 FIRST_INSN is the insn that began this contour.
1082 Gotos that jump out of this contour must restore the
1083 stack level and do the cleanups before actually jumping.
1085 DONT_JUMP_IN nonzero means report error there is a jump into this
1086 contour from before the beginning of the contour.
1087 This is also done if STACK_LEVEL is nonzero. */
1089 static void
1090 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
1091 struct nesting *thisblock;
1092 rtx stack_level;
1093 tree cleanup_list;
1094 rtx first_insn;
1095 int dont_jump_in;
1097 register struct goto_fixup *f, *prev;
1099 /* F is the fixup we are considering; PREV is the previous one. */
1100 /* We run this loop in two passes so that cleanups of exited blocks
1101 are run first, and blocks that are exited are marked so
1102 afterwards. */
1104 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1106 /* Test for a fixup that is inactive because it is already handled. */
1107 if (f->before_jump == 0)
1109 /* Delete inactive fixup from the chain, if that is easy to do. */
1110 if (prev != 0)
1111 prev->next = f->next;
1113 /* Has this fixup's target label been defined?
1114 If so, we can finalize it. */
1115 else if (PREV_INSN (f->target_rtl) != 0)
1117 register rtx cleanup_insns;
1119 /* If this fixup jumped into this contour from before the beginning
1120 of this contour, report an error. This code used to use
1121 the first non-label insn after f->target_rtl, but that's
1122 wrong since such can be added, by things like put_var_into_stack
1123 and have INSN_UIDs that are out of the range of the block. */
1124 /* ??? Bug: this does not detect jumping in through intermediate
1125 blocks that have stack levels or cleanups.
1126 It detects only a problem with the innermost block
1127 around the label. */
1128 if (f->target != 0
1129 && (dont_jump_in || stack_level || cleanup_list)
1130 && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
1131 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
1132 && ! DECL_ERROR_ISSUED (f->target))
1134 error_with_decl (f->target,
1135 "label `%s' used before containing binding contour");
1136 /* Prevent multiple errors for one label. */
1137 DECL_ERROR_ISSUED (f->target) = 1;
1140 /* We will expand the cleanups into a sequence of their own and
1141 then later on we will attach this new sequence to the insn
1142 stream just ahead of the actual jump insn. */
1144 start_sequence ();
1146 /* Temporarily restore the lexical context where we will
1147 logically be inserting the fixup code. We do this for the
1148 sake of getting the debugging information right. */
1150 pushlevel (0);
1151 set_block (f->context);
1153 /* Expand the cleanups for blocks this jump exits. */
1154 if (f->cleanup_list_list)
1156 tree lists;
1157 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1158 /* Marked elements correspond to blocks that have been closed.
1159 Do their cleanups. */
1160 if (TREE_ADDRESSABLE (lists)
1161 && TREE_VALUE (lists) != 0)
1163 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1164 /* Pop any pushes done in the cleanups,
1165 in case function is about to return. */
1166 do_pending_stack_adjust ();
1170 /* Restore stack level for the biggest contour that this
1171 jump jumps out of. */
1172 if (f->stack_level)
1173 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1175 /* Finish up the sequence containing the insns which implement the
1176 necessary cleanups, and then attach that whole sequence to the
1177 insn stream just ahead of the actual jump insn. Attaching it
1178 at that point insures that any cleanups which are in fact
1179 implicit C++ object destructions (which must be executed upon
1180 leaving the block) appear (to the debugger) to be taking place
1181 in an area of the generated code where the object(s) being
1182 destructed are still "in scope". */
1184 cleanup_insns = get_insns ();
1185 poplevel (1, 0, 0);
1187 end_sequence ();
1188 emit_insns_after (cleanup_insns, f->before_jump);
1191 f->before_jump = 0;
1195 /* For any still-undefined labels, do the cleanups for this block now.
1196 We must do this now since items in the cleanup list may go out
1197 of scope when the block ends. */
1198 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1199 if (f->before_jump != 0
1200 && PREV_INSN (f->target_rtl) == 0
1201 /* Label has still not appeared. If we are exiting a block with
1202 a stack level to restore, that started before the fixup,
1203 mark this stack level as needing restoration
1204 when the fixup is later finalized. */
1205 && thisblock != 0
1206 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1207 means the label is undefined. That's erroneous, but possible. */
1208 && (thisblock->data.block.block_start_count
1209 <= f->block_start_count))
1211 tree lists = f->cleanup_list_list;
1212 rtx cleanup_insns;
1214 for (; lists; lists = TREE_CHAIN (lists))
1215 /* If the following elt. corresponds to our containing block
1216 then the elt. must be for this block. */
1217 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1219 start_sequence ();
1220 pushlevel (0);
1221 set_block (f->context);
1222 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1223 do_pending_stack_adjust ();
1224 cleanup_insns = get_insns ();
1225 poplevel (1, 0, 0);
1226 end_sequence ();
1227 if (cleanup_insns != 0)
1228 f->before_jump
1229 = emit_insns_after (cleanup_insns, f->before_jump);
1231 f->cleanup_list_list = TREE_CHAIN (lists);
1234 if (stack_level)
1235 f->stack_level = stack_level;
1239 /* Return the number of times character C occurs in string S. */
1240 static int
1241 n_occurrences (c, s)
1242 int c;
1243 const char *s;
1245 int n = 0;
1246 while (*s)
1247 n += (*s++ == c);
1248 return n;
1251 /* Generate RTL for an asm statement (explicit assembler code).
1252 BODY is a STRING_CST node containing the assembler code text,
1253 or an ADDR_EXPR containing a STRING_CST. */
1255 void
1256 expand_asm (body)
1257 tree body;
1259 if (current_function_check_memory_usage)
1261 error ("`asm' cannot be used in function where memory usage is checked");
1262 return;
1265 if (TREE_CODE (body) == ADDR_EXPR)
1266 body = TREE_OPERAND (body, 0);
1268 emit_insn (gen_rtx_ASM_INPUT (VOIDmode,
1269 TREE_STRING_POINTER (body)));
1270 last_expr_type = 0;
1273 /* Generate RTL for an asm statement with arguments.
1274 STRING is the instruction template.
1275 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1276 Each output or input has an expression in the TREE_VALUE and
1277 a constraint-string in the TREE_PURPOSE.
1278 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1279 that is clobbered by this insn.
1281 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1282 Some elements of OUTPUTS may be replaced with trees representing temporary
1283 values. The caller should copy those temporary values to the originally
1284 specified lvalues.
1286 VOL nonzero means the insn is volatile; don't optimize it. */
1288 void
1289 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1290 tree string, outputs, inputs, clobbers;
1291 int vol;
1292 char *filename;
1293 int line;
1295 rtvec argvec, constraints;
1296 rtx body;
1297 int ninputs = list_length (inputs);
1298 int noutputs = list_length (outputs);
1299 int ninout = 0;
1300 int nclobbers;
1301 tree tail;
1302 register int i;
1303 /* Vector of RTX's of evaluated output operands. */
1304 rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1305 int *inout_opnum = (int *) alloca (noutputs * sizeof (int));
1306 rtx *real_output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1307 enum machine_mode *inout_mode
1308 = (enum machine_mode *) alloca (noutputs * sizeof (enum machine_mode));
1309 /* The insn we have emitted. */
1310 rtx insn;
1312 /* An ASM with no outputs needs to be treated as volatile, for now. */
1313 if (noutputs == 0)
1314 vol = 1;
1316 if (current_function_check_memory_usage)
1318 error ("`asm' cannot be used with `-fcheck-memory-usage'");
1319 return;
1322 #ifdef MD_ASM_CLOBBERS
1323 /* Sometimes we wish to automatically clobber registers across an asm.
1324 Case in point is when the i386 backend moved from cc0 to a hard reg --
1325 maintaining source-level compatability means automatically clobbering
1326 the flags register. */
1327 MD_ASM_CLOBBERS (clobbers);
1328 #endif
1330 if (current_function_check_memory_usage)
1332 error ("`asm' cannot be used in function where memory usage is checked");
1333 return;
1336 /* Count the number of meaningful clobbered registers, ignoring what
1337 we would ignore later. */
1338 nclobbers = 0;
1339 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1341 char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1343 i = decode_reg_name (regname);
1344 if (i >= 0 || i == -4)
1345 ++nclobbers;
1346 else if (i == -2)
1347 error ("unknown register name `%s' in `asm'", regname);
1350 last_expr_type = 0;
1352 /* Check that the number of alternatives is constant across all
1353 operands. */
1354 if (outputs || inputs)
1356 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1357 int nalternatives = n_occurrences (',', TREE_STRING_POINTER (tmp));
1358 tree next = inputs;
1360 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1362 error ("too many alternatives in `asm'");
1363 return;
1366 tmp = outputs;
1367 while (tmp)
1369 char *constraint = TREE_STRING_POINTER (TREE_PURPOSE (tmp));
1371 if (n_occurrences (',', constraint) != nalternatives)
1373 error ("operand constraints for `asm' differ in number of alternatives");
1374 return;
1377 if (TREE_CHAIN (tmp))
1378 tmp = TREE_CHAIN (tmp);
1379 else
1380 tmp = next, next = 0;
1384 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1386 tree val = TREE_VALUE (tail);
1387 tree type = TREE_TYPE (val);
1388 char *constraint;
1389 char *p;
1390 int c_len;
1391 int j;
1392 int is_inout = 0;
1393 int allows_reg = 0;
1394 int allows_mem = 0;
1396 /* If there's an erroneous arg, emit no insn. */
1397 if (TREE_TYPE (val) == error_mark_node)
1398 return;
1400 /* Make sure constraint has `=' and does not have `+'. Also, see
1401 if it allows any register. Be liberal on the latter test, since
1402 the worst that happens if we get it wrong is we issue an error
1403 message. */
1405 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (tail)));
1406 constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1408 /* Allow the `=' or `+' to not be at the beginning of the string,
1409 since it wasn't explicitly documented that way, and there is a
1410 large body of code that puts it last. Swap the character to
1411 the front, so as not to uglify any place else. */
1412 switch (c_len)
1414 default:
1415 if ((p = strchr (constraint, '=')) != NULL)
1416 break;
1417 if ((p = strchr (constraint, '+')) != NULL)
1418 break;
1419 case 0:
1420 error ("output operand constraint lacks `='");
1421 return;
1424 if (p != constraint)
1426 j = *p;
1427 bcopy (constraint, constraint+1, p-constraint);
1428 *constraint = j;
1430 warning ("output constraint `%c' for operand %d is not at the beginning", j, i);
1433 is_inout = constraint[0] == '+';
1434 /* Replace '+' with '='. */
1435 constraint[0] = '=';
1436 /* Make sure we can specify the matching operand. */
1437 if (is_inout && i > 9)
1439 error ("output operand constraint %d contains `+'", i);
1440 return;
1443 for (j = 1; j < c_len; j++)
1444 switch (constraint[j])
1446 case '+':
1447 case '=':
1448 error ("operand constraint contains '+' or '=' at illegal position.");
1449 return;
1451 case '%':
1452 if (i + 1 == ninputs + noutputs)
1454 error ("`%%' constraint used with last operand");
1455 return;
1457 break;
1459 case '?': case '!': case '*': case '&':
1460 case 'E': case 'F': case 'G': case 'H':
1461 case 's': case 'i': case 'n':
1462 case 'I': case 'J': case 'K': case 'L': case 'M':
1463 case 'N': case 'O': case 'P': case ',':
1464 #ifdef EXTRA_CONSTRAINT
1465 case 'Q': case 'R': case 'S': case 'T': case 'U':
1466 #endif
1467 break;
1469 case '0': case '1': case '2': case '3': case '4':
1470 case '5': case '6': case '7': case '8': case '9':
1471 error ("matching constraint not valid in output operand");
1472 break;
1474 case 'V': case 'm': case 'o':
1475 allows_mem = 1;
1476 break;
1478 case '<': case '>':
1479 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1480 excepting those that expand_call created. So match memory
1481 and hope. */
1482 allows_mem = 1;
1483 break;
1485 case 'g': case 'X':
1486 allows_reg = 1;
1487 allows_mem = 1;
1488 break;
1490 case 'p': case 'r':
1491 default:
1492 allows_reg = 1;
1493 break;
1496 /* If an output operand is not a decl or indirect ref and our constraint
1497 allows a register, make a temporary to act as an intermediate.
1498 Make the asm insn write into that, then our caller will copy it to
1499 the real output operand. Likewise for promoted variables. */
1501 real_output_rtx[i] = NULL_RTX;
1502 if ((TREE_CODE (val) == INDIRECT_REF
1503 && allows_mem)
1504 || (TREE_CODE_CLASS (TREE_CODE (val)) == 'd'
1505 && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1506 && ! (GET_CODE (DECL_RTL (val)) == REG
1507 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1508 || ! allows_reg
1509 || is_inout)
1511 if (! allows_reg)
1512 mark_addressable (TREE_VALUE (tail));
1514 output_rtx[i]
1515 = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode,
1516 EXPAND_MEMORY_USE_WO);
1518 if (! allows_reg && GET_CODE (output_rtx[i]) != MEM)
1519 error ("output number %d not directly addressable", i);
1520 if (! allows_mem && GET_CODE (output_rtx[i]) == MEM)
1522 real_output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1523 output_rtx[i] = gen_reg_rtx (GET_MODE (output_rtx[i]));
1524 if (is_inout)
1525 emit_move_insn (output_rtx[i], real_output_rtx[i]);
1528 else
1530 output_rtx[i] = assign_temp (type, 0, 0, 0);
1531 TREE_VALUE (tail) = make_tree (type, output_rtx[i]);
1534 if (is_inout)
1536 inout_mode[ninout] = TYPE_MODE (TREE_TYPE (TREE_VALUE (tail)));
1537 inout_opnum[ninout++] = i;
1541 ninputs += ninout;
1542 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1544 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1545 return;
1548 /* Make vectors for the expression-rtx and constraint strings. */
1550 argvec = rtvec_alloc (ninputs);
1551 constraints = rtvec_alloc (ninputs);
1553 body = gen_rtx_ASM_OPERANDS (VOIDmode, TREE_STRING_POINTER (string),
1554 empty_string, 0, argvec, constraints,
1555 filename, line);
1557 MEM_VOLATILE_P (body) = vol;
1559 /* Eval the inputs and put them into ARGVEC.
1560 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1562 i = 0;
1563 for (tail = inputs; tail; tail = TREE_CHAIN (tail))
1565 int j;
1566 int allows_reg = 0, allows_mem = 0;
1567 char *constraint, *orig_constraint;
1568 int c_len;
1569 rtx op;
1571 /* If there's an erroneous arg, emit no insn,
1572 because the ASM_INPUT would get VOIDmode
1573 and that could cause a crash in reload. */
1574 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1575 return;
1577 /* ??? Can this happen, and does the error message make any sense? */
1578 if (TREE_PURPOSE (tail) == NULL_TREE)
1580 error ("hard register `%s' listed as input operand to `asm'",
1581 TREE_STRING_POINTER (TREE_VALUE (tail)) );
1582 return;
1585 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (tail)));
1586 constraint = TREE_STRING_POINTER (TREE_PURPOSE (tail));
1587 orig_constraint = constraint;
1589 /* Make sure constraint has neither `=', `+', nor '&'. */
1591 for (j = 0; j < c_len; j++)
1592 switch (constraint[j])
1594 case '+': case '=': case '&':
1595 if (constraint == orig_constraint)
1597 error ("input operand constraint contains `%c'",
1598 constraint[j]);
1599 return;
1601 break;
1603 case '%':
1604 if (constraint == orig_constraint
1605 && i + 1 == ninputs - ninout)
1607 error ("`%%' constraint used with last operand");
1608 return;
1610 break;
1612 case 'V': case 'm': case 'o':
1613 allows_mem = 1;
1614 break;
1616 case '<': case '>':
1617 case '?': case '!': case '*':
1618 case 'E': case 'F': case 'G': case 'H': case 'X':
1619 case 's': case 'i': case 'n':
1620 case 'I': case 'J': case 'K': case 'L': case 'M':
1621 case 'N': case 'O': case 'P': case ',':
1622 #ifdef EXTRA_CONSTRAINT
1623 case 'Q': case 'R': case 'S': case 'T': case 'U':
1624 #endif
1625 break;
1627 /* Whether or not a numeric constraint allows a register is
1628 decided by the matching constraint, and so there is no need
1629 to do anything special with them. We must handle them in
1630 the default case, so that we don't unnecessarily force
1631 operands to memory. */
1632 case '0': case '1': case '2': case '3': case '4':
1633 case '5': case '6': case '7': case '8': case '9':
1634 if (constraint[j] >= '0' + noutputs)
1636 error
1637 ("matching constraint references invalid operand number");
1638 return;
1641 /* Try and find the real constraint for this dup. */
1642 if ((j == 0 && c_len == 1)
1643 || (j == 1 && c_len == 2 && constraint[0] == '%'))
1645 tree o = outputs;
1647 for (j = constraint[j] - '0'; j > 0; --j)
1648 o = TREE_CHAIN (o);
1650 c_len = strlen (TREE_STRING_POINTER (TREE_PURPOSE (o)));
1651 constraint = TREE_STRING_POINTER (TREE_PURPOSE (o));
1652 j = 0;
1653 break;
1656 /* ... fall through ... */
1658 case 'p': case 'r':
1659 default:
1660 allows_reg = 1;
1661 break;
1663 case 'g':
1664 allows_reg = 1;
1665 allows_mem = 1;
1666 break;
1669 if (! allows_reg && allows_mem)
1670 mark_addressable (TREE_VALUE (tail));
1672 op = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode, 0);
1674 if (asm_operand_ok (op, constraint) <= 0)
1676 if (allows_reg)
1677 op = force_reg (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))), op);
1678 else if (!allows_mem)
1679 warning ("asm operand %d probably doesn't match constraints", i);
1680 else if (CONSTANT_P (op))
1681 op = force_const_mem (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1682 op);
1683 else if (GET_CODE (op) == REG
1684 || GET_CODE (op) == SUBREG
1685 || GET_CODE (op) == CONCAT)
1687 tree type = TREE_TYPE (TREE_VALUE (tail));
1688 rtx memloc = assign_temp (type, 1, 1, 1);
1690 emit_move_insn (memloc, op);
1691 op = memloc;
1694 else if (GET_CODE (op) == MEM && MEM_VOLATILE_P (op))
1695 /* We won't recognize volatile memory as available a
1696 memory_operand at this point. Ignore it. */
1698 else if (queued_subexp_p (op))
1700 else
1701 /* ??? Leave this only until we have experience with what
1702 happens in combine and elsewhere when constraints are
1703 not satisfied. */
1704 warning ("asm operand %d probably doesn't match constraints", i);
1706 XVECEXP (body, 3, i) = op;
1708 XVECEXP (body, 4, i) /* constraints */
1709 = gen_rtx_ASM_INPUT (TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1710 orig_constraint);
1711 i++;
1714 /* Protect all the operands from the queue now that they have all been
1715 evaluated. */
1717 for (i = 0; i < ninputs - ninout; i++)
1718 XVECEXP (body, 3, i) = protect_from_queue (XVECEXP (body, 3, i), 0);
1720 for (i = 0; i < noutputs; i++)
1721 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1723 /* For in-out operands, copy output rtx to input rtx. */
1724 for (i = 0; i < ninout; i++)
1726 int j = inout_opnum[i];
1728 XVECEXP (body, 3, ninputs - ninout + i) /* argvec */
1729 = output_rtx[j];
1730 XVECEXP (body, 4, ninputs - ninout + i) /* constraints */
1731 = gen_rtx_ASM_INPUT (inout_mode[i], digit_strings[j]);
1734 /* Now, for each output, construct an rtx
1735 (set OUTPUT (asm_operands INSN OUTPUTNUMBER OUTPUTCONSTRAINT
1736 ARGVEC CONSTRAINTS))
1737 If there is more than one, put them inside a PARALLEL. */
1739 if (noutputs == 1 && nclobbers == 0)
1741 XSTR (body, 1) = TREE_STRING_POINTER (TREE_PURPOSE (outputs));
1742 insn = emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1745 else if (noutputs == 0 && nclobbers == 0)
1747 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1748 insn = emit_insn (body);
1751 else
1753 rtx obody = body;
1754 int num = noutputs;
1756 if (num == 0)
1757 num = 1;
1759 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1761 /* For each output operand, store a SET. */
1762 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1764 XVECEXP (body, 0, i)
1765 = gen_rtx_SET (VOIDmode,
1766 output_rtx[i],
1767 gen_rtx_ASM_OPERANDS
1768 (VOIDmode,
1769 TREE_STRING_POINTER (string),
1770 TREE_STRING_POINTER (TREE_PURPOSE (tail)),
1771 i, argvec, constraints,
1772 filename, line));
1774 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1777 /* If there are no outputs (but there are some clobbers)
1778 store the bare ASM_OPERANDS into the PARALLEL. */
1780 if (i == 0)
1781 XVECEXP (body, 0, i++) = obody;
1783 /* Store (clobber REG) for each clobbered register specified. */
1785 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1787 char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1788 int j = decode_reg_name (regname);
1790 if (j < 0)
1792 if (j == -3) /* `cc', which is not a register */
1793 continue;
1795 if (j == -4) /* `memory', don't cache memory across asm */
1797 XVECEXP (body, 0, i++)
1798 = gen_rtx_CLOBBER (VOIDmode,
1799 gen_rtx_MEM
1800 (BLKmode,
1801 gen_rtx_SCRATCH (VOIDmode)));
1802 continue;
1805 /* Ignore unknown register, error already signaled. */
1806 continue;
1809 /* Use QImode since that's guaranteed to clobber just one reg. */
1810 XVECEXP (body, 0, i++)
1811 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (QImode, j));
1814 insn = emit_insn (body);
1817 /* For any outputs that needed reloading into registers, spill them
1818 back to where they belong. */
1819 for (i = 0; i < noutputs; ++i)
1820 if (real_output_rtx[i])
1821 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1823 free_temp_slots ();
1826 /* Generate RTL to evaluate the expression EXP
1827 and remember it in case this is the VALUE in a ({... VALUE; }) constr. */
1829 void
1830 expand_expr_stmt (exp)
1831 tree exp;
1833 /* If -W, warn about statements with no side effects,
1834 except for an explicit cast to void (e.g. for assert()), and
1835 except inside a ({...}) where they may be useful. */
1836 if (expr_stmts_for_value == 0 && exp != error_mark_node)
1838 if (! TREE_SIDE_EFFECTS (exp) && (extra_warnings || warn_unused)
1839 && !(TREE_CODE (exp) == CONVERT_EXPR
1840 && TREE_TYPE (exp) == void_type_node))
1841 warning_with_file_and_line (emit_filename, emit_lineno,
1842 "statement with no effect");
1843 else if (warn_unused)
1844 warn_if_unused_value (exp);
1847 /* If EXP is of function type and we are expanding statements for
1848 value, convert it to pointer-to-function. */
1849 if (expr_stmts_for_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
1850 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
1852 last_expr_type = TREE_TYPE (exp);
1853 last_expr_value = expand_expr (exp,
1854 (expr_stmts_for_value
1855 ? NULL_RTX : const0_rtx),
1856 VOIDmode, 0);
1858 /* If all we do is reference a volatile value in memory,
1859 copy it to a register to be sure it is actually touched. */
1860 if (last_expr_value != 0 && GET_CODE (last_expr_value) == MEM
1861 && TREE_THIS_VOLATILE (exp))
1863 if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode)
1865 else if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
1866 copy_to_reg (last_expr_value);
1867 else
1869 rtx lab = gen_label_rtx ();
1871 /* Compare the value with itself to reference it. */
1872 emit_cmp_and_jump_insns (last_expr_value, last_expr_value, EQ,
1873 expand_expr (TYPE_SIZE (last_expr_type),
1874 NULL_RTX, VOIDmode, 0),
1875 BLKmode, 0,
1876 TYPE_ALIGN (last_expr_type) / BITS_PER_UNIT,
1877 lab);
1878 emit_label (lab);
1882 /* If this expression is part of a ({...}) and is in memory, we may have
1883 to preserve temporaries. */
1884 preserve_temp_slots (last_expr_value);
1886 /* Free any temporaries used to evaluate this expression. Any temporary
1887 used as a result of this expression will already have been preserved
1888 above. */
1889 free_temp_slots ();
1891 emit_queue ();
1894 /* Warn if EXP contains any computations whose results are not used.
1895 Return 1 if a warning is printed; 0 otherwise. */
1898 warn_if_unused_value (exp)
1899 tree exp;
1901 if (TREE_USED (exp))
1902 return 0;
1904 switch (TREE_CODE (exp))
1906 case PREINCREMENT_EXPR:
1907 case POSTINCREMENT_EXPR:
1908 case PREDECREMENT_EXPR:
1909 case POSTDECREMENT_EXPR:
1910 case MODIFY_EXPR:
1911 case INIT_EXPR:
1912 case TARGET_EXPR:
1913 case CALL_EXPR:
1914 case METHOD_CALL_EXPR:
1915 case RTL_EXPR:
1916 case TRY_CATCH_EXPR:
1917 case WITH_CLEANUP_EXPR:
1918 case EXIT_EXPR:
1919 /* We don't warn about COND_EXPR because it may be a useful
1920 construct if either arm contains a side effect. */
1921 case COND_EXPR:
1922 return 0;
1924 case BIND_EXPR:
1925 /* For a binding, warn if no side effect within it. */
1926 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1928 case SAVE_EXPR:
1929 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1931 case TRUTH_ORIF_EXPR:
1932 case TRUTH_ANDIF_EXPR:
1933 /* In && or ||, warn if 2nd operand has no side effect. */
1934 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1936 case COMPOUND_EXPR:
1937 if (TREE_NO_UNUSED_WARNING (exp))
1938 return 0;
1939 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
1940 return 1;
1941 /* Let people do `(foo (), 0)' without a warning. */
1942 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1943 return 0;
1944 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1946 case NOP_EXPR:
1947 case CONVERT_EXPR:
1948 case NON_LVALUE_EXPR:
1949 /* Don't warn about values cast to void. */
1950 if (TREE_TYPE (exp) == void_type_node)
1951 return 0;
1952 /* Don't warn about conversions not explicit in the user's program. */
1953 if (TREE_NO_UNUSED_WARNING (exp))
1954 return 0;
1955 /* Assignment to a cast usually results in a cast of a modify.
1956 Don't complain about that. There can be an arbitrary number of
1957 casts before the modify, so we must loop until we find the first
1958 non-cast expression and then test to see if that is a modify. */
1960 tree tem = TREE_OPERAND (exp, 0);
1962 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
1963 tem = TREE_OPERAND (tem, 0);
1965 if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
1966 || TREE_CODE (tem) == CALL_EXPR)
1967 return 0;
1969 goto warn;
1971 case INDIRECT_REF:
1972 /* Don't warn about automatic dereferencing of references, since
1973 the user cannot control it. */
1974 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
1975 return warn_if_unused_value (TREE_OPERAND (exp, 0));
1976 /* ... fall through ... */
1978 default:
1979 /* Referencing a volatile value is a side effect, so don't warn. */
1980 if ((TREE_CODE_CLASS (TREE_CODE (exp)) == 'd'
1981 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
1982 && TREE_THIS_VOLATILE (exp))
1983 return 0;
1984 warn:
1985 warning_with_file_and_line (emit_filename, emit_lineno,
1986 "value computed is not used");
1987 return 1;
1991 /* Clear out the memory of the last expression evaluated. */
1993 void
1994 clear_last_expr ()
1996 last_expr_type = 0;
1999 /* Begin a statement which will return a value.
2000 Return the RTL_EXPR for this statement expr.
2001 The caller must save that value and pass it to expand_end_stmt_expr. */
2003 tree
2004 expand_start_stmt_expr ()
2006 int momentary;
2007 tree t;
2009 /* Make the RTL_EXPR node temporary, not momentary,
2010 so that rtl_expr_chain doesn't become garbage. */
2011 momentary = suspend_momentary ();
2012 t = make_node (RTL_EXPR);
2013 resume_momentary (momentary);
2014 do_pending_stack_adjust ();
2015 start_sequence_for_rtl_expr (t);
2016 NO_DEFER_POP;
2017 expr_stmts_for_value++;
2018 return t;
2021 /* Restore the previous state at the end of a statement that returns a value.
2022 Returns a tree node representing the statement's value and the
2023 insns to compute the value.
2025 The nodes of that expression have been freed by now, so we cannot use them.
2026 But we don't want to do that anyway; the expression has already been
2027 evaluated and now we just want to use the value. So generate a RTL_EXPR
2028 with the proper type and RTL value.
2030 If the last substatement was not an expression,
2031 return something with type `void'. */
2033 tree
2034 expand_end_stmt_expr (t)
2035 tree t;
2037 OK_DEFER_POP;
2039 if (last_expr_type == 0)
2041 last_expr_type = void_type_node;
2042 last_expr_value = const0_rtx;
2044 else if (last_expr_value == 0)
2045 /* There are some cases where this can happen, such as when the
2046 statement is void type. */
2047 last_expr_value = const0_rtx;
2048 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2049 /* Remove any possible QUEUED. */
2050 last_expr_value = protect_from_queue (last_expr_value, 0);
2052 emit_queue ();
2054 TREE_TYPE (t) = last_expr_type;
2055 RTL_EXPR_RTL (t) = last_expr_value;
2056 RTL_EXPR_SEQUENCE (t) = get_insns ();
2058 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2060 end_sequence ();
2062 /* Don't consider deleting this expr or containing exprs at tree level. */
2063 TREE_SIDE_EFFECTS (t) = 1;
2064 /* Propagate volatility of the actual RTL expr. */
2065 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2067 last_expr_type = 0;
2068 expr_stmts_for_value--;
2070 return t;
2073 /* Generate RTL for the start of an if-then. COND is the expression
2074 whose truth should be tested.
2076 If EXITFLAG is nonzero, this conditional is visible to
2077 `exit_something'. */
2079 void
2080 expand_start_cond (cond, exitflag)
2081 tree cond;
2082 int exitflag;
2084 struct nesting *thiscond = ALLOC_NESTING ();
2086 /* Make an entry on cond_stack for the cond we are entering. */
2088 thiscond->next = cond_stack;
2089 thiscond->all = nesting_stack;
2090 thiscond->depth = ++nesting_depth;
2091 thiscond->data.cond.next_label = gen_label_rtx ();
2092 /* Before we encounter an `else', we don't need a separate exit label
2093 unless there are supposed to be exit statements
2094 to exit this conditional. */
2095 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2096 thiscond->data.cond.endif_label = thiscond->exit_label;
2097 cond_stack = thiscond;
2098 nesting_stack = thiscond;
2100 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2103 /* Generate RTL between then-clause and the elseif-clause
2104 of an if-then-elseif-.... */
2106 void
2107 expand_start_elseif (cond)
2108 tree cond;
2110 if (cond_stack->data.cond.endif_label == 0)
2111 cond_stack->data.cond.endif_label = gen_label_rtx ();
2112 emit_jump (cond_stack->data.cond.endif_label);
2113 emit_label (cond_stack->data.cond.next_label);
2114 cond_stack->data.cond.next_label = gen_label_rtx ();
2115 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2118 /* Generate RTL between the then-clause and the else-clause
2119 of an if-then-else. */
2121 void
2122 expand_start_else ()
2124 if (cond_stack->data.cond.endif_label == 0)
2125 cond_stack->data.cond.endif_label = gen_label_rtx ();
2127 emit_jump (cond_stack->data.cond.endif_label);
2128 emit_label (cond_stack->data.cond.next_label);
2129 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
2132 /* After calling expand_start_else, turn this "else" into an "else if"
2133 by providing another condition. */
2135 void
2136 expand_elseif (cond)
2137 tree cond;
2139 cond_stack->data.cond.next_label = gen_label_rtx ();
2140 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2143 /* Generate RTL for the end of an if-then.
2144 Pop the record for it off of cond_stack. */
2146 void
2147 expand_end_cond ()
2149 struct nesting *thiscond = cond_stack;
2151 do_pending_stack_adjust ();
2152 if (thiscond->data.cond.next_label)
2153 emit_label (thiscond->data.cond.next_label);
2154 if (thiscond->data.cond.endif_label)
2155 emit_label (thiscond->data.cond.endif_label);
2157 POPSTACK (cond_stack);
2158 last_expr_type = 0;
2163 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2164 loop should be exited by `exit_something'. This is a loop for which
2165 `expand_continue' will jump to the top of the loop.
2167 Make an entry on loop_stack to record the labels associated with
2168 this loop. */
2170 struct nesting *
2171 expand_start_loop (exit_flag)
2172 int exit_flag;
2174 register struct nesting *thisloop = ALLOC_NESTING ();
2176 /* Make an entry on loop_stack for the loop we are entering. */
2178 thisloop->next = loop_stack;
2179 thisloop->all = nesting_stack;
2180 thisloop->depth = ++nesting_depth;
2181 thisloop->data.loop.start_label = gen_label_rtx ();
2182 thisloop->data.loop.end_label = gen_label_rtx ();
2183 thisloop->data.loop.alt_end_label = 0;
2184 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2185 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2186 loop_stack = thisloop;
2187 nesting_stack = thisloop;
2189 do_pending_stack_adjust ();
2190 emit_queue ();
2191 emit_note (NULL_PTR, NOTE_INSN_LOOP_BEG);
2192 emit_label (thisloop->data.loop.start_label);
2194 return thisloop;
2197 /* Like expand_start_loop but for a loop where the continuation point
2198 (for expand_continue_loop) will be specified explicitly. */
2200 struct nesting *
2201 expand_start_loop_continue_elsewhere (exit_flag)
2202 int exit_flag;
2204 struct nesting *thisloop = expand_start_loop (exit_flag);
2205 loop_stack->data.loop.continue_label = gen_label_rtx ();
2206 return thisloop;
2209 /* Specify the continuation point for a loop started with
2210 expand_start_loop_continue_elsewhere.
2211 Use this at the point in the code to which a continue statement
2212 should jump. */
2214 void
2215 expand_loop_continue_here ()
2217 do_pending_stack_adjust ();
2218 emit_note (NULL_PTR, NOTE_INSN_LOOP_CONT);
2219 emit_label (loop_stack->data.loop.continue_label);
2222 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2223 Pop the block off of loop_stack. */
2225 void
2226 expand_end_loop ()
2228 rtx start_label = loop_stack->data.loop.start_label;
2229 rtx insn = get_last_insn ();
2230 int needs_end_jump = 1;
2232 /* Mark the continue-point at the top of the loop if none elsewhere. */
2233 if (start_label == loop_stack->data.loop.continue_label)
2234 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2236 do_pending_stack_adjust ();
2238 /* If optimizing, perhaps reorder the loop.
2239 First, try to use a condjump near the end.
2240 expand_exit_loop_if_false ends loops with unconditional jumps,
2241 like this:
2243 if (test) goto label;
2244 optional: cleanup
2245 goto loop_stack->data.loop.end_label
2246 barrier
2247 label:
2249 If we find such a pattern, we can end the loop earlier. */
2251 if (optimize
2252 && GET_CODE (insn) == CODE_LABEL
2253 && LABEL_NAME (insn) == NULL
2254 && GET_CODE (PREV_INSN (insn)) == BARRIER)
2256 rtx label = insn;
2257 rtx jump = PREV_INSN (PREV_INSN (label));
2259 if (GET_CODE (jump) == JUMP_INSN
2260 && GET_CODE (PATTERN (jump)) == SET
2261 && SET_DEST (PATTERN (jump)) == pc_rtx
2262 && GET_CODE (SET_SRC (PATTERN (jump))) == LABEL_REF
2263 && (XEXP (SET_SRC (PATTERN (jump)), 0)
2264 == loop_stack->data.loop.end_label))
2266 rtx prev;
2268 /* The test might be complex and reference LABEL multiple times,
2269 like the loop in loop_iterations to set vtop. To handle this,
2270 we move LABEL. */
2271 insn = PREV_INSN (label);
2272 reorder_insns (label, label, start_label);
2274 for (prev = PREV_INSN (jump); ; prev = PREV_INSN (prev))
2276 /* We ignore line number notes, but if we see any other note,
2277 in particular NOTE_INSN_BLOCK_*, NOTE_INSN_EH_REGION_*,
2278 NOTE_INSN_LOOP_*, we disable this optimization. */
2279 if (GET_CODE (prev) == NOTE)
2281 if (NOTE_LINE_NUMBER (prev) < 0)
2282 break;
2283 continue;
2285 if (GET_CODE (prev) == CODE_LABEL)
2286 break;
2287 if (GET_CODE (prev) == JUMP_INSN)
2289 if (GET_CODE (PATTERN (prev)) == SET
2290 && SET_DEST (PATTERN (prev)) == pc_rtx
2291 && GET_CODE (SET_SRC (PATTERN (prev))) == IF_THEN_ELSE
2292 && (GET_CODE (XEXP (SET_SRC (PATTERN (prev)), 1))
2293 == LABEL_REF)
2294 && XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0) == label)
2296 XEXP (XEXP (SET_SRC (PATTERN (prev)), 1), 0)
2297 = start_label;
2298 emit_note_after (NOTE_INSN_LOOP_END, prev);
2299 needs_end_jump = 0;
2301 break;
2307 /* If the loop starts with a loop exit, roll that to the end where
2308 it will optimize together with the jump back.
2310 We look for the conditional branch to the exit, except that once
2311 we find such a branch, we don't look past 30 instructions.
2313 In more detail, if the loop presently looks like this (in pseudo-C):
2315 start_label:
2316 if (test) goto end_label;
2317 body;
2318 goto start_label;
2319 end_label:
2321 transform it to look like:
2323 goto start_label;
2324 newstart_label:
2325 body;
2326 start_label:
2327 if (test) goto end_label;
2328 goto newstart_label;
2329 end_label:
2331 Here, the `test' may actually consist of some reasonably complex
2332 code, terminating in a test. */
2334 if (optimize
2335 && needs_end_jump
2337 ! (GET_CODE (insn) == JUMP_INSN
2338 && GET_CODE (PATTERN (insn)) == SET
2339 && SET_DEST (PATTERN (insn)) == pc_rtx
2340 && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE))
2342 int eh_regions = 0;
2343 int num_insns = 0;
2344 rtx last_test_insn = NULL_RTX;
2346 /* Scan insns from the top of the loop looking for a qualified
2347 conditional exit. */
2348 for (insn = NEXT_INSN (loop_stack->data.loop.start_label); insn;
2349 insn = NEXT_INSN (insn))
2351 if (GET_CODE (insn) == NOTE)
2353 if (optimize < 2
2354 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2355 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2356 /* The code that actually moves the exit test will
2357 carefully leave BLOCK notes in their original
2358 location. That means, however, that we can't debug
2359 the exit test itself. So, we refuse to move code
2360 containing BLOCK notes at low optimization levels. */
2361 break;
2363 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG)
2364 ++eh_regions;
2365 else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END)
2367 --eh_regions;
2368 if (eh_regions < 0)
2369 /* We've come to the end of an EH region, but
2370 never saw the beginning of that region. That
2371 means that an EH region begins before the top
2372 of the loop, and ends in the middle of it. The
2373 existence of such a situation violates a basic
2374 assumption in this code, since that would imply
2375 that even when EH_REGIONS is zero, we might
2376 move code out of an exception region. */
2377 abort ();
2380 /* We must not walk into a nested loop. */
2381 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
2382 break;
2384 /* We already know this INSN is a NOTE, so there's no
2385 point in looking at it to see if it's a JUMP. */
2386 continue;
2389 if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == INSN)
2390 num_insns++;
2392 if (last_test_insn && num_insns > 30)
2393 break;
2395 if (eh_regions > 0)
2396 /* We don't want to move a partial EH region. Consider:
2398 while ( ( { try {
2399 if (cond ()) 0;
2400 else {
2401 bar();
2404 } catch (...) {
2406 } )) {
2407 body;
2410 This isn't legal C++, but here's what it's supposed to
2411 mean: if cond() is true, stop looping. Otherwise,
2412 call bar, and keep looping. In addition, if cond
2413 throws an exception, catch it and keep looping. Such
2414 constructs are certainy legal in LISP.
2416 We should not move the `if (cond()) 0' test since then
2417 the EH-region for the try-block would be broken up.
2418 (In this case we would the EH_BEG note for the `try'
2419 and `if cond()' but not the call to bar() or the
2420 EH_END note.)
2422 So we don't look for tests within an EH region. */
2423 continue;
2425 if (GET_CODE (insn) == JUMP_INSN
2426 && GET_CODE (PATTERN (insn)) == SET
2427 && SET_DEST (PATTERN (insn)) == pc_rtx)
2429 /* This is indeed a jump. */
2430 rtx dest1 = NULL_RTX;
2431 rtx dest2 = NULL_RTX;
2432 rtx potential_last_test;
2433 if (GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE)
2435 /* A conditional jump. */
2436 dest1 = XEXP (SET_SRC (PATTERN (insn)), 1);
2437 dest2 = XEXP (SET_SRC (PATTERN (insn)), 2);
2438 potential_last_test = insn;
2440 else
2442 /* An unconditional jump. */
2443 dest1 = SET_SRC (PATTERN (insn));
2444 /* Include the BARRIER after the JUMP. */
2445 potential_last_test = NEXT_INSN (insn);
2448 do {
2449 if (dest1 && GET_CODE (dest1) == LABEL_REF
2450 && ((XEXP (dest1, 0)
2451 == loop_stack->data.loop.alt_end_label)
2452 || (XEXP (dest1, 0)
2453 == loop_stack->data.loop.end_label)))
2455 last_test_insn = potential_last_test;
2456 break;
2459 /* If this was a conditional jump, there may be
2460 another label at which we should look. */
2461 dest1 = dest2;
2462 dest2 = NULL_RTX;
2463 } while (dest1);
2467 if (last_test_insn != 0 && last_test_insn != get_last_insn ())
2469 /* We found one. Move everything from there up
2470 to the end of the loop, and add a jump into the loop
2471 to jump to there. */
2472 register rtx newstart_label = gen_label_rtx ();
2473 register rtx start_move = start_label;
2474 rtx next_insn;
2476 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2477 then we want to move this note also. */
2478 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2479 && (NOTE_LINE_NUMBER (PREV_INSN (start_move))
2480 == NOTE_INSN_LOOP_CONT))
2481 start_move = PREV_INSN (start_move);
2483 emit_label_after (newstart_label, PREV_INSN (start_move));
2485 /* Actually move the insns. Start at the beginning, and
2486 keep copying insns until we've copied the
2487 last_test_insn. */
2488 for (insn = start_move; insn; insn = next_insn)
2490 /* Figure out which insn comes after this one. We have
2491 to do this before we move INSN. */
2492 if (insn == last_test_insn)
2493 /* We've moved all the insns. */
2494 next_insn = NULL_RTX;
2495 else
2496 next_insn = NEXT_INSN (insn);
2498 if (GET_CODE (insn) == NOTE
2499 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2500 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2501 /* We don't want to move NOTE_INSN_BLOCK_BEGs or
2502 NOTE_INSN_BLOCK_ENDs because the correct generation
2503 of debugging information depends on these appearing
2504 in the same order in the RTL and in the tree
2505 structure, where they are represented as BLOCKs.
2506 So, we don't move block notes. Of course, moving
2507 the code inside the block is likely to make it
2508 impossible to debug the instructions in the exit
2509 test, but such is the price of optimization. */
2510 continue;
2512 /* Move the INSN. */
2513 reorder_insns (insn, insn, get_last_insn ());
2516 emit_jump_insn_after (gen_jump (start_label),
2517 PREV_INSN (newstart_label));
2518 emit_barrier_after (PREV_INSN (newstart_label));
2519 start_label = newstart_label;
2523 if (needs_end_jump)
2525 emit_jump (start_label);
2526 emit_note (NULL_PTR, NOTE_INSN_LOOP_END);
2528 emit_label (loop_stack->data.loop.end_label);
2530 POPSTACK (loop_stack);
2532 last_expr_type = 0;
2535 /* Generate a jump to the current loop's continue-point.
2536 This is usually the top of the loop, but may be specified
2537 explicitly elsewhere. If not currently inside a loop,
2538 return 0 and do nothing; caller will print an error message. */
2541 expand_continue_loop (whichloop)
2542 struct nesting *whichloop;
2544 last_expr_type = 0;
2545 if (whichloop == 0)
2546 whichloop = loop_stack;
2547 if (whichloop == 0)
2548 return 0;
2549 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2550 NULL_RTX);
2551 return 1;
2554 /* Generate a jump to exit the current loop. If not currently inside a loop,
2555 return 0 and do nothing; caller will print an error message. */
2558 expand_exit_loop (whichloop)
2559 struct nesting *whichloop;
2561 last_expr_type = 0;
2562 if (whichloop == 0)
2563 whichloop = loop_stack;
2564 if (whichloop == 0)
2565 return 0;
2566 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2567 return 1;
2570 /* Generate a conditional jump to exit the current loop if COND
2571 evaluates to zero. If not currently inside a loop,
2572 return 0 and do nothing; caller will print an error message. */
2575 expand_exit_loop_if_false (whichloop, cond)
2576 struct nesting *whichloop;
2577 tree cond;
2579 rtx label = gen_label_rtx ();
2580 rtx last_insn;
2581 last_expr_type = 0;
2583 if (whichloop == 0)
2584 whichloop = loop_stack;
2585 if (whichloop == 0)
2586 return 0;
2587 /* In order to handle fixups, we actually create a conditional jump
2588 around a unconditional branch to exit the loop. If fixups are
2589 necessary, they go before the unconditional branch. */
2592 do_jump (cond, NULL_RTX, label);
2593 last_insn = get_last_insn ();
2594 if (GET_CODE (last_insn) == CODE_LABEL)
2595 whichloop->data.loop.alt_end_label = last_insn;
2596 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2597 NULL_RTX);
2598 emit_label (label);
2600 return 1;
2603 /* Return nonzero if the loop nest is empty. Else return zero. */
2606 stmt_loop_nest_empty ()
2608 return (loop_stack == NULL);
2611 /* Return non-zero if we should preserve sub-expressions as separate
2612 pseudos. We never do so if we aren't optimizing. We always do so
2613 if -fexpensive-optimizations.
2615 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2616 the loop may still be a small one. */
2619 preserve_subexpressions_p ()
2621 rtx insn;
2623 if (flag_expensive_optimizations)
2624 return 1;
2626 if (optimize == 0 || current_function == 0
2627 || current_function->stmt == 0 || loop_stack == 0)
2628 return 0;
2630 insn = get_last_insn_anywhere ();
2632 return (insn
2633 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2634 < n_non_fixed_regs * 3));
2638 /* Generate a jump to exit the current loop, conditional, binding contour
2639 or case statement. Not all such constructs are visible to this function,
2640 only those started with EXIT_FLAG nonzero. Individual languages use
2641 the EXIT_FLAG parameter to control which kinds of constructs you can
2642 exit this way.
2644 If not currently inside anything that can be exited,
2645 return 0 and do nothing; caller will print an error message. */
2648 expand_exit_something ()
2650 struct nesting *n;
2651 last_expr_type = 0;
2652 for (n = nesting_stack; n; n = n->all)
2653 if (n->exit_label != 0)
2655 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2656 return 1;
2659 return 0;
2662 /* Generate RTL to return from the current function, with no value.
2663 (That is, we do not do anything about returning any value.) */
2665 void
2666 expand_null_return ()
2668 struct nesting *block = block_stack;
2669 rtx last_insn = get_last_insn ();
2671 /* If this function was declared to return a value, but we
2672 didn't, clobber the return registers so that they are not
2673 propogated live to the rest of the function. */
2675 diddle_return_value (CLOBBER);
2677 /* Does any pending block have cleanups? */
2679 while (block && block->data.block.cleanups == 0)
2680 block = block->next;
2682 /* If yes, use a goto to return, since that runs cleanups. */
2684 expand_null_return_1 (last_insn, block != 0);
2687 /* Generate RTL to return from the current function, with value VAL. */
2689 static void
2690 expand_value_return (val)
2691 rtx val;
2693 struct nesting *block = block_stack;
2694 rtx last_insn = get_last_insn ();
2695 rtx return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2697 /* Copy the value to the return location
2698 unless it's already there. */
2700 if (return_reg != val)
2702 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
2703 #ifdef PROMOTE_FUNCTION_RETURN
2704 int unsignedp = TREE_UNSIGNED (type);
2705 enum machine_mode old_mode
2706 = DECL_MODE (DECL_RESULT (current_function_decl));
2707 enum machine_mode mode
2708 = promote_mode (type, old_mode, &unsignedp, 1);
2710 if (mode != old_mode)
2711 val = convert_modes (mode, old_mode, val, unsignedp);
2712 #endif
2713 if (GET_CODE (return_reg) == PARALLEL)
2714 emit_group_load (return_reg, val, int_size_in_bytes (type),
2715 TYPE_ALIGN (type) / BITS_PER_UNIT);
2716 else
2717 emit_move_insn (return_reg, val);
2720 diddle_return_value (USE);
2722 /* Does any pending block have cleanups? */
2724 while (block && block->data.block.cleanups == 0)
2725 block = block->next;
2727 /* If yes, use a goto to return, since that runs cleanups.
2728 Use LAST_INSN to put cleanups *before* the move insn emitted above. */
2730 expand_null_return_1 (last_insn, block != 0);
2733 /* Output a return with no value. If LAST_INSN is nonzero,
2734 pretend that the return takes place after LAST_INSN.
2735 If USE_GOTO is nonzero then don't use a return instruction;
2736 go to the return label instead. This causes any cleanups
2737 of pending blocks to be executed normally. */
2739 static void
2740 expand_null_return_1 (last_insn, use_goto)
2741 rtx last_insn;
2742 int use_goto;
2744 rtx end_label = cleanup_label ? cleanup_label : return_label;
2746 clear_pending_stack_adjust ();
2747 do_pending_stack_adjust ();
2748 last_expr_type = 0;
2750 /* PCC-struct return always uses an epilogue. */
2751 if (current_function_returns_pcc_struct || use_goto)
2753 if (end_label == 0)
2754 end_label = return_label = gen_label_rtx ();
2755 expand_goto_internal (NULL_TREE, end_label, last_insn);
2756 return;
2759 /* Otherwise output a simple return-insn if one is available,
2760 unless it won't do the job. */
2761 #ifdef HAVE_return
2762 if (HAVE_return && use_goto == 0 && cleanup_label == 0)
2764 emit_jump_insn (gen_return ());
2765 emit_barrier ();
2766 return;
2768 #endif
2770 /* Otherwise jump to the epilogue. */
2771 expand_goto_internal (NULL_TREE, end_label, last_insn);
2774 /* Generate RTL to evaluate the expression RETVAL and return it
2775 from the current function. */
2777 void
2778 expand_return (retval)
2779 tree retval;
2781 /* If there are any cleanups to be performed, then they will
2782 be inserted following LAST_INSN. It is desirable
2783 that the last_insn, for such purposes, should be the
2784 last insn before computing the return value. Otherwise, cleanups
2785 which call functions can clobber the return value. */
2786 /* ??? rms: I think that is erroneous, because in C++ it would
2787 run destructors on variables that might be used in the subsequent
2788 computation of the return value. */
2789 rtx last_insn = 0;
2790 rtx result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
2791 register rtx val = 0;
2792 register rtx op0;
2793 tree retval_rhs;
2794 int cleanups;
2796 /* If function wants no value, give it none. */
2797 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
2799 expand_expr (retval, NULL_RTX, VOIDmode, 0);
2800 emit_queue ();
2801 expand_null_return ();
2802 return;
2805 /* Are any cleanups needed? E.g. C++ destructors to be run? */
2806 /* This is not sufficient. We also need to watch for cleanups of the
2807 expression we are about to expand. Unfortunately, we cannot know
2808 if it has cleanups until we expand it, and we want to change how we
2809 expand it depending upon if we need cleanups. We can't win. */
2810 #if 0
2811 cleanups = any_pending_cleanups (1);
2812 #else
2813 cleanups = 1;
2814 #endif
2816 if (TREE_CODE (retval) == RESULT_DECL)
2817 retval_rhs = retval;
2818 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
2819 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
2820 retval_rhs = TREE_OPERAND (retval, 1);
2821 else if (TREE_TYPE (retval) == void_type_node)
2822 /* Recognize tail-recursive call to void function. */
2823 retval_rhs = retval;
2824 else
2825 retval_rhs = NULL_TREE;
2827 /* Only use `last_insn' if there are cleanups which must be run. */
2828 if (cleanups || cleanup_label != 0)
2829 last_insn = get_last_insn ();
2831 /* Distribute return down conditional expr if either of the sides
2832 may involve tail recursion (see test below). This enhances the number
2833 of tail recursions we see. Don't do this always since it can produce
2834 sub-optimal code in some cases and we distribute assignments into
2835 conditional expressions when it would help. */
2837 if (optimize && retval_rhs != 0
2838 && frame_offset == 0
2839 && TREE_CODE (retval_rhs) == COND_EXPR
2840 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
2841 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
2843 rtx label = gen_label_rtx ();
2844 tree expr;
2846 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
2847 start_cleanup_deferral ();
2848 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2849 DECL_RESULT (current_function_decl),
2850 TREE_OPERAND (retval_rhs, 1));
2851 TREE_SIDE_EFFECTS (expr) = 1;
2852 expand_return (expr);
2853 emit_label (label);
2855 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2856 DECL_RESULT (current_function_decl),
2857 TREE_OPERAND (retval_rhs, 2));
2858 TREE_SIDE_EFFECTS (expr) = 1;
2859 expand_return (expr);
2860 end_cleanup_deferral ();
2861 return;
2864 /* Attempt to optimize the call if it is tail recursive. */
2865 if (optimize_tail_recursion (retval_rhs, last_insn))
2866 return;
2868 #ifdef HAVE_return
2869 /* This optimization is safe if there are local cleanups
2870 because expand_null_return takes care of them.
2871 ??? I think it should also be safe when there is a cleanup label,
2872 because expand_null_return takes care of them, too.
2873 Any reason why not? */
2874 if (HAVE_return && cleanup_label == 0
2875 && ! current_function_returns_pcc_struct
2876 && BRANCH_COST <= 1)
2878 /* If this is return x == y; then generate
2879 if (x == y) return 1; else return 0;
2880 if we can do it with explicit return insns and branches are cheap,
2881 but not if we have the corresponding scc insn. */
2882 int has_scc = 0;
2883 if (retval_rhs)
2884 switch (TREE_CODE (retval_rhs))
2886 case EQ_EXPR:
2887 #ifdef HAVE_seq
2888 has_scc = HAVE_seq;
2889 #endif
2890 case NE_EXPR:
2891 #ifdef HAVE_sne
2892 has_scc = HAVE_sne;
2893 #endif
2894 case GT_EXPR:
2895 #ifdef HAVE_sgt
2896 has_scc = HAVE_sgt;
2897 #endif
2898 case GE_EXPR:
2899 #ifdef HAVE_sge
2900 has_scc = HAVE_sge;
2901 #endif
2902 case LT_EXPR:
2903 #ifdef HAVE_slt
2904 has_scc = HAVE_slt;
2905 #endif
2906 case LE_EXPR:
2907 #ifdef HAVE_sle
2908 has_scc = HAVE_sle;
2909 #endif
2910 case TRUTH_ANDIF_EXPR:
2911 case TRUTH_ORIF_EXPR:
2912 case TRUTH_AND_EXPR:
2913 case TRUTH_OR_EXPR:
2914 case TRUTH_NOT_EXPR:
2915 case TRUTH_XOR_EXPR:
2916 if (! has_scc)
2918 op0 = gen_label_rtx ();
2919 jumpifnot (retval_rhs, op0);
2920 expand_value_return (const1_rtx);
2921 emit_label (op0);
2922 expand_value_return (const0_rtx);
2923 return;
2925 break;
2927 default:
2928 break;
2931 #endif /* HAVE_return */
2933 /* If the result is an aggregate that is being returned in one (or more)
2934 registers, load the registers here. The compiler currently can't handle
2935 copying a BLKmode value into registers. We could put this code in a
2936 more general area (for use by everyone instead of just function
2937 call/return), but until this feature is generally usable it is kept here
2938 (and in expand_call). The value must go into a pseudo in case there
2939 are cleanups that will clobber the real return register. */
2941 if (retval_rhs != 0
2942 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
2943 && GET_CODE (result_rtl) == REG)
2945 int i, bitpos, xbitpos;
2946 int big_endian_correction = 0;
2947 int bytes = int_size_in_bytes (TREE_TYPE (retval_rhs));
2948 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
2949 int bitsize = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)),
2950 (unsigned int)BITS_PER_WORD);
2951 rtx *result_pseudos = (rtx *) alloca (sizeof (rtx) * n_regs);
2952 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
2953 rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
2954 enum machine_mode tmpmode, result_reg_mode;
2956 /* Structures whose size is not a multiple of a word are aligned
2957 to the least significant byte (to the right). On a BYTES_BIG_ENDIAN
2958 machine, this means we must skip the empty high order bytes when
2959 calculating the bit offset. */
2960 if (BYTES_BIG_ENDIAN && bytes % UNITS_PER_WORD)
2961 big_endian_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
2962 * BITS_PER_UNIT));
2964 /* Copy the structure BITSIZE bits at a time. */
2965 for (bitpos = 0, xbitpos = big_endian_correction;
2966 bitpos < bytes * BITS_PER_UNIT;
2967 bitpos += bitsize, xbitpos += bitsize)
2969 /* We need a new destination pseudo each time xbitpos is
2970 on a word boundary and when xbitpos == big_endian_correction
2971 (the first time through). */
2972 if (xbitpos % BITS_PER_WORD == 0
2973 || xbitpos == big_endian_correction)
2975 /* Generate an appropriate register. */
2976 dst = gen_reg_rtx (word_mode);
2977 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
2979 /* Clobber the destination before we move anything into it. */
2980 emit_insn (gen_rtx_CLOBBER (VOIDmode, dst));
2983 /* We need a new source operand each time bitpos is on a word
2984 boundary. */
2985 if (bitpos % BITS_PER_WORD == 0)
2986 src = operand_subword_force (result_val,
2987 bitpos / BITS_PER_WORD,
2988 BLKmode);
2990 /* Use bitpos for the source extraction (left justified) and
2991 xbitpos for the destination store (right justified). */
2992 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
2993 extract_bit_field (src, bitsize,
2994 bitpos % BITS_PER_WORD, 1,
2995 NULL_RTX, word_mode,
2996 word_mode,
2997 bitsize / BITS_PER_UNIT,
2998 BITS_PER_WORD),
2999 bitsize / BITS_PER_UNIT, BITS_PER_WORD);
3002 /* Find the smallest integer mode large enough to hold the
3003 entire structure and use that mode instead of BLKmode
3004 on the USE insn for the return register. */
3005 bytes = int_size_in_bytes (TREE_TYPE (retval_rhs));
3006 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3007 tmpmode != VOIDmode;
3008 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
3010 /* Have we found a large enough mode? */
3011 if (GET_MODE_SIZE (tmpmode) >= bytes)
3012 break;
3015 /* No suitable mode found. */
3016 if (tmpmode == VOIDmode)
3017 abort ();
3019 PUT_MODE (result_rtl, tmpmode);
3021 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
3022 result_reg_mode = word_mode;
3023 else
3024 result_reg_mode = tmpmode;
3025 result_reg = gen_reg_rtx (result_reg_mode);
3027 emit_queue ();
3028 for (i = 0; i < n_regs; i++)
3029 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
3030 result_pseudos[i]);
3032 if (tmpmode != result_reg_mode)
3033 result_reg = gen_lowpart (tmpmode, result_reg);
3035 expand_value_return (result_reg);
3037 else if (cleanups
3038 && retval_rhs != 0
3039 && TREE_TYPE (retval_rhs) != void_type_node
3040 && (GET_CODE (result_rtl) == REG
3041 || (GET_CODE (result_rtl) == PARALLEL)))
3043 /* Calculate the return value into a temporary (usually a pseudo
3044 reg). */
3045 val = assign_temp (TREE_TYPE (DECL_RESULT (current_function_decl)),
3046 0, 0, 1);
3047 val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3048 val = force_not_mem (val);
3049 emit_queue ();
3050 /* Return the calculated value, doing cleanups first. */
3051 expand_value_return (val);
3053 else
3055 /* No cleanups or no hard reg used;
3056 calculate value into hard return reg. */
3057 expand_expr (retval, const0_rtx, VOIDmode, 0);
3058 emit_queue ();
3059 expand_value_return (result_rtl);
3063 /* Return 1 if the end of the generated RTX is not a barrier.
3064 This means code already compiled can drop through. */
3067 drop_through_at_end_p ()
3069 rtx insn = get_last_insn ();
3070 while (insn && GET_CODE (insn) == NOTE)
3071 insn = PREV_INSN (insn);
3072 return insn && GET_CODE (insn) != BARRIER;
3075 /* Test CALL_EXPR to determine if it is a potential tail recursion call
3076 and emit code to optimize the tail recursion. LAST_INSN indicates where
3077 to place the jump to the tail recursion label. Return TRUE if the
3078 call was optimized into a goto.
3080 This is only used by expand_return, but expand_call is expected to
3081 use it soon. */
3084 optimize_tail_recursion (call_expr, last_insn)
3085 tree call_expr;
3086 rtx last_insn;
3088 /* For tail-recursive call to current function,
3089 just jump back to the beginning.
3090 It's unsafe if any auto variable in this function
3091 has its address taken; for simplicity,
3092 require stack frame to be empty. */
3093 if (optimize && call_expr != 0
3094 && frame_offset == 0
3095 && TREE_CODE (call_expr) == CALL_EXPR
3096 && TREE_CODE (TREE_OPERAND (call_expr, 0)) == ADDR_EXPR
3097 && TREE_OPERAND (TREE_OPERAND (call_expr, 0), 0) == current_function_decl
3098 /* Finish checking validity, and if valid emit code
3099 to set the argument variables for the new call. */
3100 && tail_recursion_args (TREE_OPERAND (call_expr, 1),
3101 DECL_ARGUMENTS (current_function_decl)))
3103 if (tail_recursion_label == 0)
3105 tail_recursion_label = gen_label_rtx ();
3106 emit_label_after (tail_recursion_label,
3107 tail_recursion_reentry);
3109 emit_queue ();
3110 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3111 emit_barrier ();
3112 return 1;
3115 return 0;
3118 /* Emit code to alter this function's formal parms for a tail-recursive call.
3119 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3120 FORMALS is the chain of decls of formals.
3121 Return 1 if this can be done;
3122 otherwise return 0 and do not emit any code. */
3124 static int
3125 tail_recursion_args (actuals, formals)
3126 tree actuals, formals;
3128 register tree a = actuals, f = formals;
3129 register int i;
3130 register rtx *argvec;
3132 /* Check that number and types of actuals are compatible
3133 with the formals. This is not always true in valid C code.
3134 Also check that no formal needs to be addressable
3135 and that all formals are scalars. */
3137 /* Also count the args. */
3139 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3141 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3142 != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3143 return 0;
3144 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3145 return 0;
3147 if (a != 0 || f != 0)
3148 return 0;
3150 /* Compute all the actuals. */
3152 argvec = (rtx *) alloca (i * sizeof (rtx));
3154 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3155 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3157 /* Find which actual values refer to current values of previous formals.
3158 Copy each of them now, before any formal is changed. */
3160 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3162 int copy = 0;
3163 register int j;
3164 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3165 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3166 { copy = 1; break; }
3167 if (copy)
3168 argvec[i] = copy_to_reg (argvec[i]);
3171 /* Store the values of the actuals into the formals. */
3173 for (f = formals, a = actuals, i = 0; f;
3174 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3176 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3177 emit_move_insn (DECL_RTL (f), argvec[i]);
3178 else
3179 convert_move (DECL_RTL (f), argvec[i],
3180 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
3183 free_temp_slots ();
3184 return 1;
3187 /* Generate the RTL code for entering a binding contour.
3188 The variables are declared one by one, by calls to `expand_decl'.
3190 FLAGS is a bitwise or of the following flags:
3192 1 - Nonzero if this construct should be visible to
3193 `exit_something'.
3195 2 - Nonzero if this contour does not require a
3196 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3197 language-independent code should set this flag because they
3198 will not create corresponding BLOCK nodes. (There should be
3199 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3200 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3201 when expand_end_bindings is called. */
3203 void
3204 expand_start_bindings (flags)
3205 int flags;
3207 struct nesting *thisblock = ALLOC_NESTING ();
3208 rtx note;
3209 int exit_flag = ((flags & 1) != 0);
3210 int block_flag = ((flags & 2) == 0);
3212 note = emit_note (NULL_PTR,
3213 block_flag ? NOTE_INSN_BLOCK_BEG : NOTE_INSN_DELETED);
3215 /* Make an entry on block_stack for the block we are entering. */
3217 thisblock->next = block_stack;
3218 thisblock->all = nesting_stack;
3219 thisblock->depth = ++nesting_depth;
3220 thisblock->data.block.stack_level = 0;
3221 thisblock->data.block.cleanups = 0;
3222 thisblock->data.block.n_function_calls = 0;
3223 thisblock->data.block.exception_region = 0;
3224 thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3226 thisblock->data.block.conditional_code = 0;
3227 thisblock->data.block.last_unconditional_cleanup = note;
3228 /* When we insert instructions after the last unconditional cleanup,
3229 we don't adjust last_insn. That means that a later add_insn will
3230 clobber the instructions we've just added. The easiest way to
3231 fix this is to just insert another instruction here, so that the
3232 instructions inserted after the last unconditional cleanup are
3233 never the last instruction. */
3234 emit_note (NULL_PTR, NOTE_INSN_DELETED);
3235 thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
3237 if (block_stack
3238 && !(block_stack->data.block.cleanups == NULL_TREE
3239 && block_stack->data.block.outer_cleanups == NULL_TREE))
3240 thisblock->data.block.outer_cleanups
3241 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3242 block_stack->data.block.outer_cleanups);
3243 else
3244 thisblock->data.block.outer_cleanups = 0;
3245 thisblock->data.block.label_chain = 0;
3246 thisblock->data.block.innermost_stack_block = stack_block_stack;
3247 thisblock->data.block.first_insn = note;
3248 thisblock->data.block.block_start_count = ++current_block_start_count;
3249 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3250 block_stack = thisblock;
3251 nesting_stack = thisblock;
3253 /* Make a new level for allocating stack slots. */
3254 push_temp_slots ();
3257 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3258 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3259 expand_expr are made. After we end the region, we know that all
3260 space for all temporaries that were created by TARGET_EXPRs will be
3261 destroyed and their space freed for reuse. */
3263 void
3264 expand_start_target_temps ()
3266 /* This is so that even if the result is preserved, the space
3267 allocated will be freed, as we know that it is no longer in use. */
3268 push_temp_slots ();
3270 /* Start a new binding layer that will keep track of all cleanup
3271 actions to be performed. */
3272 expand_start_bindings (2);
3274 target_temp_slot_level = temp_slot_level;
3277 void
3278 expand_end_target_temps ()
3280 expand_end_bindings (NULL_TREE, 0, 0);
3282 /* This is so that even if the result is preserved, the space
3283 allocated will be freed, as we know that it is no longer in use. */
3284 pop_temp_slots ();
3287 /* Mark top block of block_stack as an implicit binding for an
3288 exception region. This is used to prevent infinite recursion when
3289 ending a binding with expand_end_bindings. It is only ever called
3290 by expand_eh_region_start, as that it the only way to create a
3291 block stack for a exception region. */
3293 void
3294 mark_block_as_eh_region ()
3296 block_stack->data.block.exception_region = 1;
3297 if (block_stack->next
3298 && block_stack->next->data.block.conditional_code)
3300 block_stack->data.block.conditional_code
3301 = block_stack->next->data.block.conditional_code;
3302 block_stack->data.block.last_unconditional_cleanup
3303 = block_stack->next->data.block.last_unconditional_cleanup;
3304 block_stack->data.block.cleanup_ptr
3305 = block_stack->next->data.block.cleanup_ptr;
3309 /* True if we are currently emitting insns in an area of output code
3310 that is controlled by a conditional expression. This is used by
3311 the cleanup handling code to generate conditional cleanup actions. */
3314 conditional_context ()
3316 return block_stack && block_stack->data.block.conditional_code;
3319 /* Mark top block of block_stack as not for an implicit binding for an
3320 exception region. This is only ever done by expand_eh_region_end
3321 to let expand_end_bindings know that it is being called explicitly
3322 to end the binding layer for just the binding layer associated with
3323 the exception region, otherwise expand_end_bindings would try and
3324 end all implicit binding layers for exceptions regions, and then
3325 one normal binding layer. */
3327 void
3328 mark_block_as_not_eh_region ()
3330 block_stack->data.block.exception_region = 0;
3333 /* True if the top block of block_stack was marked as for an exception
3334 region by mark_block_as_eh_region. */
3337 is_eh_region ()
3339 return (current_function && block_stack
3340 && block_stack->data.block.exception_region);
3343 /* Emit a handler label for a nonlocal goto handler.
3344 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3346 static rtx
3347 expand_nl_handler_label (slot, before_insn)
3348 rtx slot, before_insn;
3350 rtx insns;
3351 rtx handler_label = gen_label_rtx ();
3353 /* Don't let jump_optimize delete the handler. */
3354 LABEL_PRESERVE_P (handler_label) = 1;
3356 start_sequence ();
3357 emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3358 insns = get_insns ();
3359 end_sequence ();
3360 emit_insns_before (insns, before_insn);
3362 emit_label (handler_label);
3364 return handler_label;
3367 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3368 handler. */
3369 static void
3370 expand_nl_goto_receiver ()
3372 #ifdef HAVE_nonlocal_goto
3373 if (! HAVE_nonlocal_goto)
3374 #endif
3375 /* First adjust our frame pointer to its actual value. It was
3376 previously set to the start of the virtual area corresponding to
3377 the stacked variables when we branched here and now needs to be
3378 adjusted to the actual hardware fp value.
3380 Assignments are to virtual registers are converted by
3381 instantiate_virtual_regs into the corresponding assignment
3382 to the underlying register (fp in this case) that makes
3383 the original assignment true.
3384 So the following insn will actually be
3385 decrementing fp by STARTING_FRAME_OFFSET. */
3386 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3388 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3389 if (fixed_regs[ARG_POINTER_REGNUM])
3391 #ifdef ELIMINABLE_REGS
3392 /* If the argument pointer can be eliminated in favor of the
3393 frame pointer, we don't need to restore it. We assume here
3394 that if such an elimination is present, it can always be used.
3395 This is the case on all known machines; if we don't make this
3396 assumption, we do unnecessary saving on many machines. */
3397 static struct elims {int from, to;} elim_regs[] = ELIMINABLE_REGS;
3398 size_t i;
3400 for (i = 0; i < sizeof elim_regs / sizeof elim_regs[0]; i++)
3401 if (elim_regs[i].from == ARG_POINTER_REGNUM
3402 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3403 break;
3405 if (i == sizeof elim_regs / sizeof elim_regs [0])
3406 #endif
3408 /* Now restore our arg pointer from the address at which it
3409 was saved in our stack frame.
3410 If there hasn't be space allocated for it yet, make
3411 some now. */
3412 if (arg_pointer_save_area == 0)
3413 arg_pointer_save_area
3414 = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
3415 emit_move_insn (virtual_incoming_args_rtx,
3416 /* We need a pseudo here, or else
3417 instantiate_virtual_regs_1 complains. */
3418 copy_to_reg (arg_pointer_save_area));
3421 #endif
3423 #ifdef HAVE_nonlocal_goto_receiver
3424 if (HAVE_nonlocal_goto_receiver)
3425 emit_insn (gen_nonlocal_goto_receiver ());
3426 #endif
3429 /* Make handlers for nonlocal gotos taking place in the function calls in
3430 block THISBLOCK. */
3432 static void
3433 expand_nl_goto_receivers (thisblock)
3434 struct nesting *thisblock;
3436 tree link;
3437 rtx afterward = gen_label_rtx ();
3438 rtx insns, slot;
3439 rtx label_list;
3440 int any_invalid;
3442 /* Record the handler address in the stack slot for that purpose,
3443 during this block, saving and restoring the outer value. */
3444 if (thisblock->next != 0)
3445 for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3447 rtx save_receiver = gen_reg_rtx (Pmode);
3448 emit_move_insn (XEXP (slot, 0), save_receiver);
3450 start_sequence ();
3451 emit_move_insn (save_receiver, XEXP (slot, 0));
3452 insns = get_insns ();
3453 end_sequence ();
3454 emit_insns_before (insns, thisblock->data.block.first_insn);
3457 /* Jump around the handlers; they run only when specially invoked. */
3458 emit_jump (afterward);
3460 /* Make a separate handler for each label. */
3461 link = nonlocal_labels;
3462 slot = nonlocal_goto_handler_slots;
3463 label_list = NULL_RTX;
3464 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3465 /* Skip any labels we shouldn't be able to jump to from here,
3466 we generate one special handler for all of them below which just calls
3467 abort. */
3468 if (! DECL_TOO_LATE (TREE_VALUE (link)))
3470 rtx lab;
3471 lab = expand_nl_handler_label (XEXP (slot, 0),
3472 thisblock->data.block.first_insn);
3473 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3475 expand_nl_goto_receiver ();
3477 /* Jump to the "real" nonlocal label. */
3478 expand_goto (TREE_VALUE (link));
3481 /* A second pass over all nonlocal labels; this time we handle those
3482 we should not be able to jump to at this point. */
3483 link = nonlocal_labels;
3484 slot = nonlocal_goto_handler_slots;
3485 any_invalid = 0;
3486 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3487 if (DECL_TOO_LATE (TREE_VALUE (link)))
3489 rtx lab;
3490 lab = expand_nl_handler_label (XEXP (slot, 0),
3491 thisblock->data.block.first_insn);
3492 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3493 any_invalid = 1;
3496 if (any_invalid)
3498 expand_nl_goto_receiver ();
3499 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "abort"), 0,
3500 VOIDmode, 0);
3501 emit_barrier ();
3504 nonlocal_goto_handler_labels = label_list;
3505 emit_label (afterward);
3508 /* Warn about any unused VARS (which may contain nodes other than
3509 VAR_DECLs, but such nodes are ignored). The nodes are connected
3510 via the TREE_CHAIN field. */
3512 void
3513 warn_about_unused_variables (vars)
3514 tree vars;
3516 tree decl;
3518 if (warn_unused)
3519 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3520 if (TREE_CODE (decl) == VAR_DECL
3521 && ! TREE_USED (decl)
3522 && ! DECL_IN_SYSTEM_HEADER (decl)
3523 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3524 warning_with_decl (decl, "unused variable `%s'");
3527 /* Generate RTL code to terminate a binding contour.
3529 VARS is the chain of VAR_DECL nodes for the variables bound in this
3530 contour. There may actually be other nodes in this chain, but any
3531 nodes other than VAR_DECLS are ignored.
3533 MARK_ENDS is nonzero if we should put a note at the beginning
3534 and end of this binding contour.
3536 DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
3537 (That is true automatically if the contour has a saved stack level.) */
3539 void
3540 expand_end_bindings (vars, mark_ends, dont_jump_in)
3541 tree vars;
3542 int mark_ends;
3543 int dont_jump_in;
3545 register struct nesting *thisblock;
3546 register tree decl;
3548 while (block_stack->data.block.exception_region)
3550 /* Because we don't need or want a new temporary level and
3551 because we didn't create one in expand_eh_region_start,
3552 create a fake one now to avoid removing one in
3553 expand_end_bindings. */
3554 push_temp_slots ();
3556 block_stack->data.block.exception_region = 0;
3558 expand_end_bindings (NULL_TREE, 0, 0);
3561 /* Since expand_eh_region_start does an expand_start_bindings, we
3562 have to first end all the bindings that were created by
3563 expand_eh_region_start. */
3565 thisblock = block_stack;
3567 /* If any of the variables in this scope were not used, warn the
3568 user. */
3569 warn_about_unused_variables (vars);
3571 if (thisblock->exit_label)
3573 do_pending_stack_adjust ();
3574 emit_label (thisblock->exit_label);
3577 /* If necessary, make handlers for nonlocal gotos taking
3578 place in the function calls in this block. */
3579 if (function_call_count != thisblock->data.block.n_function_calls
3580 && nonlocal_labels
3581 /* Make handler for outermost block
3582 if there were any nonlocal gotos to this function. */
3583 && (thisblock->next == 0 ? current_function_has_nonlocal_label
3584 /* Make handler for inner block if it has something
3585 special to do when you jump out of it. */
3586 : (thisblock->data.block.cleanups != 0
3587 || thisblock->data.block.stack_level != 0)))
3588 expand_nl_goto_receivers (thisblock);
3590 /* Don't allow jumping into a block that has a stack level.
3591 Cleanups are allowed, though. */
3592 if (dont_jump_in
3593 || thisblock->data.block.stack_level != 0)
3595 struct label_chain *chain;
3597 /* Any labels in this block are no longer valid to go to.
3598 Mark them to cause an error message. */
3599 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3601 DECL_TOO_LATE (chain->label) = 1;
3602 /* If any goto without a fixup came to this label,
3603 that must be an error, because gotos without fixups
3604 come from outside all saved stack-levels. */
3605 if (TREE_ADDRESSABLE (chain->label))
3606 error_with_decl (chain->label,
3607 "label `%s' used before containing binding contour");
3611 /* Restore stack level in effect before the block
3612 (only if variable-size objects allocated). */
3613 /* Perform any cleanups associated with the block. */
3615 if (thisblock->data.block.stack_level != 0
3616 || thisblock->data.block.cleanups != 0)
3618 /* Only clean up here if this point can actually be reached. */
3619 int reachable = GET_CODE (get_last_insn ()) != BARRIER;
3621 /* Don't let cleanups affect ({...}) constructs. */
3622 int old_expr_stmts_for_value = expr_stmts_for_value;
3623 rtx old_last_expr_value = last_expr_value;
3624 tree old_last_expr_type = last_expr_type;
3625 expr_stmts_for_value = 0;
3627 /* Do the cleanups. */
3628 expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);
3629 if (reachable)
3630 do_pending_stack_adjust ();
3632 expr_stmts_for_value = old_expr_stmts_for_value;
3633 last_expr_value = old_last_expr_value;
3634 last_expr_type = old_last_expr_type;
3636 /* Restore the stack level. */
3638 if (reachable && thisblock->data.block.stack_level != 0)
3640 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3641 thisblock->data.block.stack_level, NULL_RTX);
3642 if (nonlocal_goto_handler_slots != 0)
3643 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3644 NULL_RTX);
3647 /* Any gotos out of this block must also do these things.
3648 Also report any gotos with fixups that came to labels in this
3649 level. */
3650 fixup_gotos (thisblock,
3651 thisblock->data.block.stack_level,
3652 thisblock->data.block.cleanups,
3653 thisblock->data.block.first_insn,
3654 dont_jump_in);
3657 /* Mark the beginning and end of the scope if requested.
3658 We do this now, after running cleanups on the variables
3659 just going out of scope, so they are in scope for their cleanups. */
3661 if (mark_ends)
3662 emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
3663 else
3664 /* Get rid of the beginning-mark if we don't make an end-mark. */
3665 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3667 /* If doing stupid register allocation, make sure lives of all
3668 register variables declared here extend thru end of scope. */
3670 if (obey_regdecls)
3671 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3672 if (TREE_CODE (decl) == VAR_DECL && DECL_RTL (decl))
3673 use_variable (DECL_RTL (decl));
3675 /* Restore the temporary level of TARGET_EXPRs. */
3676 target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3678 /* Restore block_stack level for containing block. */
3680 stack_block_stack = thisblock->data.block.innermost_stack_block;
3681 POPSTACK (block_stack);
3683 /* Pop the stack slot nesting and free any slots at this level. */
3684 pop_temp_slots ();
3687 /* Generate RTL for the automatic variable declaration DECL.
3688 (Other kinds of declarations are simply ignored if seen here.) */
3690 void
3691 expand_decl (decl)
3692 register tree decl;
3694 struct nesting *thisblock;
3695 tree type;
3697 type = TREE_TYPE (decl);
3699 /* Only automatic variables need any expansion done.
3700 Static and external variables, and external functions,
3701 will be handled by `assemble_variable' (called from finish_decl).
3702 TYPE_DECL and CONST_DECL require nothing.
3703 PARM_DECLs are handled in `assign_parms'. */
3705 if (TREE_CODE (decl) != VAR_DECL)
3706 return;
3707 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3708 return;
3710 thisblock = block_stack;
3712 /* Create the RTL representation for the variable. */
3714 if (type == error_mark_node)
3715 DECL_RTL (decl) = gen_rtx_MEM (BLKmode, const0_rtx);
3716 else if (DECL_SIZE (decl) == 0)
3717 /* Variable with incomplete type. */
3719 if (DECL_INITIAL (decl) == 0)
3720 /* Error message was already done; now avoid a crash. */
3721 DECL_RTL (decl) = assign_stack_temp (DECL_MODE (decl), 0, 1);
3722 else
3723 /* An initializer is going to decide the size of this array.
3724 Until we know the size, represent its address with a reg. */
3725 DECL_RTL (decl) = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
3726 MEM_SET_IN_STRUCT_P (DECL_RTL (decl), AGGREGATE_TYPE_P (type));
3728 else if (DECL_MODE (decl) != BLKmode
3729 /* If -ffloat-store, don't put explicit float vars
3730 into regs. */
3731 && !(flag_float_store
3732 && TREE_CODE (type) == REAL_TYPE)
3733 && ! TREE_THIS_VOLATILE (decl)
3734 && ! TREE_ADDRESSABLE (decl)
3735 && (DECL_REGISTER (decl) || ! obey_regdecls)
3736 /* if -fcheck-memory-usage, check all variables. */
3737 && ! current_function_check_memory_usage)
3739 /* Automatic variable that can go in a register. */
3740 int unsignedp = TREE_UNSIGNED (type);
3741 enum machine_mode reg_mode
3742 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3744 DECL_RTL (decl) = gen_reg_rtx (reg_mode);
3745 mark_user_reg (DECL_RTL (decl));
3747 if (POINTER_TYPE_P (type))
3748 mark_reg_pointer (DECL_RTL (decl),
3749 (TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl)))
3750 / BITS_PER_UNIT));
3753 else if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST
3754 && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3755 && (TREE_INT_CST_HIGH (DECL_SIZE (decl)) != 0
3756 || (TREE_INT_CST_LOW (DECL_SIZE (decl))
3757 > STACK_CHECK_MAX_VAR_SIZE * BITS_PER_UNIT))))
3759 /* Variable of fixed size that goes on the stack. */
3760 rtx oldaddr = 0;
3761 rtx addr;
3763 /* If we previously made RTL for this decl, it must be an array
3764 whose size was determined by the initializer.
3765 The old address was a register; set that register now
3766 to the proper address. */
3767 if (DECL_RTL (decl) != 0)
3769 if (GET_CODE (DECL_RTL (decl)) != MEM
3770 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3771 abort ();
3772 oldaddr = XEXP (DECL_RTL (decl), 0);
3775 DECL_RTL (decl) = assign_temp (TREE_TYPE (decl), 1, 1, 1);
3776 MEM_SET_IN_STRUCT_P (DECL_RTL (decl),
3777 AGGREGATE_TYPE_P (TREE_TYPE (decl)));
3779 /* Set alignment we actually gave this decl. */
3780 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3781 : GET_MODE_BITSIZE (DECL_MODE (decl)));
3783 if (oldaddr)
3785 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3786 if (addr != oldaddr)
3787 emit_move_insn (oldaddr, addr);
3790 /* If this is a memory ref that contains aggregate components,
3791 mark it as such for cse and loop optimize. */
3792 MEM_SET_IN_STRUCT_P (DECL_RTL (decl),
3793 AGGREGATE_TYPE_P (TREE_TYPE (decl)));
3794 #if 0
3795 /* If this is in memory because of -ffloat-store,
3796 set the volatile bit, to prevent optimizations from
3797 undoing the effects. */
3798 if (flag_float_store && TREE_CODE (type) == REAL_TYPE)
3799 MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
3800 #endif
3802 MEM_ALIAS_SET (DECL_RTL (decl)) = get_alias_set (decl);
3804 else
3805 /* Dynamic-size object: must push space on the stack. */
3807 rtx address, size;
3809 /* Record the stack pointer on entry to block, if have
3810 not already done so. */
3811 if (thisblock->data.block.stack_level == 0)
3813 do_pending_stack_adjust ();
3814 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3815 &thisblock->data.block.stack_level,
3816 thisblock->data.block.first_insn);
3817 stack_block_stack = thisblock;
3820 /* Compute the variable's size, in bytes. */
3821 size = expand_expr (size_binop (CEIL_DIV_EXPR,
3822 DECL_SIZE (decl),
3823 size_int (BITS_PER_UNIT)),
3824 NULL_RTX, VOIDmode, 0);
3825 free_temp_slots ();
3827 /* Allocate space on the stack for the variable. Note that
3828 DECL_ALIGN says how the variable is to be aligned and we
3829 cannot use it to conclude anything about the alignment of
3830 the size. */
3831 address = allocate_dynamic_stack_space (size, NULL_RTX,
3832 TYPE_ALIGN (TREE_TYPE (decl)));
3834 /* Reference the variable indirect through that rtx. */
3835 DECL_RTL (decl) = gen_rtx_MEM (DECL_MODE (decl), address);
3837 /* If this is a memory ref that contains aggregate components,
3838 mark it as such for cse and loop optimize. */
3839 MEM_SET_IN_STRUCT_P (DECL_RTL (decl),
3840 AGGREGATE_TYPE_P (TREE_TYPE (decl)));
3842 /* Indicate the alignment we actually gave this variable. */
3843 #ifdef STACK_BOUNDARY
3844 DECL_ALIGN (decl) = STACK_BOUNDARY;
3845 #else
3846 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
3847 #endif
3850 if (TREE_THIS_VOLATILE (decl))
3851 MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
3852 #if 0 /* A variable is not necessarily unchanging
3853 just because it is const. RTX_UNCHANGING_P
3854 means no change in the function,
3855 not merely no change in the variable's scope.
3856 It is correct to set RTX_UNCHANGING_P if the variable's scope
3857 is the whole function. There's no convenient way to test that. */
3858 if (TREE_READONLY (decl))
3859 RTX_UNCHANGING_P (DECL_RTL (decl)) = 1;
3860 #endif
3862 /* If doing stupid register allocation, make sure life of any
3863 register variable starts here, at the start of its scope. */
3865 if (obey_regdecls)
3866 use_variable (DECL_RTL (decl));
3871 /* Emit code to perform the initialization of a declaration DECL. */
3873 void
3874 expand_decl_init (decl)
3875 tree decl;
3877 int was_used = TREE_USED (decl);
3879 /* If this is a CONST_DECL, we don't have to generate any code, but
3880 if DECL_INITIAL is a constant, call expand_expr to force TREE_CST_RTL
3881 to be set while in the obstack containing the constant. If we don't
3882 do this, we can lose if we have functions nested three deep and the middle
3883 function makes a CONST_DECL whose DECL_INITIAL is a STRING_CST while
3884 the innermost function is the first to expand that STRING_CST. */
3885 if (TREE_CODE (decl) == CONST_DECL)
3887 if (DECL_INITIAL (decl) && TREE_CONSTANT (DECL_INITIAL (decl)))
3888 expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
3889 EXPAND_INITIALIZER);
3890 return;
3893 if (TREE_STATIC (decl))
3894 return;
3896 /* Compute and store the initial value now. */
3898 if (DECL_INITIAL (decl) == error_mark_node)
3900 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3902 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3903 || code == POINTER_TYPE || code == REFERENCE_TYPE)
3904 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
3905 0, 0);
3906 emit_queue ();
3908 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
3910 emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3911 expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
3912 emit_queue ();
3915 /* Don't let the initialization count as "using" the variable. */
3916 TREE_USED (decl) = was_used;
3918 /* Free any temporaries we made while initializing the decl. */
3919 preserve_temp_slots (NULL_RTX);
3920 free_temp_slots ();
3923 /* CLEANUP is an expression to be executed at exit from this binding contour;
3924 for example, in C++, it might call the destructor for this variable.
3926 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
3927 CLEANUP multiple times, and have the correct semantics. This
3928 happens in exception handling, for gotos, returns, breaks that
3929 leave the current scope.
3931 If CLEANUP is nonzero and DECL is zero, we record a cleanup
3932 that is not associated with any particular variable. */
3935 expand_decl_cleanup (decl, cleanup)
3936 tree decl, cleanup;
3938 struct nesting *thisblock;
3940 /* Error if we are not in any block. */
3941 if (current_function == 0 || block_stack == 0)
3942 return 0;
3944 thisblock = block_stack;
3946 /* Record the cleanup if there is one. */
3948 if (cleanup != 0)
3950 tree t;
3951 rtx seq;
3952 tree *cleanups = &thisblock->data.block.cleanups;
3953 int cond_context = conditional_context ();
3955 if (cond_context)
3957 rtx flag = gen_reg_rtx (word_mode);
3958 rtx set_flag_0;
3959 tree cond;
3961 start_sequence ();
3962 emit_move_insn (flag, const0_rtx);
3963 set_flag_0 = get_insns ();
3964 end_sequence ();
3966 thisblock->data.block.last_unconditional_cleanup
3967 = emit_insns_after (set_flag_0,
3968 thisblock->data.block.last_unconditional_cleanup);
3970 emit_move_insn (flag, const1_rtx);
3972 /* All cleanups must be on the function_obstack. */
3973 push_obstacks_nochange ();
3974 resume_temporary_allocation ();
3976 cond = build_decl (VAR_DECL, NULL_TREE, type_for_mode (word_mode, 1));
3977 DECL_RTL (cond) = flag;
3979 /* Conditionalize the cleanup. */
3980 cleanup = build (COND_EXPR, void_type_node,
3981 truthvalue_conversion (cond),
3982 cleanup, integer_zero_node);
3983 cleanup = fold (cleanup);
3985 pop_obstacks ();
3987 cleanups = thisblock->data.block.cleanup_ptr;
3990 /* All cleanups must be on the function_obstack. */
3991 push_obstacks_nochange ();
3992 resume_temporary_allocation ();
3993 cleanup = unsave_expr (cleanup);
3994 pop_obstacks ();
3996 t = *cleanups = temp_tree_cons (decl, cleanup, *cleanups);
3998 if (! cond_context)
3999 /* If this block has a cleanup, it belongs in stack_block_stack. */
4000 stack_block_stack = thisblock;
4002 if (cond_context)
4004 start_sequence ();
4007 /* If this was optimized so that there is no exception region for the
4008 cleanup, then mark the TREE_LIST node, so that we can later tell
4009 if we need to call expand_eh_region_end. */
4010 if (! using_eh_for_cleanups_p
4011 || expand_eh_region_start_tree (decl, cleanup))
4012 TREE_ADDRESSABLE (t) = 1;
4013 /* If that started a new EH region, we're in a new block. */
4014 thisblock = block_stack;
4016 if (cond_context)
4018 seq = get_insns ();
4019 end_sequence ();
4020 if (seq)
4021 thisblock->data.block.last_unconditional_cleanup
4022 = emit_insns_after (seq,
4023 thisblock->data.block.last_unconditional_cleanup);
4025 else
4027 thisblock->data.block.last_unconditional_cleanup
4028 = get_last_insn ();
4029 thisblock->data.block.cleanup_ptr = &thisblock->data.block.cleanups;
4032 return 1;
4035 /* Like expand_decl_cleanup, but suppress generating an exception handler
4036 to perform the cleanup. */
4038 #if 0
4040 expand_decl_cleanup_no_eh (decl, cleanup)
4041 tree decl, cleanup;
4043 int save_eh = using_eh_for_cleanups_p;
4044 int result;
4046 using_eh_for_cleanups_p = 0;
4047 result = expand_decl_cleanup (decl, cleanup);
4048 using_eh_for_cleanups_p = save_eh;
4050 return result;
4052 #endif
4054 /* Arrange for the top element of the dynamic cleanup chain to be
4055 popped if we exit the current binding contour. DECL is the
4056 associated declaration, if any, otherwise NULL_TREE. If the
4057 current contour is left via an exception, then __sjthrow will pop
4058 the top element off the dynamic cleanup chain. The code that
4059 avoids doing the action we push into the cleanup chain in the
4060 exceptional case is contained in expand_cleanups.
4062 This routine is only used by expand_eh_region_start, and that is
4063 the only way in which an exception region should be started. This
4064 routine is only used when using the setjmp/longjmp codegen method
4065 for exception handling. */
4068 expand_dcc_cleanup (decl)
4069 tree decl;
4071 struct nesting *thisblock;
4072 tree cleanup;
4074 /* Error if we are not in any block. */
4075 if (current_function == 0 || block_stack == 0)
4076 return 0;
4077 thisblock = block_stack;
4079 /* Record the cleanup for the dynamic handler chain. */
4081 /* All cleanups must be on the function_obstack. */
4082 push_obstacks_nochange ();
4083 resume_temporary_allocation ();
4084 cleanup = make_node (POPDCC_EXPR);
4085 pop_obstacks ();
4087 /* Add the cleanup in a manner similar to expand_decl_cleanup. */
4088 thisblock->data.block.cleanups
4089 = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4091 /* If this block has a cleanup, it belongs in stack_block_stack. */
4092 stack_block_stack = thisblock;
4093 return 1;
4096 /* Arrange for the top element of the dynamic handler chain to be
4097 popped if we exit the current binding contour. DECL is the
4098 associated declaration, if any, otherwise NULL_TREE. If the current
4099 contour is left via an exception, then __sjthrow will pop the top
4100 element off the dynamic handler chain. The code that avoids doing
4101 the action we push into the handler chain in the exceptional case
4102 is contained in expand_cleanups.
4104 This routine is only used by expand_eh_region_start, and that is
4105 the only way in which an exception region should be started. This
4106 routine is only used when using the setjmp/longjmp codegen method
4107 for exception handling. */
4110 expand_dhc_cleanup (decl)
4111 tree decl;
4113 struct nesting *thisblock;
4114 tree cleanup;
4116 /* Error if we are not in any block. */
4117 if (current_function == 0 || block_stack == 0)
4118 return 0;
4119 thisblock = block_stack;
4121 /* Record the cleanup for the dynamic handler chain. */
4123 /* All cleanups must be on the function_obstack. */
4124 push_obstacks_nochange ();
4125 resume_temporary_allocation ();
4126 cleanup = make_node (POPDHC_EXPR);
4127 pop_obstacks ();
4129 /* Add the cleanup in a manner similar to expand_decl_cleanup. */
4130 thisblock->data.block.cleanups
4131 = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
4133 /* If this block has a cleanup, it belongs in stack_block_stack. */
4134 stack_block_stack = thisblock;
4135 return 1;
4138 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4139 DECL_ELTS is the list of elements that belong to DECL's type.
4140 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4142 void
4143 expand_anon_union_decl (decl, cleanup, decl_elts)
4144 tree decl, cleanup, decl_elts;
4146 struct nesting *thisblock = current_function == 0 ? 0 : block_stack;
4147 rtx x;
4148 tree t;
4150 /* If any of the elements are addressable, so is the entire union. */
4151 for (t = decl_elts; t; t = TREE_CHAIN (t))
4152 if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4154 TREE_ADDRESSABLE (decl) = 1;
4155 break;
4158 expand_decl (decl);
4159 expand_decl_cleanup (decl, cleanup);
4160 x = DECL_RTL (decl);
4162 /* Go through the elements, assigning RTL to each. */
4163 for (t = decl_elts; t; t = TREE_CHAIN (t))
4165 tree decl_elt = TREE_VALUE (t);
4166 tree cleanup_elt = TREE_PURPOSE (t);
4167 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4169 /* Propagate the union's alignment to the elements. */
4170 DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4172 /* If the element has BLKmode and the union doesn't, the union is
4173 aligned such that the element doesn't need to have BLKmode, so
4174 change the element's mode to the appropriate one for its size. */
4175 if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4176 DECL_MODE (decl_elt) = mode
4177 = mode_for_size (TREE_INT_CST_LOW (DECL_SIZE (decl_elt)),
4178 MODE_INT, 1);
4180 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4181 instead create a new MEM rtx with the proper mode. */
4182 if (GET_CODE (x) == MEM)
4184 if (mode == GET_MODE (x))
4185 DECL_RTL (decl_elt) = x;
4186 else
4188 DECL_RTL (decl_elt) = gen_rtx_MEM (mode, copy_rtx (XEXP (x, 0)));
4189 MEM_COPY_ATTRIBUTES (DECL_RTL (decl_elt), x);
4190 RTX_UNCHANGING_P (DECL_RTL (decl_elt)) = RTX_UNCHANGING_P (x);
4193 else if (GET_CODE (x) == REG)
4195 if (mode == GET_MODE (x))
4196 DECL_RTL (decl_elt) = x;
4197 else
4198 DECL_RTL (decl_elt) = gen_rtx_SUBREG (mode, x, 0);
4200 else
4201 abort ();
4203 /* Record the cleanup if there is one. */
4205 if (cleanup != 0)
4206 thisblock->data.block.cleanups
4207 = temp_tree_cons (decl_elt, cleanup_elt,
4208 thisblock->data.block.cleanups);
4212 /* Expand a list of cleanups LIST.
4213 Elements may be expressions or may be nested lists.
4215 If DONT_DO is nonnull, then any list-element
4216 whose TREE_PURPOSE matches DONT_DO is omitted.
4217 This is sometimes used to avoid a cleanup associated with
4218 a value that is being returned out of the scope.
4220 If IN_FIXUP is non-zero, we are generating this cleanup for a fixup
4221 goto and handle protection regions specially in that case.
4223 If REACHABLE, we emit code, otherwise just inform the exception handling
4224 code about this finalization. */
4226 static void
4227 expand_cleanups (list, dont_do, in_fixup, reachable)
4228 tree list;
4229 tree dont_do;
4230 int in_fixup;
4231 int reachable;
4233 tree tail;
4234 for (tail = list; tail; tail = TREE_CHAIN (tail))
4235 if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4237 if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4238 expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4239 else
4241 if (! in_fixup)
4243 tree cleanup = TREE_VALUE (tail);
4245 /* See expand_d{h,c}c_cleanup for why we avoid this. */
4246 if (TREE_CODE (cleanup) != POPDHC_EXPR
4247 && TREE_CODE (cleanup) != POPDCC_EXPR
4248 /* See expand_eh_region_start_tree for this case. */
4249 && ! TREE_ADDRESSABLE (tail))
4251 cleanup = protect_with_terminate (cleanup);
4252 expand_eh_region_end (cleanup);
4256 if (reachable)
4258 /* Cleanups may be run multiple times. For example,
4259 when exiting a binding contour, we expand the
4260 cleanups associated with that contour. When a goto
4261 within that binding contour has a target outside that
4262 contour, it will expand all cleanups from its scope to
4263 the target. Though the cleanups are expanded multiple
4264 times, the control paths are non-overlapping so the
4265 cleanups will not be executed twice. */
4267 /* We may need to protect fixups with rethrow regions. */
4268 int protect = (in_fixup && ! TREE_ADDRESSABLE (tail));
4270 if (protect)
4271 expand_fixup_region_start ();
4273 /* The cleanup might contain try-blocks, so we have to
4274 preserve our current queue. */
4275 push_ehqueue ();
4276 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4277 pop_ehqueue ();
4278 if (protect)
4279 expand_fixup_region_end (TREE_VALUE (tail));
4280 free_temp_slots ();
4286 /* Mark when the context we are emitting RTL for as a conditional
4287 context, so that any cleanup actions we register with
4288 expand_decl_init will be properly conditionalized when those
4289 cleanup actions are later performed. Must be called before any
4290 expression (tree) is expanded that is within a conditional context. */
4292 void
4293 start_cleanup_deferral ()
4295 /* block_stack can be NULL if we are inside the parameter list. It is
4296 OK to do nothing, because cleanups aren't possible here. */
4297 if (block_stack)
4298 ++block_stack->data.block.conditional_code;
4301 /* Mark the end of a conditional region of code. Because cleanup
4302 deferrals may be nested, we may still be in a conditional region
4303 after we end the currently deferred cleanups, only after we end all
4304 deferred cleanups, are we back in unconditional code. */
4306 void
4307 end_cleanup_deferral ()
4309 /* block_stack can be NULL if we are inside the parameter list. It is
4310 OK to do nothing, because cleanups aren't possible here. */
4311 if (block_stack)
4312 --block_stack->data.block.conditional_code;
4315 /* Move all cleanups from the current block_stack
4316 to the containing block_stack, where they are assumed to
4317 have been created. If anything can cause a temporary to
4318 be created, but not expanded for more than one level of
4319 block_stacks, then this code will have to change. */
4321 void
4322 move_cleanups_up ()
4324 struct nesting *block = block_stack;
4325 struct nesting *outer = block->next;
4327 outer->data.block.cleanups
4328 = chainon (block->data.block.cleanups,
4329 outer->data.block.cleanups);
4330 block->data.block.cleanups = 0;
4333 tree
4334 last_cleanup_this_contour ()
4336 if (block_stack == 0)
4337 return 0;
4339 return block_stack->data.block.cleanups;
4342 /* Return 1 if there are any pending cleanups at this point.
4343 If THIS_CONTOUR is nonzero, check the current contour as well.
4344 Otherwise, look only at the contours that enclose this one. */
4347 any_pending_cleanups (this_contour)
4348 int this_contour;
4350 struct nesting *block;
4352 if (current_function == NULL || current_function->stmt == NULL
4353 || block_stack == 0)
4354 return 0;
4356 if (this_contour && block_stack->data.block.cleanups != NULL)
4357 return 1;
4358 if (block_stack->data.block.cleanups == 0
4359 && block_stack->data.block.outer_cleanups == 0)
4360 return 0;
4362 for (block = block_stack->next; block; block = block->next)
4363 if (block->data.block.cleanups != 0)
4364 return 1;
4366 return 0;
4369 /* Enter a case (Pascal) or switch (C) statement.
4370 Push a block onto case_stack and nesting_stack
4371 to accumulate the case-labels that are seen
4372 and to record the labels generated for the statement.
4374 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4375 Otherwise, this construct is transparent for `exit_something'.
4377 EXPR is the index-expression to be dispatched on.
4378 TYPE is its nominal type. We could simply convert EXPR to this type,
4379 but instead we take short cuts. */
4381 void
4382 expand_start_case (exit_flag, expr, type, printname)
4383 int exit_flag;
4384 tree expr;
4385 tree type;
4386 const char *printname;
4388 register struct nesting *thiscase = ALLOC_NESTING ();
4390 /* Make an entry on case_stack for the case we are entering. */
4392 thiscase->next = case_stack;
4393 thiscase->all = nesting_stack;
4394 thiscase->depth = ++nesting_depth;
4395 thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4396 thiscase->data.case_stmt.case_list = 0;
4397 thiscase->data.case_stmt.index_expr = expr;
4398 thiscase->data.case_stmt.nominal_type = type;
4399 thiscase->data.case_stmt.default_label = 0;
4400 thiscase->data.case_stmt.num_ranges = 0;
4401 thiscase->data.case_stmt.printname = printname;
4402 thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4403 case_stack = thiscase;
4404 nesting_stack = thiscase;
4406 do_pending_stack_adjust ();
4408 /* Make sure case_stmt.start points to something that won't
4409 need any transformation before expand_end_case. */
4410 if (GET_CODE (get_last_insn ()) != NOTE)
4411 emit_note (NULL_PTR, NOTE_INSN_DELETED);
4413 thiscase->data.case_stmt.start = get_last_insn ();
4415 start_cleanup_deferral ();
4419 /* Start a "dummy case statement" within which case labels are invalid
4420 and are not connected to any larger real case statement.
4421 This can be used if you don't want to let a case statement jump
4422 into the middle of certain kinds of constructs. */
4424 void
4425 expand_start_case_dummy ()
4427 register struct nesting *thiscase = ALLOC_NESTING ();
4429 /* Make an entry on case_stack for the dummy. */
4431 thiscase->next = case_stack;
4432 thiscase->all = nesting_stack;
4433 thiscase->depth = ++nesting_depth;
4434 thiscase->exit_label = 0;
4435 thiscase->data.case_stmt.case_list = 0;
4436 thiscase->data.case_stmt.start = 0;
4437 thiscase->data.case_stmt.nominal_type = 0;
4438 thiscase->data.case_stmt.default_label = 0;
4439 thiscase->data.case_stmt.num_ranges = 0;
4440 case_stack = thiscase;
4441 nesting_stack = thiscase;
4442 start_cleanup_deferral ();
4445 /* End a dummy case statement. */
4447 void
4448 expand_end_case_dummy ()
4450 end_cleanup_deferral ();
4451 POPSTACK (case_stack);
4454 /* Return the data type of the index-expression
4455 of the innermost case statement, or null if none. */
4457 tree
4458 case_index_expr_type ()
4460 if (case_stack)
4461 return TREE_TYPE (case_stack->data.case_stmt.index_expr);
4462 return 0;
4465 static void
4466 check_seenlabel ()
4468 /* If this is the first label, warn if any insns have been emitted. */
4469 if (case_stack->data.case_stmt.line_number_status >= 0)
4471 rtx insn;
4473 restore_line_number_status
4474 (case_stack->data.case_stmt.line_number_status);
4475 case_stack->data.case_stmt.line_number_status = -1;
4477 for (insn = case_stack->data.case_stmt.start;
4478 insn;
4479 insn = NEXT_INSN (insn))
4481 if (GET_CODE (insn) == CODE_LABEL)
4482 break;
4483 if (GET_CODE (insn) != NOTE
4484 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4487 insn = PREV_INSN (insn);
4488 while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4490 /* If insn is zero, then there must have been a syntax error. */
4491 if (insn)
4492 warning_with_file_and_line (NOTE_SOURCE_FILE(insn),
4493 NOTE_LINE_NUMBER(insn),
4494 "unreachable code at beginning of %s",
4495 case_stack->data.case_stmt.printname);
4496 break;
4502 /* Accumulate one case or default label inside a case or switch statement.
4503 VALUE is the value of the case (a null pointer, for a default label).
4504 The function CONVERTER, when applied to arguments T and V,
4505 converts the value V to the type T.
4507 If not currently inside a case or switch statement, return 1 and do
4508 nothing. The caller will print a language-specific error message.
4509 If VALUE is a duplicate or overlaps, return 2 and do nothing
4510 except store the (first) duplicate node in *DUPLICATE.
4511 If VALUE is out of range, return 3 and do nothing.
4512 If we are jumping into the scope of a cleanup or var-sized array, return 5.
4513 Return 0 on success.
4515 Extended to handle range statements. */
4518 pushcase (value, converter, label, duplicate)
4519 register tree value;
4520 tree (*converter) PROTO((tree, tree));
4521 register tree label;
4522 tree *duplicate;
4524 tree index_type;
4525 tree nominal_type;
4527 /* Fail if not inside a real case statement. */
4528 if (! (case_stack && case_stack->data.case_stmt.start))
4529 return 1;
4531 if (stack_block_stack
4532 && stack_block_stack->depth > case_stack->depth)
4533 return 5;
4535 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4536 nominal_type = case_stack->data.case_stmt.nominal_type;
4538 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4539 if (index_type == error_mark_node)
4540 return 0;
4542 /* Convert VALUE to the type in which the comparisons are nominally done. */
4543 if (value != 0)
4544 value = (*converter) (nominal_type, value);
4546 check_seenlabel ();
4548 /* Fail if this value is out of range for the actual type of the index
4549 (which may be narrower than NOMINAL_TYPE). */
4550 if (value != 0
4551 && (TREE_CONSTANT_OVERFLOW (value)
4552 || ! int_fits_type_p (value, index_type)))
4553 return 3;
4555 /* Fail if this is a duplicate or overlaps another entry. */
4556 if (value == 0)
4558 if (case_stack->data.case_stmt.default_label != 0)
4560 *duplicate = case_stack->data.case_stmt.default_label;
4561 return 2;
4563 case_stack->data.case_stmt.default_label = label;
4565 else
4566 return add_case_node (value, value, label, duplicate);
4568 expand_label (label);
4569 return 0;
4572 /* Like pushcase but this case applies to all values between VALUE1 and
4573 VALUE2 (inclusive). If VALUE1 is NULL, the range starts at the lowest
4574 value of the index type and ends at VALUE2. If VALUE2 is NULL, the range
4575 starts at VALUE1 and ends at the highest value of the index type.
4576 If both are NULL, this case applies to all values.
4578 The return value is the same as that of pushcase but there is one
4579 additional error code: 4 means the specified range was empty. */
4582 pushcase_range (value1, value2, converter, label, duplicate)
4583 register tree value1, value2;
4584 tree (*converter) PROTO((tree, tree));
4585 register tree label;
4586 tree *duplicate;
4588 tree index_type;
4589 tree nominal_type;
4591 /* Fail if not inside a real case statement. */
4592 if (! (case_stack && case_stack->data.case_stmt.start))
4593 return 1;
4595 if (stack_block_stack
4596 && stack_block_stack->depth > case_stack->depth)
4597 return 5;
4599 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4600 nominal_type = case_stack->data.case_stmt.nominal_type;
4602 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4603 if (index_type == error_mark_node)
4604 return 0;
4606 check_seenlabel ();
4608 /* Convert VALUEs to type in which the comparisons are nominally done
4609 and replace any unspecified value with the corresponding bound. */
4610 if (value1 == 0)
4611 value1 = TYPE_MIN_VALUE (index_type);
4612 if (value2 == 0)
4613 value2 = TYPE_MAX_VALUE (index_type);
4615 /* Fail if the range is empty. Do this before any conversion since
4616 we want to allow out-of-range empty ranges. */
4617 if (value2 != 0 && tree_int_cst_lt (value2, value1))
4618 return 4;
4620 /* If the max was unbounded, use the max of the nominal_type we are
4621 converting to. Do this after the < check above to suppress false
4622 positives. */
4623 if (value2 == 0)
4624 value2 = TYPE_MAX_VALUE (nominal_type);
4626 value1 = (*converter) (nominal_type, value1);
4627 value2 = (*converter) (nominal_type, value2);
4629 /* Fail if these values are out of range. */
4630 if (TREE_CONSTANT_OVERFLOW (value1)
4631 || ! int_fits_type_p (value1, index_type))
4632 return 3;
4634 if (TREE_CONSTANT_OVERFLOW (value2)
4635 || ! int_fits_type_p (value2, index_type))
4636 return 3;
4638 return add_case_node (value1, value2, label, duplicate);
4641 /* Do the actual insertion of a case label for pushcase and pushcase_range
4642 into case_stack->data.case_stmt.case_list. Use an AVL tree to avoid
4643 slowdown for large switch statements. */
4645 static int
4646 add_case_node (low, high, label, duplicate)
4647 tree low, high;
4648 tree label;
4649 tree *duplicate;
4651 struct case_node *p, **q, *r;
4653 q = &case_stack->data.case_stmt.case_list;
4654 p = *q;
4656 while ((r = *q))
4658 p = r;
4660 /* Keep going past elements distinctly greater than HIGH. */
4661 if (tree_int_cst_lt (high, p->low))
4662 q = &p->left;
4664 /* or distinctly less than LOW. */
4665 else if (tree_int_cst_lt (p->high, low))
4666 q = &p->right;
4668 else
4670 /* We have an overlap; this is an error. */
4671 *duplicate = p->code_label;
4672 return 2;
4676 /* Add this label to the chain, and succeed.
4677 Copy LOW, HIGH so they are on temporary rather than momentary
4678 obstack and will thus survive till the end of the case statement. */
4680 r = (struct case_node *) oballoc (sizeof (struct case_node));
4681 r->low = copy_node (low);
4683 /* If the bounds are equal, turn this into the one-value case. */
4685 if (tree_int_cst_equal (low, high))
4686 r->high = r->low;
4687 else
4689 r->high = copy_node (high);
4690 case_stack->data.case_stmt.num_ranges++;
4693 r->code_label = label;
4694 expand_label (label);
4696 *q = r;
4697 r->parent = p;
4698 r->left = 0;
4699 r->right = 0;
4700 r->balance = 0;
4702 while (p)
4704 struct case_node *s;
4706 if (r == p->left)
4708 int b;
4710 if (! (b = p->balance))
4711 /* Growth propagation from left side. */
4712 p->balance = -1;
4713 else if (b < 0)
4715 if (r->balance < 0)
4717 /* R-Rotation */
4718 if ((p->left = s = r->right))
4719 s->parent = p;
4721 r->right = p;
4722 p->balance = 0;
4723 r->balance = 0;
4724 s = p->parent;
4725 p->parent = r;
4727 if ((r->parent = s))
4729 if (s->left == p)
4730 s->left = r;
4731 else
4732 s->right = r;
4734 else
4735 case_stack->data.case_stmt.case_list = r;
4737 else
4738 /* r->balance == +1 */
4740 /* LR-Rotation */
4742 int b2;
4743 struct case_node *t = r->right;
4745 if ((p->left = s = t->right))
4746 s->parent = p;
4748 t->right = p;
4749 if ((r->right = s = t->left))
4750 s->parent = r;
4752 t->left = r;
4753 b = t->balance;
4754 b2 = b < 0;
4755 p->balance = b2;
4756 b2 = -b2 - b;
4757 r->balance = b2;
4758 t->balance = 0;
4759 s = p->parent;
4760 p->parent = t;
4761 r->parent = t;
4763 if ((t->parent = s))
4765 if (s->left == p)
4766 s->left = t;
4767 else
4768 s->right = t;
4770 else
4771 case_stack->data.case_stmt.case_list = t;
4773 break;
4776 else
4778 /* p->balance == +1; growth of left side balances the node. */
4779 p->balance = 0;
4780 break;
4783 else
4784 /* r == p->right */
4786 int b;
4788 if (! (b = p->balance))
4789 /* Growth propagation from right side. */
4790 p->balance++;
4791 else if (b > 0)
4793 if (r->balance > 0)
4795 /* L-Rotation */
4797 if ((p->right = s = r->left))
4798 s->parent = p;
4800 r->left = p;
4801 p->balance = 0;
4802 r->balance = 0;
4803 s = p->parent;
4804 p->parent = r;
4805 if ((r->parent = s))
4807 if (s->left == p)
4808 s->left = r;
4809 else
4810 s->right = r;
4813 else
4814 case_stack->data.case_stmt.case_list = r;
4817 else
4818 /* r->balance == -1 */
4820 /* RL-Rotation */
4821 int b2;
4822 struct case_node *t = r->left;
4824 if ((p->right = s = t->left))
4825 s->parent = p;
4827 t->left = p;
4829 if ((r->left = s = t->right))
4830 s->parent = r;
4832 t->right = r;
4833 b = t->balance;
4834 b2 = b < 0;
4835 r->balance = b2;
4836 b2 = -b2 - b;
4837 p->balance = b2;
4838 t->balance = 0;
4839 s = p->parent;
4840 p->parent = t;
4841 r->parent = t;
4843 if ((t->parent = s))
4845 if (s->left == p)
4846 s->left = t;
4847 else
4848 s->right = t;
4851 else
4852 case_stack->data.case_stmt.case_list = t;
4854 break;
4856 else
4858 /* p->balance == -1; growth of right side balances the node. */
4859 p->balance = 0;
4860 break;
4864 r = p;
4865 p = p->parent;
4868 return 0;
4872 /* Returns the number of possible values of TYPE.
4873 Returns -1 if the number is unknown or variable.
4874 Returns -2 if the number does not fit in a HOST_WIDE_INT.
4875 Sets *SPARENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4876 do not increase monotonically (there may be duplicates);
4877 to 1 if the values increase monotonically, but not always by 1;
4878 otherwise sets it to 0. */
4880 HOST_WIDE_INT
4881 all_cases_count (type, spareness)
4882 tree type;
4883 int *spareness;
4885 HOST_WIDE_INT count;
4886 *spareness = 0;
4888 switch (TREE_CODE (type))
4890 tree t;
4891 case BOOLEAN_TYPE:
4892 count = 2;
4893 break;
4894 case CHAR_TYPE:
4895 count = 1 << BITS_PER_UNIT;
4896 break;
4897 default:
4898 case INTEGER_TYPE:
4899 if (TREE_CODE (TYPE_MIN_VALUE (type)) != INTEGER_CST
4900 || TYPE_MAX_VALUE (type) == NULL
4901 || TREE_CODE (TYPE_MAX_VALUE (type)) != INTEGER_CST)
4902 return -1;
4903 else
4905 /* count
4906 = TREE_INT_CST_LOW (TYPE_MAX_VALUE (type))
4907 - TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)) + 1
4908 but with overflow checking. */
4909 tree mint = TYPE_MIN_VALUE (type);
4910 tree maxt = TYPE_MAX_VALUE (type);
4911 HOST_WIDE_INT lo, hi;
4912 neg_double(TREE_INT_CST_LOW (mint), TREE_INT_CST_HIGH (mint),
4913 &lo, &hi);
4914 add_double(TREE_INT_CST_LOW (maxt), TREE_INT_CST_HIGH (maxt),
4915 lo, hi, &lo, &hi);
4916 add_double (lo, hi, 1, 0, &lo, &hi);
4917 if (hi != 0 || lo < 0)
4918 return -2;
4919 count = lo;
4921 break;
4922 case ENUMERAL_TYPE:
4923 count = 0;
4924 for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
4926 if (TREE_CODE (TYPE_MIN_VALUE (type)) != INTEGER_CST
4927 || TREE_CODE (TREE_VALUE (t)) != INTEGER_CST
4928 || TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)) + count
4929 != TREE_INT_CST_LOW (TREE_VALUE (t)))
4930 *spareness = 1;
4931 count++;
4933 if (*spareness == 1)
4935 tree prev = TREE_VALUE (TYPE_VALUES (type));
4936 for (t = TYPE_VALUES (type); t = TREE_CHAIN (t), t != NULL_TREE; )
4938 if (! tree_int_cst_lt (prev, TREE_VALUE (t)))
4940 *spareness = 2;
4941 break;
4943 prev = TREE_VALUE (t);
4948 return count;
4952 #define BITARRAY_TEST(ARRAY, INDEX) \
4953 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4954 & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4955 #define BITARRAY_SET(ARRAY, INDEX) \
4956 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4957 |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4959 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4960 with the case values we have seen, assuming the case expression
4961 has the given TYPE.
4962 SPARSENESS is as determined by all_cases_count.
4964 The time needed is proportional to COUNT, unless
4965 SPARSENESS is 2, in which case quadratic time is needed. */
4967 void
4968 mark_seen_cases (type, cases_seen, count, sparseness)
4969 tree type;
4970 unsigned char *cases_seen;
4971 long count;
4972 int sparseness;
4974 tree next_node_to_try = NULL_TREE;
4975 long next_node_offset = 0;
4977 register struct case_node *n, *root = case_stack->data.case_stmt.case_list;
4978 tree val = make_node (INTEGER_CST);
4979 TREE_TYPE (val) = type;
4980 if (! root)
4981 ; /* Do nothing */
4982 else if (sparseness == 2)
4984 tree t;
4985 HOST_WIDE_INT xlo;
4987 /* This less efficient loop is only needed to handle
4988 duplicate case values (multiple enum constants
4989 with the same value). */
4990 TREE_TYPE (val) = TREE_TYPE (root->low);
4991 for (t = TYPE_VALUES (type), xlo = 0; t != NULL_TREE;
4992 t = TREE_CHAIN (t), xlo++)
4994 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
4995 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
4996 n = root;
4999 /* Keep going past elements distinctly greater than VAL. */
5000 if (tree_int_cst_lt (val, n->low))
5001 n = n->left;
5003 /* or distinctly less than VAL. */
5004 else if (tree_int_cst_lt (n->high, val))
5005 n = n->right;
5007 else
5009 /* We have found a matching range. */
5010 BITARRAY_SET (cases_seen, xlo);
5011 break;
5014 while (n);
5017 else
5019 if (root->left)
5020 case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
5021 for (n = root; n; n = n->right)
5023 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
5024 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
5025 while ( ! tree_int_cst_lt (n->high, val))
5027 /* Calculate (into xlo) the "offset" of the integer (val).
5028 The element with lowest value has offset 0, the next smallest
5029 element has offset 1, etc. */
5031 HOST_WIDE_INT xlo, xhi;
5032 tree t;
5033 if (sparseness && TYPE_VALUES (type) != NULL_TREE)
5035 /* The TYPE_VALUES will be in increasing order, so
5036 starting searching where we last ended. */
5037 t = next_node_to_try;
5038 xlo = next_node_offset;
5039 xhi = 0;
5040 for (;;)
5042 if (t == NULL_TREE)
5044 t = TYPE_VALUES (type);
5045 xlo = 0;
5047 if (tree_int_cst_equal (val, TREE_VALUE (t)))
5049 next_node_to_try = TREE_CHAIN (t);
5050 next_node_offset = xlo + 1;
5051 break;
5053 xlo++;
5054 t = TREE_CHAIN (t);
5055 if (t == next_node_to_try)
5057 xlo = -1;
5058 break;
5062 else
5064 t = TYPE_MIN_VALUE (type);
5065 if (t)
5066 neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
5067 &xlo, &xhi);
5068 else
5069 xlo = xhi = 0;
5070 add_double (xlo, xhi,
5071 TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5072 &xlo, &xhi);
5075 if (xhi == 0 && xlo >= 0 && xlo < count)
5076 BITARRAY_SET (cases_seen, xlo);
5077 add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5078 1, 0,
5079 &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5085 /* Called when the index of a switch statement is an enumerated type
5086 and there is no default label.
5088 Checks that all enumeration literals are covered by the case
5089 expressions of a switch. Also, warn if there are any extra
5090 switch cases that are *not* elements of the enumerated type.
5092 If all enumeration literals were covered by the case expressions,
5093 turn one of the expressions into the default expression since it should
5094 not be possible to fall through such a switch. */
5096 void
5097 check_for_full_enumeration_handling (type)
5098 tree type;
5100 register struct case_node *n;
5101 register tree chain;
5102 #if 0 /* variable used by 'if 0'ed code below. */
5103 register struct case_node **l;
5104 int all_values = 1;
5105 #endif
5107 /* True iff the selector type is a numbered set mode. */
5108 int sparseness = 0;
5110 /* The number of possible selector values. */
5111 HOST_WIDE_INT size;
5113 /* For each possible selector value. a one iff it has been matched
5114 by a case value alternative. */
5115 unsigned char *cases_seen;
5117 /* The allocated size of cases_seen, in chars. */
5118 long bytes_needed;
5120 if (! warn_switch)
5121 return;
5123 size = all_cases_count (type, &sparseness);
5124 bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5126 if (size > 0 && size < 600000
5127 /* We deliberately use calloc here, not cmalloc, so that we can suppress
5128 this optimization if we don't have enough memory rather than
5129 aborting, as xmalloc would do. */
5130 && (cases_seen = (unsigned char *) calloc (bytes_needed, 1)) != NULL)
5132 long i;
5133 tree v = TYPE_VALUES (type);
5135 /* The time complexity of this code is normally O(N), where
5136 N being the number of members in the enumerated type.
5137 However, if type is a ENUMERAL_TYPE whose values do not
5138 increase monotonically, O(N*log(N)) time may be needed. */
5140 mark_seen_cases (type, cases_seen, size, sparseness);
5142 for (i = 0; v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5144 if (BITARRAY_TEST(cases_seen, i) == 0)
5145 warning ("enumeration value `%s' not handled in switch",
5146 IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5149 free (cases_seen);
5152 /* Now we go the other way around; we warn if there are case
5153 expressions that don't correspond to enumerators. This can
5154 occur since C and C++ don't enforce type-checking of
5155 assignments to enumeration variables. */
5157 if (case_stack->data.case_stmt.case_list
5158 && case_stack->data.case_stmt.case_list->left)
5159 case_stack->data.case_stmt.case_list
5160 = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5161 if (warn_switch)
5162 for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5164 for (chain = TYPE_VALUES (type);
5165 chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5166 chain = TREE_CHAIN (chain))
5169 if (!chain)
5171 if (TYPE_NAME (type) == 0)
5172 warning ("case value `%ld' not in enumerated type",
5173 (long) TREE_INT_CST_LOW (n->low));
5174 else
5175 warning ("case value `%ld' not in enumerated type `%s'",
5176 (long) TREE_INT_CST_LOW (n->low),
5177 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5178 == IDENTIFIER_NODE)
5179 ? TYPE_NAME (type)
5180 : DECL_NAME (TYPE_NAME (type))));
5182 if (!tree_int_cst_equal (n->low, n->high))
5184 for (chain = TYPE_VALUES (type);
5185 chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5186 chain = TREE_CHAIN (chain))
5189 if (!chain)
5191 if (TYPE_NAME (type) == 0)
5192 warning ("case value `%ld' not in enumerated type",
5193 (long) TREE_INT_CST_LOW (n->high));
5194 else
5195 warning ("case value `%ld' not in enumerated type `%s'",
5196 (long) TREE_INT_CST_LOW (n->high),
5197 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5198 == IDENTIFIER_NODE)
5199 ? TYPE_NAME (type)
5200 : DECL_NAME (TYPE_NAME (type))));
5205 #if 0
5206 /* ??? This optimization is disabled because it causes valid programs to
5207 fail. ANSI C does not guarantee that an expression with enum type
5208 will have a value that is the same as one of the enumeration literals. */
5210 /* If all values were found as case labels, make one of them the default
5211 label. Thus, this switch will never fall through. We arbitrarily pick
5212 the last one to make the default since this is likely the most
5213 efficient choice. */
5215 if (all_values)
5217 for (l = &case_stack->data.case_stmt.case_list;
5218 (*l)->right != 0;
5219 l = &(*l)->right)
5222 case_stack->data.case_stmt.default_label = (*l)->code_label;
5223 *l = 0;
5225 #endif /* 0 */
5229 /* Terminate a case (Pascal) or switch (C) statement
5230 in which ORIG_INDEX is the expression to be tested.
5231 Generate the code to test it and jump to the right place. */
5233 void
5234 expand_end_case (orig_index)
5235 tree orig_index;
5237 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE, orig_minval;
5238 rtx default_label = 0;
5239 register struct case_node *n;
5240 unsigned int count;
5241 rtx index;
5242 rtx table_label;
5243 int ncases;
5244 rtx *labelvec;
5245 register int i;
5246 rtx before_case;
5247 register struct nesting *thiscase = case_stack;
5248 tree index_expr, index_type;
5249 int unsignedp;
5251 /* Don't crash due to previous errors. */
5252 if (thiscase == NULL)
5253 return;
5255 table_label = gen_label_rtx ();
5256 index_expr = thiscase->data.case_stmt.index_expr;
5257 index_type = TREE_TYPE (index_expr);
5258 unsignedp = TREE_UNSIGNED (index_type);
5260 do_pending_stack_adjust ();
5262 /* This might get an spurious warning in the presence of a syntax error;
5263 it could be fixed by moving the call to check_seenlabel after the
5264 check for error_mark_node, and copying the code of check_seenlabel that
5265 deals with case_stack->data.case_stmt.line_number_status /
5266 restore_line_number_status in front of the call to end_cleanup_deferral;
5267 However, this might miss some useful warnings in the presence of
5268 non-syntax errors. */
5269 check_seenlabel ();
5271 /* An ERROR_MARK occurs for various reasons including invalid data type. */
5272 if (index_type != error_mark_node)
5274 /* If switch expression was an enumerated type, check that all
5275 enumeration literals are covered by the cases.
5276 No sense trying this if there's a default case, however. */
5278 if (!thiscase->data.case_stmt.default_label
5279 && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
5280 && TREE_CODE (index_expr) != INTEGER_CST)
5281 check_for_full_enumeration_handling (TREE_TYPE (orig_index));
5283 /* If we don't have a default-label, create one here,
5284 after the body of the switch. */
5285 if (thiscase->data.case_stmt.default_label == 0)
5287 thiscase->data.case_stmt.default_label
5288 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5289 expand_label (thiscase->data.case_stmt.default_label);
5291 default_label = label_rtx (thiscase->data.case_stmt.default_label);
5293 before_case = get_last_insn ();
5295 if (thiscase->data.case_stmt.case_list
5296 && thiscase->data.case_stmt.case_list->left)
5297 thiscase->data.case_stmt.case_list
5298 = case_tree2list(thiscase->data.case_stmt.case_list, 0);
5300 /* Simplify the case-list before we count it. */
5301 group_case_nodes (thiscase->data.case_stmt.case_list);
5303 /* Get upper and lower bounds of case values.
5304 Also convert all the case values to the index expr's data type. */
5306 count = 0;
5307 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5309 /* Check low and high label values are integers. */
5310 if (TREE_CODE (n->low) != INTEGER_CST)
5311 abort ();
5312 if (TREE_CODE (n->high) != INTEGER_CST)
5313 abort ();
5315 n->low = convert (index_type, n->low);
5316 n->high = convert (index_type, n->high);
5318 /* Count the elements and track the largest and smallest
5319 of them (treating them as signed even if they are not). */
5320 if (count++ == 0)
5322 minval = n->low;
5323 maxval = n->high;
5325 else
5327 if (INT_CST_LT (n->low, minval))
5328 minval = n->low;
5329 if (INT_CST_LT (maxval, n->high))
5330 maxval = n->high;
5332 /* A range counts double, since it requires two compares. */
5333 if (! tree_int_cst_equal (n->low, n->high))
5334 count++;
5337 orig_minval = minval;
5339 /* Compute span of values. */
5340 if (count != 0)
5341 range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5343 end_cleanup_deferral ();
5345 if (count == 0)
5347 expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5348 emit_queue ();
5349 emit_jump (default_label);
5352 /* If range of values is much bigger than number of values,
5353 make a sequence of conditional branches instead of a dispatch.
5354 If the switch-index is a constant, do it this way
5355 because we can optimize it. */
5357 #ifndef CASE_VALUES_THRESHOLD
5358 #ifdef HAVE_casesi
5359 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
5360 #else
5361 /* If machine does not have a case insn that compares the
5362 bounds, this means extra overhead for dispatch tables
5363 which raises the threshold for using them. */
5364 #define CASE_VALUES_THRESHOLD 5
5365 #endif /* HAVE_casesi */
5366 #endif /* CASE_VALUES_THRESHOLD */
5368 else if (TREE_INT_CST_HIGH (range) != 0
5369 || count < (unsigned int) CASE_VALUES_THRESHOLD
5370 || ((unsigned HOST_WIDE_INT) (TREE_INT_CST_LOW (range))
5371 > 10 * count)
5372 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5373 || flag_pic
5374 #endif
5375 || TREE_CODE (index_expr) == INTEGER_CST
5376 /* These will reduce to a constant. */
5377 || (TREE_CODE (index_expr) == CALL_EXPR
5378 && TREE_CODE (TREE_OPERAND (index_expr, 0)) == ADDR_EXPR
5379 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == FUNCTION_DECL
5380 && DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_NORMAL
5381 && DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_CLASSIFY_TYPE)
5382 || (TREE_CODE (index_expr) == COMPOUND_EXPR
5383 && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
5385 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5387 /* If the index is a short or char that we do not have
5388 an insn to handle comparisons directly, convert it to
5389 a full integer now, rather than letting each comparison
5390 generate the conversion. */
5392 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5393 && (cmp_optab->handlers[(int) GET_MODE(index)].insn_code
5394 == CODE_FOR_nothing))
5396 enum machine_mode wider_mode;
5397 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5398 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5399 if (cmp_optab->handlers[(int) wider_mode].insn_code
5400 != CODE_FOR_nothing)
5402 index = convert_to_mode (wider_mode, index, unsignedp);
5403 break;
5407 emit_queue ();
5408 do_pending_stack_adjust ();
5410 index = protect_from_queue (index, 0);
5411 if (GET_CODE (index) == MEM)
5412 index = copy_to_reg (index);
5413 if (GET_CODE (index) == CONST_INT
5414 || TREE_CODE (index_expr) == INTEGER_CST)
5416 /* Make a tree node with the proper constant value
5417 if we don't already have one. */
5418 if (TREE_CODE (index_expr) != INTEGER_CST)
5420 index_expr
5421 = build_int_2 (INTVAL (index),
5422 unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5423 index_expr = convert (index_type, index_expr);
5426 /* For constant index expressions we need only
5427 issue a unconditional branch to the appropriate
5428 target code. The job of removing any unreachable
5429 code is left to the optimisation phase if the
5430 "-O" option is specified. */
5431 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5432 if (! tree_int_cst_lt (index_expr, n->low)
5433 && ! tree_int_cst_lt (n->high, index_expr))
5434 break;
5436 if (n)
5437 emit_jump (label_rtx (n->code_label));
5438 else
5439 emit_jump (default_label);
5441 else
5443 /* If the index expression is not constant we generate
5444 a binary decision tree to select the appropriate
5445 target code. This is done as follows:
5447 The list of cases is rearranged into a binary tree,
5448 nearly optimal assuming equal probability for each case.
5450 The tree is transformed into RTL, eliminating
5451 redundant test conditions at the same time.
5453 If program flow could reach the end of the
5454 decision tree an unconditional jump to the
5455 default code is emitted. */
5457 use_cost_table
5458 = (TREE_CODE (TREE_TYPE (orig_index)) != ENUMERAL_TYPE
5459 && estimate_case_costs (thiscase->data.case_stmt.case_list));
5460 balance_case_nodes (&thiscase->data.case_stmt.case_list,
5461 NULL_PTR);
5462 emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5463 default_label, index_type);
5464 emit_jump_if_reachable (default_label);
5467 else
5469 int win = 0;
5470 #ifdef HAVE_casesi
5471 if (HAVE_casesi)
5473 enum machine_mode index_mode = SImode;
5474 int index_bits = GET_MODE_BITSIZE (index_mode);
5475 rtx op1, op2;
5476 enum machine_mode op_mode;
5478 /* Convert the index to SImode. */
5479 if (GET_MODE_BITSIZE (TYPE_MODE (index_type))
5480 > GET_MODE_BITSIZE (index_mode))
5482 enum machine_mode omode = TYPE_MODE (index_type);
5483 rtx rangertx = expand_expr (range, NULL_RTX, VOIDmode, 0);
5485 /* We must handle the endpoints in the original mode. */
5486 index_expr = build (MINUS_EXPR, index_type,
5487 index_expr, minval);
5488 minval = integer_zero_node;
5489 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5490 emit_cmp_and_jump_insns (rangertx, index, LTU, NULL_RTX,
5491 omode, 1, 0, default_label);
5492 /* Now we can safely truncate. */
5493 index = convert_to_mode (index_mode, index, 0);
5495 else
5497 if (TYPE_MODE (index_type) != index_mode)
5499 index_expr = convert (type_for_size (index_bits, 0),
5500 index_expr);
5501 index_type = TREE_TYPE (index_expr);
5504 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5506 emit_queue ();
5507 index = protect_from_queue (index, 0);
5508 do_pending_stack_adjust ();
5510 op_mode = insn_data[(int)CODE_FOR_casesi].operand[0].mode;
5511 if (! (*insn_data[(int)CODE_FOR_casesi].operand[0].predicate)
5512 (index, op_mode))
5513 index = copy_to_mode_reg (op_mode, index);
5515 op1 = expand_expr (minval, NULL_RTX, VOIDmode, 0);
5517 op_mode = insn_data[(int)CODE_FOR_casesi].operand[1].mode;
5518 if (! (*insn_data[(int)CODE_FOR_casesi].operand[1].predicate)
5519 (op1, op_mode))
5520 op1 = copy_to_mode_reg (op_mode, op1);
5522 op2 = expand_expr (range, NULL_RTX, VOIDmode, 0);
5524 op_mode = insn_data[(int)CODE_FOR_casesi].operand[2].mode;
5525 if (! (*insn_data[(int)CODE_FOR_casesi].operand[2].predicate)
5526 (op2, op_mode))
5527 op2 = copy_to_mode_reg (op_mode, op2);
5529 emit_jump_insn (gen_casesi (index, op1, op2,
5530 table_label, default_label));
5531 win = 1;
5533 #endif
5534 #ifdef HAVE_tablejump
5535 if (! win && HAVE_tablejump)
5537 index_expr = convert (thiscase->data.case_stmt.nominal_type,
5538 fold (build (MINUS_EXPR, index_type,
5539 index_expr, minval)));
5540 index_type = TREE_TYPE (index_expr);
5541 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5542 emit_queue ();
5543 index = protect_from_queue (index, 0);
5544 do_pending_stack_adjust ();
5546 do_tablejump (index, TYPE_MODE (index_type),
5547 expand_expr (range, NULL_RTX, VOIDmode, 0),
5548 table_label, default_label);
5549 win = 1;
5551 #endif
5552 if (! win)
5553 abort ();
5555 /* Get table of labels to jump to, in order of case index. */
5557 ncases = TREE_INT_CST_LOW (range) + 1;
5558 labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5559 bzero ((char *) labelvec, ncases * sizeof (rtx));
5561 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5563 register HOST_WIDE_INT i
5564 = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (orig_minval);
5566 while (1)
5568 labelvec[i]
5569 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5570 if (i + TREE_INT_CST_LOW (orig_minval)
5571 == TREE_INT_CST_LOW (n->high))
5572 break;
5573 i++;
5577 /* Fill in the gaps with the default. */
5578 for (i = 0; i < ncases; i++)
5579 if (labelvec[i] == 0)
5580 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5582 /* Output the table */
5583 emit_label (table_label);
5585 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5586 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5587 gen_rtx_LABEL_REF (Pmode, table_label),
5588 gen_rtvec_v (ncases, labelvec),
5589 const0_rtx, const0_rtx));
5590 else
5591 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5592 gen_rtvec_v (ncases, labelvec)));
5594 /* If the case insn drops through the table,
5595 after the table we must jump to the default-label.
5596 Otherwise record no drop-through after the table. */
5597 #ifdef CASE_DROPS_THROUGH
5598 emit_jump (default_label);
5599 #else
5600 emit_barrier ();
5601 #endif
5604 before_case = squeeze_notes (NEXT_INSN (before_case), get_last_insn ());
5605 reorder_insns (before_case, get_last_insn (),
5606 thiscase->data.case_stmt.start);
5608 else
5609 end_cleanup_deferral ();
5611 if (thiscase->exit_label)
5612 emit_label (thiscase->exit_label);
5614 POPSTACK (case_stack);
5616 free_temp_slots ();
5619 /* Convert the tree NODE into a list linked by the right field, with the left
5620 field zeroed. RIGHT is used for recursion; it is a list to be placed
5621 rightmost in the resulting list. */
5623 static struct case_node *
5624 case_tree2list (node, right)
5625 struct case_node *node, *right;
5627 struct case_node *left;
5629 if (node->right)
5630 right = case_tree2list (node->right, right);
5632 node->right = right;
5633 if ((left = node->left))
5635 node->left = 0;
5636 return case_tree2list (left, node);
5639 return node;
5642 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
5644 static void
5645 do_jump_if_equal (op1, op2, label, unsignedp)
5646 rtx op1, op2, label;
5647 int unsignedp;
5649 if (GET_CODE (op1) == CONST_INT
5650 && GET_CODE (op2) == CONST_INT)
5652 if (INTVAL (op1) == INTVAL (op2))
5653 emit_jump (label);
5655 else
5657 enum machine_mode mode = GET_MODE (op1);
5658 if (mode == VOIDmode)
5659 mode = GET_MODE (op2);
5660 emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX, mode, unsignedp,
5661 0, label);
5665 /* Not all case values are encountered equally. This function
5666 uses a heuristic to weight case labels, in cases where that
5667 looks like a reasonable thing to do.
5669 Right now, all we try to guess is text, and we establish the
5670 following weights:
5672 chars above space: 16
5673 digits: 16
5674 default: 12
5675 space, punct: 8
5676 tab: 4
5677 newline: 2
5678 other "\" chars: 1
5679 remaining chars: 0
5681 If we find any cases in the switch that are not either -1 or in the range
5682 of valid ASCII characters, or are control characters other than those
5683 commonly used with "\", don't treat this switch scanning text.
5685 Return 1 if these nodes are suitable for cost estimation, otherwise
5686 return 0. */
5688 static int
5689 estimate_case_costs (node)
5690 case_node_ptr node;
5692 tree min_ascii = build_int_2 (-1, -1);
5693 tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5694 case_node_ptr n;
5695 int i;
5697 /* If we haven't already made the cost table, make it now. Note that the
5698 lower bound of the table is -1, not zero. */
5700 if (cost_table == NULL)
5702 cost_table = cost_table_ + 1;
5704 for (i = 0; i < 128; i++)
5706 if (ISALNUM (i))
5707 cost_table[i] = 16;
5708 else if (ISPUNCT (i))
5709 cost_table[i] = 8;
5710 else if (ISCNTRL (i))
5711 cost_table[i] = -1;
5714 cost_table[' '] = 8;
5715 cost_table['\t'] = 4;
5716 cost_table['\0'] = 4;
5717 cost_table['\n'] = 2;
5718 cost_table['\f'] = 1;
5719 cost_table['\v'] = 1;
5720 cost_table['\b'] = 1;
5723 /* See if all the case expressions look like text. It is text if the
5724 constant is >= -1 and the highest constant is <= 127. Do all comparisons
5725 as signed arithmetic since we don't want to ever access cost_table with a
5726 value less than -1. Also check that none of the constants in a range
5727 are strange control characters. */
5729 for (n = node; n; n = n->right)
5731 if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5732 return 0;
5734 for (i = TREE_INT_CST_LOW (n->low); i <= TREE_INT_CST_LOW (n->high); i++)
5735 if (cost_table[i] < 0)
5736 return 0;
5739 /* All interesting values are within the range of interesting
5740 ASCII characters. */
5741 return 1;
5744 /* Scan an ordered list of case nodes
5745 combining those with consecutive values or ranges.
5747 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
5749 static void
5750 group_case_nodes (head)
5751 case_node_ptr head;
5753 case_node_ptr node = head;
5755 while (node)
5757 rtx lb = next_real_insn (label_rtx (node->code_label));
5758 rtx lb2;
5759 case_node_ptr np = node;
5761 /* Try to group the successors of NODE with NODE. */
5762 while (((np = np->right) != 0)
5763 /* Do they jump to the same place? */
5764 && ((lb2 = next_real_insn (label_rtx (np->code_label))) == lb
5765 || (lb != 0 && lb2 != 0
5766 && simplejump_p (lb)
5767 && simplejump_p (lb2)
5768 && rtx_equal_p (SET_SRC (PATTERN (lb)),
5769 SET_SRC (PATTERN (lb2)))))
5770 /* Are their ranges consecutive? */
5771 && tree_int_cst_equal (np->low,
5772 fold (build (PLUS_EXPR,
5773 TREE_TYPE (node->high),
5774 node->high,
5775 integer_one_node)))
5776 /* An overflow is not consecutive. */
5777 && tree_int_cst_lt (node->high,
5778 fold (build (PLUS_EXPR,
5779 TREE_TYPE (node->high),
5780 node->high,
5781 integer_one_node))))
5783 node->high = np->high;
5785 /* NP is the first node after NODE which can't be grouped with it.
5786 Delete the nodes in between, and move on to that node. */
5787 node->right = np;
5788 node = np;
5792 /* Take an ordered list of case nodes
5793 and transform them into a near optimal binary tree,
5794 on the assumption that any target code selection value is as
5795 likely as any other.
5797 The transformation is performed by splitting the ordered
5798 list into two equal sections plus a pivot. The parts are
5799 then attached to the pivot as left and right branches. Each
5800 branch is then transformed recursively. */
5802 static void
5803 balance_case_nodes (head, parent)
5804 case_node_ptr *head;
5805 case_node_ptr parent;
5807 register case_node_ptr np;
5809 np = *head;
5810 if (np)
5812 int cost = 0;
5813 int i = 0;
5814 int ranges = 0;
5815 register case_node_ptr *npp;
5816 case_node_ptr left;
5818 /* Count the number of entries on branch. Also count the ranges. */
5820 while (np)
5822 if (!tree_int_cst_equal (np->low, np->high))
5824 ranges++;
5825 if (use_cost_table)
5826 cost += cost_table[TREE_INT_CST_LOW (np->high)];
5829 if (use_cost_table)
5830 cost += cost_table[TREE_INT_CST_LOW (np->low)];
5832 i++;
5833 np = np->right;
5836 if (i > 2)
5838 /* Split this list if it is long enough for that to help. */
5839 npp = head;
5840 left = *npp;
5841 if (use_cost_table)
5843 /* Find the place in the list that bisects the list's total cost,
5844 Here I gets half the total cost. */
5845 int n_moved = 0;
5846 i = (cost + 1) / 2;
5847 while (1)
5849 /* Skip nodes while their cost does not reach that amount. */
5850 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5851 i -= cost_table[TREE_INT_CST_LOW ((*npp)->high)];
5852 i -= cost_table[TREE_INT_CST_LOW ((*npp)->low)];
5853 if (i <= 0)
5854 break;
5855 npp = &(*npp)->right;
5856 n_moved += 1;
5858 if (n_moved == 0)
5860 /* Leave this branch lopsided, but optimize left-hand
5861 side and fill in `parent' fields for right-hand side. */
5862 np = *head;
5863 np->parent = parent;
5864 balance_case_nodes (&np->left, np);
5865 for (; np->right; np = np->right)
5866 np->right->parent = np;
5867 return;
5870 /* If there are just three nodes, split at the middle one. */
5871 else if (i == 3)
5872 npp = &(*npp)->right;
5873 else
5875 /* Find the place in the list that bisects the list's total cost,
5876 where ranges count as 2.
5877 Here I gets half the total cost. */
5878 i = (i + ranges + 1) / 2;
5879 while (1)
5881 /* Skip nodes while their cost does not reach that amount. */
5882 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5883 i--;
5884 i--;
5885 if (i <= 0)
5886 break;
5887 npp = &(*npp)->right;
5890 *head = np = *npp;
5891 *npp = 0;
5892 np->parent = parent;
5893 np->left = left;
5895 /* Optimize each of the two split parts. */
5896 balance_case_nodes (&np->left, np);
5897 balance_case_nodes (&np->right, np);
5899 else
5901 /* Else leave this branch as one level,
5902 but fill in `parent' fields. */
5903 np = *head;
5904 np->parent = parent;
5905 for (; np->right; np = np->right)
5906 np->right->parent = np;
5911 /* Search the parent sections of the case node tree
5912 to see if a test for the lower bound of NODE would be redundant.
5913 INDEX_TYPE is the type of the index expression.
5915 The instructions to generate the case decision tree are
5916 output in the same order as nodes are processed so it is
5917 known that if a parent node checks the range of the current
5918 node minus one that the current node is bounded at its lower
5919 span. Thus the test would be redundant. */
5921 static int
5922 node_has_low_bound (node, index_type)
5923 case_node_ptr node;
5924 tree index_type;
5926 tree low_minus_one;
5927 case_node_ptr pnode;
5929 /* If the lower bound of this node is the lowest value in the index type,
5930 we need not test it. */
5932 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
5933 return 1;
5935 /* If this node has a left branch, the value at the left must be less
5936 than that at this node, so it cannot be bounded at the bottom and
5937 we need not bother testing any further. */
5939 if (node->left)
5940 return 0;
5942 low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
5943 node->low, integer_one_node));
5945 /* If the subtraction above overflowed, we can't verify anything.
5946 Otherwise, look for a parent that tests our value - 1. */
5948 if (! tree_int_cst_lt (low_minus_one, node->low))
5949 return 0;
5951 for (pnode = node->parent; pnode; pnode = pnode->parent)
5952 if (tree_int_cst_equal (low_minus_one, pnode->high))
5953 return 1;
5955 return 0;
5958 /* Search the parent sections of the case node tree
5959 to see if a test for the upper bound of NODE would be redundant.
5960 INDEX_TYPE is the type of the index expression.
5962 The instructions to generate the case decision tree are
5963 output in the same order as nodes are processed so it is
5964 known that if a parent node checks the range of the current
5965 node plus one that the current node is bounded at its upper
5966 span. Thus the test would be redundant. */
5968 static int
5969 node_has_high_bound (node, index_type)
5970 case_node_ptr node;
5971 tree index_type;
5973 tree high_plus_one;
5974 case_node_ptr pnode;
5976 /* If there is no upper bound, obviously no test is needed. */
5978 if (TYPE_MAX_VALUE (index_type) == NULL)
5979 return 1;
5981 /* If the upper bound of this node is the highest value in the type
5982 of the index expression, we need not test against it. */
5984 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
5985 return 1;
5987 /* If this node has a right branch, the value at the right must be greater
5988 than that at this node, so it cannot be bounded at the top and
5989 we need not bother testing any further. */
5991 if (node->right)
5992 return 0;
5994 high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
5995 node->high, integer_one_node));
5997 /* If the addition above overflowed, we can't verify anything.
5998 Otherwise, look for a parent that tests our value + 1. */
6000 if (! tree_int_cst_lt (node->high, high_plus_one))
6001 return 0;
6003 for (pnode = node->parent; pnode; pnode = pnode->parent)
6004 if (tree_int_cst_equal (high_plus_one, pnode->low))
6005 return 1;
6007 return 0;
6010 /* Search the parent sections of the
6011 case node tree to see if both tests for the upper and lower
6012 bounds of NODE would be redundant. */
6014 static int
6015 node_is_bounded (node, index_type)
6016 case_node_ptr node;
6017 tree index_type;
6019 return (node_has_low_bound (node, index_type)
6020 && node_has_high_bound (node, index_type));
6023 /* Emit an unconditional jump to LABEL unless it would be dead code. */
6025 static void
6026 emit_jump_if_reachable (label)
6027 rtx label;
6029 if (GET_CODE (get_last_insn ()) != BARRIER)
6030 emit_jump (label);
6033 /* Emit step-by-step code to select a case for the value of INDEX.
6034 The thus generated decision tree follows the form of the
6035 case-node binary tree NODE, whose nodes represent test conditions.
6036 INDEX_TYPE is the type of the index of the switch.
6038 Care is taken to prune redundant tests from the decision tree
6039 by detecting any boundary conditions already checked by
6040 emitted rtx. (See node_has_high_bound, node_has_low_bound
6041 and node_is_bounded, above.)
6043 Where the test conditions can be shown to be redundant we emit
6044 an unconditional jump to the target code. As a further
6045 optimization, the subordinates of a tree node are examined to
6046 check for bounded nodes. In this case conditional and/or
6047 unconditional jumps as a result of the boundary check for the
6048 current node are arranged to target the subordinates associated
6049 code for out of bound conditions on the current node.
6051 We can assume that when control reaches the code generated here,
6052 the index value has already been compared with the parents
6053 of this node, and determined to be on the same side of each parent
6054 as this node is. Thus, if this node tests for the value 51,
6055 and a parent tested for 52, we don't need to consider
6056 the possibility of a value greater than 51. If another parent
6057 tests for the value 50, then this node need not test anything. */
6059 static void
6060 emit_case_nodes (index, node, default_label, index_type)
6061 rtx index;
6062 case_node_ptr node;
6063 rtx default_label;
6064 tree index_type;
6066 /* If INDEX has an unsigned type, we must make unsigned branches. */
6067 int unsignedp = TREE_UNSIGNED (index_type);
6068 enum machine_mode mode = GET_MODE (index);
6070 /* See if our parents have already tested everything for us.
6071 If they have, emit an unconditional jump for this node. */
6072 if (node_is_bounded (node, index_type))
6073 emit_jump (label_rtx (node->code_label));
6075 else if (tree_int_cst_equal (node->low, node->high))
6077 /* Node is single valued. First see if the index expression matches
6078 this node and then check our children, if any. */
6080 do_jump_if_equal (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
6081 label_rtx (node->code_label), unsignedp);
6083 if (node->right != 0 && node->left != 0)
6085 /* This node has children on both sides.
6086 Dispatch to one side or the other
6087 by comparing the index value with this node's value.
6088 If one subtree is bounded, check that one first,
6089 so we can avoid real branches in the tree. */
6091 if (node_is_bounded (node->right, index_type))
6093 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6094 VOIDmode, 0),
6095 GT, NULL_RTX, mode, unsignedp, 0,
6096 label_rtx (node->right->code_label));
6097 emit_case_nodes (index, node->left, default_label, index_type);
6100 else if (node_is_bounded (node->left, index_type))
6102 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6103 VOIDmode, 0),
6104 LT, NULL_RTX, mode, unsignedp, 0,
6105 label_rtx (node->left->code_label));
6106 emit_case_nodes (index, node->right, default_label, index_type);
6109 else
6111 /* Neither node is bounded. First distinguish the two sides;
6112 then emit the code for one side at a time. */
6114 tree test_label
6115 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6117 /* See if the value is on the right. */
6118 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6119 VOIDmode, 0),
6120 GT, NULL_RTX, mode, unsignedp, 0,
6121 label_rtx (test_label));
6123 /* Value must be on the left.
6124 Handle the left-hand subtree. */
6125 emit_case_nodes (index, node->left, default_label, index_type);
6126 /* If left-hand subtree does nothing,
6127 go to default. */
6128 emit_jump_if_reachable (default_label);
6130 /* Code branches here for the right-hand subtree. */
6131 expand_label (test_label);
6132 emit_case_nodes (index, node->right, default_label, index_type);
6136 else if (node->right != 0 && node->left == 0)
6138 /* Here we have a right child but no left so we issue conditional
6139 branch to default and process the right child.
6141 Omit the conditional branch to default if we it avoid only one
6142 right child; it costs too much space to save so little time. */
6144 if (node->right->right || node->right->left
6145 || !tree_int_cst_equal (node->right->low, node->right->high))
6147 if (!node_has_low_bound (node, index_type))
6149 emit_cmp_and_jump_insns (index, expand_expr (node->high,
6150 NULL_RTX,
6151 VOIDmode, 0),
6152 LT, NULL_RTX, mode, unsignedp, 0,
6153 default_label);
6156 emit_case_nodes (index, node->right, default_label, index_type);
6158 else
6159 /* We cannot process node->right normally
6160 since we haven't ruled out the numbers less than
6161 this node's value. So handle node->right explicitly. */
6162 do_jump_if_equal (index,
6163 expand_expr (node->right->low, NULL_RTX,
6164 VOIDmode, 0),
6165 label_rtx (node->right->code_label), unsignedp);
6168 else if (node->right == 0 && node->left != 0)
6170 /* Just one subtree, on the left. */
6172 #if 0 /* The following code and comment were formerly part
6173 of the condition here, but they didn't work
6174 and I don't understand what the idea was. -- rms. */
6175 /* If our "most probable entry" is less probable
6176 than the default label, emit a jump to
6177 the default label using condition codes
6178 already lying around. With no right branch,
6179 a branch-greater-than will get us to the default
6180 label correctly. */
6181 if (use_cost_table
6182 && cost_table[TREE_INT_CST_LOW (node->high)] < 12)
6184 #endif /* 0 */
6185 if (node->left->left || node->left->right
6186 || !tree_int_cst_equal (node->left->low, node->left->high))
6188 if (!node_has_high_bound (node, index_type))
6190 emit_cmp_and_jump_insns (index, expand_expr (node->high,
6191 NULL_RTX,
6192 VOIDmode, 0),
6193 GT, NULL_RTX, mode, unsignedp, 0,
6194 default_label);
6197 emit_case_nodes (index, node->left, default_label, index_type);
6199 else
6200 /* We cannot process node->left normally
6201 since we haven't ruled out the numbers less than
6202 this node's value. So handle node->left explicitly. */
6203 do_jump_if_equal (index,
6204 expand_expr (node->left->low, NULL_RTX,
6205 VOIDmode, 0),
6206 label_rtx (node->left->code_label), unsignedp);
6209 else
6211 /* Node is a range. These cases are very similar to those for a single
6212 value, except that we do not start by testing whether this node
6213 is the one to branch to. */
6215 if (node->right != 0 && node->left != 0)
6217 /* Node has subtrees on both sides.
6218 If the right-hand subtree is bounded,
6219 test for it first, since we can go straight there.
6220 Otherwise, we need to make a branch in the control structure,
6221 then handle the two subtrees. */
6222 tree test_label = 0;
6225 if (node_is_bounded (node->right, index_type))
6226 /* Right hand node is fully bounded so we can eliminate any
6227 testing and branch directly to the target code. */
6228 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6229 VOIDmode, 0),
6230 GT, NULL_RTX, mode, unsignedp, 0,
6231 label_rtx (node->right->code_label));
6232 else
6234 /* Right hand node requires testing.
6235 Branch to a label where we will handle it later. */
6237 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6238 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6239 VOIDmode, 0),
6240 GT, NULL_RTX, mode, unsignedp, 0,
6241 label_rtx (test_label));
6244 /* Value belongs to this node or to the left-hand subtree. */
6246 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6247 VOIDmode, 0),
6248 GE, NULL_RTX, mode, unsignedp, 0,
6249 label_rtx (node->code_label));
6251 /* Handle the left-hand subtree. */
6252 emit_case_nodes (index, node->left, default_label, index_type);
6254 /* If right node had to be handled later, do that now. */
6256 if (test_label)
6258 /* If the left-hand subtree fell through,
6259 don't let it fall into the right-hand subtree. */
6260 emit_jump_if_reachable (default_label);
6262 expand_label (test_label);
6263 emit_case_nodes (index, node->right, default_label, index_type);
6267 else if (node->right != 0 && node->left == 0)
6269 /* Deal with values to the left of this node,
6270 if they are possible. */
6271 if (!node_has_low_bound (node, index_type))
6273 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6274 VOIDmode, 0),
6275 LT, NULL_RTX, mode, unsignedp, 0,
6276 default_label);
6279 /* Value belongs to this node or to the right-hand subtree. */
6281 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6282 VOIDmode, 0),
6283 LE, NULL_RTX, mode, unsignedp, 0,
6284 label_rtx (node->code_label));
6286 emit_case_nodes (index, node->right, default_label, index_type);
6289 else if (node->right == 0 && node->left != 0)
6291 /* Deal with values to the right of this node,
6292 if they are possible. */
6293 if (!node_has_high_bound (node, index_type))
6295 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6296 VOIDmode, 0),
6297 GT, NULL_RTX, mode, unsignedp, 0,
6298 default_label);
6301 /* Value belongs to this node or to the left-hand subtree. */
6303 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6304 VOIDmode, 0),
6305 GE, NULL_RTX, mode, unsignedp, 0,
6306 label_rtx (node->code_label));
6308 emit_case_nodes (index, node->left, default_label, index_type);
6311 else
6313 /* Node has no children so we check low and high bounds to remove
6314 redundant tests. Only one of the bounds can exist,
6315 since otherwise this node is bounded--a case tested already. */
6317 if (!node_has_high_bound (node, index_type))
6319 emit_cmp_and_jump_insns (index, expand_expr (node->high, NULL_RTX,
6320 VOIDmode, 0),
6321 GT, NULL_RTX, mode, unsignedp, 0,
6322 default_label);
6325 if (!node_has_low_bound (node, index_type))
6327 emit_cmp_and_jump_insns (index, expand_expr (node->low, NULL_RTX,
6328 VOIDmode, 0),
6329 LT, NULL_RTX, mode, unsignedp, 0,
6330 default_label);
6333 emit_jump (label_rtx (node->code_label));
6338 /* These routines are used by the loop unrolling code. They copy BLOCK trees
6339 so that the debugging info will be correct for the unrolled loop. */
6341 void
6342 find_loop_tree_blocks ()
6344 identify_blocks (DECL_INITIAL (current_function_decl), get_insns ());
6347 void
6348 unroll_block_trees ()
6350 tree block = DECL_INITIAL (current_function_decl);
6352 reorder_blocks (block, get_insns ());