merge with trunk @ 139506
[official-gcc.git] / gcc / stmt.c
blobf05cd0956fcd8f087cc7e4dec826bf7be1085a43
1 /* Expands front end tree to back end RTL for GCC
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
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 The functions whose names start with `expand_' are called by the
25 expander to generate RTL instructions for various kinds of constructs. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
32 #include "rtl.h"
33 #include "hard-reg-set.h"
34 #include "tree.h"
35 #include "tm_p.h"
36 #include "flags.h"
37 #include "except.h"
38 #include "function.h"
39 #include "insn-config.h"
40 #include "expr.h"
41 #include "libfuncs.h"
42 #include "recog.h"
43 #include "machmode.h"
44 #include "toplev.h"
45 #include "output.h"
46 #include "ggc.h"
47 #include "langhooks.h"
48 #include "predict.h"
49 #include "optabs.h"
50 #include "target.h"
51 #include "regs.h"
52 #include "alloc-pool.h"
54 /* Functions and data structures for expanding case statements. */
56 /* Case label structure, used to hold info on labels within case
57 statements. We handle "range" labels; for a single-value label
58 as in C, the high and low limits are the same.
60 We start with a vector of case nodes sorted in ascending order, and
61 the default label as the last element in the vector. Before expanding
62 to RTL, we transform this vector into a list linked via the RIGHT
63 fields in the case_node struct. Nodes with higher case values are
64 later in the list.
66 Switch statements can be output in three forms. A branch table is
67 used if there are more than a few labels and the labels are dense
68 within the range between the smallest and largest case value. If a
69 branch table is used, no further manipulations are done with the case
70 node chain.
72 The alternative to the use of a branch table is to generate a series
73 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
74 and PARENT fields to hold a binary tree. Initially the tree is
75 totally unbalanced, with everything on the right. We balance the tree
76 with nodes on the left having lower case values than the parent
77 and nodes on the right having higher values. We then output the tree
78 in order.
80 For very small, suitable switch statements, we can generate a series
81 of simple bit test and branches instead. */
83 struct case_node
85 struct case_node *left; /* Left son in binary tree */
86 struct case_node *right; /* Right son in binary tree; also node chain */
87 struct case_node *parent; /* Parent of node in binary tree */
88 tree low; /* Lowest index value for this label */
89 tree high; /* Highest index value for this label */
90 tree code_label; /* Label to jump to when node matches */
93 typedef struct case_node case_node;
94 typedef struct case_node *case_node_ptr;
96 /* These are used by estimate_case_costs and balance_case_nodes. */
98 /* This must be a signed type, and non-ANSI compilers lack signed char. */
99 static short cost_table_[129];
100 static int use_cost_table;
101 static int cost_table_initialized;
103 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
104 is unsigned. */
105 #define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
107 static int n_occurrences (int, const char *);
108 static bool tree_conflicts_with_clobbers_p (tree, HARD_REG_SET *);
109 static void expand_nl_goto_receiver (void);
110 static bool check_operand_nalternatives (tree, tree);
111 static bool check_unique_operand_names (tree, tree);
112 static char *resolve_operand_name_1 (char *, tree, tree);
113 static void expand_null_return_1 (void);
114 static void expand_value_return (rtx);
115 static int estimate_case_costs (case_node_ptr);
116 static bool lshift_cheap_p (void);
117 static int case_bit_test_cmp (const void *, const void *);
118 static void emit_case_bit_tests (tree, tree, tree, tree, case_node_ptr, rtx);
119 static void balance_case_nodes (case_node_ptr *, case_node_ptr);
120 static int node_has_low_bound (case_node_ptr, tree);
121 static int node_has_high_bound (case_node_ptr, tree);
122 static int node_is_bounded (case_node_ptr, tree);
123 static void emit_case_nodes (rtx, case_node_ptr, rtx, tree);
124 static struct case_node *add_case_node (struct case_node *, tree,
125 tree, tree, tree, alloc_pool);
128 /* Return the rtx-label that corresponds to a LABEL_DECL,
129 creating it if necessary. */
132 label_rtx (tree label)
134 gcc_assert (TREE_CODE (label) == LABEL_DECL);
136 if (!DECL_RTL_SET_P (label))
138 rtx r = gen_label_rtx ();
139 SET_DECL_RTL (label, r);
140 if (FORCED_LABEL (label) || DECL_NONLOCAL (label))
141 LABEL_PRESERVE_P (r) = 1;
144 return DECL_RTL (label);
147 /* As above, but also put it on the forced-reference list of the
148 function that contains it. */
150 force_label_rtx (tree label)
152 rtx ref = label_rtx (label);
153 tree function = decl_function_context (label);
154 struct function *p;
156 gcc_assert (function);
158 if (function != current_function_decl)
159 p = find_function_data (function);
160 else
161 p = cfun;
163 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, ref, forced_labels);
164 return ref;
167 /* Add an unconditional jump to LABEL as the next sequential instruction. */
169 void
170 emit_jump (rtx label)
172 do_pending_stack_adjust ();
173 emit_jump_insn (gen_jump (label));
174 emit_barrier ();
177 /* Emit code to jump to the address
178 specified by the pointer expression EXP. */
180 void
181 expand_computed_goto (tree exp)
183 rtx x = expand_normal (exp);
185 x = convert_memory_address (Pmode, x);
187 do_pending_stack_adjust ();
188 emit_indirect_jump (x);
191 /* Handle goto statements and the labels that they can go to. */
193 /* Specify the location in the RTL code of a label LABEL,
194 which is a LABEL_DECL tree node.
196 This is used for the kind of label that the user can jump to with a
197 goto statement, and for alternatives of a switch or case statement.
198 RTL labels generated for loops and conditionals don't go through here;
199 they are generated directly at the RTL level, by other functions below.
201 Note that this has nothing to do with defining label *names*.
202 Languages vary in how they do that and what that even means. */
204 void
205 expand_label (tree label)
207 rtx label_r = label_rtx (label);
209 do_pending_stack_adjust ();
210 emit_label (label_r);
211 if (DECL_NAME (label))
212 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
214 if (DECL_NONLOCAL (label))
216 expand_nl_goto_receiver ();
217 nonlocal_goto_handler_labels
218 = gen_rtx_EXPR_LIST (VOIDmode, label_r,
219 nonlocal_goto_handler_labels);
222 if (FORCED_LABEL (label))
223 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, label_r, forced_labels);
225 if (DECL_NONLOCAL (label) || FORCED_LABEL (label))
226 maybe_set_first_label_num (label_r);
229 /* Generate RTL code for a `goto' statement with target label LABEL.
230 LABEL should be a LABEL_DECL tree node that was or will later be
231 defined with `expand_label'. */
233 void
234 expand_goto (tree label)
236 #ifdef ENABLE_CHECKING
237 /* Check for a nonlocal goto to a containing function. Should have
238 gotten translated to __builtin_nonlocal_goto. */
239 tree context = decl_function_context (label);
240 gcc_assert (!context || context == current_function_decl);
241 #endif
243 emit_jump (label_rtx (label));
246 /* Return the number of times character C occurs in string S. */
247 static int
248 n_occurrences (int c, const char *s)
250 int n = 0;
251 while (*s)
252 n += (*s++ == c);
253 return n;
256 /* Generate RTL for an asm statement (explicit assembler code).
257 STRING is a STRING_CST node containing the assembler code text,
258 or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the
259 insn is volatile; don't optimize it. */
261 static void
262 expand_asm_loc (tree string, int vol, location_t locus)
264 rtx body;
266 if (TREE_CODE (string) == ADDR_EXPR)
267 string = TREE_OPERAND (string, 0);
269 body = gen_rtx_ASM_INPUT_loc (VOIDmode,
270 ggc_strdup (TREE_STRING_POINTER (string)),
271 locus);
273 MEM_VOLATILE_P (body) = vol;
275 emit_insn (body);
278 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
279 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
280 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
281 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
282 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
283 constraint allows the use of a register operand. And, *IS_INOUT
284 will be true if the operand is read-write, i.e., if it is used as
285 an input as well as an output. If *CONSTRAINT_P is not in
286 canonical form, it will be made canonical. (Note that `+' will be
287 replaced with `=' as part of this process.)
289 Returns TRUE if all went well; FALSE if an error occurred. */
291 bool
292 parse_output_constraint (const char **constraint_p, int operand_num,
293 int ninputs, int noutputs, bool *allows_mem,
294 bool *allows_reg, bool *is_inout)
296 const char *constraint = *constraint_p;
297 const char *p;
299 /* Assume the constraint doesn't allow the use of either a register
300 or memory. */
301 *allows_mem = false;
302 *allows_reg = false;
304 /* Allow the `=' or `+' to not be at the beginning of the string,
305 since it wasn't explicitly documented that way, and there is a
306 large body of code that puts it last. Swap the character to
307 the front, so as not to uglify any place else. */
308 p = strchr (constraint, '=');
309 if (!p)
310 p = strchr (constraint, '+');
312 /* If the string doesn't contain an `=', issue an error
313 message. */
314 if (!p)
316 error ("output operand constraint lacks %<=%>");
317 return false;
320 /* If the constraint begins with `+', then the operand is both read
321 from and written to. */
322 *is_inout = (*p == '+');
324 /* Canonicalize the output constraint so that it begins with `='. */
325 if (p != constraint || *is_inout)
327 char *buf;
328 size_t c_len = strlen (constraint);
330 if (p != constraint)
331 warning (0, "output constraint %qc for operand %d "
332 "is not at the beginning",
333 *p, operand_num);
335 /* Make a copy of the constraint. */
336 buf = XALLOCAVEC (char, c_len + 1);
337 strcpy (buf, constraint);
338 /* Swap the first character and the `=' or `+'. */
339 buf[p - constraint] = buf[0];
340 /* Make sure the first character is an `='. (Until we do this,
341 it might be a `+'.) */
342 buf[0] = '=';
343 /* Replace the constraint with the canonicalized string. */
344 *constraint_p = ggc_alloc_string (buf, c_len);
345 constraint = *constraint_p;
348 /* Loop through the constraint string. */
349 for (p = constraint + 1; *p; p += CONSTRAINT_LEN (*p, p))
350 switch (*p)
352 case '+':
353 case '=':
354 error ("operand constraint contains incorrectly positioned "
355 "%<+%> or %<=%>");
356 return false;
358 case '%':
359 if (operand_num + 1 == ninputs + noutputs)
361 error ("%<%%%> constraint used with last operand");
362 return false;
364 break;
366 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
367 *allows_mem = true;
368 break;
370 case '?': case '!': case '*': case '&': case '#':
371 case 'E': case 'F': case 'G': case 'H':
372 case 's': case 'i': case 'n':
373 case 'I': case 'J': case 'K': case 'L': case 'M':
374 case 'N': case 'O': case 'P': case ',':
375 break;
377 case '0': case '1': case '2': case '3': case '4':
378 case '5': case '6': case '7': case '8': case '9':
379 case '[':
380 error ("matching constraint not valid in output operand");
381 return false;
383 case '<': case '>':
384 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
385 excepting those that expand_call created. So match memory
386 and hope. */
387 *allows_mem = true;
388 break;
390 case 'g': case 'X':
391 *allows_reg = true;
392 *allows_mem = true;
393 break;
395 case 'p': case 'r':
396 *allows_reg = true;
397 break;
399 default:
400 if (!ISALPHA (*p))
401 break;
402 if (REG_CLASS_FROM_CONSTRAINT (*p, p) != NO_REGS)
403 *allows_reg = true;
404 #ifdef EXTRA_CONSTRAINT_STR
405 else if (EXTRA_ADDRESS_CONSTRAINT (*p, p))
406 *allows_reg = true;
407 else if (EXTRA_MEMORY_CONSTRAINT (*p, p))
408 *allows_mem = true;
409 else
411 /* Otherwise we can't assume anything about the nature of
412 the constraint except that it isn't purely registers.
413 Treat it like "g" and hope for the best. */
414 *allows_reg = true;
415 *allows_mem = true;
417 #endif
418 break;
421 return true;
424 /* Similar, but for input constraints. */
426 bool
427 parse_input_constraint (const char **constraint_p, int input_num,
428 int ninputs, int noutputs, int ninout,
429 const char * const * constraints,
430 bool *allows_mem, bool *allows_reg)
432 const char *constraint = *constraint_p;
433 const char *orig_constraint = constraint;
434 size_t c_len = strlen (constraint);
435 size_t j;
436 bool saw_match = false;
438 /* Assume the constraint doesn't allow the use of either
439 a register or memory. */
440 *allows_mem = false;
441 *allows_reg = false;
443 /* Make sure constraint has neither `=', `+', nor '&'. */
445 for (j = 0; j < c_len; j += CONSTRAINT_LEN (constraint[j], constraint+j))
446 switch (constraint[j])
448 case '+': case '=': case '&':
449 if (constraint == orig_constraint)
451 error ("input operand constraint contains %qc", constraint[j]);
452 return false;
454 break;
456 case '%':
457 if (constraint == orig_constraint
458 && input_num + 1 == ninputs - ninout)
460 error ("%<%%%> constraint used with last operand");
461 return false;
463 break;
465 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
466 *allows_mem = true;
467 break;
469 case '<': case '>':
470 case '?': case '!': case '*': case '#':
471 case 'E': case 'F': case 'G': case 'H':
472 case 's': case 'i': case 'n':
473 case 'I': case 'J': case 'K': case 'L': case 'M':
474 case 'N': case 'O': case 'P': case ',':
475 break;
477 /* Whether or not a numeric constraint allows a register is
478 decided by the matching constraint, and so there is no need
479 to do anything special with them. We must handle them in
480 the default case, so that we don't unnecessarily force
481 operands to memory. */
482 case '0': case '1': case '2': case '3': case '4':
483 case '5': case '6': case '7': case '8': case '9':
485 char *end;
486 unsigned long match;
488 saw_match = true;
490 match = strtoul (constraint + j, &end, 10);
491 if (match >= (unsigned long) noutputs)
493 error ("matching constraint references invalid operand number");
494 return false;
497 /* Try and find the real constraint for this dup. Only do this
498 if the matching constraint is the only alternative. */
499 if (*end == '\0'
500 && (j == 0 || (j == 1 && constraint[0] == '%')))
502 constraint = constraints[match];
503 *constraint_p = constraint;
504 c_len = strlen (constraint);
505 j = 0;
506 /* ??? At the end of the loop, we will skip the first part of
507 the matched constraint. This assumes not only that the
508 other constraint is an output constraint, but also that
509 the '=' or '+' come first. */
510 break;
512 else
513 j = end - constraint;
514 /* Anticipate increment at end of loop. */
515 j--;
517 /* Fall through. */
519 case 'p': case 'r':
520 *allows_reg = true;
521 break;
523 case 'g': case 'X':
524 *allows_reg = true;
525 *allows_mem = true;
526 break;
528 default:
529 if (! ISALPHA (constraint[j]))
531 error ("invalid punctuation %qc in constraint", constraint[j]);
532 return false;
534 if (REG_CLASS_FROM_CONSTRAINT (constraint[j], constraint + j)
535 != NO_REGS)
536 *allows_reg = true;
537 #ifdef EXTRA_CONSTRAINT_STR
538 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j], constraint + j))
539 *allows_reg = true;
540 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j], constraint + j))
541 *allows_mem = true;
542 else
544 /* Otherwise we can't assume anything about the nature of
545 the constraint except that it isn't purely registers.
546 Treat it like "g" and hope for the best. */
547 *allows_reg = true;
548 *allows_mem = true;
550 #endif
551 break;
554 if (saw_match && !*allows_reg)
555 warning (0, "matching constraint does not allow a register");
557 return true;
560 /* Return DECL iff there's an overlap between *REGS and DECL, where DECL
561 can be an asm-declared register. Called via walk_tree. */
563 static tree
564 decl_overlaps_hard_reg_set_p (tree *declp, int *walk_subtrees ATTRIBUTE_UNUSED,
565 void *data)
567 tree decl = *declp;
568 const HARD_REG_SET *const regs = (const HARD_REG_SET *) data;
570 if (TREE_CODE (decl) == VAR_DECL)
572 if (DECL_HARD_REGISTER (decl)
573 && REG_P (DECL_RTL (decl))
574 && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
576 rtx reg = DECL_RTL (decl);
578 if (overlaps_hard_reg_set_p (*regs, GET_MODE (reg), REGNO (reg)))
579 return decl;
581 walk_subtrees = 0;
583 else if (TYPE_P (decl) || TREE_CODE (decl) == PARM_DECL)
584 walk_subtrees = 0;
585 return NULL_TREE;
588 /* If there is an overlap between *REGS and DECL, return the first overlap
589 found. */
590 tree
591 tree_overlaps_hard_reg_set (tree decl, HARD_REG_SET *regs)
593 return walk_tree (&decl, decl_overlaps_hard_reg_set_p, regs, NULL);
596 /* Check for overlap between registers marked in CLOBBERED_REGS and
597 anything inappropriate in T. Emit error and return the register
598 variable definition for error, NULL_TREE for ok. */
600 static bool
601 tree_conflicts_with_clobbers_p (tree t, HARD_REG_SET *clobbered_regs)
603 /* Conflicts between asm-declared register variables and the clobber
604 list are not allowed. */
605 tree overlap = tree_overlaps_hard_reg_set (t, clobbered_regs);
607 if (overlap)
609 error ("asm-specifier for variable %qs conflicts with asm clobber list",
610 IDENTIFIER_POINTER (DECL_NAME (overlap)));
612 /* Reset registerness to stop multiple errors emitted for a single
613 variable. */
614 DECL_REGISTER (overlap) = 0;
615 return true;
618 return false;
621 /* Generate RTL for an asm statement with arguments.
622 STRING is the instruction template.
623 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
624 Each output or input has an expression in the TREE_VALUE and
625 a tree list in TREE_PURPOSE which in turn contains a constraint
626 name in TREE_VALUE (or NULL_TREE) and a constraint string
627 in TREE_PURPOSE.
628 CLOBBERS is a list of STRING_CST nodes each naming a hard register
629 that is clobbered by this insn.
631 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
632 Some elements of OUTPUTS may be replaced with trees representing temporary
633 values. The caller should copy those temporary values to the originally
634 specified lvalues.
636 VOL nonzero means the insn is volatile; don't optimize it. */
638 static void
639 expand_asm_operands (tree string, tree outputs, tree inputs,
640 tree clobbers, int vol, location_t locus)
642 rtvec argvec, constraintvec;
643 rtx body;
644 int ninputs = list_length (inputs);
645 int noutputs = list_length (outputs);
646 int ninout;
647 int nclobbers;
648 HARD_REG_SET clobbered_regs;
649 int clobber_conflict_found = 0;
650 tree tail;
651 tree t;
652 int i;
653 /* Vector of RTX's of evaluated output operands. */
654 rtx *output_rtx = XALLOCAVEC (rtx, noutputs);
655 int *inout_opnum = XALLOCAVEC (int, noutputs);
656 rtx *real_output_rtx = XALLOCAVEC (rtx, noutputs);
657 enum machine_mode *inout_mode = XALLOCAVEC (enum machine_mode, noutputs);
658 const char **constraints = XALLOCAVEC (const char *, noutputs + ninputs);
659 int old_generating_concat_p = generating_concat_p;
661 /* An ASM with no outputs needs to be treated as volatile, for now. */
662 if (noutputs == 0)
663 vol = 1;
665 if (! check_operand_nalternatives (outputs, inputs))
666 return;
668 string = resolve_asm_operand_names (string, outputs, inputs);
670 /* Collect constraints. */
671 i = 0;
672 for (t = outputs; t ; t = TREE_CHAIN (t), i++)
673 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
674 for (t = inputs; t ; t = TREE_CHAIN (t), i++)
675 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
677 /* Sometimes we wish to automatically clobber registers across an asm.
678 Case in point is when the i386 backend moved from cc0 to a hard reg --
679 maintaining source-level compatibility means automatically clobbering
680 the flags register. */
681 clobbers = targetm.md_asm_clobbers (outputs, inputs, clobbers);
683 /* Count the number of meaningful clobbered registers, ignoring what
684 we would ignore later. */
685 nclobbers = 0;
686 CLEAR_HARD_REG_SET (clobbered_regs);
687 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
689 const char *regname;
691 if (TREE_VALUE (tail) == error_mark_node)
692 return;
693 regname = TREE_STRING_POINTER (TREE_VALUE (tail));
695 i = decode_reg_name (regname);
696 if (i >= 0 || i == -4)
697 ++nclobbers;
698 else if (i == -2)
699 error ("unknown register name %qs in %<asm%>", regname);
701 /* Mark clobbered registers. */
702 if (i >= 0)
704 /* Clobbering the PIC register is an error. */
705 if (i == (int) PIC_OFFSET_TABLE_REGNUM)
707 error ("PIC register %qs clobbered in %<asm%>", regname);
708 return;
711 SET_HARD_REG_BIT (clobbered_regs, i);
715 /* First pass over inputs and outputs checks validity and sets
716 mark_addressable if needed. */
718 ninout = 0;
719 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
721 tree val = TREE_VALUE (tail);
722 tree type = TREE_TYPE (val);
723 const char *constraint;
724 bool is_inout;
725 bool allows_reg;
726 bool allows_mem;
728 /* If there's an erroneous arg, emit no insn. */
729 if (type == error_mark_node)
730 return;
732 /* Try to parse the output constraint. If that fails, there's
733 no point in going further. */
734 constraint = constraints[i];
735 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
736 &allows_mem, &allows_reg, &is_inout))
737 return;
739 if (! allows_reg
740 && (allows_mem
741 || is_inout
742 || (DECL_P (val)
743 && REG_P (DECL_RTL (val))
744 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
745 lang_hooks.mark_addressable (val);
747 if (is_inout)
748 ninout++;
751 ninputs += ninout;
752 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
754 error ("more than %d operands in %<asm%>", MAX_RECOG_OPERANDS);
755 return;
758 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
760 bool allows_reg, allows_mem;
761 const char *constraint;
763 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
764 would get VOIDmode and that could cause a crash in reload. */
765 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
766 return;
768 constraint = constraints[i + noutputs];
769 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
770 constraints, &allows_mem, &allows_reg))
771 return;
773 if (! allows_reg && allows_mem)
774 lang_hooks.mark_addressable (TREE_VALUE (tail));
777 /* Second pass evaluates arguments. */
779 ninout = 0;
780 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
782 tree val = TREE_VALUE (tail);
783 tree type = TREE_TYPE (val);
784 bool is_inout;
785 bool allows_reg;
786 bool allows_mem;
787 rtx op;
788 bool ok;
790 ok = parse_output_constraint (&constraints[i], i, ninputs,
791 noutputs, &allows_mem, &allows_reg,
792 &is_inout);
793 gcc_assert (ok);
795 /* If an output operand is not a decl or indirect ref and our constraint
796 allows a register, make a temporary to act as an intermediate.
797 Make the asm insn write into that, then our caller will copy it to
798 the real output operand. Likewise for promoted variables. */
800 generating_concat_p = 0;
802 real_output_rtx[i] = NULL_RTX;
803 if ((TREE_CODE (val) == INDIRECT_REF
804 && allows_mem)
805 || (DECL_P (val)
806 && (allows_mem || REG_P (DECL_RTL (val)))
807 && ! (REG_P (DECL_RTL (val))
808 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
809 || ! allows_reg
810 || is_inout)
812 op = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
813 if (MEM_P (op))
814 op = validize_mem (op);
816 if (! allows_reg && !MEM_P (op))
817 error ("output number %d not directly addressable", i);
818 if ((! allows_mem && MEM_P (op))
819 || GET_CODE (op) == CONCAT)
821 real_output_rtx[i] = op;
822 op = gen_reg_rtx (GET_MODE (op));
823 if (is_inout)
824 emit_move_insn (op, real_output_rtx[i]);
827 else
829 op = assign_temp (type, 0, 0, 1);
830 op = validize_mem (op);
831 TREE_VALUE (tail) = make_tree (type, op);
833 output_rtx[i] = op;
835 generating_concat_p = old_generating_concat_p;
837 if (is_inout)
839 inout_mode[ninout] = TYPE_MODE (type);
840 inout_opnum[ninout++] = i;
843 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
844 clobber_conflict_found = 1;
847 /* Make vectors for the expression-rtx, constraint strings,
848 and named operands. */
850 argvec = rtvec_alloc (ninputs);
851 constraintvec = rtvec_alloc (ninputs);
853 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
854 : GET_MODE (output_rtx[0])),
855 ggc_strdup (TREE_STRING_POINTER (string)),
856 empty_string, 0, argvec, constraintvec,
857 locus);
859 MEM_VOLATILE_P (body) = vol;
861 /* Eval the inputs and put them into ARGVEC.
862 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
864 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
866 bool allows_reg, allows_mem;
867 const char *constraint;
868 tree val, type;
869 rtx op;
870 bool ok;
872 constraint = constraints[i + noutputs];
873 ok = parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
874 constraints, &allows_mem, &allows_reg);
875 gcc_assert (ok);
877 generating_concat_p = 0;
879 val = TREE_VALUE (tail);
880 type = TREE_TYPE (val);
881 /* EXPAND_INITIALIZER will not generate code for valid initializer
882 constants, but will still generate code for other types of operand.
883 This is the behavior we want for constant constraints. */
884 op = expand_expr (val, NULL_RTX, VOIDmode,
885 allows_reg ? EXPAND_NORMAL
886 : allows_mem ? EXPAND_MEMORY
887 : EXPAND_INITIALIZER);
889 /* Never pass a CONCAT to an ASM. */
890 if (GET_CODE (op) == CONCAT)
891 op = force_reg (GET_MODE (op), op);
892 else if (MEM_P (op))
893 op = validize_mem (op);
895 if (asm_operand_ok (op, constraint) <= 0)
897 if (allows_reg && TYPE_MODE (type) != BLKmode)
898 op = force_reg (TYPE_MODE (type), op);
899 else if (!allows_mem)
900 warning (0, "asm operand %d probably doesn%'t match constraints",
901 i + noutputs);
902 else if (MEM_P (op))
904 /* We won't recognize either volatile memory or memory
905 with a queued address as available a memory_operand
906 at this point. Ignore it: clearly this *is* a memory. */
908 else
910 warning (0, "use of memory input without lvalue in "
911 "asm operand %d is deprecated", i + noutputs);
913 if (CONSTANT_P (op))
915 rtx mem = force_const_mem (TYPE_MODE (type), op);
916 if (mem)
917 op = validize_mem (mem);
918 else
919 op = force_reg (TYPE_MODE (type), op);
921 if (REG_P (op)
922 || GET_CODE (op) == SUBREG
923 || GET_CODE (op) == CONCAT)
925 tree qual_type = build_qualified_type (type,
926 (TYPE_QUALS (type)
927 | TYPE_QUAL_CONST));
928 rtx memloc = assign_temp (qual_type, 1, 1, 1);
929 memloc = validize_mem (memloc);
930 emit_move_insn (memloc, op);
931 op = memloc;
936 generating_concat_p = old_generating_concat_p;
937 ASM_OPERANDS_INPUT (body, i) = op;
939 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
940 = gen_rtx_ASM_INPUT (TYPE_MODE (type),
941 ggc_strdup (constraints[i + noutputs]));
943 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
944 clobber_conflict_found = 1;
947 /* Protect all the operands from the queue now that they have all been
948 evaluated. */
950 generating_concat_p = 0;
952 /* For in-out operands, copy output rtx to input rtx. */
953 for (i = 0; i < ninout; i++)
955 int j = inout_opnum[i];
956 char buffer[16];
958 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
959 = output_rtx[j];
961 sprintf (buffer, "%d", j);
962 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
963 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_strdup (buffer));
966 generating_concat_p = old_generating_concat_p;
968 /* Now, for each output, construct an rtx
969 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
970 ARGVEC CONSTRAINTS OPNAMES))
971 If there is more than one, put them inside a PARALLEL. */
973 if (noutputs == 1 && nclobbers == 0)
975 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = ggc_strdup (constraints[0]);
976 emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
979 else if (noutputs == 0 && nclobbers == 0)
981 /* No output operands: put in a raw ASM_OPERANDS rtx. */
982 emit_insn (body);
985 else
987 rtx obody = body;
988 int num = noutputs;
990 if (num == 0)
991 num = 1;
993 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
995 /* For each output operand, store a SET. */
996 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
998 XVECEXP (body, 0, i)
999 = gen_rtx_SET (VOIDmode,
1000 output_rtx[i],
1001 gen_rtx_ASM_OPERANDS
1002 (GET_MODE (output_rtx[i]),
1003 ggc_strdup (TREE_STRING_POINTER (string)),
1004 ggc_strdup (constraints[i]),
1005 i, argvec, constraintvec, locus));
1007 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1010 /* If there are no outputs (but there are some clobbers)
1011 store the bare ASM_OPERANDS into the PARALLEL. */
1013 if (i == 0)
1014 XVECEXP (body, 0, i++) = obody;
1016 /* Store (clobber REG) for each clobbered register specified. */
1018 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1020 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1021 int j = decode_reg_name (regname);
1022 rtx clobbered_reg;
1024 if (j < 0)
1026 if (j == -3) /* `cc', which is not a register */
1027 continue;
1029 if (j == -4) /* `memory', don't cache memory across asm */
1031 XVECEXP (body, 0, i++)
1032 = gen_rtx_CLOBBER (VOIDmode,
1033 gen_rtx_MEM
1034 (BLKmode,
1035 gen_rtx_SCRATCH (VOIDmode)));
1036 continue;
1039 /* Ignore unknown register, error already signaled. */
1040 continue;
1043 /* Use QImode since that's guaranteed to clobber just one reg. */
1044 clobbered_reg = gen_rtx_REG (QImode, j);
1046 /* Do sanity check for overlap between clobbers and respectively
1047 input and outputs that hasn't been handled. Such overlap
1048 should have been detected and reported above. */
1049 if (!clobber_conflict_found)
1051 int opno;
1053 /* We test the old body (obody) contents to avoid tripping
1054 over the under-construction body. */
1055 for (opno = 0; opno < noutputs; opno++)
1056 if (reg_overlap_mentioned_p (clobbered_reg, output_rtx[opno]))
1057 internal_error ("asm clobber conflict with output operand");
1059 for (opno = 0; opno < ninputs - ninout; opno++)
1060 if (reg_overlap_mentioned_p (clobbered_reg,
1061 ASM_OPERANDS_INPUT (obody, opno)))
1062 internal_error ("asm clobber conflict with input operand");
1065 XVECEXP (body, 0, i++)
1066 = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1069 emit_insn (body);
1072 /* For any outputs that needed reloading into registers, spill them
1073 back to where they belong. */
1074 for (i = 0; i < noutputs; ++i)
1075 if (real_output_rtx[i])
1076 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1078 crtl->has_asm_statement = 1;
1079 free_temp_slots ();
1082 void
1083 expand_asm_expr (tree exp)
1085 int noutputs, i;
1086 tree outputs, tail;
1087 tree *o;
1089 if (ASM_INPUT_P (exp))
1091 expand_asm_loc (ASM_STRING (exp), ASM_VOLATILE_P (exp), input_location);
1092 return;
1095 outputs = ASM_OUTPUTS (exp);
1096 noutputs = list_length (outputs);
1097 /* o[I] is the place that output number I should be written. */
1098 o = (tree *) alloca (noutputs * sizeof (tree));
1100 /* Record the contents of OUTPUTS before it is modified. */
1101 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1102 o[i] = TREE_VALUE (tail);
1104 /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
1105 OUTPUTS some trees for where the values were actually stored. */
1106 expand_asm_operands (ASM_STRING (exp), outputs, ASM_INPUTS (exp),
1107 ASM_CLOBBERS (exp), ASM_VOLATILE_P (exp),
1108 input_location);
1110 /* Copy all the intermediate outputs into the specified outputs. */
1111 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1113 if (o[i] != TREE_VALUE (tail))
1115 expand_assignment (o[i], TREE_VALUE (tail), false);
1116 free_temp_slots ();
1118 /* Restore the original value so that it's correct the next
1119 time we expand this function. */
1120 TREE_VALUE (tail) = o[i];
1125 /* A subroutine of expand_asm_operands. Check that all operands have
1126 the same number of alternatives. Return true if so. */
1128 static bool
1129 check_operand_nalternatives (tree outputs, tree inputs)
1131 if (outputs || inputs)
1133 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1134 int nalternatives
1135 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1136 tree next = inputs;
1138 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1140 error ("too many alternatives in %<asm%>");
1141 return false;
1144 tmp = outputs;
1145 while (tmp)
1147 const char *constraint
1148 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1150 if (n_occurrences (',', constraint) != nalternatives)
1152 error ("operand constraints for %<asm%> differ "
1153 "in number of alternatives");
1154 return false;
1157 if (TREE_CHAIN (tmp))
1158 tmp = TREE_CHAIN (tmp);
1159 else
1160 tmp = next, next = 0;
1164 return true;
1167 /* A subroutine of expand_asm_operands. Check that all operand names
1168 are unique. Return true if so. We rely on the fact that these names
1169 are identifiers, and so have been canonicalized by get_identifier,
1170 so all we need are pointer comparisons. */
1172 static bool
1173 check_unique_operand_names (tree outputs, tree inputs)
1175 tree i, j;
1177 for (i = outputs; i ; i = TREE_CHAIN (i))
1179 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1180 if (! i_name)
1181 continue;
1183 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1184 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1185 goto failure;
1188 for (i = inputs; i ; i = TREE_CHAIN (i))
1190 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1191 if (! i_name)
1192 continue;
1194 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1195 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1196 goto failure;
1197 for (j = outputs; j ; j = TREE_CHAIN (j))
1198 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1199 goto failure;
1202 return true;
1204 failure:
1205 error ("duplicate asm operand name %qs",
1206 TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i))));
1207 return false;
1210 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1211 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1212 STRING and in the constraints to those numbers. */
1214 tree
1215 resolve_asm_operand_names (tree string, tree outputs, tree inputs)
1217 char *buffer;
1218 char *p;
1219 const char *c;
1220 tree t;
1222 check_unique_operand_names (outputs, inputs);
1224 /* Substitute [<name>] in input constraint strings. There should be no
1225 named operands in output constraints. */
1226 for (t = inputs; t ; t = TREE_CHAIN (t))
1228 c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1229 if (strchr (c, '[') != NULL)
1231 p = buffer = xstrdup (c);
1232 while ((p = strchr (p, '[')) != NULL)
1233 p = resolve_operand_name_1 (p, outputs, inputs);
1234 TREE_VALUE (TREE_PURPOSE (t))
1235 = build_string (strlen (buffer), buffer);
1236 free (buffer);
1240 /* Now check for any needed substitutions in the template. */
1241 c = TREE_STRING_POINTER (string);
1242 while ((c = strchr (c, '%')) != NULL)
1244 if (c[1] == '[')
1245 break;
1246 else if (ISALPHA (c[1]) && c[2] == '[')
1247 break;
1248 else
1250 c += 1;
1251 continue;
1255 if (c)
1257 /* OK, we need to make a copy so we can perform the substitutions.
1258 Assume that we will not need extra space--we get to remove '['
1259 and ']', which means we cannot have a problem until we have more
1260 than 999 operands. */
1261 buffer = xstrdup (TREE_STRING_POINTER (string));
1262 p = buffer + (c - TREE_STRING_POINTER (string));
1264 while ((p = strchr (p, '%')) != NULL)
1266 if (p[1] == '[')
1267 p += 1;
1268 else if (ISALPHA (p[1]) && p[2] == '[')
1269 p += 2;
1270 else
1272 p += 1;
1273 continue;
1276 p = resolve_operand_name_1 (p, outputs, inputs);
1279 string = build_string (strlen (buffer), buffer);
1280 free (buffer);
1283 return string;
1286 /* A subroutine of resolve_operand_names. P points to the '[' for a
1287 potential named operand of the form [<name>]. In place, replace
1288 the name and brackets with a number. Return a pointer to the
1289 balance of the string after substitution. */
1291 static char *
1292 resolve_operand_name_1 (char *p, tree outputs, tree inputs)
1294 char *q;
1295 int op;
1296 tree t;
1297 size_t len;
1299 /* Collect the operand name. */
1300 q = strchr (p, ']');
1301 if (!q)
1303 error ("missing close brace for named operand");
1304 return strchr (p, '\0');
1306 len = q - p - 1;
1308 /* Resolve the name to a number. */
1309 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
1311 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1312 if (name)
1314 const char *c = TREE_STRING_POINTER (name);
1315 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
1316 goto found;
1319 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
1321 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1322 if (name)
1324 const char *c = TREE_STRING_POINTER (name);
1325 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
1326 goto found;
1330 *q = '\0';
1331 error ("undefined named operand %qs", p + 1);
1332 op = 0;
1333 found:
1335 /* Replace the name with the number. Unfortunately, not all libraries
1336 get the return value of sprintf correct, so search for the end of the
1337 generated string by hand. */
1338 sprintf (p, "%d", op);
1339 p = strchr (p, '\0');
1341 /* Verify the no extra buffer space assumption. */
1342 gcc_assert (p <= q);
1344 /* Shift the rest of the buffer down to fill the gap. */
1345 memmove (p, q + 1, strlen (q + 1) + 1);
1347 return p;
1350 /* Generate RTL to evaluate the expression EXP. */
1352 void
1353 expand_expr_stmt (tree exp)
1355 rtx value;
1356 tree type;
1358 value = expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
1359 type = TREE_TYPE (exp);
1361 /* If all we do is reference a volatile value in memory,
1362 copy it to a register to be sure it is actually touched. */
1363 if (value && MEM_P (value) && TREE_THIS_VOLATILE (exp))
1365 if (TYPE_MODE (type) == VOIDmode)
1367 else if (TYPE_MODE (type) != BLKmode)
1368 value = copy_to_reg (value);
1369 else
1371 rtx lab = gen_label_rtx ();
1373 /* Compare the value with itself to reference it. */
1374 emit_cmp_and_jump_insns (value, value, EQ,
1375 expand_normal (TYPE_SIZE (type)),
1376 BLKmode, 0, lab);
1377 emit_label (lab);
1381 /* Free any temporaries used to evaluate this expression. */
1382 free_temp_slots ();
1385 /* Warn if EXP contains any computations whose results are not used.
1386 Return 1 if a warning is printed; 0 otherwise. LOCUS is the
1387 (potential) location of the expression. */
1390 warn_if_unused_value (const_tree exp, location_t locus)
1392 restart:
1393 if (TREE_USED (exp) || TREE_NO_WARNING (exp))
1394 return 0;
1396 /* Don't warn about void constructs. This includes casting to void,
1397 void function calls, and statement expressions with a final cast
1398 to void. */
1399 if (VOID_TYPE_P (TREE_TYPE (exp)))
1400 return 0;
1402 if (EXPR_HAS_LOCATION (exp))
1403 locus = EXPR_LOCATION (exp);
1405 switch (TREE_CODE (exp))
1407 case PREINCREMENT_EXPR:
1408 case POSTINCREMENT_EXPR:
1409 case PREDECREMENT_EXPR:
1410 case POSTDECREMENT_EXPR:
1411 case MODIFY_EXPR:
1412 case INIT_EXPR:
1413 case TARGET_EXPR:
1414 case CALL_EXPR:
1415 case TRY_CATCH_EXPR:
1416 case WITH_CLEANUP_EXPR:
1417 case EXIT_EXPR:
1418 case VA_ARG_EXPR:
1419 return 0;
1421 case BIND_EXPR:
1422 /* For a binding, warn if no side effect within it. */
1423 exp = BIND_EXPR_BODY (exp);
1424 goto restart;
1426 case SAVE_EXPR:
1427 exp = TREE_OPERAND (exp, 0);
1428 goto restart;
1430 case TRUTH_ORIF_EXPR:
1431 case TRUTH_ANDIF_EXPR:
1432 /* In && or ||, warn if 2nd operand has no side effect. */
1433 exp = TREE_OPERAND (exp, 1);
1434 goto restart;
1436 case COMPOUND_EXPR:
1437 if (warn_if_unused_value (TREE_OPERAND (exp, 0), locus))
1438 return 1;
1439 /* Let people do `(foo (), 0)' without a warning. */
1440 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1441 return 0;
1442 exp = TREE_OPERAND (exp, 1);
1443 goto restart;
1445 case COND_EXPR:
1446 /* If this is an expression with side effects, don't warn; this
1447 case commonly appears in macro expansions. */
1448 if (TREE_SIDE_EFFECTS (exp))
1449 return 0;
1450 goto warn;
1452 case INDIRECT_REF:
1453 /* Don't warn about automatic dereferencing of references, since
1454 the user cannot control it. */
1455 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
1457 exp = TREE_OPERAND (exp, 0);
1458 goto restart;
1460 /* Fall through. */
1462 default:
1463 /* Referencing a volatile value is a side effect, so don't warn. */
1464 if ((DECL_P (exp) || REFERENCE_CLASS_P (exp))
1465 && TREE_THIS_VOLATILE (exp))
1466 return 0;
1468 /* If this is an expression which has no operands, there is no value
1469 to be unused. There are no such language-independent codes,
1470 but front ends may define such. */
1471 if (EXPRESSION_CLASS_P (exp) && TREE_OPERAND_LENGTH (exp) == 0)
1472 return 0;
1474 warn:
1475 warning (OPT_Wunused_value, "%Hvalue computed is not used", &locus);
1476 return 1;
1481 /* Generate RTL to return from the current function, with no value.
1482 (That is, we do not do anything about returning any value.) */
1484 void
1485 expand_null_return (void)
1487 /* If this function was declared to return a value, but we
1488 didn't, clobber the return registers so that they are not
1489 propagated live to the rest of the function. */
1490 clobber_return_register ();
1492 expand_null_return_1 ();
1495 /* Generate RTL to return directly from the current function.
1496 (That is, we bypass any return value.) */
1498 void
1499 expand_naked_return (void)
1501 rtx end_label;
1503 clear_pending_stack_adjust ();
1504 do_pending_stack_adjust ();
1506 end_label = naked_return_label;
1507 if (end_label == 0)
1508 end_label = naked_return_label = gen_label_rtx ();
1510 emit_jump (end_label);
1513 /* Generate RTL to return from the current function, with value VAL. */
1515 static void
1516 expand_value_return (rtx val)
1518 /* Copy the value to the return location
1519 unless it's already there. */
1521 rtx return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
1522 if (return_reg != val)
1524 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
1525 if (targetm.calls.promote_function_return (TREE_TYPE (current_function_decl)))
1527 int unsignedp = TYPE_UNSIGNED (type);
1528 enum machine_mode old_mode
1529 = DECL_MODE (DECL_RESULT (current_function_decl));
1530 enum machine_mode mode
1531 = promote_mode (type, old_mode, &unsignedp, 1);
1533 if (mode != old_mode)
1534 val = convert_modes (mode, old_mode, val, unsignedp);
1536 if (GET_CODE (return_reg) == PARALLEL)
1537 emit_group_load (return_reg, val, type, int_size_in_bytes (type));
1538 else
1539 emit_move_insn (return_reg, val);
1542 expand_null_return_1 ();
1545 /* Output a return with no value. */
1547 static void
1548 expand_null_return_1 (void)
1550 clear_pending_stack_adjust ();
1551 do_pending_stack_adjust ();
1552 emit_jump (return_label);
1555 /* Generate RTL to evaluate the expression RETVAL and return it
1556 from the current function. */
1558 void
1559 expand_return (tree retval)
1561 rtx result_rtl;
1562 rtx val = 0;
1563 tree retval_rhs;
1565 /* If function wants no value, give it none. */
1566 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
1568 expand_normal (retval);
1569 expand_null_return ();
1570 return;
1573 if (retval == error_mark_node)
1575 /* Treat this like a return of no value from a function that
1576 returns a value. */
1577 expand_null_return ();
1578 return;
1580 else if ((TREE_CODE (retval) == MODIFY_EXPR
1581 || TREE_CODE (retval) == INIT_EXPR)
1582 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
1583 retval_rhs = TREE_OPERAND (retval, 1);
1584 else
1585 retval_rhs = retval;
1587 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
1589 /* If we are returning the RESULT_DECL, then the value has already
1590 been stored into it, so we don't have to do anything special. */
1591 if (TREE_CODE (retval_rhs) == RESULT_DECL)
1592 expand_value_return (result_rtl);
1594 /* If the result is an aggregate that is being returned in one (or more)
1595 registers, load the registers here. The compiler currently can't handle
1596 copying a BLKmode value into registers. We could put this code in a
1597 more general area (for use by everyone instead of just function
1598 call/return), but until this feature is generally usable it is kept here
1599 (and in expand_call). */
1601 else if (retval_rhs != 0
1602 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
1603 && REG_P (result_rtl))
1605 int i;
1606 unsigned HOST_WIDE_INT bitpos, xbitpos;
1607 unsigned HOST_WIDE_INT padding_correction = 0;
1608 unsigned HOST_WIDE_INT bytes
1609 = int_size_in_bytes (TREE_TYPE (retval_rhs));
1610 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1611 unsigned int bitsize
1612 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
1613 rtx *result_pseudos = XALLOCAVEC (rtx, n_regs);
1614 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
1615 rtx result_val = expand_normal (retval_rhs);
1616 enum machine_mode tmpmode, result_reg_mode;
1618 if (bytes == 0)
1620 expand_null_return ();
1621 return;
1624 /* If the structure doesn't take up a whole number of words, see
1625 whether the register value should be padded on the left or on
1626 the right. Set PADDING_CORRECTION to the number of padding
1627 bits needed on the left side.
1629 In most ABIs, the structure will be returned at the least end of
1630 the register, which translates to right padding on little-endian
1631 targets and left padding on big-endian targets. The opposite
1632 holds if the structure is returned at the most significant
1633 end of the register. */
1634 if (bytes % UNITS_PER_WORD != 0
1635 && (targetm.calls.return_in_msb (TREE_TYPE (retval_rhs))
1636 ? !BYTES_BIG_ENDIAN
1637 : BYTES_BIG_ENDIAN))
1638 padding_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
1639 * BITS_PER_UNIT));
1641 /* Copy the structure BITSIZE bits at a time. */
1642 for (bitpos = 0, xbitpos = padding_correction;
1643 bitpos < bytes * BITS_PER_UNIT;
1644 bitpos += bitsize, xbitpos += bitsize)
1646 /* We need a new destination pseudo each time xbitpos is
1647 on a word boundary and when xbitpos == padding_correction
1648 (the first time through). */
1649 if (xbitpos % BITS_PER_WORD == 0
1650 || xbitpos == padding_correction)
1652 /* Generate an appropriate register. */
1653 dst = gen_reg_rtx (word_mode);
1654 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
1656 /* Clear the destination before we move anything into it. */
1657 emit_move_insn (dst, CONST0_RTX (GET_MODE (dst)));
1660 /* We need a new source operand each time bitpos is on a word
1661 boundary. */
1662 if (bitpos % BITS_PER_WORD == 0)
1663 src = operand_subword_force (result_val,
1664 bitpos / BITS_PER_WORD,
1665 BLKmode);
1667 /* Use bitpos for the source extraction (left justified) and
1668 xbitpos for the destination store (right justified). */
1669 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
1670 extract_bit_field (src, bitsize,
1671 bitpos % BITS_PER_WORD, 1,
1672 NULL_RTX, word_mode, word_mode));
1675 tmpmode = GET_MODE (result_rtl);
1676 if (tmpmode == BLKmode)
1678 /* Find the smallest integer mode large enough to hold the
1679 entire structure and use that mode instead of BLKmode
1680 on the USE insn for the return register. */
1681 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
1682 tmpmode != VOIDmode;
1683 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
1684 /* Have we found a large enough mode? */
1685 if (GET_MODE_SIZE (tmpmode) >= bytes)
1686 break;
1688 /* A suitable mode should have been found. */
1689 gcc_assert (tmpmode != VOIDmode);
1691 PUT_MODE (result_rtl, tmpmode);
1694 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
1695 result_reg_mode = word_mode;
1696 else
1697 result_reg_mode = tmpmode;
1698 result_reg = gen_reg_rtx (result_reg_mode);
1700 for (i = 0; i < n_regs; i++)
1701 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
1702 result_pseudos[i]);
1704 if (tmpmode != result_reg_mode)
1705 result_reg = gen_lowpart (tmpmode, result_reg);
1707 expand_value_return (result_reg);
1709 else if (retval_rhs != 0
1710 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
1711 && (REG_P (result_rtl)
1712 || (GET_CODE (result_rtl) == PARALLEL)))
1714 /* Calculate the return value into a temporary (usually a pseudo
1715 reg). */
1716 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
1717 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
1719 val = assign_temp (nt, 0, 0, 1);
1720 val = expand_expr (retval_rhs, val, GET_MODE (val), EXPAND_NORMAL);
1721 val = force_not_mem (val);
1722 /* Return the calculated value. */
1723 expand_value_return (val);
1725 else
1727 /* No hard reg used; calculate value into hard return reg. */
1728 expand_expr (retval, const0_rtx, VOIDmode, EXPAND_NORMAL);
1729 expand_value_return (result_rtl);
1733 /* Given a pointer to a BLOCK node return nonzero if (and only if) the node
1734 in question represents the outermost pair of curly braces (i.e. the "body
1735 block") of a function or method.
1737 For any BLOCK node representing a "body block" of a function or method, the
1738 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
1739 represents the outermost (function) scope for the function or method (i.e.
1740 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
1741 *that* node in turn will point to the relevant FUNCTION_DECL node. */
1744 is_body_block (const_tree stmt)
1746 if (lang_hooks.no_body_blocks)
1747 return 0;
1749 if (TREE_CODE (stmt) == BLOCK)
1751 tree parent = BLOCK_SUPERCONTEXT (stmt);
1753 if (parent && TREE_CODE (parent) == BLOCK)
1755 tree grandparent = BLOCK_SUPERCONTEXT (parent);
1757 if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
1758 return 1;
1762 return 0;
1765 /* Emit code to restore vital registers at the beginning of a nonlocal goto
1766 handler. */
1767 static void
1768 expand_nl_goto_receiver (void)
1770 /* Clobber the FP when we get here, so we have to make sure it's
1771 marked as used by this function. */
1772 emit_use (hard_frame_pointer_rtx);
1774 /* Mark the static chain as clobbered here so life information
1775 doesn't get messed up for it. */
1776 emit_clobber (static_chain_rtx);
1778 #ifdef HAVE_nonlocal_goto
1779 if (! HAVE_nonlocal_goto)
1780 #endif
1781 /* First adjust our frame pointer to its actual value. It was
1782 previously set to the start of the virtual area corresponding to
1783 the stacked variables when we branched here and now needs to be
1784 adjusted to the actual hardware fp value.
1786 Assignments are to virtual registers are converted by
1787 instantiate_virtual_regs into the corresponding assignment
1788 to the underlying register (fp in this case) that makes
1789 the original assignment true.
1790 So the following insn will actually be
1791 decrementing fp by STARTING_FRAME_OFFSET. */
1792 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
1794 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
1795 if (fixed_regs[ARG_POINTER_REGNUM])
1797 #ifdef ELIMINABLE_REGS
1798 /* If the argument pointer can be eliminated in favor of the
1799 frame pointer, we don't need to restore it. We assume here
1800 that if such an elimination is present, it can always be used.
1801 This is the case on all known machines; if we don't make this
1802 assumption, we do unnecessary saving on many machines. */
1803 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
1804 size_t i;
1806 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
1807 if (elim_regs[i].from == ARG_POINTER_REGNUM
1808 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
1809 break;
1811 if (i == ARRAY_SIZE (elim_regs))
1812 #endif
1814 /* Now restore our arg pointer from the address at which it
1815 was saved in our stack frame. */
1816 emit_move_insn (crtl->args.internal_arg_pointer,
1817 copy_to_reg (get_arg_pointer_save_area ()));
1820 #endif
1822 #ifdef HAVE_nonlocal_goto_receiver
1823 if (HAVE_nonlocal_goto_receiver)
1824 emit_insn (gen_nonlocal_goto_receiver ());
1825 #endif
1827 /* We must not allow the code we just generated to be reordered by
1828 scheduling. Specifically, the update of the frame pointer must
1829 happen immediately, not later. */
1830 emit_insn (gen_blockage ());
1833 /* Generate RTL for the automatic variable declaration DECL.
1834 (Other kinds of declarations are simply ignored if seen here.) */
1836 void
1837 expand_decl (tree decl)
1839 tree type;
1841 type = TREE_TYPE (decl);
1843 /* For a CONST_DECL, set mode, alignment, and sizes from those of the
1844 type in case this node is used in a reference. */
1845 if (TREE_CODE (decl) == CONST_DECL)
1847 DECL_MODE (decl) = TYPE_MODE (type);
1848 DECL_ALIGN (decl) = TYPE_ALIGN (type);
1849 DECL_SIZE (decl) = TYPE_SIZE (type);
1850 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
1851 return;
1854 /* Otherwise, only automatic variables need any expansion done. Static and
1855 external variables, and external functions, will be handled by
1856 `assemble_variable' (called from finish_decl). TYPE_DECL requires
1857 nothing. PARM_DECLs are handled in `assign_parms'. */
1858 if (TREE_CODE (decl) != VAR_DECL)
1859 return;
1861 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
1862 return;
1864 /* Create the RTL representation for the variable. */
1866 if (type == error_mark_node)
1867 SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
1869 else if (DECL_SIZE (decl) == 0)
1871 /* Variable with incomplete type. */
1872 rtx x;
1873 if (DECL_INITIAL (decl) == 0)
1874 /* Error message was already done; now avoid a crash. */
1875 x = gen_rtx_MEM (BLKmode, const0_rtx);
1876 else
1877 /* An initializer is going to decide the size of this array.
1878 Until we know the size, represent its address with a reg. */
1879 x = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
1881 set_mem_attributes (x, decl, 1);
1882 SET_DECL_RTL (decl, x);
1884 else if (use_register_for_decl (decl))
1886 /* Automatic variable that can go in a register. */
1887 int unsignedp = TYPE_UNSIGNED (type);
1888 enum machine_mode reg_mode
1889 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
1891 SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
1893 /* Note if the object is a user variable. */
1894 if (!DECL_ARTIFICIAL (decl))
1895 mark_user_reg (DECL_RTL (decl));
1897 if (POINTER_TYPE_P (type))
1898 mark_reg_pointer (DECL_RTL (decl),
1899 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1902 else
1904 rtx oldaddr = 0;
1905 rtx addr;
1906 rtx x;
1908 /* Variable-sized decls are dealt with in the gimplifier. */
1909 gcc_assert (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST);
1911 /* If we previously made RTL for this decl, it must be an array
1912 whose size was determined by the initializer.
1913 The old address was a register; set that register now
1914 to the proper address. */
1915 if (DECL_RTL_SET_P (decl))
1917 gcc_assert (MEM_P (DECL_RTL (decl)));
1918 gcc_assert (REG_P (XEXP (DECL_RTL (decl), 0)));
1919 oldaddr = XEXP (DECL_RTL (decl), 0);
1922 /* Set alignment we actually gave this decl. */
1923 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
1924 : GET_MODE_BITSIZE (DECL_MODE (decl)));
1925 DECL_USER_ALIGN (decl) = 0;
1927 x = assign_temp (decl, 1, 1, 1);
1928 set_mem_attributes (x, decl, 1);
1929 SET_DECL_RTL (decl, x);
1931 if (oldaddr)
1933 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
1934 if (addr != oldaddr)
1935 emit_move_insn (oldaddr, addr);
1940 /* Emit code to save the current value of stack. */
1942 expand_stack_save (void)
1944 rtx ret = NULL_RTX;
1946 do_pending_stack_adjust ();
1947 emit_stack_save (SAVE_BLOCK, &ret, NULL_RTX);
1948 return ret;
1951 /* Emit code to restore the current value of stack. */
1952 void
1953 expand_stack_restore (tree var)
1955 rtx sa = expand_normal (var);
1957 sa = convert_memory_address (Pmode, sa);
1958 emit_stack_restore (SAVE_BLOCK, sa, NULL_RTX);
1961 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
1962 DECL_ELTS is the list of elements that belong to DECL's type.
1963 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
1965 void
1966 expand_anon_union_decl (tree decl, tree cleanup ATTRIBUTE_UNUSED,
1967 tree decl_elts)
1969 rtx x;
1970 tree t;
1972 /* If any of the elements are addressable, so is the entire union. */
1973 for (t = decl_elts; t; t = TREE_CHAIN (t))
1974 if (TREE_ADDRESSABLE (TREE_VALUE (t)))
1976 TREE_ADDRESSABLE (decl) = 1;
1977 break;
1980 expand_decl (decl);
1981 x = DECL_RTL (decl);
1983 /* Go through the elements, assigning RTL to each. */
1984 for (t = decl_elts; t; t = TREE_CHAIN (t))
1986 tree decl_elt = TREE_VALUE (t);
1987 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
1988 rtx decl_rtl;
1990 /* If any of the elements are addressable, so is the entire
1991 union. */
1992 if (TREE_USED (decl_elt))
1993 TREE_USED (decl) = 1;
1995 /* Propagate the union's alignment to the elements. */
1996 DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
1997 DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
1999 /* If the element has BLKmode and the union doesn't, the union is
2000 aligned such that the element doesn't need to have BLKmode, so
2001 change the element's mode to the appropriate one for its size. */
2002 if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
2003 DECL_MODE (decl_elt) = mode
2004 = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
2006 if (mode == GET_MODE (x))
2007 decl_rtl = x;
2008 else if (MEM_P (x))
2009 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
2010 instead create a new MEM rtx with the proper mode. */
2011 decl_rtl = adjust_address_nv (x, mode, 0);
2012 else
2014 gcc_assert (REG_P (x));
2015 decl_rtl = gen_lowpart_SUBREG (mode, x);
2017 SET_DECL_RTL (decl_elt, decl_rtl);
2021 /* Do the insertion of a case label into case_list. The labels are
2022 fed to us in descending order from the sorted vector of case labels used
2023 in the tree part of the middle end. So the list we construct is
2024 sorted in ascending order. The bounds on the case range, LOW and HIGH,
2025 are converted to case's index type TYPE. */
2027 static struct case_node *
2028 add_case_node (struct case_node *head, tree type, tree low, tree high,
2029 tree label, alloc_pool case_node_pool)
2031 tree min_value, max_value;
2032 struct case_node *r;
2034 gcc_assert (TREE_CODE (low) == INTEGER_CST);
2035 gcc_assert (!high || TREE_CODE (high) == INTEGER_CST);
2037 min_value = TYPE_MIN_VALUE (type);
2038 max_value = TYPE_MAX_VALUE (type);
2040 /* If there's no HIGH value, then this is not a case range; it's
2041 just a simple case label. But that's just a degenerate case
2042 range.
2043 If the bounds are equal, turn this into the one-value case. */
2044 if (!high || tree_int_cst_equal (low, high))
2046 /* If the simple case value is unreachable, ignore it. */
2047 if ((TREE_CODE (min_value) == INTEGER_CST
2048 && tree_int_cst_compare (low, min_value) < 0)
2049 || (TREE_CODE (max_value) == INTEGER_CST
2050 && tree_int_cst_compare (low, max_value) > 0))
2051 return head;
2052 low = fold_convert (type, low);
2053 high = low;
2055 else
2057 /* If the entire case range is unreachable, ignore it. */
2058 if ((TREE_CODE (min_value) == INTEGER_CST
2059 && tree_int_cst_compare (high, min_value) < 0)
2060 || (TREE_CODE (max_value) == INTEGER_CST
2061 && tree_int_cst_compare (low, max_value) > 0))
2062 return head;
2064 /* If the lower bound is less than the index type's minimum
2065 value, truncate the range bounds. */
2066 if (TREE_CODE (min_value) == INTEGER_CST
2067 && tree_int_cst_compare (low, min_value) < 0)
2068 low = min_value;
2069 low = fold_convert (type, low);
2071 /* If the upper bound is greater than the index type's maximum
2072 value, truncate the range bounds. */
2073 if (TREE_CODE (max_value) == INTEGER_CST
2074 && tree_int_cst_compare (high, max_value) > 0)
2075 high = max_value;
2076 high = fold_convert (type, high);
2080 /* Add this label to the chain. Make sure to drop overflow flags. */
2081 r = (struct case_node *) pool_alloc (case_node_pool);
2082 r->low = build_int_cst_wide (TREE_TYPE (low), TREE_INT_CST_LOW (low),
2083 TREE_INT_CST_HIGH (low));
2084 r->high = build_int_cst_wide (TREE_TYPE (high), TREE_INT_CST_LOW (high),
2085 TREE_INT_CST_HIGH (high));
2086 r->code_label = label;
2087 r->parent = r->left = NULL;
2088 r->right = head;
2089 return r;
2092 /* Maximum number of case bit tests. */
2093 #define MAX_CASE_BIT_TESTS 3
2095 /* By default, enable case bit tests on targets with ashlsi3. */
2096 #ifndef CASE_USE_BIT_TESTS
2097 #define CASE_USE_BIT_TESTS (optab_handler (ashl_optab, word_mode)->insn_code \
2098 != CODE_FOR_nothing)
2099 #endif
2102 /* A case_bit_test represents a set of case nodes that may be
2103 selected from using a bit-wise comparison. HI and LO hold
2104 the integer to be tested against, LABEL contains the label
2105 to jump to upon success and BITS counts the number of case
2106 nodes handled by this test, typically the number of bits
2107 set in HI:LO. */
2109 struct case_bit_test
2111 HOST_WIDE_INT hi;
2112 HOST_WIDE_INT lo;
2113 rtx label;
2114 int bits;
2117 /* Determine whether "1 << x" is relatively cheap in word_mode. */
2119 static
2120 bool lshift_cheap_p (void)
2122 static bool init = false;
2123 static bool cheap = true;
2125 if (!init)
2127 rtx reg = gen_rtx_REG (word_mode, 10000);
2128 int cost = rtx_cost (gen_rtx_ASHIFT (word_mode, const1_rtx, reg), SET);
2129 cheap = cost < COSTS_N_INSNS (3);
2130 init = true;
2133 return cheap;
2136 /* Comparison function for qsort to order bit tests by decreasing
2137 number of case nodes, i.e. the node with the most cases gets
2138 tested first. */
2140 static int
2141 case_bit_test_cmp (const void *p1, const void *p2)
2143 const struct case_bit_test *const d1 = (const struct case_bit_test *) p1;
2144 const struct case_bit_test *const d2 = (const struct case_bit_test *) p2;
2146 if (d2->bits != d1->bits)
2147 return d2->bits - d1->bits;
2149 /* Stabilize the sort. */
2150 return CODE_LABEL_NUMBER (d2->label) - CODE_LABEL_NUMBER (d1->label);
2153 /* Expand a switch statement by a short sequence of bit-wise
2154 comparisons. "switch(x)" is effectively converted into
2155 "if ((1 << (x-MINVAL)) & CST)" where CST and MINVAL are
2156 integer constants.
2158 INDEX_EXPR is the value being switched on, which is of
2159 type INDEX_TYPE. MINVAL is the lowest case value of in
2160 the case nodes, of INDEX_TYPE type, and RANGE is highest
2161 value minus MINVAL, also of type INDEX_TYPE. NODES is
2162 the set of case nodes, and DEFAULT_LABEL is the label to
2163 branch to should none of the cases match.
2165 There *MUST* be MAX_CASE_BIT_TESTS or less unique case
2166 node targets. */
2168 static void
2169 emit_case_bit_tests (tree index_type, tree index_expr, tree minval,
2170 tree range, case_node_ptr nodes, rtx default_label)
2172 struct case_bit_test test[MAX_CASE_BIT_TESTS];
2173 enum machine_mode mode;
2174 rtx expr, index, label;
2175 unsigned int i,j,lo,hi;
2176 struct case_node *n;
2177 unsigned int count;
2179 count = 0;
2180 for (n = nodes; n; n = n->right)
2182 label = label_rtx (n->code_label);
2183 for (i = 0; i < count; i++)
2184 if (label == test[i].label)
2185 break;
2187 if (i == count)
2189 gcc_assert (count < MAX_CASE_BIT_TESTS);
2190 test[i].hi = 0;
2191 test[i].lo = 0;
2192 test[i].label = label;
2193 test[i].bits = 1;
2194 count++;
2196 else
2197 test[i].bits++;
2199 lo = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2200 n->low, minval), 1);
2201 hi = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2202 n->high, minval), 1);
2203 for (j = lo; j <= hi; j++)
2204 if (j >= HOST_BITS_PER_WIDE_INT)
2205 test[i].hi |= (HOST_WIDE_INT) 1 << (j - HOST_BITS_PER_INT);
2206 else
2207 test[i].lo |= (HOST_WIDE_INT) 1 << j;
2210 qsort (test, count, sizeof(*test), case_bit_test_cmp);
2212 index_expr = fold_build2 (MINUS_EXPR, index_type,
2213 fold_convert (index_type, index_expr),
2214 fold_convert (index_type, minval));
2215 index = expand_normal (index_expr);
2216 do_pending_stack_adjust ();
2218 mode = TYPE_MODE (index_type);
2219 expr = expand_normal (range);
2220 if (default_label)
2221 emit_cmp_and_jump_insns (index, expr, GTU, NULL_RTX, mode, 1,
2222 default_label);
2224 index = convert_to_mode (word_mode, index, 0);
2225 index = expand_binop (word_mode, ashl_optab, const1_rtx,
2226 index, NULL_RTX, 1, OPTAB_WIDEN);
2228 for (i = 0; i < count; i++)
2230 expr = immed_double_const (test[i].lo, test[i].hi, word_mode);
2231 expr = expand_binop (word_mode, and_optab, index, expr,
2232 NULL_RTX, 1, OPTAB_WIDEN);
2233 emit_cmp_and_jump_insns (expr, const0_rtx, NE, NULL_RTX,
2234 word_mode, 1, test[i].label);
2237 if (default_label)
2238 emit_jump (default_label);
2241 #ifndef HAVE_casesi
2242 #define HAVE_casesi 0
2243 #endif
2245 #ifndef HAVE_tablejump
2246 #define HAVE_tablejump 0
2247 #endif
2249 /* Terminate a case (Pascal/Ada) or switch (C) statement
2250 in which ORIG_INDEX is the expression to be tested.
2251 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
2252 type as given in the source before any compiler conversions.
2253 Generate the code to test it and jump to the right place. */
2255 void
2256 expand_case (tree exp)
2258 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
2259 rtx default_label = 0;
2260 struct case_node *n;
2261 unsigned int count, uniq;
2262 rtx index;
2263 rtx table_label;
2264 int ncases;
2265 rtx *labelvec;
2266 int i;
2267 rtx before_case, end, lab;
2269 tree vec = SWITCH_LABELS (exp);
2270 tree orig_type = TREE_TYPE (exp);
2271 tree index_expr = SWITCH_COND (exp);
2272 tree index_type = TREE_TYPE (index_expr);
2273 int unsignedp = TYPE_UNSIGNED (index_type);
2275 /* The insn after which the case dispatch should finally
2276 be emitted. Zero for a dummy. */
2277 rtx start;
2279 /* A list of case labels; it is first built as a list and it may then
2280 be rearranged into a nearly balanced binary tree. */
2281 struct case_node *case_list = 0;
2283 /* Label to jump to if no case matches. */
2284 tree default_label_decl = NULL_TREE;
2286 alloc_pool case_node_pool = create_alloc_pool ("struct case_node pool",
2287 sizeof (struct case_node),
2288 100);
2290 /* The switch body is lowered in gimplify.c, we should never have
2291 switches with a non-NULL SWITCH_BODY here. */
2292 gcc_assert (!SWITCH_BODY (exp));
2293 gcc_assert (SWITCH_LABELS (exp));
2295 do_pending_stack_adjust ();
2297 /* An ERROR_MARK occurs for various reasons including invalid data type. */
2298 if (index_type != error_mark_node)
2300 tree elt;
2301 bitmap label_bitmap;
2302 int vl = TREE_VEC_LENGTH (vec);
2304 /* cleanup_tree_cfg removes all SWITCH_EXPR with their index
2305 expressions being INTEGER_CST. */
2306 gcc_assert (TREE_CODE (index_expr) != INTEGER_CST);
2308 /* The default case, if ever taken, is at the end of TREE_VEC. */
2309 elt = TREE_VEC_ELT (vec, vl - 1);
2310 if (!CASE_LOW (elt) && !CASE_HIGH (elt))
2312 default_label_decl = CASE_LABEL (elt);
2313 --vl;
2316 for (i = vl - 1; i >= 0; --i)
2318 tree low, high;
2319 elt = TREE_VEC_ELT (vec, i);
2321 low = CASE_LOW (elt);
2322 gcc_assert (low);
2323 high = CASE_HIGH (elt);
2325 /* Discard empty ranges. */
2326 if (high && tree_int_cst_lt (high, low))
2327 continue;
2329 case_list = add_case_node (case_list, index_type, low, high,
2330 CASE_LABEL (elt), case_node_pool);
2334 before_case = start = get_last_insn ();
2335 if (default_label_decl)
2336 default_label = label_rtx (default_label_decl);
2338 /* Get upper and lower bounds of case values. */
2340 uniq = 0;
2341 count = 0;
2342 label_bitmap = BITMAP_ALLOC (NULL);
2343 for (n = case_list; n; n = n->right)
2345 /* Count the elements and track the largest and smallest
2346 of them (treating them as signed even if they are not). */
2347 if (count++ == 0)
2349 minval = n->low;
2350 maxval = n->high;
2352 else
2354 if (tree_int_cst_lt (n->low, minval))
2355 minval = n->low;
2356 if (tree_int_cst_lt (maxval, n->high))
2357 maxval = n->high;
2359 /* A range counts double, since it requires two compares. */
2360 if (! tree_int_cst_equal (n->low, n->high))
2361 count++;
2363 /* If we have not seen this label yet, then increase the
2364 number of unique case node targets seen. */
2365 lab = label_rtx (n->code_label);
2366 if (!bitmap_bit_p (label_bitmap, CODE_LABEL_NUMBER (lab)))
2368 bitmap_set_bit (label_bitmap, CODE_LABEL_NUMBER (lab));
2369 uniq++;
2373 BITMAP_FREE (label_bitmap);
2375 /* cleanup_tree_cfg removes all SWITCH_EXPR with a single
2376 destination, such as one with a default case only. However,
2377 it doesn't remove cases that are out of range for the switch
2378 type, so we may still get a zero here. */
2379 if (count == 0)
2381 if (default_label)
2382 emit_jump (default_label);
2383 free_alloc_pool (case_node_pool);
2384 return;
2387 /* Compute span of values. */
2388 range = fold_build2 (MINUS_EXPR, index_type, maxval, minval);
2390 /* Try implementing this switch statement by a short sequence of
2391 bit-wise comparisons. However, we let the binary-tree case
2392 below handle constant index expressions. */
2393 if (CASE_USE_BIT_TESTS
2394 && ! TREE_CONSTANT (index_expr)
2395 && compare_tree_int (range, GET_MODE_BITSIZE (word_mode)) < 0
2396 && compare_tree_int (range, 0) > 0
2397 && lshift_cheap_p ()
2398 && ((uniq == 1 && count >= 3)
2399 || (uniq == 2 && count >= 5)
2400 || (uniq == 3 && count >= 6)))
2402 /* Optimize the case where all the case values fit in a
2403 word without having to subtract MINVAL. In this case,
2404 we can optimize away the subtraction. */
2405 if (compare_tree_int (minval, 0) > 0
2406 && compare_tree_int (maxval, GET_MODE_BITSIZE (word_mode)) < 0)
2408 minval = build_int_cst (index_type, 0);
2409 range = maxval;
2411 emit_case_bit_tests (index_type, index_expr, minval, range,
2412 case_list, default_label);
2415 /* If range of values is much bigger than number of values,
2416 make a sequence of conditional branches instead of a dispatch.
2417 If the switch-index is a constant, do it this way
2418 because we can optimize it. */
2420 else if (count < case_values_threshold ()
2421 || compare_tree_int (range,
2422 (optimize_size ? 3 : 10) * count) > 0
2423 /* RANGE may be signed, and really large ranges will show up
2424 as negative numbers. */
2425 || compare_tree_int (range, 0) < 0
2426 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
2427 || flag_pic
2428 #endif
2429 || !flag_jump_tables
2430 || TREE_CONSTANT (index_expr)
2431 /* If neither casesi or tablejump is available, we can
2432 only go this way. */
2433 || (!HAVE_casesi && !HAVE_tablejump))
2435 index = expand_normal (index_expr);
2437 /* If the index is a short or char that we do not have
2438 an insn to handle comparisons directly, convert it to
2439 a full integer now, rather than letting each comparison
2440 generate the conversion. */
2442 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
2443 && ! have_insn_for (COMPARE, GET_MODE (index)))
2445 enum machine_mode wider_mode;
2446 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
2447 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
2448 if (have_insn_for (COMPARE, wider_mode))
2450 index = convert_to_mode (wider_mode, index, unsignedp);
2451 break;
2455 do_pending_stack_adjust ();
2457 if (MEM_P (index))
2458 index = copy_to_reg (index);
2460 /* We generate a binary decision tree to select the
2461 appropriate target code. This is done as follows:
2463 The list of cases is rearranged into a binary tree,
2464 nearly optimal assuming equal probability for each case.
2466 The tree is transformed into RTL, eliminating
2467 redundant test conditions at the same time.
2469 If program flow could reach the end of the
2470 decision tree an unconditional jump to the
2471 default code is emitted. */
2473 use_cost_table
2474 = (TREE_CODE (orig_type) != ENUMERAL_TYPE
2475 && estimate_case_costs (case_list));
2476 balance_case_nodes (&case_list, NULL);
2477 emit_case_nodes (index, case_list, default_label, index_type);
2478 if (default_label)
2479 emit_jump (default_label);
2481 else
2483 rtx fallback_label = label_rtx (case_list->code_label);
2484 table_label = gen_label_rtx ();
2485 if (! try_casesi (index_type, index_expr, minval, range,
2486 table_label, default_label, fallback_label))
2488 bool ok;
2490 /* Index jumptables from zero for suitable values of
2491 minval to avoid a subtraction. */
2492 if (! optimize_size
2493 && compare_tree_int (minval, 0) > 0
2494 && compare_tree_int (minval, 3) < 0)
2496 minval = build_int_cst (index_type, 0);
2497 range = maxval;
2500 ok = try_tablejump (index_type, index_expr, minval, range,
2501 table_label, default_label);
2502 gcc_assert (ok);
2505 /* Get table of labels to jump to, in order of case index. */
2507 ncases = tree_low_cst (range, 0) + 1;
2508 labelvec = XALLOCAVEC (rtx, ncases);
2509 memset (labelvec, 0, ncases * sizeof (rtx));
2511 for (n = case_list; n; n = n->right)
2513 /* Compute the low and high bounds relative to the minimum
2514 value since that should fit in a HOST_WIDE_INT while the
2515 actual values may not. */
2516 HOST_WIDE_INT i_low
2517 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2518 n->low, minval), 1);
2519 HOST_WIDE_INT i_high
2520 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2521 n->high, minval), 1);
2522 HOST_WIDE_INT i;
2524 for (i = i_low; i <= i_high; i ++)
2525 labelvec[i]
2526 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
2529 /* Fill in the gaps with the default. We may have gaps at
2530 the beginning if we tried to avoid the minval subtraction,
2531 so substitute some label even if the default label was
2532 deemed unreachable. */
2533 if (!default_label)
2534 default_label = fallback_label;
2535 for (i = 0; i < ncases; i++)
2536 if (labelvec[i] == 0)
2537 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
2539 /* Output the table. */
2540 emit_label (table_label);
2542 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
2543 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
2544 gen_rtx_LABEL_REF (Pmode, table_label),
2545 gen_rtvec_v (ncases, labelvec),
2546 const0_rtx, const0_rtx));
2547 else
2548 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
2549 gen_rtvec_v (ncases, labelvec)));
2551 /* Record no drop-through after the table. */
2552 emit_barrier ();
2555 before_case = NEXT_INSN (before_case);
2556 end = get_last_insn ();
2557 reorder_insns (before_case, end, start);
2560 free_temp_slots ();
2561 free_alloc_pool (case_node_pool);
2564 /* Generate code to jump to LABEL if OP0 and OP1 are equal in mode MODE. */
2566 static void
2567 do_jump_if_equal (enum machine_mode mode, rtx op0, rtx op1, rtx label,
2568 int unsignedp)
2570 do_compare_rtx_and_jump (op0, op1, EQ, unsignedp, mode,
2571 NULL_RTX, NULL_RTX, label);
2574 /* Not all case values are encountered equally. This function
2575 uses a heuristic to weight case labels, in cases where that
2576 looks like a reasonable thing to do.
2578 Right now, all we try to guess is text, and we establish the
2579 following weights:
2581 chars above space: 16
2582 digits: 16
2583 default: 12
2584 space, punct: 8
2585 tab: 4
2586 newline: 2
2587 other "\" chars: 1
2588 remaining chars: 0
2590 If we find any cases in the switch that are not either -1 or in the range
2591 of valid ASCII characters, or are control characters other than those
2592 commonly used with "\", don't treat this switch scanning text.
2594 Return 1 if these nodes are suitable for cost estimation, otherwise
2595 return 0. */
2597 static int
2598 estimate_case_costs (case_node_ptr node)
2600 tree min_ascii = integer_minus_one_node;
2601 tree max_ascii = build_int_cst (TREE_TYPE (node->high), 127);
2602 case_node_ptr n;
2603 int i;
2605 /* If we haven't already made the cost table, make it now. Note that the
2606 lower bound of the table is -1, not zero. */
2608 if (! cost_table_initialized)
2610 cost_table_initialized = 1;
2612 for (i = 0; i < 128; i++)
2614 if (ISALNUM (i))
2615 COST_TABLE (i) = 16;
2616 else if (ISPUNCT (i))
2617 COST_TABLE (i) = 8;
2618 else if (ISCNTRL (i))
2619 COST_TABLE (i) = -1;
2622 COST_TABLE (' ') = 8;
2623 COST_TABLE ('\t') = 4;
2624 COST_TABLE ('\0') = 4;
2625 COST_TABLE ('\n') = 2;
2626 COST_TABLE ('\f') = 1;
2627 COST_TABLE ('\v') = 1;
2628 COST_TABLE ('\b') = 1;
2631 /* See if all the case expressions look like text. It is text if the
2632 constant is >= -1 and the highest constant is <= 127. Do all comparisons
2633 as signed arithmetic since we don't want to ever access cost_table with a
2634 value less than -1. Also check that none of the constants in a range
2635 are strange control characters. */
2637 for (n = node; n; n = n->right)
2639 if (tree_int_cst_lt (n->low, min_ascii)
2640 || tree_int_cst_lt (max_ascii, n->high))
2641 return 0;
2643 for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
2644 i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
2645 if (COST_TABLE (i) < 0)
2646 return 0;
2649 /* All interesting values are within the range of interesting
2650 ASCII characters. */
2651 return 1;
2654 /* Take an ordered list of case nodes
2655 and transform them into a near optimal binary tree,
2656 on the assumption that any target code selection value is as
2657 likely as any other.
2659 The transformation is performed by splitting the ordered
2660 list into two equal sections plus a pivot. The parts are
2661 then attached to the pivot as left and right branches. Each
2662 branch is then transformed recursively. */
2664 static void
2665 balance_case_nodes (case_node_ptr *head, case_node_ptr parent)
2667 case_node_ptr np;
2669 np = *head;
2670 if (np)
2672 int cost = 0;
2673 int i = 0;
2674 int ranges = 0;
2675 case_node_ptr *npp;
2676 case_node_ptr left;
2678 /* Count the number of entries on branch. Also count the ranges. */
2680 while (np)
2682 if (!tree_int_cst_equal (np->low, np->high))
2684 ranges++;
2685 if (use_cost_table)
2686 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
2689 if (use_cost_table)
2690 cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
2692 i++;
2693 np = np->right;
2696 if (i > 2)
2698 /* Split this list if it is long enough for that to help. */
2699 npp = head;
2700 left = *npp;
2701 if (use_cost_table)
2703 /* Find the place in the list that bisects the list's total cost,
2704 Here I gets half the total cost. */
2705 int n_moved = 0;
2706 i = (cost + 1) / 2;
2707 while (1)
2709 /* Skip nodes while their cost does not reach that amount. */
2710 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2711 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
2712 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
2713 if (i <= 0)
2714 break;
2715 npp = &(*npp)->right;
2716 n_moved += 1;
2718 if (n_moved == 0)
2720 /* Leave this branch lopsided, but optimize left-hand
2721 side and fill in `parent' fields for right-hand side. */
2722 np = *head;
2723 np->parent = parent;
2724 balance_case_nodes (&np->left, np);
2725 for (; np->right; np = np->right)
2726 np->right->parent = np;
2727 return;
2730 /* If there are just three nodes, split at the middle one. */
2731 else if (i == 3)
2732 npp = &(*npp)->right;
2733 else
2735 /* Find the place in the list that bisects the list's total cost,
2736 where ranges count as 2.
2737 Here I gets half the total cost. */
2738 i = (i + ranges + 1) / 2;
2739 while (1)
2741 /* Skip nodes while their cost does not reach that amount. */
2742 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2743 i--;
2744 i--;
2745 if (i <= 0)
2746 break;
2747 npp = &(*npp)->right;
2750 *head = np = *npp;
2751 *npp = 0;
2752 np->parent = parent;
2753 np->left = left;
2755 /* Optimize each of the two split parts. */
2756 balance_case_nodes (&np->left, np);
2757 balance_case_nodes (&np->right, np);
2759 else
2761 /* Else leave this branch as one level,
2762 but fill in `parent' fields. */
2763 np = *head;
2764 np->parent = parent;
2765 for (; np->right; np = np->right)
2766 np->right->parent = np;
2771 /* Search the parent sections of the case node tree
2772 to see if a test for the lower bound of NODE would be redundant.
2773 INDEX_TYPE is the type of the index expression.
2775 The instructions to generate the case decision tree are
2776 output in the same order as nodes are processed so it is
2777 known that if a parent node checks the range of the current
2778 node minus one that the current node is bounded at its lower
2779 span. Thus the test would be redundant. */
2781 static int
2782 node_has_low_bound (case_node_ptr node, tree index_type)
2784 tree low_minus_one;
2785 case_node_ptr pnode;
2787 /* If the lower bound of this node is the lowest value in the index type,
2788 we need not test it. */
2790 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
2791 return 1;
2793 /* If this node has a left branch, the value at the left must be less
2794 than that at this node, so it cannot be bounded at the bottom and
2795 we need not bother testing any further. */
2797 if (node->left)
2798 return 0;
2800 low_minus_one = fold_build2 (MINUS_EXPR, TREE_TYPE (node->low),
2801 node->low,
2802 build_int_cst (TREE_TYPE (node->low), 1));
2804 /* If the subtraction above overflowed, we can't verify anything.
2805 Otherwise, look for a parent that tests our value - 1. */
2807 if (! tree_int_cst_lt (low_minus_one, node->low))
2808 return 0;
2810 for (pnode = node->parent; pnode; pnode = pnode->parent)
2811 if (tree_int_cst_equal (low_minus_one, pnode->high))
2812 return 1;
2814 return 0;
2817 /* Search the parent sections of the case node tree
2818 to see if a test for the upper bound of NODE would be redundant.
2819 INDEX_TYPE is the type of the index expression.
2821 The instructions to generate the case decision tree are
2822 output in the same order as nodes are processed so it is
2823 known that if a parent node checks the range of the current
2824 node plus one that the current node is bounded at its upper
2825 span. Thus the test would be redundant. */
2827 static int
2828 node_has_high_bound (case_node_ptr node, tree index_type)
2830 tree high_plus_one;
2831 case_node_ptr pnode;
2833 /* If there is no upper bound, obviously no test is needed. */
2835 if (TYPE_MAX_VALUE (index_type) == NULL)
2836 return 1;
2838 /* If the upper bound of this node is the highest value in the type
2839 of the index expression, we need not test against it. */
2841 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
2842 return 1;
2844 /* If this node has a right branch, the value at the right must be greater
2845 than that at this node, so it cannot be bounded at the top and
2846 we need not bother testing any further. */
2848 if (node->right)
2849 return 0;
2851 high_plus_one = fold_build2 (PLUS_EXPR, TREE_TYPE (node->high),
2852 node->high,
2853 build_int_cst (TREE_TYPE (node->high), 1));
2855 /* If the addition above overflowed, we can't verify anything.
2856 Otherwise, look for a parent that tests our value + 1. */
2858 if (! tree_int_cst_lt (node->high, high_plus_one))
2859 return 0;
2861 for (pnode = node->parent; pnode; pnode = pnode->parent)
2862 if (tree_int_cst_equal (high_plus_one, pnode->low))
2863 return 1;
2865 return 0;
2868 /* Search the parent sections of the
2869 case node tree to see if both tests for the upper and lower
2870 bounds of NODE would be redundant. */
2872 static int
2873 node_is_bounded (case_node_ptr node, tree index_type)
2875 return (node_has_low_bound (node, index_type)
2876 && node_has_high_bound (node, index_type));
2879 /* Emit step-by-step code to select a case for the value of INDEX.
2880 The thus generated decision tree follows the form of the
2881 case-node binary tree NODE, whose nodes represent test conditions.
2882 INDEX_TYPE is the type of the index of the switch.
2884 Care is taken to prune redundant tests from the decision tree
2885 by detecting any boundary conditions already checked by
2886 emitted rtx. (See node_has_high_bound, node_has_low_bound
2887 and node_is_bounded, above.)
2889 Where the test conditions can be shown to be redundant we emit
2890 an unconditional jump to the target code. As a further
2891 optimization, the subordinates of a tree node are examined to
2892 check for bounded nodes. In this case conditional and/or
2893 unconditional jumps as a result of the boundary check for the
2894 current node are arranged to target the subordinates associated
2895 code for out of bound conditions on the current node.
2897 We can assume that when control reaches the code generated here,
2898 the index value has already been compared with the parents
2899 of this node, and determined to be on the same side of each parent
2900 as this node is. Thus, if this node tests for the value 51,
2901 and a parent tested for 52, we don't need to consider
2902 the possibility of a value greater than 51. If another parent
2903 tests for the value 50, then this node need not test anything. */
2905 static void
2906 emit_case_nodes (rtx index, case_node_ptr node, rtx default_label,
2907 tree index_type)
2909 /* If INDEX has an unsigned type, we must make unsigned branches. */
2910 int unsignedp = TYPE_UNSIGNED (index_type);
2911 enum machine_mode mode = GET_MODE (index);
2912 enum machine_mode imode = TYPE_MODE (index_type);
2914 /* Handle indices detected as constant during RTL expansion. */
2915 if (mode == VOIDmode)
2916 mode = imode;
2918 /* See if our parents have already tested everything for us.
2919 If they have, emit an unconditional jump for this node. */
2920 if (node_is_bounded (node, index_type))
2921 emit_jump (label_rtx (node->code_label));
2923 else if (tree_int_cst_equal (node->low, node->high))
2925 /* Node is single valued. First see if the index expression matches
2926 this node and then check our children, if any. */
2928 do_jump_if_equal (mode, index,
2929 convert_modes (mode, imode,
2930 expand_normal (node->low),
2931 unsignedp),
2932 label_rtx (node->code_label), unsignedp);
2934 if (node->right != 0 && node->left != 0)
2936 /* This node has children on both sides.
2937 Dispatch to one side or the other
2938 by comparing the index value with this node's value.
2939 If one subtree is bounded, check that one first,
2940 so we can avoid real branches in the tree. */
2942 if (node_is_bounded (node->right, index_type))
2944 emit_cmp_and_jump_insns (index,
2945 convert_modes
2946 (mode, imode,
2947 expand_normal (node->high),
2948 unsignedp),
2949 GT, NULL_RTX, mode, unsignedp,
2950 label_rtx (node->right->code_label));
2951 emit_case_nodes (index, node->left, default_label, index_type);
2954 else if (node_is_bounded (node->left, index_type))
2956 emit_cmp_and_jump_insns (index,
2957 convert_modes
2958 (mode, imode,
2959 expand_normal (node->high),
2960 unsignedp),
2961 LT, NULL_RTX, mode, unsignedp,
2962 label_rtx (node->left->code_label));
2963 emit_case_nodes (index, node->right, default_label, index_type);
2966 /* If both children are single-valued cases with no
2967 children, finish up all the work. This way, we can save
2968 one ordered comparison. */
2969 else if (tree_int_cst_equal (node->right->low, node->right->high)
2970 && node->right->left == 0
2971 && node->right->right == 0
2972 && tree_int_cst_equal (node->left->low, node->left->high)
2973 && node->left->left == 0
2974 && node->left->right == 0)
2976 /* Neither node is bounded. First distinguish the two sides;
2977 then emit the code for one side at a time. */
2979 /* See if the value matches what the right hand side
2980 wants. */
2981 do_jump_if_equal (mode, index,
2982 convert_modes (mode, imode,
2983 expand_normal (node->right->low),
2984 unsignedp),
2985 label_rtx (node->right->code_label),
2986 unsignedp);
2988 /* See if the value matches what the left hand side
2989 wants. */
2990 do_jump_if_equal (mode, index,
2991 convert_modes (mode, imode,
2992 expand_normal (node->left->low),
2993 unsignedp),
2994 label_rtx (node->left->code_label),
2995 unsignedp);
2998 else
3000 /* Neither node is bounded. First distinguish the two sides;
3001 then emit the code for one side at a time. */
3003 tree test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3005 /* See if the value is on the right. */
3006 emit_cmp_and_jump_insns (index,
3007 convert_modes
3008 (mode, imode,
3009 expand_normal (node->high),
3010 unsignedp),
3011 GT, NULL_RTX, mode, unsignedp,
3012 label_rtx (test_label));
3014 /* Value must be on the left.
3015 Handle the left-hand subtree. */
3016 emit_case_nodes (index, node->left, default_label, index_type);
3017 /* If left-hand subtree does nothing,
3018 go to default. */
3019 if (default_label)
3020 emit_jump (default_label);
3022 /* Code branches here for the right-hand subtree. */
3023 expand_label (test_label);
3024 emit_case_nodes (index, node->right, default_label, index_type);
3028 else if (node->right != 0 && node->left == 0)
3030 /* Here we have a right child but no left so we issue a conditional
3031 branch to default and process the right child.
3033 Omit the conditional branch to default if the right child
3034 does not have any children and is single valued; it would
3035 cost too much space to save so little time. */
3037 if (node->right->right || node->right->left
3038 || !tree_int_cst_equal (node->right->low, node->right->high))
3040 if (!node_has_low_bound (node, index_type))
3042 emit_cmp_and_jump_insns (index,
3043 convert_modes
3044 (mode, imode,
3045 expand_normal (node->high),
3046 unsignedp),
3047 LT, NULL_RTX, mode, unsignedp,
3048 default_label);
3051 emit_case_nodes (index, node->right, default_label, index_type);
3053 else
3054 /* We cannot process node->right normally
3055 since we haven't ruled out the numbers less than
3056 this node's value. So handle node->right explicitly. */
3057 do_jump_if_equal (mode, index,
3058 convert_modes
3059 (mode, imode,
3060 expand_normal (node->right->low),
3061 unsignedp),
3062 label_rtx (node->right->code_label), unsignedp);
3065 else if (node->right == 0 && node->left != 0)
3067 /* Just one subtree, on the left. */
3068 if (node->left->left || node->left->right
3069 || !tree_int_cst_equal (node->left->low, node->left->high))
3071 if (!node_has_high_bound (node, index_type))
3073 emit_cmp_and_jump_insns (index,
3074 convert_modes
3075 (mode, imode,
3076 expand_normal (node->high),
3077 unsignedp),
3078 GT, NULL_RTX, mode, unsignedp,
3079 default_label);
3082 emit_case_nodes (index, node->left, default_label, index_type);
3084 else
3085 /* We cannot process node->left normally
3086 since we haven't ruled out the numbers less than
3087 this node's value. So handle node->left explicitly. */
3088 do_jump_if_equal (mode, index,
3089 convert_modes
3090 (mode, imode,
3091 expand_normal (node->left->low),
3092 unsignedp),
3093 label_rtx (node->left->code_label), unsignedp);
3096 else
3098 /* Node is a range. These cases are very similar to those for a single
3099 value, except that we do not start by testing whether this node
3100 is the one to branch to. */
3102 if (node->right != 0 && node->left != 0)
3104 /* Node has subtrees on both sides.
3105 If the right-hand subtree is bounded,
3106 test for it first, since we can go straight there.
3107 Otherwise, we need to make a branch in the control structure,
3108 then handle the two subtrees. */
3109 tree test_label = 0;
3111 if (node_is_bounded (node->right, index_type))
3112 /* Right hand node is fully bounded so we can eliminate any
3113 testing and branch directly to the target code. */
3114 emit_cmp_and_jump_insns (index,
3115 convert_modes
3116 (mode, imode,
3117 expand_normal (node->high),
3118 unsignedp),
3119 GT, NULL_RTX, mode, unsignedp,
3120 label_rtx (node->right->code_label));
3121 else
3123 /* Right hand node requires testing.
3124 Branch to a label where we will handle it later. */
3126 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3127 emit_cmp_and_jump_insns (index,
3128 convert_modes
3129 (mode, imode,
3130 expand_normal (node->high),
3131 unsignedp),
3132 GT, NULL_RTX, mode, unsignedp,
3133 label_rtx (test_label));
3136 /* Value belongs to this node or to the left-hand subtree. */
3138 emit_cmp_and_jump_insns (index,
3139 convert_modes
3140 (mode, imode,
3141 expand_normal (node->low),
3142 unsignedp),
3143 GE, NULL_RTX, mode, unsignedp,
3144 label_rtx (node->code_label));
3146 /* Handle the left-hand subtree. */
3147 emit_case_nodes (index, node->left, default_label, index_type);
3149 /* If right node had to be handled later, do that now. */
3151 if (test_label)
3153 /* If the left-hand subtree fell through,
3154 don't let it fall into the right-hand subtree. */
3155 if (default_label)
3156 emit_jump (default_label);
3158 expand_label (test_label);
3159 emit_case_nodes (index, node->right, default_label, index_type);
3163 else if (node->right != 0 && node->left == 0)
3165 /* Deal with values to the left of this node,
3166 if they are possible. */
3167 if (!node_has_low_bound (node, index_type))
3169 emit_cmp_and_jump_insns (index,
3170 convert_modes
3171 (mode, imode,
3172 expand_normal (node->low),
3173 unsignedp),
3174 LT, NULL_RTX, mode, unsignedp,
3175 default_label);
3178 /* Value belongs to this node or to the right-hand subtree. */
3180 emit_cmp_and_jump_insns (index,
3181 convert_modes
3182 (mode, imode,
3183 expand_normal (node->high),
3184 unsignedp),
3185 LE, NULL_RTX, mode, unsignedp,
3186 label_rtx (node->code_label));
3188 emit_case_nodes (index, node->right, default_label, index_type);
3191 else if (node->right == 0 && node->left != 0)
3193 /* Deal with values to the right of this node,
3194 if they are possible. */
3195 if (!node_has_high_bound (node, index_type))
3197 emit_cmp_and_jump_insns (index,
3198 convert_modes
3199 (mode, imode,
3200 expand_normal (node->high),
3201 unsignedp),
3202 GT, NULL_RTX, mode, unsignedp,
3203 default_label);
3206 /* Value belongs to this node or to the left-hand subtree. */
3208 emit_cmp_and_jump_insns (index,
3209 convert_modes
3210 (mode, imode,
3211 expand_normal (node->low),
3212 unsignedp),
3213 GE, NULL_RTX, mode, unsignedp,
3214 label_rtx (node->code_label));
3216 emit_case_nodes (index, node->left, default_label, index_type);
3219 else
3221 /* Node has no children so we check low and high bounds to remove
3222 redundant tests. Only one of the bounds can exist,
3223 since otherwise this node is bounded--a case tested already. */
3224 int high_bound = node_has_high_bound (node, index_type);
3225 int low_bound = node_has_low_bound (node, index_type);
3227 if (!high_bound && low_bound)
3229 emit_cmp_and_jump_insns (index,
3230 convert_modes
3231 (mode, imode,
3232 expand_normal (node->high),
3233 unsignedp),
3234 GT, NULL_RTX, mode, unsignedp,
3235 default_label);
3238 else if (!low_bound && high_bound)
3240 emit_cmp_and_jump_insns (index,
3241 convert_modes
3242 (mode, imode,
3243 expand_normal (node->low),
3244 unsignedp),
3245 LT, NULL_RTX, mode, unsignedp,
3246 default_label);
3248 else if (!low_bound && !high_bound)
3250 /* Widen LOW and HIGH to the same width as INDEX. */
3251 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
3252 tree low = build1 (CONVERT_EXPR, type, node->low);
3253 tree high = build1 (CONVERT_EXPR, type, node->high);
3254 rtx low_rtx, new_index, new_bound;
3256 /* Instead of doing two branches, emit one unsigned branch for
3257 (index-low) > (high-low). */
3258 low_rtx = expand_expr (low, NULL_RTX, mode, EXPAND_NORMAL);
3259 new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
3260 NULL_RTX, unsignedp,
3261 OPTAB_WIDEN);
3262 new_bound = expand_expr (fold_build2 (MINUS_EXPR, type,
3263 high, low),
3264 NULL_RTX, mode, EXPAND_NORMAL);
3266 emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
3267 mode, 1, default_label);
3270 emit_jump (label_rtx (node->code_label));