configure.in (GLIBCPP_ENABLE_CXX_FLAGS): Do not pass arguments, let the defaults...
[official-gcc.git] / gcc / stmt.c
blobfbdf463ee5715391a93ee0b9f3be130b9682b0a9
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"
38 #include "coretypes.h"
39 #include "tm.h"
41 #include "rtl.h"
42 #include "tree.h"
43 #include "tm_p.h"
44 #include "flags.h"
45 #include "except.h"
46 #include "function.h"
47 #include "insn-config.h"
48 #include "expr.h"
49 #include "libfuncs.h"
50 #include "hard-reg-set.h"
51 #include "loop.h"
52 #include "recog.h"
53 #include "machmode.h"
54 #include "toplev.h"
55 #include "output.h"
56 #include "ggc.h"
57 #include "langhooks.h"
58 #include "predict.h"
60 /* Assume that case vectors are not pc-relative. */
61 #ifndef CASE_VECTOR_PC_RELATIVE
62 #define CASE_VECTOR_PC_RELATIVE 0
63 #endif
65 /* Functions and data structures for expanding case statements. */
67 /* Case label structure, used to hold info on labels within case
68 statements. We handle "range" labels; for a single-value label
69 as in C, the high and low limits are the same.
71 An AVL tree of case nodes is initially created, and later transformed
72 to a list linked via the RIGHT fields in the nodes. Nodes with
73 higher case values are later in the list.
75 Switch statements can be output in one of two forms. A branch table
76 is used if there are more than a few labels and the labels are dense
77 within the range between the smallest and largest case value. If a
78 branch table is used, no further manipulations are done with the case
79 node chain.
81 The alternative to the use of a branch table is to generate a series
82 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
83 and PARENT fields to hold a binary tree. Initially the tree is
84 totally unbalanced, with everything on the right. We balance the tree
85 with nodes on the left having lower case values than the parent
86 and nodes on the right having higher values. We then output the tree
87 in order. */
89 struct case_node GTY(())
91 struct case_node *left; /* Left son in binary tree */
92 struct case_node *right; /* Right son in binary tree; also node chain */
93 struct case_node *parent; /* Parent of node in binary tree */
94 tree low; /* Lowest index value for this label */
95 tree high; /* Highest index value for this label */
96 tree code_label; /* Label to jump to when node matches */
97 int balance;
100 typedef struct case_node case_node;
101 typedef struct case_node *case_node_ptr;
103 /* These are used by estimate_case_costs and balance_case_nodes. */
105 /* This must be a signed type, and non-ANSI compilers lack signed char. */
106 static short cost_table_[129];
107 static int use_cost_table;
108 static int cost_table_initialized;
110 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
111 is unsigned. */
112 #define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
114 /* Stack of control and binding constructs we are currently inside.
116 These constructs begin when you call `expand_start_WHATEVER'
117 and end when you call `expand_end_WHATEVER'. This stack records
118 info about how the construct began that tells the end-function
119 what to do. It also may provide information about the construct
120 to alter the behavior of other constructs within the body.
121 For example, they may affect the behavior of C `break' and `continue'.
123 Each construct gets one `struct nesting' object.
124 All of these objects are chained through the `all' field.
125 `nesting_stack' points to the first object (innermost construct).
126 The position of an entry on `nesting_stack' is in its `depth' field.
128 Each type of construct has its own individual stack.
129 For example, loops have `loop_stack'. Each object points to the
130 next object of the same type through the `next' field.
132 Some constructs are visible to `break' exit-statements and others
133 are not. Which constructs are visible depends on the language.
134 Therefore, the data structure allows each construct to be visible
135 or not, according to the args given when the construct is started.
136 The construct is visible if the `exit_label' field is non-null.
137 In that case, the value should be a CODE_LABEL rtx. */
139 struct nesting GTY(())
141 struct nesting *all;
142 struct nesting *next;
143 int depth;
144 rtx exit_label;
145 enum nesting_desc {
146 COND_NESTING,
147 LOOP_NESTING,
148 BLOCK_NESTING,
149 CASE_NESTING
150 } desc;
151 union nesting_u
153 /* For conds (if-then and if-then-else statements). */
154 struct nesting_cond
156 /* Label for the end of the if construct.
157 There is none if EXITFLAG was not set
158 and no `else' has been seen yet. */
159 rtx endif_label;
160 /* Label for the end of this alternative.
161 This may be the end of the if or the next else/elseif. */
162 rtx next_label;
163 } GTY ((tag ("COND_NESTING"))) cond;
164 /* For loops. */
165 struct nesting_loop
167 /* Label at the top of the loop; place to loop back to. */
168 rtx start_label;
169 /* Label at the end of the whole construct. */
170 rtx end_label;
171 /* Label for `continue' statement to jump to;
172 this is in front of the stepper of the loop. */
173 rtx continue_label;
174 } GTY ((tag ("LOOP_NESTING"))) loop;
175 /* For variable binding contours. */
176 struct nesting_block
178 /* Sequence number of this binding contour within the function,
179 in order of entry. */
180 int block_start_count;
181 /* Nonzero => value to restore stack to on exit. */
182 rtx stack_level;
183 /* The NOTE that starts this contour.
184 Used by expand_goto to check whether the destination
185 is within each contour or not. */
186 rtx first_insn;
187 /* Innermost containing binding contour that has a stack level. */
188 struct nesting *innermost_stack_block;
189 /* List of cleanups to be run on exit from this contour.
190 This is a list of expressions to be evaluated.
191 The TREE_PURPOSE of each link is the ..._DECL node
192 which the cleanup pertains to. */
193 tree cleanups;
194 /* List of cleanup-lists of blocks containing this block,
195 as they were at the locus where this block appears.
196 There is an element for each containing block,
197 ordered innermost containing block first.
198 The tail of this list can be 0,
199 if all remaining elements would be empty lists.
200 The element's TREE_VALUE is the cleanup-list of that block,
201 which may be null. */
202 tree outer_cleanups;
203 /* Chain of labels defined inside this binding contour.
204 For contours that have stack levels or cleanups. */
205 struct label_chain *label_chain;
206 /* Number of function calls seen, as of start of this block. */
207 int n_function_calls;
208 /* Nonzero if this is associated with an EH region. */
209 int exception_region;
210 /* The saved target_temp_slot_level from our outer block.
211 We may reset target_temp_slot_level to be the level of
212 this block, if that is done, target_temp_slot_level
213 reverts to the saved target_temp_slot_level at the very
214 end of the block. */
215 int block_target_temp_slot_level;
216 /* True if we are currently emitting insns in an area of
217 output code that is controlled by a conditional
218 expression. This is used by the cleanup handling code to
219 generate conditional cleanup actions. */
220 int conditional_code;
221 /* A place to move the start of the exception region for any
222 of the conditional cleanups, must be at the end or after
223 the start of the last unconditional cleanup, and before any
224 conditional branch points. */
225 rtx last_unconditional_cleanup;
226 } GTY ((tag ("BLOCK_NESTING"))) block;
227 /* For switch (C) or case (Pascal) statements,
228 and also for dummies (see `expand_start_case_dummy'). */
229 struct nesting_case
231 /* The insn after which the case dispatch should finally
232 be emitted. Zero for a dummy. */
233 rtx start;
234 /* A list of case labels; it is first built as an AVL tree.
235 During expand_end_case, this is converted to a list, and may be
236 rearranged into a nearly balanced binary tree. */
237 struct case_node *case_list;
238 /* Label to jump to if no case matches. */
239 tree default_label;
240 /* The expression to be dispatched on. */
241 tree index_expr;
242 /* Type that INDEX_EXPR should be converted to. */
243 tree nominal_type;
244 /* Name of this kind of statement, for warnings. */
245 const char *printname;
246 /* Used to save no_line_numbers till we see the first case label.
247 We set this to -1 when we see the first case label in this
248 case statement. */
249 int line_number_status;
250 } GTY ((tag ("CASE_NESTING"))) case_stmt;
251 } GTY ((desc ("%1.desc"))) data;
254 /* Allocate and return a new `struct nesting'. */
256 #define ALLOC_NESTING() \
257 (struct nesting *) ggc_alloc (sizeof (struct nesting))
259 /* Pop the nesting stack element by element until we pop off
260 the element which is at the top of STACK.
261 Update all the other stacks, popping off elements from them
262 as we pop them from nesting_stack. */
264 #define POPSTACK(STACK) \
265 do { struct nesting *target = STACK; \
266 struct nesting *this; \
267 do { this = nesting_stack; \
268 if (loop_stack == this) \
269 loop_stack = loop_stack->next; \
270 if (cond_stack == this) \
271 cond_stack = cond_stack->next; \
272 if (block_stack == this) \
273 block_stack = block_stack->next; \
274 if (stack_block_stack == this) \
275 stack_block_stack = stack_block_stack->next; \
276 if (case_stack == this) \
277 case_stack = case_stack->next; \
278 nesting_depth = nesting_stack->depth - 1; \
279 nesting_stack = this->all; } \
280 while (this != target); } while (0)
282 /* In some cases it is impossible to generate code for a forward goto
283 until the label definition is seen. This happens when it may be necessary
284 for the goto to reset the stack pointer: we don't yet know how to do that.
285 So expand_goto puts an entry on this fixup list.
286 Each time a binding contour that resets the stack is exited,
287 we check each fixup.
288 If the target label has now been defined, we can insert the proper code. */
290 struct goto_fixup GTY(())
292 /* Points to following fixup. */
293 struct goto_fixup *next;
294 /* Points to the insn before the jump insn.
295 If more code must be inserted, it goes after this insn. */
296 rtx before_jump;
297 /* The LABEL_DECL that this jump is jumping to, or 0
298 for break, continue or return. */
299 tree target;
300 /* The BLOCK for the place where this goto was found. */
301 tree context;
302 /* The CODE_LABEL rtx that this is jumping to. */
303 rtx target_rtl;
304 /* Number of binding contours started in current function
305 before the label reference. */
306 int block_start_count;
307 /* The outermost stack level that should be restored for this jump.
308 Each time a binding contour that resets the stack is exited,
309 if the target label is *not* yet defined, this slot is updated. */
310 rtx stack_level;
311 /* List of lists of cleanup expressions to be run by this goto.
312 There is one element for each block that this goto is within.
313 The tail of this list can be 0,
314 if all remaining elements would be empty.
315 The TREE_VALUE contains the cleanup list of that block as of the
316 time this goto was seen.
317 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
318 tree cleanup_list_list;
321 /* Within any binding contour that must restore a stack level,
322 all labels are recorded with a chain of these structures. */
324 struct label_chain GTY(())
326 /* Points to following fixup. */
327 struct label_chain *next;
328 tree label;
331 struct stmt_status GTY(())
333 /* Chain of all pending binding contours. */
334 struct nesting * x_block_stack;
336 /* If any new stacks are added here, add them to POPSTACKS too. */
338 /* Chain of all pending binding contours that restore stack levels
339 or have cleanups. */
340 struct nesting * x_stack_block_stack;
342 /* Chain of all pending conditional statements. */
343 struct nesting * x_cond_stack;
345 /* Chain of all pending loops. */
346 struct nesting * x_loop_stack;
348 /* Chain of all pending case or switch statements. */
349 struct nesting * x_case_stack;
351 /* Separate chain including all of the above,
352 chained through the `all' field. */
353 struct nesting * x_nesting_stack;
355 /* Number of entries on nesting_stack now. */
356 int x_nesting_depth;
358 /* Number of binding contours started so far in this function. */
359 int x_block_start_count;
361 /* Each time we expand an expression-statement,
362 record the expr's type and its RTL value here. */
363 tree x_last_expr_type;
364 rtx x_last_expr_value;
366 /* Nonzero if within a ({...}) grouping, in which case we must
367 always compute a value for each expr-stmt in case it is the last one. */
368 int x_expr_stmts_for_value;
370 /* Filename and line number of last line-number note,
371 whether we actually emitted it or not. */
372 const char *x_emit_filename;
373 int x_emit_lineno;
375 struct goto_fixup *x_goto_fixup_chain;
378 #define block_stack (cfun->stmt->x_block_stack)
379 #define stack_block_stack (cfun->stmt->x_stack_block_stack)
380 #define cond_stack (cfun->stmt->x_cond_stack)
381 #define loop_stack (cfun->stmt->x_loop_stack)
382 #define case_stack (cfun->stmt->x_case_stack)
383 #define nesting_stack (cfun->stmt->x_nesting_stack)
384 #define nesting_depth (cfun->stmt->x_nesting_depth)
385 #define current_block_start_count (cfun->stmt->x_block_start_count)
386 #define last_expr_type (cfun->stmt->x_last_expr_type)
387 #define last_expr_value (cfun->stmt->x_last_expr_value)
388 #define expr_stmts_for_value (cfun->stmt->x_expr_stmts_for_value)
389 #define emit_filename (cfun->stmt->x_emit_filename)
390 #define emit_lineno (cfun->stmt->x_emit_lineno)
391 #define goto_fixup_chain (cfun->stmt->x_goto_fixup_chain)
393 /* Nonzero if we are using EH to handle cleanups. */
394 static int using_eh_for_cleanups_p = 0;
396 static int n_occurrences PARAMS ((int, const char *));
397 static bool parse_input_constraint PARAMS ((const char **, int, int, int,
398 int, const char * const *,
399 bool *, bool *));
400 static bool decl_conflicts_with_clobbers_p PARAMS ((tree, const HARD_REG_SET));
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 /* Record the current file and line. Called from emit_line_note. */
462 void
463 set_file_and_line_for_stmt (file, line)
464 const char *file;
465 int line;
467 /* If we're outputting an inline function, and we add a line note,
468 there may be no CFUN->STMT information. So, there's no need to
469 update it. */
470 if (cfun->stmt)
472 emit_filename = file;
473 emit_lineno = line;
477 /* Emit a no-op instruction. */
479 void
480 emit_nop ()
482 rtx last_insn;
484 last_insn = get_last_insn ();
485 if (!optimize
486 && (GET_CODE (last_insn) == CODE_LABEL
487 || (GET_CODE (last_insn) == NOTE
488 && prev_real_insn (last_insn) == 0)))
489 emit_insn (gen_nop ());
492 /* Return the rtx-label that corresponds to a LABEL_DECL,
493 creating it if necessary. */
496 label_rtx (label)
497 tree label;
499 if (TREE_CODE (label) != LABEL_DECL)
500 abort ();
502 if (!DECL_RTL_SET_P (label))
503 SET_DECL_RTL (label, gen_label_rtx ());
505 return DECL_RTL (label);
509 /* Add an unconditional jump to LABEL as the next sequential instruction. */
511 void
512 emit_jump (label)
513 rtx label;
515 do_pending_stack_adjust ();
516 emit_jump_insn (gen_jump (label));
517 emit_barrier ();
520 /* Emit code to jump to the address
521 specified by the pointer expression EXP. */
523 void
524 expand_computed_goto (exp)
525 tree exp;
527 rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
529 #ifdef POINTERS_EXTEND_UNSIGNED
530 if (GET_MODE (x) != Pmode)
531 x = convert_memory_address (Pmode, x);
532 #endif
534 emit_queue ();
535 do_pending_stack_adjust ();
536 emit_indirect_jump (x);
538 current_function_has_computed_jump = 1;
541 /* Handle goto statements and the labels that they can go to. */
543 /* Specify the location in the RTL code of a label LABEL,
544 which is a LABEL_DECL tree node.
546 This is used for the kind of label that the user can jump to with a
547 goto statement, and for alternatives of a switch or case statement.
548 RTL labels generated for loops and conditionals don't go through here;
549 they are generated directly at the RTL level, by other functions below.
551 Note that this has nothing to do with defining label *names*.
552 Languages vary in how they do that and what that even means. */
554 void
555 expand_label (label)
556 tree label;
558 struct label_chain *p;
560 do_pending_stack_adjust ();
561 emit_label (label_rtx (label));
562 if (DECL_NAME (label))
563 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
565 if (stack_block_stack != 0)
567 p = (struct label_chain *) ggc_alloc (sizeof (struct label_chain));
568 p->next = stack_block_stack->data.block.label_chain;
569 stack_block_stack->data.block.label_chain = p;
570 p->label = label;
574 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
575 from nested functions. */
577 void
578 declare_nonlocal_label (label)
579 tree label;
581 rtx slot = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
583 nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
584 LABEL_PRESERVE_P (label_rtx (label)) = 1;
585 if (nonlocal_goto_handler_slots == 0)
587 emit_stack_save (SAVE_NONLOCAL,
588 &nonlocal_goto_stack_level,
589 PREV_INSN (tail_recursion_reentry));
591 nonlocal_goto_handler_slots
592 = gen_rtx_EXPR_LIST (VOIDmode, slot, nonlocal_goto_handler_slots);
595 /* Generate RTL code for a `goto' statement with target label LABEL.
596 LABEL should be a LABEL_DECL tree node that was or will later be
597 defined with `expand_label'. */
599 void
600 expand_goto (label)
601 tree label;
603 tree context;
605 /* Check for a nonlocal goto to a containing function. */
606 context = decl_function_context (label);
607 if (context != 0 && context != current_function_decl)
609 struct function *p = find_function_data (context);
610 rtx label_ref = gen_rtx_LABEL_REF (Pmode, label_rtx (label));
611 rtx handler_slot, static_chain, save_area, insn;
612 tree link;
614 /* Find the corresponding handler slot for this label. */
615 handler_slot = p->x_nonlocal_goto_handler_slots;
616 for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label;
617 link = TREE_CHAIN (link))
618 handler_slot = XEXP (handler_slot, 1);
619 handler_slot = XEXP (handler_slot, 0);
621 p->has_nonlocal_label = 1;
622 current_function_has_nonlocal_goto = 1;
623 LABEL_REF_NONLOCAL_P (label_ref) = 1;
625 /* Copy the rtl for the slots so that they won't be shared in
626 case the virtual stack vars register gets instantiated differently
627 in the parent than in the child. */
629 static_chain = copy_to_reg (lookup_static_chain (label));
631 /* Get addr of containing function's current nonlocal goto handler,
632 which will do any cleanups and then jump to the label. */
633 handler_slot = copy_to_reg (replace_rtx (copy_rtx (handler_slot),
634 virtual_stack_vars_rtx,
635 static_chain));
637 /* Get addr of containing function's nonlocal save area. */
638 save_area = p->x_nonlocal_goto_stack_level;
639 if (save_area)
640 save_area = replace_rtx (copy_rtx (save_area),
641 virtual_stack_vars_rtx, static_chain);
643 #if HAVE_nonlocal_goto
644 if (HAVE_nonlocal_goto)
645 emit_insn (gen_nonlocal_goto (static_chain, handler_slot,
646 save_area, label_ref));
647 else
648 #endif
650 /* Restore frame pointer for containing function.
651 This sets the actual hard register used for the frame pointer
652 to the location of the function's incoming static chain info.
653 The non-local goto handler will then adjust it to contain the
654 proper value and reload the argument pointer, if needed. */
655 emit_move_insn (hard_frame_pointer_rtx, static_chain);
656 emit_stack_restore (SAVE_NONLOCAL, save_area, NULL_RTX);
658 /* USE of hard_frame_pointer_rtx added for consistency;
659 not clear if really needed. */
660 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
661 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
662 emit_indirect_jump (handler_slot);
665 /* Search backwards to the jump insn and mark it as a
666 non-local goto. */
667 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
669 if (GET_CODE (insn) == JUMP_INSN)
671 REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO,
672 const0_rtx, REG_NOTES (insn));
673 break;
675 else if (GET_CODE (insn) == CALL_INSN)
676 break;
679 else
680 expand_goto_internal (label, label_rtx (label), NULL_RTX);
683 /* Generate RTL code for a `goto' statement with target label BODY.
684 LABEL should be a LABEL_REF.
685 LAST_INSN, if non-0, is the rtx we should consider as the last
686 insn emitted (for the purposes of cleaning up a return). */
688 static void
689 expand_goto_internal (body, label, last_insn)
690 tree body;
691 rtx label;
692 rtx last_insn;
694 struct nesting *block;
695 rtx stack_level = 0;
697 if (GET_CODE (label) != CODE_LABEL)
698 abort ();
700 /* If label has already been defined, we can tell now
701 whether and how we must alter the stack level. */
703 if (PREV_INSN (label) != 0)
705 /* Find the innermost pending block that contains the label.
706 (Check containment by comparing insn-uids.)
707 Then restore the outermost stack level within that block,
708 and do cleanups of all blocks contained in it. */
709 for (block = block_stack; block; block = block->next)
711 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
712 break;
713 if (block->data.block.stack_level != 0)
714 stack_level = block->data.block.stack_level;
715 /* Execute the cleanups for blocks we are exiting. */
716 if (block->data.block.cleanups != 0)
718 expand_cleanups (block->data.block.cleanups, NULL_TREE, 1, 1);
719 do_pending_stack_adjust ();
723 if (stack_level)
725 /* Ensure stack adjust isn't done by emit_jump, as this
726 would clobber the stack pointer. This one should be
727 deleted as dead by flow. */
728 clear_pending_stack_adjust ();
729 do_pending_stack_adjust ();
731 /* Don't do this adjust if it's to the end label and this function
732 is to return with a depressed stack pointer. */
733 if (label == return_label
734 && (((TREE_CODE (TREE_TYPE (current_function_decl))
735 == FUNCTION_TYPE)
736 && (TYPE_RETURNS_STACK_DEPRESSED
737 (TREE_TYPE (current_function_decl))))))
739 else
740 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
743 if (body != 0 && DECL_TOO_LATE (body))
744 error ("jump to `%s' invalidly jumps into binding contour",
745 IDENTIFIER_POINTER (DECL_NAME (body)));
747 /* Label not yet defined: may need to put this goto
748 on the fixup list. */
749 else if (! expand_fixup (body, label, last_insn))
751 /* No fixup needed. Record that the label is the target
752 of at least one goto that has no fixup. */
753 if (body != 0)
754 TREE_ADDRESSABLE (body) = 1;
757 emit_jump (label);
760 /* Generate if necessary a fixup for a goto
761 whose target label in tree structure (if any) is TREE_LABEL
762 and whose target in rtl is RTL_LABEL.
764 If LAST_INSN is nonzero, we pretend that the jump appears
765 after insn LAST_INSN instead of at the current point in the insn stream.
767 The fixup will be used later to insert insns just before the goto.
768 Those insns will restore the stack level as appropriate for the
769 target label, and will (in the case of C++) also invoke any object
770 destructors which have to be invoked when we exit the scopes which
771 are exited by the goto.
773 Value is nonzero if a fixup is made. */
775 static int
776 expand_fixup (tree_label, rtl_label, last_insn)
777 tree tree_label;
778 rtx rtl_label;
779 rtx last_insn;
781 struct nesting *block, *end_block;
783 /* See if we can recognize which block the label will be output in.
784 This is possible in some very common cases.
785 If we succeed, set END_BLOCK to that block.
786 Otherwise, set it to 0. */
788 if (cond_stack
789 && (rtl_label == cond_stack->data.cond.endif_label
790 || rtl_label == cond_stack->data.cond.next_label))
791 end_block = cond_stack;
792 /* If we are in a loop, recognize certain labels which
793 are likely targets. This reduces the number of fixups
794 we need to create. */
795 else if (loop_stack
796 && (rtl_label == loop_stack->data.loop.start_label
797 || rtl_label == loop_stack->data.loop.end_label
798 || rtl_label == loop_stack->data.loop.continue_label))
799 end_block = loop_stack;
800 else
801 end_block = 0;
803 /* Now set END_BLOCK to the binding level to which we will return. */
805 if (end_block)
807 struct nesting *next_block = end_block->all;
808 block = block_stack;
810 /* First see if the END_BLOCK is inside the innermost binding level.
811 If so, then no cleanups or stack levels are relevant. */
812 while (next_block && next_block != block)
813 next_block = next_block->all;
815 if (next_block)
816 return 0;
818 /* Otherwise, set END_BLOCK to the innermost binding level
819 which is outside the relevant control-structure nesting. */
820 next_block = block_stack->next;
821 for (block = block_stack; block != end_block; block = block->all)
822 if (block == next_block)
823 next_block = next_block->next;
824 end_block = next_block;
827 /* Does any containing block have a stack level or cleanups?
828 If not, no fixup is needed, and that is the normal case
829 (the only case, for standard C). */
830 for (block = block_stack; block != end_block; block = block->next)
831 if (block->data.block.stack_level != 0
832 || block->data.block.cleanups != 0)
833 break;
835 if (block != end_block)
837 /* Ok, a fixup is needed. Add a fixup to the list of such. */
838 struct goto_fixup *fixup
839 = (struct goto_fixup *) ggc_alloc (sizeof (struct goto_fixup));
840 /* In case an old stack level is restored, make sure that comes
841 after any pending stack adjust. */
842 /* ?? If the fixup isn't to come at the present position,
843 doing the stack adjust here isn't useful. Doing it with our
844 settings at that location isn't useful either. Let's hope
845 someone does it! */
846 if (last_insn == 0)
847 do_pending_stack_adjust ();
848 fixup->target = tree_label;
849 fixup->target_rtl = rtl_label;
851 /* Create a BLOCK node and a corresponding matched set of
852 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
853 this point. The notes will encapsulate any and all fixup
854 code which we might later insert at this point in the insn
855 stream. Also, the BLOCK node will be the parent (i.e. the
856 `SUPERBLOCK') of any other BLOCK nodes which we might create
857 later on when we are expanding the fixup code.
859 Note that optimization passes (including expand_end_loop)
860 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
861 as a placeholder. */
864 rtx original_before_jump
865 = last_insn ? last_insn : get_last_insn ();
866 rtx start;
867 rtx end;
868 tree block;
870 block = make_node (BLOCK);
871 TREE_USED (block) = 1;
873 if (!cfun->x_whole_function_mode_p)
874 (*lang_hooks.decls.insert_block) (block);
875 else
877 BLOCK_CHAIN (block)
878 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
879 BLOCK_CHAIN (DECL_INITIAL (current_function_decl))
880 = block;
883 start_sequence ();
884 start = emit_note (NULL, NOTE_INSN_BLOCK_BEG);
885 if (cfun->x_whole_function_mode_p)
886 NOTE_BLOCK (start) = block;
887 fixup->before_jump = emit_note (NULL, NOTE_INSN_DELETED);
888 end = emit_note (NULL, NOTE_INSN_BLOCK_END);
889 if (cfun->x_whole_function_mode_p)
890 NOTE_BLOCK (end) = block;
891 fixup->context = block;
892 end_sequence ();
893 emit_insn_after (start, original_before_jump);
896 fixup->block_start_count = current_block_start_count;
897 fixup->stack_level = 0;
898 fixup->cleanup_list_list
899 = ((block->data.block.outer_cleanups
900 || block->data.block.cleanups)
901 ? tree_cons (NULL_TREE, block->data.block.cleanups,
902 block->data.block.outer_cleanups)
903 : 0);
904 fixup->next = goto_fixup_chain;
905 goto_fixup_chain = fixup;
908 return block != 0;
911 /* Expand any needed fixups in the outputmost binding level of the
912 function. FIRST_INSN is the first insn in the function. */
914 void
915 expand_fixups (first_insn)
916 rtx first_insn;
918 fixup_gotos (NULL, NULL_RTX, NULL_TREE, first_insn, 0);
921 /* When exiting a binding contour, process all pending gotos requiring fixups.
922 THISBLOCK is the structure that describes the block being exited.
923 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
924 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
925 FIRST_INSN is the insn that began this contour.
927 Gotos that jump out of this contour must restore the
928 stack level and do the cleanups before actually jumping.
930 DONT_JUMP_IN nonzero means report error there is a jump into this
931 contour from before the beginning of the contour.
932 This is also done if STACK_LEVEL is nonzero. */
934 static void
935 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
936 struct nesting *thisblock;
937 rtx stack_level;
938 tree cleanup_list;
939 rtx first_insn;
940 int dont_jump_in;
942 struct goto_fixup *f, *prev;
944 /* F is the fixup we are considering; PREV is the previous one. */
945 /* We run this loop in two passes so that cleanups of exited blocks
946 are run first, and blocks that are exited are marked so
947 afterwards. */
949 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
951 /* Test for a fixup that is inactive because it is already handled. */
952 if (f->before_jump == 0)
954 /* Delete inactive fixup from the chain, if that is easy to do. */
955 if (prev != 0)
956 prev->next = f->next;
958 /* Has this fixup's target label been defined?
959 If so, we can finalize it. */
960 else if (PREV_INSN (f->target_rtl) != 0)
962 rtx cleanup_insns;
964 /* If this fixup jumped into this contour from before the beginning
965 of this contour, report an error. This code used to use
966 the first non-label insn after f->target_rtl, but that's
967 wrong since such can be added, by things like put_var_into_stack
968 and have INSN_UIDs that are out of the range of the block. */
969 /* ??? Bug: this does not detect jumping in through intermediate
970 blocks that have stack levels or cleanups.
971 It detects only a problem with the innermost block
972 around the label. */
973 if (f->target != 0
974 && (dont_jump_in || stack_level || cleanup_list)
975 && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
976 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
977 && ! DECL_ERROR_ISSUED (f->target))
979 error_with_decl (f->target,
980 "label `%s' used before containing binding contour");
981 /* Prevent multiple errors for one label. */
982 DECL_ERROR_ISSUED (f->target) = 1;
985 /* We will expand the cleanups into a sequence of their own and
986 then later on we will attach this new sequence to the insn
987 stream just ahead of the actual jump insn. */
989 start_sequence ();
991 /* Temporarily restore the lexical context where we will
992 logically be inserting the fixup code. We do this for the
993 sake of getting the debugging information right. */
995 (*lang_hooks.decls.pushlevel) (0);
996 (*lang_hooks.decls.set_block) (f->context);
998 /* Expand the cleanups for blocks this jump exits. */
999 if (f->cleanup_list_list)
1001 tree lists;
1002 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1003 /* Marked elements correspond to blocks that have been closed.
1004 Do their cleanups. */
1005 if (TREE_ADDRESSABLE (lists)
1006 && TREE_VALUE (lists) != 0)
1008 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1009 /* Pop any pushes done in the cleanups,
1010 in case function is about to return. */
1011 do_pending_stack_adjust ();
1015 /* Restore stack level for the biggest contour that this
1016 jump jumps out of. */
1017 if (f->stack_level
1018 && ! (f->target_rtl == return_label
1019 && ((TREE_CODE (TREE_TYPE (current_function_decl))
1020 == FUNCTION_TYPE)
1021 && (TYPE_RETURNS_STACK_DEPRESSED
1022 (TREE_TYPE (current_function_decl))))))
1023 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1025 /* Finish up the sequence containing the insns which implement the
1026 necessary cleanups, and then attach that whole sequence to the
1027 insn stream just ahead of the actual jump insn. Attaching it
1028 at that point insures that any cleanups which are in fact
1029 implicit C++ object destructions (which must be executed upon
1030 leaving the block) appear (to the debugger) to be taking place
1031 in an area of the generated code where the object(s) being
1032 destructed are still "in scope". */
1034 cleanup_insns = get_insns ();
1035 (*lang_hooks.decls.poplevel) (1, 0, 0);
1037 end_sequence ();
1038 emit_insn_after (cleanup_insns, f->before_jump);
1040 f->before_jump = 0;
1044 /* For any still-undefined labels, do the cleanups for this block now.
1045 We must do this now since items in the cleanup list may go out
1046 of scope when the block ends. */
1047 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1048 if (f->before_jump != 0
1049 && PREV_INSN (f->target_rtl) == 0
1050 /* Label has still not appeared. If we are exiting a block with
1051 a stack level to restore, that started before the fixup,
1052 mark this stack level as needing restoration
1053 when the fixup is later finalized. */
1054 && thisblock != 0
1055 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1056 means the label is undefined. That's erroneous, but possible. */
1057 && (thisblock->data.block.block_start_count
1058 <= f->block_start_count))
1060 tree lists = f->cleanup_list_list;
1061 rtx cleanup_insns;
1063 for (; lists; lists = TREE_CHAIN (lists))
1064 /* If the following elt. corresponds to our containing block
1065 then the elt. must be for this block. */
1066 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1068 start_sequence ();
1069 (*lang_hooks.decls.pushlevel) (0);
1070 (*lang_hooks.decls.set_block) (f->context);
1071 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1072 do_pending_stack_adjust ();
1073 cleanup_insns = get_insns ();
1074 (*lang_hooks.decls.poplevel) (1, 0, 0);
1075 end_sequence ();
1076 if (cleanup_insns != 0)
1077 f->before_jump
1078 = emit_insn_after (cleanup_insns, f->before_jump);
1080 f->cleanup_list_list = TREE_CHAIN (lists);
1083 if (stack_level)
1084 f->stack_level = stack_level;
1088 /* Return the number of times character C occurs in string S. */
1089 static int
1090 n_occurrences (c, s)
1091 int c;
1092 const char *s;
1094 int n = 0;
1095 while (*s)
1096 n += (*s++ == c);
1097 return n;
1100 /* Generate RTL for an asm statement (explicit assembler code).
1101 BODY is a STRING_CST node containing the assembler code text,
1102 or an ADDR_EXPR containing a STRING_CST. */
1104 void
1105 expand_asm (body)
1106 tree body;
1108 if (TREE_CODE (body) == ADDR_EXPR)
1109 body = TREE_OPERAND (body, 0);
1111 emit_insn (gen_rtx_ASM_INPUT (VOIDmode,
1112 TREE_STRING_POINTER (body)));
1113 clear_last_expr ();
1116 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
1117 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
1118 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
1119 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
1120 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
1121 constraint allows the use of a register operand. And, *IS_INOUT
1122 will be true if the operand is read-write, i.e., if it is used as
1123 an input as well as an output. If *CONSTRAINT_P is not in
1124 canonical form, it will be made canonical. (Note that `+' will be
1125 replaced with `=' as part of this process.)
1127 Returns TRUE if all went well; FALSE if an error occurred. */
1129 bool
1130 parse_output_constraint (constraint_p, operand_num, ninputs, noutputs,
1131 allows_mem, allows_reg, is_inout)
1132 const char **constraint_p;
1133 int operand_num;
1134 int ninputs;
1135 int noutputs;
1136 bool *allows_mem;
1137 bool *allows_reg;
1138 bool *is_inout;
1140 const char *constraint = *constraint_p;
1141 const char *p;
1143 /* Assume the constraint doesn't allow the use of either a register
1144 or memory. */
1145 *allows_mem = false;
1146 *allows_reg = false;
1148 /* Allow the `=' or `+' to not be at the beginning of the string,
1149 since it wasn't explicitly documented that way, and there is a
1150 large body of code that puts it last. Swap the character to
1151 the front, so as not to uglify any place else. */
1152 p = strchr (constraint, '=');
1153 if (!p)
1154 p = strchr (constraint, '+');
1156 /* If the string doesn't contain an `=', issue an error
1157 message. */
1158 if (!p)
1160 error ("output operand constraint lacks `='");
1161 return false;
1164 /* If the constraint begins with `+', then the operand is both read
1165 from and written to. */
1166 *is_inout = (*p == '+');
1168 /* Canonicalize the output constraint so that it begins with `='. */
1169 if (p != constraint || is_inout)
1171 char *buf;
1172 size_t c_len = strlen (constraint);
1174 if (p != constraint)
1175 warning ("output constraint `%c' for operand %d is not at the beginning",
1176 *p, operand_num);
1178 /* Make a copy of the constraint. */
1179 buf = alloca (c_len + 1);
1180 strcpy (buf, constraint);
1181 /* Swap the first character and the `=' or `+'. */
1182 buf[p - constraint] = buf[0];
1183 /* Make sure the first character is an `='. (Until we do this,
1184 it might be a `+'.) */
1185 buf[0] = '=';
1186 /* Replace the constraint with the canonicalized string. */
1187 *constraint_p = ggc_alloc_string (buf, c_len);
1188 constraint = *constraint_p;
1191 /* Loop through the constraint string. */
1192 for (p = constraint + 1; *p; ++p)
1193 switch (*p)
1195 case '+':
1196 case '=':
1197 error ("operand constraint contains incorrectly positioned '+' or '='");
1198 return false;
1200 case '%':
1201 if (operand_num + 1 == ninputs + noutputs)
1203 error ("`%%' constraint used with last operand");
1204 return false;
1206 break;
1208 case 'V': case 'm': case 'o':
1209 *allows_mem = true;
1210 break;
1212 case '?': case '!': case '*': case '&': case '#':
1213 case 'E': case 'F': case 'G': case 'H':
1214 case 's': case 'i': case 'n':
1215 case 'I': case 'J': case 'K': case 'L': case 'M':
1216 case 'N': case 'O': case 'P': case ',':
1217 break;
1219 case '0': case '1': case '2': case '3': case '4':
1220 case '5': case '6': case '7': case '8': case '9':
1221 case '[':
1222 error ("matching constraint not valid in output operand");
1223 return false;
1225 case '<': case '>':
1226 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1227 excepting those that expand_call created. So match memory
1228 and hope. */
1229 *allows_mem = true;
1230 break;
1232 case 'g': case 'X':
1233 *allows_reg = true;
1234 *allows_mem = true;
1235 break;
1237 case 'p': case 'r':
1238 *allows_reg = true;
1239 break;
1241 default:
1242 if (!ISALPHA (*p))
1243 break;
1244 if (REG_CLASS_FROM_LETTER (*p) != NO_REGS)
1245 *allows_reg = true;
1246 #ifdef EXTRA_CONSTRAINT
1247 else if (EXTRA_ADDRESS_CONSTRAINT (*p))
1248 *allows_reg = true;
1249 else if (EXTRA_MEMORY_CONSTRAINT (*p))
1250 *allows_mem = true;
1251 else
1253 /* Otherwise we can't assume anything about the nature of
1254 the constraint except that it isn't purely registers.
1255 Treat it like "g" and hope for the best. */
1256 *allows_reg = true;
1257 *allows_mem = true;
1259 #endif
1260 break;
1263 return true;
1266 /* Similar, but for input constraints. */
1268 static bool
1269 parse_input_constraint (constraint_p, input_num, ninputs, noutputs, ninout,
1270 constraints, allows_mem, allows_reg)
1271 const char **constraint_p;
1272 int input_num;
1273 int ninputs;
1274 int noutputs;
1275 int ninout;
1276 const char * const * constraints;
1277 bool *allows_mem;
1278 bool *allows_reg;
1280 const char *constraint = *constraint_p;
1281 const char *orig_constraint = constraint;
1282 size_t c_len = strlen (constraint);
1283 size_t j;
1285 /* Assume the constraint doesn't allow the use of either
1286 a register or memory. */
1287 *allows_mem = false;
1288 *allows_reg = false;
1290 /* Make sure constraint has neither `=', `+', nor '&'. */
1292 for (j = 0; j < c_len; j++)
1293 switch (constraint[j])
1295 case '+': case '=': case '&':
1296 if (constraint == orig_constraint)
1298 error ("input operand constraint contains `%c'", constraint[j]);
1299 return false;
1301 break;
1303 case '%':
1304 if (constraint == orig_constraint
1305 && input_num + 1 == ninputs - ninout)
1307 error ("`%%' constraint used with last operand");
1308 return false;
1310 break;
1312 case 'V': case 'm': case 'o':
1313 *allows_mem = true;
1314 break;
1316 case '<': case '>':
1317 case '?': case '!': case '*': case '#':
1318 case 'E': case 'F': case 'G': case 'H':
1319 case 's': case 'i': case 'n':
1320 case 'I': case 'J': case 'K': case 'L': case 'M':
1321 case 'N': case 'O': case 'P': case ',':
1322 break;
1324 /* Whether or not a numeric constraint allows a register is
1325 decided by the matching constraint, and so there is no need
1326 to do anything special with them. We must handle them in
1327 the default case, so that we don't unnecessarily force
1328 operands to memory. */
1329 case '0': case '1': case '2': case '3': case '4':
1330 case '5': case '6': case '7': case '8': case '9':
1332 char *end;
1333 unsigned long match;
1335 match = strtoul (constraint + j, &end, 10);
1336 if (match >= (unsigned long) noutputs)
1338 error ("matching constraint references invalid operand number");
1339 return false;
1342 /* Try and find the real constraint for this dup. Only do this
1343 if the matching constraint is the only alternative. */
1344 if (*end == '\0'
1345 && (j == 0 || (j == 1 && constraint[0] == '%')))
1347 constraint = constraints[match];
1348 *constraint_p = constraint;
1349 c_len = strlen (constraint);
1350 j = 0;
1351 break;
1353 else
1354 j = end - constraint;
1356 /* Fall through. */
1358 case 'p': case 'r':
1359 *allows_reg = true;
1360 break;
1362 case 'g': case 'X':
1363 *allows_reg = true;
1364 *allows_mem = true;
1365 break;
1367 default:
1368 if (! ISALPHA (constraint[j]))
1370 error ("invalid punctuation `%c' in constraint", constraint[j]);
1371 return false;
1373 if (REG_CLASS_FROM_LETTER (constraint[j]) != NO_REGS)
1374 *allows_reg = true;
1375 #ifdef EXTRA_CONSTRAINT
1376 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j]))
1377 *allows_reg = true;
1378 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j]))
1379 *allows_mem = true;
1380 else
1382 /* Otherwise we can't assume anything about the nature of
1383 the constraint except that it isn't purely registers.
1384 Treat it like "g" and hope for the best. */
1385 *allows_reg = true;
1386 *allows_mem = true;
1388 #endif
1389 break;
1392 return true;
1395 /* Check for overlap between registers marked in CLOBBERED_REGS and
1396 anything inappropriate in DECL. Emit error and return TRUE for error,
1397 FALSE for ok. */
1399 static bool
1400 decl_conflicts_with_clobbers_p (decl, clobbered_regs)
1401 tree decl;
1402 const HARD_REG_SET clobbered_regs;
1404 /* Conflicts between asm-declared register variables and the clobber
1405 list are not allowed. */
1406 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
1407 && DECL_REGISTER (decl)
1408 && REG_P (DECL_RTL (decl))
1409 && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
1411 rtx reg = DECL_RTL (decl);
1412 unsigned int regno;
1414 for (regno = REGNO (reg);
1415 regno < (REGNO (reg)
1416 + HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg)));
1417 regno++)
1418 if (TEST_HARD_REG_BIT (clobbered_regs, regno))
1420 error ("asm-specifier for variable `%s' conflicts with asm clobber list",
1421 IDENTIFIER_POINTER (DECL_NAME (decl)));
1423 /* Reset registerness to stop multiple errors emitted for a
1424 single variable. */
1425 DECL_REGISTER (decl) = 0;
1426 return true;
1429 return false;
1432 /* Generate RTL for an asm statement with arguments.
1433 STRING is the instruction template.
1434 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1435 Each output or input has an expression in the TREE_VALUE and
1436 and a tree list in TREE_PURPOSE which in turn contains a constraint
1437 name in TREE_VALUE (or NULL_TREE) and a constraint string
1438 in TREE_PURPOSE.
1439 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1440 that is clobbered by this insn.
1442 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1443 Some elements of OUTPUTS may be replaced with trees representing temporary
1444 values. The caller should copy those temporary values to the originally
1445 specified lvalues.
1447 VOL nonzero means the insn is volatile; don't optimize it. */
1449 void
1450 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1451 tree string, outputs, inputs, clobbers;
1452 int vol;
1453 const char *filename;
1454 int line;
1456 rtvec argvec, constraintvec;
1457 rtx body;
1458 int ninputs = list_length (inputs);
1459 int noutputs = list_length (outputs);
1460 int ninout;
1461 int nclobbers;
1462 HARD_REG_SET clobbered_regs;
1463 int clobber_conflict_found = 0;
1464 tree tail;
1465 int i;
1466 /* Vector of RTX's of evaluated output operands. */
1467 rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1468 int *inout_opnum = (int *) alloca (noutputs * sizeof (int));
1469 rtx *real_output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1470 enum machine_mode *inout_mode
1471 = (enum machine_mode *) alloca (noutputs * sizeof (enum machine_mode));
1472 const char **constraints
1473 = (const char **) alloca ((noutputs + ninputs) * sizeof (const char *));
1474 int old_generating_concat_p = generating_concat_p;
1476 /* An ASM with no outputs needs to be treated as volatile, for now. */
1477 if (noutputs == 0)
1478 vol = 1;
1480 if (! check_operand_nalternatives (outputs, inputs))
1481 return;
1483 if (! check_unique_operand_names (outputs, inputs))
1484 return;
1486 string = resolve_operand_names (string, outputs, inputs, constraints);
1488 #ifdef MD_ASM_CLOBBERS
1489 /* Sometimes we wish to automatically clobber registers across an asm.
1490 Case in point is when the i386 backend moved from cc0 to a hard reg --
1491 maintaining source-level compatibility means automatically clobbering
1492 the flags register. */
1493 MD_ASM_CLOBBERS (clobbers);
1494 #endif
1496 /* Count the number of meaningful clobbered registers, ignoring what
1497 we would ignore later. */
1498 nclobbers = 0;
1499 CLEAR_HARD_REG_SET (clobbered_regs);
1500 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1502 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1504 i = decode_reg_name (regname);
1505 if (i >= 0 || i == -4)
1506 ++nclobbers;
1507 else if (i == -2)
1508 error ("unknown register name `%s' in `asm'", regname);
1510 /* Mark clobbered registers. */
1511 if (i >= 0)
1513 /* Clobbering the PIC register is an error */
1514 if ((unsigned) i == PIC_OFFSET_TABLE_REGNUM)
1516 error ("PIC register `%s' clobbered in `asm'", regname);
1517 return;
1520 SET_HARD_REG_BIT (clobbered_regs, i);
1524 clear_last_expr ();
1526 /* First pass over inputs and outputs checks validity and sets
1527 mark_addressable if needed. */
1529 ninout = 0;
1530 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1532 tree val = TREE_VALUE (tail);
1533 tree type = TREE_TYPE (val);
1534 const char *constraint;
1535 bool is_inout;
1536 bool allows_reg;
1537 bool allows_mem;
1539 /* If there's an erroneous arg, emit no insn. */
1540 if (type == error_mark_node)
1541 return;
1543 /* Try to parse the output constraint. If that fails, there's
1544 no point in going further. */
1545 constraint = constraints[i];
1546 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
1547 &allows_mem, &allows_reg, &is_inout))
1548 return;
1550 if (! allows_reg
1551 && (allows_mem
1552 || is_inout
1553 || (DECL_P (val)
1554 && GET_CODE (DECL_RTL (val)) == REG
1555 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
1556 (*lang_hooks.mark_addressable) (val);
1558 if (is_inout)
1559 ninout++;
1562 ninputs += ninout;
1563 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1565 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1566 return;
1569 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
1571 bool allows_reg, allows_mem;
1572 const char *constraint;
1574 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
1575 would get VOIDmode and that could cause a crash in reload. */
1576 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1577 return;
1579 constraint = constraints[i + noutputs];
1580 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1581 constraints, &allows_mem, &allows_reg))
1582 return;
1584 if (! allows_reg && allows_mem)
1585 (*lang_hooks.mark_addressable) (TREE_VALUE (tail));
1588 /* Second pass evaluates arguments. */
1590 ninout = 0;
1591 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1593 tree val = TREE_VALUE (tail);
1594 tree type = TREE_TYPE (val);
1595 bool is_inout;
1596 bool allows_reg;
1597 bool allows_mem;
1599 if (!parse_output_constraint (&constraints[i], i, ninputs,
1600 noutputs, &allows_mem, &allows_reg,
1601 &is_inout))
1602 abort ();
1604 /* If an output operand is not a decl or indirect ref and our constraint
1605 allows a register, make a temporary to act as an intermediate.
1606 Make the asm insn write into that, then our caller will copy it to
1607 the real output operand. Likewise for promoted variables. */
1609 generating_concat_p = 0;
1611 real_output_rtx[i] = NULL_RTX;
1612 if ((TREE_CODE (val) == INDIRECT_REF
1613 && allows_mem)
1614 || (DECL_P (val)
1615 && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1616 && ! (GET_CODE (DECL_RTL (val)) == REG
1617 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1618 || ! allows_reg
1619 || is_inout)
1621 output_rtx[i] = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
1623 if (! allows_reg && GET_CODE (output_rtx[i]) != MEM)
1624 error ("output number %d not directly addressable", i);
1625 if ((! allows_mem && GET_CODE (output_rtx[i]) == MEM)
1626 || GET_CODE (output_rtx[i]) == CONCAT)
1628 real_output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1629 output_rtx[i] = gen_reg_rtx (GET_MODE (output_rtx[i]));
1630 if (is_inout)
1631 emit_move_insn (output_rtx[i], real_output_rtx[i]);
1634 else
1636 output_rtx[i] = assign_temp (type, 0, 0, 1);
1637 TREE_VALUE (tail) = make_tree (type, output_rtx[i]);
1640 generating_concat_p = old_generating_concat_p;
1642 if (is_inout)
1644 inout_mode[ninout] = TYPE_MODE (type);
1645 inout_opnum[ninout++] = i;
1648 if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
1649 clobber_conflict_found = 1;
1652 /* Make vectors for the expression-rtx, constraint strings,
1653 and named operands. */
1655 argvec = rtvec_alloc (ninputs);
1656 constraintvec = rtvec_alloc (ninputs);
1658 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
1659 : GET_MODE (output_rtx[0])),
1660 TREE_STRING_POINTER (string),
1661 empty_string, 0, argvec, constraintvec,
1662 filename, line);
1664 MEM_VOLATILE_P (body) = vol;
1666 /* Eval the inputs and put them into ARGVEC.
1667 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1669 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
1671 bool allows_reg, allows_mem;
1672 const char *constraint;
1673 tree val, type;
1674 rtx op;
1676 constraint = constraints[i + noutputs];
1677 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1678 constraints, &allows_mem, &allows_reg))
1679 abort ();
1681 generating_concat_p = 0;
1683 val = TREE_VALUE (tail);
1684 type = TREE_TYPE (val);
1685 op = expand_expr (val, NULL_RTX, VOIDmode, 0);
1687 /* Never pass a CONCAT to an ASM. */
1688 if (GET_CODE (op) == CONCAT)
1689 op = force_reg (GET_MODE (op), op);
1691 if (asm_operand_ok (op, constraint) <= 0)
1693 if (allows_reg)
1694 op = force_reg (TYPE_MODE (type), op);
1695 else if (!allows_mem)
1696 warning ("asm operand %d probably doesn't match constraints",
1697 i + noutputs);
1698 else if (CONSTANT_P (op))
1699 op = force_const_mem (TYPE_MODE (type), op);
1700 else if (GET_CODE (op) == REG
1701 || GET_CODE (op) == SUBREG
1702 || GET_CODE (op) == ADDRESSOF
1703 || GET_CODE (op) == CONCAT)
1705 tree qual_type = build_qualified_type (type,
1706 (TYPE_QUALS (type)
1707 | TYPE_QUAL_CONST));
1708 rtx memloc = assign_temp (qual_type, 1, 1, 1);
1710 emit_move_insn (memloc, op);
1711 op = memloc;
1714 else if (GET_CODE (op) == MEM && MEM_VOLATILE_P (op))
1716 /* We won't recognize volatile memory as available a
1717 memory_operand at this point. Ignore it. */
1719 else if (queued_subexp_p (op))
1721 else
1722 /* ??? Leave this only until we have experience with what
1723 happens in combine and elsewhere when constraints are
1724 not satisfied. */
1725 warning ("asm operand %d probably doesn't match constraints",
1726 i + noutputs);
1729 generating_concat_p = old_generating_concat_p;
1730 ASM_OPERANDS_INPUT (body, i) = op;
1732 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
1733 = gen_rtx_ASM_INPUT (TYPE_MODE (type), constraints[i + noutputs]);
1735 if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
1736 clobber_conflict_found = 1;
1739 /* Protect all the operands from the queue now that they have all been
1740 evaluated. */
1742 generating_concat_p = 0;
1744 for (i = 0; i < ninputs - ninout; i++)
1745 ASM_OPERANDS_INPUT (body, i)
1746 = protect_from_queue (ASM_OPERANDS_INPUT (body, i), 0);
1748 for (i = 0; i < noutputs; i++)
1749 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1751 /* For in-out operands, copy output rtx to input rtx. */
1752 for (i = 0; i < ninout; i++)
1754 int j = inout_opnum[i];
1755 char buffer[16];
1757 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
1758 = output_rtx[j];
1760 sprintf (buffer, "%d", j);
1761 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
1762 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_alloc_string (buffer, -1));
1765 generating_concat_p = old_generating_concat_p;
1767 /* Now, for each output, construct an rtx
1768 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
1769 ARGVEC CONSTRAINTS OPNAMES))
1770 If there is more than one, put them inside a PARALLEL. */
1772 if (noutputs == 1 && nclobbers == 0)
1774 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = constraints[0];
1775 emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1778 else if (noutputs == 0 && nclobbers == 0)
1780 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1781 emit_insn (body);
1784 else
1786 rtx obody = body;
1787 int num = noutputs;
1789 if (num == 0)
1790 num = 1;
1792 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1794 /* For each output operand, store a SET. */
1795 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1797 XVECEXP (body, 0, i)
1798 = gen_rtx_SET (VOIDmode,
1799 output_rtx[i],
1800 gen_rtx_ASM_OPERANDS
1801 (GET_MODE (output_rtx[i]),
1802 TREE_STRING_POINTER (string),
1803 constraints[i], i, argvec, constraintvec,
1804 filename, line));
1806 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1809 /* If there are no outputs (but there are some clobbers)
1810 store the bare ASM_OPERANDS into the PARALLEL. */
1812 if (i == 0)
1813 XVECEXP (body, 0, i++) = obody;
1815 /* Store (clobber REG) for each clobbered register specified. */
1817 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1819 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1820 int j = decode_reg_name (regname);
1821 rtx clobbered_reg;
1823 if (j < 0)
1825 if (j == -3) /* `cc', which is not a register */
1826 continue;
1828 if (j == -4) /* `memory', don't cache memory across asm */
1830 XVECEXP (body, 0, i++)
1831 = gen_rtx_CLOBBER (VOIDmode,
1832 gen_rtx_MEM
1833 (BLKmode,
1834 gen_rtx_SCRATCH (VOIDmode)));
1835 continue;
1838 /* Ignore unknown register, error already signaled. */
1839 continue;
1842 /* Use QImode since that's guaranteed to clobber just one reg. */
1843 clobbered_reg = gen_rtx_REG (QImode, j);
1845 /* Do sanity check for overlap between clobbers and respectively
1846 input and outputs that hasn't been handled. Such overlap
1847 should have been detected and reported above. */
1848 if (!clobber_conflict_found)
1850 int opno;
1852 /* We test the old body (obody) contents to avoid tripping
1853 over the under-construction body. */
1854 for (opno = 0; opno < noutputs; opno++)
1855 if (reg_overlap_mentioned_p (clobbered_reg, output_rtx[opno]))
1856 internal_error ("asm clobber conflict with output operand");
1858 for (opno = 0; opno < ninputs - ninout; opno++)
1859 if (reg_overlap_mentioned_p (clobbered_reg,
1860 ASM_OPERANDS_INPUT (obody, opno)))
1861 internal_error ("asm clobber conflict with input operand");
1864 XVECEXP (body, 0, i++)
1865 = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1868 emit_insn (body);
1871 /* For any outputs that needed reloading into registers, spill them
1872 back to where they belong. */
1873 for (i = 0; i < noutputs; ++i)
1874 if (real_output_rtx[i])
1875 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1877 free_temp_slots ();
1880 /* A subroutine of expand_asm_operands. Check that all operands have
1881 the same number of alternatives. Return true if so. */
1883 static bool
1884 check_operand_nalternatives (outputs, inputs)
1885 tree outputs, inputs;
1887 if (outputs || inputs)
1889 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1890 int nalternatives
1891 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1892 tree next = inputs;
1894 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1896 error ("too many alternatives in `asm'");
1897 return false;
1900 tmp = outputs;
1901 while (tmp)
1903 const char *constraint
1904 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1906 if (n_occurrences (',', constraint) != nalternatives)
1908 error ("operand constraints for `asm' differ in number of alternatives");
1909 return false;
1912 if (TREE_CHAIN (tmp))
1913 tmp = TREE_CHAIN (tmp);
1914 else
1915 tmp = next, next = 0;
1919 return true;
1922 /* A subroutine of expand_asm_operands. Check that all operand names
1923 are unique. Return true if so. We rely on the fact that these names
1924 are identifiers, and so have been canonicalized by get_identifier,
1925 so all we need are pointer comparisons. */
1927 static bool
1928 check_unique_operand_names (outputs, inputs)
1929 tree outputs, inputs;
1931 tree i, j;
1933 for (i = outputs; i ; i = TREE_CHAIN (i))
1935 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1936 if (! i_name)
1937 continue;
1939 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1940 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1941 goto failure;
1944 for (i = inputs; i ; i = TREE_CHAIN (i))
1946 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1947 if (! i_name)
1948 continue;
1950 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1951 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1952 goto failure;
1953 for (j = outputs; j ; j = TREE_CHAIN (j))
1954 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1955 goto failure;
1958 return true;
1960 failure:
1961 error ("duplicate asm operand name '%s'",
1962 TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i))));
1963 return false;
1966 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1967 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1968 STRING and in the constraints to those numbers. */
1970 static tree
1971 resolve_operand_names (string, outputs, inputs, pconstraints)
1972 tree string;
1973 tree outputs, inputs;
1974 const char **pconstraints;
1976 char *buffer = xstrdup (TREE_STRING_POINTER (string));
1977 char *p;
1978 tree t;
1980 /* Assume that we will not need extra space to perform the substitution.
1981 This because we get to remove '[' and ']', which means we cannot have
1982 a problem until we have more than 999 operands. */
1984 p = buffer;
1985 while ((p = strchr (p, '%')) != NULL)
1987 if (p[1] == '[')
1988 p += 1;
1989 else if (ISALPHA (p[1]) && p[2] == '[')
1990 p += 2;
1991 else
1993 p += 1;
1994 continue;
1997 p = resolve_operand_name_1 (p, outputs, inputs);
2000 string = build_string (strlen (buffer), buffer);
2001 free (buffer);
2003 /* Collect output constraints here because it's convenient.
2004 There should be no named operands here; this is verified
2005 in expand_asm_operand. */
2006 for (t = outputs; t ; t = TREE_CHAIN (t), pconstraints++)
2007 *pconstraints = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
2009 /* Substitute [<name>] in input constraint strings. */
2010 for (t = inputs; t ; t = TREE_CHAIN (t), pconstraints++)
2012 const char *c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
2013 if (strchr (c, '[') == NULL)
2014 *pconstraints = c;
2015 else
2017 p = buffer = xstrdup (c);
2018 while ((p = strchr (p, '[')) != NULL)
2019 p = resolve_operand_name_1 (p, outputs, inputs);
2021 *pconstraints = ggc_alloc_string (buffer, -1);
2022 free (buffer);
2026 return string;
2029 /* A subroutine of resolve_operand_names. P points to the '[' for a
2030 potential named operand of the form [<name>]. In place, replace
2031 the name and brackets with a number. Return a pointer to the
2032 balance of the string after substitution. */
2034 static char *
2035 resolve_operand_name_1 (p, outputs, inputs)
2036 char *p;
2037 tree outputs, inputs;
2039 char *q;
2040 int op;
2041 tree t;
2042 size_t len;
2044 /* Collect the operand name. */
2045 q = strchr (p, ']');
2046 if (!q)
2048 error ("missing close brace for named operand");
2049 return strchr (p, '\0');
2051 len = q - p - 1;
2053 /* Resolve the name to a number. */
2054 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
2056 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
2057 if (name)
2059 const char *c = TREE_STRING_POINTER (name);
2060 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
2061 goto found;
2064 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
2066 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
2067 if (name)
2069 const char *c = TREE_STRING_POINTER (name);
2070 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
2071 goto found;
2075 *q = '\0';
2076 error ("undefined named operand '%s'", p + 1);
2077 op = 0;
2078 found:
2080 /* Replace the name with the number. Unfortunately, not all libraries
2081 get the return value of sprintf correct, so search for the end of the
2082 generated string by hand. */
2083 sprintf (p, "%d", op);
2084 p = strchr (p, '\0');
2086 /* Verify the no extra buffer space assumption. */
2087 if (p > q)
2088 abort ();
2090 /* Shift the rest of the buffer down to fill the gap. */
2091 memmove (p, q + 1, strlen (q + 1) + 1);
2093 return p;
2096 /* Generate RTL to evaluate the expression EXP
2097 and remember it in case this is the VALUE in a ({... VALUE; }) constr.
2098 Provided just for backward-compatibility. expand_expr_stmt_value()
2099 should be used for new code. */
2101 void
2102 expand_expr_stmt (exp)
2103 tree exp;
2105 expand_expr_stmt_value (exp, -1, 1);
2108 /* Generate RTL to evaluate the expression EXP. WANT_VALUE tells
2109 whether to (1) save the value of the expression, (0) discard it or
2110 (-1) use expr_stmts_for_value to tell. The use of -1 is
2111 deprecated, and retained only for backward compatibility. */
2113 void
2114 expand_expr_stmt_value (exp, want_value, maybe_last)
2115 tree exp;
2116 int want_value, maybe_last;
2118 rtx value;
2119 tree type;
2121 if (want_value == -1)
2122 want_value = expr_stmts_for_value != 0;
2124 /* If -W, warn about statements with no side effects,
2125 except for an explicit cast to void (e.g. for assert()), and
2126 except for last statement in ({...}) where they may be useful. */
2127 if (! want_value
2128 && (expr_stmts_for_value == 0 || ! maybe_last)
2129 && exp != error_mark_node)
2131 if (! TREE_SIDE_EFFECTS (exp))
2133 if ((extra_warnings || warn_unused_value)
2134 && !(TREE_CODE (exp) == CONVERT_EXPR
2135 && VOID_TYPE_P (TREE_TYPE (exp))))
2136 warning_with_file_and_line (emit_filename, emit_lineno,
2137 "statement with no effect");
2139 else if (warn_unused_value)
2140 warn_if_unused_value (exp);
2143 /* If EXP is of function type and we are expanding statements for
2144 value, convert it to pointer-to-function. */
2145 if (want_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
2146 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
2148 /* The call to `expand_expr' could cause last_expr_type and
2149 last_expr_value to get reset. Therefore, we set last_expr_value
2150 and last_expr_type *after* calling expand_expr. */
2151 value = expand_expr (exp, want_value ? NULL_RTX : const0_rtx,
2152 VOIDmode, 0);
2153 type = TREE_TYPE (exp);
2155 /* If all we do is reference a volatile value in memory,
2156 copy it to a register to be sure it is actually touched. */
2157 if (value && GET_CODE (value) == MEM && TREE_THIS_VOLATILE (exp))
2159 if (TYPE_MODE (type) == VOIDmode)
2161 else if (TYPE_MODE (type) != BLKmode)
2162 value = copy_to_reg (value);
2163 else
2165 rtx lab = gen_label_rtx ();
2167 /* Compare the value with itself to reference it. */
2168 emit_cmp_and_jump_insns (value, value, EQ,
2169 expand_expr (TYPE_SIZE (type),
2170 NULL_RTX, VOIDmode, 0),
2171 BLKmode, 0, lab);
2172 emit_label (lab);
2176 /* If this expression is part of a ({...}) and is in memory, we may have
2177 to preserve temporaries. */
2178 preserve_temp_slots (value);
2180 /* Free any temporaries used to evaluate this expression. Any temporary
2181 used as a result of this expression will already have been preserved
2182 above. */
2183 free_temp_slots ();
2185 if (want_value)
2187 last_expr_value = value;
2188 last_expr_type = type;
2191 emit_queue ();
2194 /* Warn if EXP contains any computations whose results are not used.
2195 Return 1 if a warning is printed; 0 otherwise. */
2198 warn_if_unused_value (exp)
2199 tree exp;
2201 if (TREE_USED (exp))
2202 return 0;
2204 /* Don't warn about void constructs. This includes casting to void,
2205 void function calls, and statement expressions with a final cast
2206 to void. */
2207 if (VOID_TYPE_P (TREE_TYPE (exp)))
2208 return 0;
2210 switch (TREE_CODE (exp))
2212 case PREINCREMENT_EXPR:
2213 case POSTINCREMENT_EXPR:
2214 case PREDECREMENT_EXPR:
2215 case POSTDECREMENT_EXPR:
2216 case MODIFY_EXPR:
2217 case INIT_EXPR:
2218 case TARGET_EXPR:
2219 case CALL_EXPR:
2220 case METHOD_CALL_EXPR:
2221 case RTL_EXPR:
2222 case TRY_CATCH_EXPR:
2223 case WITH_CLEANUP_EXPR:
2224 case EXIT_EXPR:
2225 return 0;
2227 case BIND_EXPR:
2228 /* For a binding, warn if no side effect within it. */
2229 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2231 case SAVE_EXPR:
2232 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2234 case TRUTH_ORIF_EXPR:
2235 case TRUTH_ANDIF_EXPR:
2236 /* In && or ||, warn if 2nd operand has no side effect. */
2237 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2239 case COMPOUND_EXPR:
2240 if (TREE_NO_UNUSED_WARNING (exp))
2241 return 0;
2242 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
2243 return 1;
2244 /* Let people do `(foo (), 0)' without a warning. */
2245 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
2246 return 0;
2247 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2249 case NOP_EXPR:
2250 case CONVERT_EXPR:
2251 case NON_LVALUE_EXPR:
2252 /* Don't warn about conversions not explicit in the user's program. */
2253 if (TREE_NO_UNUSED_WARNING (exp))
2254 return 0;
2255 /* Assignment to a cast usually results in a cast of a modify.
2256 Don't complain about that. There can be an arbitrary number of
2257 casts before the modify, so we must loop until we find the first
2258 non-cast expression and then test to see if that is a modify. */
2260 tree tem = TREE_OPERAND (exp, 0);
2262 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
2263 tem = TREE_OPERAND (tem, 0);
2265 if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
2266 || TREE_CODE (tem) == CALL_EXPR)
2267 return 0;
2269 goto maybe_warn;
2271 case INDIRECT_REF:
2272 /* Don't warn about automatic dereferencing of references, since
2273 the user cannot control it. */
2274 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
2275 return warn_if_unused_value (TREE_OPERAND (exp, 0));
2276 /* Fall through. */
2278 default:
2279 /* Referencing a volatile value is a side effect, so don't warn. */
2280 if ((DECL_P (exp)
2281 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
2282 && TREE_THIS_VOLATILE (exp))
2283 return 0;
2285 /* If this is an expression which has no operands, there is no value
2286 to be unused. There are no such language-independent codes,
2287 but front ends may define such. */
2288 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'e'
2289 && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
2290 return 0;
2292 maybe_warn:
2293 /* If this is an expression with side effects, don't warn. */
2294 if (TREE_SIDE_EFFECTS (exp))
2295 return 0;
2297 warning_with_file_and_line (emit_filename, emit_lineno,
2298 "value computed is not used");
2299 return 1;
2303 /* Clear out the memory of the last expression evaluated. */
2305 void
2306 clear_last_expr ()
2308 last_expr_type = NULL_TREE;
2309 last_expr_value = NULL_RTX;
2312 /* Begin a statement-expression, i.e., a series of statements which
2313 may return a value. Return the RTL_EXPR for this statement expr.
2314 The caller must save that value and pass it to
2315 expand_end_stmt_expr. If HAS_SCOPE is nonzero, temporaries created
2316 in the statement-expression are deallocated at the end of the
2317 expression. */
2319 tree
2320 expand_start_stmt_expr (has_scope)
2321 int has_scope;
2323 tree t;
2325 /* Make the RTL_EXPR node temporary, not momentary,
2326 so that rtl_expr_chain doesn't become garbage. */
2327 t = make_node (RTL_EXPR);
2328 do_pending_stack_adjust ();
2329 if (has_scope)
2330 start_sequence_for_rtl_expr (t);
2331 else
2332 start_sequence ();
2333 NO_DEFER_POP;
2334 expr_stmts_for_value++;
2335 return t;
2338 /* Restore the previous state at the end of a statement that returns a value.
2339 Returns a tree node representing the statement's value and the
2340 insns to compute the value.
2342 The nodes of that expression have been freed by now, so we cannot use them.
2343 But we don't want to do that anyway; the expression has already been
2344 evaluated and now we just want to use the value. So generate a RTL_EXPR
2345 with the proper type and RTL value.
2347 If the last substatement was not an expression,
2348 return something with type `void'. */
2350 tree
2351 expand_end_stmt_expr (t)
2352 tree t;
2354 OK_DEFER_POP;
2356 if (! last_expr_value || ! last_expr_type)
2358 last_expr_value = const0_rtx;
2359 last_expr_type = void_type_node;
2361 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2362 /* Remove any possible QUEUED. */
2363 last_expr_value = protect_from_queue (last_expr_value, 0);
2365 emit_queue ();
2367 TREE_TYPE (t) = last_expr_type;
2368 RTL_EXPR_RTL (t) = last_expr_value;
2369 RTL_EXPR_SEQUENCE (t) = get_insns ();
2371 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2373 end_sequence ();
2375 /* Don't consider deleting this expr or containing exprs at tree level. */
2376 TREE_SIDE_EFFECTS (t) = 1;
2377 /* Propagate volatility of the actual RTL expr. */
2378 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2380 clear_last_expr ();
2381 expr_stmts_for_value--;
2383 return t;
2386 /* Generate RTL for the start of an if-then. COND is the expression
2387 whose truth should be tested.
2389 If EXITFLAG is nonzero, this conditional is visible to
2390 `exit_something'. */
2392 void
2393 expand_start_cond (cond, exitflag)
2394 tree cond;
2395 int exitflag;
2397 struct nesting *thiscond = ALLOC_NESTING ();
2399 /* Make an entry on cond_stack for the cond we are entering. */
2401 thiscond->desc = COND_NESTING;
2402 thiscond->next = cond_stack;
2403 thiscond->all = nesting_stack;
2404 thiscond->depth = ++nesting_depth;
2405 thiscond->data.cond.next_label = gen_label_rtx ();
2406 /* Before we encounter an `else', we don't need a separate exit label
2407 unless there are supposed to be exit statements
2408 to exit this conditional. */
2409 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2410 thiscond->data.cond.endif_label = thiscond->exit_label;
2411 cond_stack = thiscond;
2412 nesting_stack = thiscond;
2414 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2417 /* Generate RTL between then-clause and the elseif-clause
2418 of an if-then-elseif-.... */
2420 void
2421 expand_start_elseif (cond)
2422 tree cond;
2424 if (cond_stack->data.cond.endif_label == 0)
2425 cond_stack->data.cond.endif_label = gen_label_rtx ();
2426 emit_jump (cond_stack->data.cond.endif_label);
2427 emit_label (cond_stack->data.cond.next_label);
2428 cond_stack->data.cond.next_label = gen_label_rtx ();
2429 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2432 /* Generate RTL between the then-clause and the else-clause
2433 of an if-then-else. */
2435 void
2436 expand_start_else ()
2438 if (cond_stack->data.cond.endif_label == 0)
2439 cond_stack->data.cond.endif_label = gen_label_rtx ();
2441 emit_jump (cond_stack->data.cond.endif_label);
2442 emit_label (cond_stack->data.cond.next_label);
2443 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
2446 /* After calling expand_start_else, turn this "else" into an "else if"
2447 by providing another condition. */
2449 void
2450 expand_elseif (cond)
2451 tree cond;
2453 cond_stack->data.cond.next_label = gen_label_rtx ();
2454 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2457 /* Generate RTL for the end of an if-then.
2458 Pop the record for it off of cond_stack. */
2460 void
2461 expand_end_cond ()
2463 struct nesting *thiscond = cond_stack;
2465 do_pending_stack_adjust ();
2466 if (thiscond->data.cond.next_label)
2467 emit_label (thiscond->data.cond.next_label);
2468 if (thiscond->data.cond.endif_label)
2469 emit_label (thiscond->data.cond.endif_label);
2471 POPSTACK (cond_stack);
2472 clear_last_expr ();
2475 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2476 loop should be exited by `exit_something'. This is a loop for which
2477 `expand_continue' will jump to the top of the loop.
2479 Make an entry on loop_stack to record the labels associated with
2480 this loop. */
2482 struct nesting *
2483 expand_start_loop (exit_flag)
2484 int exit_flag;
2486 struct nesting *thisloop = ALLOC_NESTING ();
2488 /* Make an entry on loop_stack for the loop we are entering. */
2490 thisloop->desc = LOOP_NESTING;
2491 thisloop->next = loop_stack;
2492 thisloop->all = nesting_stack;
2493 thisloop->depth = ++nesting_depth;
2494 thisloop->data.loop.start_label = gen_label_rtx ();
2495 thisloop->data.loop.end_label = gen_label_rtx ();
2496 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2497 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2498 loop_stack = thisloop;
2499 nesting_stack = thisloop;
2501 do_pending_stack_adjust ();
2502 emit_queue ();
2503 emit_note (NULL, NOTE_INSN_LOOP_BEG);
2504 emit_label (thisloop->data.loop.start_label);
2506 return thisloop;
2509 /* Like expand_start_loop but for a loop where the continuation point
2510 (for expand_continue_loop) will be specified explicitly. */
2512 struct nesting *
2513 expand_start_loop_continue_elsewhere (exit_flag)
2514 int exit_flag;
2516 struct nesting *thisloop = expand_start_loop (exit_flag);
2517 loop_stack->data.loop.continue_label = gen_label_rtx ();
2518 return thisloop;
2521 /* Begin a null, aka do { } while (0) "loop". But since the contents
2522 of said loop can still contain a break, we must frob the loop nest. */
2524 struct nesting *
2525 expand_start_null_loop ()
2527 struct nesting *thisloop = ALLOC_NESTING ();
2529 /* Make an entry on loop_stack for the loop we are entering. */
2531 thisloop->desc = LOOP_NESTING;
2532 thisloop->next = loop_stack;
2533 thisloop->all = nesting_stack;
2534 thisloop->depth = ++nesting_depth;
2535 thisloop->data.loop.start_label = emit_note (NULL, NOTE_INSN_DELETED);
2536 thisloop->data.loop.end_label = gen_label_rtx ();
2537 thisloop->data.loop.continue_label = thisloop->data.loop.end_label;
2538 thisloop->exit_label = thisloop->data.loop.end_label;
2539 loop_stack = thisloop;
2540 nesting_stack = thisloop;
2542 return thisloop;
2545 /* Specify the continuation point for a loop started with
2546 expand_start_loop_continue_elsewhere.
2547 Use this at the point in the code to which a continue statement
2548 should jump. */
2550 void
2551 expand_loop_continue_here ()
2553 do_pending_stack_adjust ();
2554 emit_note (NULL, NOTE_INSN_LOOP_CONT);
2555 emit_label (loop_stack->data.loop.continue_label);
2558 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2559 Pop the block off of loop_stack. */
2561 void
2562 expand_end_loop ()
2564 rtx start_label = loop_stack->data.loop.start_label;
2565 rtx etc_note;
2566 int eh_regions, debug_blocks;
2567 bool empty_test;
2569 /* Mark the continue-point at the top of the loop if none elsewhere. */
2570 if (start_label == loop_stack->data.loop.continue_label)
2571 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2573 do_pending_stack_adjust ();
2575 /* If the loop starts with a loop exit, roll that to the end where
2576 it will optimize together with the jump back.
2578 If the loop presently looks like this (in pseudo-C):
2580 LOOP_BEG
2581 start_label:
2582 if (test) goto end_label;
2583 LOOP_END_TOP_COND
2584 body;
2585 goto start_label;
2586 end_label:
2588 transform it to look like:
2590 LOOP_BEG
2591 goto start_label;
2592 top_label:
2593 body;
2594 start_label:
2595 if (test) goto end_label;
2596 goto top_label;
2597 end_label:
2599 We rely on the presence of NOTE_INSN_LOOP_END_TOP_COND to mark
2600 the end of the entry conditional. Without this, our lexical scan
2601 can't tell the difference between an entry conditional and a
2602 body conditional that exits the loop. Mistaking the two means
2603 that we can misplace the NOTE_INSN_LOOP_CONT note, which can
2604 screw up loop unrolling.
2606 Things will be oh so much better when loop optimization is done
2607 off of a proper control flow graph... */
2609 /* Scan insns from the top of the loop looking for the END_TOP_COND note. */
2611 empty_test = true;
2612 eh_regions = debug_blocks = 0;
2613 for (etc_note = start_label; etc_note ; etc_note = NEXT_INSN (etc_note))
2614 if (GET_CODE (etc_note) == NOTE)
2616 if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_END_TOP_COND)
2617 break;
2619 /* We must not walk into a nested loop. */
2620 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_BEG)
2622 etc_note = NULL_RTX;
2623 break;
2626 /* At the same time, scan for EH region notes, as we don't want
2627 to scrog region nesting. This shouldn't happen, but... */
2628 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_BEG)
2629 eh_regions++;
2630 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_END)
2632 if (--eh_regions < 0)
2633 /* We've come to the end of an EH region, but never saw the
2634 beginning of that region. That means that an EH region
2635 begins before the top of the loop, and ends in the middle
2636 of it. The existence of such a situation violates a basic
2637 assumption in this code, since that would imply that even
2638 when EH_REGIONS is zero, we might move code out of an
2639 exception region. */
2640 abort ();
2643 /* Likewise for debug scopes. In this case we'll either (1) move
2644 all of the notes if they are properly nested or (2) leave the
2645 notes alone and only rotate the loop at high optimization
2646 levels when we expect to scrog debug info. */
2647 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_BEG)
2648 debug_blocks++;
2649 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_END)
2650 debug_blocks--;
2652 else if (INSN_P (etc_note))
2653 empty_test = false;
2655 if (etc_note
2656 && optimize
2657 && ! empty_test
2658 && eh_regions == 0
2659 && (debug_blocks == 0 || optimize >= 2)
2660 && NEXT_INSN (etc_note) != NULL_RTX
2661 && ! any_condjump_p (get_last_insn ()))
2663 /* We found one. Move everything from START to ETC to the end
2664 of the loop, and add a jump from the top of the loop. */
2665 rtx top_label = gen_label_rtx ();
2666 rtx start_move = start_label;
2668 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2669 then we want to move this note also. */
2670 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2671 && NOTE_LINE_NUMBER (PREV_INSN (start_move)) == NOTE_INSN_LOOP_CONT)
2672 start_move = PREV_INSN (start_move);
2674 emit_label_before (top_label, start_move);
2676 /* Actually move the insns. If the debug scopes are nested, we
2677 can move everything at once. Otherwise we have to move them
2678 one by one and squeeze out the block notes. */
2679 if (debug_blocks == 0)
2680 reorder_insns (start_move, etc_note, get_last_insn ());
2681 else
2683 rtx insn, next_insn;
2684 for (insn = start_move; insn; insn = next_insn)
2686 /* Figure out which insn comes after this one. We have
2687 to do this before we move INSN. */
2688 next_insn = (insn == etc_note ? NULL : NEXT_INSN (insn));
2690 if (GET_CODE (insn) == NOTE
2691 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2692 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2693 continue;
2695 reorder_insns (insn, insn, get_last_insn ());
2699 /* Add the jump from the top of the loop. */
2700 emit_jump_insn_before (gen_jump (start_label), top_label);
2701 emit_barrier_before (top_label);
2702 start_label = top_label;
2705 emit_jump (start_label);
2706 emit_note (NULL, NOTE_INSN_LOOP_END);
2707 emit_label (loop_stack->data.loop.end_label);
2709 POPSTACK (loop_stack);
2711 clear_last_expr ();
2714 /* Finish a null loop, aka do { } while (0). */
2716 void
2717 expand_end_null_loop ()
2719 do_pending_stack_adjust ();
2720 emit_label (loop_stack->data.loop.end_label);
2722 POPSTACK (loop_stack);
2724 clear_last_expr ();
2727 /* Generate a jump to the current loop's continue-point.
2728 This is usually the top of the loop, but may be specified
2729 explicitly elsewhere. If not currently inside a loop,
2730 return 0 and do nothing; caller will print an error message. */
2733 expand_continue_loop (whichloop)
2734 struct nesting *whichloop;
2736 /* Emit information for branch prediction. */
2737 rtx note;
2739 note = emit_note (NULL, NOTE_INSN_PREDICTION);
2740 NOTE_PREDICTION (note) = NOTE_PREDICT (PRED_CONTINUE, IS_TAKEN);
2741 clear_last_expr ();
2742 if (whichloop == 0)
2743 whichloop = loop_stack;
2744 if (whichloop == 0)
2745 return 0;
2746 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2747 NULL_RTX);
2748 return 1;
2751 /* Generate a jump to exit the current loop. If not currently inside a loop,
2752 return 0 and do nothing; caller will print an error message. */
2755 expand_exit_loop (whichloop)
2756 struct nesting *whichloop;
2758 clear_last_expr ();
2759 if (whichloop == 0)
2760 whichloop = loop_stack;
2761 if (whichloop == 0)
2762 return 0;
2763 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2764 return 1;
2767 /* Generate a conditional jump to exit the current loop if COND
2768 evaluates to zero. If not currently inside a loop,
2769 return 0 and do nothing; caller will print an error message. */
2772 expand_exit_loop_if_false (whichloop, cond)
2773 struct nesting *whichloop;
2774 tree cond;
2776 rtx label;
2777 clear_last_expr ();
2779 if (whichloop == 0)
2780 whichloop = loop_stack;
2781 if (whichloop == 0)
2782 return 0;
2784 if (integer_nonzerop (cond))
2785 return 1;
2786 if (integer_zerop (cond))
2787 return expand_exit_loop (whichloop);
2789 /* Check if we definitely won't need a fixup. */
2790 if (whichloop == nesting_stack)
2792 jumpifnot (cond, whichloop->data.loop.end_label);
2793 return 1;
2796 /* In order to handle fixups, we actually create a conditional jump
2797 around an unconditional branch to exit the loop. If fixups are
2798 necessary, they go before the unconditional branch. */
2800 label = gen_label_rtx ();
2801 jumpif (cond, label);
2802 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2803 NULL_RTX);
2804 emit_label (label);
2806 return 1;
2809 /* Like expand_exit_loop_if_false except also emit a note marking
2810 the end of the conditional. Should only be used immediately
2811 after expand_loop_start. */
2814 expand_exit_loop_top_cond (whichloop, cond)
2815 struct nesting *whichloop;
2816 tree cond;
2818 if (! expand_exit_loop_if_false (whichloop, cond))
2819 return 0;
2821 emit_note (NULL, NOTE_INSN_LOOP_END_TOP_COND);
2822 return 1;
2825 /* Return nonzero if we should preserve sub-expressions as separate
2826 pseudos. We never do so if we aren't optimizing. We always do so
2827 if -fexpensive-optimizations.
2829 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2830 the loop may still be a small one. */
2833 preserve_subexpressions_p ()
2835 rtx insn;
2837 if (flag_expensive_optimizations)
2838 return 1;
2840 if (optimize == 0 || cfun == 0 || cfun->stmt == 0 || loop_stack == 0)
2841 return 0;
2843 insn = get_last_insn_anywhere ();
2845 return (insn
2846 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2847 < n_non_fixed_regs * 3));
2851 /* Generate a jump to exit the current loop, conditional, binding contour
2852 or case statement. Not all such constructs are visible to this function,
2853 only those started with EXIT_FLAG nonzero. Individual languages use
2854 the EXIT_FLAG parameter to control which kinds of constructs you can
2855 exit this way.
2857 If not currently inside anything that can be exited,
2858 return 0 and do nothing; caller will print an error message. */
2861 expand_exit_something ()
2863 struct nesting *n;
2864 clear_last_expr ();
2865 for (n = nesting_stack; n; n = n->all)
2866 if (n->exit_label != 0)
2868 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2869 return 1;
2872 return 0;
2875 /* Generate RTL to return from the current function, with no value.
2876 (That is, we do not do anything about returning any value.) */
2878 void
2879 expand_null_return ()
2881 rtx last_insn;
2883 last_insn = get_last_insn ();
2885 /* If this function was declared to return a value, but we
2886 didn't, clobber the return registers so that they are not
2887 propagated live to the rest of the function. */
2888 clobber_return_register ();
2890 expand_null_return_1 (last_insn);
2893 /* Try to guess whether the value of return means error code. */
2894 static enum br_predictor
2895 return_prediction (val)
2896 rtx val;
2898 /* Different heuristics for pointers and scalars. */
2899 if (POINTER_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl))))
2901 /* NULL is usually not returned. */
2902 if (val == const0_rtx)
2903 return PRED_NULL_RETURN;
2905 else
2907 /* Negative return values are often used to indicate
2908 errors. */
2909 if (GET_CODE (val) == CONST_INT
2910 && INTVAL (val) < 0)
2911 return PRED_NEGATIVE_RETURN;
2912 /* Constant return values are also usually erors,
2913 zero/one often mean booleans so exclude them from the
2914 heuristics. */
2915 if (CONSTANT_P (val)
2916 && (val != const0_rtx && val != const1_rtx))
2917 return PRED_CONST_RETURN;
2919 return PRED_NO_PREDICTION;
2922 /* Generate RTL to return from the current function, with value VAL. */
2924 static void
2925 expand_value_return (val)
2926 rtx val;
2928 rtx last_insn;
2929 rtx return_reg;
2930 enum br_predictor pred;
2932 if ((pred = return_prediction (val)) != PRED_NO_PREDICTION)
2934 /* Emit information for branch prediction. */
2935 rtx note;
2937 note = emit_note (NULL, NOTE_INSN_PREDICTION);
2939 NOTE_PREDICTION (note) = NOTE_PREDICT (pred, NOT_TAKEN);
2943 last_insn = get_last_insn ();
2944 return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2946 /* Copy the value to the return location
2947 unless it's already there. */
2949 if (return_reg != val)
2951 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
2952 #ifdef PROMOTE_FUNCTION_RETURN
2953 int unsignedp = TREE_UNSIGNED (type);
2954 enum machine_mode old_mode
2955 = DECL_MODE (DECL_RESULT (current_function_decl));
2956 enum machine_mode mode
2957 = promote_mode (type, old_mode, &unsignedp, 1);
2959 if (mode != old_mode)
2960 val = convert_modes (mode, old_mode, val, unsignedp);
2961 #endif
2962 if (GET_CODE (return_reg) == PARALLEL)
2963 emit_group_load (return_reg, val, int_size_in_bytes (type));
2964 else
2965 emit_move_insn (return_reg, val);
2968 expand_null_return_1 (last_insn);
2971 /* Output a return with no value. If LAST_INSN is nonzero,
2972 pretend that the return takes place after LAST_INSN. */
2974 static void
2975 expand_null_return_1 (last_insn)
2976 rtx last_insn;
2978 rtx end_label = cleanup_label ? cleanup_label : return_label;
2980 clear_pending_stack_adjust ();
2981 do_pending_stack_adjust ();
2982 clear_last_expr ();
2984 if (end_label == 0)
2985 end_label = return_label = gen_label_rtx ();
2986 expand_goto_internal (NULL_TREE, end_label, last_insn);
2989 /* Generate RTL to evaluate the expression RETVAL and return it
2990 from the current function. */
2992 void
2993 expand_return (retval)
2994 tree retval;
2996 /* If there are any cleanups to be performed, then they will
2997 be inserted following LAST_INSN. It is desirable
2998 that the last_insn, for such purposes, should be the
2999 last insn before computing the return value. Otherwise, cleanups
3000 which call functions can clobber the return value. */
3001 /* ??? rms: I think that is erroneous, because in C++ it would
3002 run destructors on variables that might be used in the subsequent
3003 computation of the return value. */
3004 rtx last_insn = 0;
3005 rtx result_rtl;
3006 rtx val = 0;
3007 tree retval_rhs;
3009 /* If function wants no value, give it none. */
3010 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
3012 expand_expr (retval, NULL_RTX, VOIDmode, 0);
3013 emit_queue ();
3014 expand_null_return ();
3015 return;
3018 if (retval == error_mark_node)
3020 /* Treat this like a return of no value from a function that
3021 returns a value. */
3022 expand_null_return ();
3023 return;
3025 else if (TREE_CODE (retval) == RESULT_DECL)
3026 retval_rhs = retval;
3027 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
3028 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
3029 retval_rhs = TREE_OPERAND (retval, 1);
3030 else if (VOID_TYPE_P (TREE_TYPE (retval)))
3031 /* Recognize tail-recursive call to void function. */
3032 retval_rhs = retval;
3033 else
3034 retval_rhs = NULL_TREE;
3036 last_insn = get_last_insn ();
3038 /* Distribute return down conditional expr if either of the sides
3039 may involve tail recursion (see test below). This enhances the number
3040 of tail recursions we see. Don't do this always since it can produce
3041 sub-optimal code in some cases and we distribute assignments into
3042 conditional expressions when it would help. */
3044 if (optimize && retval_rhs != 0
3045 && frame_offset == 0
3046 && TREE_CODE (retval_rhs) == COND_EXPR
3047 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
3048 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
3050 rtx label = gen_label_rtx ();
3051 tree expr;
3053 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
3054 start_cleanup_deferral ();
3055 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
3056 DECL_RESULT (current_function_decl),
3057 TREE_OPERAND (retval_rhs, 1));
3058 TREE_SIDE_EFFECTS (expr) = 1;
3059 expand_return (expr);
3060 emit_label (label);
3062 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
3063 DECL_RESULT (current_function_decl),
3064 TREE_OPERAND (retval_rhs, 2));
3065 TREE_SIDE_EFFECTS (expr) = 1;
3066 expand_return (expr);
3067 end_cleanup_deferral ();
3068 return;
3071 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
3073 /* If the result is an aggregate that is being returned in one (or more)
3074 registers, load the registers here. The compiler currently can't handle
3075 copying a BLKmode value into registers. We could put this code in a
3076 more general area (for use by everyone instead of just function
3077 call/return), but until this feature is generally usable it is kept here
3078 (and in expand_call). The value must go into a pseudo in case there
3079 are cleanups that will clobber the real return register. */
3081 if (retval_rhs != 0
3082 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
3083 && GET_CODE (result_rtl) == REG)
3085 int i;
3086 unsigned HOST_WIDE_INT bitpos, xbitpos;
3087 unsigned HOST_WIDE_INT big_endian_correction = 0;
3088 unsigned HOST_WIDE_INT bytes
3089 = int_size_in_bytes (TREE_TYPE (retval_rhs));
3090 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3091 unsigned int bitsize
3092 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
3093 rtx *result_pseudos = (rtx *) alloca (sizeof (rtx) * n_regs);
3094 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
3095 rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
3096 enum machine_mode tmpmode, result_reg_mode;
3098 if (bytes == 0)
3100 expand_null_return ();
3101 return;
3104 /* Structures whose size is not a multiple of a word are aligned
3105 to the least significant byte (to the right). On a BYTES_BIG_ENDIAN
3106 machine, this means we must skip the empty high order bytes when
3107 calculating the bit offset. */
3108 if (BYTES_BIG_ENDIAN
3109 && bytes % UNITS_PER_WORD)
3110 big_endian_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
3111 * BITS_PER_UNIT));
3113 /* Copy the structure BITSIZE bits at a time. */
3114 for (bitpos = 0, xbitpos = big_endian_correction;
3115 bitpos < bytes * BITS_PER_UNIT;
3116 bitpos += bitsize, xbitpos += bitsize)
3118 /* We need a new destination pseudo each time xbitpos is
3119 on a word boundary and when xbitpos == big_endian_correction
3120 (the first time through). */
3121 if (xbitpos % BITS_PER_WORD == 0
3122 || xbitpos == big_endian_correction)
3124 /* Generate an appropriate register. */
3125 dst = gen_reg_rtx (word_mode);
3126 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
3128 /* Clear the destination before we move anything into it. */
3129 emit_move_insn (dst, CONST0_RTX (GET_MODE (dst)));
3132 /* We need a new source operand each time bitpos is on a word
3133 boundary. */
3134 if (bitpos % BITS_PER_WORD == 0)
3135 src = operand_subword_force (result_val,
3136 bitpos / BITS_PER_WORD,
3137 BLKmode);
3139 /* Use bitpos for the source extraction (left justified) and
3140 xbitpos for the destination store (right justified). */
3141 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
3142 extract_bit_field (src, bitsize,
3143 bitpos % BITS_PER_WORD, 1,
3144 NULL_RTX, word_mode, word_mode,
3145 BITS_PER_WORD),
3146 BITS_PER_WORD);
3149 /* Find the smallest integer mode large enough to hold the
3150 entire structure and use that mode instead of BLKmode
3151 on the USE insn for the return register. */
3152 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3153 tmpmode != VOIDmode;
3154 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
3155 /* Have we found a large enough mode? */
3156 if (GET_MODE_SIZE (tmpmode) >= bytes)
3157 break;
3159 /* No suitable mode found. */
3160 if (tmpmode == VOIDmode)
3161 abort ();
3163 PUT_MODE (result_rtl, tmpmode);
3165 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
3166 result_reg_mode = word_mode;
3167 else
3168 result_reg_mode = tmpmode;
3169 result_reg = gen_reg_rtx (result_reg_mode);
3171 emit_queue ();
3172 for (i = 0; i < n_regs; i++)
3173 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
3174 result_pseudos[i]);
3176 if (tmpmode != result_reg_mode)
3177 result_reg = gen_lowpart (tmpmode, result_reg);
3179 expand_value_return (result_reg);
3181 else if (retval_rhs != 0
3182 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3183 && (GET_CODE (result_rtl) == REG
3184 || (GET_CODE (result_rtl) == PARALLEL)))
3186 /* Calculate the return value into a temporary (usually a pseudo
3187 reg). */
3188 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
3189 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
3191 val = assign_temp (nt, 0, 0, 1);
3192 val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3193 val = force_not_mem (val);
3194 emit_queue ();
3195 /* Return the calculated value, doing cleanups first. */
3196 expand_value_return (val);
3198 else
3200 /* No cleanups or no hard reg used;
3201 calculate value into hard return reg. */
3202 expand_expr (retval, const0_rtx, VOIDmode, 0);
3203 emit_queue ();
3204 expand_value_return (result_rtl);
3208 /* Attempt to optimize a potential tail recursion call into a goto.
3209 ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3210 where to place the jump to the tail recursion label.
3212 Return TRUE if the call was optimized into a goto. */
3215 optimize_tail_recursion (arguments, last_insn)
3216 tree arguments;
3217 rtx last_insn;
3219 /* Finish checking validity, and if valid emit code to set the
3220 argument variables for the new call. */
3221 if (tail_recursion_args (arguments, DECL_ARGUMENTS (current_function_decl)))
3223 if (tail_recursion_label == 0)
3225 tail_recursion_label = gen_label_rtx ();
3226 emit_label_after (tail_recursion_label,
3227 tail_recursion_reentry);
3229 emit_queue ();
3230 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3231 emit_barrier ();
3232 return 1;
3234 return 0;
3237 /* Emit code to alter this function's formal parms for a tail-recursive call.
3238 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3239 FORMALS is the chain of decls of formals.
3240 Return 1 if this can be done;
3241 otherwise return 0 and do not emit any code. */
3243 static int
3244 tail_recursion_args (actuals, formals)
3245 tree actuals, formals;
3247 tree a = actuals, f = formals;
3248 int i;
3249 rtx *argvec;
3251 /* Check that number and types of actuals are compatible
3252 with the formals. This is not always true in valid C code.
3253 Also check that no formal needs to be addressable
3254 and that all formals are scalars. */
3256 /* Also count the args. */
3258 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3260 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3261 != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3262 return 0;
3263 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3264 return 0;
3266 if (a != 0 || f != 0)
3267 return 0;
3269 /* Compute all the actuals. */
3271 argvec = (rtx *) alloca (i * sizeof (rtx));
3273 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3274 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3276 /* Find which actual values refer to current values of previous formals.
3277 Copy each of them now, before any formal is changed. */
3279 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3281 int copy = 0;
3282 int j;
3283 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3284 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3286 copy = 1;
3287 break;
3289 if (copy)
3290 argvec[i] = copy_to_reg (argvec[i]);
3293 /* Store the values of the actuals into the formals. */
3295 for (f = formals, a = actuals, i = 0; f;
3296 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3298 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3299 emit_move_insn (DECL_RTL (f), argvec[i]);
3300 else
3302 rtx tmp = argvec[i];
3304 if (DECL_MODE (f) != GET_MODE (DECL_RTL (f)))
3306 tmp = gen_reg_rtx (DECL_MODE (f));
3307 convert_move (tmp, argvec[i],
3308 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
3310 convert_move (DECL_RTL (f), tmp,
3311 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
3315 free_temp_slots ();
3316 return 1;
3319 /* Generate the RTL code for entering a binding contour.
3320 The variables are declared one by one, by calls to `expand_decl'.
3322 FLAGS is a bitwise or of the following flags:
3324 1 - Nonzero if this construct should be visible to
3325 `exit_something'.
3327 2 - Nonzero if this contour does not require a
3328 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3329 language-independent code should set this flag because they
3330 will not create corresponding BLOCK nodes. (There should be
3331 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3332 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3333 when expand_end_bindings is called.
3335 If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3336 optionally be supplied. If so, it becomes the NOTE_BLOCK for the
3337 note. */
3339 void
3340 expand_start_bindings_and_block (flags, block)
3341 int flags;
3342 tree block;
3344 struct nesting *thisblock = ALLOC_NESTING ();
3345 rtx note;
3346 int exit_flag = ((flags & 1) != 0);
3347 int block_flag = ((flags & 2) == 0);
3349 /* If a BLOCK is supplied, then the caller should be requesting a
3350 NOTE_INSN_BLOCK_BEG note. */
3351 if (!block_flag && block)
3352 abort ();
3354 /* Create a note to mark the beginning of the block. */
3355 if (block_flag)
3357 note = emit_note (NULL, NOTE_INSN_BLOCK_BEG);
3358 NOTE_BLOCK (note) = block;
3360 else
3361 note = emit_note (NULL, NOTE_INSN_DELETED);
3363 /* Make an entry on block_stack for the block we are entering. */
3365 thisblock->desc = BLOCK_NESTING;
3366 thisblock->next = block_stack;
3367 thisblock->all = nesting_stack;
3368 thisblock->depth = ++nesting_depth;
3369 thisblock->data.block.stack_level = 0;
3370 thisblock->data.block.cleanups = 0;
3371 thisblock->data.block.n_function_calls = 0;
3372 thisblock->data.block.exception_region = 0;
3373 thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3375 thisblock->data.block.conditional_code = 0;
3376 thisblock->data.block.last_unconditional_cleanup = note;
3377 /* When we insert instructions after the last unconditional cleanup,
3378 we don't adjust last_insn. That means that a later add_insn will
3379 clobber the instructions we've just added. The easiest way to
3380 fix this is to just insert another instruction here, so that the
3381 instructions inserted after the last unconditional cleanup are
3382 never the last instruction. */
3383 emit_note (NULL, NOTE_INSN_DELETED);
3385 if (block_stack
3386 && !(block_stack->data.block.cleanups == NULL_TREE
3387 && block_stack->data.block.outer_cleanups == NULL_TREE))
3388 thisblock->data.block.outer_cleanups
3389 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3390 block_stack->data.block.outer_cleanups);
3391 else
3392 thisblock->data.block.outer_cleanups = 0;
3393 thisblock->data.block.label_chain = 0;
3394 thisblock->data.block.innermost_stack_block = stack_block_stack;
3395 thisblock->data.block.first_insn = note;
3396 thisblock->data.block.block_start_count = ++current_block_start_count;
3397 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3398 block_stack = thisblock;
3399 nesting_stack = thisblock;
3401 /* Make a new level for allocating stack slots. */
3402 push_temp_slots ();
3405 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3406 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3407 expand_expr are made. After we end the region, we know that all
3408 space for all temporaries that were created by TARGET_EXPRs will be
3409 destroyed and their space freed for reuse. */
3411 void
3412 expand_start_target_temps ()
3414 /* This is so that even if the result is preserved, the space
3415 allocated will be freed, as we know that it is no longer in use. */
3416 push_temp_slots ();
3418 /* Start a new binding layer that will keep track of all cleanup
3419 actions to be performed. */
3420 expand_start_bindings (2);
3422 target_temp_slot_level = temp_slot_level;
3425 void
3426 expand_end_target_temps ()
3428 expand_end_bindings (NULL_TREE, 0, 0);
3430 /* This is so that even if the result is preserved, the space
3431 allocated will be freed, as we know that it is no longer in use. */
3432 pop_temp_slots ();
3435 /* Given a pointer to a BLOCK node return nonzero if (and only if) the node
3436 in question represents the outermost pair of curly braces (i.e. the "body
3437 block") of a function or method.
3439 For any BLOCK node representing a "body block" of a function or method, the
3440 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3441 represents the outermost (function) scope for the function or method (i.e.
3442 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
3443 *that* node in turn will point to the relevant FUNCTION_DECL node. */
3446 is_body_block (stmt)
3447 tree stmt;
3449 if (TREE_CODE (stmt) == BLOCK)
3451 tree parent = BLOCK_SUPERCONTEXT (stmt);
3453 if (parent && TREE_CODE (parent) == BLOCK)
3455 tree grandparent = BLOCK_SUPERCONTEXT (parent);
3457 if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
3458 return 1;
3462 return 0;
3465 /* True if we are currently emitting insns in an area of output code
3466 that is controlled by a conditional expression. This is used by
3467 the cleanup handling code to generate conditional cleanup actions. */
3470 conditional_context ()
3472 return block_stack && block_stack->data.block.conditional_code;
3475 /* Return an opaque pointer to the current nesting level, so frontend code
3476 can check its own sanity. */
3478 struct nesting *
3479 current_nesting_level ()
3481 return cfun ? block_stack : 0;
3484 /* Emit a handler label for a nonlocal goto handler.
3485 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3487 static rtx
3488 expand_nl_handler_label (slot, before_insn)
3489 rtx slot, before_insn;
3491 rtx insns;
3492 rtx handler_label = gen_label_rtx ();
3494 /* Don't let cleanup_cfg delete the handler. */
3495 LABEL_PRESERVE_P (handler_label) = 1;
3497 start_sequence ();
3498 emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3499 insns = get_insns ();
3500 end_sequence ();
3501 emit_insn_before (insns, before_insn);
3503 emit_label (handler_label);
3505 return handler_label;
3508 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3509 handler. */
3510 static void
3511 expand_nl_goto_receiver ()
3513 #ifdef HAVE_nonlocal_goto
3514 if (! HAVE_nonlocal_goto)
3515 #endif
3516 /* First adjust our frame pointer to its actual value. It was
3517 previously set to the start of the virtual area corresponding to
3518 the stacked variables when we branched here and now needs to be
3519 adjusted to the actual hardware fp value.
3521 Assignments are to virtual registers are converted by
3522 instantiate_virtual_regs into the corresponding assignment
3523 to the underlying register (fp in this case) that makes
3524 the original assignment true.
3525 So the following insn will actually be
3526 decrementing fp by STARTING_FRAME_OFFSET. */
3527 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3529 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3530 if (fixed_regs[ARG_POINTER_REGNUM])
3532 #ifdef ELIMINABLE_REGS
3533 /* If the argument pointer can be eliminated in favor of the
3534 frame pointer, we don't need to restore it. We assume here
3535 that if such an elimination is present, it can always be used.
3536 This is the case on all known machines; if we don't make this
3537 assumption, we do unnecessary saving on many machines. */
3538 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
3539 size_t i;
3541 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
3542 if (elim_regs[i].from == ARG_POINTER_REGNUM
3543 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3544 break;
3546 if (i == ARRAY_SIZE (elim_regs))
3547 #endif
3549 /* Now restore our arg pointer from the address at which it
3550 was saved in our stack frame. */
3551 emit_move_insn (virtual_incoming_args_rtx,
3552 copy_to_reg (get_arg_pointer_save_area (cfun)));
3555 #endif
3557 #ifdef HAVE_nonlocal_goto_receiver
3558 if (HAVE_nonlocal_goto_receiver)
3559 emit_insn (gen_nonlocal_goto_receiver ());
3560 #endif
3563 /* Make handlers for nonlocal gotos taking place in the function calls in
3564 block THISBLOCK. */
3566 static void
3567 expand_nl_goto_receivers (thisblock)
3568 struct nesting *thisblock;
3570 tree link;
3571 rtx afterward = gen_label_rtx ();
3572 rtx insns, slot;
3573 rtx label_list;
3574 int any_invalid;
3576 /* Record the handler address in the stack slot for that purpose,
3577 during this block, saving and restoring the outer value. */
3578 if (thisblock->next != 0)
3579 for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3581 rtx save_receiver = gen_reg_rtx (Pmode);
3582 emit_move_insn (XEXP (slot, 0), save_receiver);
3584 start_sequence ();
3585 emit_move_insn (save_receiver, XEXP (slot, 0));
3586 insns = get_insns ();
3587 end_sequence ();
3588 emit_insn_before (insns, thisblock->data.block.first_insn);
3591 /* Jump around the handlers; they run only when specially invoked. */
3592 emit_jump (afterward);
3594 /* Make a separate handler for each label. */
3595 link = nonlocal_labels;
3596 slot = nonlocal_goto_handler_slots;
3597 label_list = NULL_RTX;
3598 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3599 /* Skip any labels we shouldn't be able to jump to from here,
3600 we generate one special handler for all of them below which just calls
3601 abort. */
3602 if (! DECL_TOO_LATE (TREE_VALUE (link)))
3604 rtx lab;
3605 lab = expand_nl_handler_label (XEXP (slot, 0),
3606 thisblock->data.block.first_insn);
3607 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3609 expand_nl_goto_receiver ();
3611 /* Jump to the "real" nonlocal label. */
3612 expand_goto (TREE_VALUE (link));
3615 /* A second pass over all nonlocal labels; this time we handle those
3616 we should not be able to jump to at this point. */
3617 link = nonlocal_labels;
3618 slot = nonlocal_goto_handler_slots;
3619 any_invalid = 0;
3620 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3621 if (DECL_TOO_LATE (TREE_VALUE (link)))
3623 rtx lab;
3624 lab = expand_nl_handler_label (XEXP (slot, 0),
3625 thisblock->data.block.first_insn);
3626 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3627 any_invalid = 1;
3630 if (any_invalid)
3632 expand_nl_goto_receiver ();
3633 expand_builtin_trap ();
3636 nonlocal_goto_handler_labels = label_list;
3637 emit_label (afterward);
3640 /* Warn about any unused VARS (which may contain nodes other than
3641 VAR_DECLs, but such nodes are ignored). The nodes are connected
3642 via the TREE_CHAIN field. */
3644 void
3645 warn_about_unused_variables (vars)
3646 tree vars;
3648 tree decl;
3650 if (warn_unused_variable)
3651 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3652 if (TREE_CODE (decl) == VAR_DECL
3653 && ! TREE_USED (decl)
3654 && ! DECL_IN_SYSTEM_HEADER (decl)
3655 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3656 warning_with_decl (decl, "unused variable `%s'");
3659 /* Generate RTL code to terminate a binding contour.
3661 VARS is the chain of VAR_DECL nodes for the variables bound in this
3662 contour. There may actually be other nodes in this chain, but any
3663 nodes other than VAR_DECLS are ignored.
3665 MARK_ENDS is nonzero if we should put a note at the beginning
3666 and end of this binding contour.
3668 DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
3669 (That is true automatically if the contour has a saved stack level.) */
3671 void
3672 expand_end_bindings (vars, mark_ends, dont_jump_in)
3673 tree vars;
3674 int mark_ends;
3675 int dont_jump_in;
3677 struct nesting *thisblock = block_stack;
3679 /* If any of the variables in this scope were not used, warn the
3680 user. */
3681 warn_about_unused_variables (vars);
3683 if (thisblock->exit_label)
3685 do_pending_stack_adjust ();
3686 emit_label (thisblock->exit_label);
3689 /* If necessary, make handlers for nonlocal gotos taking
3690 place in the function calls in this block. */
3691 if (function_call_count != thisblock->data.block.n_function_calls
3692 && nonlocal_labels
3693 /* Make handler for outermost block
3694 if there were any nonlocal gotos to this function. */
3695 && (thisblock->next == 0 ? current_function_has_nonlocal_label
3696 /* Make handler for inner block if it has something
3697 special to do when you jump out of it. */
3698 : (thisblock->data.block.cleanups != 0
3699 || thisblock->data.block.stack_level != 0)))
3700 expand_nl_goto_receivers (thisblock);
3702 /* Don't allow jumping into a block that has a stack level.
3703 Cleanups are allowed, though. */
3704 if (dont_jump_in
3705 || thisblock->data.block.stack_level != 0)
3707 struct label_chain *chain;
3709 /* Any labels in this block are no longer valid to go to.
3710 Mark them to cause an error message. */
3711 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3713 DECL_TOO_LATE (chain->label) = 1;
3714 /* If any goto without a fixup came to this label,
3715 that must be an error, because gotos without fixups
3716 come from outside all saved stack-levels. */
3717 if (TREE_ADDRESSABLE (chain->label))
3718 error_with_decl (chain->label,
3719 "label `%s' used before containing binding contour");
3723 /* Restore stack level in effect before the block
3724 (only if variable-size objects allocated). */
3725 /* Perform any cleanups associated with the block. */
3727 if (thisblock->data.block.stack_level != 0
3728 || thisblock->data.block.cleanups != 0)
3730 int reachable;
3731 rtx insn;
3733 /* Don't let cleanups affect ({...}) constructs. */
3734 int old_expr_stmts_for_value = expr_stmts_for_value;
3735 rtx old_last_expr_value = last_expr_value;
3736 tree old_last_expr_type = last_expr_type;
3737 expr_stmts_for_value = 0;
3739 /* Only clean up here if this point can actually be reached. */
3740 insn = get_last_insn ();
3741 if (GET_CODE (insn) == NOTE)
3742 insn = prev_nonnote_insn (insn);
3743 reachable = (! insn || GET_CODE (insn) != BARRIER);
3745 /* Do the cleanups. */
3746 expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);
3747 if (reachable)
3748 do_pending_stack_adjust ();
3750 expr_stmts_for_value = old_expr_stmts_for_value;
3751 last_expr_value = old_last_expr_value;
3752 last_expr_type = old_last_expr_type;
3754 /* Restore the stack level. */
3756 if (reachable && thisblock->data.block.stack_level != 0)
3758 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3759 thisblock->data.block.stack_level, NULL_RTX);
3760 if (nonlocal_goto_handler_slots != 0)
3761 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3762 NULL_RTX);
3765 /* Any gotos out of this block must also do these things.
3766 Also report any gotos with fixups that came to labels in this
3767 level. */
3768 fixup_gotos (thisblock,
3769 thisblock->data.block.stack_level,
3770 thisblock->data.block.cleanups,
3771 thisblock->data.block.first_insn,
3772 dont_jump_in);
3775 /* Mark the beginning and end of the scope if requested.
3776 We do this now, after running cleanups on the variables
3777 just going out of scope, so they are in scope for their cleanups. */
3779 if (mark_ends)
3781 rtx note = emit_note (NULL, NOTE_INSN_BLOCK_END);
3782 NOTE_BLOCK (note) = NOTE_BLOCK (thisblock->data.block.first_insn);
3784 else
3785 /* Get rid of the beginning-mark if we don't make an end-mark. */
3786 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3788 /* Restore the temporary level of TARGET_EXPRs. */
3789 target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3791 /* Restore block_stack level for containing block. */
3793 stack_block_stack = thisblock->data.block.innermost_stack_block;
3794 POPSTACK (block_stack);
3796 /* Pop the stack slot nesting and free any slots at this level. */
3797 pop_temp_slots ();
3800 /* Generate code to save the stack pointer at the start of the current block
3801 and set up to restore it on exit. */
3803 void
3804 save_stack_pointer ()
3806 struct nesting *thisblock = block_stack;
3808 if (thisblock->data.block.stack_level == 0)
3810 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3811 &thisblock->data.block.stack_level,
3812 thisblock->data.block.first_insn);
3813 stack_block_stack = thisblock;
3817 /* Generate RTL for the automatic variable declaration DECL.
3818 (Other kinds of declarations are simply ignored if seen here.) */
3820 void
3821 expand_decl (decl)
3822 tree decl;
3824 tree type;
3826 type = TREE_TYPE (decl);
3828 /* For a CONST_DECL, set mode, alignment, and sizes from those of the
3829 type in case this node is used in a reference. */
3830 if (TREE_CODE (decl) == CONST_DECL)
3832 DECL_MODE (decl) = TYPE_MODE (type);
3833 DECL_ALIGN (decl) = TYPE_ALIGN (type);
3834 DECL_SIZE (decl) = TYPE_SIZE (type);
3835 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
3836 return;
3839 /* Otherwise, only automatic variables need any expansion done. Static and
3840 external variables, and external functions, will be handled by
3841 `assemble_variable' (called from finish_decl). TYPE_DECL requires
3842 nothing. PARM_DECLs are handled in `assign_parms'. */
3843 if (TREE_CODE (decl) != VAR_DECL)
3844 return;
3846 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3847 return;
3849 /* Create the RTL representation for the variable. */
3851 if (type == error_mark_node)
3852 SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
3854 else if (DECL_SIZE (decl) == 0)
3855 /* Variable with incomplete type. */
3857 rtx x;
3858 if (DECL_INITIAL (decl) == 0)
3859 /* Error message was already done; now avoid a crash. */
3860 x = gen_rtx_MEM (BLKmode, const0_rtx);
3861 else
3862 /* An initializer is going to decide the size of this array.
3863 Until we know the size, represent its address with a reg. */
3864 x = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
3866 set_mem_attributes (x, decl, 1);
3867 SET_DECL_RTL (decl, x);
3869 else if (DECL_MODE (decl) != BLKmode
3870 /* If -ffloat-store, don't put explicit float vars
3871 into regs. */
3872 && !(flag_float_store
3873 && TREE_CODE (type) == REAL_TYPE)
3874 && ! TREE_THIS_VOLATILE (decl)
3875 && (DECL_REGISTER (decl) || optimize))
3877 /* Automatic variable that can go in a register. */
3878 int unsignedp = TREE_UNSIGNED (type);
3879 enum machine_mode reg_mode
3880 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3882 SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
3884 if (GET_CODE (DECL_RTL (decl)) == REG)
3885 REGNO_DECL (REGNO (DECL_RTL (decl))) = decl;
3886 else if (GET_CODE (DECL_RTL (decl)) == CONCAT)
3888 REGNO_DECL (REGNO (XEXP (DECL_RTL (decl), 0))) = decl;
3889 REGNO_DECL (REGNO (XEXP (DECL_RTL (decl), 1))) = decl;
3892 mark_user_reg (DECL_RTL (decl));
3894 if (POINTER_TYPE_P (type))
3895 mark_reg_pointer (DECL_RTL (decl),
3896 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
3898 maybe_set_unchanging (DECL_RTL (decl), decl);
3900 /* If something wants our address, try to use ADDRESSOF. */
3901 if (TREE_ADDRESSABLE (decl))
3902 put_var_into_stack (decl);
3905 else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
3906 && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3907 && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
3908 STACK_CHECK_MAX_VAR_SIZE)))
3910 /* Variable of fixed size that goes on the stack. */
3911 rtx oldaddr = 0;
3912 rtx addr;
3913 rtx x;
3915 /* If we previously made RTL for this decl, it must be an array
3916 whose size was determined by the initializer.
3917 The old address was a register; set that register now
3918 to the proper address. */
3919 if (DECL_RTL_SET_P (decl))
3921 if (GET_CODE (DECL_RTL (decl)) != MEM
3922 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3923 abort ();
3924 oldaddr = XEXP (DECL_RTL (decl), 0);
3927 /* Set alignment we actually gave this decl. */
3928 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3929 : GET_MODE_BITSIZE (DECL_MODE (decl)));
3930 DECL_USER_ALIGN (decl) = 0;
3932 x = assign_temp (decl, 1, 1, 1);
3933 set_mem_attributes (x, decl, 1);
3934 SET_DECL_RTL (decl, x);
3936 if (oldaddr)
3938 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3939 if (addr != oldaddr)
3940 emit_move_insn (oldaddr, addr);
3943 else
3944 /* Dynamic-size object: must push space on the stack. */
3946 rtx address, size, x;
3948 /* Record the stack pointer on entry to block, if have
3949 not already done so. */
3950 do_pending_stack_adjust ();
3951 save_stack_pointer ();
3953 /* In function-at-a-time mode, variable_size doesn't expand this,
3954 so do it now. */
3955 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
3956 expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
3957 const0_rtx, VOIDmode, 0);
3959 /* Compute the variable's size, in bytes. */
3960 size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
3961 free_temp_slots ();
3963 /* Allocate space on the stack for the variable. Note that
3964 DECL_ALIGN says how the variable is to be aligned and we
3965 cannot use it to conclude anything about the alignment of
3966 the size. */
3967 address = allocate_dynamic_stack_space (size, NULL_RTX,
3968 TYPE_ALIGN (TREE_TYPE (decl)));
3970 /* Reference the variable indirect through that rtx. */
3971 x = gen_rtx_MEM (DECL_MODE (decl), address);
3972 set_mem_attributes (x, decl, 1);
3973 SET_DECL_RTL (decl, x);
3976 /* Indicate the alignment we actually gave this variable. */
3977 #ifdef STACK_BOUNDARY
3978 DECL_ALIGN (decl) = STACK_BOUNDARY;
3979 #else
3980 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
3981 #endif
3982 DECL_USER_ALIGN (decl) = 0;
3986 /* Emit code to perform the initialization of a declaration DECL. */
3988 void
3989 expand_decl_init (decl)
3990 tree decl;
3992 int was_used = TREE_USED (decl);
3994 /* If this is a CONST_DECL, we don't have to generate any code. Likewise
3995 for static decls. */
3996 if (TREE_CODE (decl) == CONST_DECL
3997 || TREE_STATIC (decl))
3998 return;
4000 /* Compute and store the initial value now. */
4002 if (DECL_INITIAL (decl) == error_mark_node)
4004 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
4006 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
4007 || code == POINTER_TYPE || code == REFERENCE_TYPE)
4008 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
4009 0, 0);
4010 emit_queue ();
4012 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
4014 emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
4015 expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
4016 emit_queue ();
4019 /* Don't let the initialization count as "using" the variable. */
4020 TREE_USED (decl) = was_used;
4022 /* Free any temporaries we made while initializing the decl. */
4023 preserve_temp_slots (NULL_RTX);
4024 free_temp_slots ();
4027 /* CLEANUP is an expression to be executed at exit from this binding contour;
4028 for example, in C++, it might call the destructor for this variable.
4030 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
4031 CLEANUP multiple times, and have the correct semantics. This
4032 happens in exception handling, for gotos, returns, breaks that
4033 leave the current scope.
4035 If CLEANUP is nonzero and DECL is zero, we record a cleanup
4036 that is not associated with any particular variable. */
4039 expand_decl_cleanup (decl, cleanup)
4040 tree decl, cleanup;
4042 struct nesting *thisblock;
4044 /* Error if we are not in any block. */
4045 if (cfun == 0 || block_stack == 0)
4046 return 0;
4048 thisblock = block_stack;
4050 /* Record the cleanup if there is one. */
4052 if (cleanup != 0)
4054 tree t;
4055 rtx seq;
4056 tree *cleanups = &thisblock->data.block.cleanups;
4057 int cond_context = conditional_context ();
4059 if (cond_context)
4061 rtx flag = gen_reg_rtx (word_mode);
4062 rtx set_flag_0;
4063 tree cond;
4065 start_sequence ();
4066 emit_move_insn (flag, const0_rtx);
4067 set_flag_0 = get_insns ();
4068 end_sequence ();
4070 thisblock->data.block.last_unconditional_cleanup
4071 = emit_insn_after (set_flag_0,
4072 thisblock->data.block.last_unconditional_cleanup);
4074 emit_move_insn (flag, const1_rtx);
4076 cond = build_decl (VAR_DECL, NULL_TREE,
4077 (*lang_hooks.types.type_for_mode) (word_mode, 1));
4078 SET_DECL_RTL (cond, flag);
4080 /* Conditionalize the cleanup. */
4081 cleanup = build (COND_EXPR, void_type_node,
4082 (*lang_hooks.truthvalue_conversion) (cond),
4083 cleanup, integer_zero_node);
4084 cleanup = fold (cleanup);
4086 cleanups = &thisblock->data.block.cleanups;
4089 cleanup = unsave_expr (cleanup);
4091 t = *cleanups = tree_cons (decl, cleanup, *cleanups);
4093 if (! cond_context)
4094 /* If this block has a cleanup, it belongs in stack_block_stack. */
4095 stack_block_stack = thisblock;
4097 if (cond_context)
4099 start_sequence ();
4102 if (! using_eh_for_cleanups_p)
4103 TREE_ADDRESSABLE (t) = 1;
4104 else
4105 expand_eh_region_start ();
4107 if (cond_context)
4109 seq = get_insns ();
4110 end_sequence ();
4111 if (seq)
4112 thisblock->data.block.last_unconditional_cleanup
4113 = emit_insn_after (seq,
4114 thisblock->data.block.last_unconditional_cleanup);
4116 else
4118 thisblock->data.block.last_unconditional_cleanup
4119 = get_last_insn ();
4120 /* When we insert instructions after the last unconditional cleanup,
4121 we don't adjust last_insn. That means that a later add_insn will
4122 clobber the instructions we've just added. The easiest way to
4123 fix this is to just insert another instruction here, so that the
4124 instructions inserted after the last unconditional cleanup are
4125 never the last instruction. */
4126 emit_note (NULL, NOTE_INSN_DELETED);
4129 return 1;
4132 /* Like expand_decl_cleanup, but maybe only run the cleanup if an exception
4133 is thrown. */
4136 expand_decl_cleanup_eh (decl, cleanup, eh_only)
4137 tree decl, cleanup;
4138 int eh_only;
4140 int ret = expand_decl_cleanup (decl, cleanup);
4141 if (cleanup && ret)
4143 tree node = block_stack->data.block.cleanups;
4144 CLEANUP_EH_ONLY (node) = eh_only;
4146 return ret;
4149 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4150 DECL_ELTS is the list of elements that belong to DECL's type.
4151 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4153 void
4154 expand_anon_union_decl (decl, cleanup, decl_elts)
4155 tree decl, cleanup, decl_elts;
4157 struct nesting *thisblock = cfun == 0 ? 0 : block_stack;
4158 rtx x;
4159 tree t;
4161 /* If any of the elements are addressable, so is the entire union. */
4162 for (t = decl_elts; t; t = TREE_CHAIN (t))
4163 if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4165 TREE_ADDRESSABLE (decl) = 1;
4166 break;
4169 expand_decl (decl);
4170 expand_decl_cleanup (decl, cleanup);
4171 x = DECL_RTL (decl);
4173 /* Go through the elements, assigning RTL to each. */
4174 for (t = decl_elts; t; t = TREE_CHAIN (t))
4176 tree decl_elt = TREE_VALUE (t);
4177 tree cleanup_elt = TREE_PURPOSE (t);
4178 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4180 /* If any of the elements are addressable, so is the entire
4181 union. */
4182 if (TREE_USED (decl_elt))
4183 TREE_USED (decl) = 1;
4185 /* Propagate the union's alignment to the elements. */
4186 DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4187 DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
4189 /* If the element has BLKmode and the union doesn't, the union is
4190 aligned such that the element doesn't need to have BLKmode, so
4191 change the element's mode to the appropriate one for its size. */
4192 if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4193 DECL_MODE (decl_elt) = mode
4194 = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
4196 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4197 instead create a new MEM rtx with the proper mode. */
4198 if (GET_CODE (x) == MEM)
4200 if (mode == GET_MODE (x))
4201 SET_DECL_RTL (decl_elt, x);
4202 else
4203 SET_DECL_RTL (decl_elt, adjust_address_nv (x, mode, 0));
4205 else if (GET_CODE (x) == REG)
4207 if (mode == GET_MODE (x))
4208 SET_DECL_RTL (decl_elt, x);
4209 else
4210 SET_DECL_RTL (decl_elt, gen_lowpart_SUBREG (mode, x));
4212 else
4213 abort ();
4215 /* Record the cleanup if there is one. */
4217 if (cleanup != 0)
4218 thisblock->data.block.cleanups
4219 = tree_cons (decl_elt, cleanup_elt,
4220 thisblock->data.block.cleanups);
4224 /* Expand a list of cleanups LIST.
4225 Elements may be expressions or may be nested lists.
4227 If DONT_DO is nonnull, then any list-element
4228 whose TREE_PURPOSE matches DONT_DO is omitted.
4229 This is sometimes used to avoid a cleanup associated with
4230 a value that is being returned out of the scope.
4232 If IN_FIXUP is nonzero, we are generating this cleanup for a fixup
4233 goto and handle protection regions specially in that case.
4235 If REACHABLE, we emit code, otherwise just inform the exception handling
4236 code about this finalization. */
4238 static void
4239 expand_cleanups (list, dont_do, in_fixup, reachable)
4240 tree list;
4241 tree dont_do;
4242 int in_fixup;
4243 int reachable;
4245 tree tail;
4246 for (tail = list; tail; tail = TREE_CHAIN (tail))
4247 if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4249 if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4250 expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4251 else
4253 if (! in_fixup && using_eh_for_cleanups_p)
4254 expand_eh_region_end_cleanup (TREE_VALUE (tail));
4256 if (reachable && !CLEANUP_EH_ONLY (tail))
4258 /* Cleanups may be run multiple times. For example,
4259 when exiting a binding contour, we expand the
4260 cleanups associated with that contour. When a goto
4261 within that binding contour has a target outside that
4262 contour, it will expand all cleanups from its scope to
4263 the target. Though the cleanups are expanded multiple
4264 times, the control paths are non-overlapping so the
4265 cleanups will not be executed twice. */
4267 /* We may need to protect from outer cleanups. */
4268 if (in_fixup && using_eh_for_cleanups_p)
4270 expand_eh_region_start ();
4272 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4274 expand_eh_region_end_fixup (TREE_VALUE (tail));
4276 else
4277 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4279 free_temp_slots ();
4285 /* Mark when the context we are emitting RTL for as a conditional
4286 context, so that any cleanup actions we register with
4287 expand_decl_init will be properly conditionalized when those
4288 cleanup actions are later performed. Must be called before any
4289 expression (tree) is expanded that is within a conditional context. */
4291 void
4292 start_cleanup_deferral ()
4294 /* block_stack can be NULL if we are inside the parameter list. It is
4295 OK to do nothing, because cleanups aren't possible here. */
4296 if (block_stack)
4297 ++block_stack->data.block.conditional_code;
4300 /* Mark the end of a conditional region of code. Because cleanup
4301 deferrals may be nested, we may still be in a conditional region
4302 after we end the currently deferred cleanups, only after we end all
4303 deferred cleanups, are we back in unconditional code. */
4305 void
4306 end_cleanup_deferral ()
4308 /* block_stack can be NULL if we are inside the parameter list. It is
4309 OK to do nothing, because cleanups aren't possible here. */
4310 if (block_stack)
4311 --block_stack->data.block.conditional_code;
4314 tree
4315 last_cleanup_this_contour ()
4317 if (block_stack == 0)
4318 return 0;
4320 return block_stack->data.block.cleanups;
4323 /* Return 1 if there are any pending cleanups at this point.
4324 If THIS_CONTOUR is nonzero, check the current contour as well.
4325 Otherwise, look only at the contours that enclose this one. */
4328 any_pending_cleanups (this_contour)
4329 int this_contour;
4331 struct nesting *block;
4333 if (cfun == NULL || cfun->stmt == NULL || block_stack == 0)
4334 return 0;
4336 if (this_contour && block_stack->data.block.cleanups != NULL)
4337 return 1;
4338 if (block_stack->data.block.cleanups == 0
4339 && block_stack->data.block.outer_cleanups == 0)
4340 return 0;
4342 for (block = block_stack->next; block; block = block->next)
4343 if (block->data.block.cleanups != 0)
4344 return 1;
4346 return 0;
4349 /* Enter a case (Pascal) or switch (C) statement.
4350 Push a block onto case_stack and nesting_stack
4351 to accumulate the case-labels that are seen
4352 and to record the labels generated for the statement.
4354 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4355 Otherwise, this construct is transparent for `exit_something'.
4357 EXPR is the index-expression to be dispatched on.
4358 TYPE is its nominal type. We could simply convert EXPR to this type,
4359 but instead we take short cuts. */
4361 void
4362 expand_start_case (exit_flag, expr, type, printname)
4363 int exit_flag;
4364 tree expr;
4365 tree type;
4366 const char *printname;
4368 struct nesting *thiscase = ALLOC_NESTING ();
4370 /* Make an entry on case_stack for the case we are entering. */
4372 thiscase->desc = CASE_NESTING;
4373 thiscase->next = case_stack;
4374 thiscase->all = nesting_stack;
4375 thiscase->depth = ++nesting_depth;
4376 thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4377 thiscase->data.case_stmt.case_list = 0;
4378 thiscase->data.case_stmt.index_expr = expr;
4379 thiscase->data.case_stmt.nominal_type = type;
4380 thiscase->data.case_stmt.default_label = 0;
4381 thiscase->data.case_stmt.printname = printname;
4382 thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4383 case_stack = thiscase;
4384 nesting_stack = thiscase;
4386 do_pending_stack_adjust ();
4388 /* Make sure case_stmt.start points to something that won't
4389 need any transformation before expand_end_case. */
4390 if (GET_CODE (get_last_insn ()) != NOTE)
4391 emit_note (NULL, NOTE_INSN_DELETED);
4393 thiscase->data.case_stmt.start = get_last_insn ();
4395 start_cleanup_deferral ();
4398 /* Start a "dummy case statement" within which case labels are invalid
4399 and are not connected to any larger real case statement.
4400 This can be used if you don't want to let a case statement jump
4401 into the middle of certain kinds of constructs. */
4403 void
4404 expand_start_case_dummy ()
4406 struct nesting *thiscase = ALLOC_NESTING ();
4408 /* Make an entry on case_stack for the dummy. */
4410 thiscase->desc = CASE_NESTING;
4411 thiscase->next = case_stack;
4412 thiscase->all = nesting_stack;
4413 thiscase->depth = ++nesting_depth;
4414 thiscase->exit_label = 0;
4415 thiscase->data.case_stmt.case_list = 0;
4416 thiscase->data.case_stmt.start = 0;
4417 thiscase->data.case_stmt.nominal_type = 0;
4418 thiscase->data.case_stmt.default_label = 0;
4419 case_stack = thiscase;
4420 nesting_stack = thiscase;
4421 start_cleanup_deferral ();
4424 static void
4425 check_seenlabel ()
4427 /* If this is the first label, warn if any insns have been emitted. */
4428 if (case_stack->data.case_stmt.line_number_status >= 0)
4430 rtx insn;
4432 restore_line_number_status
4433 (case_stack->data.case_stmt.line_number_status);
4434 case_stack->data.case_stmt.line_number_status = -1;
4436 for (insn = case_stack->data.case_stmt.start;
4437 insn;
4438 insn = NEXT_INSN (insn))
4440 if (GET_CODE (insn) == CODE_LABEL)
4441 break;
4442 if (GET_CODE (insn) != NOTE
4443 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4446 insn = PREV_INSN (insn);
4447 while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4449 /* If insn is zero, then there must have been a syntax error. */
4450 if (insn)
4451 warning_with_file_and_line (NOTE_SOURCE_FILE (insn),
4452 NOTE_LINE_NUMBER (insn),
4453 "unreachable code at beginning of %s",
4454 case_stack->data.case_stmt.printname);
4455 break;
4461 /* Accumulate one case or default label inside a case or switch statement.
4462 VALUE is the value of the case (a null pointer, for a default label).
4463 The function CONVERTER, when applied to arguments T and V,
4464 converts the value V to the type T.
4466 If not currently inside a case or switch statement, return 1 and do
4467 nothing. The caller will print a language-specific error message.
4468 If VALUE is a duplicate or overlaps, return 2 and do nothing
4469 except store the (first) duplicate node in *DUPLICATE.
4470 If VALUE is out of range, return 3 and do nothing.
4471 If we are jumping into the scope of a cleanup or var-sized array, return 5.
4472 Return 0 on success.
4474 Extended to handle range statements. */
4477 pushcase (value, converter, label, duplicate)
4478 tree value;
4479 tree (*converter) PARAMS ((tree, tree));
4480 tree label;
4481 tree *duplicate;
4483 tree index_type;
4484 tree nominal_type;
4486 /* Fail if not inside a real case statement. */
4487 if (! (case_stack && case_stack->data.case_stmt.start))
4488 return 1;
4490 if (stack_block_stack
4491 && stack_block_stack->depth > case_stack->depth)
4492 return 5;
4494 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4495 nominal_type = case_stack->data.case_stmt.nominal_type;
4497 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4498 if (index_type == error_mark_node)
4499 return 0;
4501 /* Convert VALUE to the type in which the comparisons are nominally done. */
4502 if (value != 0)
4503 value = (*converter) (nominal_type, value);
4505 check_seenlabel ();
4507 /* Fail if this value is out of range for the actual type of the index
4508 (which may be narrower than NOMINAL_TYPE). */
4509 if (value != 0
4510 && (TREE_CONSTANT_OVERFLOW (value)
4511 || ! int_fits_type_p (value, index_type)))
4512 return 3;
4514 return add_case_node (value, value, label, duplicate);
4517 /* Like pushcase but this case applies to all values between VALUE1 and
4518 VALUE2 (inclusive). If VALUE1 is NULL, the range starts at the lowest
4519 value of the index type and ends at VALUE2. If VALUE2 is NULL, the range
4520 starts at VALUE1 and ends at the highest value of the index type.
4521 If both are NULL, this case applies to all values.
4523 The return value is the same as that of pushcase but there is one
4524 additional error code: 4 means the specified range was empty. */
4527 pushcase_range (value1, value2, converter, label, duplicate)
4528 tree value1, value2;
4529 tree (*converter) PARAMS ((tree, tree));
4530 tree label;
4531 tree *duplicate;
4533 tree index_type;
4534 tree nominal_type;
4536 /* Fail if not inside a real case statement. */
4537 if (! (case_stack && case_stack->data.case_stmt.start))
4538 return 1;
4540 if (stack_block_stack
4541 && stack_block_stack->depth > case_stack->depth)
4542 return 5;
4544 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4545 nominal_type = case_stack->data.case_stmt.nominal_type;
4547 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4548 if (index_type == error_mark_node)
4549 return 0;
4551 check_seenlabel ();
4553 /* Convert VALUEs to type in which the comparisons are nominally done
4554 and replace any unspecified value with the corresponding bound. */
4555 if (value1 == 0)
4556 value1 = TYPE_MIN_VALUE (index_type);
4557 if (value2 == 0)
4558 value2 = TYPE_MAX_VALUE (index_type);
4560 /* Fail if the range is empty. Do this before any conversion since
4561 we want to allow out-of-range empty ranges. */
4562 if (value2 != 0 && tree_int_cst_lt (value2, value1))
4563 return 4;
4565 /* If the max was unbounded, use the max of the nominal_type we are
4566 converting to. Do this after the < check above to suppress false
4567 positives. */
4568 if (value2 == 0)
4569 value2 = TYPE_MAX_VALUE (nominal_type);
4571 value1 = (*converter) (nominal_type, value1);
4572 value2 = (*converter) (nominal_type, value2);
4574 /* Fail if these values are out of range. */
4575 if (TREE_CONSTANT_OVERFLOW (value1)
4576 || ! int_fits_type_p (value1, index_type))
4577 return 3;
4579 if (TREE_CONSTANT_OVERFLOW (value2)
4580 || ! int_fits_type_p (value2, index_type))
4581 return 3;
4583 return add_case_node (value1, value2, label, duplicate);
4586 /* Do the actual insertion of a case label for pushcase and pushcase_range
4587 into case_stack->data.case_stmt.case_list. Use an AVL tree to avoid
4588 slowdown for large switch statements. */
4591 add_case_node (low, high, label, duplicate)
4592 tree low, high;
4593 tree label;
4594 tree *duplicate;
4596 struct case_node *p, **q, *r;
4598 /* If there's no HIGH value, then this is not a case range; it's
4599 just a simple case label. But that's just a degenerate case
4600 range. */
4601 if (!high)
4602 high = low;
4604 /* Handle default labels specially. */
4605 if (!high && !low)
4607 if (case_stack->data.case_stmt.default_label != 0)
4609 *duplicate = case_stack->data.case_stmt.default_label;
4610 return 2;
4612 case_stack->data.case_stmt.default_label = label;
4613 expand_label (label);
4614 return 0;
4617 q = &case_stack->data.case_stmt.case_list;
4618 p = *q;
4620 while ((r = *q))
4622 p = r;
4624 /* Keep going past elements distinctly greater than HIGH. */
4625 if (tree_int_cst_lt (high, p->low))
4626 q = &p->left;
4628 /* or distinctly less than LOW. */
4629 else if (tree_int_cst_lt (p->high, low))
4630 q = &p->right;
4632 else
4634 /* We have an overlap; this is an error. */
4635 *duplicate = p->code_label;
4636 return 2;
4640 /* Add this label to the chain, and succeed. */
4642 r = (struct case_node *) ggc_alloc (sizeof (struct case_node));
4643 r->low = low;
4645 /* If the bounds are equal, turn this into the one-value case. */
4646 if (tree_int_cst_equal (low, high))
4647 r->high = r->low;
4648 else
4649 r->high = high;
4651 r->code_label = label;
4652 expand_label (label);
4654 *q = r;
4655 r->parent = p;
4656 r->left = 0;
4657 r->right = 0;
4658 r->balance = 0;
4660 while (p)
4662 struct case_node *s;
4664 if (r == p->left)
4666 int b;
4668 if (! (b = p->balance))
4669 /* Growth propagation from left side. */
4670 p->balance = -1;
4671 else if (b < 0)
4673 if (r->balance < 0)
4675 /* R-Rotation */
4676 if ((p->left = s = r->right))
4677 s->parent = p;
4679 r->right = p;
4680 p->balance = 0;
4681 r->balance = 0;
4682 s = p->parent;
4683 p->parent = r;
4685 if ((r->parent = s))
4687 if (s->left == p)
4688 s->left = r;
4689 else
4690 s->right = r;
4692 else
4693 case_stack->data.case_stmt.case_list = r;
4695 else
4696 /* r->balance == +1 */
4698 /* LR-Rotation */
4700 int b2;
4701 struct case_node *t = r->right;
4703 if ((p->left = s = t->right))
4704 s->parent = p;
4706 t->right = p;
4707 if ((r->right = s = t->left))
4708 s->parent = r;
4710 t->left = r;
4711 b = t->balance;
4712 b2 = b < 0;
4713 p->balance = b2;
4714 b2 = -b2 - b;
4715 r->balance = b2;
4716 t->balance = 0;
4717 s = p->parent;
4718 p->parent = t;
4719 r->parent = t;
4721 if ((t->parent = s))
4723 if (s->left == p)
4724 s->left = t;
4725 else
4726 s->right = t;
4728 else
4729 case_stack->data.case_stmt.case_list = t;
4731 break;
4734 else
4736 /* p->balance == +1; growth of left side balances the node. */
4737 p->balance = 0;
4738 break;
4741 else
4742 /* r == p->right */
4744 int b;
4746 if (! (b = p->balance))
4747 /* Growth propagation from right side. */
4748 p->balance++;
4749 else if (b > 0)
4751 if (r->balance > 0)
4753 /* L-Rotation */
4755 if ((p->right = s = r->left))
4756 s->parent = p;
4758 r->left = p;
4759 p->balance = 0;
4760 r->balance = 0;
4761 s = p->parent;
4762 p->parent = r;
4763 if ((r->parent = s))
4765 if (s->left == p)
4766 s->left = r;
4767 else
4768 s->right = r;
4771 else
4772 case_stack->data.case_stmt.case_list = r;
4775 else
4776 /* r->balance == -1 */
4778 /* RL-Rotation */
4779 int b2;
4780 struct case_node *t = r->left;
4782 if ((p->right = s = t->left))
4783 s->parent = p;
4785 t->left = p;
4787 if ((r->left = s = t->right))
4788 s->parent = r;
4790 t->right = r;
4791 b = t->balance;
4792 b2 = b < 0;
4793 r->balance = b2;
4794 b2 = -b2 - b;
4795 p->balance = b2;
4796 t->balance = 0;
4797 s = p->parent;
4798 p->parent = t;
4799 r->parent = t;
4801 if ((t->parent = s))
4803 if (s->left == p)
4804 s->left = t;
4805 else
4806 s->right = t;
4809 else
4810 case_stack->data.case_stmt.case_list = t;
4812 break;
4814 else
4816 /* p->balance == -1; growth of right side balances the node. */
4817 p->balance = 0;
4818 break;
4822 r = p;
4823 p = p->parent;
4826 return 0;
4829 /* Returns the number of possible values of TYPE.
4830 Returns -1 if the number is unknown, variable, or if the number does not
4831 fit in a HOST_WIDE_INT.
4832 Sets *SPARSENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4833 do not increase monotonically (there may be duplicates);
4834 to 1 if the values increase monotonically, but not always by 1;
4835 otherwise sets it to 0. */
4837 HOST_WIDE_INT
4838 all_cases_count (type, sparseness)
4839 tree type;
4840 int *sparseness;
4842 tree t;
4843 HOST_WIDE_INT count, minval, lastval;
4845 *sparseness = 0;
4847 switch (TREE_CODE (type))
4849 case BOOLEAN_TYPE:
4850 count = 2;
4851 break;
4853 case CHAR_TYPE:
4854 count = 1 << BITS_PER_UNIT;
4855 break;
4857 default:
4858 case INTEGER_TYPE:
4859 if (TYPE_MAX_VALUE (type) != 0
4860 && 0 != (t = fold (build (MINUS_EXPR, type, TYPE_MAX_VALUE (type),
4861 TYPE_MIN_VALUE (type))))
4862 && 0 != (t = fold (build (PLUS_EXPR, type, t,
4863 convert (type, integer_zero_node))))
4864 && host_integerp (t, 1))
4865 count = tree_low_cst (t, 1);
4866 else
4867 return -1;
4868 break;
4870 case ENUMERAL_TYPE:
4871 /* Don't waste time with enumeral types with huge values. */
4872 if (! host_integerp (TYPE_MIN_VALUE (type), 0)
4873 || TYPE_MAX_VALUE (type) == 0
4874 || ! host_integerp (TYPE_MAX_VALUE (type), 0))
4875 return -1;
4877 lastval = minval = tree_low_cst (TYPE_MIN_VALUE (type), 0);
4878 count = 0;
4880 for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
4882 HOST_WIDE_INT thisval = tree_low_cst (TREE_VALUE (t), 0);
4884 if (*sparseness == 2 || thisval <= lastval)
4885 *sparseness = 2;
4886 else if (thisval != minval + count)
4887 *sparseness = 1;
4889 lastval = thisval;
4890 count++;
4894 return count;
4897 #define BITARRAY_TEST(ARRAY, INDEX) \
4898 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4899 & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4900 #define BITARRAY_SET(ARRAY, INDEX) \
4901 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4902 |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4904 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4905 with the case values we have seen, assuming the case expression
4906 has the given TYPE.
4907 SPARSENESS is as determined by all_cases_count.
4909 The time needed is proportional to COUNT, unless
4910 SPARSENESS is 2, in which case quadratic time is needed. */
4912 void
4913 mark_seen_cases (type, cases_seen, count, sparseness)
4914 tree type;
4915 unsigned char *cases_seen;
4916 HOST_WIDE_INT count;
4917 int sparseness;
4919 tree next_node_to_try = NULL_TREE;
4920 HOST_WIDE_INT next_node_offset = 0;
4922 struct case_node *n, *root = case_stack->data.case_stmt.case_list;
4923 tree val = make_node (INTEGER_CST);
4925 TREE_TYPE (val) = type;
4926 if (! root)
4927 /* Do nothing. */
4929 else if (sparseness == 2)
4931 tree t;
4932 unsigned HOST_WIDE_INT xlo;
4934 /* This less efficient loop is only needed to handle
4935 duplicate case values (multiple enum constants
4936 with the same value). */
4937 TREE_TYPE (val) = TREE_TYPE (root->low);
4938 for (t = TYPE_VALUES (type), xlo = 0; t != NULL_TREE;
4939 t = TREE_CHAIN (t), xlo++)
4941 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
4942 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
4943 n = root;
4946 /* Keep going past elements distinctly greater than VAL. */
4947 if (tree_int_cst_lt (val, n->low))
4948 n = n->left;
4950 /* or distinctly less than VAL. */
4951 else if (tree_int_cst_lt (n->high, val))
4952 n = n->right;
4954 else
4956 /* We have found a matching range. */
4957 BITARRAY_SET (cases_seen, xlo);
4958 break;
4961 while (n);
4964 else
4966 if (root->left)
4967 case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
4969 for (n = root; n; n = n->right)
4971 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
4972 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
4973 while (! tree_int_cst_lt (n->high, val))
4975 /* Calculate (into xlo) the "offset" of the integer (val).
4976 The element with lowest value has offset 0, the next smallest
4977 element has offset 1, etc. */
4979 unsigned HOST_WIDE_INT xlo;
4980 HOST_WIDE_INT xhi;
4981 tree t;
4983 if (sparseness && TYPE_VALUES (type) != NULL_TREE)
4985 /* The TYPE_VALUES will be in increasing order, so
4986 starting searching where we last ended. */
4987 t = next_node_to_try;
4988 xlo = next_node_offset;
4989 xhi = 0;
4990 for (;;)
4992 if (t == NULL_TREE)
4994 t = TYPE_VALUES (type);
4995 xlo = 0;
4997 if (tree_int_cst_equal (val, TREE_VALUE (t)))
4999 next_node_to_try = TREE_CHAIN (t);
5000 next_node_offset = xlo + 1;
5001 break;
5003 xlo++;
5004 t = TREE_CHAIN (t);
5005 if (t == next_node_to_try)
5007 xlo = -1;
5008 break;
5012 else
5014 t = TYPE_MIN_VALUE (type);
5015 if (t)
5016 neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
5017 &xlo, &xhi);
5018 else
5019 xlo = xhi = 0;
5020 add_double (xlo, xhi,
5021 TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5022 &xlo, &xhi);
5025 if (xhi == 0 && xlo < (unsigned HOST_WIDE_INT) count)
5026 BITARRAY_SET (cases_seen, xlo);
5028 add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5029 1, 0,
5030 &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5036 /* Given a switch statement with an expression that is an enumeration
5037 type, warn if any of the enumeration type's literals are not
5038 covered by the case expressions of the switch. Also, warn if there
5039 are any extra switch cases that are *not* elements of the
5040 enumerated type.
5042 Historical note:
5044 At one stage this function would: ``If all enumeration literals
5045 were covered by the case expressions, turn one of the expressions
5046 into the default expression since it should not be possible to fall
5047 through such a switch.''
5049 That code has since been removed as: ``This optimization is
5050 disabled because it causes valid programs to fail. ANSI C does not
5051 guarantee that an expression with enum type will have a value that
5052 is the same as one of the enumeration literals.'' */
5054 void
5055 check_for_full_enumeration_handling (type)
5056 tree type;
5058 struct case_node *n;
5059 tree chain;
5061 /* True iff the selector type is a numbered set mode. */
5062 int sparseness = 0;
5064 /* The number of possible selector values. */
5065 HOST_WIDE_INT size;
5067 /* For each possible selector value. a one iff it has been matched
5068 by a case value alternative. */
5069 unsigned char *cases_seen;
5071 /* The allocated size of cases_seen, in chars. */
5072 HOST_WIDE_INT bytes_needed;
5074 size = all_cases_count (type, &sparseness);
5075 bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5077 if (size > 0 && size < 600000
5078 /* We deliberately use calloc here, not cmalloc, so that we can suppress
5079 this optimization if we don't have enough memory rather than
5080 aborting, as xmalloc would do. */
5081 && (cases_seen =
5082 (unsigned char *) really_call_calloc (bytes_needed, 1)) != NULL)
5084 HOST_WIDE_INT i;
5085 tree v = TYPE_VALUES (type);
5087 /* The time complexity of this code is normally O(N), where
5088 N being the number of members in the enumerated type.
5089 However, if type is an ENUMERAL_TYPE whose values do not
5090 increase monotonically, O(N*log(N)) time may be needed. */
5092 mark_seen_cases (type, cases_seen, size, sparseness);
5094 for (i = 0; v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5095 if (BITARRAY_TEST (cases_seen, i) == 0)
5096 warning ("enumeration value `%s' not handled in switch",
5097 IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5099 free (cases_seen);
5102 /* Now we go the other way around; we warn if there are case
5103 expressions that don't correspond to enumerators. This can
5104 occur since C and C++ don't enforce type-checking of
5105 assignments to enumeration variables. */
5107 if (case_stack->data.case_stmt.case_list
5108 && case_stack->data.case_stmt.case_list->left)
5109 case_stack->data.case_stmt.case_list
5110 = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5111 for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5113 for (chain = TYPE_VALUES (type);
5114 chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5115 chain = TREE_CHAIN (chain))
5118 if (!chain)
5120 if (TYPE_NAME (type) == 0)
5121 warning ("case value `%ld' not in enumerated type",
5122 (long) TREE_INT_CST_LOW (n->low));
5123 else
5124 warning ("case value `%ld' not in enumerated type `%s'",
5125 (long) TREE_INT_CST_LOW (n->low),
5126 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5127 == IDENTIFIER_NODE)
5128 ? TYPE_NAME (type)
5129 : DECL_NAME (TYPE_NAME (type))));
5131 if (!tree_int_cst_equal (n->low, n->high))
5133 for (chain = TYPE_VALUES (type);
5134 chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5135 chain = TREE_CHAIN (chain))
5138 if (!chain)
5140 if (TYPE_NAME (type) == 0)
5141 warning ("case value `%ld' not in enumerated type",
5142 (long) TREE_INT_CST_LOW (n->high));
5143 else
5144 warning ("case value `%ld' not in enumerated type `%s'",
5145 (long) TREE_INT_CST_LOW (n->high),
5146 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5147 == IDENTIFIER_NODE)
5148 ? TYPE_NAME (type)
5149 : DECL_NAME (TYPE_NAME (type))));
5157 /* Terminate a case (Pascal) or switch (C) statement
5158 in which ORIG_INDEX is the expression to be tested.
5159 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
5160 type as given in the source before any compiler conversions.
5161 Generate the code to test it and jump to the right place. */
5163 void
5164 expand_end_case_type (orig_index, orig_type)
5165 tree orig_index, orig_type;
5167 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
5168 rtx default_label = 0;
5169 struct case_node *n;
5170 unsigned int count;
5171 rtx index;
5172 rtx table_label;
5173 int ncases;
5174 rtx *labelvec;
5175 int i;
5176 rtx before_case, end;
5177 struct nesting *thiscase = case_stack;
5178 tree index_expr, index_type;
5179 int unsignedp;
5181 /* Don't crash due to previous errors. */
5182 if (thiscase == NULL)
5183 return;
5185 table_label = gen_label_rtx ();
5186 index_expr = thiscase->data.case_stmt.index_expr;
5187 index_type = TREE_TYPE (index_expr);
5188 unsignedp = TREE_UNSIGNED (index_type);
5189 if (orig_type == NULL)
5190 orig_type = TREE_TYPE (orig_index);
5192 do_pending_stack_adjust ();
5194 /* This might get a spurious warning in the presence of a syntax error;
5195 it could be fixed by moving the call to check_seenlabel after the
5196 check for error_mark_node, and copying the code of check_seenlabel that
5197 deals with case_stack->data.case_stmt.line_number_status /
5198 restore_line_number_status in front of the call to end_cleanup_deferral;
5199 However, this might miss some useful warnings in the presence of
5200 non-syntax errors. */
5201 check_seenlabel ();
5203 /* An ERROR_MARK occurs for various reasons including invalid data type. */
5204 if (index_type != error_mark_node)
5206 /* If the switch expression was an enumerated type, check that
5207 exactly all enumeration literals are covered by the cases.
5208 The check is made when -Wswitch was specified and there is no
5209 default case, or when -Wswitch-enum was specified. */
5210 if (((warn_switch && !thiscase->data.case_stmt.default_label)
5211 || warn_switch_enum)
5212 && TREE_CODE (orig_type) == ENUMERAL_TYPE
5213 && TREE_CODE (index_expr) != INTEGER_CST)
5214 check_for_full_enumeration_handling (orig_type);
5216 if (warn_switch_default && !thiscase->data.case_stmt.default_label)
5217 warning ("switch missing default case");
5219 /* If we don't have a default-label, create one here,
5220 after the body of the switch. */
5221 if (thiscase->data.case_stmt.default_label == 0)
5223 thiscase->data.case_stmt.default_label
5224 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5225 expand_label (thiscase->data.case_stmt.default_label);
5227 default_label = label_rtx (thiscase->data.case_stmt.default_label);
5229 before_case = get_last_insn ();
5231 if (thiscase->data.case_stmt.case_list
5232 && thiscase->data.case_stmt.case_list->left)
5233 thiscase->data.case_stmt.case_list
5234 = case_tree2list (thiscase->data.case_stmt.case_list, 0);
5236 /* Simplify the case-list before we count it. */
5237 group_case_nodes (thiscase->data.case_stmt.case_list);
5239 /* Get upper and lower bounds of case values.
5240 Also convert all the case values to the index expr's data type. */
5242 count = 0;
5243 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5245 /* Check low and high label values are integers. */
5246 if (TREE_CODE (n->low) != INTEGER_CST)
5247 abort ();
5248 if (TREE_CODE (n->high) != INTEGER_CST)
5249 abort ();
5251 n->low = convert (index_type, n->low);
5252 n->high = convert (index_type, n->high);
5254 /* Count the elements and track the largest and smallest
5255 of them (treating them as signed even if they are not). */
5256 if (count++ == 0)
5258 minval = n->low;
5259 maxval = n->high;
5261 else
5263 if (INT_CST_LT (n->low, minval))
5264 minval = n->low;
5265 if (INT_CST_LT (maxval, n->high))
5266 maxval = n->high;
5268 /* A range counts double, since it requires two compares. */
5269 if (! tree_int_cst_equal (n->low, n->high))
5270 count++;
5273 /* Compute span of values. */
5274 if (count != 0)
5275 range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5277 end_cleanup_deferral ();
5279 if (count == 0)
5281 expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5282 emit_queue ();
5283 emit_jump (default_label);
5286 /* If range of values is much bigger than number of values,
5287 make a sequence of conditional branches instead of a dispatch.
5288 If the switch-index is a constant, do it this way
5289 because we can optimize it. */
5291 else if (count < case_values_threshold ()
5292 || compare_tree_int (range, 10 * count) > 0
5293 /* RANGE may be signed, and really large ranges will show up
5294 as negative numbers. */
5295 || compare_tree_int (range, 0) < 0
5296 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5297 || flag_pic
5298 #endif
5299 || TREE_CODE (index_expr) == INTEGER_CST
5300 || (TREE_CODE (index_expr) == COMPOUND_EXPR
5301 && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
5303 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5305 /* If the index is a short or char that we do not have
5306 an insn to handle comparisons directly, convert it to
5307 a full integer now, rather than letting each comparison
5308 generate the conversion. */
5310 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5311 && ! have_insn_for (COMPARE, GET_MODE (index)))
5313 enum machine_mode wider_mode;
5314 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5315 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5316 if (have_insn_for (COMPARE, wider_mode))
5318 index = convert_to_mode (wider_mode, index, unsignedp);
5319 break;
5323 emit_queue ();
5324 do_pending_stack_adjust ();
5326 index = protect_from_queue (index, 0);
5327 if (GET_CODE (index) == MEM)
5328 index = copy_to_reg (index);
5329 if (GET_CODE (index) == CONST_INT
5330 || TREE_CODE (index_expr) == INTEGER_CST)
5332 /* Make a tree node with the proper constant value
5333 if we don't already have one. */
5334 if (TREE_CODE (index_expr) != INTEGER_CST)
5336 index_expr
5337 = build_int_2 (INTVAL (index),
5338 unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5339 index_expr = convert (index_type, index_expr);
5342 /* For constant index expressions we need only
5343 issue an unconditional branch to the appropriate
5344 target code. The job of removing any unreachable
5345 code is left to the optimisation phase if the
5346 "-O" option is specified. */
5347 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5348 if (! tree_int_cst_lt (index_expr, n->low)
5349 && ! tree_int_cst_lt (n->high, index_expr))
5350 break;
5352 if (n)
5353 emit_jump (label_rtx (n->code_label));
5354 else
5355 emit_jump (default_label);
5357 else
5359 /* If the index expression is not constant we generate
5360 a binary decision tree to select the appropriate
5361 target code. This is done as follows:
5363 The list of cases is rearranged into a binary tree,
5364 nearly optimal assuming equal probability for each case.
5366 The tree is transformed into RTL, eliminating
5367 redundant test conditions at the same time.
5369 If program flow could reach the end of the
5370 decision tree an unconditional jump to the
5371 default code is emitted. */
5373 use_cost_table
5374 = (TREE_CODE (orig_type) != ENUMERAL_TYPE
5375 && estimate_case_costs (thiscase->data.case_stmt.case_list));
5376 balance_case_nodes (&thiscase->data.case_stmt.case_list, NULL);
5377 emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5378 default_label, index_type);
5379 emit_jump_if_reachable (default_label);
5382 else
5384 if (! try_casesi (index_type, index_expr, minval, range,
5385 table_label, default_label))
5387 index_type = thiscase->data.case_stmt.nominal_type;
5389 /* Index jumptables from zero for suitable values of
5390 minval to avoid a subtraction. */
5391 if (! optimize_size
5392 && compare_tree_int (minval, 0) > 0
5393 && compare_tree_int (minval, 3) < 0)
5395 minval = integer_zero_node;
5396 range = maxval;
5399 if (! try_tablejump (index_type, index_expr, minval, range,
5400 table_label, default_label))
5401 abort ();
5404 /* Get table of labels to jump to, in order of case index. */
5406 ncases = tree_low_cst (range, 0) + 1;
5407 labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5408 memset ((char *) labelvec, 0, ncases * sizeof (rtx));
5410 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5412 /* Compute the low and high bounds relative to the minimum
5413 value since that should fit in a HOST_WIDE_INT while the
5414 actual values may not. */
5415 HOST_WIDE_INT i_low
5416 = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5417 n->low, minval)), 1);
5418 HOST_WIDE_INT i_high
5419 = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5420 n->high, minval)), 1);
5421 HOST_WIDE_INT i;
5423 for (i = i_low; i <= i_high; i ++)
5424 labelvec[i]
5425 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5428 /* Fill in the gaps with the default. */
5429 for (i = 0; i < ncases; i++)
5430 if (labelvec[i] == 0)
5431 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5433 /* Output the table */
5434 emit_label (table_label);
5436 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5437 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5438 gen_rtx_LABEL_REF (Pmode, table_label),
5439 gen_rtvec_v (ncases, labelvec),
5440 const0_rtx, const0_rtx));
5441 else
5442 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5443 gen_rtvec_v (ncases, labelvec)));
5445 /* If the case insn drops through the table,
5446 after the table we must jump to the default-label.
5447 Otherwise record no drop-through after the table. */
5448 #ifdef CASE_DROPS_THROUGH
5449 emit_jump (default_label);
5450 #else
5451 emit_barrier ();
5452 #endif
5455 before_case = NEXT_INSN (before_case);
5456 end = get_last_insn ();
5457 if (squeeze_notes (&before_case, &end))
5458 abort ();
5459 reorder_insns (before_case, end,
5460 thiscase->data.case_stmt.start);
5462 else
5463 end_cleanup_deferral ();
5465 if (thiscase->exit_label)
5466 emit_label (thiscase->exit_label);
5468 POPSTACK (case_stack);
5470 free_temp_slots ();
5473 /* Convert the tree NODE into a list linked by the right field, with the left
5474 field zeroed. RIGHT is used for recursion; it is a list to be placed
5475 rightmost in the resulting list. */
5477 static struct case_node *
5478 case_tree2list (node, right)
5479 struct case_node *node, *right;
5481 struct case_node *left;
5483 if (node->right)
5484 right = case_tree2list (node->right, right);
5486 node->right = right;
5487 if ((left = node->left))
5489 node->left = 0;
5490 return case_tree2list (left, node);
5493 return node;
5496 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
5498 static void
5499 do_jump_if_equal (op1, op2, label, unsignedp)
5500 rtx op1, op2, label;
5501 int unsignedp;
5503 if (GET_CODE (op1) == CONST_INT && GET_CODE (op2) == CONST_INT)
5505 if (INTVAL (op1) == INTVAL (op2))
5506 emit_jump (label);
5508 else
5509 emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX,
5510 (GET_MODE (op1) == VOIDmode
5511 ? GET_MODE (op2) : GET_MODE (op1)),
5512 unsignedp, label);
5515 /* Not all case values are encountered equally. This function
5516 uses a heuristic to weight case labels, in cases where that
5517 looks like a reasonable thing to do.
5519 Right now, all we try to guess is text, and we establish the
5520 following weights:
5522 chars above space: 16
5523 digits: 16
5524 default: 12
5525 space, punct: 8
5526 tab: 4
5527 newline: 2
5528 other "\" chars: 1
5529 remaining chars: 0
5531 If we find any cases in the switch that are not either -1 or in the range
5532 of valid ASCII characters, or are control characters other than those
5533 commonly used with "\", don't treat this switch scanning text.
5535 Return 1 if these nodes are suitable for cost estimation, otherwise
5536 return 0. */
5538 static int
5539 estimate_case_costs (node)
5540 case_node_ptr node;
5542 tree min_ascii = integer_minus_one_node;
5543 tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5544 case_node_ptr n;
5545 int i;
5547 /* If we haven't already made the cost table, make it now. Note that the
5548 lower bound of the table is -1, not zero. */
5550 if (! cost_table_initialized)
5552 cost_table_initialized = 1;
5554 for (i = 0; i < 128; i++)
5556 if (ISALNUM (i))
5557 COST_TABLE (i) = 16;
5558 else if (ISPUNCT (i))
5559 COST_TABLE (i) = 8;
5560 else if (ISCNTRL (i))
5561 COST_TABLE (i) = -1;
5564 COST_TABLE (' ') = 8;
5565 COST_TABLE ('\t') = 4;
5566 COST_TABLE ('\0') = 4;
5567 COST_TABLE ('\n') = 2;
5568 COST_TABLE ('\f') = 1;
5569 COST_TABLE ('\v') = 1;
5570 COST_TABLE ('\b') = 1;
5573 /* See if all the case expressions look like text. It is text if the
5574 constant is >= -1 and the highest constant is <= 127. Do all comparisons
5575 as signed arithmetic since we don't want to ever access cost_table with a
5576 value less than -1. Also check that none of the constants in a range
5577 are strange control characters. */
5579 for (n = node; n; n = n->right)
5581 if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5582 return 0;
5584 for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
5585 i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
5586 if (COST_TABLE (i) < 0)
5587 return 0;
5590 /* All interesting values are within the range of interesting
5591 ASCII characters. */
5592 return 1;
5595 /* Scan an ordered list of case nodes
5596 combining those with consecutive values or ranges.
5598 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
5600 static void
5601 group_case_nodes (head)
5602 case_node_ptr head;
5604 case_node_ptr node = head;
5606 while (node)
5608 rtx lb = next_real_insn (label_rtx (node->code_label));
5609 rtx lb2;
5610 case_node_ptr np = node;
5612 /* Try to group the successors of NODE with NODE. */
5613 while (((np = np->right) != 0)
5614 /* Do they jump to the same place? */
5615 && ((lb2 = next_real_insn (label_rtx (np->code_label))) == lb
5616 || (lb != 0 && lb2 != 0
5617 && simplejump_p (lb)
5618 && simplejump_p (lb2)
5619 && rtx_equal_p (SET_SRC (PATTERN (lb)),
5620 SET_SRC (PATTERN (lb2)))))
5621 /* Are their ranges consecutive? */
5622 && tree_int_cst_equal (np->low,
5623 fold (build (PLUS_EXPR,
5624 TREE_TYPE (node->high),
5625 node->high,
5626 integer_one_node)))
5627 /* An overflow is not consecutive. */
5628 && tree_int_cst_lt (node->high,
5629 fold (build (PLUS_EXPR,
5630 TREE_TYPE (node->high),
5631 node->high,
5632 integer_one_node))))
5634 node->high = np->high;
5636 /* NP is the first node after NODE which can't be grouped with it.
5637 Delete the nodes in between, and move on to that node. */
5638 node->right = np;
5639 node = np;
5643 /* Take an ordered list of case nodes
5644 and transform them into a near optimal binary tree,
5645 on the assumption that any target code selection value is as
5646 likely as any other.
5648 The transformation is performed by splitting the ordered
5649 list into two equal sections plus a pivot. The parts are
5650 then attached to the pivot as left and right branches. Each
5651 branch is then transformed recursively. */
5653 static void
5654 balance_case_nodes (head, parent)
5655 case_node_ptr *head;
5656 case_node_ptr parent;
5658 case_node_ptr np;
5660 np = *head;
5661 if (np)
5663 int cost = 0;
5664 int i = 0;
5665 int ranges = 0;
5666 case_node_ptr *npp;
5667 case_node_ptr left;
5669 /* Count the number of entries on branch. Also count the ranges. */
5671 while (np)
5673 if (!tree_int_cst_equal (np->low, np->high))
5675 ranges++;
5676 if (use_cost_table)
5677 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
5680 if (use_cost_table)
5681 cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
5683 i++;
5684 np = np->right;
5687 if (i > 2)
5689 /* Split this list if it is long enough for that to help. */
5690 npp = head;
5691 left = *npp;
5692 if (use_cost_table)
5694 /* Find the place in the list that bisects the list's total cost,
5695 Here I gets half the total cost. */
5696 int n_moved = 0;
5697 i = (cost + 1) / 2;
5698 while (1)
5700 /* Skip nodes while their cost does not reach that amount. */
5701 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5702 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
5703 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
5704 if (i <= 0)
5705 break;
5706 npp = &(*npp)->right;
5707 n_moved += 1;
5709 if (n_moved == 0)
5711 /* Leave this branch lopsided, but optimize left-hand
5712 side and fill in `parent' fields for right-hand side. */
5713 np = *head;
5714 np->parent = parent;
5715 balance_case_nodes (&np->left, np);
5716 for (; np->right; np = np->right)
5717 np->right->parent = np;
5718 return;
5721 /* If there are just three nodes, split at the middle one. */
5722 else if (i == 3)
5723 npp = &(*npp)->right;
5724 else
5726 /* Find the place in the list that bisects the list's total cost,
5727 where ranges count as 2.
5728 Here I gets half the total cost. */
5729 i = (i + ranges + 1) / 2;
5730 while (1)
5732 /* Skip nodes while their cost does not reach that amount. */
5733 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5734 i--;
5735 i--;
5736 if (i <= 0)
5737 break;
5738 npp = &(*npp)->right;
5741 *head = np = *npp;
5742 *npp = 0;
5743 np->parent = parent;
5744 np->left = left;
5746 /* Optimize each of the two split parts. */
5747 balance_case_nodes (&np->left, np);
5748 balance_case_nodes (&np->right, np);
5750 else
5752 /* Else leave this branch as one level,
5753 but fill in `parent' fields. */
5754 np = *head;
5755 np->parent = parent;
5756 for (; np->right; np = np->right)
5757 np->right->parent = np;
5762 /* Search the parent sections of the case node tree
5763 to see if a test for the lower bound of NODE would be redundant.
5764 INDEX_TYPE is the type of the index expression.
5766 The instructions to generate the case decision tree are
5767 output in the same order as nodes are processed so it is
5768 known that if a parent node checks the range of the current
5769 node minus one that the current node is bounded at its lower
5770 span. Thus the test would be redundant. */
5772 static int
5773 node_has_low_bound (node, index_type)
5774 case_node_ptr node;
5775 tree index_type;
5777 tree low_minus_one;
5778 case_node_ptr pnode;
5780 /* If the lower bound of this node is the lowest value in the index type,
5781 we need not test it. */
5783 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
5784 return 1;
5786 /* If this node has a left branch, the value at the left must be less
5787 than that at this node, so it cannot be bounded at the bottom and
5788 we need not bother testing any further. */
5790 if (node->left)
5791 return 0;
5793 low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
5794 node->low, integer_one_node));
5796 /* If the subtraction above overflowed, we can't verify anything.
5797 Otherwise, look for a parent that tests our value - 1. */
5799 if (! tree_int_cst_lt (low_minus_one, node->low))
5800 return 0;
5802 for (pnode = node->parent; pnode; pnode = pnode->parent)
5803 if (tree_int_cst_equal (low_minus_one, pnode->high))
5804 return 1;
5806 return 0;
5809 /* Search the parent sections of the case node tree
5810 to see if a test for the upper bound of NODE would be redundant.
5811 INDEX_TYPE is the type of the index expression.
5813 The instructions to generate the case decision tree are
5814 output in the same order as nodes are processed so it is
5815 known that if a parent node checks the range of the current
5816 node plus one that the current node is bounded at its upper
5817 span. Thus the test would be redundant. */
5819 static int
5820 node_has_high_bound (node, index_type)
5821 case_node_ptr node;
5822 tree index_type;
5824 tree high_plus_one;
5825 case_node_ptr pnode;
5827 /* If there is no upper bound, obviously no test is needed. */
5829 if (TYPE_MAX_VALUE (index_type) == NULL)
5830 return 1;
5832 /* If the upper bound of this node is the highest value in the type
5833 of the index expression, we need not test against it. */
5835 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
5836 return 1;
5838 /* If this node has a right branch, the value at the right must be greater
5839 than that at this node, so it cannot be bounded at the top and
5840 we need not bother testing any further. */
5842 if (node->right)
5843 return 0;
5845 high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
5846 node->high, integer_one_node));
5848 /* If the addition above overflowed, we can't verify anything.
5849 Otherwise, look for a parent that tests our value + 1. */
5851 if (! tree_int_cst_lt (node->high, high_plus_one))
5852 return 0;
5854 for (pnode = node->parent; pnode; pnode = pnode->parent)
5855 if (tree_int_cst_equal (high_plus_one, pnode->low))
5856 return 1;
5858 return 0;
5861 /* Search the parent sections of the
5862 case node tree to see if both tests for the upper and lower
5863 bounds of NODE would be redundant. */
5865 static int
5866 node_is_bounded (node, index_type)
5867 case_node_ptr node;
5868 tree index_type;
5870 return (node_has_low_bound (node, index_type)
5871 && node_has_high_bound (node, index_type));
5874 /* Emit an unconditional jump to LABEL unless it would be dead code. */
5876 static void
5877 emit_jump_if_reachable (label)
5878 rtx label;
5880 if (GET_CODE (get_last_insn ()) != BARRIER)
5881 emit_jump (label);
5884 /* Emit step-by-step code to select a case for the value of INDEX.
5885 The thus generated decision tree follows the form of the
5886 case-node binary tree NODE, whose nodes represent test conditions.
5887 INDEX_TYPE is the type of the index of the switch.
5889 Care is taken to prune redundant tests from the decision tree
5890 by detecting any boundary conditions already checked by
5891 emitted rtx. (See node_has_high_bound, node_has_low_bound
5892 and node_is_bounded, above.)
5894 Where the test conditions can be shown to be redundant we emit
5895 an unconditional jump to the target code. As a further
5896 optimization, the subordinates of a tree node are examined to
5897 check for bounded nodes. In this case conditional and/or
5898 unconditional jumps as a result of the boundary check for the
5899 current node are arranged to target the subordinates associated
5900 code for out of bound conditions on the current node.
5902 We can assume that when control reaches the code generated here,
5903 the index value has already been compared with the parents
5904 of this node, and determined to be on the same side of each parent
5905 as this node is. Thus, if this node tests for the value 51,
5906 and a parent tested for 52, we don't need to consider
5907 the possibility of a value greater than 51. If another parent
5908 tests for the value 50, then this node need not test anything. */
5910 static void
5911 emit_case_nodes (index, node, default_label, index_type)
5912 rtx index;
5913 case_node_ptr node;
5914 rtx default_label;
5915 tree index_type;
5917 /* If INDEX has an unsigned type, we must make unsigned branches. */
5918 int unsignedp = TREE_UNSIGNED (index_type);
5919 enum machine_mode mode = GET_MODE (index);
5920 enum machine_mode imode = TYPE_MODE (index_type);
5922 /* See if our parents have already tested everything for us.
5923 If they have, emit an unconditional jump for this node. */
5924 if (node_is_bounded (node, index_type))
5925 emit_jump (label_rtx (node->code_label));
5927 else if (tree_int_cst_equal (node->low, node->high))
5929 /* Node is single valued. First see if the index expression matches
5930 this node and then check our children, if any. */
5932 do_jump_if_equal (index,
5933 convert_modes (mode, imode,
5934 expand_expr (node->low, NULL_RTX,
5935 VOIDmode, 0),
5936 unsignedp),
5937 label_rtx (node->code_label), unsignedp);
5939 if (node->right != 0 && node->left != 0)
5941 /* This node has children on both sides.
5942 Dispatch to one side or the other
5943 by comparing the index value with this node's value.
5944 If one subtree is bounded, check that one first,
5945 so we can avoid real branches in the tree. */
5947 if (node_is_bounded (node->right, index_type))
5949 emit_cmp_and_jump_insns (index,
5950 convert_modes
5951 (mode, imode,
5952 expand_expr (node->high, NULL_RTX,
5953 VOIDmode, 0),
5954 unsignedp),
5955 GT, NULL_RTX, mode, unsignedp,
5956 label_rtx (node->right->code_label));
5957 emit_case_nodes (index, node->left, default_label, index_type);
5960 else if (node_is_bounded (node->left, index_type))
5962 emit_cmp_and_jump_insns (index,
5963 convert_modes
5964 (mode, imode,
5965 expand_expr (node->high, NULL_RTX,
5966 VOIDmode, 0),
5967 unsignedp),
5968 LT, NULL_RTX, mode, unsignedp,
5969 label_rtx (node->left->code_label));
5970 emit_case_nodes (index, node->right, default_label, index_type);
5973 else
5975 /* Neither node is bounded. First distinguish the two sides;
5976 then emit the code for one side at a time. */
5978 tree test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5980 /* See if the value is on the right. */
5981 emit_cmp_and_jump_insns (index,
5982 convert_modes
5983 (mode, imode,
5984 expand_expr (node->high, NULL_RTX,
5985 VOIDmode, 0),
5986 unsignedp),
5987 GT, NULL_RTX, mode, unsignedp,
5988 label_rtx (test_label));
5990 /* Value must be on the left.
5991 Handle the left-hand subtree. */
5992 emit_case_nodes (index, node->left, default_label, index_type);
5993 /* If left-hand subtree does nothing,
5994 go to default. */
5995 emit_jump_if_reachable (default_label);
5997 /* Code branches here for the right-hand subtree. */
5998 expand_label (test_label);
5999 emit_case_nodes (index, node->right, default_label, index_type);
6003 else if (node->right != 0 && node->left == 0)
6005 /* Here we have a right child but no left so we issue conditional
6006 branch to default and process the right child.
6008 Omit the conditional branch to default if we it avoid only one
6009 right child; it costs too much space to save so little time. */
6011 if (node->right->right || node->right->left
6012 || !tree_int_cst_equal (node->right->low, node->right->high))
6014 if (!node_has_low_bound (node, index_type))
6016 emit_cmp_and_jump_insns (index,
6017 convert_modes
6018 (mode, imode,
6019 expand_expr (node->high, NULL_RTX,
6020 VOIDmode, 0),
6021 unsignedp),
6022 LT, NULL_RTX, mode, unsignedp,
6023 default_label);
6026 emit_case_nodes (index, node->right, default_label, index_type);
6028 else
6029 /* We cannot process node->right normally
6030 since we haven't ruled out the numbers less than
6031 this node's value. So handle node->right explicitly. */
6032 do_jump_if_equal (index,
6033 convert_modes
6034 (mode, imode,
6035 expand_expr (node->right->low, NULL_RTX,
6036 VOIDmode, 0),
6037 unsignedp),
6038 label_rtx (node->right->code_label), unsignedp);
6041 else if (node->right == 0 && node->left != 0)
6043 /* Just one subtree, on the left. */
6044 if (node->left->left || node->left->right
6045 || !tree_int_cst_equal (node->left->low, node->left->high))
6047 if (!node_has_high_bound (node, index_type))
6049 emit_cmp_and_jump_insns (index,
6050 convert_modes
6051 (mode, imode,
6052 expand_expr (node->high, NULL_RTX,
6053 VOIDmode, 0),
6054 unsignedp),
6055 GT, NULL_RTX, mode, unsignedp,
6056 default_label);
6059 emit_case_nodes (index, node->left, default_label, index_type);
6061 else
6062 /* We cannot process node->left normally
6063 since we haven't ruled out the numbers less than
6064 this node's value. So handle node->left explicitly. */
6065 do_jump_if_equal (index,
6066 convert_modes
6067 (mode, imode,
6068 expand_expr (node->left->low, NULL_RTX,
6069 VOIDmode, 0),
6070 unsignedp),
6071 label_rtx (node->left->code_label), unsignedp);
6074 else
6076 /* Node is a range. These cases are very similar to those for a single
6077 value, except that we do not start by testing whether this node
6078 is the one to branch to. */
6080 if (node->right != 0 && node->left != 0)
6082 /* Node has subtrees on both sides.
6083 If the right-hand subtree is bounded,
6084 test for it first, since we can go straight there.
6085 Otherwise, we need to make a branch in the control structure,
6086 then handle the two subtrees. */
6087 tree test_label = 0;
6089 if (node_is_bounded (node->right, index_type))
6090 /* Right hand node is fully bounded so we can eliminate any
6091 testing and branch directly to the target code. */
6092 emit_cmp_and_jump_insns (index,
6093 convert_modes
6094 (mode, imode,
6095 expand_expr (node->high, NULL_RTX,
6096 VOIDmode, 0),
6097 unsignedp),
6098 GT, NULL_RTX, mode, unsignedp,
6099 label_rtx (node->right->code_label));
6100 else
6102 /* Right hand node requires testing.
6103 Branch to a label where we will handle it later. */
6105 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6106 emit_cmp_and_jump_insns (index,
6107 convert_modes
6108 (mode, imode,
6109 expand_expr (node->high, NULL_RTX,
6110 VOIDmode, 0),
6111 unsignedp),
6112 GT, NULL_RTX, mode, unsignedp,
6113 label_rtx (test_label));
6116 /* Value belongs to this node or to the left-hand subtree. */
6118 emit_cmp_and_jump_insns (index,
6119 convert_modes
6120 (mode, imode,
6121 expand_expr (node->low, NULL_RTX,
6122 VOIDmode, 0),
6123 unsignedp),
6124 GE, NULL_RTX, mode, unsignedp,
6125 label_rtx (node->code_label));
6127 /* Handle the left-hand subtree. */
6128 emit_case_nodes (index, node->left, default_label, index_type);
6130 /* If right node had to be handled later, do that now. */
6132 if (test_label)
6134 /* If the left-hand subtree fell through,
6135 don't let it fall into the right-hand subtree. */
6136 emit_jump_if_reachable (default_label);
6138 expand_label (test_label);
6139 emit_case_nodes (index, node->right, default_label, index_type);
6143 else if (node->right != 0 && node->left == 0)
6145 /* Deal with values to the left of this node,
6146 if they are possible. */
6147 if (!node_has_low_bound (node, index_type))
6149 emit_cmp_and_jump_insns (index,
6150 convert_modes
6151 (mode, imode,
6152 expand_expr (node->low, NULL_RTX,
6153 VOIDmode, 0),
6154 unsignedp),
6155 LT, NULL_RTX, mode, unsignedp,
6156 default_label);
6159 /* Value belongs to this node or to the right-hand subtree. */
6161 emit_cmp_and_jump_insns (index,
6162 convert_modes
6163 (mode, imode,
6164 expand_expr (node->high, NULL_RTX,
6165 VOIDmode, 0),
6166 unsignedp),
6167 LE, NULL_RTX, mode, unsignedp,
6168 label_rtx (node->code_label));
6170 emit_case_nodes (index, node->right, default_label, index_type);
6173 else if (node->right == 0 && node->left != 0)
6175 /* Deal with values to the right of this node,
6176 if they are possible. */
6177 if (!node_has_high_bound (node, index_type))
6179 emit_cmp_and_jump_insns (index,
6180 convert_modes
6181 (mode, imode,
6182 expand_expr (node->high, NULL_RTX,
6183 VOIDmode, 0),
6184 unsignedp),
6185 GT, NULL_RTX, mode, unsignedp,
6186 default_label);
6189 /* Value belongs to this node or to the left-hand subtree. */
6191 emit_cmp_and_jump_insns (index,
6192 convert_modes
6193 (mode, imode,
6194 expand_expr (node->low, NULL_RTX,
6195 VOIDmode, 0),
6196 unsignedp),
6197 GE, NULL_RTX, mode, unsignedp,
6198 label_rtx (node->code_label));
6200 emit_case_nodes (index, node->left, default_label, index_type);
6203 else
6205 /* Node has no children so we check low and high bounds to remove
6206 redundant tests. Only one of the bounds can exist,
6207 since otherwise this node is bounded--a case tested already. */
6208 int high_bound = node_has_high_bound (node, index_type);
6209 int low_bound = node_has_low_bound (node, index_type);
6211 if (!high_bound && low_bound)
6213 emit_cmp_and_jump_insns (index,
6214 convert_modes
6215 (mode, imode,
6216 expand_expr (node->high, NULL_RTX,
6217 VOIDmode, 0),
6218 unsignedp),
6219 GT, NULL_RTX, mode, unsignedp,
6220 default_label);
6223 else if (!low_bound && high_bound)
6225 emit_cmp_and_jump_insns (index,
6226 convert_modes
6227 (mode, imode,
6228 expand_expr (node->low, NULL_RTX,
6229 VOIDmode, 0),
6230 unsignedp),
6231 LT, NULL_RTX, mode, unsignedp,
6232 default_label);
6234 else if (!low_bound && !high_bound)
6236 /* Widen LOW and HIGH to the same width as INDEX. */
6237 tree type = (*lang_hooks.types.type_for_mode) (mode, unsignedp);
6238 tree low = build1 (CONVERT_EXPR, type, node->low);
6239 tree high = build1 (CONVERT_EXPR, type, node->high);
6240 rtx low_rtx, new_index, new_bound;
6242 /* Instead of doing two branches, emit one unsigned branch for
6243 (index-low) > (high-low). */
6244 low_rtx = expand_expr (low, NULL_RTX, mode, 0);
6245 new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
6246 NULL_RTX, unsignedp,
6247 OPTAB_WIDEN);
6248 new_bound = expand_expr (fold (build (MINUS_EXPR, type,
6249 high, low)),
6250 NULL_RTX, mode, 0);
6252 emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
6253 mode, 1, default_label);
6256 emit_jump (label_rtx (node->code_label));
6261 #include "gt-stmt.h"