Replace "GNU CC" with "GCC"
[official-gcc.git] / gcc / stmt.c
blob642a5b1ccfc43016efa65d75a912cfe8de8dfd52
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, 2003 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"
59 #include "optabs.h"
61 /* Assume that case vectors are not pc-relative. */
62 #ifndef CASE_VECTOR_PC_RELATIVE
63 #define CASE_VECTOR_PC_RELATIVE 0
64 #endif
66 /* Functions and data structures for expanding case statements. */
68 /* Case label structure, used to hold info on labels within case
69 statements. We handle "range" labels; for a single-value label
70 as in C, the high and low limits are the same.
72 An AVL tree of case nodes is initially created, and later transformed
73 to a list linked via the RIGHT fields in the nodes. Nodes with
74 higher case values are later in the list.
76 Switch statements can be output in one of two forms. A branch table
77 is used if there are more than a few labels and the labels are dense
78 within the range between the smallest and largest case value. If a
79 branch table is used, no further manipulations are done with the case
80 node chain.
82 The alternative to the use of a branch table is to generate a series
83 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
84 and PARENT fields to hold a binary tree. Initially the tree is
85 totally unbalanced, with everything on the right. We balance the tree
86 with nodes on the left having lower case values than the parent
87 and nodes on the right having higher values. We then output the tree
88 in order. */
90 struct case_node GTY(())
92 struct case_node *left; /* Left son in binary tree */
93 struct case_node *right; /* Right son in binary tree; also node chain */
94 struct case_node *parent; /* Parent of node in binary tree */
95 tree low; /* Lowest index value for this label */
96 tree high; /* Highest index value for this label */
97 tree code_label; /* Label to jump to when node matches */
98 int balance;
101 typedef struct case_node case_node;
102 typedef struct case_node *case_node_ptr;
104 /* These are used by estimate_case_costs and balance_case_nodes. */
106 /* This must be a signed type, and non-ANSI compilers lack signed char. */
107 static short cost_table_[129];
108 static int use_cost_table;
109 static int cost_table_initialized;
111 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
112 is unsigned. */
113 #define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
115 /* Stack of control and binding constructs we are currently inside.
117 These constructs begin when you call `expand_start_WHATEVER'
118 and end when you call `expand_end_WHATEVER'. This stack records
119 info about how the construct began that tells the end-function
120 what to do. It also may provide information about the construct
121 to alter the behavior of other constructs within the body.
122 For example, they may affect the behavior of C `break' and `continue'.
124 Each construct gets one `struct nesting' object.
125 All of these objects are chained through the `all' field.
126 `nesting_stack' points to the first object (innermost construct).
127 The position of an entry on `nesting_stack' is in its `depth' field.
129 Each type of construct has its own individual stack.
130 For example, loops have `loop_stack'. Each object points to the
131 next object of the same type through the `next' field.
133 Some constructs are visible to `break' exit-statements and others
134 are not. Which constructs are visible depends on the language.
135 Therefore, the data structure allows each construct to be visible
136 or not, according to the args given when the construct is started.
137 The construct is visible if the `exit_label' field is non-null.
138 In that case, the value should be a CODE_LABEL rtx. */
140 struct nesting GTY(())
142 struct nesting *all;
143 struct nesting *next;
144 int depth;
145 rtx exit_label;
146 enum nesting_desc {
147 COND_NESTING,
148 LOOP_NESTING,
149 BLOCK_NESTING,
150 CASE_NESTING
151 } desc;
152 union nesting_u
154 /* For conds (if-then and if-then-else statements). */
155 struct nesting_cond
157 /* Label for the end of the if construct.
158 There is none if EXITFLAG was not set
159 and no `else' has been seen yet. */
160 rtx endif_label;
161 /* Label for the end of this alternative.
162 This may be the end of the if or the next else/elseif. */
163 rtx next_label;
164 } GTY ((tag ("COND_NESTING"))) cond;
165 /* For loops. */
166 struct nesting_loop
168 /* Label at the top of the loop; place to loop back to. */
169 rtx start_label;
170 /* Label at the end of the whole construct. */
171 rtx end_label;
172 /* Label for `continue' statement to jump to;
173 this is in front of the stepper of the loop. */
174 rtx continue_label;
175 } GTY ((tag ("LOOP_NESTING"))) loop;
176 /* For variable binding contours. */
177 struct nesting_block
179 /* Sequence number of this binding contour within the function,
180 in order of entry. */
181 int block_start_count;
182 /* Nonzero => value to restore stack to on exit. */
183 rtx stack_level;
184 /* The NOTE that starts this contour.
185 Used by expand_goto to check whether the destination
186 is within each contour or not. */
187 rtx first_insn;
188 /* Innermost containing binding contour that has a stack level. */
189 struct nesting *innermost_stack_block;
190 /* List of cleanups to be run on exit from this contour.
191 This is a list of expressions to be evaluated.
192 The TREE_PURPOSE of each link is the ..._DECL node
193 which the cleanup pertains to. */
194 tree cleanups;
195 /* List of cleanup-lists of blocks containing this block,
196 as they were at the locus where this block appears.
197 There is an element for each containing block,
198 ordered innermost containing block first.
199 The tail of this list can be 0,
200 if all remaining elements would be empty lists.
201 The element's TREE_VALUE is the cleanup-list of that block,
202 which may be null. */
203 tree outer_cleanups;
204 /* Chain of labels defined inside this binding contour.
205 For contours that have stack levels or cleanups. */
206 struct label_chain *label_chain;
207 /* Number of function calls seen, as of start of this block. */
208 int n_function_calls;
209 /* Nonzero if this is associated with an EH region. */
210 int exception_region;
211 /* The saved target_temp_slot_level from our outer block.
212 We may reset target_temp_slot_level to be the level of
213 this block, if that is done, target_temp_slot_level
214 reverts to the saved target_temp_slot_level at the very
215 end of the block. */
216 int block_target_temp_slot_level;
217 /* True if we are currently emitting insns in an area of
218 output code that is controlled by a conditional
219 expression. This is used by the cleanup handling code to
220 generate conditional cleanup actions. */
221 int conditional_code;
222 /* A place to move the start of the exception region for any
223 of the conditional cleanups, must be at the end or after
224 the start of the last unconditional cleanup, and before any
225 conditional branch points. */
226 rtx last_unconditional_cleanup;
227 } GTY ((tag ("BLOCK_NESTING"))) block;
228 /* For switch (C) or case (Pascal) statements,
229 and also for dummies (see `expand_start_case_dummy'). */
230 struct nesting_case
232 /* The insn after which the case dispatch should finally
233 be emitted. Zero for a dummy. */
234 rtx start;
235 /* A list of case labels; it is first built as an AVL tree.
236 During expand_end_case, this is converted to a list, and may be
237 rearranged into a nearly balanced binary tree. */
238 struct case_node *case_list;
239 /* Label to jump to if no case matches. */
240 tree default_label;
241 /* The expression to be dispatched on. */
242 tree index_expr;
243 /* Type that INDEX_EXPR should be converted to. */
244 tree nominal_type;
245 /* Name of this kind of statement, for warnings. */
246 const char *printname;
247 /* Used to save no_line_numbers till we see the first case label.
248 We set this to -1 when we see the first case label in this
249 case statement. */
250 int line_number_status;
251 } GTY ((tag ("CASE_NESTING"))) case_stmt;
252 } GTY ((desc ("%1.desc"))) data;
255 /* Allocate and return a new `struct nesting'. */
257 #define ALLOC_NESTING() \
258 (struct nesting *) ggc_alloc (sizeof (struct nesting))
260 /* Pop the nesting stack element by element until we pop off
261 the element which is at the top of STACK.
262 Update all the other stacks, popping off elements from them
263 as we pop them from nesting_stack. */
265 #define POPSTACK(STACK) \
266 do { struct nesting *target = STACK; \
267 struct nesting *this; \
268 do { this = nesting_stack; \
269 if (loop_stack == this) \
270 loop_stack = loop_stack->next; \
271 if (cond_stack == this) \
272 cond_stack = cond_stack->next; \
273 if (block_stack == this) \
274 block_stack = block_stack->next; \
275 if (stack_block_stack == this) \
276 stack_block_stack = stack_block_stack->next; \
277 if (case_stack == this) \
278 case_stack = case_stack->next; \
279 nesting_depth = nesting_stack->depth - 1; \
280 nesting_stack = this->all; } \
281 while (this != target); } while (0)
283 /* In some cases it is impossible to generate code for a forward goto
284 until the label definition is seen. This happens when it may be necessary
285 for the goto to reset the stack pointer: we don't yet know how to do that.
286 So expand_goto puts an entry on this fixup list.
287 Each time a binding contour that resets the stack is exited,
288 we check each fixup.
289 If the target label has now been defined, we can insert the proper code. */
291 struct goto_fixup GTY(())
293 /* Points to following fixup. */
294 struct goto_fixup *next;
295 /* Points to the insn before the jump insn.
296 If more code must be inserted, it goes after this insn. */
297 rtx before_jump;
298 /* The LABEL_DECL that this jump is jumping to, or 0
299 for break, continue or return. */
300 tree target;
301 /* The BLOCK for the place where this goto was found. */
302 tree context;
303 /* The CODE_LABEL rtx that this is jumping to. */
304 rtx target_rtl;
305 /* Number of binding contours started in current function
306 before the label reference. */
307 int block_start_count;
308 /* The outermost stack level that should be restored for this jump.
309 Each time a binding contour that resets the stack is exited,
310 if the target label is *not* yet defined, this slot is updated. */
311 rtx stack_level;
312 /* List of lists of cleanup expressions to be run by this goto.
313 There is one element for each block that this goto is within.
314 The tail of this list can be 0,
315 if all remaining elements would be empty.
316 The TREE_VALUE contains the cleanup list of that block as of the
317 time this goto was seen.
318 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
319 tree cleanup_list_list;
322 /* Within any binding contour that must restore a stack level,
323 all labels are recorded with a chain of these structures. */
325 struct label_chain GTY(())
327 /* Points to following fixup. */
328 struct label_chain *next;
329 tree label;
332 struct stmt_status GTY(())
334 /* Chain of all pending binding contours. */
335 struct nesting * x_block_stack;
337 /* If any new stacks are added here, add them to POPSTACKS too. */
339 /* Chain of all pending binding contours that restore stack levels
340 or have cleanups. */
341 struct nesting * x_stack_block_stack;
343 /* Chain of all pending conditional statements. */
344 struct nesting * x_cond_stack;
346 /* Chain of all pending loops. */
347 struct nesting * x_loop_stack;
349 /* Chain of all pending case or switch statements. */
350 struct nesting * x_case_stack;
352 /* Separate chain including all of the above,
353 chained through the `all' field. */
354 struct nesting * x_nesting_stack;
356 /* Number of entries on nesting_stack now. */
357 int x_nesting_depth;
359 /* Number of binding contours started so far in this function. */
360 int x_block_start_count;
362 /* Each time we expand an expression-statement,
363 record the expr's type and its RTL value here. */
364 tree x_last_expr_type;
365 rtx x_last_expr_value;
367 /* Nonzero if within a ({...}) grouping, in which case we must
368 always compute a value for each expr-stmt in case it is the last one. */
369 int x_expr_stmts_for_value;
371 /* Filename and line number of last line-number note,
372 whether we actually emitted it or not. */
373 const char *x_emit_filename;
374 int x_emit_lineno;
376 struct goto_fixup *x_goto_fixup_chain;
379 #define block_stack (cfun->stmt->x_block_stack)
380 #define stack_block_stack (cfun->stmt->x_stack_block_stack)
381 #define cond_stack (cfun->stmt->x_cond_stack)
382 #define loop_stack (cfun->stmt->x_loop_stack)
383 #define case_stack (cfun->stmt->x_case_stack)
384 #define nesting_stack (cfun->stmt->x_nesting_stack)
385 #define nesting_depth (cfun->stmt->x_nesting_depth)
386 #define current_block_start_count (cfun->stmt->x_block_start_count)
387 #define last_expr_type (cfun->stmt->x_last_expr_type)
388 #define last_expr_value (cfun->stmt->x_last_expr_value)
389 #define expr_stmts_for_value (cfun->stmt->x_expr_stmts_for_value)
390 #define emit_filename (cfun->stmt->x_emit_filename)
391 #define emit_lineno (cfun->stmt->x_emit_lineno)
392 #define goto_fixup_chain (cfun->stmt->x_goto_fixup_chain)
394 /* Nonzero if we are using EH to handle cleanups. */
395 static int using_eh_for_cleanups_p = 0;
397 static int n_occurrences PARAMS ((int, const char *));
398 static bool parse_input_constraint PARAMS ((const char **, int, int, int,
399 int, const char * const *,
400 bool *, bool *));
401 static bool decl_conflicts_with_clobbers_p PARAMS ((tree, const HARD_REG_SET));
402 static void expand_goto_internal PARAMS ((tree, rtx, rtx));
403 static int expand_fixup PARAMS ((tree, rtx, rtx));
404 static rtx expand_nl_handler_label PARAMS ((rtx, rtx));
405 static void expand_nl_goto_receiver PARAMS ((void));
406 static void expand_nl_goto_receivers PARAMS ((struct nesting *));
407 static void fixup_gotos PARAMS ((struct nesting *, rtx, tree,
408 rtx, int));
409 static bool check_operand_nalternatives PARAMS ((tree, tree));
410 static bool check_unique_operand_names PARAMS ((tree, tree));
411 static tree resolve_operand_names PARAMS ((tree, tree, tree,
412 const char **));
413 static char *resolve_operand_name_1 PARAMS ((char *, tree, tree));
414 static void expand_null_return_1 PARAMS ((rtx));
415 static enum br_predictor return_prediction PARAMS ((rtx));
416 static void expand_value_return PARAMS ((rtx));
417 static int tail_recursion_args PARAMS ((tree, tree));
418 static void expand_cleanups PARAMS ((tree, tree, int, int));
419 static void check_seenlabel PARAMS ((void));
420 static void do_jump_if_equal PARAMS ((rtx, rtx, rtx, int));
421 static int estimate_case_costs PARAMS ((case_node_ptr));
422 static bool same_case_target_p PARAMS ((rtx, rtx));
423 static void strip_default_case_nodes PARAMS ((case_node_ptr *, rtx));
424 static bool lshift_cheap_p PARAMS ((void));
425 static int case_bit_test_cmp PARAMS ((const void *, const void *));
426 static void emit_case_bit_tests PARAMS ((tree, tree, tree, tree,
427 case_node_ptr, rtx));
428 static void group_case_nodes PARAMS ((case_node_ptr));
429 static void balance_case_nodes PARAMS ((case_node_ptr *,
430 case_node_ptr));
431 static int node_has_low_bound PARAMS ((case_node_ptr, tree));
432 static int node_has_high_bound PARAMS ((case_node_ptr, tree));
433 static int node_is_bounded PARAMS ((case_node_ptr, tree));
434 static void emit_jump_if_reachable PARAMS ((rtx));
435 static void emit_case_nodes PARAMS ((rtx, case_node_ptr, rtx, tree));
436 static struct case_node *case_tree2list PARAMS ((case_node *, case_node *));
438 void
439 using_eh_for_cleanups ()
441 using_eh_for_cleanups_p = 1;
444 void
445 init_stmt_for_function ()
447 cfun->stmt = ((struct stmt_status *)ggc_alloc (sizeof (struct stmt_status)));
449 /* We are not currently within any block, conditional, loop or case. */
450 block_stack = 0;
451 stack_block_stack = 0;
452 loop_stack = 0;
453 case_stack = 0;
454 cond_stack = 0;
455 nesting_stack = 0;
456 nesting_depth = 0;
458 current_block_start_count = 0;
460 /* No gotos have been expanded yet. */
461 goto_fixup_chain = 0;
463 /* We are not processing a ({...}) grouping. */
464 expr_stmts_for_value = 0;
465 clear_last_expr ();
468 /* Record the current file and line. Called from emit_line_note. */
469 void
470 set_file_and_line_for_stmt (file, line)
471 const char *file;
472 int line;
474 /* If we're outputting an inline function, and we add a line note,
475 there may be no CFUN->STMT information. So, there's no need to
476 update it. */
477 if (cfun->stmt)
479 emit_filename = file;
480 emit_lineno = line;
484 /* Emit a no-op instruction. */
486 void
487 emit_nop ()
489 rtx last_insn;
491 last_insn = get_last_insn ();
492 if (!optimize
493 && (GET_CODE (last_insn) == CODE_LABEL
494 || (GET_CODE (last_insn) == NOTE
495 && prev_real_insn (last_insn) == 0)))
496 emit_insn (gen_nop ());
499 /* Return the rtx-label that corresponds to a LABEL_DECL,
500 creating it if necessary. */
503 label_rtx (label)
504 tree label;
506 if (TREE_CODE (label) != LABEL_DECL)
507 abort ();
509 if (!DECL_RTL_SET_P (label))
510 SET_DECL_RTL (label, gen_label_rtx ());
512 return DECL_RTL (label);
516 /* Add an unconditional jump to LABEL as the next sequential instruction. */
518 void
519 emit_jump (label)
520 rtx label;
522 do_pending_stack_adjust ();
523 emit_jump_insn (gen_jump (label));
524 emit_barrier ();
527 /* Emit code to jump to the address
528 specified by the pointer expression EXP. */
530 void
531 expand_computed_goto (exp)
532 tree exp;
534 rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
536 #ifdef POINTERS_EXTEND_UNSIGNED
537 if (GET_MODE (x) != Pmode)
538 x = convert_memory_address (Pmode, x);
539 #endif
541 emit_queue ();
543 if (! cfun->computed_goto_common_label)
545 cfun->computed_goto_common_reg = copy_to_mode_reg (Pmode, x);
546 cfun->computed_goto_common_label = gen_label_rtx ();
547 emit_label (cfun->computed_goto_common_label);
549 do_pending_stack_adjust ();
550 emit_indirect_jump (cfun->computed_goto_common_reg);
552 current_function_has_computed_jump = 1;
554 else
556 emit_move_insn (cfun->computed_goto_common_reg, x);
557 emit_jump (cfun->computed_goto_common_label);
561 /* Handle goto statements and the labels that they can go to. */
563 /* Specify the location in the RTL code of a label LABEL,
564 which is a LABEL_DECL tree node.
566 This is used for the kind of label that the user can jump to with a
567 goto statement, and for alternatives of a switch or case statement.
568 RTL labels generated for loops and conditionals don't go through here;
569 they are generated directly at the RTL level, by other functions below.
571 Note that this has nothing to do with defining label *names*.
572 Languages vary in how they do that and what that even means. */
574 void
575 expand_label (label)
576 tree label;
578 struct label_chain *p;
580 do_pending_stack_adjust ();
581 emit_label (label_rtx (label));
582 if (DECL_NAME (label))
583 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
585 if (stack_block_stack != 0)
587 p = (struct label_chain *) ggc_alloc (sizeof (struct label_chain));
588 p->next = stack_block_stack->data.block.label_chain;
589 stack_block_stack->data.block.label_chain = p;
590 p->label = label;
594 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
595 from nested functions. */
597 void
598 declare_nonlocal_label (label)
599 tree label;
601 rtx slot = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
603 nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
604 LABEL_PRESERVE_P (label_rtx (label)) = 1;
605 if (nonlocal_goto_handler_slots == 0)
607 emit_stack_save (SAVE_NONLOCAL,
608 &nonlocal_goto_stack_level,
609 PREV_INSN (tail_recursion_reentry));
611 nonlocal_goto_handler_slots
612 = gen_rtx_EXPR_LIST (VOIDmode, slot, nonlocal_goto_handler_slots);
615 /* Generate RTL code for a `goto' statement with target label LABEL.
616 LABEL should be a LABEL_DECL tree node that was or will later be
617 defined with `expand_label'. */
619 void
620 expand_goto (label)
621 tree label;
623 tree context;
625 /* Check for a nonlocal goto to a containing function. */
626 context = decl_function_context (label);
627 if (context != 0 && context != current_function_decl)
629 struct function *p = find_function_data (context);
630 rtx label_ref = gen_rtx_LABEL_REF (Pmode, label_rtx (label));
631 rtx handler_slot, static_chain, save_area, insn;
632 tree link;
634 /* Find the corresponding handler slot for this label. */
635 handler_slot = p->x_nonlocal_goto_handler_slots;
636 for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label;
637 link = TREE_CHAIN (link))
638 handler_slot = XEXP (handler_slot, 1);
639 handler_slot = XEXP (handler_slot, 0);
641 p->has_nonlocal_label = 1;
642 current_function_has_nonlocal_goto = 1;
643 LABEL_REF_NONLOCAL_P (label_ref) = 1;
645 /* Copy the rtl for the slots so that they won't be shared in
646 case the virtual stack vars register gets instantiated differently
647 in the parent than in the child. */
649 static_chain = copy_to_reg (lookup_static_chain (label));
651 /* Get addr of containing function's current nonlocal goto handler,
652 which will do any cleanups and then jump to the label. */
653 handler_slot = copy_to_reg (replace_rtx (copy_rtx (handler_slot),
654 virtual_stack_vars_rtx,
655 static_chain));
657 /* Get addr of containing function's nonlocal save area. */
658 save_area = p->x_nonlocal_goto_stack_level;
659 if (save_area)
660 save_area = replace_rtx (copy_rtx (save_area),
661 virtual_stack_vars_rtx, static_chain);
663 #if HAVE_nonlocal_goto
664 if (HAVE_nonlocal_goto)
665 emit_insn (gen_nonlocal_goto (static_chain, handler_slot,
666 save_area, label_ref));
667 else
668 #endif
670 /* Restore frame pointer for containing function.
671 This sets the actual hard register used for the frame pointer
672 to the location of the function's incoming static chain info.
673 The non-local goto handler will then adjust it to contain the
674 proper value and reload the argument pointer, if needed. */
675 emit_move_insn (hard_frame_pointer_rtx, static_chain);
676 emit_stack_restore (SAVE_NONLOCAL, save_area, NULL_RTX);
678 /* USE of hard_frame_pointer_rtx added for consistency;
679 not clear if really needed. */
680 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
681 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
682 emit_indirect_jump (handler_slot);
685 /* Search backwards to the jump insn and mark it as a
686 non-local goto. */
687 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
689 if (GET_CODE (insn) == JUMP_INSN)
691 REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO,
692 const0_rtx, REG_NOTES (insn));
693 break;
695 else if (GET_CODE (insn) == CALL_INSN)
696 break;
699 else
700 expand_goto_internal (label, label_rtx (label), NULL_RTX);
703 /* Generate RTL code for a `goto' statement with target label BODY.
704 LABEL should be a LABEL_REF.
705 LAST_INSN, if non-0, is the rtx we should consider as the last
706 insn emitted (for the purposes of cleaning up a return). */
708 static void
709 expand_goto_internal (body, label, last_insn)
710 tree body;
711 rtx label;
712 rtx last_insn;
714 struct nesting *block;
715 rtx stack_level = 0;
717 if (GET_CODE (label) != CODE_LABEL)
718 abort ();
720 /* If label has already been defined, we can tell now
721 whether and how we must alter the stack level. */
723 if (PREV_INSN (label) != 0)
725 /* Find the innermost pending block that contains the label.
726 (Check containment by comparing insn-uids.)
727 Then restore the outermost stack level within that block,
728 and do cleanups of all blocks contained in it. */
729 for (block = block_stack; block; block = block->next)
731 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
732 break;
733 if (block->data.block.stack_level != 0)
734 stack_level = block->data.block.stack_level;
735 /* Execute the cleanups for blocks we are exiting. */
736 if (block->data.block.cleanups != 0)
738 expand_cleanups (block->data.block.cleanups, NULL_TREE, 1, 1);
739 do_pending_stack_adjust ();
743 if (stack_level)
745 /* Ensure stack adjust isn't done by emit_jump, as this
746 would clobber the stack pointer. This one should be
747 deleted as dead by flow. */
748 clear_pending_stack_adjust ();
749 do_pending_stack_adjust ();
751 /* Don't do this adjust if it's to the end label and this function
752 is to return with a depressed stack pointer. */
753 if (label == return_label
754 && (((TREE_CODE (TREE_TYPE (current_function_decl))
755 == FUNCTION_TYPE)
756 && (TYPE_RETURNS_STACK_DEPRESSED
757 (TREE_TYPE (current_function_decl))))))
759 else
760 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
763 if (body != 0 && DECL_TOO_LATE (body))
764 error ("jump to `%s' invalidly jumps into binding contour",
765 IDENTIFIER_POINTER (DECL_NAME (body)));
767 /* Label not yet defined: may need to put this goto
768 on the fixup list. */
769 else if (! expand_fixup (body, label, last_insn))
771 /* No fixup needed. Record that the label is the target
772 of at least one goto that has no fixup. */
773 if (body != 0)
774 TREE_ADDRESSABLE (body) = 1;
777 emit_jump (label);
780 /* Generate if necessary a fixup for a goto
781 whose target label in tree structure (if any) is TREE_LABEL
782 and whose target in rtl is RTL_LABEL.
784 If LAST_INSN is nonzero, we pretend that the jump appears
785 after insn LAST_INSN instead of at the current point in the insn stream.
787 The fixup will be used later to insert insns just before the goto.
788 Those insns will restore the stack level as appropriate for the
789 target label, and will (in the case of C++) also invoke any object
790 destructors which have to be invoked when we exit the scopes which
791 are exited by the goto.
793 Value is nonzero if a fixup is made. */
795 static int
796 expand_fixup (tree_label, rtl_label, last_insn)
797 tree tree_label;
798 rtx rtl_label;
799 rtx last_insn;
801 struct nesting *block, *end_block;
803 /* See if we can recognize which block the label will be output in.
804 This is possible in some very common cases.
805 If we succeed, set END_BLOCK to that block.
806 Otherwise, set it to 0. */
808 if (cond_stack
809 && (rtl_label == cond_stack->data.cond.endif_label
810 || rtl_label == cond_stack->data.cond.next_label))
811 end_block = cond_stack;
812 /* If we are in a loop, recognize certain labels which
813 are likely targets. This reduces the number of fixups
814 we need to create. */
815 else if (loop_stack
816 && (rtl_label == loop_stack->data.loop.start_label
817 || rtl_label == loop_stack->data.loop.end_label
818 || rtl_label == loop_stack->data.loop.continue_label))
819 end_block = loop_stack;
820 else
821 end_block = 0;
823 /* Now set END_BLOCK to the binding level to which we will return. */
825 if (end_block)
827 struct nesting *next_block = end_block->all;
828 block = block_stack;
830 /* First see if the END_BLOCK is inside the innermost binding level.
831 If so, then no cleanups or stack levels are relevant. */
832 while (next_block && next_block != block)
833 next_block = next_block->all;
835 if (next_block)
836 return 0;
838 /* Otherwise, set END_BLOCK to the innermost binding level
839 which is outside the relevant control-structure nesting. */
840 next_block = block_stack->next;
841 for (block = block_stack; block != end_block; block = block->all)
842 if (block == next_block)
843 next_block = next_block->next;
844 end_block = next_block;
847 /* Does any containing block have a stack level or cleanups?
848 If not, no fixup is needed, and that is the normal case
849 (the only case, for standard C). */
850 for (block = block_stack; block != end_block; block = block->next)
851 if (block->data.block.stack_level != 0
852 || block->data.block.cleanups != 0)
853 break;
855 if (block != end_block)
857 /* Ok, a fixup is needed. Add a fixup to the list of such. */
858 struct goto_fixup *fixup
859 = (struct goto_fixup *) ggc_alloc (sizeof (struct goto_fixup));
860 /* In case an old stack level is restored, make sure that comes
861 after any pending stack adjust. */
862 /* ?? If the fixup isn't to come at the present position,
863 doing the stack adjust here isn't useful. Doing it with our
864 settings at that location isn't useful either. Let's hope
865 someone does it! */
866 if (last_insn == 0)
867 do_pending_stack_adjust ();
868 fixup->target = tree_label;
869 fixup->target_rtl = rtl_label;
871 /* Create a BLOCK node and a corresponding matched set of
872 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
873 this point. The notes will encapsulate any and all fixup
874 code which we might later insert at this point in the insn
875 stream. Also, the BLOCK node will be the parent (i.e. the
876 `SUPERBLOCK') of any other BLOCK nodes which we might create
877 later on when we are expanding the fixup code.
879 Note that optimization passes (including expand_end_loop)
880 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
881 as a placeholder. */
884 rtx original_before_jump
885 = last_insn ? last_insn : get_last_insn ();
886 rtx start;
887 rtx end;
888 tree block;
890 block = make_node (BLOCK);
891 TREE_USED (block) = 1;
893 if (!cfun->x_whole_function_mode_p)
894 (*lang_hooks.decls.insert_block) (block);
895 else
897 BLOCK_CHAIN (block)
898 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
899 BLOCK_CHAIN (DECL_INITIAL (current_function_decl))
900 = block;
903 start_sequence ();
904 start = emit_note (NULL, NOTE_INSN_BLOCK_BEG);
905 if (cfun->x_whole_function_mode_p)
906 NOTE_BLOCK (start) = block;
907 fixup->before_jump = emit_note (NULL, NOTE_INSN_DELETED);
908 end = emit_note (NULL, NOTE_INSN_BLOCK_END);
909 if (cfun->x_whole_function_mode_p)
910 NOTE_BLOCK (end) = block;
911 fixup->context = block;
912 end_sequence ();
913 emit_insn_after (start, original_before_jump);
916 fixup->block_start_count = current_block_start_count;
917 fixup->stack_level = 0;
918 fixup->cleanup_list_list
919 = ((block->data.block.outer_cleanups
920 || block->data.block.cleanups)
921 ? tree_cons (NULL_TREE, block->data.block.cleanups,
922 block->data.block.outer_cleanups)
923 : 0);
924 fixup->next = goto_fixup_chain;
925 goto_fixup_chain = fixup;
928 return block != 0;
931 /* Expand any needed fixups in the outputmost binding level of the
932 function. FIRST_INSN is the first insn in the function. */
934 void
935 expand_fixups (first_insn)
936 rtx first_insn;
938 fixup_gotos (NULL, NULL_RTX, NULL_TREE, first_insn, 0);
941 /* When exiting a binding contour, process all pending gotos requiring fixups.
942 THISBLOCK is the structure that describes the block being exited.
943 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
944 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
945 FIRST_INSN is the insn that began this contour.
947 Gotos that jump out of this contour must restore the
948 stack level and do the cleanups before actually jumping.
950 DONT_JUMP_IN positive means report error if there is a jump into this
951 contour from before the beginning of the contour. This is also done if
952 STACK_LEVEL is nonzero unless DONT_JUMP_IN is negative. */
954 static void
955 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
956 struct nesting *thisblock;
957 rtx stack_level;
958 tree cleanup_list;
959 rtx first_insn;
960 int dont_jump_in;
962 struct goto_fixup *f, *prev;
964 /* F is the fixup we are considering; PREV is the previous one. */
965 /* We run this loop in two passes so that cleanups of exited blocks
966 are run first, and blocks that are exited are marked so
967 afterwards. */
969 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
971 /* Test for a fixup that is inactive because it is already handled. */
972 if (f->before_jump == 0)
974 /* Delete inactive fixup from the chain, if that is easy to do. */
975 if (prev != 0)
976 prev->next = f->next;
978 /* Has this fixup's target label been defined?
979 If so, we can finalize it. */
980 else if (PREV_INSN (f->target_rtl) != 0)
982 rtx cleanup_insns;
984 /* If this fixup jumped into this contour from before the beginning
985 of this contour, report an error. This code used to use
986 the first non-label insn after f->target_rtl, but that's
987 wrong since such can be added, by things like put_var_into_stack
988 and have INSN_UIDs that are out of the range of the block. */
989 /* ??? Bug: this does not detect jumping in through intermediate
990 blocks that have stack levels or cleanups.
991 It detects only a problem with the innermost block
992 around the label. */
993 if (f->target != 0
994 && (dont_jump_in > 0 || (dont_jump_in == 0 && stack_level)
995 || cleanup_list)
996 && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
997 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
998 && ! DECL_ERROR_ISSUED (f->target))
1000 error_with_decl (f->target,
1001 "label `%s' used before containing binding contour");
1002 /* Prevent multiple errors for one label. */
1003 DECL_ERROR_ISSUED (f->target) = 1;
1006 /* We will expand the cleanups into a sequence of their own and
1007 then later on we will attach this new sequence to the insn
1008 stream just ahead of the actual jump insn. */
1010 start_sequence ();
1012 /* Temporarily restore the lexical context where we will
1013 logically be inserting the fixup code. We do this for the
1014 sake of getting the debugging information right. */
1016 (*lang_hooks.decls.pushlevel) (0);
1017 (*lang_hooks.decls.set_block) (f->context);
1019 /* Expand the cleanups for blocks this jump exits. */
1020 if (f->cleanup_list_list)
1022 tree lists;
1023 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1024 /* Marked elements correspond to blocks that have been closed.
1025 Do their cleanups. */
1026 if (TREE_ADDRESSABLE (lists)
1027 && TREE_VALUE (lists) != 0)
1029 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1030 /* Pop any pushes done in the cleanups,
1031 in case function is about to return. */
1032 do_pending_stack_adjust ();
1036 /* Restore stack level for the biggest contour that this
1037 jump jumps out of. */
1038 if (f->stack_level
1039 && ! (f->target_rtl == return_label
1040 && ((TREE_CODE (TREE_TYPE (current_function_decl))
1041 == FUNCTION_TYPE)
1042 && (TYPE_RETURNS_STACK_DEPRESSED
1043 (TREE_TYPE (current_function_decl))))))
1044 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1046 /* Finish up the sequence containing the insns which implement the
1047 necessary cleanups, and then attach that whole sequence to the
1048 insn stream just ahead of the actual jump insn. Attaching it
1049 at that point insures that any cleanups which are in fact
1050 implicit C++ object destructions (which must be executed upon
1051 leaving the block) appear (to the debugger) to be taking place
1052 in an area of the generated code where the object(s) being
1053 destructed are still "in scope". */
1055 cleanup_insns = get_insns ();
1056 (*lang_hooks.decls.poplevel) (1, 0, 0);
1058 end_sequence ();
1059 emit_insn_after (cleanup_insns, f->before_jump);
1061 f->before_jump = 0;
1065 /* For any still-undefined labels, do the cleanups for this block now.
1066 We must do this now since items in the cleanup list may go out
1067 of scope when the block ends. */
1068 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1069 if (f->before_jump != 0
1070 && PREV_INSN (f->target_rtl) == 0
1071 /* Label has still not appeared. If we are exiting a block with
1072 a stack level to restore, that started before the fixup,
1073 mark this stack level as needing restoration
1074 when the fixup is later finalized. */
1075 && thisblock != 0
1076 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1077 means the label is undefined. That's erroneous, but possible. */
1078 && (thisblock->data.block.block_start_count
1079 <= f->block_start_count))
1081 tree lists = f->cleanup_list_list;
1082 rtx cleanup_insns;
1084 for (; lists; lists = TREE_CHAIN (lists))
1085 /* If the following elt. corresponds to our containing block
1086 then the elt. must be for this block. */
1087 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1089 start_sequence ();
1090 (*lang_hooks.decls.pushlevel) (0);
1091 (*lang_hooks.decls.set_block) (f->context);
1092 expand_cleanups (TREE_VALUE (lists), NULL_TREE, 1, 1);
1093 do_pending_stack_adjust ();
1094 cleanup_insns = get_insns ();
1095 (*lang_hooks.decls.poplevel) (1, 0, 0);
1096 end_sequence ();
1097 if (cleanup_insns != 0)
1098 f->before_jump
1099 = emit_insn_after (cleanup_insns, f->before_jump);
1101 f->cleanup_list_list = TREE_CHAIN (lists);
1104 if (stack_level)
1105 f->stack_level = stack_level;
1109 /* Return the number of times character C occurs in string S. */
1110 static int
1111 n_occurrences (c, s)
1112 int c;
1113 const char *s;
1115 int n = 0;
1116 while (*s)
1117 n += (*s++ == c);
1118 return n;
1121 /* Generate RTL for an asm statement (explicit assembler code).
1122 STRING is a STRING_CST node containing the assembler code text,
1123 or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the
1124 insn is volatile; don't optimize it. */
1126 void
1127 expand_asm (string, vol)
1128 tree string;
1129 int vol;
1131 rtx body;
1133 if (TREE_CODE (string) == ADDR_EXPR)
1134 string = TREE_OPERAND (string, 0);
1136 body = gen_rtx_ASM_INPUT (VOIDmode, TREE_STRING_POINTER (string));
1138 MEM_VOLATILE_P (body) = vol;
1140 emit_insn (body);
1142 clear_last_expr ();
1145 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
1146 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
1147 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
1148 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
1149 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
1150 constraint allows the use of a register operand. And, *IS_INOUT
1151 will be true if the operand is read-write, i.e., if it is used as
1152 an input as well as an output. If *CONSTRAINT_P is not in
1153 canonical form, it will be made canonical. (Note that `+' will be
1154 replaced with `=' as part of this process.)
1156 Returns TRUE if all went well; FALSE if an error occurred. */
1158 bool
1159 parse_output_constraint (constraint_p, operand_num, ninputs, noutputs,
1160 allows_mem, allows_reg, is_inout)
1161 const char **constraint_p;
1162 int operand_num;
1163 int ninputs;
1164 int noutputs;
1165 bool *allows_mem;
1166 bool *allows_reg;
1167 bool *is_inout;
1169 const char *constraint = *constraint_p;
1170 const char *p;
1172 /* Assume the constraint doesn't allow the use of either a register
1173 or memory. */
1174 *allows_mem = false;
1175 *allows_reg = false;
1177 /* Allow the `=' or `+' to not be at the beginning of the string,
1178 since it wasn't explicitly documented that way, and there is a
1179 large body of code that puts it last. Swap the character to
1180 the front, so as not to uglify any place else. */
1181 p = strchr (constraint, '=');
1182 if (!p)
1183 p = strchr (constraint, '+');
1185 /* If the string doesn't contain an `=', issue an error
1186 message. */
1187 if (!p)
1189 error ("output operand constraint lacks `='");
1190 return false;
1193 /* If the constraint begins with `+', then the operand is both read
1194 from and written to. */
1195 *is_inout = (*p == '+');
1197 /* Canonicalize the output constraint so that it begins with `='. */
1198 if (p != constraint || is_inout)
1200 char *buf;
1201 size_t c_len = strlen (constraint);
1203 if (p != constraint)
1204 warning ("output constraint `%c' for operand %d is not at the beginning",
1205 *p, operand_num);
1207 /* Make a copy of the constraint. */
1208 buf = alloca (c_len + 1);
1209 strcpy (buf, constraint);
1210 /* Swap the first character and the `=' or `+'. */
1211 buf[p - constraint] = buf[0];
1212 /* Make sure the first character is an `='. (Until we do this,
1213 it might be a `+'.) */
1214 buf[0] = '=';
1215 /* Replace the constraint with the canonicalized string. */
1216 *constraint_p = ggc_alloc_string (buf, c_len);
1217 constraint = *constraint_p;
1220 /* Loop through the constraint string. */
1221 for (p = constraint + 1; *p; p += CONSTRAINT_LEN (*p, p))
1222 switch (*p)
1224 case '+':
1225 case '=':
1226 error ("operand constraint contains incorrectly positioned '+' or '='");
1227 return false;
1229 case '%':
1230 if (operand_num + 1 == ninputs + noutputs)
1232 error ("`%%' constraint used with last operand");
1233 return false;
1235 break;
1237 case 'V': case 'm': case 'o':
1238 *allows_mem = true;
1239 break;
1241 case '?': case '!': case '*': case '&': case '#':
1242 case 'E': case 'F': case 'G': case 'H':
1243 case 's': case 'i': case 'n':
1244 case 'I': case 'J': case 'K': case 'L': case 'M':
1245 case 'N': case 'O': case 'P': case ',':
1246 break;
1248 case '0': case '1': case '2': case '3': case '4':
1249 case '5': case '6': case '7': case '8': case '9':
1250 case '[':
1251 error ("matching constraint not valid in output operand");
1252 return false;
1254 case '<': case '>':
1255 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1256 excepting those that expand_call created. So match memory
1257 and hope. */
1258 *allows_mem = true;
1259 break;
1261 case 'g': case 'X':
1262 *allows_reg = true;
1263 *allows_mem = true;
1264 break;
1266 case 'p': case 'r':
1267 *allows_reg = true;
1268 break;
1270 default:
1271 if (!ISALPHA (*p))
1272 break;
1273 if (REG_CLASS_FROM_CONSTRAINT (*p, p) != NO_REGS)
1274 *allows_reg = true;
1275 #ifdef EXTRA_CONSTRAINT_STR
1276 else if (EXTRA_ADDRESS_CONSTRAINT (*p, p))
1277 *allows_reg = true;
1278 else if (EXTRA_MEMORY_CONSTRAINT (*p, p))
1279 *allows_mem = true;
1280 else
1282 /* Otherwise we can't assume anything about the nature of
1283 the constraint except that it isn't purely registers.
1284 Treat it like "g" and hope for the best. */
1285 *allows_reg = true;
1286 *allows_mem = true;
1288 #endif
1289 break;
1292 return true;
1295 /* Similar, but for input constraints. */
1297 static bool
1298 parse_input_constraint (constraint_p, input_num, ninputs, noutputs, ninout,
1299 constraints, allows_mem, allows_reg)
1300 const char **constraint_p;
1301 int input_num;
1302 int ninputs;
1303 int noutputs;
1304 int ninout;
1305 const char * const * constraints;
1306 bool *allows_mem;
1307 bool *allows_reg;
1309 const char *constraint = *constraint_p;
1310 const char *orig_constraint = constraint;
1311 size_t c_len = strlen (constraint);
1312 size_t j;
1314 /* Assume the constraint doesn't allow the use of either
1315 a register or memory. */
1316 *allows_mem = false;
1317 *allows_reg = false;
1319 /* Make sure constraint has neither `=', `+', nor '&'. */
1321 for (j = 0; j < c_len; j += CONSTRAINT_LEN (constraint[j], constraint+j))
1322 switch (constraint[j])
1324 case '+': case '=': case '&':
1325 if (constraint == orig_constraint)
1327 error ("input operand constraint contains `%c'", constraint[j]);
1328 return false;
1330 break;
1332 case '%':
1333 if (constraint == orig_constraint
1334 && input_num + 1 == ninputs - ninout)
1336 error ("`%%' constraint used with last operand");
1337 return false;
1339 break;
1341 case 'V': case 'm': case 'o':
1342 *allows_mem = true;
1343 break;
1345 case '<': case '>':
1346 case '?': case '!': case '*': case '#':
1347 case 'E': case 'F': case 'G': case 'H':
1348 case 's': case 'i': case 'n':
1349 case 'I': case 'J': case 'K': case 'L': case 'M':
1350 case 'N': case 'O': case 'P': case ',':
1351 break;
1353 /* Whether or not a numeric constraint allows a register is
1354 decided by the matching constraint, and so there is no need
1355 to do anything special with them. We must handle them in
1356 the default case, so that we don't unnecessarily force
1357 operands to memory. */
1358 case '0': case '1': case '2': case '3': case '4':
1359 case '5': case '6': case '7': case '8': case '9':
1361 char *end;
1362 unsigned long match;
1364 match = strtoul (constraint + j, &end, 10);
1365 if (match >= (unsigned long) noutputs)
1367 error ("matching constraint references invalid operand number");
1368 return false;
1371 /* Try and find the real constraint for this dup. Only do this
1372 if the matching constraint is the only alternative. */
1373 if (*end == '\0'
1374 && (j == 0 || (j == 1 && constraint[0] == '%')))
1376 constraint = constraints[match];
1377 *constraint_p = constraint;
1378 c_len = strlen (constraint);
1379 j = 0;
1380 /* ??? At the end of the loop, we will skip the first part of
1381 the matched constraint. This assumes not only that the
1382 other constraint is an output constraint, but also that
1383 the '=' or '+' come first. */
1384 break;
1386 else
1387 j = end - constraint;
1388 /* Anticipate increment at end of loop. */
1389 j--;
1391 /* Fall through. */
1393 case 'p': case 'r':
1394 *allows_reg = true;
1395 break;
1397 case 'g': case 'X':
1398 *allows_reg = true;
1399 *allows_mem = true;
1400 break;
1402 default:
1403 if (! ISALPHA (constraint[j]))
1405 error ("invalid punctuation `%c' in constraint", constraint[j]);
1406 return false;
1408 if (REG_CLASS_FROM_CONSTRAINT (constraint[j], constraint + j)
1409 != NO_REGS)
1410 *allows_reg = true;
1411 #ifdef EXTRA_CONSTRAINT_STR
1412 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j], constraint + j))
1413 *allows_reg = true;
1414 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j], constraint + j))
1415 *allows_mem = true;
1416 else
1418 /* Otherwise we can't assume anything about the nature of
1419 the constraint except that it isn't purely registers.
1420 Treat it like "g" and hope for the best. */
1421 *allows_reg = true;
1422 *allows_mem = true;
1424 #endif
1425 break;
1428 return true;
1431 /* Check for overlap between registers marked in CLOBBERED_REGS and
1432 anything inappropriate in DECL. Emit error and return TRUE for error,
1433 FALSE for ok. */
1435 static bool
1436 decl_conflicts_with_clobbers_p (decl, clobbered_regs)
1437 tree decl;
1438 const HARD_REG_SET clobbered_regs;
1440 /* Conflicts between asm-declared register variables and the clobber
1441 list are not allowed. */
1442 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
1443 && DECL_REGISTER (decl)
1444 && REG_P (DECL_RTL (decl))
1445 && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
1447 rtx reg = DECL_RTL (decl);
1448 unsigned int regno;
1450 for (regno = REGNO (reg);
1451 regno < (REGNO (reg)
1452 + HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg)));
1453 regno++)
1454 if (TEST_HARD_REG_BIT (clobbered_regs, regno))
1456 error ("asm-specifier for variable `%s' conflicts with asm clobber list",
1457 IDENTIFIER_POINTER (DECL_NAME (decl)));
1459 /* Reset registerness to stop multiple errors emitted for a
1460 single variable. */
1461 DECL_REGISTER (decl) = 0;
1462 return true;
1465 return false;
1468 /* Generate RTL for an asm statement with arguments.
1469 STRING is the instruction template.
1470 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1471 Each output or input has an expression in the TREE_VALUE and
1472 and a tree list in TREE_PURPOSE which in turn contains a constraint
1473 name in TREE_VALUE (or NULL_TREE) and a constraint string
1474 in TREE_PURPOSE.
1475 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1476 that is clobbered by this insn.
1478 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1479 Some elements of OUTPUTS may be replaced with trees representing temporary
1480 values. The caller should copy those temporary values to the originally
1481 specified lvalues.
1483 VOL nonzero means the insn is volatile; don't optimize it. */
1485 void
1486 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1487 tree string, outputs, inputs, clobbers;
1488 int vol;
1489 const char *filename;
1490 int line;
1492 rtvec argvec, constraintvec;
1493 rtx body;
1494 int ninputs = list_length (inputs);
1495 int noutputs = list_length (outputs);
1496 int ninout;
1497 int nclobbers;
1498 HARD_REG_SET clobbered_regs;
1499 int clobber_conflict_found = 0;
1500 tree tail;
1501 int i;
1502 /* Vector of RTX's of evaluated output operands. */
1503 rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1504 int *inout_opnum = (int *) alloca (noutputs * sizeof (int));
1505 rtx *real_output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1506 enum machine_mode *inout_mode
1507 = (enum machine_mode *) alloca (noutputs * sizeof (enum machine_mode));
1508 const char **constraints
1509 = (const char **) alloca ((noutputs + ninputs) * sizeof (const char *));
1510 int old_generating_concat_p = generating_concat_p;
1512 /* An ASM with no outputs needs to be treated as volatile, for now. */
1513 if (noutputs == 0)
1514 vol = 1;
1516 if (! check_operand_nalternatives (outputs, inputs))
1517 return;
1519 if (! check_unique_operand_names (outputs, inputs))
1520 return;
1522 string = resolve_operand_names (string, outputs, inputs, constraints);
1524 #ifdef MD_ASM_CLOBBERS
1525 /* Sometimes we wish to automatically clobber registers across an asm.
1526 Case in point is when the i386 backend moved from cc0 to a hard reg --
1527 maintaining source-level compatibility means automatically clobbering
1528 the flags register. */
1529 MD_ASM_CLOBBERS (clobbers);
1530 #endif
1532 /* Count the number of meaningful clobbered registers, ignoring what
1533 we would ignore later. */
1534 nclobbers = 0;
1535 CLEAR_HARD_REG_SET (clobbered_regs);
1536 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1538 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1540 i = decode_reg_name (regname);
1541 if (i >= 0 || i == -4)
1542 ++nclobbers;
1543 else if (i == -2)
1544 error ("unknown register name `%s' in `asm'", regname);
1546 /* Mark clobbered registers. */
1547 if (i >= 0)
1549 /* Clobbering the PIC register is an error */
1550 if (i == (int) PIC_OFFSET_TABLE_REGNUM)
1552 error ("PIC register `%s' clobbered in `asm'", regname);
1553 return;
1556 SET_HARD_REG_BIT (clobbered_regs, i);
1560 clear_last_expr ();
1562 /* First pass over inputs and outputs checks validity and sets
1563 mark_addressable if needed. */
1565 ninout = 0;
1566 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1568 tree val = TREE_VALUE (tail);
1569 tree type = TREE_TYPE (val);
1570 const char *constraint;
1571 bool is_inout;
1572 bool allows_reg;
1573 bool allows_mem;
1575 /* If there's an erroneous arg, emit no insn. */
1576 if (type == error_mark_node)
1577 return;
1579 /* Try to parse the output constraint. If that fails, there's
1580 no point in going further. */
1581 constraint = constraints[i];
1582 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
1583 &allows_mem, &allows_reg, &is_inout))
1584 return;
1586 if (! allows_reg
1587 && (allows_mem
1588 || is_inout
1589 || (DECL_P (val)
1590 && GET_CODE (DECL_RTL (val)) == REG
1591 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
1592 (*lang_hooks.mark_addressable) (val);
1594 if (is_inout)
1595 ninout++;
1598 ninputs += ninout;
1599 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1601 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1602 return;
1605 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
1607 bool allows_reg, allows_mem;
1608 const char *constraint;
1610 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
1611 would get VOIDmode and that could cause a crash in reload. */
1612 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1613 return;
1615 constraint = constraints[i + noutputs];
1616 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1617 constraints, &allows_mem, &allows_reg))
1618 return;
1620 if (! allows_reg && allows_mem)
1621 (*lang_hooks.mark_addressable) (TREE_VALUE (tail));
1624 /* Second pass evaluates arguments. */
1626 ninout = 0;
1627 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1629 tree val = TREE_VALUE (tail);
1630 tree type = TREE_TYPE (val);
1631 bool is_inout;
1632 bool allows_reg;
1633 bool allows_mem;
1634 rtx op;
1636 if (!parse_output_constraint (&constraints[i], i, ninputs,
1637 noutputs, &allows_mem, &allows_reg,
1638 &is_inout))
1639 abort ();
1641 /* If an output operand is not a decl or indirect ref and our constraint
1642 allows a register, make a temporary to act as an intermediate.
1643 Make the asm insn write into that, then our caller will copy it to
1644 the real output operand. Likewise for promoted variables. */
1646 generating_concat_p = 0;
1648 real_output_rtx[i] = NULL_RTX;
1649 if ((TREE_CODE (val) == INDIRECT_REF
1650 && allows_mem)
1651 || (DECL_P (val)
1652 && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1653 && ! (GET_CODE (DECL_RTL (val)) == REG
1654 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1655 || ! allows_reg
1656 || is_inout)
1658 op = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
1659 if (GET_CODE (op) == MEM)
1660 op = validize_mem (op);
1662 if (! allows_reg && GET_CODE (op) != MEM)
1663 error ("output number %d not directly addressable", i);
1664 if ((! allows_mem && GET_CODE (op) == MEM)
1665 || GET_CODE (op) == CONCAT)
1667 real_output_rtx[i] = protect_from_queue (op, 1);
1668 op = gen_reg_rtx (GET_MODE (op));
1669 if (is_inout)
1670 emit_move_insn (op, real_output_rtx[i]);
1673 else
1675 op = assign_temp (type, 0, 0, 1);
1676 op = validize_mem (op);
1677 TREE_VALUE (tail) = make_tree (type, op);
1679 output_rtx[i] = op;
1681 generating_concat_p = old_generating_concat_p;
1683 if (is_inout)
1685 inout_mode[ninout] = TYPE_MODE (type);
1686 inout_opnum[ninout++] = i;
1689 if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
1690 clobber_conflict_found = 1;
1693 /* Make vectors for the expression-rtx, constraint strings,
1694 and named operands. */
1696 argvec = rtvec_alloc (ninputs);
1697 constraintvec = rtvec_alloc (ninputs);
1699 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
1700 : GET_MODE (output_rtx[0])),
1701 TREE_STRING_POINTER (string),
1702 empty_string, 0, argvec, constraintvec,
1703 filename, line);
1705 MEM_VOLATILE_P (body) = vol;
1707 /* Eval the inputs and put them into ARGVEC.
1708 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1710 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
1712 bool allows_reg, allows_mem;
1713 const char *constraint;
1714 tree val, type;
1715 rtx op;
1717 constraint = constraints[i + noutputs];
1718 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1719 constraints, &allows_mem, &allows_reg))
1720 abort ();
1722 generating_concat_p = 0;
1724 val = TREE_VALUE (tail);
1725 type = TREE_TYPE (val);
1726 op = expand_expr (val, NULL_RTX, VOIDmode, 0);
1728 /* Never pass a CONCAT to an ASM. */
1729 if (GET_CODE (op) == CONCAT)
1730 op = force_reg (GET_MODE (op), op);
1731 else if (GET_CODE (op) == MEM)
1732 op = validize_mem (op);
1734 if (asm_operand_ok (op, constraint) <= 0)
1736 if (allows_reg)
1737 op = force_reg (TYPE_MODE (type), op);
1738 else if (!allows_mem)
1739 warning ("asm operand %d probably doesn't match constraints",
1740 i + noutputs);
1741 else if (CONSTANT_P (op))
1743 op = force_const_mem (TYPE_MODE (type), op);
1744 op = validize_mem (op);
1746 else if (GET_CODE (op) == REG
1747 || GET_CODE (op) == SUBREG
1748 || GET_CODE (op) == ADDRESSOF
1749 || GET_CODE (op) == CONCAT)
1751 tree qual_type = build_qualified_type (type,
1752 (TYPE_QUALS (type)
1753 | TYPE_QUAL_CONST));
1754 rtx memloc = assign_temp (qual_type, 1, 1, 1);
1755 memloc = validize_mem (memloc);
1756 emit_move_insn (memloc, op);
1757 op = memloc;
1760 else if (GET_CODE (op) == MEM && MEM_VOLATILE_P (op))
1762 /* We won't recognize volatile memory as available a
1763 memory_operand at this point. Ignore it. */
1765 else if (queued_subexp_p (op))
1767 else
1768 /* ??? Leave this only until we have experience with what
1769 happens in combine and elsewhere when constraints are
1770 not satisfied. */
1771 warning ("asm operand %d probably doesn't match constraints",
1772 i + noutputs);
1775 generating_concat_p = old_generating_concat_p;
1776 ASM_OPERANDS_INPUT (body, i) = op;
1778 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
1779 = gen_rtx_ASM_INPUT (TYPE_MODE (type), constraints[i + noutputs]);
1781 if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
1782 clobber_conflict_found = 1;
1785 /* Protect all the operands from the queue now that they have all been
1786 evaluated. */
1788 generating_concat_p = 0;
1790 for (i = 0; i < ninputs - ninout; i++)
1791 ASM_OPERANDS_INPUT (body, i)
1792 = protect_from_queue (ASM_OPERANDS_INPUT (body, i), 0);
1794 for (i = 0; i < noutputs; i++)
1795 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1797 /* For in-out operands, copy output rtx to input rtx. */
1798 for (i = 0; i < ninout; i++)
1800 int j = inout_opnum[i];
1801 char buffer[16];
1803 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
1804 = output_rtx[j];
1806 sprintf (buffer, "%d", j);
1807 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
1808 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_alloc_string (buffer, -1));
1811 generating_concat_p = old_generating_concat_p;
1813 /* Now, for each output, construct an rtx
1814 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
1815 ARGVEC CONSTRAINTS OPNAMES))
1816 If there is more than one, put them inside a PARALLEL. */
1818 if (noutputs == 1 && nclobbers == 0)
1820 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = constraints[0];
1821 emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1824 else if (noutputs == 0 && nclobbers == 0)
1826 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1827 emit_insn (body);
1830 else
1832 rtx obody = body;
1833 int num = noutputs;
1835 if (num == 0)
1836 num = 1;
1838 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1840 /* For each output operand, store a SET. */
1841 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1843 XVECEXP (body, 0, i)
1844 = gen_rtx_SET (VOIDmode,
1845 output_rtx[i],
1846 gen_rtx_ASM_OPERANDS
1847 (GET_MODE (output_rtx[i]),
1848 TREE_STRING_POINTER (string),
1849 constraints[i], i, argvec, constraintvec,
1850 filename, line));
1852 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1855 /* If there are no outputs (but there are some clobbers)
1856 store the bare ASM_OPERANDS into the PARALLEL. */
1858 if (i == 0)
1859 XVECEXP (body, 0, i++) = obody;
1861 /* Store (clobber REG) for each clobbered register specified. */
1863 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1865 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1866 int j = decode_reg_name (regname);
1867 rtx clobbered_reg;
1869 if (j < 0)
1871 if (j == -3) /* `cc', which is not a register */
1872 continue;
1874 if (j == -4) /* `memory', don't cache memory across asm */
1876 XVECEXP (body, 0, i++)
1877 = gen_rtx_CLOBBER (VOIDmode,
1878 gen_rtx_MEM
1879 (BLKmode,
1880 gen_rtx_SCRATCH (VOIDmode)));
1881 continue;
1884 /* Ignore unknown register, error already signaled. */
1885 continue;
1888 /* Use QImode since that's guaranteed to clobber just one reg. */
1889 clobbered_reg = gen_rtx_REG (QImode, j);
1891 /* Do sanity check for overlap between clobbers and respectively
1892 input and outputs that hasn't been handled. Such overlap
1893 should have been detected and reported above. */
1894 if (!clobber_conflict_found)
1896 int opno;
1898 /* We test the old body (obody) contents to avoid tripping
1899 over the under-construction body. */
1900 for (opno = 0; opno < noutputs; opno++)
1901 if (reg_overlap_mentioned_p (clobbered_reg, output_rtx[opno]))
1902 internal_error ("asm clobber conflict with output operand");
1904 for (opno = 0; opno < ninputs - ninout; opno++)
1905 if (reg_overlap_mentioned_p (clobbered_reg,
1906 ASM_OPERANDS_INPUT (obody, opno)))
1907 internal_error ("asm clobber conflict with input operand");
1910 XVECEXP (body, 0, i++)
1911 = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1914 emit_insn (body);
1917 /* For any outputs that needed reloading into registers, spill them
1918 back to where they belong. */
1919 for (i = 0; i < noutputs; ++i)
1920 if (real_output_rtx[i])
1921 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1923 free_temp_slots ();
1926 /* A subroutine of expand_asm_operands. Check that all operands have
1927 the same number of alternatives. Return true if so. */
1929 static bool
1930 check_operand_nalternatives (outputs, inputs)
1931 tree outputs, inputs;
1933 if (outputs || inputs)
1935 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1936 int nalternatives
1937 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1938 tree next = inputs;
1940 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1942 error ("too many alternatives in `asm'");
1943 return false;
1946 tmp = outputs;
1947 while (tmp)
1949 const char *constraint
1950 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1952 if (n_occurrences (',', constraint) != nalternatives)
1954 error ("operand constraints for `asm' differ in number of alternatives");
1955 return false;
1958 if (TREE_CHAIN (tmp))
1959 tmp = TREE_CHAIN (tmp);
1960 else
1961 tmp = next, next = 0;
1965 return true;
1968 /* A subroutine of expand_asm_operands. Check that all operand names
1969 are unique. Return true if so. We rely on the fact that these names
1970 are identifiers, and so have been canonicalized by get_identifier,
1971 so all we need are pointer comparisons. */
1973 static bool
1974 check_unique_operand_names (outputs, inputs)
1975 tree outputs, inputs;
1977 tree i, j;
1979 for (i = outputs; i ; i = TREE_CHAIN (i))
1981 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1982 if (! i_name)
1983 continue;
1985 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1986 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1987 goto failure;
1990 for (i = inputs; i ; i = TREE_CHAIN (i))
1992 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1993 if (! i_name)
1994 continue;
1996 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1997 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1998 goto failure;
1999 for (j = outputs; j ; j = TREE_CHAIN (j))
2000 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
2001 goto failure;
2004 return true;
2006 failure:
2007 error ("duplicate asm operand name '%s'",
2008 TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i))));
2009 return false;
2012 /* A subroutine of expand_asm_operands. Resolve the names of the operands
2013 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
2014 STRING and in the constraints to those numbers. */
2016 static tree
2017 resolve_operand_names (string, outputs, inputs, pconstraints)
2018 tree string;
2019 tree outputs, inputs;
2020 const char **pconstraints;
2022 char *buffer = xstrdup (TREE_STRING_POINTER (string));
2023 char *p;
2024 tree t;
2026 /* Assume that we will not need extra space to perform the substitution.
2027 This because we get to remove '[' and ']', which means we cannot have
2028 a problem until we have more than 999 operands. */
2030 p = buffer;
2031 while ((p = strchr (p, '%')) != NULL)
2033 if (p[1] == '[')
2034 p += 1;
2035 else if (ISALPHA (p[1]) && p[2] == '[')
2036 p += 2;
2037 else
2039 p += 1;
2040 continue;
2043 p = resolve_operand_name_1 (p, outputs, inputs);
2046 string = build_string (strlen (buffer), buffer);
2047 free (buffer);
2049 /* Collect output constraints here because it's convenient.
2050 There should be no named operands here; this is verified
2051 in expand_asm_operand. */
2052 for (t = outputs; t ; t = TREE_CHAIN (t), pconstraints++)
2053 *pconstraints = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
2055 /* Substitute [<name>] in input constraint strings. */
2056 for (t = inputs; t ; t = TREE_CHAIN (t), pconstraints++)
2058 const char *c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
2059 if (strchr (c, '[') == NULL)
2060 *pconstraints = c;
2061 else
2063 p = buffer = xstrdup (c);
2064 while ((p = strchr (p, '[')) != NULL)
2065 p = resolve_operand_name_1 (p, outputs, inputs);
2067 *pconstraints = ggc_alloc_string (buffer, -1);
2068 free (buffer);
2072 return string;
2075 /* A subroutine of resolve_operand_names. P points to the '[' for a
2076 potential named operand of the form [<name>]. In place, replace
2077 the name and brackets with a number. Return a pointer to the
2078 balance of the string after substitution. */
2080 static char *
2081 resolve_operand_name_1 (p, outputs, inputs)
2082 char *p;
2083 tree outputs, inputs;
2085 char *q;
2086 int op;
2087 tree t;
2088 size_t len;
2090 /* Collect the operand name. */
2091 q = strchr (p, ']');
2092 if (!q)
2094 error ("missing close brace for named operand");
2095 return strchr (p, '\0');
2097 len = q - p - 1;
2099 /* Resolve the name to a number. */
2100 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
2102 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
2103 if (name)
2105 const char *c = TREE_STRING_POINTER (name);
2106 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
2107 goto found;
2110 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
2112 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
2113 if (name)
2115 const char *c = TREE_STRING_POINTER (name);
2116 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
2117 goto found;
2121 *q = '\0';
2122 error ("undefined named operand '%s'", p + 1);
2123 op = 0;
2124 found:
2126 /* Replace the name with the number. Unfortunately, not all libraries
2127 get the return value of sprintf correct, so search for the end of the
2128 generated string by hand. */
2129 sprintf (p, "%d", op);
2130 p = strchr (p, '\0');
2132 /* Verify the no extra buffer space assumption. */
2133 if (p > q)
2134 abort ();
2136 /* Shift the rest of the buffer down to fill the gap. */
2137 memmove (p, q + 1, strlen (q + 1) + 1);
2139 return p;
2142 /* Generate RTL to evaluate the expression EXP
2143 and remember it in case this is the VALUE in a ({... VALUE; }) constr.
2144 Provided just for backward-compatibility. expand_expr_stmt_value()
2145 should be used for new code. */
2147 void
2148 expand_expr_stmt (exp)
2149 tree exp;
2151 expand_expr_stmt_value (exp, -1, 1);
2154 /* Generate RTL to evaluate the expression EXP. WANT_VALUE tells
2155 whether to (1) save the value of the expression, (0) discard it or
2156 (-1) use expr_stmts_for_value to tell. The use of -1 is
2157 deprecated, and retained only for backward compatibility. */
2159 void
2160 expand_expr_stmt_value (exp, want_value, maybe_last)
2161 tree exp;
2162 int want_value, maybe_last;
2164 rtx value;
2165 tree type;
2167 if (want_value == -1)
2168 want_value = expr_stmts_for_value != 0;
2170 /* If -Wextra, warn about statements with no side effects,
2171 except for an explicit cast to void (e.g. for assert()), and
2172 except for last statement in ({...}) where they may be useful. */
2173 if (! want_value
2174 && (expr_stmts_for_value == 0 || ! maybe_last)
2175 && exp != error_mark_node)
2177 if (! TREE_SIDE_EFFECTS (exp))
2179 if ((extra_warnings || warn_unused_value)
2180 && !(TREE_CODE (exp) == CONVERT_EXPR
2181 && VOID_TYPE_P (TREE_TYPE (exp))))
2182 warning_with_file_and_line (emit_filename, emit_lineno,
2183 "statement with no effect");
2185 else if (warn_unused_value)
2186 warn_if_unused_value (exp);
2189 /* If EXP is of function type and we are expanding statements for
2190 value, convert it to pointer-to-function. */
2191 if (want_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
2192 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
2194 /* The call to `expand_expr' could cause last_expr_type and
2195 last_expr_value to get reset. Therefore, we set last_expr_value
2196 and last_expr_type *after* calling expand_expr. */
2197 value = expand_expr (exp, want_value ? NULL_RTX : const0_rtx,
2198 VOIDmode, 0);
2199 type = TREE_TYPE (exp);
2201 /* If all we do is reference a volatile value in memory,
2202 copy it to a register to be sure it is actually touched. */
2203 if (value && GET_CODE (value) == MEM && TREE_THIS_VOLATILE (exp))
2205 if (TYPE_MODE (type) == VOIDmode)
2207 else if (TYPE_MODE (type) != BLKmode)
2208 value = copy_to_reg (value);
2209 else
2211 rtx lab = gen_label_rtx ();
2213 /* Compare the value with itself to reference it. */
2214 emit_cmp_and_jump_insns (value, value, EQ,
2215 expand_expr (TYPE_SIZE (type),
2216 NULL_RTX, VOIDmode, 0),
2217 BLKmode, 0, lab);
2218 emit_label (lab);
2222 /* If this expression is part of a ({...}) and is in memory, we may have
2223 to preserve temporaries. */
2224 preserve_temp_slots (value);
2226 /* Free any temporaries used to evaluate this expression. Any temporary
2227 used as a result of this expression will already have been preserved
2228 above. */
2229 free_temp_slots ();
2231 if (want_value)
2233 last_expr_value = value;
2234 last_expr_type = type;
2237 emit_queue ();
2240 /* Warn if EXP contains any computations whose results are not used.
2241 Return 1 if a warning is printed; 0 otherwise. */
2244 warn_if_unused_value (exp)
2245 tree exp;
2247 if (TREE_USED (exp))
2248 return 0;
2250 /* Don't warn about void constructs. This includes casting to void,
2251 void function calls, and statement expressions with a final cast
2252 to void. */
2253 if (VOID_TYPE_P (TREE_TYPE (exp)))
2254 return 0;
2256 switch (TREE_CODE (exp))
2258 case PREINCREMENT_EXPR:
2259 case POSTINCREMENT_EXPR:
2260 case PREDECREMENT_EXPR:
2261 case POSTDECREMENT_EXPR:
2262 case MODIFY_EXPR:
2263 case INIT_EXPR:
2264 case TARGET_EXPR:
2265 case CALL_EXPR:
2266 case METHOD_CALL_EXPR:
2267 case RTL_EXPR:
2268 case TRY_CATCH_EXPR:
2269 case WITH_CLEANUP_EXPR:
2270 case EXIT_EXPR:
2271 return 0;
2273 case BIND_EXPR:
2274 /* For a binding, warn if no side effect within it. */
2275 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2277 case SAVE_EXPR:
2278 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2280 case TRUTH_ORIF_EXPR:
2281 case TRUTH_ANDIF_EXPR:
2282 /* In && or ||, warn if 2nd operand has no side effect. */
2283 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2285 case COMPOUND_EXPR:
2286 if (TREE_NO_UNUSED_WARNING (exp))
2287 return 0;
2288 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
2289 return 1;
2290 /* Let people do `(foo (), 0)' without a warning. */
2291 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
2292 return 0;
2293 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2295 case NOP_EXPR:
2296 case CONVERT_EXPR:
2297 case NON_LVALUE_EXPR:
2298 /* Don't warn about conversions not explicit in the user's program. */
2299 if (TREE_NO_UNUSED_WARNING (exp))
2300 return 0;
2301 /* Assignment to a cast usually results in a cast of a modify.
2302 Don't complain about that. There can be an arbitrary number of
2303 casts before the modify, so we must loop until we find the first
2304 non-cast expression and then test to see if that is a modify. */
2306 tree tem = TREE_OPERAND (exp, 0);
2308 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
2309 tem = TREE_OPERAND (tem, 0);
2311 if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
2312 || TREE_CODE (tem) == CALL_EXPR)
2313 return 0;
2315 goto maybe_warn;
2317 case INDIRECT_REF:
2318 /* Don't warn about automatic dereferencing of references, since
2319 the user cannot control it. */
2320 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
2321 return warn_if_unused_value (TREE_OPERAND (exp, 0));
2322 /* Fall through. */
2324 default:
2325 /* Referencing a volatile value is a side effect, so don't warn. */
2326 if ((DECL_P (exp)
2327 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
2328 && TREE_THIS_VOLATILE (exp))
2329 return 0;
2331 /* If this is an expression which has no operands, there is no value
2332 to be unused. There are no such language-independent codes,
2333 but front ends may define such. */
2334 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'e'
2335 && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
2336 return 0;
2338 maybe_warn:
2339 /* If this is an expression with side effects, don't warn. */
2340 if (TREE_SIDE_EFFECTS (exp))
2341 return 0;
2343 warning_with_file_and_line (emit_filename, emit_lineno,
2344 "value computed is not used");
2345 return 1;
2349 /* Clear out the memory of the last expression evaluated. */
2351 void
2352 clear_last_expr ()
2354 last_expr_type = NULL_TREE;
2355 last_expr_value = NULL_RTX;
2358 /* Begin a statement-expression, i.e., a series of statements which
2359 may return a value. Return the RTL_EXPR for this statement expr.
2360 The caller must save that value and pass it to
2361 expand_end_stmt_expr. If HAS_SCOPE is nonzero, temporaries created
2362 in the statement-expression are deallocated at the end of the
2363 expression. */
2365 tree
2366 expand_start_stmt_expr (has_scope)
2367 int has_scope;
2369 tree t;
2371 /* Make the RTL_EXPR node temporary, not momentary,
2372 so that rtl_expr_chain doesn't become garbage. */
2373 t = make_node (RTL_EXPR);
2374 do_pending_stack_adjust ();
2375 if (has_scope)
2376 start_sequence_for_rtl_expr (t);
2377 else
2378 start_sequence ();
2379 NO_DEFER_POP;
2380 expr_stmts_for_value++;
2381 return t;
2384 /* Restore the previous state at the end of a statement that returns a value.
2385 Returns a tree node representing the statement's value and the
2386 insns to compute the value.
2388 The nodes of that expression have been freed by now, so we cannot use them.
2389 But we don't want to do that anyway; the expression has already been
2390 evaluated and now we just want to use the value. So generate a RTL_EXPR
2391 with the proper type and RTL value.
2393 If the last substatement was not an expression,
2394 return something with type `void'. */
2396 tree
2397 expand_end_stmt_expr (t)
2398 tree t;
2400 OK_DEFER_POP;
2402 if (! last_expr_value || ! last_expr_type)
2404 last_expr_value = const0_rtx;
2405 last_expr_type = void_type_node;
2407 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2408 /* Remove any possible QUEUED. */
2409 last_expr_value = protect_from_queue (last_expr_value, 0);
2411 emit_queue ();
2413 TREE_TYPE (t) = last_expr_type;
2414 RTL_EXPR_RTL (t) = last_expr_value;
2415 RTL_EXPR_SEQUENCE (t) = get_insns ();
2417 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2419 end_sequence ();
2421 /* Don't consider deleting this expr or containing exprs at tree level. */
2422 TREE_SIDE_EFFECTS (t) = 1;
2423 /* Propagate volatility of the actual RTL expr. */
2424 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2426 clear_last_expr ();
2427 expr_stmts_for_value--;
2429 return t;
2432 /* Generate RTL for the start of an if-then. COND is the expression
2433 whose truth should be tested.
2435 If EXITFLAG is nonzero, this conditional is visible to
2436 `exit_something'. */
2438 void
2439 expand_start_cond (cond, exitflag)
2440 tree cond;
2441 int exitflag;
2443 struct nesting *thiscond = ALLOC_NESTING ();
2445 /* Make an entry on cond_stack for the cond we are entering. */
2447 thiscond->desc = COND_NESTING;
2448 thiscond->next = cond_stack;
2449 thiscond->all = nesting_stack;
2450 thiscond->depth = ++nesting_depth;
2451 thiscond->data.cond.next_label = gen_label_rtx ();
2452 /* Before we encounter an `else', we don't need a separate exit label
2453 unless there are supposed to be exit statements
2454 to exit this conditional. */
2455 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2456 thiscond->data.cond.endif_label = thiscond->exit_label;
2457 cond_stack = thiscond;
2458 nesting_stack = thiscond;
2460 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2463 /* Generate RTL between then-clause and the elseif-clause
2464 of an if-then-elseif-.... */
2466 void
2467 expand_start_elseif (cond)
2468 tree cond;
2470 if (cond_stack->data.cond.endif_label == 0)
2471 cond_stack->data.cond.endif_label = gen_label_rtx ();
2472 emit_jump (cond_stack->data.cond.endif_label);
2473 emit_label (cond_stack->data.cond.next_label);
2474 cond_stack->data.cond.next_label = gen_label_rtx ();
2475 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2478 /* Generate RTL between the then-clause and the else-clause
2479 of an if-then-else. */
2481 void
2482 expand_start_else ()
2484 if (cond_stack->data.cond.endif_label == 0)
2485 cond_stack->data.cond.endif_label = gen_label_rtx ();
2487 emit_jump (cond_stack->data.cond.endif_label);
2488 emit_label (cond_stack->data.cond.next_label);
2489 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
2492 /* After calling expand_start_else, turn this "else" into an "else if"
2493 by providing another condition. */
2495 void
2496 expand_elseif (cond)
2497 tree cond;
2499 cond_stack->data.cond.next_label = gen_label_rtx ();
2500 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2503 /* Generate RTL for the end of an if-then.
2504 Pop the record for it off of cond_stack. */
2506 void
2507 expand_end_cond ()
2509 struct nesting *thiscond = cond_stack;
2511 do_pending_stack_adjust ();
2512 if (thiscond->data.cond.next_label)
2513 emit_label (thiscond->data.cond.next_label);
2514 if (thiscond->data.cond.endif_label)
2515 emit_label (thiscond->data.cond.endif_label);
2517 POPSTACK (cond_stack);
2518 clear_last_expr ();
2521 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2522 loop should be exited by `exit_something'. This is a loop for which
2523 `expand_continue' will jump to the top of the loop.
2525 Make an entry on loop_stack to record the labels associated with
2526 this loop. */
2528 struct nesting *
2529 expand_start_loop (exit_flag)
2530 int exit_flag;
2532 struct nesting *thisloop = ALLOC_NESTING ();
2534 /* Make an entry on loop_stack for the loop we are entering. */
2536 thisloop->desc = LOOP_NESTING;
2537 thisloop->next = loop_stack;
2538 thisloop->all = nesting_stack;
2539 thisloop->depth = ++nesting_depth;
2540 thisloop->data.loop.start_label = gen_label_rtx ();
2541 thisloop->data.loop.end_label = gen_label_rtx ();
2542 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2543 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2544 loop_stack = thisloop;
2545 nesting_stack = thisloop;
2547 do_pending_stack_adjust ();
2548 emit_queue ();
2549 emit_note (NULL, NOTE_INSN_LOOP_BEG);
2550 emit_label (thisloop->data.loop.start_label);
2552 return thisloop;
2555 /* Like expand_start_loop but for a loop where the continuation point
2556 (for expand_continue_loop) will be specified explicitly. */
2558 struct nesting *
2559 expand_start_loop_continue_elsewhere (exit_flag)
2560 int exit_flag;
2562 struct nesting *thisloop = expand_start_loop (exit_flag);
2563 loop_stack->data.loop.continue_label = gen_label_rtx ();
2564 return thisloop;
2567 /* Begin a null, aka do { } while (0) "loop". But since the contents
2568 of said loop can still contain a break, we must frob the loop nest. */
2570 struct nesting *
2571 expand_start_null_loop ()
2573 struct nesting *thisloop = ALLOC_NESTING ();
2575 /* Make an entry on loop_stack for the loop we are entering. */
2577 thisloop->desc = LOOP_NESTING;
2578 thisloop->next = loop_stack;
2579 thisloop->all = nesting_stack;
2580 thisloop->depth = ++nesting_depth;
2581 thisloop->data.loop.start_label = emit_note (NULL, NOTE_INSN_DELETED);
2582 thisloop->data.loop.end_label = gen_label_rtx ();
2583 thisloop->data.loop.continue_label = thisloop->data.loop.end_label;
2584 thisloop->exit_label = thisloop->data.loop.end_label;
2585 loop_stack = thisloop;
2586 nesting_stack = thisloop;
2588 return thisloop;
2591 /* Specify the continuation point for a loop started with
2592 expand_start_loop_continue_elsewhere.
2593 Use this at the point in the code to which a continue statement
2594 should jump. */
2596 void
2597 expand_loop_continue_here ()
2599 do_pending_stack_adjust ();
2600 emit_note (NULL, NOTE_INSN_LOOP_CONT);
2601 emit_label (loop_stack->data.loop.continue_label);
2604 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2605 Pop the block off of loop_stack. */
2607 void
2608 expand_end_loop ()
2610 rtx start_label = loop_stack->data.loop.start_label;
2611 rtx etc_note;
2612 int eh_regions, debug_blocks;
2613 bool empty_test;
2615 /* Mark the continue-point at the top of the loop if none elsewhere. */
2616 if (start_label == loop_stack->data.loop.continue_label)
2617 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2619 do_pending_stack_adjust ();
2621 /* If the loop starts with a loop exit, roll that to the end where
2622 it will optimize together with the jump back.
2624 If the loop presently looks like this (in pseudo-C):
2626 LOOP_BEG
2627 start_label:
2628 if (test) goto end_label;
2629 LOOP_END_TOP_COND
2630 body;
2631 goto start_label;
2632 end_label:
2634 transform it to look like:
2636 LOOP_BEG
2637 goto start_label;
2638 top_label:
2639 body;
2640 start_label:
2641 if (test) goto end_label;
2642 goto top_label;
2643 end_label:
2645 We rely on the presence of NOTE_INSN_LOOP_END_TOP_COND to mark
2646 the end of the entry conditional. Without this, our lexical scan
2647 can't tell the difference between an entry conditional and a
2648 body conditional that exits the loop. Mistaking the two means
2649 that we can misplace the NOTE_INSN_LOOP_CONT note, which can
2650 screw up loop unrolling.
2652 Things will be oh so much better when loop optimization is done
2653 off of a proper control flow graph... */
2655 /* Scan insns from the top of the loop looking for the END_TOP_COND note. */
2657 empty_test = true;
2658 eh_regions = debug_blocks = 0;
2659 for (etc_note = start_label; etc_note ; etc_note = NEXT_INSN (etc_note))
2660 if (GET_CODE (etc_note) == NOTE)
2662 if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_END_TOP_COND)
2663 break;
2665 /* We must not walk into a nested loop. */
2666 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_BEG)
2668 etc_note = NULL_RTX;
2669 break;
2672 /* At the same time, scan for EH region notes, as we don't want
2673 to scrog region nesting. This shouldn't happen, but... */
2674 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_BEG)
2675 eh_regions++;
2676 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_END)
2678 if (--eh_regions < 0)
2679 /* We've come to the end of an EH region, but never saw the
2680 beginning of that region. That means that an EH region
2681 begins before the top of the loop, and ends in the middle
2682 of it. The existence of such a situation violates a basic
2683 assumption in this code, since that would imply that even
2684 when EH_REGIONS is zero, we might move code out of an
2685 exception region. */
2686 abort ();
2689 /* Likewise for debug scopes. In this case we'll either (1) move
2690 all of the notes if they are properly nested or (2) leave the
2691 notes alone and only rotate the loop at high optimization
2692 levels when we expect to scrog debug info. */
2693 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_BEG)
2694 debug_blocks++;
2695 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_END)
2696 debug_blocks--;
2698 else if (INSN_P (etc_note))
2699 empty_test = false;
2701 if (etc_note
2702 && optimize
2703 && ! empty_test
2704 && eh_regions == 0
2705 && (debug_blocks == 0 || optimize >= 2)
2706 && NEXT_INSN (etc_note) != NULL_RTX
2707 && ! any_condjump_p (get_last_insn ()))
2709 /* We found one. Move everything from START to ETC to the end
2710 of the loop, and add a jump from the top of the loop. */
2711 rtx top_label = gen_label_rtx ();
2712 rtx start_move = start_label;
2714 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2715 then we want to move this note also. */
2716 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2717 && NOTE_LINE_NUMBER (PREV_INSN (start_move)) == NOTE_INSN_LOOP_CONT)
2718 start_move = PREV_INSN (start_move);
2720 emit_label_before (top_label, start_move);
2722 /* Actually move the insns. If the debug scopes are nested, we
2723 can move everything at once. Otherwise we have to move them
2724 one by one and squeeze out the block notes. */
2725 if (debug_blocks == 0)
2726 reorder_insns (start_move, etc_note, get_last_insn ());
2727 else
2729 rtx insn, next_insn;
2730 for (insn = start_move; insn; insn = next_insn)
2732 /* Figure out which insn comes after this one. We have
2733 to do this before we move INSN. */
2734 next_insn = (insn == etc_note ? NULL : NEXT_INSN (insn));
2736 if (GET_CODE (insn) == NOTE
2737 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2738 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2739 continue;
2741 reorder_insns (insn, insn, get_last_insn ());
2745 /* Add the jump from the top of the loop. */
2746 emit_jump_insn_before (gen_jump (start_label), top_label);
2747 emit_barrier_before (top_label);
2748 start_label = top_label;
2751 emit_jump (start_label);
2752 emit_note (NULL, NOTE_INSN_LOOP_END);
2753 emit_label (loop_stack->data.loop.end_label);
2755 POPSTACK (loop_stack);
2757 clear_last_expr ();
2760 /* Finish a null loop, aka do { } while (0). */
2762 void
2763 expand_end_null_loop ()
2765 do_pending_stack_adjust ();
2766 emit_label (loop_stack->data.loop.end_label);
2768 POPSTACK (loop_stack);
2770 clear_last_expr ();
2773 /* Generate a jump to the current loop's continue-point.
2774 This is usually the top of the loop, but may be specified
2775 explicitly elsewhere. If not currently inside a loop,
2776 return 0 and do nothing; caller will print an error message. */
2779 expand_continue_loop (whichloop)
2780 struct nesting *whichloop;
2782 /* Emit information for branch prediction. */
2783 rtx note;
2785 if (flag_guess_branch_prob)
2787 note = emit_note (NULL, NOTE_INSN_PREDICTION);
2788 NOTE_PREDICTION (note) = NOTE_PREDICT (PRED_CONTINUE, IS_TAKEN);
2790 clear_last_expr ();
2791 if (whichloop == 0)
2792 whichloop = loop_stack;
2793 if (whichloop == 0)
2794 return 0;
2795 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2796 NULL_RTX);
2797 return 1;
2800 /* Generate a jump to exit the current loop. If not currently inside a loop,
2801 return 0 and do nothing; caller will print an error message. */
2804 expand_exit_loop (whichloop)
2805 struct nesting *whichloop;
2807 clear_last_expr ();
2808 if (whichloop == 0)
2809 whichloop = loop_stack;
2810 if (whichloop == 0)
2811 return 0;
2812 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2813 return 1;
2816 /* Generate a conditional jump to exit the current loop if COND
2817 evaluates to zero. If not currently inside a loop,
2818 return 0 and do nothing; caller will print an error message. */
2821 expand_exit_loop_if_false (whichloop, cond)
2822 struct nesting *whichloop;
2823 tree cond;
2825 rtx label;
2826 clear_last_expr ();
2828 if (whichloop == 0)
2829 whichloop = loop_stack;
2830 if (whichloop == 0)
2831 return 0;
2833 if (integer_nonzerop (cond))
2834 return 1;
2835 if (integer_zerop (cond))
2836 return expand_exit_loop (whichloop);
2838 /* Check if we definitely won't need a fixup. */
2839 if (whichloop == nesting_stack)
2841 jumpifnot (cond, whichloop->data.loop.end_label);
2842 return 1;
2845 /* In order to handle fixups, we actually create a conditional jump
2846 around an unconditional branch to exit the loop. If fixups are
2847 necessary, they go before the unconditional branch. */
2849 label = gen_label_rtx ();
2850 jumpif (cond, label);
2851 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2852 NULL_RTX);
2853 emit_label (label);
2855 return 1;
2858 /* Like expand_exit_loop_if_false except also emit a note marking
2859 the end of the conditional. Should only be used immediately
2860 after expand_loop_start. */
2863 expand_exit_loop_top_cond (whichloop, cond)
2864 struct nesting *whichloop;
2865 tree cond;
2867 if (! expand_exit_loop_if_false (whichloop, cond))
2868 return 0;
2870 emit_note (NULL, NOTE_INSN_LOOP_END_TOP_COND);
2871 return 1;
2874 /* Return nonzero if we should preserve sub-expressions as separate
2875 pseudos. We never do so if we aren't optimizing. We always do so
2876 if -fexpensive-optimizations.
2878 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2879 the loop may still be a small one. */
2882 preserve_subexpressions_p ()
2884 rtx insn;
2886 if (flag_expensive_optimizations)
2887 return 1;
2889 if (optimize == 0 || cfun == 0 || cfun->stmt == 0 || loop_stack == 0)
2890 return 0;
2892 insn = get_last_insn_anywhere ();
2894 return (insn
2895 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2896 < n_non_fixed_regs * 3));
2900 /* Generate a jump to exit the current loop, conditional, binding contour
2901 or case statement. Not all such constructs are visible to this function,
2902 only those started with EXIT_FLAG nonzero. Individual languages use
2903 the EXIT_FLAG parameter to control which kinds of constructs you can
2904 exit this way.
2906 If not currently inside anything that can be exited,
2907 return 0 and do nothing; caller will print an error message. */
2910 expand_exit_something ()
2912 struct nesting *n;
2913 clear_last_expr ();
2914 for (n = nesting_stack; n; n = n->all)
2915 if (n->exit_label != 0)
2917 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2918 return 1;
2921 return 0;
2924 /* Generate RTL to return from the current function, with no value.
2925 (That is, we do not do anything about returning any value.) */
2927 void
2928 expand_null_return ()
2930 rtx last_insn;
2932 last_insn = get_last_insn ();
2934 /* If this function was declared to return a value, but we
2935 didn't, clobber the return registers so that they are not
2936 propagated live to the rest of the function. */
2937 clobber_return_register ();
2939 expand_null_return_1 (last_insn);
2942 /* Try to guess whether the value of return means error code. */
2943 static enum br_predictor
2944 return_prediction (val)
2945 rtx val;
2947 /* Different heuristics for pointers and scalars. */
2948 if (POINTER_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl))))
2950 /* NULL is usually not returned. */
2951 if (val == const0_rtx)
2952 return PRED_NULL_RETURN;
2954 else
2956 /* Negative return values are often used to indicate
2957 errors. */
2958 if (GET_CODE (val) == CONST_INT
2959 && INTVAL (val) < 0)
2960 return PRED_NEGATIVE_RETURN;
2961 /* Constant return values are also usually erors,
2962 zero/one often mean booleans so exclude them from the
2963 heuristics. */
2964 if (CONSTANT_P (val)
2965 && (val != const0_rtx && val != const1_rtx))
2966 return PRED_CONST_RETURN;
2968 return PRED_NO_PREDICTION;
2971 /* Generate RTL to return from the current function, with value VAL. */
2973 static void
2974 expand_value_return (val)
2975 rtx val;
2977 rtx last_insn;
2978 rtx return_reg;
2979 enum br_predictor pred;
2981 if (flag_guess_branch_prob
2982 && (pred = return_prediction (val)) != PRED_NO_PREDICTION)
2984 /* Emit information for branch prediction. */
2985 rtx note;
2987 note = emit_note (NULL, NOTE_INSN_PREDICTION);
2989 NOTE_PREDICTION (note) = NOTE_PREDICT (pred, NOT_TAKEN);
2993 last_insn = get_last_insn ();
2994 return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2996 /* Copy the value to the return location
2997 unless it's already there. */
2999 if (return_reg != val)
3001 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
3002 #ifdef PROMOTE_FUNCTION_RETURN
3003 int unsignedp = TREE_UNSIGNED (type);
3004 enum machine_mode old_mode
3005 = DECL_MODE (DECL_RESULT (current_function_decl));
3006 enum machine_mode mode
3007 = promote_mode (type, old_mode, &unsignedp, 1);
3009 if (mode != old_mode)
3010 val = convert_modes (mode, old_mode, val, unsignedp);
3011 #endif
3012 if (GET_CODE (return_reg) == PARALLEL)
3013 emit_group_load (return_reg, val, int_size_in_bytes (type));
3014 else
3015 emit_move_insn (return_reg, val);
3018 expand_null_return_1 (last_insn);
3021 /* Output a return with no value. If LAST_INSN is nonzero,
3022 pretend that the return takes place after LAST_INSN. */
3024 static void
3025 expand_null_return_1 (last_insn)
3026 rtx last_insn;
3028 rtx end_label = cleanup_label ? cleanup_label : return_label;
3030 clear_pending_stack_adjust ();
3031 do_pending_stack_adjust ();
3032 clear_last_expr ();
3034 if (end_label == 0)
3035 end_label = return_label = gen_label_rtx ();
3036 expand_goto_internal (NULL_TREE, end_label, last_insn);
3039 /* Generate RTL to evaluate the expression RETVAL and return it
3040 from the current function. */
3042 void
3043 expand_return (retval)
3044 tree retval;
3046 /* If there are any cleanups to be performed, then they will
3047 be inserted following LAST_INSN. It is desirable
3048 that the last_insn, for such purposes, should be the
3049 last insn before computing the return value. Otherwise, cleanups
3050 which call functions can clobber the return value. */
3051 /* ??? rms: I think that is erroneous, because in C++ it would
3052 run destructors on variables that might be used in the subsequent
3053 computation of the return value. */
3054 rtx last_insn = 0;
3055 rtx result_rtl;
3056 rtx val = 0;
3057 tree retval_rhs;
3059 /* If function wants no value, give it none. */
3060 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
3062 expand_expr (retval, NULL_RTX, VOIDmode, 0);
3063 emit_queue ();
3064 expand_null_return ();
3065 return;
3068 if (retval == error_mark_node)
3070 /* Treat this like a return of no value from a function that
3071 returns a value. */
3072 expand_null_return ();
3073 return;
3075 else if (TREE_CODE (retval) == RESULT_DECL)
3076 retval_rhs = retval;
3077 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
3078 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
3079 retval_rhs = TREE_OPERAND (retval, 1);
3080 else if (VOID_TYPE_P (TREE_TYPE (retval)))
3081 /* Recognize tail-recursive call to void function. */
3082 retval_rhs = retval;
3083 else
3084 retval_rhs = NULL_TREE;
3086 last_insn = get_last_insn ();
3088 /* Distribute return down conditional expr if either of the sides
3089 may involve tail recursion (see test below). This enhances the number
3090 of tail recursions we see. Don't do this always since it can produce
3091 sub-optimal code in some cases and we distribute assignments into
3092 conditional expressions when it would help. */
3094 if (optimize && retval_rhs != 0
3095 && frame_offset == 0
3096 && TREE_CODE (retval_rhs) == COND_EXPR
3097 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
3098 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
3100 rtx label = gen_label_rtx ();
3101 tree expr;
3103 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
3104 start_cleanup_deferral ();
3105 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
3106 DECL_RESULT (current_function_decl),
3107 TREE_OPERAND (retval_rhs, 1));
3108 TREE_SIDE_EFFECTS (expr) = 1;
3109 expand_return (expr);
3110 emit_label (label);
3112 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
3113 DECL_RESULT (current_function_decl),
3114 TREE_OPERAND (retval_rhs, 2));
3115 TREE_SIDE_EFFECTS (expr) = 1;
3116 expand_return (expr);
3117 end_cleanup_deferral ();
3118 return;
3121 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
3123 /* If the result is an aggregate that is being returned in one (or more)
3124 registers, load the registers here. The compiler currently can't handle
3125 copying a BLKmode value into registers. We could put this code in a
3126 more general area (for use by everyone instead of just function
3127 call/return), but until this feature is generally usable it is kept here
3128 (and in expand_call). The value must go into a pseudo in case there
3129 are cleanups that will clobber the real return register. */
3131 if (retval_rhs != 0
3132 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
3133 && GET_CODE (result_rtl) == REG)
3135 int i;
3136 unsigned HOST_WIDE_INT bitpos, xbitpos;
3137 unsigned HOST_WIDE_INT big_endian_correction = 0;
3138 unsigned HOST_WIDE_INT bytes
3139 = int_size_in_bytes (TREE_TYPE (retval_rhs));
3140 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3141 unsigned int bitsize
3142 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
3143 rtx *result_pseudos = (rtx *) alloca (sizeof (rtx) * n_regs);
3144 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
3145 rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
3146 enum machine_mode tmpmode, result_reg_mode;
3148 if (bytes == 0)
3150 expand_null_return ();
3151 return;
3154 /* Structures whose size is not a multiple of a word are aligned
3155 to the least significant byte (to the right). On a BYTES_BIG_ENDIAN
3156 machine, this means we must skip the empty high order bytes when
3157 calculating the bit offset. */
3158 if (BYTES_BIG_ENDIAN
3159 && bytes % UNITS_PER_WORD)
3160 big_endian_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
3161 * BITS_PER_UNIT));
3163 /* Copy the structure BITSIZE bits at a time. */
3164 for (bitpos = 0, xbitpos = big_endian_correction;
3165 bitpos < bytes * BITS_PER_UNIT;
3166 bitpos += bitsize, xbitpos += bitsize)
3168 /* We need a new destination pseudo each time xbitpos is
3169 on a word boundary and when xbitpos == big_endian_correction
3170 (the first time through). */
3171 if (xbitpos % BITS_PER_WORD == 0
3172 || xbitpos == big_endian_correction)
3174 /* Generate an appropriate register. */
3175 dst = gen_reg_rtx (word_mode);
3176 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
3178 /* Clear the destination before we move anything into it. */
3179 emit_move_insn (dst, CONST0_RTX (GET_MODE (dst)));
3182 /* We need a new source operand each time bitpos is on a word
3183 boundary. */
3184 if (bitpos % BITS_PER_WORD == 0)
3185 src = operand_subword_force (result_val,
3186 bitpos / BITS_PER_WORD,
3187 BLKmode);
3189 /* Use bitpos for the source extraction (left justified) and
3190 xbitpos for the destination store (right justified). */
3191 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
3192 extract_bit_field (src, bitsize,
3193 bitpos % BITS_PER_WORD, 1,
3194 NULL_RTX, word_mode, word_mode,
3195 BITS_PER_WORD),
3196 BITS_PER_WORD);
3199 /* Find the smallest integer mode large enough to hold the
3200 entire structure and use that mode instead of BLKmode
3201 on the USE insn for the return register. */
3202 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3203 tmpmode != VOIDmode;
3204 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
3205 /* Have we found a large enough mode? */
3206 if (GET_MODE_SIZE (tmpmode) >= bytes)
3207 break;
3209 /* No suitable mode found. */
3210 if (tmpmode == VOIDmode)
3211 abort ();
3213 PUT_MODE (result_rtl, tmpmode);
3215 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
3216 result_reg_mode = word_mode;
3217 else
3218 result_reg_mode = tmpmode;
3219 result_reg = gen_reg_rtx (result_reg_mode);
3221 emit_queue ();
3222 for (i = 0; i < n_regs; i++)
3223 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
3224 result_pseudos[i]);
3226 if (tmpmode != result_reg_mode)
3227 result_reg = gen_lowpart (tmpmode, result_reg);
3229 expand_value_return (result_reg);
3231 else if (retval_rhs != 0
3232 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3233 && (GET_CODE (result_rtl) == REG
3234 || (GET_CODE (result_rtl) == PARALLEL)))
3236 /* Calculate the return value into a temporary (usually a pseudo
3237 reg). */
3238 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
3239 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
3241 val = assign_temp (nt, 0, 0, 1);
3242 val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3243 val = force_not_mem (val);
3244 emit_queue ();
3245 /* Return the calculated value, doing cleanups first. */
3246 expand_value_return (val);
3248 else
3250 /* No cleanups or no hard reg used;
3251 calculate value into hard return reg. */
3252 expand_expr (retval, const0_rtx, VOIDmode, 0);
3253 emit_queue ();
3254 expand_value_return (result_rtl);
3258 /* Attempt to optimize a potential tail recursion call into a goto.
3259 ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3260 where to place the jump to the tail recursion label.
3262 Return TRUE if the call was optimized into a goto. */
3265 optimize_tail_recursion (arguments, last_insn)
3266 tree arguments;
3267 rtx last_insn;
3269 /* Finish checking validity, and if valid emit code to set the
3270 argument variables for the new call. */
3271 if (tail_recursion_args (arguments, DECL_ARGUMENTS (current_function_decl)))
3273 if (tail_recursion_label == 0)
3275 tail_recursion_label = gen_label_rtx ();
3276 emit_label_after (tail_recursion_label,
3277 tail_recursion_reentry);
3279 emit_queue ();
3280 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3281 emit_barrier ();
3282 return 1;
3284 return 0;
3287 /* Emit code to alter this function's formal parms for a tail-recursive call.
3288 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3289 FORMALS is the chain of decls of formals.
3290 Return 1 if this can be done;
3291 otherwise return 0 and do not emit any code. */
3293 static int
3294 tail_recursion_args (actuals, formals)
3295 tree actuals, formals;
3297 tree a = actuals, f = formals;
3298 int i;
3299 rtx *argvec;
3301 /* Check that number and types of actuals are compatible
3302 with the formals. This is not always true in valid C code.
3303 Also check that no formal needs to be addressable
3304 and that all formals are scalars. */
3306 /* Also count the args. */
3308 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3310 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3311 != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3312 return 0;
3313 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3314 return 0;
3316 if (a != 0 || f != 0)
3317 return 0;
3319 /* Compute all the actuals. */
3321 argvec = (rtx *) alloca (i * sizeof (rtx));
3323 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3324 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3326 /* Find which actual values refer to current values of previous formals.
3327 Copy each of them now, before any formal is changed. */
3329 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3331 int copy = 0;
3332 int j;
3333 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3334 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3336 copy = 1;
3337 break;
3339 if (copy)
3340 argvec[i] = copy_to_reg (argvec[i]);
3343 /* Store the values of the actuals into the formals. */
3345 for (f = formals, a = actuals, i = 0; f;
3346 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3348 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3349 emit_move_insn (DECL_RTL (f), argvec[i]);
3350 else
3352 rtx tmp = argvec[i];
3353 int unsignedp = TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a)));
3354 promote_mode(TREE_TYPE (TREE_VALUE (a)), GET_MODE (tmp),
3355 &unsignedp, 0);
3356 if (DECL_MODE (f) != GET_MODE (DECL_RTL (f)))
3358 tmp = gen_reg_rtx (DECL_MODE (f));
3359 convert_move (tmp, argvec[i], unsignedp);
3361 convert_move (DECL_RTL (f), tmp, unsignedp);
3365 free_temp_slots ();
3366 return 1;
3369 /* Generate the RTL code for entering a binding contour.
3370 The variables are declared one by one, by calls to `expand_decl'.
3372 FLAGS is a bitwise or of the following flags:
3374 1 - Nonzero if this construct should be visible to
3375 `exit_something'.
3377 2 - Nonzero if this contour does not require a
3378 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3379 language-independent code should set this flag because they
3380 will not create corresponding BLOCK nodes. (There should be
3381 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3382 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3383 when expand_end_bindings is called.
3385 If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3386 optionally be supplied. If so, it becomes the NOTE_BLOCK for the
3387 note. */
3389 void
3390 expand_start_bindings_and_block (flags, block)
3391 int flags;
3392 tree block;
3394 struct nesting *thisblock = ALLOC_NESTING ();
3395 rtx note;
3396 int exit_flag = ((flags & 1) != 0);
3397 int block_flag = ((flags & 2) == 0);
3399 /* If a BLOCK is supplied, then the caller should be requesting a
3400 NOTE_INSN_BLOCK_BEG note. */
3401 if (!block_flag && block)
3402 abort ();
3404 /* Create a note to mark the beginning of the block. */
3405 if (block_flag)
3407 note = emit_note (NULL, NOTE_INSN_BLOCK_BEG);
3408 NOTE_BLOCK (note) = block;
3410 else
3411 note = emit_note (NULL, NOTE_INSN_DELETED);
3413 /* Make an entry on block_stack for the block we are entering. */
3415 thisblock->desc = BLOCK_NESTING;
3416 thisblock->next = block_stack;
3417 thisblock->all = nesting_stack;
3418 thisblock->depth = ++nesting_depth;
3419 thisblock->data.block.stack_level = 0;
3420 thisblock->data.block.cleanups = 0;
3421 thisblock->data.block.n_function_calls = 0;
3422 thisblock->data.block.exception_region = 0;
3423 thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3425 thisblock->data.block.conditional_code = 0;
3426 thisblock->data.block.last_unconditional_cleanup = note;
3427 /* When we insert instructions after the last unconditional cleanup,
3428 we don't adjust last_insn. That means that a later add_insn will
3429 clobber the instructions we've just added. The easiest way to
3430 fix this is to just insert another instruction here, so that the
3431 instructions inserted after the last unconditional cleanup are
3432 never the last instruction. */
3433 emit_note (NULL, NOTE_INSN_DELETED);
3435 if (block_stack
3436 && !(block_stack->data.block.cleanups == NULL_TREE
3437 && block_stack->data.block.outer_cleanups == NULL_TREE))
3438 thisblock->data.block.outer_cleanups
3439 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3440 block_stack->data.block.outer_cleanups);
3441 else
3442 thisblock->data.block.outer_cleanups = 0;
3443 thisblock->data.block.label_chain = 0;
3444 thisblock->data.block.innermost_stack_block = stack_block_stack;
3445 thisblock->data.block.first_insn = note;
3446 thisblock->data.block.block_start_count = ++current_block_start_count;
3447 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3448 block_stack = thisblock;
3449 nesting_stack = thisblock;
3451 /* Make a new level for allocating stack slots. */
3452 push_temp_slots ();
3455 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3456 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3457 expand_expr are made. After we end the region, we know that all
3458 space for all temporaries that were created by TARGET_EXPRs will be
3459 destroyed and their space freed for reuse. */
3461 void
3462 expand_start_target_temps ()
3464 /* This is so that even if the result is preserved, the space
3465 allocated will be freed, as we know that it is no longer in use. */
3466 push_temp_slots ();
3468 /* Start a new binding layer that will keep track of all cleanup
3469 actions to be performed. */
3470 expand_start_bindings (2);
3472 target_temp_slot_level = temp_slot_level;
3475 void
3476 expand_end_target_temps ()
3478 expand_end_bindings (NULL_TREE, 0, 0);
3480 /* This is so that even if the result is preserved, the space
3481 allocated will be freed, as we know that it is no longer in use. */
3482 pop_temp_slots ();
3485 /* Given a pointer to a BLOCK node return nonzero if (and only if) the node
3486 in question represents the outermost pair of curly braces (i.e. the "body
3487 block") of a function or method.
3489 For any BLOCK node representing a "body block" of a function or method, the
3490 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3491 represents the outermost (function) scope for the function or method (i.e.
3492 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
3493 *that* node in turn will point to the relevant FUNCTION_DECL node. */
3496 is_body_block (stmt)
3497 tree stmt;
3499 if (TREE_CODE (stmt) == BLOCK)
3501 tree parent = BLOCK_SUPERCONTEXT (stmt);
3503 if (parent && TREE_CODE (parent) == BLOCK)
3505 tree grandparent = BLOCK_SUPERCONTEXT (parent);
3507 if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
3508 return 1;
3512 return 0;
3515 /* True if we are currently emitting insns in an area of output code
3516 that is controlled by a conditional expression. This is used by
3517 the cleanup handling code to generate conditional cleanup actions. */
3520 conditional_context ()
3522 return block_stack && block_stack->data.block.conditional_code;
3525 /* Return an opaque pointer to the current nesting level, so frontend code
3526 can check its own sanity. */
3528 struct nesting *
3529 current_nesting_level ()
3531 return cfun ? block_stack : 0;
3534 /* Emit a handler label for a nonlocal goto handler.
3535 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3537 static rtx
3538 expand_nl_handler_label (slot, before_insn)
3539 rtx slot, before_insn;
3541 rtx insns;
3542 rtx handler_label = gen_label_rtx ();
3544 /* Don't let cleanup_cfg delete the handler. */
3545 LABEL_PRESERVE_P (handler_label) = 1;
3547 start_sequence ();
3548 emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3549 insns = get_insns ();
3550 end_sequence ();
3551 emit_insn_before (insns, before_insn);
3553 emit_label (handler_label);
3555 return handler_label;
3558 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3559 handler. */
3560 static void
3561 expand_nl_goto_receiver ()
3563 #ifdef HAVE_nonlocal_goto
3564 if (! HAVE_nonlocal_goto)
3565 #endif
3566 /* First adjust our frame pointer to its actual value. It was
3567 previously set to the start of the virtual area corresponding to
3568 the stacked variables when we branched here and now needs to be
3569 adjusted to the actual hardware fp value.
3571 Assignments are to virtual registers are converted by
3572 instantiate_virtual_regs into the corresponding assignment
3573 to the underlying register (fp in this case) that makes
3574 the original assignment true.
3575 So the following insn will actually be
3576 decrementing fp by STARTING_FRAME_OFFSET. */
3577 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3579 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3580 if (fixed_regs[ARG_POINTER_REGNUM])
3582 #ifdef ELIMINABLE_REGS
3583 /* If the argument pointer can be eliminated in favor of the
3584 frame pointer, we don't need to restore it. We assume here
3585 that if such an elimination is present, it can always be used.
3586 This is the case on all known machines; if we don't make this
3587 assumption, we do unnecessary saving on many machines. */
3588 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
3589 size_t i;
3591 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
3592 if (elim_regs[i].from == ARG_POINTER_REGNUM
3593 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3594 break;
3596 if (i == ARRAY_SIZE (elim_regs))
3597 #endif
3599 /* Now restore our arg pointer from the address at which it
3600 was saved in our stack frame. */
3601 emit_move_insn (virtual_incoming_args_rtx,
3602 copy_to_reg (get_arg_pointer_save_area (cfun)));
3605 #endif
3607 #ifdef HAVE_nonlocal_goto_receiver
3608 if (HAVE_nonlocal_goto_receiver)
3609 emit_insn (gen_nonlocal_goto_receiver ());
3610 #endif
3613 /* Make handlers for nonlocal gotos taking place in the function calls in
3614 block THISBLOCK. */
3616 static void
3617 expand_nl_goto_receivers (thisblock)
3618 struct nesting *thisblock;
3620 tree link;
3621 rtx afterward = gen_label_rtx ();
3622 rtx insns, slot;
3623 rtx label_list;
3624 int any_invalid;
3626 /* Record the handler address in the stack slot for that purpose,
3627 during this block, saving and restoring the outer value. */
3628 if (thisblock->next != 0)
3629 for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3631 rtx save_receiver = gen_reg_rtx (Pmode);
3632 emit_move_insn (XEXP (slot, 0), save_receiver);
3634 start_sequence ();
3635 emit_move_insn (save_receiver, XEXP (slot, 0));
3636 insns = get_insns ();
3637 end_sequence ();
3638 emit_insn_before (insns, thisblock->data.block.first_insn);
3641 /* Jump around the handlers; they run only when specially invoked. */
3642 emit_jump (afterward);
3644 /* Make a separate handler for each label. */
3645 link = nonlocal_labels;
3646 slot = nonlocal_goto_handler_slots;
3647 label_list = NULL_RTX;
3648 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3649 /* Skip any labels we shouldn't be able to jump to from here,
3650 we generate one special handler for all of them below which just calls
3651 abort. */
3652 if (! DECL_TOO_LATE (TREE_VALUE (link)))
3654 rtx lab;
3655 lab = expand_nl_handler_label (XEXP (slot, 0),
3656 thisblock->data.block.first_insn);
3657 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3659 expand_nl_goto_receiver ();
3661 /* Jump to the "real" nonlocal label. */
3662 expand_goto (TREE_VALUE (link));
3665 /* A second pass over all nonlocal labels; this time we handle those
3666 we should not be able to jump to at this point. */
3667 link = nonlocal_labels;
3668 slot = nonlocal_goto_handler_slots;
3669 any_invalid = 0;
3670 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3671 if (DECL_TOO_LATE (TREE_VALUE (link)))
3673 rtx lab;
3674 lab = expand_nl_handler_label (XEXP (slot, 0),
3675 thisblock->data.block.first_insn);
3676 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3677 any_invalid = 1;
3680 if (any_invalid)
3682 expand_nl_goto_receiver ();
3683 expand_builtin_trap ();
3686 nonlocal_goto_handler_labels = label_list;
3687 emit_label (afterward);
3690 /* Warn about any unused VARS (which may contain nodes other than
3691 VAR_DECLs, but such nodes are ignored). The nodes are connected
3692 via the TREE_CHAIN field. */
3694 void
3695 warn_about_unused_variables (vars)
3696 tree vars;
3698 tree decl;
3700 if (warn_unused_variable)
3701 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3702 if (TREE_CODE (decl) == VAR_DECL
3703 && ! TREE_USED (decl)
3704 && ! DECL_IN_SYSTEM_HEADER (decl)
3705 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3706 warning_with_decl (decl, "unused variable `%s'");
3709 /* Generate RTL code to terminate a binding contour.
3711 VARS is the chain of VAR_DECL nodes for the variables bound in this
3712 contour. There may actually be other nodes in this chain, but any
3713 nodes other than VAR_DECLS are ignored.
3715 MARK_ENDS is nonzero if we should put a note at the beginning
3716 and end of this binding contour.
3718 DONT_JUMP_IN is positive if it is not valid to jump into this contour,
3719 zero if we can jump into this contour only if it does not have a saved
3720 stack level, and negative if we are not to check for invalid use of
3721 labels (because the front end does that). */
3723 void
3724 expand_end_bindings (vars, mark_ends, dont_jump_in)
3725 tree vars;
3726 int mark_ends;
3727 int dont_jump_in;
3729 struct nesting *thisblock = block_stack;
3731 /* If any of the variables in this scope were not used, warn the
3732 user. */
3733 warn_about_unused_variables (vars);
3735 if (thisblock->exit_label)
3737 do_pending_stack_adjust ();
3738 emit_label (thisblock->exit_label);
3741 /* If necessary, make handlers for nonlocal gotos taking
3742 place in the function calls in this block. */
3743 if (function_call_count != thisblock->data.block.n_function_calls
3744 && nonlocal_labels
3745 /* Make handler for outermost block
3746 if there were any nonlocal gotos to this function. */
3747 && (thisblock->next == 0 ? current_function_has_nonlocal_label
3748 /* Make handler for inner block if it has something
3749 special to do when you jump out of it. */
3750 : (thisblock->data.block.cleanups != 0
3751 || thisblock->data.block.stack_level != 0)))
3752 expand_nl_goto_receivers (thisblock);
3754 /* Don't allow jumping into a block that has a stack level.
3755 Cleanups are allowed, though. */
3756 if (dont_jump_in > 0
3757 || (dont_jump_in == 0 && thisblock->data.block.stack_level != 0))
3759 struct label_chain *chain;
3761 /* Any labels in this block are no longer valid to go to.
3762 Mark them to cause an error message. */
3763 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3765 DECL_TOO_LATE (chain->label) = 1;
3766 /* If any goto without a fixup came to this label,
3767 that must be an error, because gotos without fixups
3768 come from outside all saved stack-levels. */
3769 if (TREE_ADDRESSABLE (chain->label))
3770 error_with_decl (chain->label,
3771 "label `%s' used before containing binding contour");
3775 /* Restore stack level in effect before the block
3776 (only if variable-size objects allocated). */
3777 /* Perform any cleanups associated with the block. */
3779 if (thisblock->data.block.stack_level != 0
3780 || thisblock->data.block.cleanups != 0)
3782 int reachable;
3783 rtx insn;
3785 /* Don't let cleanups affect ({...}) constructs. */
3786 int old_expr_stmts_for_value = expr_stmts_for_value;
3787 rtx old_last_expr_value = last_expr_value;
3788 tree old_last_expr_type = last_expr_type;
3789 expr_stmts_for_value = 0;
3791 /* Only clean up here if this point can actually be reached. */
3792 insn = get_last_insn ();
3793 if (GET_CODE (insn) == NOTE)
3794 insn = prev_nonnote_insn (insn);
3795 reachable = (! insn || GET_CODE (insn) != BARRIER);
3797 /* Do the cleanups. */
3798 expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);
3799 if (reachable)
3800 do_pending_stack_adjust ();
3802 expr_stmts_for_value = old_expr_stmts_for_value;
3803 last_expr_value = old_last_expr_value;
3804 last_expr_type = old_last_expr_type;
3806 /* Restore the stack level. */
3808 if (reachable && thisblock->data.block.stack_level != 0)
3810 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3811 thisblock->data.block.stack_level, NULL_RTX);
3812 if (nonlocal_goto_handler_slots != 0)
3813 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3814 NULL_RTX);
3817 /* Any gotos out of this block must also do these things.
3818 Also report any gotos with fixups that came to labels in this
3819 level. */
3820 fixup_gotos (thisblock,
3821 thisblock->data.block.stack_level,
3822 thisblock->data.block.cleanups,
3823 thisblock->data.block.first_insn,
3824 dont_jump_in);
3827 /* Mark the beginning and end of the scope if requested.
3828 We do this now, after running cleanups on the variables
3829 just going out of scope, so they are in scope for their cleanups. */
3831 if (mark_ends)
3833 rtx note = emit_note (NULL, NOTE_INSN_BLOCK_END);
3834 NOTE_BLOCK (note) = NOTE_BLOCK (thisblock->data.block.first_insn);
3836 else
3837 /* Get rid of the beginning-mark if we don't make an end-mark. */
3838 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3840 /* Restore the temporary level of TARGET_EXPRs. */
3841 target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3843 /* Restore block_stack level for containing block. */
3845 stack_block_stack = thisblock->data.block.innermost_stack_block;
3846 POPSTACK (block_stack);
3848 /* Pop the stack slot nesting and free any slots at this level. */
3849 pop_temp_slots ();
3852 /* Generate code to save the stack pointer at the start of the current block
3853 and set up to restore it on exit. */
3855 void
3856 save_stack_pointer ()
3858 struct nesting *thisblock = block_stack;
3860 if (thisblock->data.block.stack_level == 0)
3862 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3863 &thisblock->data.block.stack_level,
3864 thisblock->data.block.first_insn);
3865 stack_block_stack = thisblock;
3869 /* Generate RTL for the automatic variable declaration DECL.
3870 (Other kinds of declarations are simply ignored if seen here.) */
3872 void
3873 expand_decl (decl)
3874 tree decl;
3876 tree type;
3878 type = TREE_TYPE (decl);
3880 /* For a CONST_DECL, set mode, alignment, and sizes from those of the
3881 type in case this node is used in a reference. */
3882 if (TREE_CODE (decl) == CONST_DECL)
3884 DECL_MODE (decl) = TYPE_MODE (type);
3885 DECL_ALIGN (decl) = TYPE_ALIGN (type);
3886 DECL_SIZE (decl) = TYPE_SIZE (type);
3887 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
3888 return;
3891 /* Otherwise, only automatic variables need any expansion done. Static and
3892 external variables, and external functions, will be handled by
3893 `assemble_variable' (called from finish_decl). TYPE_DECL requires
3894 nothing. PARM_DECLs are handled in `assign_parms'. */
3895 if (TREE_CODE (decl) != VAR_DECL)
3896 return;
3898 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3899 return;
3901 /* Create the RTL representation for the variable. */
3903 if (type == error_mark_node)
3904 SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
3906 else if (DECL_SIZE (decl) == 0)
3907 /* Variable with incomplete type. */
3909 rtx x;
3910 if (DECL_INITIAL (decl) == 0)
3911 /* Error message was already done; now avoid a crash. */
3912 x = gen_rtx_MEM (BLKmode, const0_rtx);
3913 else
3914 /* An initializer is going to decide the size of this array.
3915 Until we know the size, represent its address with a reg. */
3916 x = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
3918 set_mem_attributes (x, decl, 1);
3919 SET_DECL_RTL (decl, x);
3921 else if (DECL_MODE (decl) != BLKmode
3922 /* If -ffloat-store, don't put explicit float vars
3923 into regs. */
3924 && !(flag_float_store
3925 && TREE_CODE (type) == REAL_TYPE)
3926 && ! TREE_THIS_VOLATILE (decl)
3927 && (DECL_REGISTER (decl) || optimize))
3929 /* Automatic variable that can go in a register. */
3930 int unsignedp = TREE_UNSIGNED (type);
3931 enum machine_mode reg_mode
3932 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3934 SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
3936 mark_user_reg (DECL_RTL (decl));
3938 if (POINTER_TYPE_P (type))
3939 mark_reg_pointer (DECL_RTL (decl),
3940 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
3942 maybe_set_unchanging (DECL_RTL (decl), decl);
3944 /* If something wants our address, try to use ADDRESSOF. */
3945 if (TREE_ADDRESSABLE (decl))
3946 put_var_into_stack (decl, /*rescan=*/false);
3949 else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
3950 && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3951 && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
3952 STACK_CHECK_MAX_VAR_SIZE)))
3954 /* Variable of fixed size that goes on the stack. */
3955 rtx oldaddr = 0;
3956 rtx addr;
3957 rtx x;
3959 /* If we previously made RTL for this decl, it must be an array
3960 whose size was determined by the initializer.
3961 The old address was a register; set that register now
3962 to the proper address. */
3963 if (DECL_RTL_SET_P (decl))
3965 if (GET_CODE (DECL_RTL (decl)) != MEM
3966 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3967 abort ();
3968 oldaddr = XEXP (DECL_RTL (decl), 0);
3971 /* Set alignment we actually gave this decl. */
3972 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3973 : GET_MODE_BITSIZE (DECL_MODE (decl)));
3974 DECL_USER_ALIGN (decl) = 0;
3976 x = assign_temp (decl, 1, 1, 1);
3977 set_mem_attributes (x, decl, 1);
3978 SET_DECL_RTL (decl, x);
3980 if (oldaddr)
3982 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3983 if (addr != oldaddr)
3984 emit_move_insn (oldaddr, addr);
3987 else
3988 /* Dynamic-size object: must push space on the stack. */
3990 rtx address, size, x;
3992 /* Record the stack pointer on entry to block, if have
3993 not already done so. */
3994 do_pending_stack_adjust ();
3995 save_stack_pointer ();
3997 /* In function-at-a-time mode, variable_size doesn't expand this,
3998 so do it now. */
3999 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
4000 expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4001 const0_rtx, VOIDmode, 0);
4003 /* Compute the variable's size, in bytes. */
4004 size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
4005 free_temp_slots ();
4007 /* Allocate space on the stack for the variable. Note that
4008 DECL_ALIGN says how the variable is to be aligned and we
4009 cannot use it to conclude anything about the alignment of
4010 the size. */
4011 address = allocate_dynamic_stack_space (size, NULL_RTX,
4012 TYPE_ALIGN (TREE_TYPE (decl)));
4014 /* Reference the variable indirect through that rtx. */
4015 x = gen_rtx_MEM (DECL_MODE (decl), address);
4016 set_mem_attributes (x, decl, 1);
4017 SET_DECL_RTL (decl, x);
4020 /* Indicate the alignment we actually gave this variable. */
4021 #ifdef STACK_BOUNDARY
4022 DECL_ALIGN (decl) = STACK_BOUNDARY;
4023 #else
4024 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
4025 #endif
4026 DECL_USER_ALIGN (decl) = 0;
4030 /* Emit code to perform the initialization of a declaration DECL. */
4032 void
4033 expand_decl_init (decl)
4034 tree decl;
4036 int was_used = TREE_USED (decl);
4038 /* If this is a CONST_DECL, we don't have to generate any code. Likewise
4039 for static decls. */
4040 if (TREE_CODE (decl) == CONST_DECL
4041 || TREE_STATIC (decl))
4042 return;
4044 /* Compute and store the initial value now. */
4046 push_temp_slots ();
4048 if (DECL_INITIAL (decl) == error_mark_node)
4050 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
4052 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
4053 || code == POINTER_TYPE || code == REFERENCE_TYPE)
4054 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
4055 0, 0);
4056 emit_queue ();
4058 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
4060 emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
4061 expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
4062 emit_queue ();
4065 /* Don't let the initialization count as "using" the variable. */
4066 TREE_USED (decl) = was_used;
4068 /* Free any temporaries we made while initializing the decl. */
4069 preserve_temp_slots (NULL_RTX);
4070 free_temp_slots ();
4071 pop_temp_slots ();
4074 /* CLEANUP is an expression to be executed at exit from this binding contour;
4075 for example, in C++, it might call the destructor for this variable.
4077 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
4078 CLEANUP multiple times, and have the correct semantics. This
4079 happens in exception handling, for gotos, returns, breaks that
4080 leave the current scope.
4082 If CLEANUP is nonzero and DECL is zero, we record a cleanup
4083 that is not associated with any particular variable. */
4086 expand_decl_cleanup (decl, cleanup)
4087 tree decl, cleanup;
4089 struct nesting *thisblock;
4091 /* Error if we are not in any block. */
4092 if (cfun == 0 || block_stack == 0)
4093 return 0;
4095 thisblock = block_stack;
4097 /* Record the cleanup if there is one. */
4099 if (cleanup != 0)
4101 tree t;
4102 rtx seq;
4103 tree *cleanups = &thisblock->data.block.cleanups;
4104 int cond_context = conditional_context ();
4106 if (cond_context)
4108 rtx flag = gen_reg_rtx (word_mode);
4109 rtx set_flag_0;
4110 tree cond;
4112 start_sequence ();
4113 emit_move_insn (flag, const0_rtx);
4114 set_flag_0 = get_insns ();
4115 end_sequence ();
4117 thisblock->data.block.last_unconditional_cleanup
4118 = emit_insn_after (set_flag_0,
4119 thisblock->data.block.last_unconditional_cleanup);
4121 emit_move_insn (flag, const1_rtx);
4123 cond = build_decl (VAR_DECL, NULL_TREE,
4124 (*lang_hooks.types.type_for_mode) (word_mode, 1));
4125 SET_DECL_RTL (cond, flag);
4127 /* Conditionalize the cleanup. */
4128 cleanup = build (COND_EXPR, void_type_node,
4129 (*lang_hooks.truthvalue_conversion) (cond),
4130 cleanup, integer_zero_node);
4131 cleanup = fold (cleanup);
4133 cleanups = &thisblock->data.block.cleanups;
4136 cleanup = unsave_expr (cleanup);
4138 t = *cleanups = tree_cons (decl, cleanup, *cleanups);
4140 if (! cond_context)
4141 /* If this block has a cleanup, it belongs in stack_block_stack. */
4142 stack_block_stack = thisblock;
4144 if (cond_context)
4146 start_sequence ();
4149 if (! using_eh_for_cleanups_p)
4150 TREE_ADDRESSABLE (t) = 1;
4151 else
4152 expand_eh_region_start ();
4154 if (cond_context)
4156 seq = get_insns ();
4157 end_sequence ();
4158 if (seq)
4159 thisblock->data.block.last_unconditional_cleanup
4160 = emit_insn_after (seq,
4161 thisblock->data.block.last_unconditional_cleanup);
4163 else
4165 thisblock->data.block.last_unconditional_cleanup
4166 = get_last_insn ();
4167 /* When we insert instructions after the last unconditional cleanup,
4168 we don't adjust last_insn. That means that a later add_insn will
4169 clobber the instructions we've just added. The easiest way to
4170 fix this is to just insert another instruction here, so that the
4171 instructions inserted after the last unconditional cleanup are
4172 never the last instruction. */
4173 emit_note (NULL, NOTE_INSN_DELETED);
4176 return 1;
4179 /* Like expand_decl_cleanup, but maybe only run the cleanup if an exception
4180 is thrown. */
4183 expand_decl_cleanup_eh (decl, cleanup, eh_only)
4184 tree decl, cleanup;
4185 int eh_only;
4187 int ret = expand_decl_cleanup (decl, cleanup);
4188 if (cleanup && ret)
4190 tree node = block_stack->data.block.cleanups;
4191 CLEANUP_EH_ONLY (node) = eh_only;
4193 return ret;
4196 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4197 DECL_ELTS is the list of elements that belong to DECL's type.
4198 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4200 void
4201 expand_anon_union_decl (decl, cleanup, decl_elts)
4202 tree decl, cleanup, decl_elts;
4204 struct nesting *thisblock = cfun == 0 ? 0 : block_stack;
4205 rtx x;
4206 tree t;
4208 /* If any of the elements are addressable, so is the entire union. */
4209 for (t = decl_elts; t; t = TREE_CHAIN (t))
4210 if (TREE_ADDRESSABLE (TREE_VALUE (t)))
4212 TREE_ADDRESSABLE (decl) = 1;
4213 break;
4216 expand_decl (decl);
4217 expand_decl_cleanup (decl, cleanup);
4218 x = DECL_RTL (decl);
4220 /* Go through the elements, assigning RTL to each. */
4221 for (t = decl_elts; t; t = TREE_CHAIN (t))
4223 tree decl_elt = TREE_VALUE (t);
4224 tree cleanup_elt = TREE_PURPOSE (t);
4225 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
4227 /* If any of the elements are addressable, so is the entire
4228 union. */
4229 if (TREE_USED (decl_elt))
4230 TREE_USED (decl) = 1;
4232 /* Propagate the union's alignment to the elements. */
4233 DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
4234 DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
4236 /* If the element has BLKmode and the union doesn't, the union is
4237 aligned such that the element doesn't need to have BLKmode, so
4238 change the element's mode to the appropriate one for its size. */
4239 if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
4240 DECL_MODE (decl_elt) = mode
4241 = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
4243 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4244 instead create a new MEM rtx with the proper mode. */
4245 if (GET_CODE (x) == MEM)
4247 if (mode == GET_MODE (x))
4248 SET_DECL_RTL (decl_elt, x);
4249 else
4250 SET_DECL_RTL (decl_elt, adjust_address_nv (x, mode, 0));
4252 else if (GET_CODE (x) == REG)
4254 if (mode == GET_MODE (x))
4255 SET_DECL_RTL (decl_elt, x);
4256 else
4257 SET_DECL_RTL (decl_elt, gen_lowpart_SUBREG (mode, x));
4259 else
4260 abort ();
4262 /* Record the cleanup if there is one. */
4264 if (cleanup != 0)
4265 thisblock->data.block.cleanups
4266 = tree_cons (decl_elt, cleanup_elt,
4267 thisblock->data.block.cleanups);
4271 /* Expand a list of cleanups LIST.
4272 Elements may be expressions or may be nested lists.
4274 If DONT_DO is nonnull, then any list-element
4275 whose TREE_PURPOSE matches DONT_DO is omitted.
4276 This is sometimes used to avoid a cleanup associated with
4277 a value that is being returned out of the scope.
4279 If IN_FIXUP is nonzero, we are generating this cleanup for a fixup
4280 goto and handle protection regions specially in that case.
4282 If REACHABLE, we emit code, otherwise just inform the exception handling
4283 code about this finalization. */
4285 static void
4286 expand_cleanups (list, dont_do, in_fixup, reachable)
4287 tree list;
4288 tree dont_do;
4289 int in_fixup;
4290 int reachable;
4292 tree tail;
4293 for (tail = list; tail; tail = TREE_CHAIN (tail))
4294 if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
4296 if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
4297 expand_cleanups (TREE_VALUE (tail), dont_do, in_fixup, reachable);
4298 else
4300 if (! in_fixup && using_eh_for_cleanups_p)
4301 expand_eh_region_end_cleanup (TREE_VALUE (tail));
4303 if (reachable && !CLEANUP_EH_ONLY (tail))
4305 /* Cleanups may be run multiple times. For example,
4306 when exiting a binding contour, we expand the
4307 cleanups associated with that contour. When a goto
4308 within that binding contour has a target outside that
4309 contour, it will expand all cleanups from its scope to
4310 the target. Though the cleanups are expanded multiple
4311 times, the control paths are non-overlapping so the
4312 cleanups will not be executed twice. */
4314 /* We may need to protect from outer cleanups. */
4315 if (in_fixup && using_eh_for_cleanups_p)
4317 expand_eh_region_start ();
4319 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4321 expand_eh_region_end_fixup (TREE_VALUE (tail));
4323 else
4324 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
4326 free_temp_slots ();
4332 /* Mark when the context we are emitting RTL for as a conditional
4333 context, so that any cleanup actions we register with
4334 expand_decl_init will be properly conditionalized when those
4335 cleanup actions are later performed. Must be called before any
4336 expression (tree) is expanded that is within a conditional context. */
4338 void
4339 start_cleanup_deferral ()
4341 /* block_stack can be NULL if we are inside the parameter list. It is
4342 OK to do nothing, because cleanups aren't possible here. */
4343 if (block_stack)
4344 ++block_stack->data.block.conditional_code;
4347 /* Mark the end of a conditional region of code. Because cleanup
4348 deferrals may be nested, we may still be in a conditional region
4349 after we end the currently deferred cleanups, only after we end all
4350 deferred cleanups, are we back in unconditional code. */
4352 void
4353 end_cleanup_deferral ()
4355 /* block_stack can be NULL if we are inside the parameter list. It is
4356 OK to do nothing, because cleanups aren't possible here. */
4357 if (block_stack)
4358 --block_stack->data.block.conditional_code;
4361 tree
4362 last_cleanup_this_contour ()
4364 if (block_stack == 0)
4365 return 0;
4367 return block_stack->data.block.cleanups;
4370 /* Return 1 if there are any pending cleanups at this point.
4371 If THIS_CONTOUR is nonzero, check the current contour as well.
4372 Otherwise, look only at the contours that enclose this one. */
4375 any_pending_cleanups (this_contour)
4376 int this_contour;
4378 struct nesting *block;
4380 if (cfun == NULL || cfun->stmt == NULL || block_stack == 0)
4381 return 0;
4383 if (this_contour && block_stack->data.block.cleanups != NULL)
4384 return 1;
4385 if (block_stack->data.block.cleanups == 0
4386 && block_stack->data.block.outer_cleanups == 0)
4387 return 0;
4389 for (block = block_stack->next; block; block = block->next)
4390 if (block->data.block.cleanups != 0)
4391 return 1;
4393 return 0;
4396 /* Enter a case (Pascal) or switch (C) statement.
4397 Push a block onto case_stack and nesting_stack
4398 to accumulate the case-labels that are seen
4399 and to record the labels generated for the statement.
4401 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4402 Otherwise, this construct is transparent for `exit_something'.
4404 EXPR is the index-expression to be dispatched on.
4405 TYPE is its nominal type. We could simply convert EXPR to this type,
4406 but instead we take short cuts. */
4408 void
4409 expand_start_case (exit_flag, expr, type, printname)
4410 int exit_flag;
4411 tree expr;
4412 tree type;
4413 const char *printname;
4415 struct nesting *thiscase = ALLOC_NESTING ();
4417 /* Make an entry on case_stack for the case we are entering. */
4419 thiscase->desc = CASE_NESTING;
4420 thiscase->next = case_stack;
4421 thiscase->all = nesting_stack;
4422 thiscase->depth = ++nesting_depth;
4423 thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
4424 thiscase->data.case_stmt.case_list = 0;
4425 thiscase->data.case_stmt.index_expr = expr;
4426 thiscase->data.case_stmt.nominal_type = type;
4427 thiscase->data.case_stmt.default_label = 0;
4428 thiscase->data.case_stmt.printname = printname;
4429 thiscase->data.case_stmt.line_number_status = force_line_numbers ();
4430 case_stack = thiscase;
4431 nesting_stack = thiscase;
4433 do_pending_stack_adjust ();
4434 emit_queue ();
4436 /* Make sure case_stmt.start points to something that won't
4437 need any transformation before expand_end_case. */
4438 if (GET_CODE (get_last_insn ()) != NOTE)
4439 emit_note (NULL, NOTE_INSN_DELETED);
4441 thiscase->data.case_stmt.start = get_last_insn ();
4443 start_cleanup_deferral ();
4446 /* Start a "dummy case statement" within which case labels are invalid
4447 and are not connected to any larger real case statement.
4448 This can be used if you don't want to let a case statement jump
4449 into the middle of certain kinds of constructs. */
4451 void
4452 expand_start_case_dummy ()
4454 struct nesting *thiscase = ALLOC_NESTING ();
4456 /* Make an entry on case_stack for the dummy. */
4458 thiscase->desc = CASE_NESTING;
4459 thiscase->next = case_stack;
4460 thiscase->all = nesting_stack;
4461 thiscase->depth = ++nesting_depth;
4462 thiscase->exit_label = 0;
4463 thiscase->data.case_stmt.case_list = 0;
4464 thiscase->data.case_stmt.start = 0;
4465 thiscase->data.case_stmt.nominal_type = 0;
4466 thiscase->data.case_stmt.default_label = 0;
4467 case_stack = thiscase;
4468 nesting_stack = thiscase;
4469 start_cleanup_deferral ();
4472 static void
4473 check_seenlabel ()
4475 /* If this is the first label, warn if any insns have been emitted. */
4476 if (case_stack->data.case_stmt.line_number_status >= 0)
4478 rtx insn;
4480 restore_line_number_status
4481 (case_stack->data.case_stmt.line_number_status);
4482 case_stack->data.case_stmt.line_number_status = -1;
4484 for (insn = case_stack->data.case_stmt.start;
4485 insn;
4486 insn = NEXT_INSN (insn))
4488 if (GET_CODE (insn) == CODE_LABEL)
4489 break;
4490 if (GET_CODE (insn) != NOTE
4491 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
4494 insn = PREV_INSN (insn);
4495 while (insn && (GET_CODE (insn) != NOTE || NOTE_LINE_NUMBER (insn) < 0));
4497 /* If insn is zero, then there must have been a syntax error. */
4498 if (insn)
4499 warning_with_file_and_line (NOTE_SOURCE_FILE (insn),
4500 NOTE_LINE_NUMBER (insn),
4501 "unreachable code at beginning of %s",
4502 case_stack->data.case_stmt.printname);
4503 break;
4509 /* Accumulate one case or default label inside a case or switch statement.
4510 VALUE is the value of the case (a null pointer, for a default label).
4511 The function CONVERTER, when applied to arguments T and V,
4512 converts the value V to the type T.
4514 If not currently inside a case or switch statement, return 1 and do
4515 nothing. The caller will print a language-specific error message.
4516 If VALUE is a duplicate or overlaps, return 2 and do nothing
4517 except store the (first) duplicate node in *DUPLICATE.
4518 If VALUE is out of range, return 3 and do nothing.
4519 If we are jumping into the scope of a cleanup or var-sized array, return 5.
4520 Return 0 on success.
4522 Extended to handle range statements. */
4525 pushcase (value, converter, label, duplicate)
4526 tree value;
4527 tree (*converter) PARAMS ((tree, tree));
4528 tree label;
4529 tree *duplicate;
4531 tree index_type;
4532 tree nominal_type;
4534 /* Fail if not inside a real case statement. */
4535 if (! (case_stack && case_stack->data.case_stmt.start))
4536 return 1;
4538 if (stack_block_stack
4539 && stack_block_stack->depth > case_stack->depth)
4540 return 5;
4542 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4543 nominal_type = case_stack->data.case_stmt.nominal_type;
4545 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4546 if (index_type == error_mark_node)
4547 return 0;
4549 /* Convert VALUE to the type in which the comparisons are nominally done. */
4550 if (value != 0)
4551 value = (*converter) (nominal_type, value);
4553 check_seenlabel ();
4555 /* Fail if this value is out of range for the actual type of the index
4556 (which may be narrower than NOMINAL_TYPE). */
4557 if (value != 0
4558 && (TREE_CONSTANT_OVERFLOW (value)
4559 || ! int_fits_type_p (value, index_type)))
4560 return 3;
4562 return add_case_node (value, value, label, duplicate);
4565 /* Like pushcase but this case applies to all values between VALUE1 and
4566 VALUE2 (inclusive). If VALUE1 is NULL, the range starts at the lowest
4567 value of the index type and ends at VALUE2. If VALUE2 is NULL, the range
4568 starts at VALUE1 and ends at the highest value of the index type.
4569 If both are NULL, this case applies to all values.
4571 The return value is the same as that of pushcase but there is one
4572 additional error code: 4 means the specified range was empty. */
4575 pushcase_range (value1, value2, converter, label, duplicate)
4576 tree value1, value2;
4577 tree (*converter) PARAMS ((tree, tree));
4578 tree label;
4579 tree *duplicate;
4581 tree index_type;
4582 tree nominal_type;
4584 /* Fail if not inside a real case statement. */
4585 if (! (case_stack && case_stack->data.case_stmt.start))
4586 return 1;
4588 if (stack_block_stack
4589 && stack_block_stack->depth > case_stack->depth)
4590 return 5;
4592 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
4593 nominal_type = case_stack->data.case_stmt.nominal_type;
4595 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4596 if (index_type == error_mark_node)
4597 return 0;
4599 check_seenlabel ();
4601 /* Convert VALUEs to type in which the comparisons are nominally done
4602 and replace any unspecified value with the corresponding bound. */
4603 if (value1 == 0)
4604 value1 = TYPE_MIN_VALUE (index_type);
4605 if (value2 == 0)
4606 value2 = TYPE_MAX_VALUE (index_type);
4608 /* Fail if the range is empty. Do this before any conversion since
4609 we want to allow out-of-range empty ranges. */
4610 if (value2 != 0 && tree_int_cst_lt (value2, value1))
4611 return 4;
4613 /* If the max was unbounded, use the max of the nominal_type we are
4614 converting to. Do this after the < check above to suppress false
4615 positives. */
4616 if (value2 == 0)
4617 value2 = TYPE_MAX_VALUE (nominal_type);
4619 value1 = (*converter) (nominal_type, value1);
4620 value2 = (*converter) (nominal_type, value2);
4622 /* Fail if these values are out of range. */
4623 if (TREE_CONSTANT_OVERFLOW (value1)
4624 || ! int_fits_type_p (value1, index_type))
4625 return 3;
4627 if (TREE_CONSTANT_OVERFLOW (value2)
4628 || ! int_fits_type_p (value2, index_type))
4629 return 3;
4631 return add_case_node (value1, value2, label, duplicate);
4634 /* Do the actual insertion of a case label for pushcase and pushcase_range
4635 into case_stack->data.case_stmt.case_list. Use an AVL tree to avoid
4636 slowdown for large switch statements. */
4639 add_case_node (low, high, label, duplicate)
4640 tree low, high;
4641 tree label;
4642 tree *duplicate;
4644 struct case_node *p, **q, *r;
4646 /* If there's no HIGH value, then this is not a case range; it's
4647 just a simple case label. But that's just a degenerate case
4648 range. */
4649 if (!high)
4650 high = low;
4652 /* Handle default labels specially. */
4653 if (!high && !low)
4655 if (case_stack->data.case_stmt.default_label != 0)
4657 *duplicate = case_stack->data.case_stmt.default_label;
4658 return 2;
4660 case_stack->data.case_stmt.default_label = label;
4661 expand_label (label);
4662 return 0;
4665 q = &case_stack->data.case_stmt.case_list;
4666 p = *q;
4668 while ((r = *q))
4670 p = r;
4672 /* Keep going past elements distinctly greater than HIGH. */
4673 if (tree_int_cst_lt (high, p->low))
4674 q = &p->left;
4676 /* or distinctly less than LOW. */
4677 else if (tree_int_cst_lt (p->high, low))
4678 q = &p->right;
4680 else
4682 /* We have an overlap; this is an error. */
4683 *duplicate = p->code_label;
4684 return 2;
4688 /* Add this label to the chain, and succeed. */
4690 r = (struct case_node *) ggc_alloc (sizeof (struct case_node));
4691 r->low = low;
4693 /* If the bounds are equal, turn this into the one-value case. */
4694 if (tree_int_cst_equal (low, high))
4695 r->high = r->low;
4696 else
4697 r->high = high;
4699 r->code_label = label;
4700 expand_label (label);
4702 *q = r;
4703 r->parent = p;
4704 r->left = 0;
4705 r->right = 0;
4706 r->balance = 0;
4708 while (p)
4710 struct case_node *s;
4712 if (r == p->left)
4714 int b;
4716 if (! (b = p->balance))
4717 /* Growth propagation from left side. */
4718 p->balance = -1;
4719 else if (b < 0)
4721 if (r->balance < 0)
4723 /* R-Rotation */
4724 if ((p->left = s = r->right))
4725 s->parent = p;
4727 r->right = p;
4728 p->balance = 0;
4729 r->balance = 0;
4730 s = p->parent;
4731 p->parent = r;
4733 if ((r->parent = s))
4735 if (s->left == p)
4736 s->left = r;
4737 else
4738 s->right = r;
4740 else
4741 case_stack->data.case_stmt.case_list = r;
4743 else
4744 /* r->balance == +1 */
4746 /* LR-Rotation */
4748 int b2;
4749 struct case_node *t = r->right;
4751 if ((p->left = s = t->right))
4752 s->parent = p;
4754 t->right = p;
4755 if ((r->right = s = t->left))
4756 s->parent = r;
4758 t->left = r;
4759 b = t->balance;
4760 b2 = b < 0;
4761 p->balance = b2;
4762 b2 = -b2 - b;
4763 r->balance = b2;
4764 t->balance = 0;
4765 s = p->parent;
4766 p->parent = t;
4767 r->parent = t;
4769 if ((t->parent = s))
4771 if (s->left == p)
4772 s->left = t;
4773 else
4774 s->right = t;
4776 else
4777 case_stack->data.case_stmt.case_list = t;
4779 break;
4782 else
4784 /* p->balance == +1; growth of left side balances the node. */
4785 p->balance = 0;
4786 break;
4789 else
4790 /* r == p->right */
4792 int b;
4794 if (! (b = p->balance))
4795 /* Growth propagation from right side. */
4796 p->balance++;
4797 else if (b > 0)
4799 if (r->balance > 0)
4801 /* L-Rotation */
4803 if ((p->right = s = r->left))
4804 s->parent = p;
4806 r->left = p;
4807 p->balance = 0;
4808 r->balance = 0;
4809 s = p->parent;
4810 p->parent = r;
4811 if ((r->parent = s))
4813 if (s->left == p)
4814 s->left = r;
4815 else
4816 s->right = r;
4819 else
4820 case_stack->data.case_stmt.case_list = r;
4823 else
4824 /* r->balance == -1 */
4826 /* RL-Rotation */
4827 int b2;
4828 struct case_node *t = r->left;
4830 if ((p->right = s = t->left))
4831 s->parent = p;
4833 t->left = p;
4835 if ((r->left = s = t->right))
4836 s->parent = r;
4838 t->right = r;
4839 b = t->balance;
4840 b2 = b < 0;
4841 r->balance = b2;
4842 b2 = -b2 - b;
4843 p->balance = b2;
4844 t->balance = 0;
4845 s = p->parent;
4846 p->parent = t;
4847 r->parent = t;
4849 if ((t->parent = s))
4851 if (s->left == p)
4852 s->left = t;
4853 else
4854 s->right = t;
4857 else
4858 case_stack->data.case_stmt.case_list = t;
4860 break;
4862 else
4864 /* p->balance == -1; growth of right side balances the node. */
4865 p->balance = 0;
4866 break;
4870 r = p;
4871 p = p->parent;
4874 return 0;
4877 /* Returns the number of possible values of TYPE.
4878 Returns -1 if the number is unknown, variable, or if the number does not
4879 fit in a HOST_WIDE_INT.
4880 Sets *SPARSENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4881 do not increase monotonically (there may be duplicates);
4882 to 1 if the values increase monotonically, but not always by 1;
4883 otherwise sets it to 0. */
4885 HOST_WIDE_INT
4886 all_cases_count (type, sparseness)
4887 tree type;
4888 int *sparseness;
4890 tree t;
4891 HOST_WIDE_INT count, minval, lastval;
4893 *sparseness = 0;
4895 switch (TREE_CODE (type))
4897 case BOOLEAN_TYPE:
4898 count = 2;
4899 break;
4901 case CHAR_TYPE:
4902 count = 1 << BITS_PER_UNIT;
4903 break;
4905 default:
4906 case INTEGER_TYPE:
4907 if (TYPE_MAX_VALUE (type) != 0
4908 && 0 != (t = fold (build (MINUS_EXPR, type, TYPE_MAX_VALUE (type),
4909 TYPE_MIN_VALUE (type))))
4910 && 0 != (t = fold (build (PLUS_EXPR, type, t,
4911 convert (type, integer_zero_node))))
4912 && host_integerp (t, 1))
4913 count = tree_low_cst (t, 1);
4914 else
4915 return -1;
4916 break;
4918 case ENUMERAL_TYPE:
4919 /* Don't waste time with enumeral types with huge values. */
4920 if (! host_integerp (TYPE_MIN_VALUE (type), 0)
4921 || TYPE_MAX_VALUE (type) == 0
4922 || ! host_integerp (TYPE_MAX_VALUE (type), 0))
4923 return -1;
4925 lastval = minval = tree_low_cst (TYPE_MIN_VALUE (type), 0);
4926 count = 0;
4928 for (t = TYPE_VALUES (type); t != NULL_TREE; t = TREE_CHAIN (t))
4930 HOST_WIDE_INT thisval = tree_low_cst (TREE_VALUE (t), 0);
4932 if (*sparseness == 2 || thisval <= lastval)
4933 *sparseness = 2;
4934 else if (thisval != minval + count)
4935 *sparseness = 1;
4937 lastval = thisval;
4938 count++;
4942 return count;
4945 #define BITARRAY_TEST(ARRAY, INDEX) \
4946 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4947 & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4948 #define BITARRAY_SET(ARRAY, INDEX) \
4949 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4950 |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4952 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4953 with the case values we have seen, assuming the case expression
4954 has the given TYPE.
4955 SPARSENESS is as determined by all_cases_count.
4957 The time needed is proportional to COUNT, unless
4958 SPARSENESS is 2, in which case quadratic time is needed. */
4960 void
4961 mark_seen_cases (type, cases_seen, count, sparseness)
4962 tree type;
4963 unsigned char *cases_seen;
4964 HOST_WIDE_INT count;
4965 int sparseness;
4967 tree next_node_to_try = NULL_TREE;
4968 HOST_WIDE_INT next_node_offset = 0;
4970 struct case_node *n, *root = case_stack->data.case_stmt.case_list;
4971 tree val = make_node (INTEGER_CST);
4973 TREE_TYPE (val) = type;
4974 if (! root)
4975 /* Do nothing. */
4977 else if (sparseness == 2)
4979 tree t;
4980 unsigned HOST_WIDE_INT xlo;
4982 /* This less efficient loop is only needed to handle
4983 duplicate case values (multiple enum constants
4984 with the same value). */
4985 TREE_TYPE (val) = TREE_TYPE (root->low);
4986 for (t = TYPE_VALUES (type), xlo = 0; t != NULL_TREE;
4987 t = TREE_CHAIN (t), xlo++)
4989 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (TREE_VALUE (t));
4990 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (TREE_VALUE (t));
4991 n = root;
4994 /* Keep going past elements distinctly greater than VAL. */
4995 if (tree_int_cst_lt (val, n->low))
4996 n = n->left;
4998 /* or distinctly less than VAL. */
4999 else if (tree_int_cst_lt (n->high, val))
5000 n = n->right;
5002 else
5004 /* We have found a matching range. */
5005 BITARRAY_SET (cases_seen, xlo);
5006 break;
5009 while (n);
5012 else
5014 if (root->left)
5015 case_stack->data.case_stmt.case_list = root = case_tree2list (root, 0);
5017 for (n = root; n; n = n->right)
5019 TREE_INT_CST_LOW (val) = TREE_INT_CST_LOW (n->low);
5020 TREE_INT_CST_HIGH (val) = TREE_INT_CST_HIGH (n->low);
5021 while (! tree_int_cst_lt (n->high, val))
5023 /* Calculate (into xlo) the "offset" of the integer (val).
5024 The element with lowest value has offset 0, the next smallest
5025 element has offset 1, etc. */
5027 unsigned HOST_WIDE_INT xlo;
5028 HOST_WIDE_INT xhi;
5029 tree t;
5031 if (sparseness && TYPE_VALUES (type) != NULL_TREE)
5033 /* The TYPE_VALUES will be in increasing order, so
5034 starting searching where we last ended. */
5035 t = next_node_to_try;
5036 xlo = next_node_offset;
5037 xhi = 0;
5038 for (;;)
5040 if (t == NULL_TREE)
5042 t = TYPE_VALUES (type);
5043 xlo = 0;
5045 if (tree_int_cst_equal (val, TREE_VALUE (t)))
5047 next_node_to_try = TREE_CHAIN (t);
5048 next_node_offset = xlo + 1;
5049 break;
5051 xlo++;
5052 t = TREE_CHAIN (t);
5053 if (t == next_node_to_try)
5055 xlo = -1;
5056 break;
5060 else
5062 t = TYPE_MIN_VALUE (type);
5063 if (t)
5064 neg_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t),
5065 &xlo, &xhi);
5066 else
5067 xlo = xhi = 0;
5068 add_double (xlo, xhi,
5069 TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5070 &xlo, &xhi);
5073 if (xhi == 0 && xlo < (unsigned HOST_WIDE_INT) count)
5074 BITARRAY_SET (cases_seen, xlo);
5076 add_double (TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val),
5077 1, 0,
5078 &TREE_INT_CST_LOW (val), &TREE_INT_CST_HIGH (val));
5084 /* Given a switch statement with an expression that is an enumeration
5085 type, warn if any of the enumeration type's literals are not
5086 covered by the case expressions of the switch. Also, warn if there
5087 are any extra switch cases that are *not* elements of the
5088 enumerated type.
5090 Historical note:
5092 At one stage this function would: ``If all enumeration literals
5093 were covered by the case expressions, turn one of the expressions
5094 into the default expression since it should not be possible to fall
5095 through such a switch.''
5097 That code has since been removed as: ``This optimization is
5098 disabled because it causes valid programs to fail. ANSI C does not
5099 guarantee that an expression with enum type will have a value that
5100 is the same as one of the enumeration literals.'' */
5102 void
5103 check_for_full_enumeration_handling (type)
5104 tree type;
5106 struct case_node *n;
5107 tree chain;
5109 /* True iff the selector type is a numbered set mode. */
5110 int sparseness = 0;
5112 /* The number of possible selector values. */
5113 HOST_WIDE_INT size;
5115 /* For each possible selector value. a one iff it has been matched
5116 by a case value alternative. */
5117 unsigned char *cases_seen;
5119 /* The allocated size of cases_seen, in chars. */
5120 HOST_WIDE_INT bytes_needed;
5122 size = all_cases_count (type, &sparseness);
5123 bytes_needed = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
5125 if (size > 0 && size < 600000
5126 /* We deliberately use calloc here, not cmalloc, so that we can suppress
5127 this optimization if we don't have enough memory rather than
5128 aborting, as xmalloc would do. */
5129 && (cases_seen =
5130 (unsigned char *) really_call_calloc (bytes_needed, 1)) != NULL)
5132 HOST_WIDE_INT i;
5133 tree v = TYPE_VALUES (type);
5135 /* The time complexity of this code is normally O(N), where
5136 N being the number of members in the enumerated type.
5137 However, if type is an ENUMERAL_TYPE whose values do not
5138 increase monotonically, O(N*log(N)) time may be needed. */
5140 mark_seen_cases (type, cases_seen, size, sparseness);
5142 for (i = 0; v != NULL_TREE && i < size; i++, v = TREE_CHAIN (v))
5143 if (BITARRAY_TEST (cases_seen, i) == 0)
5144 warning ("enumeration value `%s' not handled in switch",
5145 IDENTIFIER_POINTER (TREE_PURPOSE (v)));
5147 free (cases_seen);
5150 /* Now we go the other way around; we warn if there are case
5151 expressions that don't correspond to enumerators. This can
5152 occur since C and C++ don't enforce type-checking of
5153 assignments to enumeration variables. */
5155 if (case_stack->data.case_stmt.case_list
5156 && case_stack->data.case_stmt.case_list->left)
5157 case_stack->data.case_stmt.case_list
5158 = case_tree2list (case_stack->data.case_stmt.case_list, 0);
5159 for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
5161 for (chain = TYPE_VALUES (type);
5162 chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
5163 chain = TREE_CHAIN (chain))
5166 if (!chain)
5168 if (TYPE_NAME (type) == 0)
5169 warning ("case value `%ld' not in enumerated type",
5170 (long) TREE_INT_CST_LOW (n->low));
5171 else
5172 warning ("case value `%ld' not in enumerated type `%s'",
5173 (long) TREE_INT_CST_LOW (n->low),
5174 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5175 == IDENTIFIER_NODE)
5176 ? TYPE_NAME (type)
5177 : DECL_NAME (TYPE_NAME (type))));
5179 if (!tree_int_cst_equal (n->low, n->high))
5181 for (chain = TYPE_VALUES (type);
5182 chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
5183 chain = TREE_CHAIN (chain))
5186 if (!chain)
5188 if (TYPE_NAME (type) == 0)
5189 warning ("case value `%ld' not in enumerated type",
5190 (long) TREE_INT_CST_LOW (n->high));
5191 else
5192 warning ("case value `%ld' not in enumerated type `%s'",
5193 (long) TREE_INT_CST_LOW (n->high),
5194 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
5195 == IDENTIFIER_NODE)
5196 ? TYPE_NAME (type)
5197 : DECL_NAME (TYPE_NAME (type))));
5204 /* Maximum number of case bit tests. */
5205 #define MAX_CASE_BIT_TESTS 3
5207 /* By default, enable case bit tests on targets with ashlsi3. */
5208 #ifndef CASE_USE_BIT_TESTS
5209 #define CASE_USE_BIT_TESTS (ashl_optab->handlers[word_mode].insn_code \
5210 != CODE_FOR_nothing)
5211 #endif
5214 /* A case_bit_test represents a set of case nodes that may be
5215 selected from using a bit-wise comparison. HI and LO hold
5216 the integer to be tested against, LABEL contains the label
5217 to jump to upon success and BITS counts the number of case
5218 nodes handled by this test, typically the number of bits
5219 set in HI:LO. */
5221 struct case_bit_test
5223 HOST_WIDE_INT hi;
5224 HOST_WIDE_INT lo;
5225 rtx label;
5226 int bits;
5229 /* Determine whether "1 << x" is relatively cheap in word_mode. */
5231 static bool lshift_cheap_p ()
5233 static bool init = false;
5234 static bool cheap = true;
5236 if (!init)
5238 rtx reg = gen_rtx_REG (word_mode, 10000);
5239 int cost = rtx_cost (gen_rtx_ASHIFT (word_mode, const1_rtx, reg), SET);
5240 cheap = cost < COSTS_N_INSNS (3);
5241 init = true;
5244 return cheap;
5247 /* Comparison function for qsort to order bit tests by decreasing
5248 number of case nodes, i.e. the node with the most cases gets
5249 tested first. */
5251 static int case_bit_test_cmp (p1, p2)
5252 const void *p1;
5253 const void *p2;
5255 const struct case_bit_test *d1 = p1;
5256 const struct case_bit_test *d2 = p2;
5258 return d2->bits - d1->bits;
5261 /* Expand a switch statement by a short sequence of bit-wise
5262 comparisons. "switch(x)" is effectively converted into
5263 "if ((1 << (x-MINVAL)) & CST)" where CST and MINVAL are
5264 integer constants.
5266 INDEX_EXPR is the value being switched on, which is of
5267 type INDEX_TYPE. MINVAL is the lowest case value of in
5268 the case nodes, of INDEX_TYPE type, and RANGE is highest
5269 value minus MINVAL, also of type INDEX_TYPE. NODES is
5270 the set of case nodes, and DEFAULT_LABEL is the label to
5271 branch to should none of the cases match.
5273 There *MUST* be MAX_CASE_BIT_TESTS or less unique case
5274 node targets. */
5276 static void
5277 emit_case_bit_tests (index_type, index_expr, minval, range,
5278 nodes, default_label)
5279 tree index_type, index_expr, minval, range;
5280 case_node_ptr nodes;
5281 rtx default_label;
5283 struct case_bit_test test[MAX_CASE_BIT_TESTS];
5284 enum machine_mode mode;
5285 rtx expr, index, label;
5286 unsigned int i,j,lo,hi;
5287 struct case_node *n;
5288 unsigned int count;
5290 count = 0;
5291 for (n = nodes; n; n = n->right)
5293 label = label_rtx (n->code_label);
5294 for (i = 0; i < count; i++)
5295 if (same_case_target_p (label, test[i].label))
5296 break;
5298 if (i == count)
5300 if (count >= MAX_CASE_BIT_TESTS)
5301 abort ();
5302 test[i].hi = 0;
5303 test[i].lo = 0;
5304 test[i].label = label;
5305 test[i].bits = 1;
5306 count++;
5308 else
5309 test[i].bits++;
5311 lo = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5312 n->low, minval)), 1);
5313 hi = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5314 n->high, minval)), 1);
5315 for (j = lo; j <= hi; j++)
5316 if (j >= HOST_BITS_PER_WIDE_INT)
5317 test[i].hi |= (HOST_WIDE_INT) 1 << (j - HOST_BITS_PER_INT);
5318 else
5319 test[i].lo |= (HOST_WIDE_INT) 1 << j;
5322 qsort (test, count, sizeof(*test), case_bit_test_cmp);
5324 index_expr = fold (build (MINUS_EXPR, index_type,
5325 convert (index_type, index_expr),
5326 convert (index_type, minval)));
5327 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5328 emit_queue ();
5329 index = protect_from_queue (index, 0);
5330 do_pending_stack_adjust ();
5332 mode = TYPE_MODE (index_type);
5333 expr = expand_expr (range, NULL_RTX, VOIDmode, 0);
5334 emit_cmp_and_jump_insns (index, expr, GTU, NULL_RTX, mode, 1,
5335 default_label);
5337 index = convert_to_mode (word_mode, index, 0);
5338 index = expand_binop (word_mode, ashl_optab, const1_rtx,
5339 index, NULL_RTX, 1, OPTAB_WIDEN);
5341 for (i = 0; i < count; i++)
5343 expr = immed_double_const (test[i].lo, test[i].hi, word_mode);
5344 expr = expand_binop (word_mode, and_optab, index, expr,
5345 NULL_RTX, 1, OPTAB_WIDEN);
5346 emit_cmp_and_jump_insns (expr, const0_rtx, NE, NULL_RTX,
5347 word_mode, 1, test[i].label);
5350 emit_jump (default_label);
5353 /* Terminate a case (Pascal) or switch (C) statement
5354 in which ORIG_INDEX is the expression to be tested.
5355 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
5356 type as given in the source before any compiler conversions.
5357 Generate the code to test it and jump to the right place. */
5359 void
5360 expand_end_case_type (orig_index, orig_type)
5361 tree orig_index, orig_type;
5363 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
5364 rtx default_label = 0;
5365 struct case_node *n, *m;
5366 unsigned int count, uniq;
5367 rtx index;
5368 rtx table_label;
5369 int ncases;
5370 rtx *labelvec;
5371 int i;
5372 rtx before_case, end, lab;
5373 struct nesting *thiscase = case_stack;
5374 tree index_expr, index_type;
5375 bool exit_done = false;
5376 int unsignedp;
5378 /* Don't crash due to previous errors. */
5379 if (thiscase == NULL)
5380 return;
5382 index_expr = thiscase->data.case_stmt.index_expr;
5383 index_type = TREE_TYPE (index_expr);
5384 unsignedp = TREE_UNSIGNED (index_type);
5385 if (orig_type == NULL)
5386 orig_type = TREE_TYPE (orig_index);
5388 do_pending_stack_adjust ();
5390 /* This might get a spurious warning in the presence of a syntax error;
5391 it could be fixed by moving the call to check_seenlabel after the
5392 check for error_mark_node, and copying the code of check_seenlabel that
5393 deals with case_stack->data.case_stmt.line_number_status /
5394 restore_line_number_status in front of the call to end_cleanup_deferral;
5395 However, this might miss some useful warnings in the presence of
5396 non-syntax errors. */
5397 check_seenlabel ();
5399 /* An ERROR_MARK occurs for various reasons including invalid data type. */
5400 if (index_type != error_mark_node)
5402 /* If the switch expression was an enumerated type, check that
5403 exactly all enumeration literals are covered by the cases.
5404 The check is made when -Wswitch was specified and there is no
5405 default case, or when -Wswitch-enum was specified. */
5406 if (((warn_switch && !thiscase->data.case_stmt.default_label)
5407 || warn_switch_enum)
5408 && TREE_CODE (orig_type) == ENUMERAL_TYPE
5409 && TREE_CODE (index_expr) != INTEGER_CST)
5410 check_for_full_enumeration_handling (orig_type);
5412 if (warn_switch_default && !thiscase->data.case_stmt.default_label)
5413 warning ("switch missing default case");
5415 /* If we don't have a default-label, create one here,
5416 after the body of the switch. */
5417 if (thiscase->data.case_stmt.default_label == 0)
5419 thiscase->data.case_stmt.default_label
5420 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5421 /* Share the exit label if possible. */
5422 if (thiscase->exit_label)
5424 SET_DECL_RTL (thiscase->data.case_stmt.default_label,
5425 thiscase->exit_label);
5426 exit_done = true;
5428 expand_label (thiscase->data.case_stmt.default_label);
5430 default_label = label_rtx (thiscase->data.case_stmt.default_label);
5432 before_case = get_last_insn ();
5434 if (thiscase->data.case_stmt.case_list
5435 && thiscase->data.case_stmt.case_list->left)
5436 thiscase->data.case_stmt.case_list
5437 = case_tree2list (thiscase->data.case_stmt.case_list, 0);
5439 /* Simplify the case-list before we count it. */
5440 group_case_nodes (thiscase->data.case_stmt.case_list);
5441 strip_default_case_nodes (&thiscase->data.case_stmt.case_list,
5442 default_label);
5444 /* Get upper and lower bounds of case values.
5445 Also convert all the case values to the index expr's data type. */
5447 uniq = 0;
5448 count = 0;
5449 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5451 /* Check low and high label values are integers. */
5452 if (TREE_CODE (n->low) != INTEGER_CST)
5453 abort ();
5454 if (TREE_CODE (n->high) != INTEGER_CST)
5455 abort ();
5457 n->low = convert (index_type, n->low);
5458 n->high = convert (index_type, n->high);
5460 /* Count the elements and track the largest and smallest
5461 of them (treating them as signed even if they are not). */
5462 if (count++ == 0)
5464 minval = n->low;
5465 maxval = n->high;
5467 else
5469 if (INT_CST_LT (n->low, minval))
5470 minval = n->low;
5471 if (INT_CST_LT (maxval, n->high))
5472 maxval = n->high;
5474 /* A range counts double, since it requires two compares. */
5475 if (! tree_int_cst_equal (n->low, n->high))
5476 count++;
5478 /* Count the number of unique case node targets. */
5479 uniq++;
5480 lab = label_rtx (n->code_label);
5481 for (m = thiscase->data.case_stmt.case_list; m != n; m = m->right)
5482 if (same_case_target_p (label_rtx (m->code_label), lab))
5484 uniq--;
5485 break;
5489 /* Compute span of values. */
5490 if (count != 0)
5491 range = fold (build (MINUS_EXPR, index_type, maxval, minval));
5493 end_cleanup_deferral ();
5495 if (count == 0)
5497 expand_expr (index_expr, const0_rtx, VOIDmode, 0);
5498 emit_queue ();
5499 emit_jump (default_label);
5502 /* Try implementing this switch statement by a short sequence of
5503 bit-wise comparisons. However, we let the binary-tree case
5504 below handle constant index expressions. */
5505 else if (CASE_USE_BIT_TESTS
5506 && ! TREE_CONSTANT (index_expr)
5507 && compare_tree_int (range, GET_MODE_BITSIZE (word_mode)) < 0
5508 && compare_tree_int (range, 0) > 0
5509 && lshift_cheap_p ()
5510 && ((uniq == 1 && count >= 3)
5511 || (uniq == 2 && count >= 5)
5512 || (uniq == 3 && count >= 6)))
5514 /* Optimize the case where all the case values fit in a
5515 word without having to subtract MINVAL. In this case,
5516 we can optimize away the subtraction. */
5517 if (compare_tree_int (minval, 0) > 0
5518 && compare_tree_int (maxval, GET_MODE_BITSIZE (word_mode)) < 0)
5520 minval = integer_zero_node;
5521 range = maxval;
5523 emit_case_bit_tests (index_type, index_expr, minval, range,
5524 thiscase->data.case_stmt.case_list,
5525 default_label);
5528 /* If range of values is much bigger than number of values,
5529 make a sequence of conditional branches instead of a dispatch.
5530 If the switch-index is a constant, do it this way
5531 because we can optimize it. */
5533 else if (count < case_values_threshold ()
5534 || compare_tree_int (range, 10 * count) > 0
5535 /* RANGE may be signed, and really large ranges will show up
5536 as negative numbers. */
5537 || compare_tree_int (range, 0) < 0
5538 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5539 || flag_pic
5540 #endif
5541 || TREE_CONSTANT (index_expr))
5543 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
5545 /* If the index is a short or char that we do not have
5546 an insn to handle comparisons directly, convert it to
5547 a full integer now, rather than letting each comparison
5548 generate the conversion. */
5550 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
5551 && ! have_insn_for (COMPARE, GET_MODE (index)))
5553 enum machine_mode wider_mode;
5554 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
5555 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
5556 if (have_insn_for (COMPARE, wider_mode))
5558 index = convert_to_mode (wider_mode, index, unsignedp);
5559 break;
5563 emit_queue ();
5564 do_pending_stack_adjust ();
5566 index = protect_from_queue (index, 0);
5567 if (GET_CODE (index) == MEM)
5568 index = copy_to_reg (index);
5569 if (GET_CODE (index) == CONST_INT
5570 || TREE_CODE (index_expr) == INTEGER_CST)
5572 /* Make a tree node with the proper constant value
5573 if we don't already have one. */
5574 if (TREE_CODE (index_expr) != INTEGER_CST)
5576 index_expr
5577 = build_int_2 (INTVAL (index),
5578 unsignedp || INTVAL (index) >= 0 ? 0 : -1);
5579 index_expr = convert (index_type, index_expr);
5582 /* For constant index expressions we need only
5583 issue an unconditional branch to the appropriate
5584 target code. The job of removing any unreachable
5585 code is left to the optimisation phase if the
5586 "-O" option is specified. */
5587 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5588 if (! tree_int_cst_lt (index_expr, n->low)
5589 && ! tree_int_cst_lt (n->high, index_expr))
5590 break;
5592 if (n)
5593 emit_jump (label_rtx (n->code_label));
5594 else
5595 emit_jump (default_label);
5597 else
5599 /* If the index expression is not constant we generate
5600 a binary decision tree to select the appropriate
5601 target code. This is done as follows:
5603 The list of cases is rearranged into a binary tree,
5604 nearly optimal assuming equal probability for each case.
5606 The tree is transformed into RTL, eliminating
5607 redundant test conditions at the same time.
5609 If program flow could reach the end of the
5610 decision tree an unconditional jump to the
5611 default code is emitted. */
5613 use_cost_table
5614 = (TREE_CODE (orig_type) != ENUMERAL_TYPE
5615 && estimate_case_costs (thiscase->data.case_stmt.case_list));
5616 balance_case_nodes (&thiscase->data.case_stmt.case_list, NULL);
5617 emit_case_nodes (index, thiscase->data.case_stmt.case_list,
5618 default_label, index_type);
5619 emit_jump_if_reachable (default_label);
5622 else
5624 table_label = gen_label_rtx ();
5625 if (! try_casesi (index_type, index_expr, minval, range,
5626 table_label, default_label))
5628 index_type = thiscase->data.case_stmt.nominal_type;
5630 /* Index jumptables from zero for suitable values of
5631 minval to avoid a subtraction. */
5632 if (! optimize_size
5633 && compare_tree_int (minval, 0) > 0
5634 && compare_tree_int (minval, 3) < 0)
5636 minval = integer_zero_node;
5637 range = maxval;
5640 if (! try_tablejump (index_type, index_expr, minval, range,
5641 table_label, default_label))
5642 abort ();
5645 /* Get table of labels to jump to, in order of case index. */
5647 ncases = tree_low_cst (range, 0) + 1;
5648 labelvec = (rtx *) alloca (ncases * sizeof (rtx));
5649 memset ((char *) labelvec, 0, ncases * sizeof (rtx));
5651 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
5653 /* Compute the low and high bounds relative to the minimum
5654 value since that should fit in a HOST_WIDE_INT while the
5655 actual values may not. */
5656 HOST_WIDE_INT i_low
5657 = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5658 n->low, minval)), 1);
5659 HOST_WIDE_INT i_high
5660 = tree_low_cst (fold (build (MINUS_EXPR, index_type,
5661 n->high, minval)), 1);
5662 HOST_WIDE_INT i;
5664 for (i = i_low; i <= i_high; i ++)
5665 labelvec[i]
5666 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
5669 /* Fill in the gaps with the default. */
5670 for (i = 0; i < ncases; i++)
5671 if (labelvec[i] == 0)
5672 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
5674 /* Output the table */
5675 emit_label (table_label);
5677 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
5678 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
5679 gen_rtx_LABEL_REF (Pmode, table_label),
5680 gen_rtvec_v (ncases, labelvec),
5681 const0_rtx, const0_rtx));
5682 else
5683 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
5684 gen_rtvec_v (ncases, labelvec)));
5686 /* If the case insn drops through the table,
5687 after the table we must jump to the default-label.
5688 Otherwise record no drop-through after the table. */
5689 #ifdef CASE_DROPS_THROUGH
5690 emit_jump (default_label);
5691 #else
5692 emit_barrier ();
5693 #endif
5696 before_case = NEXT_INSN (before_case);
5697 end = get_last_insn ();
5698 if (squeeze_notes (&before_case, &end))
5699 abort ();
5700 reorder_insns (before_case, end,
5701 thiscase->data.case_stmt.start);
5703 else
5704 end_cleanup_deferral ();
5706 if (thiscase->exit_label && !exit_done)
5707 emit_label (thiscase->exit_label);
5709 POPSTACK (case_stack);
5711 free_temp_slots ();
5714 /* Convert the tree NODE into a list linked by the right field, with the left
5715 field zeroed. RIGHT is used for recursion; it is a list to be placed
5716 rightmost in the resulting list. */
5718 static struct case_node *
5719 case_tree2list (node, right)
5720 struct case_node *node, *right;
5722 struct case_node *left;
5724 if (node->right)
5725 right = case_tree2list (node->right, right);
5727 node->right = right;
5728 if ((left = node->left))
5730 node->left = 0;
5731 return case_tree2list (left, node);
5734 return node;
5737 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
5739 static void
5740 do_jump_if_equal (op1, op2, label, unsignedp)
5741 rtx op1, op2, label;
5742 int unsignedp;
5744 if (GET_CODE (op1) == CONST_INT && GET_CODE (op2) == CONST_INT)
5746 if (INTVAL (op1) == INTVAL (op2))
5747 emit_jump (label);
5749 else
5750 emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX,
5751 (GET_MODE (op1) == VOIDmode
5752 ? GET_MODE (op2) : GET_MODE (op1)),
5753 unsignedp, label);
5756 /* Not all case values are encountered equally. This function
5757 uses a heuristic to weight case labels, in cases where that
5758 looks like a reasonable thing to do.
5760 Right now, all we try to guess is text, and we establish the
5761 following weights:
5763 chars above space: 16
5764 digits: 16
5765 default: 12
5766 space, punct: 8
5767 tab: 4
5768 newline: 2
5769 other "\" chars: 1
5770 remaining chars: 0
5772 If we find any cases in the switch that are not either -1 or in the range
5773 of valid ASCII characters, or are control characters other than those
5774 commonly used with "\", don't treat this switch scanning text.
5776 Return 1 if these nodes are suitable for cost estimation, otherwise
5777 return 0. */
5779 static int
5780 estimate_case_costs (node)
5781 case_node_ptr node;
5783 tree min_ascii = integer_minus_one_node;
5784 tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
5785 case_node_ptr n;
5786 int i;
5788 /* If we haven't already made the cost table, make it now. Note that the
5789 lower bound of the table is -1, not zero. */
5791 if (! cost_table_initialized)
5793 cost_table_initialized = 1;
5795 for (i = 0; i < 128; i++)
5797 if (ISALNUM (i))
5798 COST_TABLE (i) = 16;
5799 else if (ISPUNCT (i))
5800 COST_TABLE (i) = 8;
5801 else if (ISCNTRL (i))
5802 COST_TABLE (i) = -1;
5805 COST_TABLE (' ') = 8;
5806 COST_TABLE ('\t') = 4;
5807 COST_TABLE ('\0') = 4;
5808 COST_TABLE ('\n') = 2;
5809 COST_TABLE ('\f') = 1;
5810 COST_TABLE ('\v') = 1;
5811 COST_TABLE ('\b') = 1;
5814 /* See if all the case expressions look like text. It is text if the
5815 constant is >= -1 and the highest constant is <= 127. Do all comparisons
5816 as signed arithmetic since we don't want to ever access cost_table with a
5817 value less than -1. Also check that none of the constants in a range
5818 are strange control characters. */
5820 for (n = node; n; n = n->right)
5822 if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
5823 return 0;
5825 for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
5826 i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
5827 if (COST_TABLE (i) < 0)
5828 return 0;
5831 /* All interesting values are within the range of interesting
5832 ASCII characters. */
5833 return 1;
5836 /* Determine whether two case labels branch to the same target. */
5838 static bool
5839 same_case_target_p (l1, l2)
5840 rtx l1, l2;
5842 rtx i1, i2;
5844 if (l1 == l2)
5845 return true;
5847 i1 = next_real_insn (l1);
5848 i2 = next_real_insn (l2);
5849 if (i1 == i2)
5850 return true;
5852 if (i1 && simplejump_p (i1))
5854 l1 = XEXP (SET_SRC (PATTERN (i1)), 0);
5857 if (i2 && simplejump_p (i2))
5859 l2 = XEXP (SET_SRC (PATTERN (i2)), 0);
5861 return l1 == l2;
5864 /* Delete nodes that branch to the default label from a list of
5865 case nodes. Eg. case 5: default: becomes just default: */
5867 static void
5868 strip_default_case_nodes (prev, deflab)
5869 case_node_ptr *prev;
5870 rtx deflab;
5872 case_node_ptr ptr;
5874 while (*prev)
5876 ptr = *prev;
5877 if (same_case_target_p (label_rtx (ptr->code_label), deflab))
5878 *prev = ptr->right;
5879 else
5880 prev = &ptr->right;
5884 /* Scan an ordered list of case nodes
5885 combining those with consecutive values or ranges.
5887 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
5889 static void
5890 group_case_nodes (head)
5891 case_node_ptr head;
5893 case_node_ptr node = head;
5895 while (node)
5897 rtx lab = label_rtx (node->code_label);
5898 case_node_ptr np = node;
5900 /* Try to group the successors of NODE with NODE. */
5901 while (((np = np->right) != 0)
5902 /* Do they jump to the same place? */
5903 && same_case_target_p (label_rtx (np->code_label), lab)
5904 /* Are their ranges consecutive? */
5905 && tree_int_cst_equal (np->low,
5906 fold (build (PLUS_EXPR,
5907 TREE_TYPE (node->high),
5908 node->high,
5909 integer_one_node)))
5910 /* An overflow is not consecutive. */
5911 && tree_int_cst_lt (node->high,
5912 fold (build (PLUS_EXPR,
5913 TREE_TYPE (node->high),
5914 node->high,
5915 integer_one_node))))
5917 node->high = np->high;
5919 /* NP is the first node after NODE which can't be grouped with it.
5920 Delete the nodes in between, and move on to that node. */
5921 node->right = np;
5922 node = np;
5926 /* Take an ordered list of case nodes
5927 and transform them into a near optimal binary tree,
5928 on the assumption that any target code selection value is as
5929 likely as any other.
5931 The transformation is performed by splitting the ordered
5932 list into two equal sections plus a pivot. The parts are
5933 then attached to the pivot as left and right branches. Each
5934 branch is then transformed recursively. */
5936 static void
5937 balance_case_nodes (head, parent)
5938 case_node_ptr *head;
5939 case_node_ptr parent;
5941 case_node_ptr np;
5943 np = *head;
5944 if (np)
5946 int cost = 0;
5947 int i = 0;
5948 int ranges = 0;
5949 case_node_ptr *npp;
5950 case_node_ptr left;
5952 /* Count the number of entries on branch. Also count the ranges. */
5954 while (np)
5956 if (!tree_int_cst_equal (np->low, np->high))
5958 ranges++;
5959 if (use_cost_table)
5960 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
5963 if (use_cost_table)
5964 cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
5966 i++;
5967 np = np->right;
5970 if (i > 2)
5972 /* Split this list if it is long enough for that to help. */
5973 npp = head;
5974 left = *npp;
5975 if (use_cost_table)
5977 /* Find the place in the list that bisects the list's total cost,
5978 Here I gets half the total cost. */
5979 int n_moved = 0;
5980 i = (cost + 1) / 2;
5981 while (1)
5983 /* Skip nodes while their cost does not reach that amount. */
5984 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
5985 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
5986 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
5987 if (i <= 0)
5988 break;
5989 npp = &(*npp)->right;
5990 n_moved += 1;
5992 if (n_moved == 0)
5994 /* Leave this branch lopsided, but optimize left-hand
5995 side and fill in `parent' fields for right-hand side. */
5996 np = *head;
5997 np->parent = parent;
5998 balance_case_nodes (&np->left, np);
5999 for (; np->right; np = np->right)
6000 np->right->parent = np;
6001 return;
6004 /* If there are just three nodes, split at the middle one. */
6005 else if (i == 3)
6006 npp = &(*npp)->right;
6007 else
6009 /* Find the place in the list that bisects the list's total cost,
6010 where ranges count as 2.
6011 Here I gets half the total cost. */
6012 i = (i + ranges + 1) / 2;
6013 while (1)
6015 /* Skip nodes while their cost does not reach that amount. */
6016 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
6017 i--;
6018 i--;
6019 if (i <= 0)
6020 break;
6021 npp = &(*npp)->right;
6024 *head = np = *npp;
6025 *npp = 0;
6026 np->parent = parent;
6027 np->left = left;
6029 /* Optimize each of the two split parts. */
6030 balance_case_nodes (&np->left, np);
6031 balance_case_nodes (&np->right, np);
6033 else
6035 /* Else leave this branch as one level,
6036 but fill in `parent' fields. */
6037 np = *head;
6038 np->parent = parent;
6039 for (; np->right; np = np->right)
6040 np->right->parent = np;
6045 /* Search the parent sections of the case node tree
6046 to see if a test for the lower bound of NODE would be redundant.
6047 INDEX_TYPE is the type of the index expression.
6049 The instructions to generate the case decision tree are
6050 output in the same order as nodes are processed so it is
6051 known that if a parent node checks the range of the current
6052 node minus one that the current node is bounded at its lower
6053 span. Thus the test would be redundant. */
6055 static int
6056 node_has_low_bound (node, index_type)
6057 case_node_ptr node;
6058 tree index_type;
6060 tree low_minus_one;
6061 case_node_ptr pnode;
6063 /* If the lower bound of this node is the lowest value in the index type,
6064 we need not test it. */
6066 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
6067 return 1;
6069 /* If this node has a left branch, the value at the left must be less
6070 than that at this node, so it cannot be bounded at the bottom and
6071 we need not bother testing any further. */
6073 if (node->left)
6074 return 0;
6076 low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
6077 node->low, integer_one_node));
6079 /* If the subtraction above overflowed, we can't verify anything.
6080 Otherwise, look for a parent that tests our value - 1. */
6082 if (! tree_int_cst_lt (low_minus_one, node->low))
6083 return 0;
6085 for (pnode = node->parent; pnode; pnode = pnode->parent)
6086 if (tree_int_cst_equal (low_minus_one, pnode->high))
6087 return 1;
6089 return 0;
6092 /* Search the parent sections of the case node tree
6093 to see if a test for the upper bound of NODE would be redundant.
6094 INDEX_TYPE is the type of the index expression.
6096 The instructions to generate the case decision tree are
6097 output in the same order as nodes are processed so it is
6098 known that if a parent node checks the range of the current
6099 node plus one that the current node is bounded at its upper
6100 span. Thus the test would be redundant. */
6102 static int
6103 node_has_high_bound (node, index_type)
6104 case_node_ptr node;
6105 tree index_type;
6107 tree high_plus_one;
6108 case_node_ptr pnode;
6110 /* If there is no upper bound, obviously no test is needed. */
6112 if (TYPE_MAX_VALUE (index_type) == NULL)
6113 return 1;
6115 /* If the upper bound of this node is the highest value in the type
6116 of the index expression, we need not test against it. */
6118 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
6119 return 1;
6121 /* If this node has a right branch, the value at the right must be greater
6122 than that at this node, so it cannot be bounded at the top and
6123 we need not bother testing any further. */
6125 if (node->right)
6126 return 0;
6128 high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
6129 node->high, integer_one_node));
6131 /* If the addition above overflowed, we can't verify anything.
6132 Otherwise, look for a parent that tests our value + 1. */
6134 if (! tree_int_cst_lt (node->high, high_plus_one))
6135 return 0;
6137 for (pnode = node->parent; pnode; pnode = pnode->parent)
6138 if (tree_int_cst_equal (high_plus_one, pnode->low))
6139 return 1;
6141 return 0;
6144 /* Search the parent sections of the
6145 case node tree to see if both tests for the upper and lower
6146 bounds of NODE would be redundant. */
6148 static int
6149 node_is_bounded (node, index_type)
6150 case_node_ptr node;
6151 tree index_type;
6153 return (node_has_low_bound (node, index_type)
6154 && node_has_high_bound (node, index_type));
6157 /* Emit an unconditional jump to LABEL unless it would be dead code. */
6159 static void
6160 emit_jump_if_reachable (label)
6161 rtx label;
6163 if (GET_CODE (get_last_insn ()) != BARRIER)
6164 emit_jump (label);
6167 /* Emit step-by-step code to select a case for the value of INDEX.
6168 The thus generated decision tree follows the form of the
6169 case-node binary tree NODE, whose nodes represent test conditions.
6170 INDEX_TYPE is the type of the index of the switch.
6172 Care is taken to prune redundant tests from the decision tree
6173 by detecting any boundary conditions already checked by
6174 emitted rtx. (See node_has_high_bound, node_has_low_bound
6175 and node_is_bounded, above.)
6177 Where the test conditions can be shown to be redundant we emit
6178 an unconditional jump to the target code. As a further
6179 optimization, the subordinates of a tree node are examined to
6180 check for bounded nodes. In this case conditional and/or
6181 unconditional jumps as a result of the boundary check for the
6182 current node are arranged to target the subordinates associated
6183 code for out of bound conditions on the current node.
6185 We can assume that when control reaches the code generated here,
6186 the index value has already been compared with the parents
6187 of this node, and determined to be on the same side of each parent
6188 as this node is. Thus, if this node tests for the value 51,
6189 and a parent tested for 52, we don't need to consider
6190 the possibility of a value greater than 51. If another parent
6191 tests for the value 50, then this node need not test anything. */
6193 static void
6194 emit_case_nodes (index, node, default_label, index_type)
6195 rtx index;
6196 case_node_ptr node;
6197 rtx default_label;
6198 tree index_type;
6200 /* If INDEX has an unsigned type, we must make unsigned branches. */
6201 int unsignedp = TREE_UNSIGNED (index_type);
6202 enum machine_mode mode = GET_MODE (index);
6203 enum machine_mode imode = TYPE_MODE (index_type);
6205 /* See if our parents have already tested everything for us.
6206 If they have, emit an unconditional jump for this node. */
6207 if (node_is_bounded (node, index_type))
6208 emit_jump (label_rtx (node->code_label));
6210 else if (tree_int_cst_equal (node->low, node->high))
6212 /* Node is single valued. First see if the index expression matches
6213 this node and then check our children, if any. */
6215 do_jump_if_equal (index,
6216 convert_modes (mode, imode,
6217 expand_expr (node->low, NULL_RTX,
6218 VOIDmode, 0),
6219 unsignedp),
6220 label_rtx (node->code_label), unsignedp);
6222 if (node->right != 0 && node->left != 0)
6224 /* This node has children on both sides.
6225 Dispatch to one side or the other
6226 by comparing the index value with this node's value.
6227 If one subtree is bounded, check that one first,
6228 so we can avoid real branches in the tree. */
6230 if (node_is_bounded (node->right, index_type))
6232 emit_cmp_and_jump_insns (index,
6233 convert_modes
6234 (mode, imode,
6235 expand_expr (node->high, NULL_RTX,
6236 VOIDmode, 0),
6237 unsignedp),
6238 GT, NULL_RTX, mode, unsignedp,
6239 label_rtx (node->right->code_label));
6240 emit_case_nodes (index, node->left, default_label, index_type);
6243 else if (node_is_bounded (node->left, index_type))
6245 emit_cmp_and_jump_insns (index,
6246 convert_modes
6247 (mode, imode,
6248 expand_expr (node->high, NULL_RTX,
6249 VOIDmode, 0),
6250 unsignedp),
6251 LT, NULL_RTX, mode, unsignedp,
6252 label_rtx (node->left->code_label));
6253 emit_case_nodes (index, node->right, default_label, index_type);
6256 else
6258 /* Neither node is bounded. First distinguish the two sides;
6259 then emit the code for one side at a time. */
6261 tree test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6263 /* See if the value is on the right. */
6264 emit_cmp_and_jump_insns (index,
6265 convert_modes
6266 (mode, imode,
6267 expand_expr (node->high, NULL_RTX,
6268 VOIDmode, 0),
6269 unsignedp),
6270 GT, NULL_RTX, mode, unsignedp,
6271 label_rtx (test_label));
6273 /* Value must be on the left.
6274 Handle the left-hand subtree. */
6275 emit_case_nodes (index, node->left, default_label, index_type);
6276 /* If left-hand subtree does nothing,
6277 go to default. */
6278 emit_jump_if_reachable (default_label);
6280 /* Code branches here for the right-hand subtree. */
6281 expand_label (test_label);
6282 emit_case_nodes (index, node->right, default_label, index_type);
6286 else if (node->right != 0 && node->left == 0)
6288 /* Here we have a right child but no left so we issue conditional
6289 branch to default and process the right child.
6291 Omit the conditional branch to default if we it avoid only one
6292 right child; it costs too much space to save so little time. */
6294 if (node->right->right || node->right->left
6295 || !tree_int_cst_equal (node->right->low, node->right->high))
6297 if (!node_has_low_bound (node, index_type))
6299 emit_cmp_and_jump_insns (index,
6300 convert_modes
6301 (mode, imode,
6302 expand_expr (node->high, NULL_RTX,
6303 VOIDmode, 0),
6304 unsignedp),
6305 LT, NULL_RTX, mode, unsignedp,
6306 default_label);
6309 emit_case_nodes (index, node->right, default_label, index_type);
6311 else
6312 /* We cannot process node->right normally
6313 since we haven't ruled out the numbers less than
6314 this node's value. So handle node->right explicitly. */
6315 do_jump_if_equal (index,
6316 convert_modes
6317 (mode, imode,
6318 expand_expr (node->right->low, NULL_RTX,
6319 VOIDmode, 0),
6320 unsignedp),
6321 label_rtx (node->right->code_label), unsignedp);
6324 else if (node->right == 0 && node->left != 0)
6326 /* Just one subtree, on the left. */
6327 if (node->left->left || node->left->right
6328 || !tree_int_cst_equal (node->left->low, node->left->high))
6330 if (!node_has_high_bound (node, index_type))
6332 emit_cmp_and_jump_insns (index,
6333 convert_modes
6334 (mode, imode,
6335 expand_expr (node->high, NULL_RTX,
6336 VOIDmode, 0),
6337 unsignedp),
6338 GT, NULL_RTX, mode, unsignedp,
6339 default_label);
6342 emit_case_nodes (index, node->left, default_label, index_type);
6344 else
6345 /* We cannot process node->left normally
6346 since we haven't ruled out the numbers less than
6347 this node's value. So handle node->left explicitly. */
6348 do_jump_if_equal (index,
6349 convert_modes
6350 (mode, imode,
6351 expand_expr (node->left->low, NULL_RTX,
6352 VOIDmode, 0),
6353 unsignedp),
6354 label_rtx (node->left->code_label), unsignedp);
6357 else
6359 /* Node is a range. These cases are very similar to those for a single
6360 value, except that we do not start by testing whether this node
6361 is the one to branch to. */
6363 if (node->right != 0 && node->left != 0)
6365 /* Node has subtrees on both sides.
6366 If the right-hand subtree is bounded,
6367 test for it first, since we can go straight there.
6368 Otherwise, we need to make a branch in the control structure,
6369 then handle the two subtrees. */
6370 tree test_label = 0;
6372 if (node_is_bounded (node->right, index_type))
6373 /* Right hand node is fully bounded so we can eliminate any
6374 testing and branch directly to the target code. */
6375 emit_cmp_and_jump_insns (index,
6376 convert_modes
6377 (mode, imode,
6378 expand_expr (node->high, NULL_RTX,
6379 VOIDmode, 0),
6380 unsignedp),
6381 GT, NULL_RTX, mode, unsignedp,
6382 label_rtx (node->right->code_label));
6383 else
6385 /* Right hand node requires testing.
6386 Branch to a label where we will handle it later. */
6388 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
6389 emit_cmp_and_jump_insns (index,
6390 convert_modes
6391 (mode, imode,
6392 expand_expr (node->high, NULL_RTX,
6393 VOIDmode, 0),
6394 unsignedp),
6395 GT, NULL_RTX, mode, unsignedp,
6396 label_rtx (test_label));
6399 /* Value belongs to this node or to the left-hand subtree. */
6401 emit_cmp_and_jump_insns (index,
6402 convert_modes
6403 (mode, imode,
6404 expand_expr (node->low, NULL_RTX,
6405 VOIDmode, 0),
6406 unsignedp),
6407 GE, NULL_RTX, mode, unsignedp,
6408 label_rtx (node->code_label));
6410 /* Handle the left-hand subtree. */
6411 emit_case_nodes (index, node->left, default_label, index_type);
6413 /* If right node had to be handled later, do that now. */
6415 if (test_label)
6417 /* If the left-hand subtree fell through,
6418 don't let it fall into the right-hand subtree. */
6419 emit_jump_if_reachable (default_label);
6421 expand_label (test_label);
6422 emit_case_nodes (index, node->right, default_label, index_type);
6426 else if (node->right != 0 && node->left == 0)
6428 /* Deal with values to the left of this node,
6429 if they are possible. */
6430 if (!node_has_low_bound (node, index_type))
6432 emit_cmp_and_jump_insns (index,
6433 convert_modes
6434 (mode, imode,
6435 expand_expr (node->low, NULL_RTX,
6436 VOIDmode, 0),
6437 unsignedp),
6438 LT, NULL_RTX, mode, unsignedp,
6439 default_label);
6442 /* Value belongs to this node or to the right-hand subtree. */
6444 emit_cmp_and_jump_insns (index,
6445 convert_modes
6446 (mode, imode,
6447 expand_expr (node->high, NULL_RTX,
6448 VOIDmode, 0),
6449 unsignedp),
6450 LE, NULL_RTX, mode, unsignedp,
6451 label_rtx (node->code_label));
6453 emit_case_nodes (index, node->right, default_label, index_type);
6456 else if (node->right == 0 && node->left != 0)
6458 /* Deal with values to the right of this node,
6459 if they are possible. */
6460 if (!node_has_high_bound (node, index_type))
6462 emit_cmp_and_jump_insns (index,
6463 convert_modes
6464 (mode, imode,
6465 expand_expr (node->high, NULL_RTX,
6466 VOIDmode, 0),
6467 unsignedp),
6468 GT, NULL_RTX, mode, unsignedp,
6469 default_label);
6472 /* Value belongs to this node or to the left-hand subtree. */
6474 emit_cmp_and_jump_insns (index,
6475 convert_modes
6476 (mode, imode,
6477 expand_expr (node->low, NULL_RTX,
6478 VOIDmode, 0),
6479 unsignedp),
6480 GE, NULL_RTX, mode, unsignedp,
6481 label_rtx (node->code_label));
6483 emit_case_nodes (index, node->left, default_label, index_type);
6486 else
6488 /* Node has no children so we check low and high bounds to remove
6489 redundant tests. Only one of the bounds can exist,
6490 since otherwise this node is bounded--a case tested already. */
6491 int high_bound = node_has_high_bound (node, index_type);
6492 int low_bound = node_has_low_bound (node, index_type);
6494 if (!high_bound && low_bound)
6496 emit_cmp_and_jump_insns (index,
6497 convert_modes
6498 (mode, imode,
6499 expand_expr (node->high, NULL_RTX,
6500 VOIDmode, 0),
6501 unsignedp),
6502 GT, NULL_RTX, mode, unsignedp,
6503 default_label);
6506 else if (!low_bound && high_bound)
6508 emit_cmp_and_jump_insns (index,
6509 convert_modes
6510 (mode, imode,
6511 expand_expr (node->low, NULL_RTX,
6512 VOIDmode, 0),
6513 unsignedp),
6514 LT, NULL_RTX, mode, unsignedp,
6515 default_label);
6517 else if (!low_bound && !high_bound)
6519 /* Widen LOW and HIGH to the same width as INDEX. */
6520 tree type = (*lang_hooks.types.type_for_mode) (mode, unsignedp);
6521 tree low = build1 (CONVERT_EXPR, type, node->low);
6522 tree high = build1 (CONVERT_EXPR, type, node->high);
6523 rtx low_rtx, new_index, new_bound;
6525 /* Instead of doing two branches, emit one unsigned branch for
6526 (index-low) > (high-low). */
6527 low_rtx = expand_expr (low, NULL_RTX, mode, 0);
6528 new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
6529 NULL_RTX, unsignedp,
6530 OPTAB_WIDEN);
6531 new_bound = expand_expr (fold (build (MINUS_EXPR, type,
6532 high, low)),
6533 NULL_RTX, mode, 0);
6535 emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
6536 mode, 1, default_label);
6539 emit_jump (label_rtx (node->code_label));
6544 #include "gt-stmt.h"