make __stl_prime_list in comdat
[official-gcc.git] / gcc / stmt.c
blobaf6439cd879781243396acd44a035d99c87747d9
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, 2009,
4 2010 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 "diagnostic-core.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 "gimple.h"
52 #include "regs.h"
53 #include "alloc-pool.h"
54 #include "pretty-print.h"
55 #include "bitmap.h"
56 #include "params.h"
59 /* Functions and data structures for expanding case statements. */
61 /* Case label structure, used to hold info on labels within case
62 statements. We handle "range" labels; for a single-value label
63 as in C, the high and low limits are the same.
65 We start with a vector of case nodes sorted in ascending order, and
66 the default label as the last element in the vector. Before expanding
67 to RTL, we transform this vector into a list linked via the RIGHT
68 fields in the case_node struct. Nodes with higher case values are
69 later in the list.
71 Switch statements can be output in three forms. A branch table is
72 used if there are more than a few labels and the labels are dense
73 within the range between the smallest and largest case value. If a
74 branch table is used, no further manipulations are done with the case
75 node chain.
77 The alternative to the use of a branch table is to generate a series
78 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
79 and PARENT fields to hold a binary tree. Initially the tree is
80 totally unbalanced, with everything on the right. We balance the tree
81 with nodes on the left having lower case values than the parent
82 and nodes on the right having higher values. We then output the tree
83 in order.
85 For very small, suitable switch statements, we can generate a series
86 of simple bit test and branches instead. */
88 struct case_node
90 struct case_node *left; /* Left son in binary tree */
91 struct case_node *right; /* Right son in binary tree; also node chain */
92 struct case_node *parent; /* Parent of node in binary tree */
93 tree low; /* Lowest index value for this label */
94 tree high; /* Highest index value for this label */
95 tree code_label; /* Label to jump to when node matches */
98 typedef struct case_node case_node;
99 typedef struct case_node *case_node_ptr;
101 /* These are used by estimate_case_costs and balance_case_nodes. */
103 /* This must be a signed type, and non-ANSI compilers lack signed char. */
104 static short cost_table_[129];
105 static int use_cost_table;
106 static int cost_table_initialized;
108 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
109 is unsigned. */
110 #define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
112 static int n_occurrences (int, const char *);
113 static bool tree_conflicts_with_clobbers_p (tree, HARD_REG_SET *);
114 static void expand_nl_goto_receiver (void);
115 static bool check_operand_nalternatives (tree, tree);
116 static bool check_unique_operand_names (tree, tree, tree);
117 static char *resolve_operand_name_1 (char *, tree, tree, tree);
118 static void expand_null_return_1 (void);
119 static void expand_value_return (rtx);
120 static int estimate_case_costs (case_node_ptr);
121 static bool lshift_cheap_p (void);
122 static int case_bit_test_cmp (const void *, const void *);
123 static void emit_case_bit_tests (tree, tree, tree, tree, case_node_ptr, rtx);
124 static void balance_case_nodes (case_node_ptr *, case_node_ptr);
125 static int node_has_low_bound (case_node_ptr, tree);
126 static int node_has_high_bound (case_node_ptr, tree);
127 static int node_is_bounded (case_node_ptr, tree);
128 static void emit_case_nodes (rtx, case_node_ptr, rtx, tree);
129 static struct case_node *add_case_node (struct case_node *, tree,
130 tree, tree, tree, alloc_pool);
133 /* Return the rtx-label that corresponds to a LABEL_DECL,
134 creating it if necessary. */
137 label_rtx (tree label)
139 gcc_assert (TREE_CODE (label) == LABEL_DECL);
141 if (!DECL_RTL_SET_P (label))
143 rtx r = gen_label_rtx ();
144 SET_DECL_RTL (label, r);
145 if (FORCED_LABEL (label) || DECL_NONLOCAL (label))
146 LABEL_PRESERVE_P (r) = 1;
149 return DECL_RTL (label);
152 /* As above, but also put it on the forced-reference list of the
153 function that contains it. */
155 force_label_rtx (tree label)
157 rtx ref = label_rtx (label);
158 tree function = decl_function_context (label);
160 gcc_assert (function);
162 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, ref, forced_labels);
163 return ref;
166 /* Add an unconditional jump to LABEL as the next sequential instruction. */
168 void
169 emit_jump (rtx label)
171 do_pending_stack_adjust ();
172 emit_jump_insn (gen_jump (label));
173 emit_barrier ();
176 /* Emit code to jump to the address
177 specified by the pointer expression EXP. */
179 void
180 expand_computed_goto (tree exp)
182 rtx x = expand_normal (exp);
184 x = convert_memory_address (Pmode, x);
186 do_pending_stack_adjust ();
187 emit_indirect_jump (x);
190 /* Handle goto statements and the labels that they can go to. */
192 /* Specify the location in the RTL code of a label LABEL,
193 which is a LABEL_DECL tree node.
195 This is used for the kind of label that the user can jump to with a
196 goto statement, and for alternatives of a switch or case statement.
197 RTL labels generated for loops and conditionals don't go through here;
198 they are generated directly at the RTL level, by other functions below.
200 Note that this has nothing to do with defining label *names*.
201 Languages vary in how they do that and what that even means. */
203 void
204 expand_label (tree label)
206 rtx label_r = label_rtx (label);
208 do_pending_stack_adjust ();
209 emit_label (label_r);
210 if (DECL_NAME (label))
211 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
213 if (DECL_NONLOCAL (label))
215 expand_nl_goto_receiver ();
216 nonlocal_goto_handler_labels
217 = gen_rtx_EXPR_LIST (VOIDmode, label_r,
218 nonlocal_goto_handler_labels);
221 if (FORCED_LABEL (label))
222 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, label_r, forced_labels);
224 if (DECL_NONLOCAL (label) || FORCED_LABEL (label))
225 maybe_set_first_label_num (label_r);
228 /* Generate RTL code for a `goto' statement with target label LABEL.
229 LABEL should be a LABEL_DECL tree node that was or will later be
230 defined with `expand_label'. */
232 void
233 expand_goto (tree label)
235 #ifdef ENABLE_CHECKING
236 /* Check for a nonlocal goto to a containing function. Should have
237 gotten translated to __builtin_nonlocal_goto. */
238 tree context = decl_function_context (label);
239 gcc_assert (!context || context == current_function_decl);
240 #endif
242 emit_jump (label_rtx (label));
245 /* Return the number of times character C occurs in string S. */
246 static int
247 n_occurrences (int c, const char *s)
249 int n = 0;
250 while (*s)
251 n += (*s++ == c);
252 return n;
255 /* Generate RTL for an asm statement (explicit assembler code).
256 STRING is a STRING_CST node containing the assembler code text,
257 or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the
258 insn is volatile; don't optimize it. */
260 static void
261 expand_asm_loc (tree string, int vol, location_t locus)
263 rtx body;
265 if (TREE_CODE (string) == ADDR_EXPR)
266 string = TREE_OPERAND (string, 0);
268 body = gen_rtx_ASM_INPUT_loc (VOIDmode,
269 ggc_strdup (TREE_STRING_POINTER (string)),
270 locus);
272 MEM_VOLATILE_P (body) = vol;
274 emit_insn (body);
277 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
278 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
279 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
280 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
281 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
282 constraint allows the use of a register operand. And, *IS_INOUT
283 will be true if the operand is read-write, i.e., if it is used as
284 an input as well as an output. If *CONSTRAINT_P is not in
285 canonical form, it will be made canonical. (Note that `+' will be
286 replaced with `=' as part of this process.)
288 Returns TRUE if all went well; FALSE if an error occurred. */
290 bool
291 parse_output_constraint (const char **constraint_p, int operand_num,
292 int ninputs, int noutputs, bool *allows_mem,
293 bool *allows_reg, bool *is_inout)
295 const char *constraint = *constraint_p;
296 const char *p;
298 /* Assume the constraint doesn't allow the use of either a register
299 or memory. */
300 *allows_mem = false;
301 *allows_reg = false;
303 /* Allow the `=' or `+' to not be at the beginning of the string,
304 since it wasn't explicitly documented that way, and there is a
305 large body of code that puts it last. Swap the character to
306 the front, so as not to uglify any place else. */
307 p = strchr (constraint, '=');
308 if (!p)
309 p = strchr (constraint, '+');
311 /* If the string doesn't contain an `=', issue an error
312 message. */
313 if (!p)
315 error ("output operand constraint lacks %<=%>");
316 return false;
319 /* If the constraint begins with `+', then the operand is both read
320 from and written to. */
321 *is_inout = (*p == '+');
323 /* Canonicalize the output constraint so that it begins with `='. */
324 if (p != constraint || *is_inout)
326 char *buf;
327 size_t c_len = strlen (constraint);
329 if (p != constraint)
330 warning (0, "output constraint %qc for operand %d "
331 "is not at the beginning",
332 *p, operand_num);
334 /* Make a copy of the constraint. */
335 buf = XALLOCAVEC (char, c_len + 1);
336 strcpy (buf, constraint);
337 /* Swap the first character and the `=' or `+'. */
338 buf[p - constraint] = buf[0];
339 /* Make sure the first character is an `='. (Until we do this,
340 it might be a `+'.) */
341 buf[0] = '=';
342 /* Replace the constraint with the canonicalized string. */
343 *constraint_p = ggc_alloc_string (buf, c_len);
344 constraint = *constraint_p;
347 /* Loop through the constraint string. */
348 for (p = constraint + 1; *p; p += CONSTRAINT_LEN (*p, p))
349 switch (*p)
351 case '+':
352 case '=':
353 error ("operand constraint contains incorrectly positioned "
354 "%<+%> or %<=%>");
355 return false;
357 case '%':
358 if (operand_num + 1 == ninputs + noutputs)
360 error ("%<%%%> constraint used with last operand");
361 return false;
363 break;
365 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
366 *allows_mem = true;
367 break;
369 case '?': case '!': case '*': case '&': case '#':
370 case 'E': case 'F': case 'G': case 'H':
371 case 's': case 'i': case 'n':
372 case 'I': case 'J': case 'K': case 'L': case 'M':
373 case 'N': case 'O': case 'P': case ',':
374 break;
376 case '0': case '1': case '2': case '3': case '4':
377 case '5': case '6': case '7': case '8': case '9':
378 case '[':
379 error ("matching constraint not valid in output operand");
380 return false;
382 case '<': case '>':
383 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
384 excepting those that expand_call created. So match memory
385 and hope. */
386 *allows_mem = true;
387 break;
389 case 'g': case 'X':
390 *allows_reg = true;
391 *allows_mem = true;
392 break;
394 case 'p': case 'r':
395 *allows_reg = true;
396 break;
398 default:
399 if (!ISALPHA (*p))
400 break;
401 if (REG_CLASS_FROM_CONSTRAINT (*p, p) != NO_REGS)
402 *allows_reg = true;
403 #ifdef EXTRA_CONSTRAINT_STR
404 else if (EXTRA_ADDRESS_CONSTRAINT (*p, p))
405 *allows_reg = true;
406 else if (EXTRA_MEMORY_CONSTRAINT (*p, p))
407 *allows_mem = true;
408 else
410 /* Otherwise we can't assume anything about the nature of
411 the constraint except that it isn't purely registers.
412 Treat it like "g" and hope for the best. */
413 *allows_reg = true;
414 *allows_mem = true;
416 #endif
417 break;
420 return true;
423 /* Similar, but for input constraints. */
425 bool
426 parse_input_constraint (const char **constraint_p, int input_num,
427 int ninputs, int noutputs, int ninout,
428 const char * const * constraints,
429 bool *allows_mem, bool *allows_reg)
431 const char *constraint = *constraint_p;
432 const char *orig_constraint = constraint;
433 size_t c_len = strlen (constraint);
434 size_t j;
435 bool saw_match = false;
437 /* Assume the constraint doesn't allow the use of either
438 a register or memory. */
439 *allows_mem = false;
440 *allows_reg = false;
442 /* Make sure constraint has neither `=', `+', nor '&'. */
444 for (j = 0; j < c_len; j += CONSTRAINT_LEN (constraint[j], constraint+j))
445 switch (constraint[j])
447 case '+': case '=': case '&':
448 if (constraint == orig_constraint)
450 error ("input operand constraint contains %qc", constraint[j]);
451 return false;
453 break;
455 case '%':
456 if (constraint == orig_constraint
457 && input_num + 1 == ninputs - ninout)
459 error ("%<%%%> constraint used with last operand");
460 return false;
462 break;
464 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
465 *allows_mem = true;
466 break;
468 case '<': case '>':
469 case '?': case '!': case '*': case '#':
470 case 'E': case 'F': case 'G': case 'H':
471 case 's': case 'i': case 'n':
472 case 'I': case 'J': case 'K': case 'L': case 'M':
473 case 'N': case 'O': case 'P': case ',':
474 break;
476 /* Whether or not a numeric constraint allows a register is
477 decided by the matching constraint, and so there is no need
478 to do anything special with them. We must handle them in
479 the default case, so that we don't unnecessarily force
480 operands to memory. */
481 case '0': case '1': case '2': case '3': case '4':
482 case '5': case '6': case '7': case '8': case '9':
484 char *end;
485 unsigned long match;
487 saw_match = true;
489 match = strtoul (constraint + j, &end, 10);
490 if (match >= (unsigned long) noutputs)
492 error ("matching constraint references invalid operand number");
493 return false;
496 /* Try and find the real constraint for this dup. Only do this
497 if the matching constraint is the only alternative. */
498 if (*end == '\0'
499 && (j == 0 || (j == 1 && constraint[0] == '%')))
501 constraint = constraints[match];
502 *constraint_p = constraint;
503 c_len = strlen (constraint);
504 j = 0;
505 /* ??? At the end of the loop, we will skip the first part of
506 the matched constraint. This assumes not only that the
507 other constraint is an output constraint, but also that
508 the '=' or '+' come first. */
509 break;
511 else
512 j = end - constraint;
513 /* Anticipate increment at end of loop. */
514 j--;
516 /* Fall through. */
518 case 'p': case 'r':
519 *allows_reg = true;
520 break;
522 case 'g': case 'X':
523 *allows_reg = true;
524 *allows_mem = true;
525 break;
527 default:
528 if (! ISALPHA (constraint[j]))
530 error ("invalid punctuation %qc in constraint", constraint[j]);
531 return false;
533 if (REG_CLASS_FROM_CONSTRAINT (constraint[j], constraint + j)
534 != NO_REGS)
535 *allows_reg = true;
536 #ifdef EXTRA_CONSTRAINT_STR
537 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j], constraint + j))
538 *allows_reg = true;
539 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j], constraint + j))
540 *allows_mem = true;
541 else
543 /* Otherwise we can't assume anything about the nature of
544 the constraint except that it isn't purely registers.
545 Treat it like "g" and hope for the best. */
546 *allows_reg = true;
547 *allows_mem = true;
549 #endif
550 break;
553 if (saw_match && !*allows_reg)
554 warning (0, "matching constraint does not allow a register");
556 return true;
559 /* Return DECL iff there's an overlap between *REGS and DECL, where DECL
560 can be an asm-declared register. Called via walk_tree. */
562 static tree
563 decl_overlaps_hard_reg_set_p (tree *declp, int *walk_subtrees ATTRIBUTE_UNUSED,
564 void *data)
566 tree decl = *declp;
567 const HARD_REG_SET *const regs = (const HARD_REG_SET *) data;
569 if (TREE_CODE (decl) == VAR_DECL)
571 if (DECL_HARD_REGISTER (decl)
572 && REG_P (DECL_RTL (decl))
573 && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
575 rtx reg = DECL_RTL (decl);
577 if (overlaps_hard_reg_set_p (*regs, GET_MODE (reg), REGNO (reg)))
578 return decl;
580 walk_subtrees = 0;
582 else if (TYPE_P (decl) || TREE_CODE (decl) == PARM_DECL)
583 walk_subtrees = 0;
584 return NULL_TREE;
587 /* If there is an overlap between *REGS and DECL, return the first overlap
588 found. */
589 tree
590 tree_overlaps_hard_reg_set (tree decl, HARD_REG_SET *regs)
592 return walk_tree (&decl, decl_overlaps_hard_reg_set_p, regs, NULL);
595 /* Check for overlap between registers marked in CLOBBERED_REGS and
596 anything inappropriate in T. Emit error and return the register
597 variable definition for error, NULL_TREE for ok. */
599 static bool
600 tree_conflicts_with_clobbers_p (tree t, HARD_REG_SET *clobbered_regs)
602 /* Conflicts between asm-declared register variables and the clobber
603 list are not allowed. */
604 tree overlap = tree_overlaps_hard_reg_set (t, clobbered_regs);
606 if (overlap)
608 error ("asm-specifier for variable %qE conflicts with asm clobber list",
609 DECL_NAME (overlap));
611 /* Reset registerness to stop multiple errors emitted for a single
612 variable. */
613 DECL_REGISTER (overlap) = 0;
614 return true;
617 return false;
620 /* Generate RTL for an asm statement with arguments.
621 STRING is the instruction template.
622 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
623 Each output or input has an expression in the TREE_VALUE and
624 a tree list in TREE_PURPOSE which in turn contains a constraint
625 name in TREE_VALUE (or NULL_TREE) and a constraint string
626 in TREE_PURPOSE.
627 CLOBBERS is a list of STRING_CST nodes each naming a hard register
628 that is clobbered by this insn.
630 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
631 Some elements of OUTPUTS may be replaced with trees representing temporary
632 values. The caller should copy those temporary values to the originally
633 specified lvalues.
635 VOL nonzero means the insn is volatile; don't optimize it. */
637 static void
638 expand_asm_operands (tree string, tree outputs, tree inputs,
639 tree clobbers, tree labels, int vol, location_t locus)
641 rtvec argvec, constraintvec, labelvec;
642 rtx body;
643 int ninputs = list_length (inputs);
644 int noutputs = list_length (outputs);
645 int nlabels = list_length (labels);
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, labels);
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;
690 int nregs;
692 if (TREE_VALUE (tail) == error_mark_node)
693 return;
694 regname = TREE_STRING_POINTER (TREE_VALUE (tail));
696 i = decode_reg_name_and_count (regname, &nregs);
697 if (i == -4)
698 ++nclobbers;
699 else if (i == -2)
700 error ("unknown register name %qs in %<asm%>", regname);
702 /* Mark clobbered registers. */
703 if (i >= 0)
705 int reg;
707 for (reg = i; reg < i + nregs; reg++)
709 ++nclobbers;
711 /* Clobbering the PIC register is an error. */
712 if (reg == (int) PIC_OFFSET_TABLE_REGNUM)
714 error ("PIC register clobbered by %qs in %<asm%>", regname);
715 return;
718 SET_HARD_REG_BIT (clobbered_regs, reg);
723 /* First pass over inputs and outputs checks validity and sets
724 mark_addressable if needed. */
726 ninout = 0;
727 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
729 tree val = TREE_VALUE (tail);
730 tree type = TREE_TYPE (val);
731 const char *constraint;
732 bool is_inout;
733 bool allows_reg;
734 bool allows_mem;
736 /* If there's an erroneous arg, emit no insn. */
737 if (type == error_mark_node)
738 return;
740 /* Try to parse the output constraint. If that fails, there's
741 no point in going further. */
742 constraint = constraints[i];
743 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
744 &allows_mem, &allows_reg, &is_inout))
745 return;
747 if (! allows_reg
748 && (allows_mem
749 || is_inout
750 || (DECL_P (val)
751 && REG_P (DECL_RTL (val))
752 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
753 mark_addressable (val);
755 if (is_inout)
756 ninout++;
759 ninputs += ninout;
760 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
762 error ("more than %d operands in %<asm%>", MAX_RECOG_OPERANDS);
763 return;
766 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
768 bool allows_reg, allows_mem;
769 const char *constraint;
771 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
772 would get VOIDmode and that could cause a crash in reload. */
773 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
774 return;
776 constraint = constraints[i + noutputs];
777 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
778 constraints, &allows_mem, &allows_reg))
779 return;
781 if (! allows_reg && allows_mem)
782 mark_addressable (TREE_VALUE (tail));
785 /* Second pass evaluates arguments. */
787 /* Make sure stack is consistent for asm goto. */
788 if (nlabels > 0)
789 do_pending_stack_adjust ();
791 ninout = 0;
792 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
794 tree val = TREE_VALUE (tail);
795 tree type = TREE_TYPE (val);
796 bool is_inout;
797 bool allows_reg;
798 bool allows_mem;
799 rtx op;
800 bool ok;
802 ok = parse_output_constraint (&constraints[i], i, ninputs,
803 noutputs, &allows_mem, &allows_reg,
804 &is_inout);
805 gcc_assert (ok);
807 /* If an output operand is not a decl or indirect ref and our constraint
808 allows a register, make a temporary to act as an intermediate.
809 Make the asm insn write into that, then our caller will copy it to
810 the real output operand. Likewise for promoted variables. */
812 generating_concat_p = 0;
814 real_output_rtx[i] = NULL_RTX;
815 if ((TREE_CODE (val) == INDIRECT_REF
816 && allows_mem)
817 || (DECL_P (val)
818 && (allows_mem || REG_P (DECL_RTL (val)))
819 && ! (REG_P (DECL_RTL (val))
820 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
821 || ! allows_reg
822 || is_inout)
824 op = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
825 if (MEM_P (op))
826 op = validize_mem (op);
828 if (! allows_reg && !MEM_P (op))
829 error ("output number %d not directly addressable", i);
830 if ((! allows_mem && MEM_P (op))
831 || GET_CODE (op) == CONCAT)
833 real_output_rtx[i] = op;
834 op = gen_reg_rtx (GET_MODE (op));
835 if (is_inout)
836 emit_move_insn (op, real_output_rtx[i]);
839 else
841 op = assign_temp (type, 0, 0, 1);
842 op = validize_mem (op);
843 if (!MEM_P (op) && TREE_CODE (TREE_VALUE (tail)) == SSA_NAME)
844 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (TREE_VALUE (tail)), op);
845 TREE_VALUE (tail) = make_tree (type, op);
847 output_rtx[i] = op;
849 generating_concat_p = old_generating_concat_p;
851 if (is_inout)
853 inout_mode[ninout] = TYPE_MODE (type);
854 inout_opnum[ninout++] = i;
857 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
858 clobber_conflict_found = 1;
861 /* Make vectors for the expression-rtx, constraint strings,
862 and named operands. */
864 argvec = rtvec_alloc (ninputs);
865 constraintvec = rtvec_alloc (ninputs);
866 labelvec = rtvec_alloc (nlabels);
868 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
869 : GET_MODE (output_rtx[0])),
870 ggc_strdup (TREE_STRING_POINTER (string)),
871 empty_string, 0, argvec, constraintvec,
872 labelvec, locus);
874 MEM_VOLATILE_P (body) = vol;
876 /* Eval the inputs and put them into ARGVEC.
877 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
879 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
881 bool allows_reg, allows_mem;
882 const char *constraint;
883 tree val, type;
884 rtx op;
885 bool ok;
887 constraint = constraints[i + noutputs];
888 ok = parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
889 constraints, &allows_mem, &allows_reg);
890 gcc_assert (ok);
892 generating_concat_p = 0;
894 val = TREE_VALUE (tail);
895 type = TREE_TYPE (val);
896 /* EXPAND_INITIALIZER will not generate code for valid initializer
897 constants, but will still generate code for other types of operand.
898 This is the behavior we want for constant constraints. */
899 op = expand_expr (val, NULL_RTX, VOIDmode,
900 allows_reg ? EXPAND_NORMAL
901 : allows_mem ? EXPAND_MEMORY
902 : EXPAND_INITIALIZER);
904 /* Never pass a CONCAT to an ASM. */
905 if (GET_CODE (op) == CONCAT)
906 op = force_reg (GET_MODE (op), op);
907 else if (MEM_P (op))
908 op = validize_mem (op);
910 if (asm_operand_ok (op, constraint, NULL) <= 0)
912 if (allows_reg && TYPE_MODE (type) != BLKmode)
913 op = force_reg (TYPE_MODE (type), op);
914 else if (!allows_mem)
915 warning (0, "asm operand %d probably doesn%'t match constraints",
916 i + noutputs);
917 else if (MEM_P (op))
919 /* We won't recognize either volatile memory or memory
920 with a queued address as available a memory_operand
921 at this point. Ignore it: clearly this *is* a memory. */
923 else
925 warning (0, "use of memory input without lvalue in "
926 "asm operand %d is deprecated", i + noutputs);
928 if (CONSTANT_P (op))
930 rtx mem = force_const_mem (TYPE_MODE (type), op);
931 if (mem)
932 op = validize_mem (mem);
933 else
934 op = force_reg (TYPE_MODE (type), op);
936 if (REG_P (op)
937 || GET_CODE (op) == SUBREG
938 || GET_CODE (op) == CONCAT)
940 tree qual_type = build_qualified_type (type,
941 (TYPE_QUALS (type)
942 | TYPE_QUAL_CONST));
943 rtx memloc = assign_temp (qual_type, 1, 1, 1);
944 memloc = validize_mem (memloc);
945 emit_move_insn (memloc, op);
946 op = memloc;
951 generating_concat_p = old_generating_concat_p;
952 ASM_OPERANDS_INPUT (body, i) = op;
954 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
955 = gen_rtx_ASM_INPUT (TYPE_MODE (type),
956 ggc_strdup (constraints[i + noutputs]));
958 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
959 clobber_conflict_found = 1;
962 /* Protect all the operands from the queue now that they have all been
963 evaluated. */
965 generating_concat_p = 0;
967 /* For in-out operands, copy output rtx to input rtx. */
968 for (i = 0; i < ninout; i++)
970 int j = inout_opnum[i];
971 char buffer[16];
973 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
974 = output_rtx[j];
976 sprintf (buffer, "%d", j);
977 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
978 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_strdup (buffer));
981 /* Copy labels to the vector. */
982 for (i = 0, tail = labels; i < nlabels; ++i, tail = TREE_CHAIN (tail))
983 ASM_OPERANDS_LABEL (body, i)
984 = gen_rtx_LABEL_REF (Pmode, label_rtx (TREE_VALUE (tail)));
986 generating_concat_p = old_generating_concat_p;
988 /* Now, for each output, construct an rtx
989 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
990 ARGVEC CONSTRAINTS OPNAMES))
991 If there is more than one, put them inside a PARALLEL. */
993 if (nlabels > 0 && nclobbers == 0)
995 gcc_assert (noutputs == 0);
996 emit_jump_insn (body);
998 else if (noutputs == 0 && nclobbers == 0)
1000 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1001 emit_insn (body);
1003 else if (noutputs == 1 && nclobbers == 0)
1005 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = ggc_strdup (constraints[0]);
1006 emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1008 else
1010 rtx obody = body;
1011 int num = noutputs;
1013 if (num == 0)
1014 num = 1;
1016 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1018 /* For each output operand, store a SET. */
1019 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1021 XVECEXP (body, 0, i)
1022 = gen_rtx_SET (VOIDmode,
1023 output_rtx[i],
1024 gen_rtx_ASM_OPERANDS
1025 (GET_MODE (output_rtx[i]),
1026 ggc_strdup (TREE_STRING_POINTER (string)),
1027 ggc_strdup (constraints[i]),
1028 i, argvec, constraintvec, labelvec, locus));
1030 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1033 /* If there are no outputs (but there are some clobbers)
1034 store the bare ASM_OPERANDS into the PARALLEL. */
1036 if (i == 0)
1037 XVECEXP (body, 0, i++) = obody;
1039 /* Store (clobber REG) for each clobbered register specified. */
1041 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1043 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1044 int reg, nregs;
1045 int j = decode_reg_name_and_count (regname, &nregs);
1046 rtx clobbered_reg;
1048 if (j < 0)
1050 if (j == -3) /* `cc', which is not a register */
1051 continue;
1053 if (j == -4) /* `memory', don't cache memory across asm */
1055 XVECEXP (body, 0, i++)
1056 = gen_rtx_CLOBBER (VOIDmode,
1057 gen_rtx_MEM
1058 (BLKmode,
1059 gen_rtx_SCRATCH (VOIDmode)));
1060 continue;
1063 /* Ignore unknown register, error already signaled. */
1064 continue;
1067 for (reg = j; reg < j + nregs; reg++)
1069 /* Use QImode since that's guaranteed to clobber just
1070 * one reg. */
1071 clobbered_reg = gen_rtx_REG (QImode, reg);
1073 /* Do sanity check for overlap between clobbers and
1074 respectively input and outputs that hasn't been
1075 handled. Such overlap should have been detected and
1076 reported above. */
1077 if (!clobber_conflict_found)
1079 int opno;
1081 /* We test the old body (obody) contents to avoid
1082 tripping over the under-construction body. */
1083 for (opno = 0; opno < noutputs; opno++)
1084 if (reg_overlap_mentioned_p (clobbered_reg,
1085 output_rtx[opno]))
1086 internal_error
1087 ("asm clobber conflict with output operand");
1089 for (opno = 0; opno < ninputs - ninout; opno++)
1090 if (reg_overlap_mentioned_p (clobbered_reg,
1091 ASM_OPERANDS_INPUT (obody,
1092 opno)))
1093 internal_error
1094 ("asm clobber conflict with input operand");
1097 XVECEXP (body, 0, i++)
1098 = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1102 if (nlabels > 0)
1103 emit_jump_insn (body);
1104 else
1105 emit_insn (body);
1108 /* For any outputs that needed reloading into registers, spill them
1109 back to where they belong. */
1110 for (i = 0; i < noutputs; ++i)
1111 if (real_output_rtx[i])
1112 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1114 crtl->has_asm_statement = 1;
1115 free_temp_slots ();
1118 void
1119 expand_asm_stmt (gimple stmt)
1121 int noutputs;
1122 tree outputs, tail, t;
1123 tree *o;
1124 size_t i, n;
1125 const char *s;
1126 tree str, out, in, cl, labels;
1127 location_t locus = gimple_location (stmt);
1129 /* Meh... convert the gimple asm operands into real tree lists.
1130 Eventually we should make all routines work on the vectors instead
1131 of relying on TREE_CHAIN. */
1132 out = NULL_TREE;
1133 n = gimple_asm_noutputs (stmt);
1134 if (n > 0)
1136 t = out = gimple_asm_output_op (stmt, 0);
1137 for (i = 1; i < n; i++)
1138 t = TREE_CHAIN (t) = gimple_asm_output_op (stmt, i);
1141 in = NULL_TREE;
1142 n = gimple_asm_ninputs (stmt);
1143 if (n > 0)
1145 t = in = gimple_asm_input_op (stmt, 0);
1146 for (i = 1; i < n; i++)
1147 t = TREE_CHAIN (t) = gimple_asm_input_op (stmt, i);
1150 cl = NULL_TREE;
1151 n = gimple_asm_nclobbers (stmt);
1152 if (n > 0)
1154 t = cl = gimple_asm_clobber_op (stmt, 0);
1155 for (i = 1; i < n; i++)
1156 t = TREE_CHAIN (t) = gimple_asm_clobber_op (stmt, i);
1159 labels = NULL_TREE;
1160 n = gimple_asm_nlabels (stmt);
1161 if (n > 0)
1163 t = labels = gimple_asm_label_op (stmt, 0);
1164 for (i = 1; i < n; i++)
1165 t = TREE_CHAIN (t) = gimple_asm_label_op (stmt, i);
1168 s = gimple_asm_string (stmt);
1169 str = build_string (strlen (s), s);
1171 if (gimple_asm_input_p (stmt))
1173 expand_asm_loc (str, gimple_asm_volatile_p (stmt), locus);
1174 return;
1177 outputs = out;
1178 noutputs = gimple_asm_noutputs (stmt);
1179 /* o[I] is the place that output number I should be written. */
1180 o = (tree *) alloca (noutputs * sizeof (tree));
1182 /* Record the contents of OUTPUTS before it is modified. */
1183 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1184 o[i] = TREE_VALUE (tail);
1186 /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
1187 OUTPUTS some trees for where the values were actually stored. */
1188 expand_asm_operands (str, outputs, in, cl, labels,
1189 gimple_asm_volatile_p (stmt), locus);
1191 /* Copy all the intermediate outputs into the specified outputs. */
1192 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1194 if (o[i] != TREE_VALUE (tail))
1196 expand_assignment (o[i], TREE_VALUE (tail), false);
1197 free_temp_slots ();
1199 /* Restore the original value so that it's correct the next
1200 time we expand this function. */
1201 TREE_VALUE (tail) = o[i];
1206 /* A subroutine of expand_asm_operands. Check that all operands have
1207 the same number of alternatives. Return true if so. */
1209 static bool
1210 check_operand_nalternatives (tree outputs, tree inputs)
1212 if (outputs || inputs)
1214 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1215 int nalternatives
1216 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1217 tree next = inputs;
1219 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1221 error ("too many alternatives in %<asm%>");
1222 return false;
1225 tmp = outputs;
1226 while (tmp)
1228 const char *constraint
1229 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1231 if (n_occurrences (',', constraint) != nalternatives)
1233 error ("operand constraints for %<asm%> differ "
1234 "in number of alternatives");
1235 return false;
1238 if (TREE_CHAIN (tmp))
1239 tmp = TREE_CHAIN (tmp);
1240 else
1241 tmp = next, next = 0;
1245 return true;
1248 /* A subroutine of expand_asm_operands. Check that all operand names
1249 are unique. Return true if so. We rely on the fact that these names
1250 are identifiers, and so have been canonicalized by get_identifier,
1251 so all we need are pointer comparisons. */
1253 static bool
1254 check_unique_operand_names (tree outputs, tree inputs, tree labels)
1256 tree i, j;
1258 for (i = outputs; i ; i = TREE_CHAIN (i))
1260 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1261 if (! i_name)
1262 continue;
1264 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1265 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1266 goto failure;
1269 for (i = inputs; i ; i = TREE_CHAIN (i))
1271 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1272 if (! i_name)
1273 continue;
1275 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1276 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1277 goto failure;
1278 for (j = outputs; j ; j = TREE_CHAIN (j))
1279 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1280 goto failure;
1283 for (i = labels; i ; i = TREE_CHAIN (i))
1285 tree i_name = TREE_PURPOSE (i);
1286 if (! i_name)
1287 continue;
1289 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1290 if (simple_cst_equal (i_name, TREE_PURPOSE (j)))
1291 goto failure;
1292 for (j = inputs; j ; j = TREE_CHAIN (j))
1293 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1294 goto failure;
1297 return true;
1299 failure:
1300 error ("duplicate asm operand name %qs",
1301 TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i))));
1302 return false;
1305 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1306 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1307 STRING and in the constraints to those numbers. */
1309 tree
1310 resolve_asm_operand_names (tree string, tree outputs, tree inputs, tree labels)
1312 char *buffer;
1313 char *p;
1314 const char *c;
1315 tree t;
1317 check_unique_operand_names (outputs, inputs, labels);
1319 /* Substitute [<name>] in input constraint strings. There should be no
1320 named operands in output constraints. */
1321 for (t = inputs; t ; t = TREE_CHAIN (t))
1323 c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1324 if (strchr (c, '[') != NULL)
1326 p = buffer = xstrdup (c);
1327 while ((p = strchr (p, '[')) != NULL)
1328 p = resolve_operand_name_1 (p, outputs, inputs, NULL);
1329 TREE_VALUE (TREE_PURPOSE (t))
1330 = build_string (strlen (buffer), buffer);
1331 free (buffer);
1335 /* Now check for any needed substitutions in the template. */
1336 c = TREE_STRING_POINTER (string);
1337 while ((c = strchr (c, '%')) != NULL)
1339 if (c[1] == '[')
1340 break;
1341 else if (ISALPHA (c[1]) && c[2] == '[')
1342 break;
1343 else
1345 c += 1 + (c[1] == '%');
1346 continue;
1350 if (c)
1352 /* OK, we need to make a copy so we can perform the substitutions.
1353 Assume that we will not need extra space--we get to remove '['
1354 and ']', which means we cannot have a problem until we have more
1355 than 999 operands. */
1356 buffer = xstrdup (TREE_STRING_POINTER (string));
1357 p = buffer + (c - TREE_STRING_POINTER (string));
1359 while ((p = strchr (p, '%')) != NULL)
1361 if (p[1] == '[')
1362 p += 1;
1363 else if (ISALPHA (p[1]) && p[2] == '[')
1364 p += 2;
1365 else
1367 p += 1 + (p[1] == '%');
1368 continue;
1371 p = resolve_operand_name_1 (p, outputs, inputs, labels);
1374 string = build_string (strlen (buffer), buffer);
1375 free (buffer);
1378 return string;
1381 /* A subroutine of resolve_operand_names. P points to the '[' for a
1382 potential named operand of the form [<name>]. In place, replace
1383 the name and brackets with a number. Return a pointer to the
1384 balance of the string after substitution. */
1386 static char *
1387 resolve_operand_name_1 (char *p, tree outputs, tree inputs, tree labels)
1389 char *q;
1390 int op;
1391 tree t;
1393 /* Collect the operand name. */
1394 q = strchr (++p, ']');
1395 if (!q)
1397 error ("missing close brace for named operand");
1398 return strchr (p, '\0');
1400 *q = '\0';
1402 /* Resolve the name to a number. */
1403 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
1405 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1406 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1407 goto found;
1409 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
1411 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1412 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1413 goto found;
1415 for (t = labels; t ; t = TREE_CHAIN (t), op++)
1417 tree name = TREE_PURPOSE (t);
1418 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1419 goto found;
1422 error ("undefined named operand %qs", identifier_to_locale (p));
1423 op = 0;
1425 found:
1426 /* Replace the name with the number. Unfortunately, not all libraries
1427 get the return value of sprintf correct, so search for the end of the
1428 generated string by hand. */
1429 sprintf (--p, "%d", op);
1430 p = strchr (p, '\0');
1432 /* Verify the no extra buffer space assumption. */
1433 gcc_assert (p <= q);
1435 /* Shift the rest of the buffer down to fill the gap. */
1436 memmove (p, q + 1, strlen (q + 1) + 1);
1438 return p;
1441 /* Generate RTL to evaluate the expression EXP. */
1443 void
1444 expand_expr_stmt (tree exp)
1446 rtx value;
1447 tree type;
1449 value = expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
1450 type = TREE_TYPE (exp);
1452 /* If all we do is reference a volatile value in memory,
1453 copy it to a register to be sure it is actually touched. */
1454 if (value && MEM_P (value) && TREE_THIS_VOLATILE (exp))
1456 if (TYPE_MODE (type) == VOIDmode)
1458 else if (TYPE_MODE (type) != BLKmode)
1459 copy_to_reg (value);
1460 else
1462 rtx lab = gen_label_rtx ();
1464 /* Compare the value with itself to reference it. */
1465 emit_cmp_and_jump_insns (value, value, EQ,
1466 expand_normal (TYPE_SIZE (type)),
1467 BLKmode, 0, lab);
1468 emit_label (lab);
1472 /* Free any temporaries used to evaluate this expression. */
1473 free_temp_slots ();
1476 /* Warn if EXP contains any computations whose results are not used.
1477 Return 1 if a warning is printed; 0 otherwise. LOCUS is the
1478 (potential) location of the expression. */
1481 warn_if_unused_value (const_tree exp, location_t locus)
1483 restart:
1484 if (TREE_USED (exp) || TREE_NO_WARNING (exp))
1485 return 0;
1487 /* Don't warn about void constructs. This includes casting to void,
1488 void function calls, and statement expressions with a final cast
1489 to void. */
1490 if (VOID_TYPE_P (TREE_TYPE (exp)))
1491 return 0;
1493 if (EXPR_HAS_LOCATION (exp))
1494 locus = EXPR_LOCATION (exp);
1496 switch (TREE_CODE (exp))
1498 case PREINCREMENT_EXPR:
1499 case POSTINCREMENT_EXPR:
1500 case PREDECREMENT_EXPR:
1501 case POSTDECREMENT_EXPR:
1502 case MODIFY_EXPR:
1503 case INIT_EXPR:
1504 case TARGET_EXPR:
1505 case CALL_EXPR:
1506 case TRY_CATCH_EXPR:
1507 case WITH_CLEANUP_EXPR:
1508 case EXIT_EXPR:
1509 case VA_ARG_EXPR:
1510 return 0;
1512 case BIND_EXPR:
1513 /* For a binding, warn if no side effect within it. */
1514 exp = BIND_EXPR_BODY (exp);
1515 goto restart;
1517 case SAVE_EXPR:
1518 case NON_LVALUE_EXPR:
1519 exp = TREE_OPERAND (exp, 0);
1520 goto restart;
1522 case TRUTH_ORIF_EXPR:
1523 case TRUTH_ANDIF_EXPR:
1524 /* In && or ||, warn if 2nd operand has no side effect. */
1525 exp = TREE_OPERAND (exp, 1);
1526 goto restart;
1528 case COMPOUND_EXPR:
1529 if (warn_if_unused_value (TREE_OPERAND (exp, 0), locus))
1530 return 1;
1531 /* Let people do `(foo (), 0)' without a warning. */
1532 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1533 return 0;
1534 exp = TREE_OPERAND (exp, 1);
1535 goto restart;
1537 case COND_EXPR:
1538 /* If this is an expression with side effects, don't warn; this
1539 case commonly appears in macro expansions. */
1540 if (TREE_SIDE_EFFECTS (exp))
1541 return 0;
1542 goto warn;
1544 case INDIRECT_REF:
1545 /* Don't warn about automatic dereferencing of references, since
1546 the user cannot control it. */
1547 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
1549 exp = TREE_OPERAND (exp, 0);
1550 goto restart;
1552 /* Fall through. */
1554 default:
1555 /* Referencing a volatile value is a side effect, so don't warn. */
1556 if ((DECL_P (exp) || REFERENCE_CLASS_P (exp))
1557 && TREE_THIS_VOLATILE (exp))
1558 return 0;
1560 /* If this is an expression which has no operands, there is no value
1561 to be unused. There are no such language-independent codes,
1562 but front ends may define such. */
1563 if (EXPRESSION_CLASS_P (exp) && TREE_OPERAND_LENGTH (exp) == 0)
1564 return 0;
1566 warn:
1567 warning_at (locus, OPT_Wunused_value, "value computed is not used");
1568 return 1;
1573 /* Generate RTL to return from the current function, with no value.
1574 (That is, we do not do anything about returning any value.) */
1576 void
1577 expand_null_return (void)
1579 /* If this function was declared to return a value, but we
1580 didn't, clobber the return registers so that they are not
1581 propagated live to the rest of the function. */
1582 clobber_return_register ();
1584 expand_null_return_1 ();
1587 /* Generate RTL to return directly from the current function.
1588 (That is, we bypass any return value.) */
1590 void
1591 expand_naked_return (void)
1593 rtx end_label;
1595 clear_pending_stack_adjust ();
1596 do_pending_stack_adjust ();
1598 end_label = naked_return_label;
1599 if (end_label == 0)
1600 end_label = naked_return_label = gen_label_rtx ();
1602 emit_jump (end_label);
1605 /* Generate RTL to return from the current function, with value VAL. */
1607 static void
1608 expand_value_return (rtx val)
1610 /* Copy the value to the return location unless it's already there. */
1612 tree decl = DECL_RESULT (current_function_decl);
1613 rtx return_reg = DECL_RTL (decl);
1614 if (return_reg != val)
1616 tree funtype = TREE_TYPE (current_function_decl);
1617 tree type = TREE_TYPE (decl);
1618 int unsignedp = TYPE_UNSIGNED (type);
1619 enum machine_mode old_mode = DECL_MODE (decl);
1620 enum machine_mode mode;
1621 if (DECL_BY_REFERENCE (decl))
1622 mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 2);
1623 else
1624 mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 1);
1626 if (mode != old_mode)
1627 val = convert_modes (mode, old_mode, val, unsignedp);
1629 if (GET_CODE (return_reg) == PARALLEL)
1630 emit_group_load (return_reg, val, type, int_size_in_bytes (type));
1631 else
1632 emit_move_insn (return_reg, val);
1635 expand_null_return_1 ();
1638 /* Output a return with no value. */
1640 static void
1641 expand_null_return_1 (void)
1643 clear_pending_stack_adjust ();
1644 do_pending_stack_adjust ();
1645 emit_jump (return_label);
1648 /* Generate RTL to evaluate the expression RETVAL and return it
1649 from the current function. */
1651 void
1652 expand_return (tree retval)
1654 rtx result_rtl;
1655 rtx val = 0;
1656 tree retval_rhs;
1658 /* If function wants no value, give it none. */
1659 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
1661 expand_normal (retval);
1662 expand_null_return ();
1663 return;
1666 if (retval == error_mark_node)
1668 /* Treat this like a return of no value from a function that
1669 returns a value. */
1670 expand_null_return ();
1671 return;
1673 else if ((TREE_CODE (retval) == MODIFY_EXPR
1674 || TREE_CODE (retval) == INIT_EXPR)
1675 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
1676 retval_rhs = TREE_OPERAND (retval, 1);
1677 else
1678 retval_rhs = retval;
1680 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
1682 /* If we are returning the RESULT_DECL, then the value has already
1683 been stored into it, so we don't have to do anything special. */
1684 if (TREE_CODE (retval_rhs) == RESULT_DECL)
1685 expand_value_return (result_rtl);
1687 /* If the result is an aggregate that is being returned in one (or more)
1688 registers, load the registers here. */
1690 else if (retval_rhs != 0
1691 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
1692 && REG_P (result_rtl))
1694 val = copy_blkmode_to_reg (GET_MODE (result_rtl), retval_rhs);
1695 if (val)
1697 /* Use the mode of the result value on the return register. */
1698 PUT_MODE (result_rtl, GET_MODE (val));
1699 expand_value_return (val);
1701 else
1702 expand_null_return ();
1704 else if (retval_rhs != 0
1705 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
1706 && (REG_P (result_rtl)
1707 || (GET_CODE (result_rtl) == PARALLEL)))
1709 /* Calculate the return value into a temporary (usually a pseudo
1710 reg). */
1711 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
1712 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
1714 val = assign_temp (nt, 0, 0, 1);
1715 val = expand_expr (retval_rhs, val, GET_MODE (val), EXPAND_NORMAL);
1716 val = force_not_mem (val);
1717 /* Return the calculated value. */
1718 expand_value_return (val);
1720 else
1722 /* No hard reg used; calculate value into hard return reg. */
1723 expand_expr (retval, const0_rtx, VOIDmode, EXPAND_NORMAL);
1724 expand_value_return (result_rtl);
1728 /* Emit code to restore vital registers at the beginning of a nonlocal goto
1729 handler. */
1730 static void
1731 expand_nl_goto_receiver (void)
1733 rtx chain;
1735 /* Clobber the FP when we get here, so we have to make sure it's
1736 marked as used by this function. */
1737 emit_use (hard_frame_pointer_rtx);
1739 /* Mark the static chain as clobbered here so life information
1740 doesn't get messed up for it. */
1741 chain = targetm.calls.static_chain (current_function_decl, true);
1742 if (chain && REG_P (chain))
1743 emit_clobber (chain);
1745 #ifdef HAVE_nonlocal_goto
1746 if (! HAVE_nonlocal_goto)
1747 #endif
1748 /* First adjust our frame pointer to its actual value. It was
1749 previously set to the start of the virtual area corresponding to
1750 the stacked variables when we branched here and now needs to be
1751 adjusted to the actual hardware fp value.
1753 Assignments are to virtual registers are converted by
1754 instantiate_virtual_regs into the corresponding assignment
1755 to the underlying register (fp in this case) that makes
1756 the original assignment true.
1757 So the following insn will actually be
1758 decrementing fp by STARTING_FRAME_OFFSET. */
1759 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
1761 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
1762 if (fixed_regs[ARG_POINTER_REGNUM])
1764 #ifdef ELIMINABLE_REGS
1765 /* If the argument pointer can be eliminated in favor of the
1766 frame pointer, we don't need to restore it. We assume here
1767 that if such an elimination is present, it can always be used.
1768 This is the case on all known machines; if we don't make this
1769 assumption, we do unnecessary saving on many machines. */
1770 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
1771 size_t i;
1773 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
1774 if (elim_regs[i].from == ARG_POINTER_REGNUM
1775 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
1776 break;
1778 if (i == ARRAY_SIZE (elim_regs))
1779 #endif
1781 /* Now restore our arg pointer from the address at which it
1782 was saved in our stack frame. */
1783 emit_move_insn (crtl->args.internal_arg_pointer,
1784 copy_to_reg (get_arg_pointer_save_area ()));
1787 #endif
1789 #ifdef HAVE_nonlocal_goto_receiver
1790 if (HAVE_nonlocal_goto_receiver)
1791 emit_insn (gen_nonlocal_goto_receiver ());
1792 #endif
1794 /* We must not allow the code we just generated to be reordered by
1795 scheduling. Specifically, the update of the frame pointer must
1796 happen immediately, not later. */
1797 emit_insn (gen_blockage ());
1800 /* Generate RTL for the automatic variable declaration DECL.
1801 (Other kinds of declarations are simply ignored if seen here.) */
1803 void
1804 expand_decl (tree decl)
1806 tree type;
1808 type = TREE_TYPE (decl);
1810 /* For a CONST_DECL, set mode, alignment, and sizes from those of the
1811 type in case this node is used in a reference. */
1812 if (TREE_CODE (decl) == CONST_DECL)
1814 DECL_MODE (decl) = TYPE_MODE (type);
1815 DECL_ALIGN (decl) = TYPE_ALIGN (type);
1816 DECL_SIZE (decl) = TYPE_SIZE (type);
1817 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
1818 return;
1821 /* Otherwise, only automatic variables need any expansion done. Static and
1822 external variables, and external functions, will be handled by
1823 `assemble_variable' (called from finish_decl). TYPE_DECL requires
1824 nothing. PARM_DECLs are handled in `assign_parms'. */
1825 if (TREE_CODE (decl) != VAR_DECL)
1826 return;
1828 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
1829 return;
1831 /* Create the RTL representation for the variable. */
1833 if (type == error_mark_node)
1834 SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
1836 else if (DECL_SIZE (decl) == 0)
1838 /* Variable with incomplete type. */
1839 rtx x;
1840 if (DECL_INITIAL (decl) == 0)
1841 /* Error message was already done; now avoid a crash. */
1842 x = gen_rtx_MEM (BLKmode, const0_rtx);
1843 else
1844 /* An initializer is going to decide the size of this array.
1845 Until we know the size, represent its address with a reg. */
1846 x = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
1848 set_mem_attributes (x, decl, 1);
1849 SET_DECL_RTL (decl, x);
1851 else if (use_register_for_decl (decl))
1853 /* Automatic variable that can go in a register. */
1854 enum machine_mode reg_mode = promote_decl_mode (decl, NULL);
1856 SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
1858 /* Note if the object is a user variable. */
1859 if (!DECL_ARTIFICIAL (decl))
1860 mark_user_reg (DECL_RTL (decl));
1862 if (POINTER_TYPE_P (type))
1863 mark_reg_pointer (DECL_RTL (decl),
1864 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1867 else
1869 rtx oldaddr = 0;
1870 rtx addr;
1871 rtx x;
1873 /* Variable-sized decls are dealt with in the gimplifier. */
1874 gcc_assert (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST);
1876 /* If we previously made RTL for this decl, it must be an array
1877 whose size was determined by the initializer.
1878 The old address was a register; set that register now
1879 to the proper address. */
1880 if (DECL_RTL_SET_P (decl))
1882 gcc_assert (MEM_P (DECL_RTL (decl)));
1883 gcc_assert (REG_P (XEXP (DECL_RTL (decl), 0)));
1884 oldaddr = XEXP (DECL_RTL (decl), 0);
1887 /* Set alignment we actually gave this decl. */
1888 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
1889 : GET_MODE_BITSIZE (DECL_MODE (decl)));
1890 DECL_USER_ALIGN (decl) = 0;
1892 x = assign_temp (decl, 1, 1, 1);
1893 set_mem_attributes (x, decl, 1);
1894 SET_DECL_RTL (decl, x);
1896 if (oldaddr)
1898 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
1899 if (addr != oldaddr)
1900 emit_move_insn (oldaddr, addr);
1905 /* Emit code to save the current value of stack. */
1907 expand_stack_save (void)
1909 rtx ret = NULL_RTX;
1911 do_pending_stack_adjust ();
1912 emit_stack_save (SAVE_BLOCK, &ret);
1913 return ret;
1916 /* Emit code to restore the current value of stack. */
1917 void
1918 expand_stack_restore (tree var)
1920 rtx prev, sa = expand_normal (var);
1922 sa = convert_memory_address (Pmode, sa);
1924 prev = get_last_insn ();
1925 emit_stack_restore (SAVE_BLOCK, sa);
1926 fixup_args_size_notes (prev, get_last_insn (), 0);
1929 /* Do the insertion of a case label into case_list. The labels are
1930 fed to us in descending order from the sorted vector of case labels used
1931 in the tree part of the middle end. So the list we construct is
1932 sorted in ascending order. The bounds on the case range, LOW and HIGH,
1933 are converted to case's index type TYPE. */
1935 static struct case_node *
1936 add_case_node (struct case_node *head, tree type, tree low, tree high,
1937 tree label, alloc_pool case_node_pool)
1939 tree min_value, max_value;
1940 struct case_node *r;
1942 gcc_assert (TREE_CODE (low) == INTEGER_CST);
1943 gcc_assert (!high || TREE_CODE (high) == INTEGER_CST);
1945 min_value = TYPE_MIN_VALUE (type);
1946 max_value = TYPE_MAX_VALUE (type);
1948 /* If there's no HIGH value, then this is not a case range; it's
1949 just a simple case label. But that's just a degenerate case
1950 range.
1951 If the bounds are equal, turn this into the one-value case. */
1952 if (!high || tree_int_cst_equal (low, high))
1954 /* If the simple case value is unreachable, ignore it. */
1955 if ((TREE_CODE (min_value) == INTEGER_CST
1956 && tree_int_cst_compare (low, min_value) < 0)
1957 || (TREE_CODE (max_value) == INTEGER_CST
1958 && tree_int_cst_compare (low, max_value) > 0))
1959 return head;
1960 low = fold_convert (type, low);
1961 high = low;
1963 else
1965 /* If the entire case range is unreachable, ignore it. */
1966 if ((TREE_CODE (min_value) == INTEGER_CST
1967 && tree_int_cst_compare (high, min_value) < 0)
1968 || (TREE_CODE (max_value) == INTEGER_CST
1969 && tree_int_cst_compare (low, max_value) > 0))
1970 return head;
1972 /* If the lower bound is less than the index type's minimum
1973 value, truncate the range bounds. */
1974 if (TREE_CODE (min_value) == INTEGER_CST
1975 && tree_int_cst_compare (low, min_value) < 0)
1976 low = min_value;
1977 low = fold_convert (type, low);
1979 /* If the upper bound is greater than the index type's maximum
1980 value, truncate the range bounds. */
1981 if (TREE_CODE (max_value) == INTEGER_CST
1982 && tree_int_cst_compare (high, max_value) > 0)
1983 high = max_value;
1984 high = fold_convert (type, high);
1988 /* Add this label to the chain. Make sure to drop overflow flags. */
1989 r = (struct case_node *) pool_alloc (case_node_pool);
1990 r->low = build_int_cst_wide (TREE_TYPE (low), TREE_INT_CST_LOW (low),
1991 TREE_INT_CST_HIGH (low));
1992 r->high = build_int_cst_wide (TREE_TYPE (high), TREE_INT_CST_LOW (high),
1993 TREE_INT_CST_HIGH (high));
1994 r->code_label = label;
1995 r->parent = r->left = NULL;
1996 r->right = head;
1997 return r;
2000 /* Maximum number of case bit tests. */
2001 #define MAX_CASE_BIT_TESTS 3
2003 /* By default, enable case bit tests on targets with ashlsi3. */
2004 #ifndef CASE_USE_BIT_TESTS
2005 #define CASE_USE_BIT_TESTS (optab_handler (ashl_optab, word_mode) \
2006 != CODE_FOR_nothing)
2007 #endif
2010 /* A case_bit_test represents a set of case nodes that may be
2011 selected from using a bit-wise comparison. HI and LO hold
2012 the integer to be tested against, LABEL contains the label
2013 to jump to upon success and BITS counts the number of case
2014 nodes handled by this test, typically the number of bits
2015 set in HI:LO. */
2017 struct case_bit_test
2019 HOST_WIDE_INT hi;
2020 HOST_WIDE_INT lo;
2021 rtx label;
2022 int bits;
2025 /* Determine whether "1 << x" is relatively cheap in word_mode. */
2027 static
2028 bool lshift_cheap_p (void)
2030 static bool init[2] = {false, false};
2031 static bool cheap[2] = {true, true};
2033 bool speed_p = optimize_insn_for_speed_p ();
2035 if (!init[speed_p])
2037 rtx reg = gen_rtx_REG (word_mode, 10000);
2038 int cost = set_src_cost (gen_rtx_ASHIFT (word_mode, const1_rtx, reg),
2039 speed_p);
2040 cheap[speed_p] = cost < COSTS_N_INSNS (3);
2041 init[speed_p] = true;
2044 return cheap[speed_p];
2047 /* Comparison function for qsort to order bit tests by decreasing
2048 number of case nodes, i.e. the node with the most cases gets
2049 tested first. */
2051 static int
2052 case_bit_test_cmp (const void *p1, const void *p2)
2054 const struct case_bit_test *const d1 = (const struct case_bit_test *) p1;
2055 const struct case_bit_test *const d2 = (const struct case_bit_test *) p2;
2057 if (d2->bits != d1->bits)
2058 return d2->bits - d1->bits;
2060 /* Stabilize the sort. */
2061 return CODE_LABEL_NUMBER (d2->label) - CODE_LABEL_NUMBER (d1->label);
2064 /* Expand a switch statement by a short sequence of bit-wise
2065 comparisons. "switch(x)" is effectively converted into
2066 "if ((1 << (x-MINVAL)) & CST)" where CST and MINVAL are
2067 integer constants.
2069 INDEX_EXPR is the value being switched on, which is of
2070 type INDEX_TYPE. MINVAL is the lowest case value of in
2071 the case nodes, of INDEX_TYPE type, and RANGE is highest
2072 value minus MINVAL, also of type INDEX_TYPE. NODES is
2073 the set of case nodes, and DEFAULT_LABEL is the label to
2074 branch to should none of the cases match.
2076 There *MUST* be MAX_CASE_BIT_TESTS or less unique case
2077 node targets. */
2079 static void
2080 emit_case_bit_tests (tree index_type, tree index_expr, tree minval,
2081 tree range, case_node_ptr nodes, rtx default_label)
2083 struct case_bit_test test[MAX_CASE_BIT_TESTS];
2084 enum machine_mode mode;
2085 rtx expr, index, label;
2086 unsigned int i,j,lo,hi;
2087 struct case_node *n;
2088 unsigned int count;
2090 count = 0;
2091 for (n = nodes; n; n = n->right)
2093 label = label_rtx (n->code_label);
2094 for (i = 0; i < count; i++)
2095 if (label == test[i].label)
2096 break;
2098 if (i == count)
2100 gcc_assert (count < MAX_CASE_BIT_TESTS);
2101 test[i].hi = 0;
2102 test[i].lo = 0;
2103 test[i].label = label;
2104 test[i].bits = 1;
2105 count++;
2107 else
2108 test[i].bits++;
2110 lo = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2111 n->low, minval), 1);
2112 hi = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2113 n->high, minval), 1);
2114 for (j = lo; j <= hi; j++)
2115 if (j >= HOST_BITS_PER_WIDE_INT)
2116 test[i].hi |= (HOST_WIDE_INT) 1 << (j - HOST_BITS_PER_INT);
2117 else
2118 test[i].lo |= (HOST_WIDE_INT) 1 << j;
2121 qsort (test, count, sizeof(*test), case_bit_test_cmp);
2123 index_expr = fold_build2 (MINUS_EXPR, index_type,
2124 fold_convert (index_type, index_expr),
2125 fold_convert (index_type, minval));
2126 index = expand_normal (index_expr);
2127 do_pending_stack_adjust ();
2129 mode = TYPE_MODE (index_type);
2130 expr = expand_normal (range);
2131 if (default_label)
2132 emit_cmp_and_jump_insns (index, expr, GTU, NULL_RTX, mode, 1,
2133 default_label);
2135 index = convert_to_mode (word_mode, index, 0);
2136 index = expand_binop (word_mode, ashl_optab, const1_rtx,
2137 index, NULL_RTX, 1, OPTAB_WIDEN);
2139 for (i = 0; i < count; i++)
2141 expr = immed_double_const (test[i].lo, test[i].hi, word_mode);
2142 expr = expand_binop (word_mode, and_optab, index, expr,
2143 NULL_RTX, 1, OPTAB_WIDEN);
2144 emit_cmp_and_jump_insns (expr, const0_rtx, NE, NULL_RTX,
2145 word_mode, 1, test[i].label);
2148 if (default_label)
2149 emit_jump (default_label);
2152 #ifndef HAVE_casesi
2153 #define HAVE_casesi 0
2154 #endif
2156 #ifndef HAVE_tablejump
2157 #define HAVE_tablejump 0
2158 #endif
2160 /* Return true if a switch should be expanded as a bit test.
2161 INDEX_EXPR is the index expression, RANGE is the difference between
2162 highest and lowest case, UNIQ is number of unique case node targets
2163 not counting the default case and COUNT is the number of comparisons
2164 needed, not counting the default case. */
2165 bool
2166 expand_switch_using_bit_tests_p (tree index_expr, tree range,
2167 unsigned int uniq, unsigned int count)
2169 return (CASE_USE_BIT_TESTS
2170 && ! TREE_CONSTANT (index_expr)
2171 && compare_tree_int (range, GET_MODE_BITSIZE (word_mode)) < 0
2172 && compare_tree_int (range, 0) > 0
2173 && lshift_cheap_p ()
2174 && ((uniq == 1 && count >= 3)
2175 || (uniq == 2 && count >= 5)
2176 || (uniq == 3 && count >= 6)));
2179 /* Return the smallest number of different values for which it is best to use a
2180 jump-table instead of a tree of conditional branches. */
2182 static unsigned int
2183 case_values_threshold (void)
2185 unsigned int threshold = PARAM_VALUE (PARAM_CASE_VALUES_THRESHOLD);
2187 if (threshold == 0)
2188 threshold = targetm.case_values_threshold ();
2190 return threshold;
2193 /* Terminate a case (Pascal/Ada) or switch (C) statement
2194 in which ORIG_INDEX is the expression to be tested.
2195 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
2196 type as given in the source before any compiler conversions.
2197 Generate the code to test it and jump to the right place. */
2199 void
2200 expand_case (gimple stmt)
2202 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
2203 rtx default_label = 0;
2204 struct case_node *n;
2205 unsigned int count, uniq;
2206 rtx index;
2207 rtx table_label;
2208 int ncases;
2209 rtx *labelvec;
2210 int i;
2211 rtx before_case, end, lab;
2213 tree index_expr = gimple_switch_index (stmt);
2214 tree index_type = TREE_TYPE (index_expr);
2215 int unsignedp = TYPE_UNSIGNED (index_type);
2217 /* The insn after which the case dispatch should finally
2218 be emitted. Zero for a dummy. */
2219 rtx start;
2221 /* A list of case labels; it is first built as a list and it may then
2222 be rearranged into a nearly balanced binary tree. */
2223 struct case_node *case_list = 0;
2225 /* Label to jump to if no case matches. */
2226 tree default_label_decl = NULL_TREE;
2228 alloc_pool case_node_pool = create_alloc_pool ("struct case_node pool",
2229 sizeof (struct case_node),
2230 100);
2232 do_pending_stack_adjust ();
2234 /* An ERROR_MARK occurs for various reasons including invalid data type. */
2235 if (index_type != error_mark_node)
2237 tree elt;
2238 bitmap label_bitmap;
2239 int stopi = 0;
2241 /* cleanup_tree_cfg removes all SWITCH_EXPR with their index
2242 expressions being INTEGER_CST. */
2243 gcc_assert (TREE_CODE (index_expr) != INTEGER_CST);
2245 /* The default case, if ever taken, is the first element. */
2246 elt = gimple_switch_label (stmt, 0);
2247 if (!CASE_LOW (elt) && !CASE_HIGH (elt))
2249 default_label_decl = CASE_LABEL (elt);
2250 stopi = 1;
2253 for (i = gimple_switch_num_labels (stmt) - 1; i >= stopi; --i)
2255 tree low, high;
2256 elt = gimple_switch_label (stmt, i);
2258 low = CASE_LOW (elt);
2259 gcc_assert (low);
2260 high = CASE_HIGH (elt);
2262 /* Discard empty ranges. */
2263 if (high && tree_int_cst_lt (high, low))
2264 continue;
2266 case_list = add_case_node (case_list, index_type, low, high,
2267 CASE_LABEL (elt), case_node_pool);
2271 before_case = start = get_last_insn ();
2272 if (default_label_decl)
2273 default_label = label_rtx (default_label_decl);
2275 /* Get upper and lower bounds of case values. */
2277 uniq = 0;
2278 count = 0;
2279 label_bitmap = BITMAP_ALLOC (NULL);
2280 for (n = case_list; n; n = n->right)
2282 /* Count the elements and track the largest and smallest
2283 of them (treating them as signed even if they are not). */
2284 if (count++ == 0)
2286 minval = n->low;
2287 maxval = n->high;
2289 else
2291 if (tree_int_cst_lt (n->low, minval))
2292 minval = n->low;
2293 if (tree_int_cst_lt (maxval, n->high))
2294 maxval = n->high;
2296 /* A range counts double, since it requires two compares. */
2297 if (! tree_int_cst_equal (n->low, n->high))
2298 count++;
2300 /* If we have not seen this label yet, then increase the
2301 number of unique case node targets seen. */
2302 lab = label_rtx (n->code_label);
2303 if (bitmap_set_bit (label_bitmap, CODE_LABEL_NUMBER (lab)))
2304 uniq++;
2307 BITMAP_FREE (label_bitmap);
2309 /* cleanup_tree_cfg removes all SWITCH_EXPR with a single
2310 destination, such as one with a default case only. However,
2311 it doesn't remove cases that are out of range for the switch
2312 type, so we may still get a zero here. */
2313 if (count == 0)
2315 if (default_label)
2316 emit_jump (default_label);
2317 free_alloc_pool (case_node_pool);
2318 return;
2321 /* Compute span of values. */
2322 range = fold_build2 (MINUS_EXPR, index_type, maxval, minval);
2324 /* Try implementing this switch statement by a short sequence of
2325 bit-wise comparisons. However, we let the binary-tree case
2326 below handle constant index expressions. */
2327 if (expand_switch_using_bit_tests_p (index_expr, range, uniq, count))
2329 /* Optimize the case where all the case values fit in a
2330 word without having to subtract MINVAL. In this case,
2331 we can optimize away the subtraction. */
2332 if (compare_tree_int (minval, 0) > 0
2333 && compare_tree_int (maxval, GET_MODE_BITSIZE (word_mode)) < 0)
2335 minval = build_int_cst (index_type, 0);
2336 range = maxval;
2338 emit_case_bit_tests (index_type, index_expr, minval, range,
2339 case_list, default_label);
2342 /* If range of values is much bigger than number of values,
2343 make a sequence of conditional branches instead of a dispatch.
2344 If the switch-index is a constant, do it this way
2345 because we can optimize it. */
2347 else if (count < case_values_threshold ()
2348 || compare_tree_int (range,
2349 (optimize_insn_for_size_p () ? 3 : 10) * count) > 0
2350 /* RANGE may be signed, and really large ranges will show up
2351 as negative numbers. */
2352 || compare_tree_int (range, 0) < 0
2353 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
2354 || flag_pic
2355 #endif
2356 || !flag_jump_tables
2357 || TREE_CONSTANT (index_expr)
2358 /* If neither casesi or tablejump is available, we can
2359 only go this way. */
2360 || (!HAVE_casesi && !HAVE_tablejump))
2362 index = expand_normal (index_expr);
2364 /* If the index is a short or char that we do not have
2365 an insn to handle comparisons directly, convert it to
2366 a full integer now, rather than letting each comparison
2367 generate the conversion. */
2369 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
2370 && ! have_insn_for (COMPARE, GET_MODE (index)))
2372 enum machine_mode wider_mode;
2373 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
2374 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
2375 if (have_insn_for (COMPARE, wider_mode))
2377 index = convert_to_mode (wider_mode, index, unsignedp);
2378 break;
2382 do_pending_stack_adjust ();
2384 if (MEM_P (index))
2385 index = copy_to_reg (index);
2387 /* We generate a binary decision tree to select the
2388 appropriate target code. This is done as follows:
2390 The list of cases is rearranged into a binary tree,
2391 nearly optimal assuming equal probability for each case.
2393 The tree is transformed into RTL, eliminating
2394 redundant test conditions at the same time.
2396 If program flow could reach the end of the
2397 decision tree an unconditional jump to the
2398 default code is emitted. */
2400 use_cost_table = estimate_case_costs (case_list);
2401 balance_case_nodes (&case_list, NULL);
2402 emit_case_nodes (index, case_list, default_label, index_type);
2403 if (default_label)
2404 emit_jump (default_label);
2406 else
2408 rtx fallback_label = label_rtx (case_list->code_label);
2409 table_label = gen_label_rtx ();
2410 if (! try_casesi (index_type, index_expr, minval, range,
2411 table_label, default_label, fallback_label))
2413 bool ok;
2415 /* Index jumptables from zero for suitable values of
2416 minval to avoid a subtraction. */
2417 if (optimize_insn_for_speed_p ()
2418 && compare_tree_int (minval, 0) > 0
2419 && compare_tree_int (minval, 3) < 0)
2421 minval = build_int_cst (index_type, 0);
2422 range = maxval;
2425 ok = try_tablejump (index_type, index_expr, minval, range,
2426 table_label, default_label);
2427 gcc_assert (ok);
2430 /* Get table of labels to jump to, in order of case index. */
2432 ncases = tree_low_cst (range, 0) + 1;
2433 labelvec = XALLOCAVEC (rtx, ncases);
2434 memset (labelvec, 0, ncases * sizeof (rtx));
2436 for (n = case_list; n; n = n->right)
2438 /* Compute the low and high bounds relative to the minimum
2439 value since that should fit in a HOST_WIDE_INT while the
2440 actual values may not. */
2441 HOST_WIDE_INT i_low
2442 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2443 n->low, minval), 1);
2444 HOST_WIDE_INT i_high
2445 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
2446 n->high, minval), 1);
2447 HOST_WIDE_INT i;
2449 for (i = i_low; i <= i_high; i ++)
2450 labelvec[i]
2451 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
2454 /* Fill in the gaps with the default. We may have gaps at
2455 the beginning if we tried to avoid the minval subtraction,
2456 so substitute some label even if the default label was
2457 deemed unreachable. */
2458 if (!default_label)
2459 default_label = fallback_label;
2460 for (i = 0; i < ncases; i++)
2461 if (labelvec[i] == 0)
2462 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
2464 /* Output the table. */
2465 emit_label (table_label);
2467 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
2468 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
2469 gen_rtx_LABEL_REF (Pmode, table_label),
2470 gen_rtvec_v (ncases, labelvec),
2471 const0_rtx, const0_rtx));
2472 else
2473 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
2474 gen_rtvec_v (ncases, labelvec)));
2476 /* Record no drop-through after the table. */
2477 emit_barrier ();
2480 before_case = NEXT_INSN (before_case);
2481 end = get_last_insn ();
2482 reorder_insns (before_case, end, start);
2485 free_temp_slots ();
2486 free_alloc_pool (case_node_pool);
2489 /* Generate code to jump to LABEL if OP0 and OP1 are equal in mode MODE. */
2491 static void
2492 do_jump_if_equal (enum machine_mode mode, rtx op0, rtx op1, rtx label,
2493 int unsignedp)
2495 do_compare_rtx_and_jump (op0, op1, EQ, unsignedp, mode,
2496 NULL_RTX, NULL_RTX, label, -1);
2499 /* Not all case values are encountered equally. This function
2500 uses a heuristic to weight case labels, in cases where that
2501 looks like a reasonable thing to do.
2503 Right now, all we try to guess is text, and we establish the
2504 following weights:
2506 chars above space: 16
2507 digits: 16
2508 default: 12
2509 space, punct: 8
2510 tab: 4
2511 newline: 2
2512 other "\" chars: 1
2513 remaining chars: 0
2515 If we find any cases in the switch that are not either -1 or in the range
2516 of valid ASCII characters, or are control characters other than those
2517 commonly used with "\", don't treat this switch scanning text.
2519 Return 1 if these nodes are suitable for cost estimation, otherwise
2520 return 0. */
2522 static int
2523 estimate_case_costs (case_node_ptr node)
2525 tree min_ascii = integer_minus_one_node;
2526 tree max_ascii = build_int_cst (TREE_TYPE (node->high), 127);
2527 case_node_ptr n;
2528 int i;
2530 /* If we haven't already made the cost table, make it now. Note that the
2531 lower bound of the table is -1, not zero. */
2533 if (! cost_table_initialized)
2535 cost_table_initialized = 1;
2537 for (i = 0; i < 128; i++)
2539 if (ISALNUM (i))
2540 COST_TABLE (i) = 16;
2541 else if (ISPUNCT (i))
2542 COST_TABLE (i) = 8;
2543 else if (ISCNTRL (i))
2544 COST_TABLE (i) = -1;
2547 COST_TABLE (' ') = 8;
2548 COST_TABLE ('\t') = 4;
2549 COST_TABLE ('\0') = 4;
2550 COST_TABLE ('\n') = 2;
2551 COST_TABLE ('\f') = 1;
2552 COST_TABLE ('\v') = 1;
2553 COST_TABLE ('\b') = 1;
2556 /* See if all the case expressions look like text. It is text if the
2557 constant is >= -1 and the highest constant is <= 127. Do all comparisons
2558 as signed arithmetic since we don't want to ever access cost_table with a
2559 value less than -1. Also check that none of the constants in a range
2560 are strange control characters. */
2562 for (n = node; n; n = n->right)
2564 if (tree_int_cst_lt (n->low, min_ascii)
2565 || tree_int_cst_lt (max_ascii, n->high))
2566 return 0;
2568 for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
2569 i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
2570 if (COST_TABLE (i) < 0)
2571 return 0;
2574 /* All interesting values are within the range of interesting
2575 ASCII characters. */
2576 return 1;
2579 /* Take an ordered list of case nodes
2580 and transform them into a near optimal binary tree,
2581 on the assumption that any target code selection value is as
2582 likely as any other.
2584 The transformation is performed by splitting the ordered
2585 list into two equal sections plus a pivot. The parts are
2586 then attached to the pivot as left and right branches. Each
2587 branch is then transformed recursively. */
2589 static void
2590 balance_case_nodes (case_node_ptr *head, case_node_ptr parent)
2592 case_node_ptr np;
2594 np = *head;
2595 if (np)
2597 int cost = 0;
2598 int i = 0;
2599 int ranges = 0;
2600 case_node_ptr *npp;
2601 case_node_ptr left;
2603 /* Count the number of entries on branch. Also count the ranges. */
2605 while (np)
2607 if (!tree_int_cst_equal (np->low, np->high))
2609 ranges++;
2610 if (use_cost_table)
2611 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
2614 if (use_cost_table)
2615 cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
2617 i++;
2618 np = np->right;
2621 if (i > 2)
2623 /* Split this list if it is long enough for that to help. */
2624 npp = head;
2625 left = *npp;
2626 if (use_cost_table)
2628 /* Find the place in the list that bisects the list's total cost,
2629 Here I gets half the total cost. */
2630 int n_moved = 0;
2631 i = (cost + 1) / 2;
2632 while (1)
2634 /* Skip nodes while their cost does not reach that amount. */
2635 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2636 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
2637 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
2638 if (i <= 0)
2639 break;
2640 npp = &(*npp)->right;
2641 n_moved += 1;
2643 if (n_moved == 0)
2645 /* Leave this branch lopsided, but optimize left-hand
2646 side and fill in `parent' fields for right-hand side. */
2647 np = *head;
2648 np->parent = parent;
2649 balance_case_nodes (&np->left, np);
2650 for (; np->right; np = np->right)
2651 np->right->parent = np;
2652 return;
2655 /* If there are just three nodes, split at the middle one. */
2656 else if (i == 3)
2657 npp = &(*npp)->right;
2658 else
2660 /* Find the place in the list that bisects the list's total cost,
2661 where ranges count as 2.
2662 Here I gets half the total cost. */
2663 i = (i + ranges + 1) / 2;
2664 while (1)
2666 /* Skip nodes while their cost does not reach that amount. */
2667 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2668 i--;
2669 i--;
2670 if (i <= 0)
2671 break;
2672 npp = &(*npp)->right;
2675 *head = np = *npp;
2676 *npp = 0;
2677 np->parent = parent;
2678 np->left = left;
2680 /* Optimize each of the two split parts. */
2681 balance_case_nodes (&np->left, np);
2682 balance_case_nodes (&np->right, np);
2684 else
2686 /* Else leave this branch as one level,
2687 but fill in `parent' fields. */
2688 np = *head;
2689 np->parent = parent;
2690 for (; np->right; np = np->right)
2691 np->right->parent = np;
2696 /* Search the parent sections of the case node tree
2697 to see if a test for the lower bound of NODE would be redundant.
2698 INDEX_TYPE is the type of the index expression.
2700 The instructions to generate the case decision tree are
2701 output in the same order as nodes are processed so it is
2702 known that if a parent node checks the range of the current
2703 node minus one that the current node is bounded at its lower
2704 span. Thus the test would be redundant. */
2706 static int
2707 node_has_low_bound (case_node_ptr node, tree index_type)
2709 tree low_minus_one;
2710 case_node_ptr pnode;
2712 /* If the lower bound of this node is the lowest value in the index type,
2713 we need not test it. */
2715 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
2716 return 1;
2718 /* If this node has a left branch, the value at the left must be less
2719 than that at this node, so it cannot be bounded at the bottom and
2720 we need not bother testing any further. */
2722 if (node->left)
2723 return 0;
2725 low_minus_one = fold_build2 (MINUS_EXPR, TREE_TYPE (node->low),
2726 node->low,
2727 build_int_cst (TREE_TYPE (node->low), 1));
2729 /* If the subtraction above overflowed, we can't verify anything.
2730 Otherwise, look for a parent that tests our value - 1. */
2732 if (! tree_int_cst_lt (low_minus_one, node->low))
2733 return 0;
2735 for (pnode = node->parent; pnode; pnode = pnode->parent)
2736 if (tree_int_cst_equal (low_minus_one, pnode->high))
2737 return 1;
2739 return 0;
2742 /* Search the parent sections of the case node tree
2743 to see if a test for the upper bound of NODE would be redundant.
2744 INDEX_TYPE is the type of the index expression.
2746 The instructions to generate the case decision tree are
2747 output in the same order as nodes are processed so it is
2748 known that if a parent node checks the range of the current
2749 node plus one that the current node is bounded at its upper
2750 span. Thus the test would be redundant. */
2752 static int
2753 node_has_high_bound (case_node_ptr node, tree index_type)
2755 tree high_plus_one;
2756 case_node_ptr pnode;
2758 /* If there is no upper bound, obviously no test is needed. */
2760 if (TYPE_MAX_VALUE (index_type) == NULL)
2761 return 1;
2763 /* If the upper bound of this node is the highest value in the type
2764 of the index expression, we need not test against it. */
2766 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
2767 return 1;
2769 /* If this node has a right branch, the value at the right must be greater
2770 than that at this node, so it cannot be bounded at the top and
2771 we need not bother testing any further. */
2773 if (node->right)
2774 return 0;
2776 high_plus_one = fold_build2 (PLUS_EXPR, TREE_TYPE (node->high),
2777 node->high,
2778 build_int_cst (TREE_TYPE (node->high), 1));
2780 /* If the addition above overflowed, we can't verify anything.
2781 Otherwise, look for a parent that tests our value + 1. */
2783 if (! tree_int_cst_lt (node->high, high_plus_one))
2784 return 0;
2786 for (pnode = node->parent; pnode; pnode = pnode->parent)
2787 if (tree_int_cst_equal (high_plus_one, pnode->low))
2788 return 1;
2790 return 0;
2793 /* Search the parent sections of the
2794 case node tree to see if both tests for the upper and lower
2795 bounds of NODE would be redundant. */
2797 static int
2798 node_is_bounded (case_node_ptr node, tree index_type)
2800 return (node_has_low_bound (node, index_type)
2801 && node_has_high_bound (node, index_type));
2804 /* Emit step-by-step code to select a case for the value of INDEX.
2805 The thus generated decision tree follows the form of the
2806 case-node binary tree NODE, whose nodes represent test conditions.
2807 INDEX_TYPE is the type of the index of the switch.
2809 Care is taken to prune redundant tests from the decision tree
2810 by detecting any boundary conditions already checked by
2811 emitted rtx. (See node_has_high_bound, node_has_low_bound
2812 and node_is_bounded, above.)
2814 Where the test conditions can be shown to be redundant we emit
2815 an unconditional jump to the target code. As a further
2816 optimization, the subordinates of a tree node are examined to
2817 check for bounded nodes. In this case conditional and/or
2818 unconditional jumps as a result of the boundary check for the
2819 current node are arranged to target the subordinates associated
2820 code for out of bound conditions on the current node.
2822 We can assume that when control reaches the code generated here,
2823 the index value has already been compared with the parents
2824 of this node, and determined to be on the same side of each parent
2825 as this node is. Thus, if this node tests for the value 51,
2826 and a parent tested for 52, we don't need to consider
2827 the possibility of a value greater than 51. If another parent
2828 tests for the value 50, then this node need not test anything. */
2830 static void
2831 emit_case_nodes (rtx index, case_node_ptr node, rtx default_label,
2832 tree index_type)
2834 /* If INDEX has an unsigned type, we must make unsigned branches. */
2835 int unsignedp = TYPE_UNSIGNED (index_type);
2836 enum machine_mode mode = GET_MODE (index);
2837 enum machine_mode imode = TYPE_MODE (index_type);
2839 /* Handle indices detected as constant during RTL expansion. */
2840 if (mode == VOIDmode)
2841 mode = imode;
2843 /* See if our parents have already tested everything for us.
2844 If they have, emit an unconditional jump for this node. */
2845 if (node_is_bounded (node, index_type))
2846 emit_jump (label_rtx (node->code_label));
2848 else if (tree_int_cst_equal (node->low, node->high))
2850 /* Node is single valued. First see if the index expression matches
2851 this node and then check our children, if any. */
2853 do_jump_if_equal (mode, index,
2854 convert_modes (mode, imode,
2855 expand_normal (node->low),
2856 unsignedp),
2857 label_rtx (node->code_label), unsignedp);
2859 if (node->right != 0 && node->left != 0)
2861 /* This node has children on both sides.
2862 Dispatch to one side or the other
2863 by comparing the index value with this node's value.
2864 If one subtree is bounded, check that one first,
2865 so we can avoid real branches in the tree. */
2867 if (node_is_bounded (node->right, index_type))
2869 emit_cmp_and_jump_insns (index,
2870 convert_modes
2871 (mode, imode,
2872 expand_normal (node->high),
2873 unsignedp),
2874 GT, NULL_RTX, mode, unsignedp,
2875 label_rtx (node->right->code_label));
2876 emit_case_nodes (index, node->left, default_label, index_type);
2879 else if (node_is_bounded (node->left, index_type))
2881 emit_cmp_and_jump_insns (index,
2882 convert_modes
2883 (mode, imode,
2884 expand_normal (node->high),
2885 unsignedp),
2886 LT, NULL_RTX, mode, unsignedp,
2887 label_rtx (node->left->code_label));
2888 emit_case_nodes (index, node->right, default_label, index_type);
2891 /* If both children are single-valued cases with no
2892 children, finish up all the work. This way, we can save
2893 one ordered comparison. */
2894 else if (tree_int_cst_equal (node->right->low, node->right->high)
2895 && node->right->left == 0
2896 && node->right->right == 0
2897 && tree_int_cst_equal (node->left->low, node->left->high)
2898 && node->left->left == 0
2899 && node->left->right == 0)
2901 /* Neither node is bounded. First distinguish the two sides;
2902 then emit the code for one side at a time. */
2904 /* See if the value matches what the right hand side
2905 wants. */
2906 do_jump_if_equal (mode, index,
2907 convert_modes (mode, imode,
2908 expand_normal (node->right->low),
2909 unsignedp),
2910 label_rtx (node->right->code_label),
2911 unsignedp);
2913 /* See if the value matches what the left hand side
2914 wants. */
2915 do_jump_if_equal (mode, index,
2916 convert_modes (mode, imode,
2917 expand_normal (node->left->low),
2918 unsignedp),
2919 label_rtx (node->left->code_label),
2920 unsignedp);
2923 else
2925 /* Neither node is bounded. First distinguish the two sides;
2926 then emit the code for one side at a time. */
2928 tree test_label
2929 = build_decl (CURR_INSN_LOCATION,
2930 LABEL_DECL, NULL_TREE, NULL_TREE);
2932 /* See if the value is on the right. */
2933 emit_cmp_and_jump_insns (index,
2934 convert_modes
2935 (mode, imode,
2936 expand_normal (node->high),
2937 unsignedp),
2938 GT, NULL_RTX, mode, unsignedp,
2939 label_rtx (test_label));
2941 /* Value must be on the left.
2942 Handle the left-hand subtree. */
2943 emit_case_nodes (index, node->left, default_label, index_type);
2944 /* If left-hand subtree does nothing,
2945 go to default. */
2946 if (default_label)
2947 emit_jump (default_label);
2949 /* Code branches here for the right-hand subtree. */
2950 expand_label (test_label);
2951 emit_case_nodes (index, node->right, default_label, index_type);
2955 else if (node->right != 0 && node->left == 0)
2957 /* Here we have a right child but no left so we issue a conditional
2958 branch to default and process the right child.
2960 Omit the conditional branch to default if the right child
2961 does not have any children and is single valued; it would
2962 cost too much space to save so little time. */
2964 if (node->right->right || node->right->left
2965 || !tree_int_cst_equal (node->right->low, node->right->high))
2967 if (!node_has_low_bound (node, index_type))
2969 emit_cmp_and_jump_insns (index,
2970 convert_modes
2971 (mode, imode,
2972 expand_normal (node->high),
2973 unsignedp),
2974 LT, NULL_RTX, mode, unsignedp,
2975 default_label);
2978 emit_case_nodes (index, node->right, default_label, index_type);
2980 else
2981 /* We cannot process node->right normally
2982 since we haven't ruled out the numbers less than
2983 this node's value. So handle node->right explicitly. */
2984 do_jump_if_equal (mode, index,
2985 convert_modes
2986 (mode, imode,
2987 expand_normal (node->right->low),
2988 unsignedp),
2989 label_rtx (node->right->code_label), unsignedp);
2992 else if (node->right == 0 && node->left != 0)
2994 /* Just one subtree, on the left. */
2995 if (node->left->left || node->left->right
2996 || !tree_int_cst_equal (node->left->low, node->left->high))
2998 if (!node_has_high_bound (node, index_type))
3000 emit_cmp_and_jump_insns (index,
3001 convert_modes
3002 (mode, imode,
3003 expand_normal (node->high),
3004 unsignedp),
3005 GT, NULL_RTX, mode, unsignedp,
3006 default_label);
3009 emit_case_nodes (index, node->left, default_label, index_type);
3011 else
3012 /* We cannot process node->left normally
3013 since we haven't ruled out the numbers less than
3014 this node's value. So handle node->left explicitly. */
3015 do_jump_if_equal (mode, index,
3016 convert_modes
3017 (mode, imode,
3018 expand_normal (node->left->low),
3019 unsignedp),
3020 label_rtx (node->left->code_label), unsignedp);
3023 else
3025 /* Node is a range. These cases are very similar to those for a single
3026 value, except that we do not start by testing whether this node
3027 is the one to branch to. */
3029 if (node->right != 0 && node->left != 0)
3031 /* Node has subtrees on both sides.
3032 If the right-hand subtree is bounded,
3033 test for it first, since we can go straight there.
3034 Otherwise, we need to make a branch in the control structure,
3035 then handle the two subtrees. */
3036 tree test_label = 0;
3038 if (node_is_bounded (node->right, index_type))
3039 /* Right hand node is fully bounded so we can eliminate any
3040 testing and branch directly to the target code. */
3041 emit_cmp_and_jump_insns (index,
3042 convert_modes
3043 (mode, imode,
3044 expand_normal (node->high),
3045 unsignedp),
3046 GT, NULL_RTX, mode, unsignedp,
3047 label_rtx (node->right->code_label));
3048 else
3050 /* Right hand node requires testing.
3051 Branch to a label where we will handle it later. */
3053 test_label = build_decl (CURR_INSN_LOCATION,
3054 LABEL_DECL, NULL_TREE, NULL_TREE);
3055 emit_cmp_and_jump_insns (index,
3056 convert_modes
3057 (mode, imode,
3058 expand_normal (node->high),
3059 unsignedp),
3060 GT, NULL_RTX, mode, unsignedp,
3061 label_rtx (test_label));
3064 /* Value belongs to this node or to the left-hand subtree. */
3066 emit_cmp_and_jump_insns (index,
3067 convert_modes
3068 (mode, imode,
3069 expand_normal (node->low),
3070 unsignedp),
3071 GE, NULL_RTX, mode, unsignedp,
3072 label_rtx (node->code_label));
3074 /* Handle the left-hand subtree. */
3075 emit_case_nodes (index, node->left, default_label, index_type);
3077 /* If right node had to be handled later, do that now. */
3079 if (test_label)
3081 /* If the left-hand subtree fell through,
3082 don't let it fall into the right-hand subtree. */
3083 if (default_label)
3084 emit_jump (default_label);
3086 expand_label (test_label);
3087 emit_case_nodes (index, node->right, default_label, index_type);
3091 else if (node->right != 0 && node->left == 0)
3093 /* Deal with values to the left of this node,
3094 if they are possible. */
3095 if (!node_has_low_bound (node, index_type))
3097 emit_cmp_and_jump_insns (index,
3098 convert_modes
3099 (mode, imode,
3100 expand_normal (node->low),
3101 unsignedp),
3102 LT, NULL_RTX, mode, unsignedp,
3103 default_label);
3106 /* Value belongs to this node or to the right-hand subtree. */
3108 emit_cmp_and_jump_insns (index,
3109 convert_modes
3110 (mode, imode,
3111 expand_normal (node->high),
3112 unsignedp),
3113 LE, NULL_RTX, mode, unsignedp,
3114 label_rtx (node->code_label));
3116 emit_case_nodes (index, node->right, default_label, index_type);
3119 else if (node->right == 0 && node->left != 0)
3121 /* Deal with values to the right of this node,
3122 if they are possible. */
3123 if (!node_has_high_bound (node, index_type))
3125 emit_cmp_and_jump_insns (index,
3126 convert_modes
3127 (mode, imode,
3128 expand_normal (node->high),
3129 unsignedp),
3130 GT, NULL_RTX, mode, unsignedp,
3131 default_label);
3134 /* Value belongs to this node or to the left-hand subtree. */
3136 emit_cmp_and_jump_insns (index,
3137 convert_modes
3138 (mode, imode,
3139 expand_normal (node->low),
3140 unsignedp),
3141 GE, NULL_RTX, mode, unsignedp,
3142 label_rtx (node->code_label));
3144 emit_case_nodes (index, node->left, default_label, index_type);
3147 else
3149 /* Node has no children so we check low and high bounds to remove
3150 redundant tests. Only one of the bounds can exist,
3151 since otherwise this node is bounded--a case tested already. */
3152 int high_bound = node_has_high_bound (node, index_type);
3153 int low_bound = node_has_low_bound (node, index_type);
3155 if (!high_bound && low_bound)
3157 emit_cmp_and_jump_insns (index,
3158 convert_modes
3159 (mode, imode,
3160 expand_normal (node->high),
3161 unsignedp),
3162 GT, NULL_RTX, mode, unsignedp,
3163 default_label);
3166 else if (!low_bound && high_bound)
3168 emit_cmp_and_jump_insns (index,
3169 convert_modes
3170 (mode, imode,
3171 expand_normal (node->low),
3172 unsignedp),
3173 LT, NULL_RTX, mode, unsignedp,
3174 default_label);
3176 else if (!low_bound && !high_bound)
3178 /* Widen LOW and HIGH to the same width as INDEX. */
3179 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
3180 tree low = build1 (CONVERT_EXPR, type, node->low);
3181 tree high = build1 (CONVERT_EXPR, type, node->high);
3182 rtx low_rtx, new_index, new_bound;
3184 /* Instead of doing two branches, emit one unsigned branch for
3185 (index-low) > (high-low). */
3186 low_rtx = expand_expr (low, NULL_RTX, mode, EXPAND_NORMAL);
3187 new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
3188 NULL_RTX, unsignedp,
3189 OPTAB_WIDEN);
3190 new_bound = expand_expr (fold_build2 (MINUS_EXPR, type,
3191 high, low),
3192 NULL_RTX, mode, EXPAND_NORMAL);
3194 emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
3195 mode, 1, default_label);
3198 emit_jump (label_rtx (node->code_label));