2002-08-22 Paolo Carlini <pcarlini@unitus.it>
[official-gcc.git] / gcc / stmt.c
blobb2e2cad28c2b7075daec60e3c27b81d29dede922
1 /* Expands front end tree to back end RTL for GNU C-Compiler
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
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-config.h"
46 #include "expr.h"
47 #include "libfuncs.h"
48 #include "hard-reg-set.h"
49 #include "loop.h"
50 #include "recog.h"
51 #include "machmode.h"
52 #include "toplev.h"
53 #include "output.h"
54 #include "ggc.h"
55 #include "langhooks.h"
56 #include "predict.h"
58 /* Assume that case vectors are not pc-relative. */
59 #ifndef CASE_VECTOR_PC_RELATIVE
60 #define CASE_VECTOR_PC_RELATIVE 0
61 #endif
63 /* Functions and data structures for expanding case statements. */
65 /* Case label structure, used to hold info on labels within case
66 statements. We handle "range" labels; for a single-value label
67 as in C, the high and low limits are the same.
69 An AVL tree of case nodes is initially created, and later transformed
70 to a list linked via the RIGHT fields in the nodes. Nodes with
71 higher case values are later in the list.
73 Switch statements can be output in one of two forms. A branch table
74 is used if there are more than a few labels and the labels are dense
75 within the range between the smallest and largest case value. If a
76 branch table is used, no further manipulations are done with the case
77 node chain.
79 The alternative to the use of a branch table is to generate a series
80 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
81 and PARENT fields to hold a binary tree. Initially the tree is
82 totally unbalanced, with everything on the right. We balance the tree
83 with nodes on the left having lower case values than the parent
84 and nodes on the right having higher values. We then output the tree
85 in order. */
87 struct case_node GTY(())
89 struct case_node *left; /* Left son in binary tree */
90 struct case_node *right; /* Right son in binary tree; also node chain */
91 struct case_node *parent; /* Parent of node in binary tree */
92 tree low; /* Lowest index value for this label */
93 tree high; /* Highest index value for this label */
94 tree code_label; /* Label to jump to when node matches */
95 int balance;
98 typedef struct case_node case_node;
99 typedef struct case_node *case_node_ptr;
101 /* These are used by estimate_case_costs and balance_case_nodes. */
103 /* This must be a signed type, and non-ANSI compilers lack signed char. */
104 static short cost_table_[129];
105 static int use_cost_table;
106 static int cost_table_initialized;
108 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
109 is unsigned. */
110 #define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
112 /* Stack of control and binding constructs we are currently inside.
114 These constructs begin when you call `expand_start_WHATEVER'
115 and end when you call `expand_end_WHATEVER'. This stack records
116 info about how the construct began that tells the end-function
117 what to do. It also may provide information about the construct
118 to alter the behavior of other constructs within the body.
119 For example, they may affect the behavior of C `break' and `continue'.
121 Each construct gets one `struct nesting' object.
122 All of these objects are chained through the `all' field.
123 `nesting_stack' points to the first object (innermost construct).
124 The position of an entry on `nesting_stack' is in its `depth' field.
126 Each type of construct has its own individual stack.
127 For example, loops have `loop_stack'. Each object points to the
128 next object of the same type through the `next' field.
130 Some constructs are visible to `break' exit-statements and others
131 are not. Which constructs are visible depends on the language.
132 Therefore, the data structure allows each construct to be visible
133 or not, according to the args given when the construct is started.
134 The construct is visible if the `exit_label' field is non-null.
135 In that case, the value should be a CODE_LABEL rtx. */
137 struct nesting GTY(())
139 struct nesting *all;
140 struct nesting *next;
141 int depth;
142 rtx exit_label;
143 enum nesting_desc {
144 COND_NESTING,
145 LOOP_NESTING,
146 BLOCK_NESTING,
147 CASE_NESTING
148 } desc;
149 union nesting_u
151 /* For conds (if-then and if-then-else statements). */
152 struct nesting_cond
154 /* Label for the end of the if construct.
155 There is none if EXITFLAG was not set
156 and no `else' has been seen yet. */
157 rtx endif_label;
158 /* Label for the end of this alternative.
159 This may be the end of the if or the next else/elseif. */
160 rtx next_label;
161 } GTY ((tag ("COND_NESTING"))) cond;
162 /* For loops. */
163 struct nesting_loop
165 /* Label at the top of the loop; place to loop back to. */
166 rtx start_label;
167 /* Label at the end of the whole construct. */
168 rtx end_label;
169 /* Label before a jump that branches to the end of the whole
170 construct. This is where destructors go if any. */
171 rtx alt_end_label;
172 /* Label for `continue' statement to jump to;
173 this is in front of the stepper of the loop. */
174 rtx continue_label;
175 } GTY ((tag ("LOOP_NESTING"))) loop;
176 /* For variable binding contours. */
177 struct nesting_block
179 /* Sequence number of this binding contour within the function,
180 in order of entry. */
181 int block_start_count;
182 /* Nonzero => value to restore stack to on exit. */
183 rtx stack_level;
184 /* The NOTE that starts this contour.
185 Used by expand_goto to check whether the destination
186 is within each contour or not. */
187 rtx first_insn;
188 /* Innermost containing binding contour that has a stack level. */
189 struct nesting *innermost_stack_block;
190 /* List of cleanups to be run on exit from this contour.
191 This is a list of expressions to be evaluated.
192 The TREE_PURPOSE of each link is the ..._DECL node
193 which the cleanup pertains to. */
194 tree cleanups;
195 /* List of cleanup-lists of blocks containing this block,
196 as they were at the locus where this block appears.
197 There is an element for each containing block,
198 ordered innermost containing block first.
199 The tail of this list can be 0,
200 if all remaining elements would be empty lists.
201 The element's TREE_VALUE is the cleanup-list of that block,
202 which may be null. */
203 tree outer_cleanups;
204 /* Chain of labels defined inside this binding contour.
205 For contours that have stack levels or cleanups. */
206 struct label_chain *label_chain;
207 /* Number of function calls seen, as of start of this block. */
208 int n_function_calls;
209 /* Nonzero if this is associated with an EH region. */
210 int exception_region;
211 /* The saved target_temp_slot_level from our outer block.
212 We may reset target_temp_slot_level to be the level of
213 this block, if that is done, target_temp_slot_level
214 reverts to the saved target_temp_slot_level at the very
215 end of the block. */
216 int block_target_temp_slot_level;
217 /* True if we are currently emitting insns in an area of
218 output code that is controlled by a conditional
219 expression. This is used by the cleanup handling code to
220 generate conditional cleanup actions. */
221 int conditional_code;
222 /* A place to move the start of the exception region for any
223 of the conditional cleanups, must be at the end or after
224 the start of the last unconditional cleanup, and before any
225 conditional branch points. */
226 rtx last_unconditional_cleanup;
227 } GTY ((tag ("BLOCK_NESTING"))) block;
228 /* For switch (C) or case (Pascal) statements,
229 and also for dummies (see `expand_start_case_dummy'). */
230 struct nesting_case
232 /* The insn after which the case dispatch should finally
233 be emitted. Zero for a dummy. */
234 rtx start;
235 /* A list of case labels; it is first built as an AVL tree.
236 During expand_end_case, this is converted to a list, and may be
237 rearranged into a nearly balanced binary tree. */
238 struct case_node *case_list;
239 /* Label to jump to if no case matches. */
240 tree default_label;
241 /* The expression to be dispatched on. */
242 tree index_expr;
243 /* Type that INDEX_EXPR should be converted to. */
244 tree nominal_type;
245 /* Name of this kind of statement, for warnings. */
246 const char *printname;
247 /* Used to save no_line_numbers till we see the first case label.
248 We set this to -1 when we see the first case label in this
249 case statement. */
250 int line_number_status;
251 } GTY ((tag ("CASE_NESTING"))) case_stmt;
252 } GTY ((desc ("%1.desc"))) data;
255 /* Allocate and return a new `struct nesting'. */
257 #define ALLOC_NESTING() \
258 (struct nesting *) ggc_alloc (sizeof (struct nesting))
260 /* Pop the nesting stack element by element until we pop off
261 the element which is at the top of STACK.
262 Update all the other stacks, popping off elements from them
263 as we pop them from nesting_stack. */
265 #define POPSTACK(STACK) \
266 do { struct nesting *target = STACK; \
267 struct nesting *this; \
268 do { this = nesting_stack; \
269 if (loop_stack == this) \
270 loop_stack = loop_stack->next; \
271 if (cond_stack == this) \
272 cond_stack = cond_stack->next; \
273 if (block_stack == this) \
274 block_stack = block_stack->next; \
275 if (stack_block_stack == this) \
276 stack_block_stack = stack_block_stack->next; \
277 if (case_stack == this) \
278 case_stack = case_stack->next; \
279 nesting_depth = nesting_stack->depth - 1; \
280 nesting_stack = this->all; } \
281 while (this != target); } while (0)
283 /* In some cases it is impossible to generate code for a forward goto
284 until the label definition is seen. This happens when it may be necessary
285 for the goto to reset the stack pointer: we don't yet know how to do that.
286 So expand_goto puts an entry on this fixup list.
287 Each time a binding contour that resets the stack is exited,
288 we check each fixup.
289 If the target label has now been defined, we can insert the proper code. */
291 struct goto_fixup GTY(())
293 /* Points to following fixup. */
294 struct goto_fixup *next;
295 /* Points to the insn before the jump insn.
296 If more code must be inserted, it goes after this insn. */
297 rtx before_jump;
298 /* The LABEL_DECL that this jump is jumping to, or 0
299 for break, continue or return. */
300 tree target;
301 /* The BLOCK for the place where this goto was found. */
302 tree context;
303 /* The CODE_LABEL rtx that this is jumping to. */
304 rtx target_rtl;
305 /* Number of binding contours started in current function
306 before the label reference. */
307 int block_start_count;
308 /* The outermost stack level that should be restored for this jump.
309 Each time a binding contour that resets the stack is exited,
310 if the target label is *not* yet defined, this slot is updated. */
311 rtx stack_level;
312 /* List of lists of cleanup expressions to be run by this goto.
313 There is one element for each block that this goto is within.
314 The tail of this list can be 0,
315 if all remaining elements would be empty.
316 The TREE_VALUE contains the cleanup list of that block as of the
317 time this goto was seen.
318 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
319 tree cleanup_list_list;
322 /* Within any binding contour that must restore a stack level,
323 all labels are recorded with a chain of these structures. */
325 struct label_chain GTY(())
327 /* Points to following fixup. */
328 struct label_chain *next;
329 tree label;
332 struct stmt_status GTY(())
334 /* Chain of all pending binding contours. */
335 struct nesting * x_block_stack;
337 /* If any new stacks are added here, add them to POPSTACKS too. */
339 /* Chain of all pending binding contours that restore stack levels
340 or have cleanups. */
341 struct nesting * x_stack_block_stack;
343 /* Chain of all pending conditional statements. */
344 struct nesting * x_cond_stack;
346 /* Chain of all pending loops. */
347 struct nesting * x_loop_stack;
349 /* Chain of all pending case or switch statements. */
350 struct nesting * x_case_stack;
352 /* Separate chain including all of the above,
353 chained through the `all' field. */
354 struct nesting * x_nesting_stack;
356 /* Number of entries on nesting_stack now. */
357 int x_nesting_depth;
359 /* Number of binding contours started so far in this function. */
360 int x_block_start_count;
362 /* Each time we expand an expression-statement,
363 record the expr's type and its RTL value here. */
364 tree x_last_expr_type;
365 rtx x_last_expr_value;
367 /* Nonzero if within a ({...}) grouping, in which case we must
368 always compute a value for each expr-stmt in case it is the last one. */
369 int x_expr_stmts_for_value;
371 /* Filename and line number of last line-number note,
372 whether we actually emitted it or not. */
373 const char *x_emit_filename;
374 int x_emit_lineno;
376 struct goto_fixup *x_goto_fixup_chain;
379 #define block_stack (cfun->stmt->x_block_stack)
380 #define stack_block_stack (cfun->stmt->x_stack_block_stack)
381 #define cond_stack (cfun->stmt->x_cond_stack)
382 #define loop_stack (cfun->stmt->x_loop_stack)
383 #define case_stack (cfun->stmt->x_case_stack)
384 #define nesting_stack (cfun->stmt->x_nesting_stack)
385 #define nesting_depth (cfun->stmt->x_nesting_depth)
386 #define current_block_start_count (cfun->stmt->x_block_start_count)
387 #define last_expr_type (cfun->stmt->x_last_expr_type)
388 #define last_expr_value (cfun->stmt->x_last_expr_value)
389 #define expr_stmts_for_value (cfun->stmt->x_expr_stmts_for_value)
390 #define emit_filename (cfun->stmt->x_emit_filename)
391 #define emit_lineno (cfun->stmt->x_emit_lineno)
392 #define goto_fixup_chain (cfun->stmt->x_goto_fixup_chain)
394 /* Non-zero if we are using EH to handle cleanus. */
395 static int using_eh_for_cleanups_p = 0;
397 static int n_occurrences PARAMS ((int, const char *));
398 static bool parse_input_constraint PARAMS ((const char **, int, int, int,
399 int, const char * const *,
400 bool *, bool *));
401 static void expand_goto_internal PARAMS ((tree, rtx, rtx));
402 static int expand_fixup PARAMS ((tree, rtx, rtx));
403 static rtx expand_nl_handler_label PARAMS ((rtx, rtx));
404 static void expand_nl_goto_receiver PARAMS ((void));
405 static void expand_nl_goto_receivers PARAMS ((struct nesting *));
406 static void fixup_gotos PARAMS ((struct nesting *, rtx, tree,
407 rtx, int));
408 static bool check_operand_nalternatives PARAMS ((tree, tree));
409 static bool check_unique_operand_names PARAMS ((tree, tree));
410 static tree resolve_operand_names PARAMS ((tree, tree, tree,
411 const char **));
412 static char *resolve_operand_name_1 PARAMS ((char *, tree, tree));
413 static void expand_null_return_1 PARAMS ((rtx));
414 static enum br_predictor return_prediction PARAMS ((rtx));
415 static void expand_value_return PARAMS ((rtx));
416 static int tail_recursion_args PARAMS ((tree, tree));
417 static void expand_cleanups PARAMS ((tree, tree, int, int));
418 static void check_seenlabel PARAMS ((void));
419 static void do_jump_if_equal PARAMS ((rtx, rtx, rtx, int));
420 static int estimate_case_costs PARAMS ((case_node_ptr));
421 static void group_case_nodes PARAMS ((case_node_ptr));
422 static void balance_case_nodes PARAMS ((case_node_ptr *,
423 case_node_ptr));
424 static int node_has_low_bound PARAMS ((case_node_ptr, tree));
425 static int node_has_high_bound PARAMS ((case_node_ptr, tree));
426 static int node_is_bounded PARAMS ((case_node_ptr, tree));
427 static void emit_jump_if_reachable PARAMS ((rtx));
428 static void emit_case_nodes PARAMS ((rtx, case_node_ptr, rtx, tree));
429 static struct case_node *case_tree2list PARAMS ((case_node *, case_node *));
431 void
432 using_eh_for_cleanups ()
434 using_eh_for_cleanups_p = 1;
437 void
438 init_stmt_for_function ()
440 cfun->stmt = ((struct stmt_status *)ggc_alloc (sizeof (struct stmt_status)));
442 /* We are not currently within any block, conditional, loop or case. */
443 block_stack = 0;
444 stack_block_stack = 0;
445 loop_stack = 0;
446 case_stack = 0;
447 cond_stack = 0;
448 nesting_stack = 0;
449 nesting_depth = 0;
451 current_block_start_count = 0;
453 /* No gotos have been expanded yet. */
454 goto_fixup_chain = 0;
456 /* We are not processing a ({...}) grouping. */
457 expr_stmts_for_value = 0;
458 clear_last_expr ();
461 /* Return nonzero if anything is pushed on the loop, condition, or case
462 stack. */
464 in_control_zone_p ()
466 return cond_stack || loop_stack || case_stack;
469 /* Record the current file and line. Called from emit_line_note. */
470 void
471 set_file_and_line_for_stmt (file, line)
472 const char *file;
473 int line;
475 /* If we're outputting an inline function, and we add a line note,
476 there may be no CFUN->STMT information. So, there's no need to
477 update it. */
478 if (cfun->stmt)
480 emit_filename = file;
481 emit_lineno = line;
485 /* Emit a no-op instruction. */
487 void
488 emit_nop ()
490 rtx last_insn;
492 last_insn = get_last_insn ();
493 if (!optimize
494 && (GET_CODE (last_insn) == CODE_LABEL
495 || (GET_CODE (last_insn) == NOTE
496 && prev_real_insn (last_insn) == 0)))
497 emit_insn (gen_nop ());
500 /* Return the rtx-label that corresponds to a LABEL_DECL,
501 creating it if necessary. */
504 label_rtx (label)
505 tree label;
507 if (TREE_CODE (label) != LABEL_DECL)
508 abort ();
510 if (!DECL_RTL_SET_P (label))
511 SET_DECL_RTL (label, gen_label_rtx ());
513 return DECL_RTL (label);
517 /* Add an unconditional jump to LABEL as the next sequential instruction. */
519 void
520 emit_jump (label)
521 rtx label;
523 do_pending_stack_adjust ();
524 emit_jump_insn (gen_jump (label));
525 emit_barrier ();
528 /* Emit code to jump to the address
529 specified by the pointer expression EXP. */
531 void
532 expand_computed_goto (exp)
533 tree exp;
535 rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
537 #ifdef POINTERS_EXTEND_UNSIGNED
538 if (GET_MODE (x) != Pmode)
539 x = convert_memory_address (Pmode, x);
540 #endif
542 emit_queue ();
543 do_pending_stack_adjust ();
544 emit_indirect_jump (x);
546 current_function_has_computed_jump = 1;
549 /* Handle goto statements and the labels that they can go to. */
551 /* Specify the location in the RTL code of a label LABEL,
552 which is a LABEL_DECL tree node.
554 This is used for the kind of label that the user can jump to with a
555 goto statement, and for alternatives of a switch or case statement.
556 RTL labels generated for loops and conditionals don't go through here;
557 they are generated directly at the RTL level, by other functions below.
559 Note that this has nothing to do with defining label *names*.
560 Languages vary in how they do that and what that even means. */
562 void
563 expand_label (label)
564 tree label;
566 struct label_chain *p;
568 do_pending_stack_adjust ();
569 emit_label (label_rtx (label));
570 if (DECL_NAME (label))
571 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
573 if (stack_block_stack != 0)
575 p = (struct label_chain *) ggc_alloc (sizeof (struct label_chain));
576 p->next = stack_block_stack->data.block.label_chain;
577 stack_block_stack->data.block.label_chain = p;
578 p->label = label;
582 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
583 from nested functions. */
585 void
586 declare_nonlocal_label (label)
587 tree label;
589 rtx slot = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
591 nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
592 LABEL_PRESERVE_P (label_rtx (label)) = 1;
593 if (nonlocal_goto_handler_slots == 0)
595 emit_stack_save (SAVE_NONLOCAL,
596 &nonlocal_goto_stack_level,
597 PREV_INSN (tail_recursion_reentry));
599 nonlocal_goto_handler_slots
600 = gen_rtx_EXPR_LIST (VOIDmode, slot, nonlocal_goto_handler_slots);
603 /* Generate RTL code for a `goto' statement with target label LABEL.
604 LABEL should be a LABEL_DECL tree node that was or will later be
605 defined with `expand_label'. */
607 void
608 expand_goto (label)
609 tree label;
611 tree context;
613 /* Check for a nonlocal goto to a containing function. */
614 context = decl_function_context (label);
615 if (context != 0 && context != current_function_decl)
617 struct function *p = find_function_data (context);
618 rtx label_ref = gen_rtx_LABEL_REF (Pmode, label_rtx (label));
619 rtx handler_slot, static_chain, save_area, insn;
620 tree link;
622 /* Find the corresponding handler slot for this label. */
623 handler_slot = p->x_nonlocal_goto_handler_slots;
624 for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label;
625 link = TREE_CHAIN (link))
626 handler_slot = XEXP (handler_slot, 1);
627 handler_slot = XEXP (handler_slot, 0);
629 p->has_nonlocal_label = 1;
630 current_function_has_nonlocal_goto = 1;
631 LABEL_REF_NONLOCAL_P (label_ref) = 1;
633 /* Copy the rtl for the slots so that they won't be shared in
634 case the virtual stack vars register gets instantiated differently
635 in the parent than in the child. */
637 static_chain = copy_to_reg (lookup_static_chain (label));
639 /* Get addr of containing function's current nonlocal goto handler,
640 which will do any cleanups and then jump to the label. */
641 handler_slot = copy_to_reg (replace_rtx (copy_rtx (handler_slot),
642 virtual_stack_vars_rtx,
643 static_chain));
645 /* Get addr of containing function's nonlocal save area. */
646 save_area = p->x_nonlocal_goto_stack_level;
647 if (save_area)
648 save_area = replace_rtx (copy_rtx (save_area),
649 virtual_stack_vars_rtx, static_chain);
651 #if HAVE_nonlocal_goto
652 if (HAVE_nonlocal_goto)
653 emit_insn (gen_nonlocal_goto (static_chain, handler_slot,
654 save_area, label_ref));
655 else
656 #endif
658 /* Restore frame pointer for containing function.
659 This sets the actual hard register used for the frame pointer
660 to the location of the function's incoming static chain info.
661 The non-local goto handler will then adjust it to contain the
662 proper value and reload the argument pointer, if needed. */
663 emit_move_insn (hard_frame_pointer_rtx, static_chain);
664 emit_stack_restore (SAVE_NONLOCAL, save_area, NULL_RTX);
666 /* USE of hard_frame_pointer_rtx added for consistency;
667 not clear if really needed. */
668 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
669 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
670 emit_indirect_jump (handler_slot);
673 /* Search backwards to the jump insn and mark it as a
674 non-local goto. */
675 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
677 if (GET_CODE (insn) == JUMP_INSN)
679 REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO,
680 const0_rtx, REG_NOTES (insn));
681 break;
683 else if (GET_CODE (insn) == CALL_INSN)
684 break;
687 else
688 expand_goto_internal (label, label_rtx (label), NULL_RTX);
691 /* Generate RTL code for a `goto' statement with target label BODY.
692 LABEL should be a LABEL_REF.
693 LAST_INSN, if non-0, is the rtx we should consider as the last
694 insn emitted (for the purposes of cleaning up a return). */
696 static void
697 expand_goto_internal (body, label, last_insn)
698 tree body;
699 rtx label;
700 rtx last_insn;
702 struct nesting *block;
703 rtx stack_level = 0;
705 if (GET_CODE (label) != CODE_LABEL)
706 abort ();
708 /* If label has already been defined, we can tell now
709 whether and how we must alter the stack level. */
711 if (PREV_INSN (label) != 0)
713 /* Find the innermost pending block that contains the label.
714 (Check containment by comparing insn-uids.)
715 Then restore the outermost stack level within that block,
716 and do cleanups of all blocks contained in it. */
717 for (block = block_stack; block; block = block->next)
719 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
720 break;
721 if (block->data.block.stack_level != 0)
722 stack_level = block->data.block.stack_level;
723 /* Execute the cleanups for blocks we are exiting. */
724 if (block->data.block.cleanups != 0)
726 expand_cleanups (block->data.block.cleanups, NULL_TREE, 1, 1);
727 do_pending_stack_adjust ();
731 if (stack_level)
733 /* Ensure stack adjust isn't done by emit_jump, as this
734 would clobber the stack pointer. This one should be
735 deleted as dead by flow. */
736 clear_pending_stack_adjust ();
737 do_pending_stack_adjust ();
739 /* Don't do this adjust if it's to the end label and this function
740 is to return with a depressed stack pointer. */
741 if (label == return_label
742 && (((TREE_CODE (TREE_TYPE (current_function_decl))
743 == FUNCTION_TYPE)
744 && (TYPE_RETURNS_STACK_DEPRESSED
745 (TREE_TYPE (current_function_decl))))))
747 else
748 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
751 if (body != 0 && DECL_TOO_LATE (body))
752 error ("jump to `%s' invalidly jumps into binding contour",
753 IDENTIFIER_POINTER (DECL_NAME (body)));
755 /* Label not yet defined: may need to put this goto
756 on the fixup list. */
757 else if (! expand_fixup (body, label, last_insn))
759 /* No fixup needed. Record that the label is the target
760 of at least one goto that has no fixup. */
761 if (body != 0)
762 TREE_ADDRESSABLE (body) = 1;
765 emit_jump (label);
768 /* Generate if necessary a fixup for a goto
769 whose target label in tree structure (if any) is TREE_LABEL
770 and whose target in rtl is RTL_LABEL.
772 If LAST_INSN is nonzero, we pretend that the jump appears
773 after insn LAST_INSN instead of at the current point in the insn stream.
775 The fixup will be used later to insert insns just before the goto.
776 Those insns will restore the stack level as appropriate for the
777 target label, and will (in the case of C++) also invoke any object
778 destructors which have to be invoked when we exit the scopes which
779 are exited by the goto.
781 Value is nonzero if a fixup is made. */
783 static int
784 expand_fixup (tree_label, rtl_label, last_insn)
785 tree tree_label;
786 rtx rtl_label;
787 rtx last_insn;
789 struct nesting *block, *end_block;
791 /* See if we can recognize which block the label will be output in.
792 This is possible in some very common cases.
793 If we succeed, set END_BLOCK to that block.
794 Otherwise, set it to 0. */
796 if (cond_stack
797 && (rtl_label == cond_stack->data.cond.endif_label
798 || rtl_label == cond_stack->data.cond.next_label))
799 end_block = cond_stack;
800 /* If we are in a loop, recognize certain labels which
801 are likely targets. This reduces the number of fixups
802 we need to create. */
803 else if (loop_stack
804 && (rtl_label == loop_stack->data.loop.start_label
805 || rtl_label == loop_stack->data.loop.end_label
806 || rtl_label == loop_stack->data.loop.continue_label))
807 end_block = loop_stack;
808 else
809 end_block = 0;
811 /* Now set END_BLOCK to the binding level to which we will return. */
813 if (end_block)
815 struct nesting *next_block = end_block->all;
816 block = block_stack;
818 /* First see if the END_BLOCK is inside the innermost binding level.
819 If so, then no cleanups or stack levels are relevant. */
820 while (next_block && next_block != block)
821 next_block = next_block->all;
823 if (next_block)
824 return 0;
826 /* Otherwise, set END_BLOCK to the innermost binding level
827 which is outside the relevant control-structure nesting. */
828 next_block = block_stack->next;
829 for (block = block_stack; block != end_block; block = block->all)
830 if (block == next_block)
831 next_block = next_block->next;
832 end_block = next_block;
835 /* Does any containing block have a stack level or cleanups?
836 If not, no fixup is needed, and that is the normal case
837 (the only case, for standard C). */
838 for (block = block_stack; block != end_block; block = block->next)
839 if (block->data.block.stack_level != 0
840 || block->data.block.cleanups != 0)
841 break;
843 if (block != end_block)
845 /* Ok, a fixup is needed. Add a fixup to the list of such. */
846 struct goto_fixup *fixup
847 = (struct goto_fixup *) ggc_alloc (sizeof (struct goto_fixup));
848 /* In case an old stack level is restored, make sure that comes
849 after any pending stack adjust. */
850 /* ?? If the fixup isn't to come at the present position,
851 doing the stack adjust here isn't useful. Doing it with our
852 settings at that location isn't useful either. Let's hope
853 someone does it! */
854 if (last_insn == 0)
855 do_pending_stack_adjust ();
856 fixup->target = tree_label;
857 fixup->target_rtl = rtl_label;
859 /* Create a BLOCK node and a corresponding matched set of
860 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
861 this point. The notes will encapsulate any and all fixup
862 code which we might later insert at this point in the insn
863 stream. Also, the BLOCK node will be the parent (i.e. the
864 `SUPERBLOCK') of any other BLOCK nodes which we might create
865 later on when we are expanding the fixup code.
867 Note that optimization passes (including expand_end_loop)
868 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
869 as a placeholder. */
872 rtx original_before_jump
873 = last_insn ? last_insn : get_last_insn ();
874 rtx start;
875 rtx end;
876 tree block;
878 block = make_node (BLOCK);
879 TREE_USED (block) = 1;
881 if (!cfun->x_whole_function_mode_p)
882 (*lang_hooks.decls.insert_block) (block);
883 else
885 BLOCK_CHAIN (block)
886 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
887 BLOCK_CHAIN (DECL_INITIAL (current_function_decl))
888 = block;
891 start_sequence ();
892 start = emit_note (NULL, NOTE_INSN_BLOCK_BEG);
893 if (cfun->x_whole_function_mode_p)
894 NOTE_BLOCK (start) = block;
895 fixup->before_jump = emit_note (NULL, NOTE_INSN_DELETED);
896 end = emit_note (NULL, NOTE_INSN_BLOCK_END);
897 if (cfun->x_whole_function_mode_p)
898 NOTE_BLOCK (end) = block;
899 fixup->context = block;
900 end_sequence ();
901 emit_insn_after (start, original_before_jump);
904 fixup->block_start_count = current_block_start_count;
905 fixup->stack_level = 0;
906 fixup->cleanup_list_list
907 = ((block->data.block.outer_cleanups
908 || block->data.block.cleanups)
909 ? tree_cons (NULL_TREE, block->data.block.cleanups,
910 block->data.block.outer_cleanups)
911 : 0);
912 fixup->next = goto_fixup_chain;
913 goto_fixup_chain = fixup;
916 return block != 0;
919 /* Expand any needed fixups in the outputmost binding level of the
920 function. FIRST_INSN is the first insn in the function. */
922 void
923 expand_fixups (first_insn)
924 rtx first_insn;
926 fixup_gotos (NULL, NULL_RTX, NULL_TREE, first_insn, 0);
929 /* When exiting a binding contour, process all pending gotos requiring fixups.
930 THISBLOCK is the structure that describes the block being exited.
931 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
932 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
933 FIRST_INSN is the insn that began this contour.
935 Gotos that jump out of this contour must restore the
936 stack level and do the cleanups before actually jumping.
938 DONT_JUMP_IN nonzero means report error there is a jump into this
939 contour from before the beginning of the contour.
940 This is also done if STACK_LEVEL is nonzero. */
942 static void
943 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
944 struct nesting *thisblock;
945 rtx stack_level;
946 tree cleanup_list;
947 rtx first_insn;
948 int dont_jump_in;
950 struct goto_fixup *f, *prev;
952 /* F is the fixup we are considering; PREV is the previous one. */
953 /* We run this loop in two passes so that cleanups of exited blocks
954 are run first, and blocks that are exited are marked so
955 afterwards. */
957 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
959 /* Test for a fixup that is inactive because it is already handled. */
960 if (f->before_jump == 0)
962 /* Delete inactive fixup from the chain, if that is easy to do. */
963 if (prev != 0)
964 prev->next = f->next;
966 /* Has this fixup's target label been defined?
967 If so, we can finalize it. */
968 else if (PREV_INSN (f->target_rtl) != 0)
970 rtx cleanup_insns;
972 /* If this fixup jumped into this contour from before the beginning
973 of this contour, report an error. This code used to use
974 the first non-label insn after f->target_rtl, but that's
975 wrong since such can be added, by things like put_var_into_stack
976 and have INSN_UIDs that are out of the range of the block. */
977 /* ??? Bug: this does not detect jumping in through intermediate
978 blocks that have stack levels or cleanups.
979 It detects only a problem with the innermost block
980 around the label. */
981 if (f->target != 0
982 && (dont_jump_in || stack_level || cleanup_list)
983 && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
984 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
985 && ! DECL_ERROR_ISSUED (f->target))
987 error_with_decl (f->target,
988 "label `%s' used before containing binding contour");
989 /* Prevent multiple errors for one label. */
990 DECL_ERROR_ISSUED (f->target) = 1;
993 /* We will expand the cleanups into a sequence of their own and
994 then later on we will attach this new sequence to the insn
995 stream just ahead of the actual jump insn. */
997 start_sequence ();
999 /* Temporarily restore the lexical context where we will
1000 logically be inserting the fixup code. We do this for the
1001 sake of getting the debugging information right. */
1003 (*lang_hooks.decls.pushlevel) (0);
1004 (*lang_hooks.decls.set_block) (f->context);
1006 /* Expand the cleanups for blocks this jump exits. */
1007 if (f->cleanup_list_list)
1009 tree lists;
1010 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1011 /* Marked elements correspond to blocks that have been closed.
1012 Do their cleanups. */
1013 if (TREE_ADDRESSABLE (lists)
1014 && TREE_VALUE (lists) != 0)
1016 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1017 /* Pop any pushes done in the cleanups,
1018 in case function is about to return. */
1019 do_pending_stack_adjust ();
1023 /* Restore stack level for the biggest contour that this
1024 jump jumps out of. */
1025 if (f->stack_level
1026 && ! (f->target_rtl == return_label
1027 && ((TREE_CODE (TREE_TYPE (current_function_decl))
1028 == FUNCTION_TYPE)
1029 && (TYPE_RETURNS_STACK_DEPRESSED
1030 (TREE_TYPE (current_function_decl))))))
1031 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1033 /* Finish up the sequence containing the insns which implement the
1034 necessary cleanups, and then attach that whole sequence to the
1035 insn stream just ahead of the actual jump insn. Attaching it
1036 at that point insures that any cleanups which are in fact
1037 implicit C++ object destructions (which must be executed upon
1038 leaving the block) appear (to the debugger) to be taking place
1039 in an area of the generated code where the object(s) being
1040 destructed are still "in scope". */
1042 cleanup_insns = get_insns ();
1043 (*lang_hooks.decls.poplevel) (1, 0, 0);
1045 end_sequence ();
1046 emit_insn_after (cleanup_insns, f->before_jump);
1048 f->before_jump = 0;
1052 /* For any still-undefined labels, do the cleanups for this block now.
1053 We must do this now since items in the cleanup list may go out
1054 of scope when the block ends. */
1055 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1056 if (f->before_jump != 0
1057 && PREV_INSN (f->target_rtl) == 0
1058 /* Label has still not appeared. If we are exiting a block with
1059 a stack level to restore, that started before the fixup,
1060 mark this stack level as needing restoration
1061 when the fixup is later finalized. */
1062 && thisblock != 0
1063 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1064 means the label is undefined. That's erroneous, but possible. */
1065 && (thisblock->data.block.block_start_count
1066 <= f->block_start_count))
1068 tree lists = f->cleanup_list_list;
1069 rtx cleanup_insns;
1071 for (; lists; lists = TREE_CHAIN (lists))
1072 /* If the following elt. corresponds to our containing block
1073 then the elt. must be for this block. */
1074 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1076 start_sequence ();
1077 (*lang_hooks.decls.pushlevel) (0);
1078 (*lang_hooks.decls.set_block) (f->context);
1079 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1080 do_pending_stack_adjust ();
1081 cleanup_insns = get_insns ();
1082 (*lang_hooks.decls.poplevel) (1, 0, 0);
1083 end_sequence ();
1084 if (cleanup_insns != 0)
1085 f->before_jump
1086 = emit_insn_after (cleanup_insns, f->before_jump);
1088 f->cleanup_list_list = TREE_CHAIN (lists);
1091 if (stack_level)
1092 f->stack_level = stack_level;
1096 /* Return the number of times character C occurs in string S. */
1097 static int
1098 n_occurrences (c, s)
1099 int c;
1100 const char *s;
1102 int n = 0;
1103 while (*s)
1104 n += (*s++ == c);
1105 return n;
1108 /* Generate RTL for an asm statement (explicit assembler code).
1109 BODY is a STRING_CST node containing the assembler code text,
1110 or an ADDR_EXPR containing a STRING_CST. */
1112 void
1113 expand_asm (body)
1114 tree body;
1116 if (TREE_CODE (body) == ADDR_EXPR)
1117 body = TREE_OPERAND (body, 0);
1119 emit_insn (gen_rtx_ASM_INPUT (VOIDmode,
1120 TREE_STRING_POINTER (body)));
1121 clear_last_expr ();
1124 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
1125 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
1126 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
1127 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
1128 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
1129 constraint allows the use of a register operand. And, *IS_INOUT
1130 will be true if the operand is read-write, i.e., if it is used as
1131 an input as well as an output. If *CONSTRAINT_P is not in
1132 canonical form, it will be made canonical. (Note that `+' will be
1133 rpelaced with `=' as part of this process.)
1135 Returns TRUE if all went well; FALSE if an error occurred. */
1137 bool
1138 parse_output_constraint (constraint_p, operand_num, ninputs, noutputs,
1139 allows_mem, allows_reg, is_inout)
1140 const char **constraint_p;
1141 int operand_num;
1142 int ninputs;
1143 int noutputs;
1144 bool *allows_mem;
1145 bool *allows_reg;
1146 bool *is_inout;
1148 const char *constraint = *constraint_p;
1149 const char *p;
1151 /* Assume the constraint doesn't allow the use of either a register
1152 or memory. */
1153 *allows_mem = false;
1154 *allows_reg = false;
1156 /* Allow the `=' or `+' to not be at the beginning of the string,
1157 since it wasn't explicitly documented that way, and there is a
1158 large body of code that puts it last. Swap the character to
1159 the front, so as not to uglify any place else. */
1160 p = strchr (constraint, '=');
1161 if (!p)
1162 p = strchr (constraint, '+');
1164 /* If the string doesn't contain an `=', issue an error
1165 message. */
1166 if (!p)
1168 error ("output operand constraint lacks `='");
1169 return false;
1172 /* If the constraint begins with `+', then the operand is both read
1173 from and written to. */
1174 *is_inout = (*p == '+');
1176 /* Canonicalize the output constraint so that it begins with `='. */
1177 if (p != constraint || is_inout)
1179 char *buf;
1180 size_t c_len = strlen (constraint);
1182 if (p != constraint)
1183 warning ("output constraint `%c' for operand %d is not at the beginning",
1184 *p, operand_num);
1186 /* Make a copy of the constraint. */
1187 buf = alloca (c_len + 1);
1188 strcpy (buf, constraint);
1189 /* Swap the first character and the `=' or `+'. */
1190 buf[p - constraint] = buf[0];
1191 /* Make sure the first character is an `='. (Until we do this,
1192 it might be a `+'.) */
1193 buf[0] = '=';
1194 /* Replace the constraint with the canonicalized string. */
1195 *constraint_p = ggc_alloc_string (buf, c_len);
1196 constraint = *constraint_p;
1199 /* Loop through the constraint string. */
1200 for (p = constraint + 1; *p; ++p)
1201 switch (*p)
1203 case '+':
1204 case '=':
1205 error ("operand constraint contains incorrectly positioned '+' or '='");
1206 return false;
1208 case '%':
1209 if (operand_num + 1 == ninputs + noutputs)
1211 error ("`%%' constraint used with last operand");
1212 return false;
1214 break;
1216 case 'V': case 'm': case 'o':
1217 *allows_mem = true;
1218 break;
1220 case '?': case '!': case '*': case '&': case '#':
1221 case 'E': case 'F': case 'G': case 'H':
1222 case 's': case 'i': case 'n':
1223 case 'I': case 'J': case 'K': case 'L': case 'M':
1224 case 'N': case 'O': case 'P': case ',':
1225 break;
1227 case '0': case '1': case '2': case '3': case '4':
1228 case '5': case '6': case '7': case '8': case '9':
1229 case '[':
1230 error ("matching constraint not valid in output operand");
1231 return false;
1233 case '<': case '>':
1234 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1235 excepting those that expand_call created. So match memory
1236 and hope. */
1237 *allows_mem = true;
1238 break;
1240 case 'g': case 'X':
1241 *allows_reg = true;
1242 *allows_mem = true;
1243 break;
1245 case 'p': case 'r':
1246 *allows_reg = true;
1247 break;
1249 default:
1250 if (!ISALPHA (*p))
1251 break;
1252 if (REG_CLASS_FROM_LETTER (*p) != NO_REGS)
1253 *allows_reg = true;
1254 #ifdef EXTRA_CONSTRAINT
1255 else if (EXTRA_ADDRESS_CONSTRAINT (*p))
1256 *allows_reg = true;
1257 else if (EXTRA_MEMORY_CONSTRAINT (*p))
1258 *allows_mem = true;
1259 else
1261 /* Otherwise we can't assume anything about the nature of
1262 the constraint except that it isn't purely registers.
1263 Treat it like "g" and hope for the best. */
1264 *allows_reg = true;
1265 *allows_mem = true;
1267 #endif
1268 break;
1271 return true;
1274 /* Similar, but for input constraints. */
1276 static bool
1277 parse_input_constraint (constraint_p, input_num, ninputs, noutputs, ninout,
1278 constraints, allows_mem, allows_reg)
1279 const char **constraint_p;
1280 int input_num;
1281 int ninputs;
1282 int noutputs;
1283 int ninout;
1284 const char * const * constraints;
1285 bool *allows_mem;
1286 bool *allows_reg;
1288 const char *constraint = *constraint_p;
1289 const char *orig_constraint = constraint;
1290 size_t c_len = strlen (constraint);
1291 size_t j;
1293 /* Assume the constraint doesn't allow the use of either
1294 a register or memory. */
1295 *allows_mem = false;
1296 *allows_reg = false;
1298 /* Make sure constraint has neither `=', `+', nor '&'. */
1300 for (j = 0; j < c_len; j++)
1301 switch (constraint[j])
1303 case '+': case '=': case '&':
1304 if (constraint == orig_constraint)
1306 error ("input operand constraint contains `%c'", constraint[j]);
1307 return false;
1309 break;
1311 case '%':
1312 if (constraint == orig_constraint
1313 && input_num + 1 == ninputs - ninout)
1315 error ("`%%' constraint used with last operand");
1316 return false;
1318 break;
1320 case 'V': case 'm': case 'o':
1321 *allows_mem = true;
1322 break;
1324 case '<': case '>':
1325 case '?': case '!': case '*': case '#':
1326 case 'E': case 'F': case 'G': case 'H':
1327 case 's': case 'i': case 'n':
1328 case 'I': case 'J': case 'K': case 'L': case 'M':
1329 case 'N': case 'O': case 'P': case ',':
1330 break;
1332 /* Whether or not a numeric constraint allows a register is
1333 decided by the matching constraint, and so there is no need
1334 to do anything special with them. We must handle them in
1335 the default case, so that we don't unnecessarily force
1336 operands to memory. */
1337 case '0': case '1': case '2': case '3': case '4':
1338 case '5': case '6': case '7': case '8': case '9':
1340 char *end;
1341 unsigned long match;
1343 match = strtoul (constraint + j, &end, 10);
1344 if (match >= (unsigned long) noutputs)
1346 error ("matching constraint references invalid operand number");
1347 return false;
1350 /* Try and find the real constraint for this dup. Only do this
1351 if the matching constraint is the only alternative. */
1352 if (*end == '\0'
1353 && (j == 0 || (j == 1 && constraint[0] == '%')))
1355 constraint = constraints[match];
1356 *constraint_p = constraint;
1357 c_len = strlen (constraint);
1358 j = 0;
1359 break;
1361 else
1362 j = end - constraint;
1364 /* Fall through. */
1366 case 'p': case 'r':
1367 *allows_reg = true;
1368 break;
1370 case 'g': case 'X':
1371 *allows_reg = true;
1372 *allows_mem = true;
1373 break;
1375 default:
1376 if (! ISALPHA (constraint[j]))
1378 error ("invalid punctuation `%c' in constraint", constraint[j]);
1379 return false;
1381 if (REG_CLASS_FROM_LETTER (constraint[j]) != NO_REGS)
1382 *allows_reg = true;
1383 #ifdef EXTRA_CONSTRAINT
1384 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j]))
1385 *allows_reg = true;
1386 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j]))
1387 *allows_mem = true;
1388 else
1390 /* Otherwise we can't assume anything about the nature of
1391 the constraint except that it isn't purely registers.
1392 Treat it like "g" and hope for the best. */
1393 *allows_reg = true;
1394 *allows_mem = true;
1396 #endif
1397 break;
1400 return true;
1403 /* Generate RTL for an asm statement with arguments.
1404 STRING is the instruction template.
1405 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1406 Each output or input has an expression in the TREE_VALUE and
1407 and a tree list in TREE_PURPOSE which in turn contains a constraint
1408 name in TREE_VALUE (or NULL_TREE) and a constraint string
1409 in TREE_PURPOSE.
1410 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1411 that is clobbered by this insn.
1413 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1414 Some elements of OUTPUTS may be replaced with trees representing temporary
1415 values. The caller should copy those temporary values to the originally
1416 specified lvalues.
1418 VOL nonzero means the insn is volatile; don't optimize it. */
1420 void
1421 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1422 tree string, outputs, inputs, clobbers;
1423 int vol;
1424 const char *filename;
1425 int line;
1427 rtvec argvec, constraintvec;
1428 rtx body;
1429 int ninputs = list_length (inputs);
1430 int noutputs = list_length (outputs);
1431 int ninout;
1432 int nclobbers;
1433 tree tail;
1434 int i;
1435 /* Vector of RTX's of evaluated output operands. */
1436 rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1437 int *inout_opnum = (int *) alloca (noutputs * sizeof (int));
1438 rtx *real_output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1439 enum machine_mode *inout_mode
1440 = (enum machine_mode *) alloca (noutputs * sizeof (enum machine_mode));
1441 const char **constraints
1442 = (const char **) alloca ((noutputs + ninputs) * sizeof (const char *));
1443 /* The insn we have emitted. */
1444 rtx insn;
1445 int old_generating_concat_p = generating_concat_p;
1447 /* An ASM with no outputs needs to be treated as volatile, for now. */
1448 if (noutputs == 0)
1449 vol = 1;
1451 if (! check_operand_nalternatives (outputs, inputs))
1452 return;
1454 if (! check_unique_operand_names (outputs, inputs))
1455 return;
1457 string = resolve_operand_names (string, outputs, inputs, constraints);
1459 #ifdef MD_ASM_CLOBBERS
1460 /* Sometimes we wish to automatically clobber registers across an asm.
1461 Case in point is when the i386 backend moved from cc0 to a hard reg --
1462 maintaining source-level compatibility means automatically clobbering
1463 the flags register. */
1464 MD_ASM_CLOBBERS (clobbers);
1465 #endif
1467 /* Count the number of meaningful clobbered registers, ignoring what
1468 we would ignore later. */
1469 nclobbers = 0;
1470 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1472 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1474 i = decode_reg_name (regname);
1475 if (i >= 0 || i == -4)
1476 ++nclobbers;
1477 else if (i == -2)
1478 error ("unknown register name `%s' in `asm'", regname);
1481 clear_last_expr ();
1483 /* First pass over inputs and outputs checks validity and sets
1484 mark_addressable if needed. */
1486 ninout = 0;
1487 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1489 tree val = TREE_VALUE (tail);
1490 tree type = TREE_TYPE (val);
1491 const char *constraint;
1492 bool is_inout;
1493 bool allows_reg;
1494 bool allows_mem;
1496 /* If there's an erroneous arg, emit no insn. */
1497 if (type == error_mark_node)
1498 return;
1500 /* Try to parse the output constraint. If that fails, there's
1501 no point in going further. */
1502 constraint = constraints[i];
1503 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
1504 &allows_mem, &allows_reg, &is_inout))
1505 return;
1507 if (! allows_reg
1508 && (allows_mem
1509 || is_inout
1510 || (DECL_P (val)
1511 && GET_CODE (DECL_RTL (val)) == REG
1512 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
1513 (*lang_hooks.mark_addressable) (val);
1515 if (is_inout)
1516 ninout++;
1519 ninputs += ninout;
1520 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1522 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1523 return;
1526 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
1528 bool allows_reg, allows_mem;
1529 const char *constraint;
1531 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
1532 would get VOIDmode and that could cause a crash in reload. */
1533 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1534 return;
1536 constraint = constraints[i + noutputs];
1537 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1538 constraints, &allows_mem, &allows_reg))
1539 return;
1541 if (! allows_reg && allows_mem)
1542 (*lang_hooks.mark_addressable) (TREE_VALUE (tail));
1545 /* Second pass evaluates arguments. */
1547 ninout = 0;
1548 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1550 tree val = TREE_VALUE (tail);
1551 tree type = TREE_TYPE (val);
1552 bool is_inout;
1553 bool allows_reg;
1554 bool allows_mem;
1556 if (!parse_output_constraint (&constraints[i], i, ninputs,
1557 noutputs, &allows_mem, &allows_reg,
1558 &is_inout))
1559 abort ();
1561 /* If an output operand is not a decl or indirect ref and our constraint
1562 allows a register, make a temporary to act as an intermediate.
1563 Make the asm insn write into that, then our caller will copy it to
1564 the real output operand. Likewise for promoted variables. */
1566 generating_concat_p = 0;
1568 real_output_rtx[i] = NULL_RTX;
1569 if ((TREE_CODE (val) == INDIRECT_REF
1570 && allows_mem)
1571 || (DECL_P (val)
1572 && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1573 && ! (GET_CODE (DECL_RTL (val)) == REG
1574 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1575 || ! allows_reg
1576 || is_inout)
1578 output_rtx[i] = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
1580 if (! allows_reg && GET_CODE (output_rtx[i]) != MEM)
1581 error ("output number %d not directly addressable", i);
1582 if ((! allows_mem && GET_CODE (output_rtx[i]) == MEM)
1583 || GET_CODE (output_rtx[i]) == CONCAT)
1585 real_output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1586 output_rtx[i] = gen_reg_rtx (GET_MODE (output_rtx[i]));
1587 if (is_inout)
1588 emit_move_insn (output_rtx[i], real_output_rtx[i]);
1591 else
1593 output_rtx[i] = assign_temp (type, 0, 0, 1);
1594 TREE_VALUE (tail) = make_tree (type, output_rtx[i]);
1597 generating_concat_p = old_generating_concat_p;
1599 if (is_inout)
1601 inout_mode[ninout] = TYPE_MODE (type);
1602 inout_opnum[ninout++] = i;
1606 /* Make vectors for the expression-rtx, constraint strings,
1607 and named operands. */
1609 argvec = rtvec_alloc (ninputs);
1610 constraintvec = rtvec_alloc (ninputs);
1612 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
1613 : GET_MODE (output_rtx[0])),
1614 TREE_STRING_POINTER (string),
1615 empty_string, 0, argvec, constraintvec,
1616 filename, line);
1618 MEM_VOLATILE_P (body) = vol;
1620 /* Eval the inputs and put them into ARGVEC.
1621 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1623 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
1625 bool allows_reg, allows_mem;
1626 const char *constraint;
1627 tree val, type;
1628 rtx op;
1630 constraint = constraints[i + noutputs];
1631 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1632 constraints, &allows_mem, &allows_reg))
1633 abort ();
1635 generating_concat_p = 0;
1637 val = TREE_VALUE (tail);
1638 type = TREE_TYPE (val);
1639 op = expand_expr (val, NULL_RTX, VOIDmode, 0);
1641 /* Never pass a CONCAT to an ASM. */
1642 if (GET_CODE (op) == CONCAT)
1643 op = force_reg (GET_MODE (op), op);
1645 if (asm_operand_ok (op, constraint) <= 0)
1647 if (allows_reg)
1648 op = force_reg (TYPE_MODE (type), op);
1649 else if (!allows_mem)
1650 warning ("asm operand %d probably doesn't match constraints",
1651 i + noutputs);
1652 else if (CONSTANT_P (op))
1653 op = force_const_mem (TYPE_MODE (type), op);
1654 else if (GET_CODE (op) == REG
1655 || GET_CODE (op) == SUBREG
1656 || GET_CODE (op) == ADDRESSOF
1657 || GET_CODE (op) == CONCAT)
1659 tree qual_type = build_qualified_type (type,
1660 (TYPE_QUALS (type)
1661 | TYPE_QUAL_CONST));
1662 rtx memloc = assign_temp (qual_type, 1, 1, 1);
1664 emit_move_insn (memloc, op);
1665 op = memloc;
1668 else if (GET_CODE (op) == MEM && MEM_VOLATILE_P (op))
1670 /* We won't recognize volatile memory as available a
1671 memory_operand at this point. Ignore it. */
1673 else if (queued_subexp_p (op))
1675 else
1676 /* ??? Leave this only until we have experience with what
1677 happens in combine and elsewhere when constraints are
1678 not satisfied. */
1679 warning ("asm operand %d probably doesn't match constraints",
1680 i + noutputs);
1683 generating_concat_p = old_generating_concat_p;
1684 ASM_OPERANDS_INPUT (body, i) = op;
1686 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
1687 = gen_rtx_ASM_INPUT (TYPE_MODE (type), constraints[i + noutputs]);
1690 /* Protect all the operands from the queue now that they have all been
1691 evaluated. */
1693 generating_concat_p = 0;
1695 for (i = 0; i < ninputs - ninout; i++)
1696 ASM_OPERANDS_INPUT (body, i)
1697 = protect_from_queue (ASM_OPERANDS_INPUT (body, i), 0);
1699 for (i = 0; i < noutputs; i++)
1700 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1702 /* For in-out operands, copy output rtx to input rtx. */
1703 for (i = 0; i < ninout; i++)
1705 int j = inout_opnum[i];
1706 char buffer[16];
1708 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
1709 = output_rtx[j];
1711 sprintf (buffer, "%d", j);
1712 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
1713 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_alloc_string (buffer, -1));
1716 generating_concat_p = old_generating_concat_p;
1718 /* Now, for each output, construct an rtx
1719 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
1720 ARGVEC CONSTRAINTS OPNAMES))
1721 If there is more than one, put them inside a PARALLEL. */
1723 if (noutputs == 1 && nclobbers == 0)
1725 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = constraints[0];
1726 insn = emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1729 else if (noutputs == 0 && nclobbers == 0)
1731 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1732 insn = emit_insn (body);
1735 else
1737 rtx obody = body;
1738 int num = noutputs;
1740 if (num == 0)
1741 num = 1;
1743 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1745 /* For each output operand, store a SET. */
1746 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1748 XVECEXP (body, 0, i)
1749 = gen_rtx_SET (VOIDmode,
1750 output_rtx[i],
1751 gen_rtx_ASM_OPERANDS
1752 (GET_MODE (output_rtx[i]),
1753 TREE_STRING_POINTER (string),
1754 constraints[i], i, argvec, constraintvec,
1755 filename, line));
1757 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1760 /* If there are no outputs (but there are some clobbers)
1761 store the bare ASM_OPERANDS into the PARALLEL. */
1763 if (i == 0)
1764 XVECEXP (body, 0, i++) = obody;
1766 /* Store (clobber REG) for each clobbered register specified. */
1768 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1770 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1771 int j = decode_reg_name (regname);
1773 if (j < 0)
1775 if (j == -3) /* `cc', which is not a register */
1776 continue;
1778 if (j == -4) /* `memory', don't cache memory across asm */
1780 XVECEXP (body, 0, i++)
1781 = gen_rtx_CLOBBER (VOIDmode,
1782 gen_rtx_MEM
1783 (BLKmode,
1784 gen_rtx_SCRATCH (VOIDmode)));
1785 continue;
1788 /* Ignore unknown register, error already signaled. */
1789 continue;
1792 /* Use QImode since that's guaranteed to clobber just one reg. */
1793 XVECEXP (body, 0, i++)
1794 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (QImode, j));
1797 insn = emit_insn (body);
1800 /* For any outputs that needed reloading into registers, spill them
1801 back to where they belong. */
1802 for (i = 0; i < noutputs; ++i)
1803 if (real_output_rtx[i])
1804 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1806 free_temp_slots ();
1809 /* A subroutine of expand_asm_operands. Check that all operands have
1810 the same number of alternatives. Return true if so. */
1812 static bool
1813 check_operand_nalternatives (outputs, inputs)
1814 tree outputs, inputs;
1816 if (outputs || inputs)
1818 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1819 int nalternatives
1820 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1821 tree next = inputs;
1823 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1825 error ("too many alternatives in `asm'");
1826 return false;
1829 tmp = outputs;
1830 while (tmp)
1832 const char *constraint
1833 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1835 if (n_occurrences (',', constraint) != nalternatives)
1837 error ("operand constraints for `asm' differ in number of alternatives");
1838 return false;
1841 if (TREE_CHAIN (tmp))
1842 tmp = TREE_CHAIN (tmp);
1843 else
1844 tmp = next, next = 0;
1848 return true;
1851 /* A subroutine of expand_asm_operands. Check that all operand names
1852 are unique. Return true if so. We rely on the fact that these names
1853 are identifiers, and so have been canonicalized by get_identifier,
1854 so all we need are pointer comparisons. */
1856 static bool
1857 check_unique_operand_names (outputs, inputs)
1858 tree outputs, inputs;
1860 tree i, j;
1862 for (i = outputs; i ; i = TREE_CHAIN (i))
1864 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1865 if (! i_name)
1866 continue;
1868 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1869 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1870 goto failure;
1873 for (i = inputs; i ; i = TREE_CHAIN (i))
1875 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1876 if (! i_name)
1877 continue;
1879 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1880 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1881 goto failure;
1882 for (j = outputs; j ; j = TREE_CHAIN (j))
1883 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1884 goto failure;
1887 return true;
1889 failure:
1890 error ("duplicate asm operand name '%s'",
1891 TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i))));
1892 return false;
1895 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1896 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1897 STRING and in the constraints to those numbers. */
1899 static tree
1900 resolve_operand_names (string, outputs, inputs, pconstraints)
1901 tree string;
1902 tree outputs, inputs;
1903 const char **pconstraints;
1905 char *buffer = xstrdup (TREE_STRING_POINTER (string));
1906 char *p;
1907 tree t;
1909 /* Assume that we will not need extra space to perform the substitution.
1910 This because we get to remove '[' and ']', which means we cannot have
1911 a problem until we have more than 999 operands. */
1913 p = buffer;
1914 while ((p = strchr (p, '%')) != NULL)
1916 if (p[1] == '[')
1917 p += 1;
1918 else if (ISALPHA (p[1]) && p[2] == '[')
1919 p += 2;
1920 else
1922 p += 1;
1923 continue;
1926 p = resolve_operand_name_1 (p, outputs, inputs);
1929 string = build_string (strlen (buffer), buffer);
1930 free (buffer);
1932 /* Collect output constraints here because it's convenient.
1933 There should be no named operands here; this is verified
1934 in expand_asm_operand. */
1935 for (t = outputs; t ; t = TREE_CHAIN (t), pconstraints++)
1936 *pconstraints = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1938 /* Substitute [<name>] in input constraint strings. */
1939 for (t = inputs; t ; t = TREE_CHAIN (t), pconstraints++)
1941 const char *c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1942 if (strchr (c, '[') == NULL)
1943 *pconstraints = c;
1944 else
1946 p = buffer = xstrdup (c);
1947 while ((p = strchr (p, '[')) != NULL)
1948 p = resolve_operand_name_1 (p, outputs, inputs);
1950 *pconstraints = ggc_alloc_string (buffer, -1);
1951 free (buffer);
1955 return string;
1958 /* A subroutine of resolve_operand_names. P points to the '[' for a
1959 potential named operand of the form [<name>]. In place, replace
1960 the name and brackets with a number. Return a pointer to the
1961 balance of the string after substitution. */
1963 static char *
1964 resolve_operand_name_1 (p, outputs, inputs)
1965 char *p;
1966 tree outputs, inputs;
1968 char *q;
1969 int op;
1970 tree t;
1971 size_t len;
1973 /* Collect the operand name. */
1974 q = strchr (p, ']');
1975 if (!q)
1977 error ("missing close brace for named operand");
1978 return strchr (p, '\0');
1980 len = q - p - 1;
1982 /* Resolve the name to a number. */
1983 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
1985 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1986 if (name)
1988 const char *c = TREE_STRING_POINTER (name);
1989 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
1990 goto found;
1993 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
1995 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1996 if (name)
1998 const char *c = TREE_STRING_POINTER (name);
1999 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
2000 goto found;
2004 *q = '\0';
2005 error ("undefined named operand '%s'", p + 1);
2006 op = 0;
2007 found:
2009 /* Replace the name with the number. Unfortunately, not all libraries
2010 get the return value of sprintf correct, so search for the end of the
2011 generated string by hand. */
2012 sprintf (p, "%d", op);
2013 p = strchr (p, '\0');
2015 /* Verify the no extra buffer space assumption. */
2016 if (p > q)
2017 abort ();
2019 /* Shift the rest of the buffer down to fill the gap. */
2020 memmove (p, q + 1, strlen (q + 1) + 1);
2022 return p;
2025 /* Generate RTL to evaluate the expression EXP
2026 and remember it in case this is the VALUE in a ({... VALUE; }) constr.
2027 Provided just for backward-compatibility. expand_expr_stmt_value()
2028 should be used for new code. */
2030 void
2031 expand_expr_stmt (exp)
2032 tree exp;
2034 expand_expr_stmt_value (exp, -1, 1);
2037 /* Generate RTL to evaluate the expression EXP. WANT_VALUE tells
2038 whether to (1) save the value of the expression, (0) discard it or
2039 (-1) use expr_stmts_for_value to tell. The use of -1 is
2040 deprecated, and retained only for backward compatibility. */
2042 void
2043 expand_expr_stmt_value (exp, want_value, maybe_last)
2044 tree exp;
2045 int want_value, maybe_last;
2047 rtx value;
2048 tree type;
2050 if (want_value == -1)
2051 want_value = expr_stmts_for_value != 0;
2053 /* If -W, warn about statements with no side effects,
2054 except for an explicit cast to void (e.g. for assert()), and
2055 except for last statement in ({...}) where they may be useful. */
2056 if (! want_value
2057 && (expr_stmts_for_value == 0 || ! maybe_last)
2058 && exp != error_mark_node)
2060 if (! TREE_SIDE_EFFECTS (exp))
2062 if ((extra_warnings || warn_unused_value)
2063 && !(TREE_CODE (exp) == CONVERT_EXPR
2064 && VOID_TYPE_P (TREE_TYPE (exp))))
2065 warning_with_file_and_line (emit_filename, emit_lineno,
2066 "statement with no effect");
2068 else if (warn_unused_value)
2069 warn_if_unused_value (exp);
2072 /* If EXP is of function type and we are expanding statements for
2073 value, convert it to pointer-to-function. */
2074 if (want_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
2075 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
2077 /* The call to `expand_expr' could cause last_expr_type and
2078 last_expr_value to get reset. Therefore, we set last_expr_value
2079 and last_expr_type *after* calling expand_expr. */
2080 value = expand_expr (exp, want_value ? NULL_RTX : const0_rtx,
2081 VOIDmode, 0);
2082 type = TREE_TYPE (exp);
2084 /* If all we do is reference a volatile value in memory,
2085 copy it to a register to be sure it is actually touched. */
2086 if (value && GET_CODE (value) == MEM && TREE_THIS_VOLATILE (exp))
2088 if (TYPE_MODE (type) == VOIDmode)
2090 else if (TYPE_MODE (type) != BLKmode)
2091 value = copy_to_reg (value);
2092 else
2094 rtx lab = gen_label_rtx ();
2096 /* Compare the value with itself to reference it. */
2097 emit_cmp_and_jump_insns (value, value, EQ,
2098 expand_expr (TYPE_SIZE (type),
2099 NULL_RTX, VOIDmode, 0),
2100 BLKmode, 0, lab);
2101 emit_label (lab);
2105 /* If this expression is part of a ({...}) and is in memory, we may have
2106 to preserve temporaries. */
2107 preserve_temp_slots (value);
2109 /* Free any temporaries used to evaluate this expression. Any temporary
2110 used as a result of this expression will already have been preserved
2111 above. */
2112 free_temp_slots ();
2114 if (want_value)
2116 last_expr_value = value;
2117 last_expr_type = type;
2120 emit_queue ();
2123 /* Warn if EXP contains any computations whose results are not used.
2124 Return 1 if a warning is printed; 0 otherwise. */
2127 warn_if_unused_value (exp)
2128 tree exp;
2130 if (TREE_USED (exp))
2131 return 0;
2133 /* Don't warn about void constructs. This includes casting to void,
2134 void function calls, and statement expressions with a final cast
2135 to void. */
2136 if (VOID_TYPE_P (TREE_TYPE (exp)))
2137 return 0;
2139 switch (TREE_CODE (exp))
2141 case PREINCREMENT_EXPR:
2142 case POSTINCREMENT_EXPR:
2143 case PREDECREMENT_EXPR:
2144 case POSTDECREMENT_EXPR:
2145 case MODIFY_EXPR:
2146 case INIT_EXPR:
2147 case TARGET_EXPR:
2148 case CALL_EXPR:
2149 case METHOD_CALL_EXPR:
2150 case RTL_EXPR:
2151 case TRY_CATCH_EXPR:
2152 case WITH_CLEANUP_EXPR:
2153 case EXIT_EXPR:
2154 return 0;
2156 case BIND_EXPR:
2157 /* For a binding, warn if no side effect within it. */
2158 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2160 case SAVE_EXPR:
2161 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2163 case TRUTH_ORIF_EXPR:
2164 case TRUTH_ANDIF_EXPR:
2165 /* In && or ||, warn if 2nd operand has no side effect. */
2166 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2168 case COMPOUND_EXPR:
2169 if (TREE_NO_UNUSED_WARNING (exp))
2170 return 0;
2171 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
2172 return 1;
2173 /* Let people do `(foo (), 0)' without a warning. */
2174 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
2175 return 0;
2176 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2178 case NOP_EXPR:
2179 case CONVERT_EXPR:
2180 case NON_LVALUE_EXPR:
2181 /* Don't warn about conversions not explicit in the user's program. */
2182 if (TREE_NO_UNUSED_WARNING (exp))
2183 return 0;
2184 /* Assignment to a cast usually results in a cast of a modify.
2185 Don't complain about that. There can be an arbitrary number of
2186 casts before the modify, so we must loop until we find the first
2187 non-cast expression and then test to see if that is a modify. */
2189 tree tem = TREE_OPERAND (exp, 0);
2191 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
2192 tem = TREE_OPERAND (tem, 0);
2194 if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
2195 || TREE_CODE (tem) == CALL_EXPR)
2196 return 0;
2198 goto maybe_warn;
2200 case INDIRECT_REF:
2201 /* Don't warn about automatic dereferencing of references, since
2202 the user cannot control it. */
2203 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
2204 return warn_if_unused_value (TREE_OPERAND (exp, 0));
2205 /* Fall through. */
2207 default:
2208 /* Referencing a volatile value is a side effect, so don't warn. */
2209 if ((DECL_P (exp)
2210 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
2211 && TREE_THIS_VOLATILE (exp))
2212 return 0;
2214 /* If this is an expression which has no operands, there is no value
2215 to be unused. There are no such language-independent codes,
2216 but front ends may define such. */
2217 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'e'
2218 && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
2219 return 0;
2221 maybe_warn:
2222 /* If this is an expression with side effects, don't warn. */
2223 if (TREE_SIDE_EFFECTS (exp))
2224 return 0;
2226 warning_with_file_and_line (emit_filename, emit_lineno,
2227 "value computed is not used");
2228 return 1;
2232 /* Clear out the memory of the last expression evaluated. */
2234 void
2235 clear_last_expr ()
2237 last_expr_type = NULL_TREE;
2238 last_expr_value = NULL_RTX;
2241 /* Begin a statement-expression, i.e., a series of statements which
2242 may return a value. Return the RTL_EXPR for this statement expr.
2243 The caller must save that value and pass it to
2244 expand_end_stmt_expr. If HAS_SCOPE is nonzero, temporaries created
2245 in the statement-expression are deallocated at the end of the
2246 expression. */
2248 tree
2249 expand_start_stmt_expr (has_scope)
2250 int has_scope;
2252 tree t;
2254 /* Make the RTL_EXPR node temporary, not momentary,
2255 so that rtl_expr_chain doesn't become garbage. */
2256 t = make_node (RTL_EXPR);
2257 do_pending_stack_adjust ();
2258 if (has_scope)
2259 start_sequence_for_rtl_expr (t);
2260 else
2261 start_sequence ();
2262 NO_DEFER_POP;
2263 expr_stmts_for_value++;
2264 return t;
2267 /* Restore the previous state at the end of a statement that returns a value.
2268 Returns a tree node representing the statement's value and the
2269 insns to compute the value.
2271 The nodes of that expression have been freed by now, so we cannot use them.
2272 But we don't want to do that anyway; the expression has already been
2273 evaluated and now we just want to use the value. So generate a RTL_EXPR
2274 with the proper type and RTL value.
2276 If the last substatement was not an expression,
2277 return something with type `void'. */
2279 tree
2280 expand_end_stmt_expr (t)
2281 tree t;
2283 OK_DEFER_POP;
2285 if (! last_expr_value || ! last_expr_type)
2287 last_expr_value = const0_rtx;
2288 last_expr_type = void_type_node;
2290 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2291 /* Remove any possible QUEUED. */
2292 last_expr_value = protect_from_queue (last_expr_value, 0);
2294 emit_queue ();
2296 TREE_TYPE (t) = last_expr_type;
2297 RTL_EXPR_RTL (t) = last_expr_value;
2298 RTL_EXPR_SEQUENCE (t) = get_insns ();
2300 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2302 end_sequence ();
2304 /* Don't consider deleting this expr or containing exprs at tree level. */
2305 TREE_SIDE_EFFECTS (t) = 1;
2306 /* Propagate volatility of the actual RTL expr. */
2307 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2309 clear_last_expr ();
2310 expr_stmts_for_value--;
2312 return t;
2315 /* Generate RTL for the start of an if-then. COND is the expression
2316 whose truth should be tested.
2318 If EXITFLAG is nonzero, this conditional is visible to
2319 `exit_something'. */
2321 void
2322 expand_start_cond (cond, exitflag)
2323 tree cond;
2324 int exitflag;
2326 struct nesting *thiscond = ALLOC_NESTING ();
2328 /* Make an entry on cond_stack for the cond we are entering. */
2330 thiscond->desc = COND_NESTING;
2331 thiscond->next = cond_stack;
2332 thiscond->all = nesting_stack;
2333 thiscond->depth = ++nesting_depth;
2334 thiscond->data.cond.next_label = gen_label_rtx ();
2335 /* Before we encounter an `else', we don't need a separate exit label
2336 unless there are supposed to be exit statements
2337 to exit this conditional. */
2338 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2339 thiscond->data.cond.endif_label = thiscond->exit_label;
2340 cond_stack = thiscond;
2341 nesting_stack = thiscond;
2343 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2346 /* Generate RTL between then-clause and the elseif-clause
2347 of an if-then-elseif-.... */
2349 void
2350 expand_start_elseif (cond)
2351 tree cond;
2353 if (cond_stack->data.cond.endif_label == 0)
2354 cond_stack->data.cond.endif_label = gen_label_rtx ();
2355 emit_jump (cond_stack->data.cond.endif_label);
2356 emit_label (cond_stack->data.cond.next_label);
2357 cond_stack->data.cond.next_label = gen_label_rtx ();
2358 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2361 /* Generate RTL between the then-clause and the else-clause
2362 of an if-then-else. */
2364 void
2365 expand_start_else ()
2367 if (cond_stack->data.cond.endif_label == 0)
2368 cond_stack->data.cond.endif_label = gen_label_rtx ();
2370 emit_jump (cond_stack->data.cond.endif_label);
2371 emit_label (cond_stack->data.cond.next_label);
2372 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
2375 /* After calling expand_start_else, turn this "else" into an "else if"
2376 by providing another condition. */
2378 void
2379 expand_elseif (cond)
2380 tree cond;
2382 cond_stack->data.cond.next_label = gen_label_rtx ();
2383 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2386 /* Generate RTL for the end of an if-then.
2387 Pop the record for it off of cond_stack. */
2389 void
2390 expand_end_cond ()
2392 struct nesting *thiscond = cond_stack;
2394 do_pending_stack_adjust ();
2395 if (thiscond->data.cond.next_label)
2396 emit_label (thiscond->data.cond.next_label);
2397 if (thiscond->data.cond.endif_label)
2398 emit_label (thiscond->data.cond.endif_label);
2400 POPSTACK (cond_stack);
2401 clear_last_expr ();
2404 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2405 loop should be exited by `exit_something'. This is a loop for which
2406 `expand_continue' will jump to the top of the loop.
2408 Make an entry on loop_stack to record the labels associated with
2409 this loop. */
2411 struct nesting *
2412 expand_start_loop (exit_flag)
2413 int exit_flag;
2415 struct nesting *thisloop = ALLOC_NESTING ();
2417 /* Make an entry on loop_stack for the loop we are entering. */
2419 thisloop->desc = LOOP_NESTING;
2420 thisloop->next = loop_stack;
2421 thisloop->all = nesting_stack;
2422 thisloop->depth = ++nesting_depth;
2423 thisloop->data.loop.start_label = gen_label_rtx ();
2424 thisloop->data.loop.end_label = gen_label_rtx ();
2425 thisloop->data.loop.alt_end_label = 0;
2426 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2427 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2428 loop_stack = thisloop;
2429 nesting_stack = thisloop;
2431 do_pending_stack_adjust ();
2432 emit_queue ();
2433 emit_note (NULL, NOTE_INSN_LOOP_BEG);
2434 emit_label (thisloop->data.loop.start_label);
2436 return thisloop;
2439 /* Like expand_start_loop but for a loop where the continuation point
2440 (for expand_continue_loop) will be specified explicitly. */
2442 struct nesting *
2443 expand_start_loop_continue_elsewhere (exit_flag)
2444 int exit_flag;
2446 struct nesting *thisloop = expand_start_loop (exit_flag);
2447 loop_stack->data.loop.continue_label = gen_label_rtx ();
2448 return thisloop;
2451 /* Begin a null, aka do { } while (0) "loop". But since the contents
2452 of said loop can still contain a break, we must frob the loop nest. */
2454 struct nesting *
2455 expand_start_null_loop ()
2457 struct nesting *thisloop = ALLOC_NESTING ();
2459 /* Make an entry on loop_stack for the loop we are entering. */
2461 thisloop->desc = LOOP_NESTING;
2462 thisloop->next = loop_stack;
2463 thisloop->all = nesting_stack;
2464 thisloop->depth = ++nesting_depth;
2465 thisloop->data.loop.start_label = emit_note (NULL, NOTE_INSN_DELETED);
2466 thisloop->data.loop.end_label = gen_label_rtx ();
2467 thisloop->data.loop.alt_end_label = NULL_RTX;
2468 thisloop->data.loop.continue_label = thisloop->data.loop.end_label;
2469 thisloop->exit_label = thisloop->data.loop.end_label;
2470 loop_stack = thisloop;
2471 nesting_stack = thisloop;
2473 return thisloop;
2476 /* Specify the continuation point for a loop started with
2477 expand_start_loop_continue_elsewhere.
2478 Use this at the point in the code to which a continue statement
2479 should jump. */
2481 void
2482 expand_loop_continue_here ()
2484 do_pending_stack_adjust ();
2485 emit_note (NULL, NOTE_INSN_LOOP_CONT);
2486 emit_label (loop_stack->data.loop.continue_label);
2489 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2490 Pop the block off of loop_stack. */
2492 void
2493 expand_end_loop ()
2495 rtx start_label = loop_stack->data.loop.start_label;
2496 rtx etc_note;
2497 int eh_regions, debug_blocks;
2499 /* Mark the continue-point at the top of the loop if none elsewhere. */
2500 if (start_label == loop_stack->data.loop.continue_label)
2501 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2503 do_pending_stack_adjust ();
2505 /* If the loop starts with a loop exit, roll that to the end where
2506 it will optimize together with the jump back.
2508 If the loop presently looks like this (in pseudo-C):
2510 LOOP_BEG
2511 start_label:
2512 if (test) goto end_label;
2513 LOOP_END_TOP_COND
2514 body;
2515 goto start_label;
2516 end_label:
2518 transform it to look like:
2520 LOOP_BEG
2521 goto start_label;
2522 top_label:
2523 body;
2524 start_label:
2525 if (test) goto end_label;
2526 goto top_label;
2527 end_label:
2529 We rely on the presence of NOTE_INSN_LOOP_END_TOP_COND to mark
2530 the end of the entry condtional. Without this, our lexical scan
2531 can't tell the difference between an entry conditional and a
2532 body conditional that exits the loop. Mistaking the two means
2533 that we can misplace the NOTE_INSN_LOOP_CONT note, which can
2534 screw up loop unrolling.
2536 Things will be oh so much better when loop optimization is done
2537 off of a proper control flow graph... */
2539 /* Scan insns from the top of the loop looking for the END_TOP_COND note. */
2541 eh_regions = debug_blocks = 0;
2542 for (etc_note = start_label; etc_note ; etc_note = NEXT_INSN (etc_note))
2543 if (GET_CODE (etc_note) == NOTE)
2545 if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_END_TOP_COND)
2546 break;
2548 /* We must not walk into a nested loop. */
2549 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_BEG)
2551 etc_note = NULL_RTX;
2552 break;
2555 /* At the same time, scan for EH region notes, as we don't want
2556 to scrog region nesting. This shouldn't happen, but... */
2557 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_BEG)
2558 eh_regions++;
2559 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_END)
2561 if (--eh_regions < 0)
2562 /* We've come to the end of an EH region, but never saw the
2563 beginning of that region. That means that an EH region
2564 begins before the top of the loop, and ends in the middle
2565 of it. The existence of such a situation violates a basic
2566 assumption in this code, since that would imply that even
2567 when EH_REGIONS is zero, we might move code out of an
2568 exception region. */
2569 abort ();
2572 /* Likewise for debug scopes. In this case we'll either (1) move
2573 all of the notes if they are properly nested or (2) leave the
2574 notes alone and only rotate the loop at high optimization
2575 levels when we expect to scrog debug info. */
2576 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_BEG)
2577 debug_blocks++;
2578 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_END)
2579 debug_blocks--;
2582 if (etc_note
2583 && optimize
2584 && eh_regions == 0
2585 && (debug_blocks == 0 || optimize >= 2)
2586 && NEXT_INSN (etc_note) != NULL_RTX
2587 && ! any_condjump_p (get_last_insn ()))
2589 /* We found one. Move everything from START to ETC to the end
2590 of the loop, and add a jump from the top of the loop. */
2591 rtx top_label = gen_label_rtx ();
2592 rtx start_move = start_label;
2594 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2595 then we want to move this note also. */
2596 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2597 && NOTE_LINE_NUMBER (PREV_INSN (start_move)) == NOTE_INSN_LOOP_CONT)
2598 start_move = PREV_INSN (start_move);
2600 emit_label_before (top_label, start_move);
2602 /* Actually move the insns. If the debug scopes are nested, we
2603 can move everything at once. Otherwise we have to move them
2604 one by one and squeeze out the block notes. */
2605 if (debug_blocks == 0)
2606 reorder_insns (start_move, etc_note, get_last_insn ());
2607 else
2609 rtx insn, next_insn;
2610 for (insn = start_move; insn; insn = next_insn)
2612 /* Figure out which insn comes after this one. We have
2613 to do this before we move INSN. */
2614 next_insn = (insn == etc_note ? NULL : NEXT_INSN (insn));
2616 if (GET_CODE (insn) == NOTE
2617 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2618 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2619 continue;
2621 reorder_insns (insn, insn, get_last_insn ());
2625 /* Add the jump from the top of the loop. */
2626 emit_jump_insn_before (gen_jump (start_label), top_label);
2627 emit_barrier_before (top_label);
2628 start_label = top_label;
2631 emit_jump (start_label);
2632 emit_note (NULL, NOTE_INSN_LOOP_END);
2633 emit_label (loop_stack->data.loop.end_label);
2635 POPSTACK (loop_stack);
2637 clear_last_expr ();
2640 /* Finish a null loop, aka do { } while (0). */
2642 void
2643 expand_end_null_loop ()
2645 do_pending_stack_adjust ();
2646 emit_label (loop_stack->data.loop.end_label);
2648 POPSTACK (loop_stack);
2650 clear_last_expr ();
2653 /* Generate a jump to the current loop's continue-point.
2654 This is usually the top of the loop, but may be specified
2655 explicitly elsewhere. If not currently inside a loop,
2656 return 0 and do nothing; caller will print an error message. */
2659 expand_continue_loop (whichloop)
2660 struct nesting *whichloop;
2662 /* Emit information for branch prediction. */
2663 rtx note;
2665 note = emit_note (NULL, NOTE_INSN_PREDICTION);
2666 NOTE_PREDICTION (note) = NOTE_PREDICT (PRED_CONTINUE, IS_TAKEN);
2667 clear_last_expr ();
2668 if (whichloop == 0)
2669 whichloop = loop_stack;
2670 if (whichloop == 0)
2671 return 0;
2672 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2673 NULL_RTX);
2674 return 1;
2677 /* Generate a jump to exit the current loop. If not currently inside a loop,
2678 return 0 and do nothing; caller will print an error message. */
2681 expand_exit_loop (whichloop)
2682 struct nesting *whichloop;
2684 clear_last_expr ();
2685 if (whichloop == 0)
2686 whichloop = loop_stack;
2687 if (whichloop == 0)
2688 return 0;
2689 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2690 return 1;
2693 /* Generate a conditional jump to exit the current loop if COND
2694 evaluates to zero. If not currently inside a loop,
2695 return 0 and do nothing; caller will print an error message. */
2698 expand_exit_loop_if_false (whichloop, cond)
2699 struct nesting *whichloop;
2700 tree cond;
2702 rtx label = gen_label_rtx ();
2703 rtx last_insn;
2704 clear_last_expr ();
2706 if (whichloop == 0)
2707 whichloop = loop_stack;
2708 if (whichloop == 0)
2709 return 0;
2710 /* In order to handle fixups, we actually create a conditional jump
2711 around an unconditional branch to exit the loop. If fixups are
2712 necessary, they go before the unconditional branch. */
2714 do_jump (cond, NULL_RTX, label);
2715 last_insn = get_last_insn ();
2716 if (GET_CODE (last_insn) == CODE_LABEL)
2717 whichloop->data.loop.alt_end_label = last_insn;
2718 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2719 NULL_RTX);
2720 emit_label (label);
2722 return 1;
2725 /* Like expand_exit_loop_if_false except also emit a note marking
2726 the end of the conditional. Should only be used immediately
2727 after expand_loop_start. */
2730 expand_exit_loop_top_cond (whichloop, cond)
2731 struct nesting *whichloop;
2732 tree cond;
2734 if (! expand_exit_loop_if_false (whichloop, cond))
2735 return 0;
2737 emit_note (NULL, NOTE_INSN_LOOP_END_TOP_COND);
2738 return 1;
2741 /* Return nonzero if the loop nest is empty. Else return zero. */
2744 stmt_loop_nest_empty ()
2746 /* cfun->stmt can be NULL if we are building a call to get the
2747 EH context for a setjmp/longjmp EH target and the current
2748 function was a deferred inline function. */
2749 return (cfun->stmt == NULL || loop_stack == NULL);
2752 /* Return non-zero if we should preserve sub-expressions as separate
2753 pseudos. We never do so if we aren't optimizing. We always do so
2754 if -fexpensive-optimizations.
2756 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2757 the loop may still be a small one. */
2760 preserve_subexpressions_p ()
2762 rtx insn;
2764 if (flag_expensive_optimizations)
2765 return 1;
2767 if (optimize == 0 || cfun == 0 || cfun->stmt == 0 || loop_stack == 0)
2768 return 0;
2770 insn = get_last_insn_anywhere ();
2772 return (insn
2773 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2774 < n_non_fixed_regs * 3));
2778 /* Generate a jump to exit the current loop, conditional, binding contour
2779 or case statement. Not all such constructs are visible to this function,
2780 only those started with EXIT_FLAG nonzero. Individual languages use
2781 the EXIT_FLAG parameter to control which kinds of constructs you can
2782 exit this way.
2784 If not currently inside anything that can be exited,
2785 return 0 and do nothing; caller will print an error message. */
2788 expand_exit_something ()
2790 struct nesting *n;
2791 clear_last_expr ();
2792 for (n = nesting_stack; n; n = n->all)
2793 if (n->exit_label != 0)
2795 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2796 return 1;
2799 return 0;
2802 /* Generate RTL to return from the current function, with no value.
2803 (That is, we do not do anything about returning any value.) */
2805 void
2806 expand_null_return ()
2808 rtx last_insn;
2810 last_insn = get_last_insn ();
2812 /* If this function was declared to return a value, but we
2813 didn't, clobber the return registers so that they are not
2814 propagated live to the rest of the function. */
2815 clobber_return_register ();
2817 expand_null_return_1 (last_insn);
2820 /* Try to guess whether the value of return means error code. */
2821 static enum br_predictor
2822 return_prediction (val)
2823 rtx val;
2825 /* Different heuristics for pointers and scalars. */
2826 if (POINTER_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl))))
2828 /* NULL is usually not returned. */
2829 if (val == const0_rtx)
2830 return PRED_NULL_RETURN;
2832 else
2834 /* Negative return values are often used to indicate
2835 errors. */
2836 if (GET_CODE (val) == CONST_INT
2837 && INTVAL (val) < 0)
2838 return PRED_NEGATIVE_RETURN;
2839 /* Constant return values are also usually erors,
2840 zero/one often mean booleans so exclude them from the
2841 heuristics. */
2842 if (CONSTANT_P (val)
2843 && (val != const0_rtx && val != const1_rtx))
2844 return PRED_CONST_RETURN;
2846 return PRED_NO_PREDICTION;
2849 /* Generate RTL to return from the current function, with value VAL. */
2851 static void
2852 expand_value_return (val)
2853 rtx val;
2855 rtx last_insn;
2856 rtx return_reg;
2857 enum br_predictor pred;
2859 if ((pred = return_prediction (val)) != PRED_NO_PREDICTION)
2861 /* Emit information for branch prediction. */
2862 rtx note;
2864 note = emit_note (NULL, NOTE_INSN_PREDICTION);
2866 NOTE_PREDICTION (note) = NOTE_PREDICT (pred, NOT_TAKEN);
2870 last_insn = get_last_insn ();
2871 return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2873 /* Copy the value to the return location
2874 unless it's already there. */
2876 if (return_reg != val)
2878 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
2879 #ifdef PROMOTE_FUNCTION_RETURN
2880 int unsignedp = TREE_UNSIGNED (type);
2881 enum machine_mode old_mode
2882 = DECL_MODE (DECL_RESULT (current_function_decl));
2883 enum machine_mode mode
2884 = promote_mode (type, old_mode, &unsignedp, 1);
2886 if (mode != old_mode)
2887 val = convert_modes (mode, old_mode, val, unsignedp);
2888 #endif
2889 if (GET_CODE (return_reg) == PARALLEL)
2890 emit_group_load (return_reg, val, int_size_in_bytes (type));
2891 else
2892 emit_move_insn (return_reg, val);
2895 expand_null_return_1 (last_insn);
2898 /* Output a return with no value. If LAST_INSN is nonzero,
2899 pretend that the return takes place after LAST_INSN. */
2901 static void
2902 expand_null_return_1 (last_insn)
2903 rtx last_insn;
2905 rtx end_label = cleanup_label ? cleanup_label : return_label;
2907 clear_pending_stack_adjust ();
2908 do_pending_stack_adjust ();
2909 clear_last_expr ();
2911 if (end_label == 0)
2912 end_label = return_label = gen_label_rtx ();
2913 expand_goto_internal (NULL_TREE, end_label, last_insn);
2916 /* Generate RTL to evaluate the expression RETVAL and return it
2917 from the current function. */
2919 void
2920 expand_return (retval)
2921 tree retval;
2923 /* If there are any cleanups to be performed, then they will
2924 be inserted following LAST_INSN. It is desirable
2925 that the last_insn, for such purposes, should be the
2926 last insn before computing the return value. Otherwise, cleanups
2927 which call functions can clobber the return value. */
2928 /* ??? rms: I think that is erroneous, because in C++ it would
2929 run destructors on variables that might be used in the subsequent
2930 computation of the return value. */
2931 rtx last_insn = 0;
2932 rtx result_rtl;
2933 rtx val = 0;
2934 tree retval_rhs;
2936 /* If function wants no value, give it none. */
2937 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
2939 expand_expr (retval, NULL_RTX, VOIDmode, 0);
2940 emit_queue ();
2941 expand_null_return ();
2942 return;
2945 if (retval == error_mark_node)
2947 /* Treat this like a return of no value from a function that
2948 returns a value. */
2949 expand_null_return ();
2950 return;
2952 else if (TREE_CODE (retval) == RESULT_DECL)
2953 retval_rhs = retval;
2954 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
2955 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
2956 retval_rhs = TREE_OPERAND (retval, 1);
2957 else if (VOID_TYPE_P (TREE_TYPE (retval)))
2958 /* Recognize tail-recursive call to void function. */
2959 retval_rhs = retval;
2960 else
2961 retval_rhs = NULL_TREE;
2963 last_insn = get_last_insn ();
2965 /* Distribute return down conditional expr if either of the sides
2966 may involve tail recursion (see test below). This enhances the number
2967 of tail recursions we see. Don't do this always since it can produce
2968 sub-optimal code in some cases and we distribute assignments into
2969 conditional expressions when it would help. */
2971 if (optimize && retval_rhs != 0
2972 && frame_offset == 0
2973 && TREE_CODE (retval_rhs) == COND_EXPR
2974 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
2975 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
2977 rtx label = gen_label_rtx ();
2978 tree expr;
2980 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
2981 start_cleanup_deferral ();
2982 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2983 DECL_RESULT (current_function_decl),
2984 TREE_OPERAND (retval_rhs, 1));
2985 TREE_SIDE_EFFECTS (expr) = 1;
2986 expand_return (expr);
2987 emit_label (label);
2989 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
2990 DECL_RESULT (current_function_decl),
2991 TREE_OPERAND (retval_rhs, 2));
2992 TREE_SIDE_EFFECTS (expr) = 1;
2993 expand_return (expr);
2994 end_cleanup_deferral ();
2995 return;
2998 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
3000 /* If the result is an aggregate that is being returned in one (or more)
3001 registers, load the registers here. The compiler currently can't handle
3002 copying a BLKmode value into registers. We could put this code in a
3003 more general area (for use by everyone instead of just function
3004 call/return), but until this feature is generally usable it is kept here
3005 (and in expand_call). The value must go into a pseudo in case there
3006 are cleanups that will clobber the real return register. */
3008 if (retval_rhs != 0
3009 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
3010 && GET_CODE (result_rtl) == REG)
3012 int i;
3013 unsigned HOST_WIDE_INT bitpos, xbitpos;
3014 unsigned HOST_WIDE_INT big_endian_correction = 0;
3015 unsigned HOST_WIDE_INT bytes
3016 = int_size_in_bytes (TREE_TYPE (retval_rhs));
3017 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3018 unsigned int bitsize
3019 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
3020 rtx *result_pseudos = (rtx *) alloca (sizeof (rtx) * n_regs);
3021 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
3022 rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
3023 enum machine_mode tmpmode, result_reg_mode;
3025 if (bytes == 0)
3027 expand_null_return ();
3028 return;
3031 /* Structures whose size is not a multiple of a word are aligned
3032 to the least significant byte (to the right). On a BYTES_BIG_ENDIAN
3033 machine, this means we must skip the empty high order bytes when
3034 calculating the bit offset. */
3035 if (BYTES_BIG_ENDIAN
3036 && !FUNCTION_ARG_REG_LITTLE_ENDIAN
3037 && bytes % UNITS_PER_WORD)
3038 big_endian_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
3039 * BITS_PER_UNIT));
3041 /* Copy the structure BITSIZE bits at a time. */
3042 for (bitpos = 0, xbitpos = big_endian_correction;
3043 bitpos < bytes * BITS_PER_UNIT;
3044 bitpos += bitsize, xbitpos += bitsize)
3046 /* We need a new destination pseudo each time xbitpos is
3047 on a word boundary and when xbitpos == big_endian_correction
3048 (the first time through). */
3049 if (xbitpos % BITS_PER_WORD == 0
3050 || xbitpos == big_endian_correction)
3052 /* Generate an appropriate register. */
3053 dst = gen_reg_rtx (word_mode);
3054 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
3056 /* Clear the destination before we move anything into it. */
3057 emit_move_insn (dst, CONST0_RTX (GET_MODE (dst)));
3060 /* We need a new source operand each time bitpos is on a word
3061 boundary. */
3062 if (bitpos % BITS_PER_WORD == 0)
3063 src = operand_subword_force (result_val,
3064 bitpos / BITS_PER_WORD,
3065 BLKmode);
3067 /* Use bitpos for the source extraction (left justified) and
3068 xbitpos for the destination store (right justified). */
3069 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
3070 extract_bit_field (src, bitsize,
3071 bitpos % BITS_PER_WORD, 1,
3072 NULL_RTX, word_mode, word_mode,
3073 BITS_PER_WORD),
3074 BITS_PER_WORD);
3077 /* Find the smallest integer mode large enough to hold the
3078 entire structure and use that mode instead of BLKmode
3079 on the USE insn for the return register. */
3080 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3081 tmpmode != VOIDmode;
3082 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
3083 /* Have we found a large enough mode? */
3084 if (GET_MODE_SIZE (tmpmode) >= bytes)
3085 break;
3087 /* No suitable mode found. */
3088 if (tmpmode == VOIDmode)
3089 abort ();
3091 PUT_MODE (result_rtl, tmpmode);
3093 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
3094 result_reg_mode = word_mode;
3095 else
3096 result_reg_mode = tmpmode;
3097 result_reg = gen_reg_rtx (result_reg_mode);
3099 emit_queue ();
3100 for (i = 0; i < n_regs; i++)
3101 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
3102 result_pseudos[i]);
3104 if (tmpmode != result_reg_mode)
3105 result_reg = gen_lowpart (tmpmode, result_reg);
3107 expand_value_return (result_reg);
3109 else if (retval_rhs != 0
3110 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3111 && (GET_CODE (result_rtl) == REG
3112 || (GET_CODE (result_rtl) == PARALLEL)))
3114 /* Calculate the return value into a temporary (usually a pseudo
3115 reg). */
3116 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
3117 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
3119 val = assign_temp (nt, 0, 0, 1);
3120 val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3121 val = force_not_mem (val);
3122 emit_queue ();
3123 /* Return the calculated value, doing cleanups first. */
3124 expand_value_return (val);
3126 else
3128 /* No cleanups or no hard reg used;
3129 calculate value into hard return reg. */
3130 expand_expr (retval, const0_rtx, VOIDmode, 0);
3131 emit_queue ();
3132 expand_value_return (result_rtl);
3136 /* Return 1 if the end of the generated RTX is not a barrier.
3137 This means code already compiled can drop through. */
3140 drop_through_at_end_p ()
3142 rtx insn = get_last_insn ();
3143 while (insn && GET_CODE (insn) == NOTE)
3144 insn = PREV_INSN (insn);
3145 return insn && GET_CODE (insn) != BARRIER;
3148 /* Attempt to optimize a potential tail recursion call into a goto.
3149 ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3150 where to place the jump to the tail recursion label.
3152 Return TRUE if the call was optimized into a goto. */
3155 optimize_tail_recursion (arguments, last_insn)
3156 tree arguments;
3157 rtx last_insn;
3159 /* Finish checking validity, and if valid emit code to set the
3160 argument variables for the new call. */
3161 if (tail_recursion_args (arguments, DECL_ARGUMENTS (current_function_decl)))
3163 if (tail_recursion_label == 0)
3165 tail_recursion_label = gen_label_rtx ();
3166 emit_label_after (tail_recursion_label,
3167 tail_recursion_reentry);
3169 emit_queue ();
3170 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3171 emit_barrier ();
3172 return 1;
3174 return 0;
3177 /* Emit code to alter this function's formal parms for a tail-recursive call.
3178 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3179 FORMALS is the chain of decls of formals.
3180 Return 1 if this can be done;
3181 otherwise return 0 and do not emit any code. */
3183 static int
3184 tail_recursion_args (actuals, formals)
3185 tree actuals, formals;
3187 tree a = actuals, f = formals;
3188 int i;
3189 rtx *argvec;
3191 /* Check that number and types of actuals are compatible
3192 with the formals. This is not always true in valid C code.
3193 Also check that no formal needs to be addressable
3194 and that all formals are scalars. */
3196 /* Also count the args. */
3198 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3200 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3201 != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3202 return 0;
3203 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3204 return 0;
3206 if (a != 0 || f != 0)
3207 return 0;
3209 /* Compute all the actuals. */
3211 argvec = (rtx *) alloca (i * sizeof (rtx));
3213 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3214 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3216 /* Find which actual values refer to current values of previous formals.
3217 Copy each of them now, before any formal is changed. */
3219 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3221 int copy = 0;
3222 int j;
3223 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3224 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3226 copy = 1;
3227 break;
3229 if (copy)
3230 argvec[i] = copy_to_reg (argvec[i]);
3233 /* Store the values of the actuals into the formals. */
3235 for (f = formals, a = actuals, i = 0; f;
3236 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3238 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3239 emit_move_insn (DECL_RTL (f), argvec[i]);
3240 else
3241 convert_move (DECL_RTL (f), argvec[i],
3242 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
3245 free_temp_slots ();
3246 return 1;
3249 /* Generate the RTL code for entering a binding contour.
3250 The variables are declared one by one, by calls to `expand_decl'.
3252 FLAGS is a bitwise or of the following flags:
3254 1 - Nonzero if this construct should be visible to
3255 `exit_something'.
3257 2 - Nonzero if this contour does not require a
3258 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3259 language-independent code should set this flag because they
3260 will not create corresponding BLOCK nodes. (There should be
3261 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3262 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3263 when expand_end_bindings is called.
3265 If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3266 optionally be supplied. If so, it becomes the NOTE_BLOCK for the
3267 note. */
3269 void
3270 expand_start_bindings_and_block (flags, block)
3271 int flags;
3272 tree block;
3274 struct nesting *thisblock = ALLOC_NESTING ();
3275 rtx note;
3276 int exit_flag = ((flags & 1) != 0);
3277 int block_flag = ((flags & 2) == 0);
3279 /* If a BLOCK is supplied, then the caller should be requesting a
3280 NOTE_INSN_BLOCK_BEG note. */
3281 if (!block_flag && block)
3282 abort ();
3284 /* Create a note to mark the beginning of the block. */
3285 if (block_flag)
3287 note = emit_note (NULL, NOTE_INSN_BLOCK_BEG);
3288 NOTE_BLOCK (note) = block;
3290 else
3291 note = emit_note (NULL, NOTE_INSN_DELETED);
3293 /* Make an entry on block_stack for the block we are entering. */
3295 thisblock->desc = BLOCK_NESTING;
3296 thisblock->next = block_stack;
3297 thisblock->all = nesting_stack;
3298 thisblock->depth = ++nesting_depth;
3299 thisblock->data.block.stack_level = 0;
3300 thisblock->data.block.cleanups = 0;
3301 thisblock->data.block.n_function_calls = 0;
3302 thisblock->data.block.exception_region = 0;
3303 thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3305 thisblock->data.block.conditional_code = 0;
3306 thisblock->data.block.last_unconditional_cleanup = note;
3307 /* When we insert instructions after the last unconditional cleanup,
3308 we don't adjust last_insn. That means that a later add_insn will
3309 clobber the instructions we've just added. The easiest way to
3310 fix this is to just insert another instruction here, so that the
3311 instructions inserted after the last unconditional cleanup are
3312 never the last instruction. */
3313 emit_note (NULL, NOTE_INSN_DELETED);
3315 if (block_stack
3316 && !(block_stack->data.block.cleanups == NULL_TREE
3317 && block_stack->data.block.outer_cleanups == NULL_TREE))
3318 thisblock->data.block.outer_cleanups
3319 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3320 block_stack->data.block.outer_cleanups);
3321 else
3322 thisblock->data.block.outer_cleanups = 0;
3323 thisblock->data.block.label_chain = 0;
3324 thisblock->data.block.innermost_stack_block = stack_block_stack;
3325 thisblock->data.block.first_insn = note;
3326 thisblock->data.block.block_start_count = ++current_block_start_count;
3327 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3328 block_stack = thisblock;
3329 nesting_stack = thisblock;
3331 /* Make a new level for allocating stack slots. */
3332 push_temp_slots ();
3335 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3336 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3337 expand_expr are made. After we end the region, we know that all
3338 space for all temporaries that were created by TARGET_EXPRs will be
3339 destroyed and their space freed for reuse. */
3341 void
3342 expand_start_target_temps ()
3344 /* This is so that even if the result is preserved, the space
3345 allocated will be freed, as we know that it is no longer in use. */
3346 push_temp_slots ();
3348 /* Start a new binding layer that will keep track of all cleanup
3349 actions to be performed. */
3350 expand_start_bindings (2);
3352 target_temp_slot_level = temp_slot_level;
3355 void
3356 expand_end_target_temps ()
3358 expand_end_bindings (NULL_TREE, 0, 0);
3360 /* This is so that even if the result is preserved, the space
3361 allocated will be freed, as we know that it is no longer in use. */
3362 pop_temp_slots ();
3365 /* Given a pointer to a BLOCK node return non-zero if (and only if) the node
3366 in question represents the outermost pair of curly braces (i.e. the "body
3367 block") of a function or method.
3369 For any BLOCK node representing a "body block" of a function or method, the
3370 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3371 represents the outermost (function) scope for the function or method (i.e.
3372 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
3373 *that* node in turn will point to the relevant FUNCTION_DECL node. */
3376 is_body_block (stmt)
3377 tree stmt;
3379 if (TREE_CODE (stmt) == BLOCK)
3381 tree parent = BLOCK_SUPERCONTEXT (stmt);
3383 if (parent && TREE_CODE (parent) == BLOCK)
3385 tree grandparent = BLOCK_SUPERCONTEXT (parent);
3387 if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
3388 return 1;
3392 return 0;
3395 /* True if we are currently emitting insns in an area of output code
3396 that is controlled by a conditional expression. This is used by
3397 the cleanup handling code to generate conditional cleanup actions. */
3400 conditional_context ()
3402 return block_stack && block_stack->data.block.conditional_code;
3405 /* Return an opaque pointer to the current nesting level, so frontend code
3406 can check its own sanity. */
3408 struct nesting *
3409 current_nesting_level ()
3411 return cfun ? block_stack : 0;
3414 /* Emit a handler label for a nonlocal goto handler.
3415 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3417 static rtx
3418 expand_nl_handler_label (slot, before_insn)
3419 rtx slot, before_insn;
3421 rtx insns;
3422 rtx handler_label = gen_label_rtx ();
3424 /* Don't let cleanup_cfg delete the handler. */
3425 LABEL_PRESERVE_P (handler_label) = 1;
3427 start_sequence ();
3428 emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3429 insns = get_insns ();
3430 end_sequence ();
3431 emit_insn_before (insns, before_insn);
3433 emit_label (handler_label);
3435 return handler_label;
3438 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3439 handler. */
3440 static void
3441 expand_nl_goto_receiver ()
3443 #ifdef HAVE_nonlocal_goto
3444 if (! HAVE_nonlocal_goto)
3445 #endif
3446 /* First adjust our frame pointer to its actual value. It was
3447 previously set to the start of the virtual area corresponding to
3448 the stacked variables when we branched here and now needs to be
3449 adjusted to the actual hardware fp value.
3451 Assignments are to virtual registers are converted by
3452 instantiate_virtual_regs into the corresponding assignment
3453 to the underlying register (fp in this case) that makes
3454 the original assignment true.
3455 So the following insn will actually be
3456 decrementing fp by STARTING_FRAME_OFFSET. */
3457 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3459 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3460 if (fixed_regs[ARG_POINTER_REGNUM])
3462 #ifdef ELIMINABLE_REGS
3463 /* If the argument pointer can be eliminated in favor of the
3464 frame pointer, we don't need to restore it. We assume here
3465 that if such an elimination is present, it can always be used.
3466 This is the case on all known machines; if we don't make this
3467 assumption, we do unnecessary saving on many machines. */
3468 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
3469 size_t i;
3471 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
3472 if (elim_regs[i].from == ARG_POINTER_REGNUM
3473 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3474 break;
3476 if (i == ARRAY_SIZE (elim_regs))
3477 #endif
3479 /* Now restore our arg pointer from the address at which it
3480 was saved in our stack frame. */
3481 emit_move_insn (virtual_incoming_args_rtx,
3482 copy_to_reg (get_arg_pointer_save_area (cfun)));
3485 #endif
3487 #ifdef HAVE_nonlocal_goto_receiver
3488 if (HAVE_nonlocal_goto_receiver)
3489 emit_insn (gen_nonlocal_goto_receiver ());
3490 #endif
3493 /* Make handlers for nonlocal gotos taking place in the function calls in
3494 block THISBLOCK. */
3496 static void
3497 expand_nl_goto_receivers (thisblock)
3498 struct nesting *thisblock;
3500 tree link;
3501 rtx afterward = gen_label_rtx ();
3502 rtx insns, slot;
3503 rtx label_list;
3504 int any_invalid;
3506 /* Record the handler address in the stack slot for that purpose,
3507 during this block, saving and restoring the outer value. */
3508 if (thisblock->next != 0)
3509 for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3511 rtx save_receiver = gen_reg_rtx (Pmode);
3512 emit_move_insn (XEXP (slot, 0), save_receiver);
3514 start_sequence ();
3515 emit_move_insn (save_receiver, XEXP (slot, 0));
3516 insns = get_insns ();
3517 end_sequence ();
3518 emit_insn_before (insns, thisblock->data.block.first_insn);
3521 /* Jump around the handlers; they run only when specially invoked. */
3522 emit_jump (afterward);
3524 /* Make a separate handler for each label. */
3525 link = nonlocal_labels;
3526 slot = nonlocal_goto_handler_slots;
3527 label_list = NULL_RTX;
3528 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3529 /* Skip any labels we shouldn't be able to jump to from here,
3530 we generate one special handler for all of them below which just calls
3531 abort. */
3532 if (! DECL_TOO_LATE (TREE_VALUE (link)))
3534 rtx lab;
3535 lab = expand_nl_handler_label (XEXP (slot, 0),
3536 thisblock->data.block.first_insn);
3537 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3539 expand_nl_goto_receiver ();
3541 /* Jump to the "real" nonlocal label. */
3542 expand_goto (TREE_VALUE (link));
3545 /* A second pass over all nonlocal labels; this time we handle those
3546 we should not be able to jump to at this point. */
3547 link = nonlocal_labels;
3548 slot = nonlocal_goto_handler_slots;
3549 any_invalid = 0;
3550 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3551 if (DECL_TOO_LATE (TREE_VALUE (link)))
3553 rtx lab;
3554 lab = expand_nl_handler_label (XEXP (slot, 0),
3555 thisblock->data.block.first_insn);
3556 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3557 any_invalid = 1;
3560 if (any_invalid)
3562 expand_nl_goto_receiver ();
3563 expand_builtin_trap ();
3566 nonlocal_goto_handler_labels = label_list;
3567 emit_label (afterward);
3570 /* Warn about any unused VARS (which may contain nodes other than
3571 VAR_DECLs, but such nodes are ignored). The nodes are connected
3572 via the TREE_CHAIN field. */
3574 void
3575 warn_about_unused_variables (vars)
3576 tree vars;
3578 tree decl;
3580 if (warn_unused_variable)
3581 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3582 if (TREE_CODE (decl) == VAR_DECL
3583 && ! TREE_USED (decl)
3584 && ! DECL_IN_SYSTEM_HEADER (decl)
3585 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3586 warning_with_decl (decl, "unused variable `%s'");
3589 /* Generate RTL code to terminate a binding contour.
3591 VARS is the chain of VAR_DECL nodes for the variables bound in this
3592 contour. There may actually be other nodes in this chain, but any
3593 nodes other than VAR_DECLS are ignored.
3595 MARK_ENDS is nonzero if we should put a note at the beginning
3596 and end of this binding contour.
3598 DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
3599 (That is true automatically if the contour has a saved stack level.) */
3601 void
3602 expand_end_bindings (vars, mark_ends, dont_jump_in)
3603 tree vars;
3604 int mark_ends;
3605 int dont_jump_in;
3607 struct nesting *thisblock = block_stack;
3609 /* If any of the variables in this scope were not used, warn the
3610 user. */
3611 warn_about_unused_variables (vars);
3613 if (thisblock->exit_label)
3615 do_pending_stack_adjust ();
3616 emit_label (thisblock->exit_label);
3619 /* If necessary, make handlers for nonlocal gotos taking
3620 place in the function calls in this block. */
3621 if (function_call_count != thisblock->data.block.n_function_calls
3622 && nonlocal_labels
3623 /* Make handler for outermost block
3624 if there were any nonlocal gotos to this function. */
3625 && (thisblock->next == 0 ? current_function_has_nonlocal_label
3626 /* Make handler for inner block if it has something
3627 special to do when you jump out of it. */
3628 : (thisblock->data.block.cleanups != 0
3629 || thisblock->data.block.stack_level != 0)))
3630 expand_nl_goto_receivers (thisblock);
3632 /* Don't allow jumping into a block that has a stack level.
3633 Cleanups are allowed, though. */
3634 if (dont_jump_in
3635 || thisblock->data.block.stack_level != 0)
3637 struct label_chain *chain;
3639 /* Any labels in this block are no longer valid to go to.
3640 Mark them to cause an error message. */
3641 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3643 DECL_TOO_LATE (chain->label) = 1;
3644 /* If any goto without a fixup came to this label,
3645 that must be an error, because gotos without fixups
3646 come from outside all saved stack-levels. */
3647 if (TREE_ADDRESSABLE (chain->label))
3648 error_with_decl (chain->label,
3649 "label `%s' used before containing binding contour");
3653 /* Restore stack level in effect before the block
3654 (only if variable-size objects allocated). */
3655 /* Perform any cleanups associated with the block. */
3657 if (thisblock->data.block.stack_level != 0
3658 || thisblock->data.block.cleanups != 0)
3660 int reachable;
3661 rtx insn;
3663 /* Don't let cleanups affect ({...}) constructs. */
3664 int old_expr_stmts_for_value = expr_stmts_for_value;
3665 rtx old_last_expr_value = last_expr_value;
3666 tree old_last_expr_type = last_expr_type;
3667 expr_stmts_for_value = 0;
3669 /* Only clean up here if this point can actually be reached. */
3670 insn = get_last_insn ();
3671 if (GET_CODE (insn) == NOTE)
3672 insn = prev_nonnote_insn (insn);
3673 reachable = (! insn || GET_CODE (insn) != BARRIER);
3675 /* Do the cleanups. */
3676 expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);
3677 if (reachable)
3678 do_pending_stack_adjust ();
3680 expr_stmts_for_value = old_expr_stmts_for_value;
3681 last_expr_value = old_last_expr_value;
3682 last_expr_type = old_last_expr_type;
3684 /* Restore the stack level. */
3686 if (reachable && thisblock->data.block.stack_level != 0)
3688 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3689 thisblock->data.block.stack_level, NULL_RTX);
3690 if (nonlocal_goto_handler_slots != 0)
3691 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3692 NULL_RTX);
3695 /* Any gotos out of this block must also do these things.
3696 Also report any gotos with fixups that came to labels in this
3697 level. */
3698 fixup_gotos (thisblock,
3699 thisblock->data.block.stack_level,
3700 thisblock->data.block.cleanups,
3701 thisblock->data.block.first_insn,
3702 dont_jump_in);
3705 /* Mark the beginning and end of the scope if requested.
3706 We do this now, after running cleanups on the variables
3707 just going out of scope, so they are in scope for their cleanups. */
3709 if (mark_ends)
3711 rtx note = emit_note (NULL, NOTE_INSN_BLOCK_END);
3712 NOTE_BLOCK (note) = NOTE_BLOCK (thisblock->data.block.first_insn);
3714 else
3715 /* Get rid of the beginning-mark if we don't make an end-mark. */
3716 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3718 /* Restore the temporary level of TARGET_EXPRs. */
3719 target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3721 /* Restore block_stack level for containing block. */
3723 stack_block_stack = thisblock->data.block.innermost_stack_block;
3724 POPSTACK (block_stack);
3726 /* Pop the stack slot nesting and free any slots at this level. */
3727 pop_temp_slots ();
3730 /* Generate code to save the stack pointer at the start of the current block
3731 and set up to restore it on exit. */
3733 void
3734 save_stack_pointer ()
3736 struct nesting *thisblock = block_stack;
3738 if (thisblock->data.block.stack_level == 0)
3740 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3741 &thisblock->data.block.stack_level,
3742 thisblock->data.block.first_insn);
3743 stack_block_stack = thisblock;
3747 /* Generate RTL for the automatic variable declaration DECL.
3748 (Other kinds of declarations are simply ignored if seen here.) */
3750 void
3751 expand_decl (decl)
3752 tree decl;
3754 struct nesting *thisblock;
3755 tree type;
3757 type = TREE_TYPE (decl);
3759 /* For a CONST_DECL, set mode, alignment, and sizes from those of the
3760 type in case this node is used in a reference. */
3761 if (TREE_CODE (decl) == CONST_DECL)
3763 DECL_MODE (decl) = TYPE_MODE (type);
3764 DECL_ALIGN (decl) = TYPE_ALIGN (type);
3765 DECL_SIZE (decl) = TYPE_SIZE (type);
3766 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
3767 return;
3770 /* Otherwise, only automatic variables need any expansion done. Static and
3771 external variables, and external functions, will be handled by
3772 `assemble_variable' (called from finish_decl). TYPE_DECL requires
3773 nothing. PARM_DECLs are handled in `assign_parms'. */
3774 if (TREE_CODE (decl) != VAR_DECL)
3775 return;
3777 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3778 return;
3780 thisblock = block_stack;
3782 /* Create the RTL representation for the variable. */
3784 if (type == error_mark_node)
3785 SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
3787 else if (DECL_SIZE (decl) == 0)
3788 /* Variable with incomplete type. */
3790 rtx x;
3791 if (DECL_INITIAL (decl) == 0)
3792 /* Error message was already done; now avoid a crash. */
3793 x = gen_rtx_MEM (BLKmode, const0_rtx);
3794 else
3795 /* An initializer is going to decide the size of this array.
3796 Until we know the size, represent its address with a reg. */
3797 x = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
3799 set_mem_attributes (x, decl, 1);
3800 SET_DECL_RTL (decl, x);
3802 else if (DECL_MODE (decl) != BLKmode
3803 /* If -ffloat-store, don't put explicit float vars
3804 into regs. */
3805 && !(flag_float_store
3806 && TREE_CODE (type) == REAL_TYPE)
3807 && ! TREE_THIS_VOLATILE (decl)
3808 && (DECL_REGISTER (decl) || optimize))
3810 /* Automatic variable that can go in a register. */
3811 int unsignedp = TREE_UNSIGNED (type);
3812 enum machine_mode reg_mode
3813 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3815 SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
3817 if (GET_CODE (DECL_RTL (decl)) == REG)
3818 REGNO_DECL (REGNO (DECL_RTL (decl))) = decl;
3819 else if (GET_CODE (DECL_RTL (decl)) == CONCAT)
3821 REGNO_DECL (REGNO (XEXP (DECL_RTL (decl), 0))) = decl;
3822 REGNO_DECL (REGNO (XEXP (DECL_RTL (decl), 1))) = decl;
3825 mark_user_reg (DECL_RTL (decl));
3827 if (POINTER_TYPE_P (type))
3828 mark_reg_pointer (DECL_RTL (decl),
3829 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
3831 maybe_set_unchanging (DECL_RTL (decl), decl);
3833 /* If something wants our address, try to use ADDRESSOF. */
3834 if (TREE_ADDRESSABLE (decl))
3835 put_var_into_stack (decl);
3838 else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
3839 && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3840 && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
3841 STACK_CHECK_MAX_VAR_SIZE)))
3843 /* Variable of fixed size that goes on the stack. */
3844 rtx oldaddr = 0;
3845 rtx addr;
3846 rtx x;
3848 /* If we previously made RTL for this decl, it must be an array
3849 whose size was determined by the initializer.
3850 The old address was a register; set that register now
3851 to the proper address. */
3852 if (DECL_RTL_SET_P (decl))
3854 if (GET_CODE (DECL_RTL (decl)) != MEM
3855 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3856 abort ();
3857 oldaddr = XEXP (DECL_RTL (decl), 0);
3860 /* Set alignment we actually gave this decl. */
3861 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3862 : GET_MODE_BITSIZE (DECL_MODE (decl)));
3863 DECL_USER_ALIGN (decl) = 0;
3865 x = assign_temp (decl, 1, 1, 1);
3866 set_mem_attributes (x, decl, 1);
3867 SET_DECL_RTL (decl, x);
3869 if (oldaddr)
3871 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3872 if (addr != oldaddr)
3873 emit_move_insn (oldaddr, addr);
3876 else
3877 /* Dynamic-size object: must push space on the stack. */
3879 rtx address, size, x;
3881 /* Record the stack pointer on entry to block, if have
3882 not already done so. */
3883 do_pending_stack_adjust ();
3884 save_stack_pointer ();
3886 /* In function-at-a-time mode, variable_size doesn't expand this,
3887 so do it now. */
3888 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
3889 expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
3890 const0_rtx, VOIDmode, 0);
3892 /* Compute the variable's size, in bytes. */
3893 size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
3894 free_temp_slots ();
3896 /* Allocate space on the stack for the variable. Note that
3897 DECL_ALIGN says how the variable is to be aligned and we
3898 cannot use it to conclude anything about the alignment of
3899 the size. */
3900 address = allocate_dynamic_stack_space (size, NULL_RTX,
3901 TYPE_ALIGN (TREE_TYPE (decl)));
3903 /* Reference the variable indirect through that rtx. */
3904 x = gen_rtx_MEM (DECL_MODE (decl), address);
3905 set_mem_attributes (x, decl, 1);
3906 SET_DECL_RTL (decl, x);
3909 /* Indicate the alignment we actually gave this variable. */
3910 #ifdef STACK_BOUNDARY
3911 DECL_ALIGN (decl) = STACK_BOUNDARY;
3912 #else
3913 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
3914 #endif
3915 DECL_USER_ALIGN (decl) = 0;
3919 /* Emit code to perform the initialization of a declaration DECL. */
3921 void
3922 expand_decl_init (decl)
3923 tree decl;
3925 int was_used = TREE_USED (decl);
3927 /* If this is a CONST_DECL, we don't have to generate any code. Likewise
3928 for static decls. */
3929 if (TREE_CODE (decl) == CONST_DECL
3930 || TREE_STATIC (decl))
3931 return;
3933 /* Compute and store the initial value now. */
3935 if (DECL_INITIAL (decl) == error_mark_node)
3937 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3939 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3940 || code == POINTER_TYPE || code == REFERENCE_TYPE)
3941 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
3942 0, 0);
3943 emit_queue ();
3945 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
3947 emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3948 expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
3949 emit_queue ();
3952 /* Don't let the initialization count as "using" the variable. */
3953 TREE_USED (decl) = was_used;
3955 /* Free any temporaries we made while initializing the decl. */
3956 preserve_temp_slots (NULL_RTX);
3957 free_temp_slots ();
3960 /* CLEANUP is an expression to be executed at exit from this binding contour;
3961 for example, in C++, it might call the destructor for this variable.
3963 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
3964 CLEANUP multiple times, and have the correct semantics. This
3965 happens in exception handling, for gotos, returns, breaks that
3966 leave the current scope.
3968 If CLEANUP is nonzero and DECL is zero, we record a cleanup
3969 that is not associated with any particular variable. */
3972 expand_decl_cleanup (decl, cleanup)
3973 tree decl, cleanup;
3975 struct nesting *thisblock;
3977 /* Error if we are not in any block. */
3978 if (cfun == 0 || block_stack == 0)
3979 return 0;
3981 thisblock = block_stack;
3983 /* Record the cleanup if there is one. */
3985 if (cleanup != 0)
3987 tree t;
3988 rtx seq;
3989 tree *cleanups = &thisblock->data.block.cleanups;
3990 int cond_context = conditional_context ();
3992 if (cond_context)
3994 rtx flag = gen_reg_rtx (word_mode);
3995 rtx set_flag_0;
3996 tree cond;
3998 start_sequence ();
3999 emit_move_insn (flag, const0_rtx);
4000 set_flag_0 = get_insns ();
4001 end_sequence ();
4003 thisblock->data.block.last_unconditional_cleanup
4004 = emit_insn_after (set_flag_0,
4005 thisblock->data.block.last_unconditional_cleanup);
4007 emit_move_insn (flag, const1_rtx);
4009 cond = build_decl (VAR_DECL, NULL_TREE,
4010 (*lang_hooks.types.type_for_mode) (word_mode, 1));
4011 SET_DECL_RTL (cond, flag);
4013 /* Conditionalize the cleanup. */
4014 cleanup = build (COND_EXPR, void_type_node,
4015 (*lang_hooks.truthvalue_conversion) (cond),
4016 cleanup, integer_zero_node);
4017 cleanup = fold (cleanup);
4019 cleanups = &thisblock->data.block.cleanups;
4022 cleanup = unsave_expr (cleanup);
4024 t = *cleanups = tree_cons (decl, cleanup, *cleanups);
4026 if (! cond_context)
4027 /* If this block has a cleanup, it belongs in stack_block_stack. */
4028 stack_block_stack = thisblock;
4030 if (cond_context)
4032 start_sequence ();
4035 if (! using_eh_for_cleanups_p)
4036 TREE_ADDRESSABLE (t) = 1;
4037 else
4038 expand_eh_region_start ();
4040 if (cond_context)
4042 seq = get_insns ();
4043 end_sequence ();
4044 if (seq)
4045 thisblock->data.block.last_unconditional_cleanup
4046 = emit_insn_after (seq,
4047 thisblock->data.block.last_unconditional_cleanup);
4049 else
4051 thisblock->data.block.last_unconditional_cleanup
4052 = get_last_insn ();
4053 /* When we insert instructions after the last unconditional cleanup,
4054 we don't adjust last_insn. That means that a later add_insn will
4055 clobber the instructions we've just added. The easiest way to
4056 fix this is to just insert another instruction here, so that the
4057 instructions inserted after the last unconditional cleanup are
4058 never the last instruction. */
4059 emit_note (NULL, NOTE_INSN_DELETED);
4062 return 1;
4065 /* Like expand_decl_cleanup, but maybe only run the cleanup if an exception
4066 is thrown. */
4069 expand_decl_cleanup_eh (decl, cleanup, eh_only)
4070 tree decl, cleanup;
4071 int eh_only;
4073 int ret = expand_decl_cleanup (decl, cleanup);
4074 if (cleanup && ret)
4076 tree node = block_stack->data.block.cleanups;
4077 CLEANUP_EH_ONLY (node) = eh_only;
4079 return ret;
4082 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4083 DECL_ELTS is the list of elements that belong to DECL's type.
4084 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4086 void
4087 expand_anon_union_decl (decl, cleanup, decl_elts)
4088 tree decl, cleanup, decl_elts;
4090 struct nesting *thisblock = cfun == 0 ? 0 : block_stack;
4091 rtx x;
4092 tree t;
4094 /* If any of the elements are addressable, so is the entire union. */
4095 for (t = decl_elts; t; t = TREE_CHAIN (t))
4096 if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4098 TREE_ADDRESSABLE (decl) = 1;
4099 break;
4102 expand_decl (decl);
4103 expand_decl_cleanup (decl, cleanup);
4104 x = DECL_RTL (decl);
4106 /* Go through the elements, assigning RTL to each. */
4107 for (t = decl_elts; t; t = TREE_CHAIN (t))
4109 tree decl_elt = TREE_VALUE (t);
4110 tree cleanup_elt = TREE_PURPOSE (t);
4111 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4113 /* If any of the elements are addressable, so is the entire
4114 union. */
4115 if (TREE_USED (decl_elt))
4116 TREE_USED (decl) = 1;
4118 /* Propagate the union's alignment to the elements. */
4119 DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4120 DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
4122 /* If the element has BLKmode and the union doesn't, the union is
4123 aligned such that the element doesn't need to have BLKmode, so
4124 change the element's mode to the appropriate one for its size. */
4125 if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4126 DECL_MODE (decl_elt) = mode
4127 = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
4129 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4130 instead create a new MEM rtx with the proper mode. */
4131 if (GET_CODE (x) == MEM)
4133 if (mode == GET_MODE (x))
4134 SET_DECL_RTL (decl_elt, x);
4135 else
4136 SET_DECL_RTL (decl_elt, adjust_address_nv (x, mode, 0));
4138 else if (GET_CODE (x) == REG)
4140 if (mode == GET_MODE (x))
4141 SET_DECL_RTL (decl_elt, x);
4142 else
4143 SET_DECL_RTL (decl_elt, gen_lowpart_SUBREG (mode, x));
4145 else
4146 abort ();
4148 /* Record the cleanup if there is one. */
4150 if (cleanup != 0)
4151 thisblock->data.block.cleanups
4152 = tree_cons (decl_elt, cleanup_elt,
4153 thisblock->data.block.cleanups);
4157 /* Expand a list of cleanups LIST.
4158 Elements may be expressions or may be nested lists.
4160 If DONT_DO is nonnull, then any list-element
4161 whose TREE_PURPOSE matches DONT_DO is omitted.
4162 This is sometimes used to avoid a cleanup associated with
4163 a value that is being returned out of the scope.
4165 If IN_FIXUP is non-zero, we are generating this cleanup for a fixup
4166 goto and handle protection regions specially in that case.
4168 If REACHABLE, we emit code, otherwise just inform the exception handling
4169 code about this finalization. */
4171 static void
4172 expand_cleanups (list, dont_do, in_fixup, reachable)
4173 tree list;
4174 tree dont_do;
4175 int in_fixup;
4176 int reachable;
4178 tree tail;
4179 for (tail = list; tail; tail = TREE_CHAIN (tail))
4180 if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4182 if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4183 expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4184 else
4186 if (! in_fixup && using_eh_for_cleanups_p)
4187 expand_eh_region_end_cleanup (TREE_VALUE (tail));
4189 if (reachable && !CLEANUP_EH_ONLY (tail))
4191 /* Cleanups may be run multiple times. For example,
4192 when exiting a binding contour, we expand the
4193 cleanups associated with that contour. When a goto
4194 within that binding contour has a target outside that
4195 contour, it will expand all cleanups from its scope to
4196 the target. Though the cleanups are expanded multiple
4197 times, the control paths are non-overlapping so the
4198 cleanups will not be executed twice. */
4200 /* We may need to protect from outer cleanups. */
4201 if (in_fixup && using_eh_for_cleanups_p)
4203 expand_eh_region_start ();
4205 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4207 expand_eh_region_end_fixup (TREE_VALUE (tail));
4209 else
4210 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4212 free_temp_slots ();
4218 /* Mark when the context we are emitting RTL for as a conditional
4219 context, so that any cleanup actions we register with
4220 expand_decl_init will be properly conditionalized when those
4221 cleanup actions are later performed. Must be called before any
4222 expression (tree) is expanded that is within a conditional context. */
4224 void
4225 start_cleanup_deferral ()
4227 /* block_stack can be NULL if we are inside the parameter list. It is
4228 OK to do nothing, because cleanups aren't possible here. */
4229 if (block_stack)
4230 ++block_stack->data.block.conditional_code;
4233 /* Mark the end of a conditional region of code. Because cleanup
4234 deferrals may be nested, we may still be in a conditional region
4235 after we end the currently deferred cleanups, only after we end all
4236 deferred cleanups, are we back in unconditional code. */
4238 void
4239 end_cleanup_deferral ()
4241 /* block_stack can be NULL if we are inside the parameter list. It is
4242 OK to do nothing, because cleanups aren't possible here. */
4243 if (block_stack)
4244 --block_stack->data.block.conditional_code;
4247 /* Move all cleanups from the current block_stack
4248 to the containing block_stack, where they are assumed to
4249 have been created. If anything can cause a temporary to
4250 be created, but not expanded for more than one level of
4251 block_stacks, then this code will have to change. */
4253 void
4254 move_cleanups_up ()
4256 struct nesting *block = block_stack;
4257 struct nesting *outer = block->next;
4259 outer->data.block.cleanups
4260 = chainon (block->data.block.cleanups,
4261 outer->data.block.cleanups);
4262 block->data.block.cleanups = 0;
4265 tree
4266 last_cleanup_this_contour ()
4268 if (block_stack == 0)
4269 return 0;
4271 return block_stack->data.block.cleanups;
4274 /* Return 1 if there are any pending cleanups at this point.
4275 If THIS_CONTOUR is nonzero, check the current contour as well.
4276 Otherwise, look only at the contours that enclose this one. */
4279 any_pending_cleanups (this_contour)
4280 int this_contour;
4282 struct nesting *block;
4284 if (cfun == NULL || cfun->stmt == NULL || block_stack == 0)
4285 return 0;
4287 if (this_contour && block_stack->data.block.cleanups != NULL)
4288 return 1;
4289 if (block_stack->data.block.cleanups == 0
4290 && block_stack->data.block.outer_cleanups == 0)
4291 return 0;
4293 for (block = block_stack->next; block; block = block->next)
4294 if (block->data.block.cleanups != 0)
4295 return 1;
4297 return 0;
4300 /* Enter a case (Pascal) or switch (C) statement.
4301 Push a block onto case_stack and nesting_stack
4302 to accumulate the case-labels that are seen
4303 and to record the labels generated for the statement.
4305 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4306 Otherwise, this construct is transparent for `exit_something'.
4308 EXPR is the index-expression to be dispatched on.
4309 TYPE is its nominal type. We could simply convert EXPR to this type,
4310 but instead we take short cuts. */
4312 void
4313 expand_start_case (exit_flag, expr, type, printname)
4314 int exit_flag;
4315 tree expr;
4316 tree type;
4317 const char *printname;
4319 struct nesting *thiscase = ALLOC_NESTING ();
4321 /* Make an entry on case_stack for the case we are entering. */
4323 thiscase->desc = CASE_NESTING;
4324 thiscase->next = case_stack;
4325 thiscase->all = nesting_stack;
4326 thiscase->depth = ++nesting_depth;
4327 thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4328 thiscase->data.case_stmt.case_list = 0;
4329 thiscase->data.case_stmt.index_expr = expr;
4330 thiscase->data.case_stmt.nominal_type = type;
4331 thiscase->data.case_stmt.default_label = 0;
4332 thiscase->data.case_stmt.printname = printname;
4333 thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4334 case_stack = thiscase;
4335 nesting_stack = thiscase;
4337 do_pending_stack_adjust ();
4339 /* Make sure case_stmt.start points to something that won't
4340 need any transformation before expand_end_case. */
4341 if (GET_CODE (get_last_insn ()) != NOTE)
4342 emit_note (NULL, NOTE_INSN_DELETED);
4344 thiscase->data.case_stmt.start = get_last_insn ();
4346 start_cleanup_deferral ();
4349 /* Start a "dummy case statement" within which case labels are invalid
4350 and are not connected to any larger real case statement.
4351 This can be used if you don't want to let a case statement jump
4352 into the middle of certain kinds of constructs. */
4354 void
4355 expand_start_case_dummy ()
4357 struct nesting *thiscase = ALLOC_NESTING ();
4359 /* Make an entry on case_stack for the dummy. */
4361 thiscase->desc = CASE_NESTING;
4362 thiscase->next = case_stack;
4363 thiscase->all = nesting_stack;
4364 thiscase->depth = ++nesting_depth;
4365 thiscase->exit_label = 0;
4366 thiscase->data.case_stmt.case_list = 0;
4367 thiscase->data.case_stmt.start = 0;
4368 thiscase->data.case_stmt.nominal_type = 0;
4369 thiscase->data.case_stmt.default_label = 0;
4370 case_stack = thiscase;
4371 nesting_stack = thiscase;
4372 start_cleanup_deferral ();
4375 /* End a dummy case statement. */
4377 void
4378 expand_end_case_dummy ()
4380 end_cleanup_deferral ();
4381 POPSTACK (case_stack);
4384 /* Return the data type of the index-expression
4385 of the innermost case statement, or null if none. */
4387 tree
4388 case_index_expr_type ()
4390 if (case_stack)
4391 return TREE_TYPE (case_stack->data.case_stmt.index_expr);
4392 return 0;
4395 static void
4396 check_seenlabel ()
4398 /* If this is the first label, warn if any insns have been emitted. */
4399 if (case_stack->data.case_stmt.line_number_status >= 0)
4401 rtx insn;
4403 restore_line_number_status
4404 (case_stack->data.case_stmt.line_number_status);
4405 case_stack->data.case_stmt.line_number_status = -1;
4407 for (insn = case_stack->data.case_stmt.start;
4408 insn;
4409 insn = NEXT_INSN (insn))
4411 if (GET_CODE (insn) == CODE_LABEL)
4412 break;
4413 if (GET_CODE (insn) != NOTE
4414 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4417 insn = PREV_INSN (insn);
4418 while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4420 /* If insn is zero, then there must have been a syntax error. */
4421 if (insn)
4422 warning_with_file_and_line (NOTE_SOURCE_FILE (insn),
4423 NOTE_LINE_NUMBER (insn),
4424 "unreachable code at beginning of %s",
4425 case_stack->data.case_stmt.printname);
4426 break;
4432 /* Accumulate one case or default label inside a case or switch statement.
4433 VALUE is the value of the case (a null pointer, for a default label).
4434 The function CONVERTER, when applied to arguments T and V,
4435 converts the value V to the type T.
4437 If not currently inside a case or switch statement, return 1 and do
4438 nothing. The caller will print a language-specific error message.
4439 If VALUE is a duplicate or overlaps, return 2 and do nothing
4440 except store the (first) duplicate node in *DUPLICATE.
4441 If VALUE is out of range, return 3 and do nothing.
4442 If we are jumping into the scope of a cleanup or var-sized array, return 5.
4443 Return 0 on success.
4445 Extended to handle range statements. */
4448 pushcase (value, converter, label, duplicate)
4449 tree value;
4450 tree (*converter) PARAMS ((tree, tree));
4451 tree label;
4452 tree *duplicate;
4454 tree index_type;
4455 tree nominal_type;
4457 /* Fail if not inside a real case statement. */
4458 if (! (case_stack && case_stack->data.case_stmt.start))
4459 return 1;
4461 if (stack_block_stack
4462 && stack_block_stack->depth > case_stack->depth)
4463 return 5;
4465 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4466 nominal_type = case_stack->data.case_stmt.nominal_type;
4468 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4469 if (index_type == error_mark_node)
4470 return 0;
4472 /* Convert VALUE to the type in which the comparisons are nominally done. */
4473 if (value != 0)
4474 value = (*converter) (nominal_type, value);
4476 check_seenlabel ();
4478 /* Fail if this value is out of range for the actual type of the index
4479 (which may be narrower than NOMINAL_TYPE). */
4480 if (value != 0
4481 && (TREE_CONSTANT_OVERFLOW (value)
4482 || ! int_fits_type_p (value, index_type)))
4483 return 3;
4485 return add_case_node (value, value, label, duplicate);
4488 /* Like pushcase but this case applies to all values between VALUE1 and
4489 VALUE2 (inclusive). If VALUE1 is NULL, the range starts at the lowest
4490 value of the index type and ends at VALUE2. If VALUE2 is NULL, the range
4491 starts at VALUE1 and ends at the highest value of the index type.
4492 If both are NULL, this case applies to all values.
4494 The return value is the same as that of pushcase but there is one
4495 additional error code: 4 means the specified range was empty. */
4498 pushcase_range (value1, value2, converter, label, duplicate)
4499 tree value1, value2;
4500 tree (*converter) PARAMS ((tree, tree));
4501 tree label;
4502 tree *duplicate;
4504 tree index_type;
4505 tree nominal_type;
4507 /* Fail if not inside a real case statement. */
4508 if (! (case_stack && case_stack->data.case_stmt.start))
4509 return 1;
4511 if (stack_block_stack
4512 && stack_block_stack->depth > case_stack->depth)
4513 return 5;
4515 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4516 nominal_type = case_stack->data.case_stmt.nominal_type;
4518 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4519 if (index_type == error_mark_node)
4520 return 0;
4522 check_seenlabel ();
4524 /* Convert VALUEs to type in which the comparisons are nominally done
4525 and replace any unspecified value with the corresponding bound. */
4526 if (value1 == 0)
4527 value1 = TYPE_MIN_VALUE (index_type);
4528 if (value2 == 0)
4529 value2 = TYPE_MAX_VALUE (index_type);
4531 /* Fail if the range is empty. Do this before any conversion since
4532 we want to allow out-of-range empty ranges. */
4533 if (value2 != 0 && tree_int_cst_lt (value2, value1))
4534 return 4;
4536 /* If the max was unbounded, use the max of the nominal_type we are
4537 converting to. Do this after the < check above to suppress false
4538 positives. */
4539 if (value2 == 0)
4540 value2 = TYPE_MAX_VALUE (nominal_type);
4542 value1 = (*converter) (nominal_type, value1);
4543 value2 = (*converter) (nominal_type, value2);
4545 /* Fail if these values are out of range. */
4546 if (TREE_CONSTANT_OVERFLOW (value1)
4547 || ! int_fits_type_p (value1, index_type))
4548 return 3;
4550 if (TREE_CONSTANT_OVERFLOW (value2)
4551 || ! int_fits_type_p (value2, index_type))
4552 return 3;
4554 return add_case_node (value1, value2, label, duplicate);
4557 /* Do the actual insertion of a case label for pushcase and pushcase_range
4558 into case_stack->data.case_stmt.case_list. Use an AVL tree to avoid
4559 slowdown for large switch statements. */
4562 add_case_node (low, high, label, duplicate)
4563 tree low, high;
4564 tree label;
4565 tree *duplicate;
4567 struct case_node *p, **q, *r;
4569 /* If there's no HIGH value, then this is not a case range; it's
4570 just a simple case label. But that's just a degenerate case
4571 range. */
4572 if (!high)
4573 high = low;
4575 /* Handle default labels specially. */
4576 if (!high && !low)
4578 if (case_stack->data.case_stmt.default_label != 0)
4580 *duplicate = case_stack->data.case_stmt.default_label;
4581 return 2;
4583 case_stack->data.case_stmt.default_label = label;
4584 expand_label (label);
4585 return 0;
4588 q = &case_stack->data.case_stmt.case_list;
4589 p = *q;
4591 while ((r = *q))
4593 p = r;
4595 /* Keep going past elements distinctly greater than HIGH. */
4596 if (tree_int_cst_lt (high, p->low))
4597 q = &p->left;
4599 /* or distinctly less than LOW. */
4600 else if (tree_int_cst_lt (p->high, low))
4601 q = &p->right;
4603 else
4605 /* We have an overlap; this is an error. */
4606 *duplicate = p->code_label;
4607 return 2;
4611 /* Add this label to the chain, and succeed. */
4613 r = (struct case_node *) ggc_alloc (sizeof (struct case_node));
4614 r->low = low;
4616 /* If the bounds are equal, turn this into the one-value case. */
4617 if (tree_int_cst_equal (low, high))
4618 r->high = r->low;
4619 else
4620 r->high = high;
4622 r->code_label = label;
4623 expand_label (label);
4625 *q = r;
4626 r->parent = p;
4627 r->left = 0;
4628 r->right = 0;
4629 r->balance = 0;
4631 while (p)
4633 struct case_node *s;
4635 if (r == p->left)
4637 int b;
4639 if (! (b = p->balance))
4640 /* Growth propagation from left side. */
4641 p->balance = -1;
4642 else if (b < 0)
4644 if (r->balance < 0)
4646 /* R-Rotation */
4647 if ((p->left = s = r->right))
4648 s->parent = p;
4650 r->right = p;
4651 p->balance = 0;
4652 r->balance = 0;
4653 s = p->parent;
4654 p->parent = r;
4656 if ((r->parent = s))
4658 if (s->left == p)
4659 s->left = r;
4660 else
4661 s->right = r;
4663 else
4664 case_stack->data.case_stmt.case_list = r;
4666 else
4667 /* r->balance == +1 */
4669 /* LR-Rotation */
4671 int b2;
4672 struct case_node *t = r->right;
4674 if ((p->left = s = t->right))
4675 s->parent = p;
4677 t->right = p;
4678 if ((r->right = s = t->left))
4679 s->parent = r;
4681 t->left = r;
4682 b = t->balance;
4683 b2 = b < 0;
4684 p->balance = b2;
4685 b2 = -b2 - b;
4686 r->balance = b2;
4687 t->balance = 0;
4688 s = p->parent;
4689 p->parent = t;
4690 r->parent = t;
4692 if ((t->parent = s))
4694 if (s->left == p)
4695 s->left = t;
4696 else
4697 s->right = t;
4699 else
4700 case_stack->data.case_stmt.case_list = t;
4702 break;
4705 else
4707 /* p->balance == +1; growth of left side balances the node. */
4708 p->balance = 0;
4709 break;
4712 else
4713 /* r == p->right */
4715 int b;
4717 if (! (b = p->balance))
4718 /* Growth propagation from right side. */
4719 p->balance++;
4720 else if (b > 0)
4722 if (r->balance > 0)
4724 /* L-Rotation */
4726 if ((p->right = s = r->left))
4727 s->parent = p;
4729 r->left = p;
4730 p->balance = 0;
4731 r->balance = 0;
4732 s = p->parent;
4733 p->parent = r;
4734 if ((r->parent = s))
4736 if (s->left == p)
4737 s->left = r;
4738 else
4739 s->right = r;
4742 else
4743 case_stack->data.case_stmt.case_list = r;
4746 else
4747 /* r->balance == -1 */
4749 /* RL-Rotation */
4750 int b2;
4751 struct case_node *t = r->left;
4753 if ((p->right = s = t->left))
4754 s->parent = p;
4756 t->left = p;
4758 if ((r->left = s = t->right))
4759 s->parent = r;
4761 t->right = r;
4762 b = t->balance;
4763 b2 = b < 0;
4764 r->balance = b2;
4765 b2 = -b2 - b;
4766 p->balance = b2;
4767 t->balance = 0;
4768 s = p->parent;
4769 p->parent = t;
4770 r->parent = t;
4772 if ((t->parent = s))
4774 if (s->left == p)
4775 s->left = t;
4776 else
4777 s->right = t;
4780 else
4781 case_stack->data.case_stmt.case_list = t;
4783 break;
4785 else
4787 /* p->balance == -1; growth of right side balances the node. */
4788 p->balance = 0;
4789 break;
4793 r = p;
4794 p = p->parent;
4797 return 0;
4800 /* Returns the number of possible values of TYPE.
4801 Returns -1 if the number is unknown, variable, or if the number does not
4802 fit in a HOST_WIDE_INT.
4803 Sets *SPARSENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4804 do not increase monotonically (there may be duplicates);
4805 to 1 if the values increase monotonically, but not always by 1;
4806 otherwise sets it to 0. */
4808 HOST_WIDE_INT
4809 all_cases_count (type, sparseness)
4810 tree type;
4811 int *sparseness;
4813 tree t;
4814 HOST_WIDE_INT count, minval, lastval;
4816 *sparseness = 0;
4818 switch (TREE_CODE (type))
4820 case BOOLEAN_TYPE:
4821 count = 2;
4822 break;
4824 case CHAR_TYPE:
4825 count = 1 << BITS_PER_UNIT;
4826 break;
4828 default:
4829 case INTEGER_TYPE:
4830 if (TYPE_MAX_VALUE (type) != 0
4831 && 0 != (t = fold (build (MINUS_EXPR, type, TYPE_MAX_VALUE (type),
4832 TYPE_MIN_VALUE (type))))
4833 && 0 != (t = fold (build (PLUS_EXPR, type, t,
4834 convert (type, integer_zero_node))))
4835 && host_integerp (t, 1))
4836 count = tree_low_cst (t, 1);
4837 else
4838 return -1;
4839 break;
4841 case ENUMERAL_TYPE:
4842 /* Don't waste time with enumeral types with huge values. */
4843 if (! host_integerp (TYPE_MIN_VALUE (type), 0)
4844 || TYPE_MAX_VALUE (type) == 0
4845 || ! host_integerp (TYPE_MAX_VALUE (type), 0))
4846 return -1;
4848 lastval = minval = tree_low_cst (TYPE_MIN_VALUE (type), 0);
4849 count = 0;
4851 for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
4853 HOST_WIDE_INT thisval = tree_low_cst (TREE_VALUE (t), 0);
4855 if (*sparseness == 2 || thisval <= lastval)
4856 *sparseness = 2;
4857 else if (thisval != minval + count)
4858 *sparseness = 1;
4860 lastval = thisval;
4861 count++;
4865 return count;
4868 #define BITARRAY_TEST(ARRAY, INDEX) \
4869 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4870 & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4871 #define BITARRAY_SET(ARRAY, INDEX) \
4872 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4873 |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4875 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4876 with the case values we have seen, assuming the case expression
4877 has the given TYPE.
4878 SPARSENESS is as determined by all_cases_count.
4880 The time needed is proportional to COUNT, unless
4881 SPARSENESS is 2, in which case quadratic time is needed. */
4883 void
4884 mark_seen_cases (type, cases_seen, count, sparseness)
4885 tree type;
4886 unsigned char *cases_seen;
4887 HOST_WIDE_INT count;
4888 int sparseness;
4890 tree next_node_to_try = NULL_TREE;
4891 HOST_WIDE_INT next_node_offset = 0;
4893 struct case_node *n, *root = case_stack->data.case_stmt.case_list;
4894 tree val = make_node (INTEGER_CST);
4896 TREE_TYPE (val) = type;
4897 if (! root)
4898 /* Do nothing. */
4900 else if (sparseness == 2)
4902 tree t;
4903 unsigned HOST_WIDE_INT xlo;
4905 /* This less efficient loop is only needed to handle
4906 duplicate case values (multiple enum constants
4907 with the same value). */
4908 TREE_TYPE (val) = TREE_TYPE (root->low);
4909 for (t = TYPE_VALUES (type), xlo = 0; t != NULL_TREE;
4910 t = TREE_CHAIN (t), xlo++)
4912 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
4913 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
4914 n = root;
4917 /* Keep going past elements distinctly greater than VAL. */
4918 if (tree_int_cst_lt (val, n->low))
4919 n = n->left;
4921 /* or distinctly less than VAL. */
4922 else if (tree_int_cst_lt (n->high, val))
4923 n = n->right;
4925 else
4927 /* We have found a matching range. */
4928 BITARRAY_SET (cases_seen, xlo);
4929 break;
4932 while (n);
4935 else
4937 if (root->left)
4938 case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
4940 for (n = root; n; n = n->right)
4942 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
4943 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
4944 while (! tree_int_cst_lt (n->high, val))
4946 /* Calculate (into xlo) the "offset" of the integer (val).
4947 The element with lowest value has offset 0, the next smallest
4948 element has offset 1, etc. */
4950 unsigned HOST_WIDE_INT xlo;
4951 HOST_WIDE_INT xhi;
4952 tree t;
4954 if (sparseness && TYPE_VALUES (type) != NULL_TREE)
4956 /* The TYPE_VALUES will be in increasing order, so
4957 starting searching where we last ended. */
4958 t = next_node_to_try;
4959 xlo = next_node_offset;
4960 xhi = 0;
4961 for (;;)
4963 if (t == NULL_TREE)
4965 t = TYPE_VALUES (type);
4966 xlo = 0;
4968 if (tree_int_cst_equal (val, TREE_VALUE (t)))
4970 next_node_to_try = TREE_CHAIN (t);
4971 next_node_offset = xlo + 1;
4972 break;
4974 xlo++;
4975 t = TREE_CHAIN (t);
4976 if (t == next_node_to_try)
4978 xlo = -1;
4979 break;
4983 else
4985 t = TYPE_MIN_VALUE (type);
4986 if (t)
4987 neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
4988 &xlo, &xhi);
4989 else
4990 xlo = xhi = 0;
4991 add_double (xlo, xhi,
4992 TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
4993 &xlo, &xhi);
4996 if (xhi == 0 && xlo < (unsigned HOST_WIDE_INT) count)
4997 BITARRAY_SET (cases_seen, xlo);
4999 add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5000 1, 0,
5001 &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5007 /* Given a switch statement with an expression that is an enumeration
5008 type, warn if any of the enumeration type's literals are not
5009 covered by the case expressions of the switch. Also, warn if there
5010 are any extra switch cases that are *not* elements of the
5011 enumerated type.
5013 Historical note:
5015 At one stage this function would: ``If all enumeration literals
5016 were covered by the case expressions, turn one of the expressions
5017 into the default expression since it should not be possible to fall
5018 through such a switch.''
5020 That code has since been removed as: ``This optimization is
5021 disabled because it causes valid programs to fail. ANSI C does not
5022 guarantee that an expression with enum type will have a value that
5023 is the same as one of the enumeration literals.'' */
5025 void
5026 check_for_full_enumeration_handling (type)
5027 tree type;
5029 struct case_node *n;
5030 tree chain;
5032 /* True iff the selector type is a numbered set mode. */
5033 int sparseness = 0;
5035 /* The number of possible selector values. */
5036 HOST_WIDE_INT size;
5038 /* For each possible selector value. a one iff it has been matched
5039 by a case value alternative. */
5040 unsigned char *cases_seen;
5042 /* The allocated size of cases_seen, in chars. */
5043 HOST_WIDE_INT bytes_needed;
5045 size = all_cases_count (type, &sparseness);
5046 bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5048 if (size > 0 && size < 600000
5049 /* We deliberately use calloc here, not cmalloc, so that we can suppress
5050 this optimization if we don't have enough memory rather than
5051 aborting, as xmalloc would do. */
5052 && (cases_seen =
5053 (unsigned char *) really_call_calloc (bytes_needed, 1)) != NULL)
5055 HOST_WIDE_INT i;
5056 tree v = TYPE_VALUES (type);
5058 /* The time complexity of this code is normally O(N), where
5059 N being the number of members in the enumerated type.
5060 However, if type is an ENUMERAL_TYPE whose values do not
5061 increase monotonically, O(N*log(N)) time may be needed. */
5063 mark_seen_cases (type, cases_seen, size, sparseness);
5065 for (i = 0; v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5066 if (BITARRAY_TEST (cases_seen, i) == 0)
5067 warning ("enumeration value `%s' not handled in switch",
5068 IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5070 free (cases_seen);
5073 /* Now we go the other way around; we warn if there are case
5074 expressions that don't correspond to enumerators. This can
5075 occur since C and C++ don't enforce type-checking of
5076 assignments to enumeration variables. */
5078 if (case_stack->data.case_stmt.case_list
5079 && case_stack->data.case_stmt.case_list->left)
5080 case_stack->data.case_stmt.case_list
5081 = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5082 for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5084 for (chain = TYPE_VALUES (type);
5085 chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5086 chain = TREE_CHAIN (chain))
5089 if (!chain)
5091 if (TYPE_NAME (type) == 0)
5092 warning ("case value `%ld' not in enumerated type",
5093 (long) TREE_INT_CST_LOW (n->low));
5094 else
5095 warning ("case value `%ld' not in enumerated type `%s'",
5096 (long) TREE_INT_CST_LOW (n->low),
5097 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5098 == IDENTIFIER_NODE)
5099 ? TYPE_NAME (type)
5100 : DECL_NAME (TYPE_NAME (type))));
5102 if (!tree_int_cst_equal (n->low, n->high))
5104 for (chain = TYPE_VALUES (type);
5105 chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5106 chain = TREE_CHAIN (chain))
5109 if (!chain)
5111 if (TYPE_NAME (type) == 0)
5112 warning ("case value `%ld' not in enumerated type",
5113 (long) TREE_INT_CST_LOW (n->high));
5114 else
5115 warning ("case value `%ld' not in enumerated type `%s'",
5116 (long) TREE_INT_CST_LOW (n->high),
5117 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5118 == IDENTIFIER_NODE)
5119 ? TYPE_NAME (type)
5120 : DECL_NAME (TYPE_NAME (type))));
5128 /* Terminate a case (Pascal) or switch (C) statement
5129 in which ORIG_INDEX is the expression to be tested.
5130 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
5131 type as given in the source before any compiler conversions.
5132 Generate the code to test it and jump to the right place. */
5134 void
5135 expand_end_case_type (orig_index, orig_type)
5136 tree orig_index, orig_type;
5138 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
5139 rtx default_label = 0;
5140 struct case_node *n;
5141 unsigned int count;
5142 rtx index;
5143 rtx table_label;
5144 int ncases;
5145 rtx *labelvec;
5146 int i;
5147 rtx before_case, end;
5148 struct nesting *thiscase = case_stack;
5149 tree index_expr, index_type;
5150 int unsignedp;
5152 /* Don't crash due to previous errors. */
5153 if (thiscase == NULL)
5154 return;
5156 table_label = gen_label_rtx ();
5157 index_expr = thiscase->data.case_stmt.index_expr;
5158 index_type = TREE_TYPE (index_expr);
5159 unsignedp = TREE_UNSIGNED (index_type);
5160 if (orig_type == NULL)
5161 orig_type = TREE_TYPE (orig_index);
5163 do_pending_stack_adjust ();
5165 /* This might get an spurious warning in the presence of a syntax error;
5166 it could be fixed by moving the call to check_seenlabel after the
5167 check for error_mark_node, and copying the code of check_seenlabel that
5168 deals with case_stack->data.case_stmt.line_number_status /
5169 restore_line_number_status in front of the call to end_cleanup_deferral;
5170 However, this might miss some useful warnings in the presence of
5171 non-syntax errors. */
5172 check_seenlabel ();
5174 /* An ERROR_MARK occurs for various reasons including invalid data type. */
5175 if (index_type != error_mark_node)
5177 /* If the switch expression was an enumerated type, check that
5178 exactly all enumeration literals are covered by the cases.
5179 The check is made when -Wswitch was specified and there is no
5180 default case, or when -Wswitch-enum was specified. */
5181 if (((warn_switch && !thiscase->data.case_stmt.default_label)
5182 || warn_switch_enum)
5183 && TREE_CODE (orig_type) == ENUMERAL_TYPE
5184 && TREE_CODE (index_expr) != INTEGER_CST)
5185 check_for_full_enumeration_handling (orig_type);
5187 if (warn_switch_default && !thiscase->data.case_stmt.default_label)
5188 warning ("switch missing default case");
5190 /* If we don't have a default-label, create one here,
5191 after the body of the switch. */
5192 if (thiscase->data.case_stmt.default_label == 0)
5194 thiscase->data.case_stmt.default_label
5195 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5196 expand_label (thiscase->data.case_stmt.default_label);
5198 default_label = label_rtx (thiscase->data.case_stmt.default_label);
5200 before_case = get_last_insn ();
5202 if (thiscase->data.case_stmt.case_list
5203 && thiscase->data.case_stmt.case_list->left)
5204 thiscase->data.case_stmt.case_list
5205 = case_tree2list (thiscase->data.case_stmt.case_list, 0);
5207 /* Simplify the case-list before we count it. */
5208 group_case_nodes (thiscase->data.case_stmt.case_list);
5210 /* Get upper and lower bounds of case values.
5211 Also convert all the case values to the index expr's data type. */
5213 count = 0;
5214 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5216 /* Check low and high label values are integers. */
5217 if (TREE_CODE (n->low) != INTEGER_CST)
5218 abort ();
5219 if (TREE_CODE (n->high) != INTEGER_CST)
5220 abort ();
5222 n->low = convert (index_type, n->low);
5223 n->high = convert (index_type, n->high);
5225 /* Count the elements and track the largest and smallest
5226 of them (treating them as signed even if they are not). */
5227 if (count++ == 0)
5229 minval = n->low;
5230 maxval = n->high;
5232 else
5234 if (INT_CST_LT (n->low, minval))
5235 minval = n->low;
5236 if (INT_CST_LT (maxval, n->high))
5237 maxval = n->high;
5239 /* A range counts double, since it requires two compares. */
5240 if (! tree_int_cst_equal (n->low, n->high))
5241 count++;
5244 /* Compute span of values. */
5245 if (count != 0)
5246 range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5248 end_cleanup_deferral ();
5250 if (count == 0)
5252 expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5253 emit_queue ();
5254 emit_jump (default_label);
5257 /* If range of values is much bigger than number of values,
5258 make a sequence of conditional branches instead of a dispatch.
5259 If the switch-index is a constant, do it this way
5260 because we can optimize it. */
5262 else if (count < case_values_threshold ()
5263 || compare_tree_int (range, 10 * count) > 0
5264 /* RANGE may be signed, and really large ranges will show up
5265 as negative numbers. */
5266 || compare_tree_int (range, 0) < 0
5267 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5268 || flag_pic
5269 #endif
5270 || TREE_CODE (index_expr) == INTEGER_CST
5271 || (TREE_CODE (index_expr) == COMPOUND_EXPR
5272 && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
5274 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5276 /* If the index is a short or char that we do not have
5277 an insn to handle comparisons directly, convert it to
5278 a full integer now, rather than letting each comparison
5279 generate the conversion. */
5281 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5282 && ! have_insn_for (COMPARE, GET_MODE (index)))
5284 enum machine_mode wider_mode;
5285 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5286 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5287 if (have_insn_for (COMPARE, wider_mode))
5289 index = convert_to_mode (wider_mode, index, unsignedp);
5290 break;
5294 emit_queue ();
5295 do_pending_stack_adjust ();
5297 index = protect_from_queue (index, 0);
5298 if (GET_CODE (index) == MEM)
5299 index = copy_to_reg (index);
5300 if (GET_CODE (index) == CONST_INT
5301 || TREE_CODE (index_expr) == INTEGER_CST)
5303 /* Make a tree node with the proper constant value
5304 if we don't already have one. */
5305 if (TREE_CODE (index_expr) != INTEGER_CST)
5307 index_expr
5308 = build_int_2 (INTVAL (index),
5309 unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5310 index_expr = convert (index_type, index_expr);
5313 /* For constant index expressions we need only
5314 issue an unconditional branch to the appropriate
5315 target code. The job of removing any unreachable
5316 code is left to the optimisation phase if the
5317 "-O" option is specified. */
5318 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5319 if (! tree_int_cst_lt (index_expr, n->low)
5320 && ! tree_int_cst_lt (n->high, index_expr))
5321 break;
5323 if (n)
5324 emit_jump (label_rtx (n->code_label));
5325 else
5326 emit_jump (default_label);
5328 else
5330 /* If the index expression is not constant we generate
5331 a binary decision tree to select the appropriate
5332 target code. This is done as follows:
5334 The list of cases is rearranged into a binary tree,
5335 nearly optimal assuming equal probability for each case.
5337 The tree is transformed into RTL, eliminating
5338 redundant test conditions at the same time.
5340 If program flow could reach the end of the
5341 decision tree an unconditional jump to the
5342 default code is emitted. */
5344 use_cost_table
5345 = (TREE_CODE (orig_type) != ENUMERAL_TYPE
5346 && estimate_case_costs (thiscase->data.case_stmt.case_list));
5347 balance_case_nodes (&thiscase->data.case_stmt.case_list, NULL);
5348 emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5349 default_label, index_type);
5350 emit_jump_if_reachable (default_label);
5353 else
5355 if (! try_casesi (index_type, index_expr, minval, range,
5356 table_label, default_label))
5358 index_type = thiscase->data.case_stmt.nominal_type;
5360 /* Index jumptables from zero for suitable values of
5361 minval to avoid a subtraction. */
5362 if (! optimize_size
5363 && compare_tree_int (minval, 0) > 0
5364 && compare_tree_int (minval, 3) < 0)
5366 minval = integer_zero_node;
5367 range = maxval;
5370 if (! try_tablejump (index_type, index_expr, minval, range,
5371 table_label, default_label))
5372 abort ();
5375 /* Get table of labels to jump to, in order of case index. */
5377 ncases = tree_low_cst (range, 0) + 1;
5378 labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5379 memset ((char *) labelvec, 0, ncases * sizeof (rtx));
5381 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5383 /* Compute the low and high bounds relative to the minimum
5384 value since that should fit in a HOST_WIDE_INT while the
5385 actual values may not. */
5386 HOST_WIDE_INT i_low
5387 = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5388 n->low, minval)), 1);
5389 HOST_WIDE_INT i_high
5390 = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5391 n->high, minval)), 1);
5392 HOST_WIDE_INT i;
5394 for (i = i_low; i <= i_high; i ++)
5395 labelvec[i]
5396 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5399 /* Fill in the gaps with the default. */
5400 for (i = 0; i < ncases; i++)
5401 if (labelvec[i] == 0)
5402 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5404 /* Output the table */
5405 emit_label (table_label);
5407 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5408 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5409 gen_rtx_LABEL_REF (Pmode, table_label),
5410 gen_rtvec_v (ncases, labelvec),
5411 const0_rtx, const0_rtx));
5412 else
5413 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5414 gen_rtvec_v (ncases, labelvec)));
5416 /* If the case insn drops through the table,
5417 after the table we must jump to the default-label.
5418 Otherwise record no drop-through after the table. */
5419 #ifdef CASE_DROPS_THROUGH
5420 emit_jump (default_label);
5421 #else
5422 emit_barrier ();
5423 #endif
5426 before_case = NEXT_INSN (before_case);
5427 end = get_last_insn ();
5428 if (squeeze_notes (&before_case, &end))
5429 abort ();
5430 reorder_insns (before_case, end,
5431 thiscase->data.case_stmt.start);
5433 else
5434 end_cleanup_deferral ();
5436 if (thiscase->exit_label)
5437 emit_label (thiscase->exit_label);
5439 POPSTACK (case_stack);
5441 free_temp_slots ();
5444 /* Convert the tree NODE into a list linked by the right field, with the left
5445 field zeroed. RIGHT is used for recursion; it is a list to be placed
5446 rightmost in the resulting list. */
5448 static struct case_node *
5449 case_tree2list (node, right)
5450 struct case_node *node, *right;
5452 struct case_node *left;
5454 if (node->right)
5455 right = case_tree2list (node->right, right);
5457 node->right = right;
5458 if ((left = node->left))
5460 node->left = 0;
5461 return case_tree2list (left, node);
5464 return node;
5467 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
5469 static void
5470 do_jump_if_equal (op1, op2, label, unsignedp)
5471 rtx op1, op2, label;
5472 int unsignedp;
5474 if (GET_CODE (op1) == CONST_INT && GET_CODE (op2) == CONST_INT)
5476 if (INTVAL (op1) == INTVAL (op2))
5477 emit_jump (label);
5479 else
5480 emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX,
5481 (GET_MODE (op1) == VOIDmode
5482 ? GET_MODE (op2) : GET_MODE (op1)),
5483 unsignedp, label);
5486 /* Not all case values are encountered equally. This function
5487 uses a heuristic to weight case labels, in cases where that
5488 looks like a reasonable thing to do.
5490 Right now, all we try to guess is text, and we establish the
5491 following weights:
5493 chars above space: 16
5494 digits: 16
5495 default: 12
5496 space, punct: 8
5497 tab: 4
5498 newline: 2
5499 other "\" chars: 1
5500 remaining chars: 0
5502 If we find any cases in the switch that are not either -1 or in the range
5503 of valid ASCII characters, or are control characters other than those
5504 commonly used with "\", don't treat this switch scanning text.
5506 Return 1 if these nodes are suitable for cost estimation, otherwise
5507 return 0. */
5509 static int
5510 estimate_case_costs (node)
5511 case_node_ptr node;
5513 tree min_ascii = integer_minus_one_node;
5514 tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5515 case_node_ptr n;
5516 int i;
5518 /* If we haven't already made the cost table, make it now. Note that the
5519 lower bound of the table is -1, not zero. */
5521 if (! cost_table_initialized)
5523 cost_table_initialized = 1;
5525 for (i = 0; i < 128; i++)
5527 if (ISALNUM (i))
5528 COST_TABLE (i) = 16;
5529 else if (ISPUNCT (i))
5530 COST_TABLE (i) = 8;
5531 else if (ISCNTRL (i))
5532 COST_TABLE (i) = -1;
5535 COST_TABLE (' ') = 8;
5536 COST_TABLE ('\t') = 4;
5537 COST_TABLE ('\0') = 4;
5538 COST_TABLE ('\n') = 2;
5539 COST_TABLE ('\f') = 1;
5540 COST_TABLE ('\v') = 1;
5541 COST_TABLE ('\b') = 1;
5544 /* See if all the case expressions look like text. It is text if the
5545 constant is >= -1 and the highest constant is <= 127. Do all comparisons
5546 as signed arithmetic since we don't want to ever access cost_table with a
5547 value less than -1. Also check that none of the constants in a range
5548 are strange control characters. */
5550 for (n = node; n; n = n->right)
5552 if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5553 return 0;
5555 for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
5556 i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
5557 if (COST_TABLE (i) < 0)
5558 return 0;
5561 /* All interesting values are within the range of interesting
5562 ASCII characters. */
5563 return 1;
5566 /* Scan an ordered list of case nodes
5567 combining those with consecutive values or ranges.
5569 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
5571 static void
5572 group_case_nodes (head)
5573 case_node_ptr head;
5575 case_node_ptr node = head;
5577 while (node)
5579 rtx lb = next_real_insn (label_rtx (node->code_label));
5580 rtx lb2;
5581 case_node_ptr np = node;
5583 /* Try to group the successors of NODE with NODE. */
5584 while (((np = np->right) != 0)
5585 /* Do they jump to the same place? */
5586 && ((lb2 = next_real_insn (label_rtx (np->code_label))) == lb
5587 || (lb != 0 && lb2 != 0
5588 && simplejump_p (lb)
5589 && simplejump_p (lb2)
5590 && rtx_equal_p (SET_SRC (PATTERN (lb)),
5591 SET_SRC (PATTERN (lb2)))))
5592 /* Are their ranges consecutive? */
5593 && tree_int_cst_equal (np->low,
5594 fold (build (PLUS_EXPR,
5595 TREE_TYPE (node->high),
5596 node->high,
5597 integer_one_node)))
5598 /* An overflow is not consecutive. */
5599 && tree_int_cst_lt (node->high,
5600 fold (build (PLUS_EXPR,
5601 TREE_TYPE (node->high),
5602 node->high,
5603 integer_one_node))))
5605 node->high = np->high;
5607 /* NP is the first node after NODE which can't be grouped with it.
5608 Delete the nodes in between, and move on to that node. */
5609 node->right = np;
5610 node = np;
5614 /* Take an ordered list of case nodes
5615 and transform them into a near optimal binary tree,
5616 on the assumption that any target code selection value is as
5617 likely as any other.
5619 The transformation is performed by splitting the ordered
5620 list into two equal sections plus a pivot. The parts are
5621 then attached to the pivot as left and right branches. Each
5622 branch is then transformed recursively. */
5624 static void
5625 balance_case_nodes (head, parent)
5626 case_node_ptr *head;
5627 case_node_ptr parent;
5629 case_node_ptr np;
5631 np = *head;
5632 if (np)
5634 int cost = 0;
5635 int i = 0;
5636 int ranges = 0;
5637 case_node_ptr *npp;
5638 case_node_ptr left;
5640 /* Count the number of entries on branch. Also count the ranges. */
5642 while (np)
5644 if (!tree_int_cst_equal (np->low, np->high))
5646 ranges++;
5647 if (use_cost_table)
5648 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
5651 if (use_cost_table)
5652 cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
5654 i++;
5655 np = np->right;
5658 if (i > 2)
5660 /* Split this list if it is long enough for that to help. */
5661 npp = head;
5662 left = *npp;
5663 if (use_cost_table)
5665 /* Find the place in the list that bisects the list's total cost,
5666 Here I gets half the total cost. */
5667 int n_moved = 0;
5668 i = (cost + 1) / 2;
5669 while (1)
5671 /* Skip nodes while their cost does not reach that amount. */
5672 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5673 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
5674 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
5675 if (i <= 0)
5676 break;
5677 npp = &(*npp)->right;
5678 n_moved += 1;
5680 if (n_moved == 0)
5682 /* Leave this branch lopsided, but optimize left-hand
5683 side and fill in `parent' fields for right-hand side. */
5684 np = *head;
5685 np->parent = parent;
5686 balance_case_nodes (&np->left, np);
5687 for (; np->right; np = np->right)
5688 np->right->parent = np;
5689 return;
5692 /* If there are just three nodes, split at the middle one. */
5693 else if (i == 3)
5694 npp = &(*npp)->right;
5695 else
5697 /* Find the place in the list that bisects the list's total cost,
5698 where ranges count as 2.
5699 Here I gets half the total cost. */
5700 i = (i + ranges + 1) / 2;
5701 while (1)
5703 /* Skip nodes while their cost does not reach that amount. */
5704 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5705 i--;
5706 i--;
5707 if (i <= 0)
5708 break;
5709 npp = &(*npp)->right;
5712 *head = np = *npp;
5713 *npp = 0;
5714 np->parent = parent;
5715 np->left = left;
5717 /* Optimize each of the two split parts. */
5718 balance_case_nodes (&np->left, np);
5719 balance_case_nodes (&np->right, np);
5721 else
5723 /* Else leave this branch as one level,
5724 but fill in `parent' fields. */
5725 np = *head;
5726 np->parent = parent;
5727 for (; np->right; np = np->right)
5728 np->right->parent = np;
5733 /* Search the parent sections of the case node tree
5734 to see if a test for the lower bound of NODE would be redundant.
5735 INDEX_TYPE is the type of the index expression.
5737 The instructions to generate the case decision tree are
5738 output in the same order as nodes are processed so it is
5739 known that if a parent node checks the range of the current
5740 node minus one that the current node is bounded at its lower
5741 span. Thus the test would be redundant. */
5743 static int
5744 node_has_low_bound (node, index_type)
5745 case_node_ptr node;
5746 tree index_type;
5748 tree low_minus_one;
5749 case_node_ptr pnode;
5751 /* If the lower bound of this node is the lowest value in the index type,
5752 we need not test it. */
5754 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
5755 return 1;
5757 /* If this node has a left branch, the value at the left must be less
5758 than that at this node, so it cannot be bounded at the bottom and
5759 we need not bother testing any further. */
5761 if (node->left)
5762 return 0;
5764 low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
5765 node->low, integer_one_node));
5767 /* If the subtraction above overflowed, we can't verify anything.
5768 Otherwise, look for a parent that tests our value - 1. */
5770 if (! tree_int_cst_lt (low_minus_one, node->low))
5771 return 0;
5773 for (pnode = node->parent; pnode; pnode = pnode->parent)
5774 if (tree_int_cst_equal (low_minus_one, pnode->high))
5775 return 1;
5777 return 0;
5780 /* Search the parent sections of the case node tree
5781 to see if a test for the upper bound of NODE would be redundant.
5782 INDEX_TYPE is the type of the index expression.
5784 The instructions to generate the case decision tree are
5785 output in the same order as nodes are processed so it is
5786 known that if a parent node checks the range of the current
5787 node plus one that the current node is bounded at its upper
5788 span. Thus the test would be redundant. */
5790 static int
5791 node_has_high_bound (node, index_type)
5792 case_node_ptr node;
5793 tree index_type;
5795 tree high_plus_one;
5796 case_node_ptr pnode;
5798 /* If there is no upper bound, obviously no test is needed. */
5800 if (TYPE_MAX_VALUE (index_type) == NULL)
5801 return 1;
5803 /* If the upper bound of this node is the highest value in the type
5804 of the index expression, we need not test against it. */
5806 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
5807 return 1;
5809 /* If this node has a right branch, the value at the right must be greater
5810 than that at this node, so it cannot be bounded at the top and
5811 we need not bother testing any further. */
5813 if (node->right)
5814 return 0;
5816 high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
5817 node->high, integer_one_node));
5819 /* If the addition above overflowed, we can't verify anything.
5820 Otherwise, look for a parent that tests our value + 1. */
5822 if (! tree_int_cst_lt (node->high, high_plus_one))
5823 return 0;
5825 for (pnode = node->parent; pnode; pnode = pnode->parent)
5826 if (tree_int_cst_equal (high_plus_one, pnode->low))
5827 return 1;
5829 return 0;
5832 /* Search the parent sections of the
5833 case node tree to see if both tests for the upper and lower
5834 bounds of NODE would be redundant. */
5836 static int
5837 node_is_bounded (node, index_type)
5838 case_node_ptr node;
5839 tree index_type;
5841 return (node_has_low_bound (node, index_type)
5842 && node_has_high_bound (node, index_type));
5845 /* Emit an unconditional jump to LABEL unless it would be dead code. */
5847 static void
5848 emit_jump_if_reachable (label)
5849 rtx label;
5851 if (GET_CODE (get_last_insn ()) != BARRIER)
5852 emit_jump (label);
5855 /* Emit step-by-step code to select a case for the value of INDEX.
5856 The thus generated decision tree follows the form of the
5857 case-node binary tree NODE, whose nodes represent test conditions.
5858 INDEX_TYPE is the type of the index of the switch.
5860 Care is taken to prune redundant tests from the decision tree
5861 by detecting any boundary conditions already checked by
5862 emitted rtx. (See node_has_high_bound, node_has_low_bound
5863 and node_is_bounded, above.)
5865 Where the test conditions can be shown to be redundant we emit
5866 an unconditional jump to the target code. As a further
5867 optimization, the subordinates of a tree node are examined to
5868 check for bounded nodes. In this case conditional and/or
5869 unconditional jumps as a result of the boundary check for the
5870 current node are arranged to target the subordinates associated
5871 code for out of bound conditions on the current node.
5873 We can assume that when control reaches the code generated here,
5874 the index value has already been compared with the parents
5875 of this node, and determined to be on the same side of each parent
5876 as this node is. Thus, if this node tests for the value 51,
5877 and a parent tested for 52, we don't need to consider
5878 the possibility of a value greater than 51. If another parent
5879 tests for the value 50, then this node need not test anything. */
5881 static void
5882 emit_case_nodes (index, node, default_label, index_type)
5883 rtx index;
5884 case_node_ptr node;
5885 rtx default_label;
5886 tree index_type;
5888 /* If INDEX has an unsigned type, we must make unsigned branches. */
5889 int unsignedp = TREE_UNSIGNED (index_type);
5890 enum machine_mode mode = GET_MODE (index);
5891 enum machine_mode imode = TYPE_MODE (index_type);
5893 /* See if our parents have already tested everything for us.
5894 If they have, emit an unconditional jump for this node. */
5895 if (node_is_bounded (node, index_type))
5896 emit_jump (label_rtx (node->code_label));
5898 else if (tree_int_cst_equal (node->low, node->high))
5900 /* Node is single valued. First see if the index expression matches
5901 this node and then check our children, if any. */
5903 do_jump_if_equal (index,
5904 convert_modes (mode, imode,
5905 expand_expr (node->low, NULL_RTX,
5906 VOIDmode, 0),
5907 unsignedp),
5908 label_rtx (node->code_label), unsignedp);
5910 if (node->right != 0 && node->left != 0)
5912 /* This node has children on both sides.
5913 Dispatch to one side or the other
5914 by comparing the index value with this node's value.
5915 If one subtree is bounded, check that one first,
5916 so we can avoid real branches in the tree. */
5918 if (node_is_bounded (node->right, index_type))
5920 emit_cmp_and_jump_insns (index,
5921 convert_modes
5922 (mode, imode,
5923 expand_expr (node->high, NULL_RTX,
5924 VOIDmode, 0),
5925 unsignedp),
5926 GT, NULL_RTX, mode, unsignedp,
5927 label_rtx (node->right->code_label));
5928 emit_case_nodes (index, node->left, default_label, index_type);
5931 else if (node_is_bounded (node->left, index_type))
5933 emit_cmp_and_jump_insns (index,
5934 convert_modes
5935 (mode, imode,
5936 expand_expr (node->high, NULL_RTX,
5937 VOIDmode, 0),
5938 unsignedp),
5939 LT, NULL_RTX, mode, unsignedp,
5940 label_rtx (node->left->code_label));
5941 emit_case_nodes (index, node->right, default_label, index_type);
5944 else
5946 /* Neither node is bounded. First distinguish the two sides;
5947 then emit the code for one side at a time. */
5949 tree test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5951 /* See if the value is on the right. */
5952 emit_cmp_and_jump_insns (index,
5953 convert_modes
5954 (mode, imode,
5955 expand_expr (node->high, NULL_RTX,
5956 VOIDmode, 0),
5957 unsignedp),
5958 GT, NULL_RTX, mode, unsignedp,
5959 label_rtx (test_label));
5961 /* Value must be on the left.
5962 Handle the left-hand subtree. */
5963 emit_case_nodes (index, node->left, default_label, index_type);
5964 /* If left-hand subtree does nothing,
5965 go to default. */
5966 emit_jump_if_reachable (default_label);
5968 /* Code branches here for the right-hand subtree. */
5969 expand_label (test_label);
5970 emit_case_nodes (index, node->right, default_label, index_type);
5974 else if (node->right != 0 && node->left == 0)
5976 /* Here we have a right child but no left so we issue conditional
5977 branch to default and process the right child.
5979 Omit the conditional branch to default if we it avoid only one
5980 right child; it costs too much space to save so little time. */
5982 if (node->right->right || node->right->left
5983 || !tree_int_cst_equal (node->right->low, node->right->high))
5985 if (!node_has_low_bound (node, index_type))
5987 emit_cmp_and_jump_insns (index,
5988 convert_modes
5989 (mode, imode,
5990 expand_expr (node->high, NULL_RTX,
5991 VOIDmode, 0),
5992 unsignedp),
5993 LT, NULL_RTX, mode, unsignedp,
5994 default_label);
5997 emit_case_nodes (index, node->right, default_label, index_type);
5999 else
6000 /* We cannot process node->right normally
6001 since we haven't ruled out the numbers less than
6002 this node's value. So handle node->right explicitly. */
6003 do_jump_if_equal (index,
6004 convert_modes
6005 (mode, imode,
6006 expand_expr (node->right->low, NULL_RTX,
6007 VOIDmode, 0),
6008 unsignedp),
6009 label_rtx (node->right->code_label), unsignedp);
6012 else if (node->right == 0 && node->left != 0)
6014 /* Just one subtree, on the left. */
6015 if (node->left->left || node->left->right
6016 || !tree_int_cst_equal (node->left->low, node->left->high))
6018 if (!node_has_high_bound (node, index_type))
6020 emit_cmp_and_jump_insns (index,
6021 convert_modes
6022 (mode, imode,
6023 expand_expr (node->high, NULL_RTX,
6024 VOIDmode, 0),
6025 unsignedp),
6026 GT, NULL_RTX, mode, unsignedp,
6027 default_label);
6030 emit_case_nodes (index, node->left, default_label, index_type);
6032 else
6033 /* We cannot process node->left normally
6034 since we haven't ruled out the numbers less than
6035 this node's value. So handle node->left explicitly. */
6036 do_jump_if_equal (index,
6037 convert_modes
6038 (mode, imode,
6039 expand_expr (node->left->low, NULL_RTX,
6040 VOIDmode, 0),
6041 unsignedp),
6042 label_rtx (node->left->code_label), unsignedp);
6045 else
6047 /* Node is a range. These cases are very similar to those for a single
6048 value, except that we do not start by testing whether this node
6049 is the one to branch to. */
6051 if (node->right != 0 && node->left != 0)
6053 /* Node has subtrees on both sides.
6054 If the right-hand subtree is bounded,
6055 test for it first, since we can go straight there.
6056 Otherwise, we need to make a branch in the control structure,
6057 then handle the two subtrees. */
6058 tree test_label = 0;
6060 if (node_is_bounded (node->right, index_type))
6061 /* Right hand node is fully bounded so we can eliminate any
6062 testing and branch directly to the target code. */
6063 emit_cmp_and_jump_insns (index,
6064 convert_modes
6065 (mode, imode,
6066 expand_expr (node->high, NULL_RTX,
6067 VOIDmode, 0),
6068 unsignedp),
6069 GT, NULL_RTX, mode, unsignedp,
6070 label_rtx (node->right->code_label));
6071 else
6073 /* Right hand node requires testing.
6074 Branch to a label where we will handle it later. */
6076 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6077 emit_cmp_and_jump_insns (index,
6078 convert_modes
6079 (mode, imode,
6080 expand_expr (node->high, NULL_RTX,
6081 VOIDmode, 0),
6082 unsignedp),
6083 GT, NULL_RTX, mode, unsignedp,
6084 label_rtx (test_label));
6087 /* Value belongs to this node or to the left-hand subtree. */
6089 emit_cmp_and_jump_insns (index,
6090 convert_modes
6091 (mode, imode,
6092 expand_expr (node->low, NULL_RTX,
6093 VOIDmode, 0),
6094 unsignedp),
6095 GE, NULL_RTX, mode, unsignedp,
6096 label_rtx (node->code_label));
6098 /* Handle the left-hand subtree. */
6099 emit_case_nodes (index, node->left, default_label, index_type);
6101 /* If right node had to be handled later, do that now. */
6103 if (test_label)
6105 /* If the left-hand subtree fell through,
6106 don't let it fall into the right-hand subtree. */
6107 emit_jump_if_reachable (default_label);
6109 expand_label (test_label);
6110 emit_case_nodes (index, node->right, default_label, index_type);
6114 else if (node->right != 0 && node->left == 0)
6116 /* Deal with values to the left of this node,
6117 if they are possible. */
6118 if (!node_has_low_bound (node, index_type))
6120 emit_cmp_and_jump_insns (index,
6121 convert_modes
6122 (mode, imode,
6123 expand_expr (node->low, NULL_RTX,
6124 VOIDmode, 0),
6125 unsignedp),
6126 LT, NULL_RTX, mode, unsignedp,
6127 default_label);
6130 /* Value belongs to this node or to the right-hand subtree. */
6132 emit_cmp_and_jump_insns (index,
6133 convert_modes
6134 (mode, imode,
6135 expand_expr (node->high, NULL_RTX,
6136 VOIDmode, 0),
6137 unsignedp),
6138 LE, NULL_RTX, mode, unsignedp,
6139 label_rtx (node->code_label));
6141 emit_case_nodes (index, node->right, default_label, index_type);
6144 else if (node->right == 0 && node->left != 0)
6146 /* Deal with values to the right of this node,
6147 if they are possible. */
6148 if (!node_has_high_bound (node, index_type))
6150 emit_cmp_and_jump_insns (index,
6151 convert_modes
6152 (mode, imode,
6153 expand_expr (node->high, NULL_RTX,
6154 VOIDmode, 0),
6155 unsignedp),
6156 GT, NULL_RTX, mode, unsignedp,
6157 default_label);
6160 /* Value belongs to this node or to the left-hand subtree. */
6162 emit_cmp_and_jump_insns (index,
6163 convert_modes
6164 (mode, imode,
6165 expand_expr (node->low, NULL_RTX,
6166 VOIDmode, 0),
6167 unsignedp),
6168 GE, NULL_RTX, mode, unsignedp,
6169 label_rtx (node->code_label));
6171 emit_case_nodes (index, node->left, default_label, index_type);
6174 else
6176 /* Node has no children so we check low and high bounds to remove
6177 redundant tests. Only one of the bounds can exist,
6178 since otherwise this node is bounded--a case tested already. */
6179 int high_bound = node_has_high_bound (node, index_type);
6180 int low_bound = node_has_low_bound (node, index_type);
6182 if (!high_bound && low_bound)
6184 emit_cmp_and_jump_insns (index,
6185 convert_modes
6186 (mode, imode,
6187 expand_expr (node->high, NULL_RTX,
6188 VOIDmode, 0),
6189 unsignedp),
6190 GT, NULL_RTX, mode, unsignedp,
6191 default_label);
6194 else if (!low_bound && high_bound)
6196 emit_cmp_and_jump_insns (index,
6197 convert_modes
6198 (mode, imode,
6199 expand_expr (node->low, NULL_RTX,
6200 VOIDmode, 0),
6201 unsignedp),
6202 LT, NULL_RTX, mode, unsignedp,
6203 default_label);
6205 else if (!low_bound && !high_bound)
6207 /* Widen LOW and HIGH to the same width as INDEX. */
6208 tree type = (*lang_hooks.types.type_for_mode) (mode, unsignedp);
6209 tree low = build1 (CONVERT_EXPR, type, node->low);
6210 tree high = build1 (CONVERT_EXPR, type, node->high);
6211 rtx low_rtx, new_index, new_bound;
6213 /* Instead of doing two branches, emit one unsigned branch for
6214 (index-low) > (high-low). */
6215 low_rtx = expand_expr (low, NULL_RTX, mode, 0);
6216 new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
6217 NULL_RTX, unsignedp,
6218 OPTAB_WIDEN);
6219 new_bound = expand_expr (fold (build (MINUS_EXPR, type,
6220 high, low)),
6221 NULL_RTX, mode, 0);
6223 emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
6224 mode, 1, default_label);
6227 emit_jump (label_rtx (node->code_label));
6232 #include "gt-stmt.h"