2013-03-08 François Dumont <fdumont@gcc.gnu.org>
[official-gcc.git] / gcc / stmt.c
blobca58786c43ca59f957732445422a92bc9ea0db58
1 /* Expands front end tree to back end RTL for GCC
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file handles the generation of rtl code from tree structure
21 above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
22 The functions whose names start with `expand_' are called by the
23 expander to generate RTL instructions for various kinds of constructs. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
30 #include "rtl.h"
31 #include "hard-reg-set.h"
32 #include "tree.h"
33 #include "tm_p.h"
34 #include "flags.h"
35 #include "except.h"
36 #include "function.h"
37 #include "insn-config.h"
38 #include "expr.h"
39 #include "libfuncs.h"
40 #include "recog.h"
41 #include "machmode.h"
42 #include "diagnostic-core.h"
43 #include "output.h"
44 #include "ggc.h"
45 #include "langhooks.h"
46 #include "predict.h"
47 #include "optabs.h"
48 #include "target.h"
49 #include "gimple.h"
50 #include "regs.h"
51 #include "alloc-pool.h"
52 #include "pretty-print.h"
53 #include "pointer-set.h"
54 #include "params.h"
55 #include "dumpfile.h"
58 /* Functions and data structures for expanding case statements. */
60 /* Case label structure, used to hold info on labels within case
61 statements. We handle "range" labels; for a single-value label
62 as in C, the high and low limits are the same.
64 We start with a vector of case nodes sorted in ascending order, and
65 the default label as the last element in the vector. Before expanding
66 to RTL, we transform this vector into a list linked via the RIGHT
67 fields in the case_node struct. Nodes with higher case values are
68 later in the list.
70 Switch statements can be output in three forms. A branch table is
71 used if there are more than a few labels and the labels are dense
72 within the range between the smallest and largest case value. If a
73 branch table is used, no further manipulations are done with the case
74 node chain.
76 The alternative to the use of a branch table is to generate a series
77 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
78 and PARENT fields to hold a binary tree. Initially the tree is
79 totally unbalanced, with everything on the right. We balance the tree
80 with nodes on the left having lower case values than the parent
81 and nodes on the right having higher values. We then output the tree
82 in order.
84 For very small, suitable switch statements, we can generate a series
85 of simple bit test and branches instead. */
87 struct case_node
89 struct case_node *left; /* Left son in binary tree */
90 struct case_node *right; /* Right son in binary tree; also node chain */
91 struct case_node *parent; /* Parent of node in binary tree */
92 tree low; /* Lowest index value for this label */
93 tree high; /* Highest index value for this label */
94 tree code_label; /* Label to jump to when node matches */
95 int prob; /* Probability of taking this case. */
96 /* Probability of reaching subtree rooted at this node */
97 int subtree_prob;
100 typedef struct case_node case_node;
101 typedef struct case_node *case_node_ptr;
103 extern basic_block label_to_block_fn (struct function *, tree);
105 static int n_occurrences (int, const char *);
106 static bool tree_conflicts_with_clobbers_p (tree, HARD_REG_SET *);
107 static void expand_nl_goto_receiver (void);
108 static bool check_operand_nalternatives (tree, tree);
109 static bool check_unique_operand_names (tree, tree, tree);
110 static char *resolve_operand_name_1 (char *, tree, tree, tree);
111 static void expand_null_return_1 (void);
112 static void expand_value_return (rtx);
113 static void balance_case_nodes (case_node_ptr *, case_node_ptr);
114 static int node_has_low_bound (case_node_ptr, tree);
115 static int node_has_high_bound (case_node_ptr, tree);
116 static int node_is_bounded (case_node_ptr, tree);
117 static void emit_case_nodes (rtx, case_node_ptr, rtx, int, tree);
119 /* Return the rtx-label that corresponds to a LABEL_DECL,
120 creating it if necessary. */
123 label_rtx (tree label)
125 gcc_assert (TREE_CODE (label) == LABEL_DECL);
127 if (!DECL_RTL_SET_P (label))
129 rtx r = gen_label_rtx ();
130 SET_DECL_RTL (label, r);
131 if (FORCED_LABEL (label) || DECL_NONLOCAL (label))
132 LABEL_PRESERVE_P (r) = 1;
135 return DECL_RTL (label);
138 /* As above, but also put it on the forced-reference list of the
139 function that contains it. */
141 force_label_rtx (tree label)
143 rtx ref = label_rtx (label);
144 tree function = decl_function_context (label);
146 gcc_assert (function);
148 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, ref, forced_labels);
149 return ref;
152 /* Add an unconditional jump to LABEL as the next sequential instruction. */
154 void
155 emit_jump (rtx label)
157 do_pending_stack_adjust ();
158 emit_jump_insn (gen_jump (label));
159 emit_barrier ();
162 /* Emit code to jump to the address
163 specified by the pointer expression EXP. */
165 void
166 expand_computed_goto (tree exp)
168 rtx x = expand_normal (exp);
170 x = convert_memory_address (Pmode, x);
172 do_pending_stack_adjust ();
173 emit_indirect_jump (x);
176 /* Handle goto statements and the labels that they can go to. */
178 /* Specify the location in the RTL code of a label LABEL,
179 which is a LABEL_DECL tree node.
181 This is used for the kind of label that the user can jump to with a
182 goto statement, and for alternatives of a switch or case statement.
183 RTL labels generated for loops and conditionals don't go through here;
184 they are generated directly at the RTL level, by other functions below.
186 Note that this has nothing to do with defining label *names*.
187 Languages vary in how they do that and what that even means. */
189 void
190 expand_label (tree label)
192 rtx label_r = label_rtx (label);
194 do_pending_stack_adjust ();
195 emit_label (label_r);
196 if (DECL_NAME (label))
197 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
199 if (DECL_NONLOCAL (label))
201 expand_nl_goto_receiver ();
202 nonlocal_goto_handler_labels
203 = gen_rtx_EXPR_LIST (VOIDmode, label_r,
204 nonlocal_goto_handler_labels);
207 if (FORCED_LABEL (label))
208 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, label_r, forced_labels);
210 if (DECL_NONLOCAL (label) || FORCED_LABEL (label))
211 maybe_set_first_label_num (label_r);
214 /* Generate RTL code for a `goto' statement with target label LABEL.
215 LABEL should be a LABEL_DECL tree node that was or will later be
216 defined with `expand_label'. */
218 void
219 expand_goto (tree label)
221 #ifdef ENABLE_CHECKING
222 /* Check for a nonlocal goto to a containing function. Should have
223 gotten translated to __builtin_nonlocal_goto. */
224 tree context = decl_function_context (label);
225 gcc_assert (!context || context == current_function_decl);
226 #endif
228 emit_jump (label_rtx (label));
231 /* Return the number of times character C occurs in string S. */
232 static int
233 n_occurrences (int c, const char *s)
235 int n = 0;
236 while (*s)
237 n += (*s++ == c);
238 return n;
241 /* Generate RTL for an asm statement (explicit assembler code).
242 STRING is a STRING_CST node containing the assembler code text,
243 or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the
244 insn is volatile; don't optimize it. */
246 static void
247 expand_asm_loc (tree string, int vol, location_t locus)
249 rtx body;
251 if (TREE_CODE (string) == ADDR_EXPR)
252 string = TREE_OPERAND (string, 0);
254 body = gen_rtx_ASM_INPUT_loc (VOIDmode,
255 ggc_strdup (TREE_STRING_POINTER (string)),
256 locus);
258 MEM_VOLATILE_P (body) = vol;
260 emit_insn (body);
263 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
264 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
265 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
266 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
267 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
268 constraint allows the use of a register operand. And, *IS_INOUT
269 will be true if the operand is read-write, i.e., if it is used as
270 an input as well as an output. If *CONSTRAINT_P is not in
271 canonical form, it will be made canonical. (Note that `+' will be
272 replaced with `=' as part of this process.)
274 Returns TRUE if all went well; FALSE if an error occurred. */
276 bool
277 parse_output_constraint (const char **constraint_p, int operand_num,
278 int ninputs, int noutputs, bool *allows_mem,
279 bool *allows_reg, bool *is_inout)
281 const char *constraint = *constraint_p;
282 const char *p;
284 /* Assume the constraint doesn't allow the use of either a register
285 or memory. */
286 *allows_mem = false;
287 *allows_reg = false;
289 /* Allow the `=' or `+' to not be at the beginning of the string,
290 since it wasn't explicitly documented that way, and there is a
291 large body of code that puts it last. Swap the character to
292 the front, so as not to uglify any place else. */
293 p = strchr (constraint, '=');
294 if (!p)
295 p = strchr (constraint, '+');
297 /* If the string doesn't contain an `=', issue an error
298 message. */
299 if (!p)
301 error ("output operand constraint lacks %<=%>");
302 return false;
305 /* If the constraint begins with `+', then the operand is both read
306 from and written to. */
307 *is_inout = (*p == '+');
309 /* Canonicalize the output constraint so that it begins with `='. */
310 if (p != constraint || *is_inout)
312 char *buf;
313 size_t c_len = strlen (constraint);
315 if (p != constraint)
316 warning (0, "output constraint %qc for operand %d "
317 "is not at the beginning",
318 *p, operand_num);
320 /* Make a copy of the constraint. */
321 buf = XALLOCAVEC (char, c_len + 1);
322 strcpy (buf, constraint);
323 /* Swap the first character and the `=' or `+'. */
324 buf[p - constraint] = buf[0];
325 /* Make sure the first character is an `='. (Until we do this,
326 it might be a `+'.) */
327 buf[0] = '=';
328 /* Replace the constraint with the canonicalized string. */
329 *constraint_p = ggc_alloc_string (buf, c_len);
330 constraint = *constraint_p;
333 /* Loop through the constraint string. */
334 for (p = constraint + 1; *p; p += CONSTRAINT_LEN (*p, p))
335 switch (*p)
337 case '+':
338 case '=':
339 error ("operand constraint contains incorrectly positioned "
340 "%<+%> or %<=%>");
341 return false;
343 case '%':
344 if (operand_num + 1 == ninputs + noutputs)
346 error ("%<%%%> constraint used with last operand");
347 return false;
349 break;
351 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
352 *allows_mem = true;
353 break;
355 case '?': case '!': case '*': case '&': case '#':
356 case 'E': case 'F': case 'G': case 'H':
357 case 's': case 'i': case 'n':
358 case 'I': case 'J': case 'K': case 'L': case 'M':
359 case 'N': case 'O': case 'P': case ',':
360 break;
362 case '0': case '1': case '2': case '3': case '4':
363 case '5': case '6': case '7': case '8': case '9':
364 case '[':
365 error ("matching constraint not valid in output operand");
366 return false;
368 case '<': case '>':
369 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
370 excepting those that expand_call created. So match memory
371 and hope. */
372 *allows_mem = true;
373 break;
375 case 'g': case 'X':
376 *allows_reg = true;
377 *allows_mem = true;
378 break;
380 case 'p': case 'r':
381 *allows_reg = true;
382 break;
384 default:
385 if (!ISALPHA (*p))
386 break;
387 if (REG_CLASS_FROM_CONSTRAINT (*p, p) != NO_REGS)
388 *allows_reg = true;
389 #ifdef EXTRA_CONSTRAINT_STR
390 else if (EXTRA_ADDRESS_CONSTRAINT (*p, p))
391 *allows_reg = true;
392 else if (EXTRA_MEMORY_CONSTRAINT (*p, p))
393 *allows_mem = true;
394 else
396 /* Otherwise we can't assume anything about the nature of
397 the constraint except that it isn't purely registers.
398 Treat it like "g" and hope for the best. */
399 *allows_reg = true;
400 *allows_mem = true;
402 #endif
403 break;
406 return true;
409 /* Similar, but for input constraints. */
411 bool
412 parse_input_constraint (const char **constraint_p, int input_num,
413 int ninputs, int noutputs, int ninout,
414 const char * const * constraints,
415 bool *allows_mem, bool *allows_reg)
417 const char *constraint = *constraint_p;
418 const char *orig_constraint = constraint;
419 size_t c_len = strlen (constraint);
420 size_t j;
421 bool saw_match = false;
423 /* Assume the constraint doesn't allow the use of either
424 a register or memory. */
425 *allows_mem = false;
426 *allows_reg = false;
428 /* Make sure constraint has neither `=', `+', nor '&'. */
430 for (j = 0; j < c_len; j += CONSTRAINT_LEN (constraint[j], constraint+j))
431 switch (constraint[j])
433 case '+': case '=': case '&':
434 if (constraint == orig_constraint)
436 error ("input operand constraint contains %qc", constraint[j]);
437 return false;
439 break;
441 case '%':
442 if (constraint == orig_constraint
443 && input_num + 1 == ninputs - ninout)
445 error ("%<%%%> constraint used with last operand");
446 return false;
448 break;
450 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
451 *allows_mem = true;
452 break;
454 case '<': case '>':
455 case '?': case '!': case '*': case '#':
456 case 'E': case 'F': case 'G': case 'H':
457 case 's': case 'i': case 'n':
458 case 'I': case 'J': case 'K': case 'L': case 'M':
459 case 'N': case 'O': case 'P': case ',':
460 break;
462 /* Whether or not a numeric constraint allows a register is
463 decided by the matching constraint, and so there is no need
464 to do anything special with them. We must handle them in
465 the default case, so that we don't unnecessarily force
466 operands to memory. */
467 case '0': case '1': case '2': case '3': case '4':
468 case '5': case '6': case '7': case '8': case '9':
470 char *end;
471 unsigned long match;
473 saw_match = true;
475 match = strtoul (constraint + j, &end, 10);
476 if (match >= (unsigned long) noutputs)
478 error ("matching constraint references invalid operand number");
479 return false;
482 /* Try and find the real constraint for this dup. Only do this
483 if the matching constraint is the only alternative. */
484 if (*end == '\0'
485 && (j == 0 || (j == 1 && constraint[0] == '%')))
487 constraint = constraints[match];
488 *constraint_p = constraint;
489 c_len = strlen (constraint);
490 j = 0;
491 /* ??? At the end of the loop, we will skip the first part of
492 the matched constraint. This assumes not only that the
493 other constraint is an output constraint, but also that
494 the '=' or '+' come first. */
495 break;
497 else
498 j = end - constraint;
499 /* Anticipate increment at end of loop. */
500 j--;
502 /* Fall through. */
504 case 'p': case 'r':
505 *allows_reg = true;
506 break;
508 case 'g': case 'X':
509 *allows_reg = true;
510 *allows_mem = true;
511 break;
513 default:
514 if (! ISALPHA (constraint[j]))
516 error ("invalid punctuation %qc in constraint", constraint[j]);
517 return false;
519 if (REG_CLASS_FROM_CONSTRAINT (constraint[j], constraint + j)
520 != NO_REGS)
521 *allows_reg = true;
522 #ifdef EXTRA_CONSTRAINT_STR
523 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j], constraint + j))
524 *allows_reg = true;
525 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j], constraint + j))
526 *allows_mem = true;
527 else
529 /* Otherwise we can't assume anything about the nature of
530 the constraint except that it isn't purely registers.
531 Treat it like "g" and hope for the best. */
532 *allows_reg = true;
533 *allows_mem = true;
535 #endif
536 break;
539 if (saw_match && !*allows_reg)
540 warning (0, "matching constraint does not allow a register");
542 return true;
545 /* Return DECL iff there's an overlap between *REGS and DECL, where DECL
546 can be an asm-declared register. Called via walk_tree. */
548 static tree
549 decl_overlaps_hard_reg_set_p (tree *declp, int *walk_subtrees ATTRIBUTE_UNUSED,
550 void *data)
552 tree decl = *declp;
553 const HARD_REG_SET *const regs = (const HARD_REG_SET *) data;
555 if (TREE_CODE (decl) == VAR_DECL)
557 if (DECL_HARD_REGISTER (decl)
558 && REG_P (DECL_RTL (decl))
559 && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
561 rtx reg = DECL_RTL (decl);
563 if (overlaps_hard_reg_set_p (*regs, GET_MODE (reg), REGNO (reg)))
564 return decl;
566 walk_subtrees = 0;
568 else if (TYPE_P (decl) || TREE_CODE (decl) == PARM_DECL)
569 walk_subtrees = 0;
570 return NULL_TREE;
573 /* If there is an overlap between *REGS and DECL, return the first overlap
574 found. */
575 tree
576 tree_overlaps_hard_reg_set (tree decl, HARD_REG_SET *regs)
578 return walk_tree (&decl, decl_overlaps_hard_reg_set_p, regs, NULL);
581 /* Check for overlap between registers marked in CLOBBERED_REGS and
582 anything inappropriate in T. Emit error and return the register
583 variable definition for error, NULL_TREE for ok. */
585 static bool
586 tree_conflicts_with_clobbers_p (tree t, HARD_REG_SET *clobbered_regs)
588 /* Conflicts between asm-declared register variables and the clobber
589 list are not allowed. */
590 tree overlap = tree_overlaps_hard_reg_set (t, clobbered_regs);
592 if (overlap)
594 error ("asm-specifier for variable %qE conflicts with asm clobber list",
595 DECL_NAME (overlap));
597 /* Reset registerness to stop multiple errors emitted for a single
598 variable. */
599 DECL_REGISTER (overlap) = 0;
600 return true;
603 return false;
606 /* Generate RTL for an asm statement with arguments.
607 STRING is the instruction template.
608 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
609 Each output or input has an expression in the TREE_VALUE and
610 a tree list in TREE_PURPOSE which in turn contains a constraint
611 name in TREE_VALUE (or NULL_TREE) and a constraint string
612 in TREE_PURPOSE.
613 CLOBBERS is a list of STRING_CST nodes each naming a hard register
614 that is clobbered by this insn.
616 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
617 Some elements of OUTPUTS may be replaced with trees representing temporary
618 values. The caller should copy those temporary values to the originally
619 specified lvalues.
621 VOL nonzero means the insn is volatile; don't optimize it. */
623 static void
624 expand_asm_operands (tree string, tree outputs, tree inputs,
625 tree clobbers, tree labels, int vol, location_t locus)
627 rtvec argvec, constraintvec, labelvec;
628 rtx body;
629 int ninputs = list_length (inputs);
630 int noutputs = list_length (outputs);
631 int nlabels = list_length (labels);
632 int ninout;
633 int nclobbers;
634 HARD_REG_SET clobbered_regs;
635 int clobber_conflict_found = 0;
636 tree tail;
637 tree t;
638 int i;
639 /* Vector of RTX's of evaluated output operands. */
640 rtx *output_rtx = XALLOCAVEC (rtx, noutputs);
641 int *inout_opnum = XALLOCAVEC (int, noutputs);
642 rtx *real_output_rtx = XALLOCAVEC (rtx, noutputs);
643 enum machine_mode *inout_mode = XALLOCAVEC (enum machine_mode, noutputs);
644 const char **constraints = XALLOCAVEC (const char *, noutputs + ninputs);
645 int old_generating_concat_p = generating_concat_p;
647 /* An ASM with no outputs needs to be treated as volatile, for now. */
648 if (noutputs == 0)
649 vol = 1;
651 if (! check_operand_nalternatives (outputs, inputs))
652 return;
654 string = resolve_asm_operand_names (string, outputs, inputs, labels);
656 /* Collect constraints. */
657 i = 0;
658 for (t = outputs; t ; t = TREE_CHAIN (t), i++)
659 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
660 for (t = inputs; t ; t = TREE_CHAIN (t), i++)
661 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
663 /* Sometimes we wish to automatically clobber registers across an asm.
664 Case in point is when the i386 backend moved from cc0 to a hard reg --
665 maintaining source-level compatibility means automatically clobbering
666 the flags register. */
667 clobbers = targetm.md_asm_clobbers (outputs, inputs, clobbers);
669 /* Count the number of meaningful clobbered registers, ignoring what
670 we would ignore later. */
671 nclobbers = 0;
672 CLEAR_HARD_REG_SET (clobbered_regs);
673 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
675 const char *regname;
676 int nregs;
678 if (TREE_VALUE (tail) == error_mark_node)
679 return;
680 regname = TREE_STRING_POINTER (TREE_VALUE (tail));
682 i = decode_reg_name_and_count (regname, &nregs);
683 if (i == -4)
684 ++nclobbers;
685 else if (i == -2)
686 error ("unknown register name %qs in %<asm%>", regname);
688 /* Mark clobbered registers. */
689 if (i >= 0)
691 int reg;
693 for (reg = i; reg < i + nregs; reg++)
695 ++nclobbers;
697 /* Clobbering the PIC register is an error. */
698 if (reg == (int) PIC_OFFSET_TABLE_REGNUM)
700 error ("PIC register clobbered by %qs in %<asm%>", regname);
701 return;
704 SET_HARD_REG_BIT (clobbered_regs, reg);
709 /* First pass over inputs and outputs checks validity and sets
710 mark_addressable if needed. */
712 ninout = 0;
713 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
715 tree val = TREE_VALUE (tail);
716 tree type = TREE_TYPE (val);
717 const char *constraint;
718 bool is_inout;
719 bool allows_reg;
720 bool allows_mem;
722 /* If there's an erroneous arg, emit no insn. */
723 if (type == error_mark_node)
724 return;
726 /* Try to parse the output constraint. If that fails, there's
727 no point in going further. */
728 constraint = constraints[i];
729 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
730 &allows_mem, &allows_reg, &is_inout))
731 return;
733 if (! allows_reg
734 && (allows_mem
735 || is_inout
736 || (DECL_P (val)
737 && REG_P (DECL_RTL (val))
738 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
739 mark_addressable (val);
741 if (is_inout)
742 ninout++;
745 ninputs += ninout;
746 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
748 error ("more than %d operands in %<asm%>", MAX_RECOG_OPERANDS);
749 return;
752 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
754 bool allows_reg, allows_mem;
755 const char *constraint;
757 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
758 would get VOIDmode and that could cause a crash in reload. */
759 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
760 return;
762 constraint = constraints[i + noutputs];
763 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
764 constraints, &allows_mem, &allows_reg))
765 return;
767 if (! allows_reg && allows_mem)
768 mark_addressable (TREE_VALUE (tail));
771 /* Second pass evaluates arguments. */
773 /* Make sure stack is consistent for asm goto. */
774 if (nlabels > 0)
775 do_pending_stack_adjust ();
777 ninout = 0;
778 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
780 tree val = TREE_VALUE (tail);
781 tree type = TREE_TYPE (val);
782 bool is_inout;
783 bool allows_reg;
784 bool allows_mem;
785 rtx op;
786 bool ok;
788 ok = parse_output_constraint (&constraints[i], i, ninputs,
789 noutputs, &allows_mem, &allows_reg,
790 &is_inout);
791 gcc_assert (ok);
793 /* If an output operand is not a decl or indirect ref and our constraint
794 allows a register, make a temporary to act as an intermediate.
795 Make the asm insn write into that, then our caller will copy it to
796 the real output operand. Likewise for promoted variables. */
798 generating_concat_p = 0;
800 real_output_rtx[i] = NULL_RTX;
801 if ((TREE_CODE (val) == INDIRECT_REF
802 && allows_mem)
803 || (DECL_P (val)
804 && (allows_mem || REG_P (DECL_RTL (val)))
805 && ! (REG_P (DECL_RTL (val))
806 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
807 || ! allows_reg
808 || is_inout)
810 op = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
811 if (MEM_P (op))
812 op = validize_mem (op);
814 if (! allows_reg && !MEM_P (op))
815 error ("output number %d not directly addressable", i);
816 if ((! allows_mem && MEM_P (op))
817 || GET_CODE (op) == CONCAT)
819 real_output_rtx[i] = op;
820 op = gen_reg_rtx (GET_MODE (op));
821 if (is_inout)
822 emit_move_insn (op, real_output_rtx[i]);
825 else
827 op = assign_temp (type, 0, 1);
828 op = validize_mem (op);
829 if (!MEM_P (op) && TREE_CODE (TREE_VALUE (tail)) == SSA_NAME)
830 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (TREE_VALUE (tail)), op);
831 TREE_VALUE (tail) = make_tree (type, op);
833 output_rtx[i] = op;
835 generating_concat_p = old_generating_concat_p;
837 if (is_inout)
839 inout_mode[ninout] = TYPE_MODE (type);
840 inout_opnum[ninout++] = i;
843 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
844 clobber_conflict_found = 1;
847 /* Make vectors for the expression-rtx, constraint strings,
848 and named operands. */
850 argvec = rtvec_alloc (ninputs);
851 constraintvec = rtvec_alloc (ninputs);
852 labelvec = rtvec_alloc (nlabels);
854 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
855 : GET_MODE (output_rtx[0])),
856 ggc_strdup (TREE_STRING_POINTER (string)),
857 empty_string, 0, argvec, constraintvec,
858 labelvec, locus);
860 MEM_VOLATILE_P (body) = vol;
862 /* Eval the inputs and put them into ARGVEC.
863 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
865 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
867 bool allows_reg, allows_mem;
868 const char *constraint;
869 tree val, type;
870 rtx op;
871 bool ok;
873 constraint = constraints[i + noutputs];
874 ok = parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
875 constraints, &allows_mem, &allows_reg);
876 gcc_assert (ok);
878 generating_concat_p = 0;
880 val = TREE_VALUE (tail);
881 type = TREE_TYPE (val);
882 /* EXPAND_INITIALIZER will not generate code for valid initializer
883 constants, but will still generate code for other types of operand.
884 This is the behavior we want for constant constraints. */
885 op = expand_expr (val, NULL_RTX, VOIDmode,
886 allows_reg ? EXPAND_NORMAL
887 : allows_mem ? EXPAND_MEMORY
888 : EXPAND_INITIALIZER);
890 /* Never pass a CONCAT to an ASM. */
891 if (GET_CODE (op) == CONCAT)
892 op = force_reg (GET_MODE (op), op);
893 else if (MEM_P (op))
894 op = validize_mem (op);
896 if (asm_operand_ok (op, constraint, NULL) <= 0)
898 if (allows_reg && TYPE_MODE (type) != BLKmode)
899 op = force_reg (TYPE_MODE (type), op);
900 else if (!allows_mem)
901 warning (0, "asm operand %d probably doesn%'t match constraints",
902 i + noutputs);
903 else if (MEM_P (op))
905 /* We won't recognize either volatile memory or memory
906 with a queued address as available a memory_operand
907 at this point. Ignore it: clearly this *is* a memory. */
909 else
910 gcc_unreachable ();
913 generating_concat_p = old_generating_concat_p;
914 ASM_OPERANDS_INPUT (body, i) = op;
916 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
917 = gen_rtx_ASM_INPUT (TYPE_MODE (type),
918 ggc_strdup (constraints[i + noutputs]));
920 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
921 clobber_conflict_found = 1;
924 /* Protect all the operands from the queue now that they have all been
925 evaluated. */
927 generating_concat_p = 0;
929 /* For in-out operands, copy output rtx to input rtx. */
930 for (i = 0; i < ninout; i++)
932 int j = inout_opnum[i];
933 char buffer[16];
935 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
936 = output_rtx[j];
938 sprintf (buffer, "%d", j);
939 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
940 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_strdup (buffer));
943 /* Copy labels to the vector. */
944 for (i = 0, tail = labels; i < nlabels; ++i, tail = TREE_CHAIN (tail))
945 ASM_OPERANDS_LABEL (body, i)
946 = gen_rtx_LABEL_REF (Pmode, label_rtx (TREE_VALUE (tail)));
948 generating_concat_p = old_generating_concat_p;
950 /* Now, for each output, construct an rtx
951 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
952 ARGVEC CONSTRAINTS OPNAMES))
953 If there is more than one, put them inside a PARALLEL. */
955 if (nlabels > 0 && nclobbers == 0)
957 gcc_assert (noutputs == 0);
958 emit_jump_insn (body);
960 else if (noutputs == 0 && nclobbers == 0)
962 /* No output operands: put in a raw ASM_OPERANDS rtx. */
963 emit_insn (body);
965 else if (noutputs == 1 && nclobbers == 0)
967 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = ggc_strdup (constraints[0]);
968 emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
970 else
972 rtx obody = body;
973 int num = noutputs;
975 if (num == 0)
976 num = 1;
978 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
980 /* For each output operand, store a SET. */
981 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
983 XVECEXP (body, 0, i)
984 = gen_rtx_SET (VOIDmode,
985 output_rtx[i],
986 gen_rtx_ASM_OPERANDS
987 (GET_MODE (output_rtx[i]),
988 ggc_strdup (TREE_STRING_POINTER (string)),
989 ggc_strdup (constraints[i]),
990 i, argvec, constraintvec, labelvec, locus));
992 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
995 /* If there are no outputs (but there are some clobbers)
996 store the bare ASM_OPERANDS into the PARALLEL. */
998 if (i == 0)
999 XVECEXP (body, 0, i++) = obody;
1001 /* Store (clobber REG) for each clobbered register specified. */
1003 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1005 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1006 int reg, nregs;
1007 int j = decode_reg_name_and_count (regname, &nregs);
1008 rtx clobbered_reg;
1010 if (j < 0)
1012 if (j == -3) /* `cc', which is not a register */
1013 continue;
1015 if (j == -4) /* `memory', don't cache memory across asm */
1017 XVECEXP (body, 0, i++)
1018 = gen_rtx_CLOBBER (VOIDmode,
1019 gen_rtx_MEM
1020 (BLKmode,
1021 gen_rtx_SCRATCH (VOIDmode)));
1022 continue;
1025 /* Ignore unknown register, error already signaled. */
1026 continue;
1029 for (reg = j; reg < j + nregs; reg++)
1031 /* Use QImode since that's guaranteed to clobber just
1032 * one reg. */
1033 clobbered_reg = gen_rtx_REG (QImode, reg);
1035 /* Do sanity check for overlap between clobbers and
1036 respectively input and outputs that hasn't been
1037 handled. Such overlap should have been detected and
1038 reported above. */
1039 if (!clobber_conflict_found)
1041 int opno;
1043 /* We test the old body (obody) contents to avoid
1044 tripping over the under-construction body. */
1045 for (opno = 0; opno < noutputs; opno++)
1046 if (reg_overlap_mentioned_p (clobbered_reg,
1047 output_rtx[opno]))
1048 internal_error
1049 ("asm clobber conflict with output operand");
1051 for (opno = 0; opno < ninputs - ninout; opno++)
1052 if (reg_overlap_mentioned_p (clobbered_reg,
1053 ASM_OPERANDS_INPUT (obody,
1054 opno)))
1055 internal_error
1056 ("asm clobber conflict with input operand");
1059 XVECEXP (body, 0, i++)
1060 = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1064 if (nlabels > 0)
1065 emit_jump_insn (body);
1066 else
1067 emit_insn (body);
1070 /* For any outputs that needed reloading into registers, spill them
1071 back to where they belong. */
1072 for (i = 0; i < noutputs; ++i)
1073 if (real_output_rtx[i])
1074 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1076 crtl->has_asm_statement = 1;
1077 free_temp_slots ();
1080 void
1081 expand_asm_stmt (gimple stmt)
1083 int noutputs;
1084 tree outputs, tail, t;
1085 tree *o;
1086 size_t i, n;
1087 const char *s;
1088 tree str, out, in, cl, labels;
1089 location_t locus = gimple_location (stmt);
1091 /* Meh... convert the gimple asm operands into real tree lists.
1092 Eventually we should make all routines work on the vectors instead
1093 of relying on TREE_CHAIN. */
1094 out = NULL_TREE;
1095 n = gimple_asm_noutputs (stmt);
1096 if (n > 0)
1098 t = out = gimple_asm_output_op (stmt, 0);
1099 for (i = 1; i < n; i++)
1100 t = TREE_CHAIN (t) = gimple_asm_output_op (stmt, i);
1103 in = NULL_TREE;
1104 n = gimple_asm_ninputs (stmt);
1105 if (n > 0)
1107 t = in = gimple_asm_input_op (stmt, 0);
1108 for (i = 1; i < n; i++)
1109 t = TREE_CHAIN (t) = gimple_asm_input_op (stmt, i);
1112 cl = NULL_TREE;
1113 n = gimple_asm_nclobbers (stmt);
1114 if (n > 0)
1116 t = cl = gimple_asm_clobber_op (stmt, 0);
1117 for (i = 1; i < n; i++)
1118 t = TREE_CHAIN (t) = gimple_asm_clobber_op (stmt, i);
1121 labels = NULL_TREE;
1122 n = gimple_asm_nlabels (stmt);
1123 if (n > 0)
1125 t = labels = gimple_asm_label_op (stmt, 0);
1126 for (i = 1; i < n; i++)
1127 t = TREE_CHAIN (t) = gimple_asm_label_op (stmt, i);
1130 s = gimple_asm_string (stmt);
1131 str = build_string (strlen (s), s);
1133 if (gimple_asm_input_p (stmt))
1135 expand_asm_loc (str, gimple_asm_volatile_p (stmt), locus);
1136 return;
1139 outputs = out;
1140 noutputs = gimple_asm_noutputs (stmt);
1141 /* o[I] is the place that output number I should be written. */
1142 o = (tree *) alloca (noutputs * sizeof (tree));
1144 /* Record the contents of OUTPUTS before it is modified. */
1145 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1146 o[i] = TREE_VALUE (tail);
1148 /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
1149 OUTPUTS some trees for where the values were actually stored. */
1150 expand_asm_operands (str, outputs, in, cl, labels,
1151 gimple_asm_volatile_p (stmt), locus);
1153 /* Copy all the intermediate outputs into the specified outputs. */
1154 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1156 if (o[i] != TREE_VALUE (tail))
1158 expand_assignment (o[i], TREE_VALUE (tail), false);
1159 free_temp_slots ();
1161 /* Restore the original value so that it's correct the next
1162 time we expand this function. */
1163 TREE_VALUE (tail) = o[i];
1168 /* A subroutine of expand_asm_operands. Check that all operands have
1169 the same number of alternatives. Return true if so. */
1171 static bool
1172 check_operand_nalternatives (tree outputs, tree inputs)
1174 if (outputs || inputs)
1176 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1177 int nalternatives
1178 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1179 tree next = inputs;
1181 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1183 error ("too many alternatives in %<asm%>");
1184 return false;
1187 tmp = outputs;
1188 while (tmp)
1190 const char *constraint
1191 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1193 if (n_occurrences (',', constraint) != nalternatives)
1195 error ("operand constraints for %<asm%> differ "
1196 "in number of alternatives");
1197 return false;
1200 if (TREE_CHAIN (tmp))
1201 tmp = TREE_CHAIN (tmp);
1202 else
1203 tmp = next, next = 0;
1207 return true;
1210 /* A subroutine of expand_asm_operands. Check that all operand names
1211 are unique. Return true if so. We rely on the fact that these names
1212 are identifiers, and so have been canonicalized by get_identifier,
1213 so all we need are pointer comparisons. */
1215 static bool
1216 check_unique_operand_names (tree outputs, tree inputs, tree labels)
1218 tree i, j, i_name = NULL_TREE;
1220 for (i = outputs; i ; i = TREE_CHAIN (i))
1222 i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1223 if (! i_name)
1224 continue;
1226 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1227 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1228 goto failure;
1231 for (i = inputs; i ; i = TREE_CHAIN (i))
1233 i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1234 if (! i_name)
1235 continue;
1237 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1238 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1239 goto failure;
1240 for (j = outputs; j ; j = TREE_CHAIN (j))
1241 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1242 goto failure;
1245 for (i = labels; i ; i = TREE_CHAIN (i))
1247 i_name = TREE_PURPOSE (i);
1248 if (! i_name)
1249 continue;
1251 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1252 if (simple_cst_equal (i_name, TREE_PURPOSE (j)))
1253 goto failure;
1254 for (j = inputs; j ; j = TREE_CHAIN (j))
1255 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1256 goto failure;
1259 return true;
1261 failure:
1262 error ("duplicate asm operand name %qs", TREE_STRING_POINTER (i_name));
1263 return false;
1266 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1267 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1268 STRING and in the constraints to those numbers. */
1270 tree
1271 resolve_asm_operand_names (tree string, tree outputs, tree inputs, tree labels)
1273 char *buffer;
1274 char *p;
1275 const char *c;
1276 tree t;
1278 check_unique_operand_names (outputs, inputs, labels);
1280 /* Substitute [<name>] in input constraint strings. There should be no
1281 named operands in output constraints. */
1282 for (t = inputs; t ; t = TREE_CHAIN (t))
1284 c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1285 if (strchr (c, '[') != NULL)
1287 p = buffer = xstrdup (c);
1288 while ((p = strchr (p, '[')) != NULL)
1289 p = resolve_operand_name_1 (p, outputs, inputs, NULL);
1290 TREE_VALUE (TREE_PURPOSE (t))
1291 = build_string (strlen (buffer), buffer);
1292 free (buffer);
1296 /* Now check for any needed substitutions in the template. */
1297 c = TREE_STRING_POINTER (string);
1298 while ((c = strchr (c, '%')) != NULL)
1300 if (c[1] == '[')
1301 break;
1302 else if (ISALPHA (c[1]) && c[2] == '[')
1303 break;
1304 else
1306 c += 1 + (c[1] == '%');
1307 continue;
1311 if (c)
1313 /* OK, we need to make a copy so we can perform the substitutions.
1314 Assume that we will not need extra space--we get to remove '['
1315 and ']', which means we cannot have a problem until we have more
1316 than 999 operands. */
1317 buffer = xstrdup (TREE_STRING_POINTER (string));
1318 p = buffer + (c - TREE_STRING_POINTER (string));
1320 while ((p = strchr (p, '%')) != NULL)
1322 if (p[1] == '[')
1323 p += 1;
1324 else if (ISALPHA (p[1]) && p[2] == '[')
1325 p += 2;
1326 else
1328 p += 1 + (p[1] == '%');
1329 continue;
1332 p = resolve_operand_name_1 (p, outputs, inputs, labels);
1335 string = build_string (strlen (buffer), buffer);
1336 free (buffer);
1339 return string;
1342 /* A subroutine of resolve_operand_names. P points to the '[' for a
1343 potential named operand of the form [<name>]. In place, replace
1344 the name and brackets with a number. Return a pointer to the
1345 balance of the string after substitution. */
1347 static char *
1348 resolve_operand_name_1 (char *p, tree outputs, tree inputs, tree labels)
1350 char *q;
1351 int op;
1352 tree t;
1354 /* Collect the operand name. */
1355 q = strchr (++p, ']');
1356 if (!q)
1358 error ("missing close brace for named operand");
1359 return strchr (p, '\0');
1361 *q = '\0';
1363 /* Resolve the name to a number. */
1364 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
1366 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1367 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1368 goto found;
1370 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
1372 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1373 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1374 goto found;
1376 for (t = labels; t ; t = TREE_CHAIN (t), op++)
1378 tree name = TREE_PURPOSE (t);
1379 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1380 goto found;
1383 error ("undefined named operand %qs", identifier_to_locale (p));
1384 op = 0;
1386 found:
1387 /* Replace the name with the number. Unfortunately, not all libraries
1388 get the return value of sprintf correct, so search for the end of the
1389 generated string by hand. */
1390 sprintf (--p, "%d", op);
1391 p = strchr (p, '\0');
1393 /* Verify the no extra buffer space assumption. */
1394 gcc_assert (p <= q);
1396 /* Shift the rest of the buffer down to fill the gap. */
1397 memmove (p, q + 1, strlen (q + 1) + 1);
1399 return p;
1402 /* Generate RTL to return from the current function, with no value.
1403 (That is, we do not do anything about returning any value.) */
1405 void
1406 expand_null_return (void)
1408 /* If this function was declared to return a value, but we
1409 didn't, clobber the return registers so that they are not
1410 propagated live to the rest of the function. */
1411 clobber_return_register ();
1413 expand_null_return_1 ();
1416 /* Generate RTL to return directly from the current function.
1417 (That is, we bypass any return value.) */
1419 void
1420 expand_naked_return (void)
1422 rtx end_label;
1424 clear_pending_stack_adjust ();
1425 do_pending_stack_adjust ();
1427 end_label = naked_return_label;
1428 if (end_label == 0)
1429 end_label = naked_return_label = gen_label_rtx ();
1431 emit_jump (end_label);
1434 /* Generate RTL to return from the current function, with value VAL. */
1436 static void
1437 expand_value_return (rtx val)
1439 /* Copy the value to the return location unless it's already there. */
1441 tree decl = DECL_RESULT (current_function_decl);
1442 rtx return_reg = DECL_RTL (decl);
1443 if (return_reg != val)
1445 tree funtype = TREE_TYPE (current_function_decl);
1446 tree type = TREE_TYPE (decl);
1447 int unsignedp = TYPE_UNSIGNED (type);
1448 enum machine_mode old_mode = DECL_MODE (decl);
1449 enum machine_mode mode;
1450 if (DECL_BY_REFERENCE (decl))
1451 mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 2);
1452 else
1453 mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 1);
1455 if (mode != old_mode)
1456 val = convert_modes (mode, old_mode, val, unsignedp);
1458 if (GET_CODE (return_reg) == PARALLEL)
1459 emit_group_load (return_reg, val, type, int_size_in_bytes (type));
1460 else
1461 emit_move_insn (return_reg, val);
1464 expand_null_return_1 ();
1467 /* Output a return with no value. */
1469 static void
1470 expand_null_return_1 (void)
1472 clear_pending_stack_adjust ();
1473 do_pending_stack_adjust ();
1474 emit_jump (return_label);
1477 /* Generate RTL to evaluate the expression RETVAL and return it
1478 from the current function. */
1480 void
1481 expand_return (tree retval)
1483 rtx result_rtl;
1484 rtx val = 0;
1485 tree retval_rhs;
1487 /* If function wants no value, give it none. */
1488 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
1490 expand_normal (retval);
1491 expand_null_return ();
1492 return;
1495 if (retval == error_mark_node)
1497 /* Treat this like a return of no value from a function that
1498 returns a value. */
1499 expand_null_return ();
1500 return;
1502 else if ((TREE_CODE (retval) == MODIFY_EXPR
1503 || TREE_CODE (retval) == INIT_EXPR)
1504 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
1505 retval_rhs = TREE_OPERAND (retval, 1);
1506 else
1507 retval_rhs = retval;
1509 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
1511 /* If we are returning the RESULT_DECL, then the value has already
1512 been stored into it, so we don't have to do anything special. */
1513 if (TREE_CODE (retval_rhs) == RESULT_DECL)
1514 expand_value_return (result_rtl);
1516 /* If the result is an aggregate that is being returned in one (or more)
1517 registers, load the registers here. */
1519 else if (retval_rhs != 0
1520 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
1521 && REG_P (result_rtl))
1523 val = copy_blkmode_to_reg (GET_MODE (result_rtl), retval_rhs);
1524 if (val)
1526 /* Use the mode of the result value on the return register. */
1527 PUT_MODE (result_rtl, GET_MODE (val));
1528 expand_value_return (val);
1530 else
1531 expand_null_return ();
1533 else if (retval_rhs != 0
1534 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
1535 && (REG_P (result_rtl)
1536 || (GET_CODE (result_rtl) == PARALLEL)))
1538 /* Calculate the return value into a temporary (usually a pseudo
1539 reg). */
1540 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
1541 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
1543 val = assign_temp (nt, 0, 1);
1544 val = expand_expr (retval_rhs, val, GET_MODE (val), EXPAND_NORMAL);
1545 val = force_not_mem (val);
1546 /* Return the calculated value. */
1547 expand_value_return (val);
1549 else
1551 /* No hard reg used; calculate value into hard return reg. */
1552 expand_expr (retval, const0_rtx, VOIDmode, EXPAND_NORMAL);
1553 expand_value_return (result_rtl);
1557 /* Emit code to restore vital registers at the beginning of a nonlocal goto
1558 handler. */
1559 static void
1560 expand_nl_goto_receiver (void)
1562 rtx chain;
1564 /* Clobber the FP when we get here, so we have to make sure it's
1565 marked as used by this function. */
1566 emit_use (hard_frame_pointer_rtx);
1568 /* Mark the static chain as clobbered here so life information
1569 doesn't get messed up for it. */
1570 chain = targetm.calls.static_chain (current_function_decl, true);
1571 if (chain && REG_P (chain))
1572 emit_clobber (chain);
1574 #ifdef HAVE_nonlocal_goto
1575 if (! HAVE_nonlocal_goto)
1576 #endif
1577 /* First adjust our frame pointer to its actual value. It was
1578 previously set to the start of the virtual area corresponding to
1579 the stacked variables when we branched here and now needs to be
1580 adjusted to the actual hardware fp value.
1582 Assignments are to virtual registers are converted by
1583 instantiate_virtual_regs into the corresponding assignment
1584 to the underlying register (fp in this case) that makes
1585 the original assignment true.
1586 So the following insn will actually be
1587 decrementing fp by STARTING_FRAME_OFFSET. */
1588 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
1590 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
1591 if (fixed_regs[ARG_POINTER_REGNUM])
1593 #ifdef ELIMINABLE_REGS
1594 /* If the argument pointer can be eliminated in favor of the
1595 frame pointer, we don't need to restore it. We assume here
1596 that if such an elimination is present, it can always be used.
1597 This is the case on all known machines; if we don't make this
1598 assumption, we do unnecessary saving on many machines. */
1599 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
1600 size_t i;
1602 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
1603 if (elim_regs[i].from == ARG_POINTER_REGNUM
1604 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
1605 break;
1607 if (i == ARRAY_SIZE (elim_regs))
1608 #endif
1610 /* Now restore our arg pointer from the address at which it
1611 was saved in our stack frame. */
1612 emit_move_insn (crtl->args.internal_arg_pointer,
1613 copy_to_reg (get_arg_pointer_save_area ()));
1616 #endif
1618 #ifdef HAVE_nonlocal_goto_receiver
1619 if (HAVE_nonlocal_goto_receiver)
1620 emit_insn (gen_nonlocal_goto_receiver ());
1621 #endif
1623 /* We must not allow the code we just generated to be reordered by
1624 scheduling. Specifically, the update of the frame pointer must
1625 happen immediately, not later. */
1626 emit_insn (gen_blockage ());
1629 /* Emit code to save the current value of stack. */
1631 expand_stack_save (void)
1633 rtx ret = NULL_RTX;
1635 do_pending_stack_adjust ();
1636 emit_stack_save (SAVE_BLOCK, &ret);
1637 return ret;
1640 /* Emit code to restore the current value of stack. */
1641 void
1642 expand_stack_restore (tree var)
1644 rtx prev, sa = expand_normal (var);
1646 sa = convert_memory_address (Pmode, sa);
1648 prev = get_last_insn ();
1649 emit_stack_restore (SAVE_BLOCK, sa);
1650 fixup_args_size_notes (prev, get_last_insn (), 0);
1653 /* Generate code to jump to LABEL if OP0 and OP1 are equal in mode MODE. PROB
1654 is the probability of jumping to LABEL. */
1655 static void
1656 do_jump_if_equal (enum machine_mode mode, rtx op0, rtx op1, rtx label,
1657 int unsignedp, int prob)
1659 gcc_assert (prob <= REG_BR_PROB_BASE);
1660 do_compare_rtx_and_jump (op0, op1, EQ, unsignedp, mode,
1661 NULL_RTX, NULL_RTX, label, prob);
1664 /* Do the insertion of a case label into case_list. The labels are
1665 fed to us in descending order from the sorted vector of case labels used
1666 in the tree part of the middle end. So the list we construct is
1667 sorted in ascending order.
1669 LABEL is the case label to be inserted. LOW and HIGH are the bounds
1670 against which the index is compared to jump to LABEL and PROB is the
1671 estimated probability LABEL is reached from the switch statement. */
1673 static struct case_node *
1674 add_case_node (struct case_node *head, tree low, tree high,
1675 tree label, int prob, alloc_pool case_node_pool)
1677 struct case_node *r;
1679 gcc_checking_assert (low);
1680 gcc_checking_assert (high && (TREE_TYPE (low) == TREE_TYPE (high)));
1682 /* Add this label to the chain. */
1683 r = (struct case_node *) pool_alloc (case_node_pool);
1684 r->low = low;
1685 r->high = high;
1686 r->code_label = label;
1687 r->parent = r->left = NULL;
1688 r->prob = prob;
1689 r->subtree_prob = prob;
1690 r->right = head;
1691 return r;
1694 /* Dump ROOT, a list or tree of case nodes, to file. */
1696 static void
1697 dump_case_nodes (FILE *f, struct case_node *root,
1698 int indent_step, int indent_level)
1700 HOST_WIDE_INT low, high;
1702 if (root == 0)
1703 return;
1704 indent_level++;
1706 dump_case_nodes (f, root->left, indent_step, indent_level);
1708 low = tree_low_cst (root->low, 0);
1709 high = tree_low_cst (root->high, 0);
1711 fputs (";; ", f);
1712 if (high == low)
1713 fprintf(f, "%*s" HOST_WIDE_INT_PRINT_DEC,
1714 indent_step * indent_level, "", low);
1715 else
1716 fprintf(f, "%*s" HOST_WIDE_INT_PRINT_DEC " ... " HOST_WIDE_INT_PRINT_DEC,
1717 indent_step * indent_level, "", low, high);
1718 fputs ("\n", f);
1720 dump_case_nodes (f, root->right, indent_step, indent_level);
1723 #ifndef HAVE_casesi
1724 #define HAVE_casesi 0
1725 #endif
1727 #ifndef HAVE_tablejump
1728 #define HAVE_tablejump 0
1729 #endif
1731 /* Return the smallest number of different values for which it is best to use a
1732 jump-table instead of a tree of conditional branches. */
1734 static unsigned int
1735 case_values_threshold (void)
1737 unsigned int threshold = PARAM_VALUE (PARAM_CASE_VALUES_THRESHOLD);
1739 if (threshold == 0)
1740 threshold = targetm.case_values_threshold ();
1742 return threshold;
1745 /* Return true if a switch should be expanded as a decision tree.
1746 RANGE is the difference between highest and lowest case.
1747 UNIQ is number of unique case node targets, not counting the default case.
1748 COUNT is the number of comparisons needed, not counting the default case. */
1750 static bool
1751 expand_switch_as_decision_tree_p (tree range,
1752 unsigned int uniq ATTRIBUTE_UNUSED,
1753 unsigned int count)
1755 int max_ratio;
1757 /* If neither casesi or tablejump is available, or flag_jump_tables
1758 over-ruled us, we really have no choice. */
1759 if (!HAVE_casesi && !HAVE_tablejump)
1760 return true;
1761 if (!flag_jump_tables)
1762 return true;
1763 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
1764 if (flag_pic)
1765 return true;
1766 #endif
1768 /* If the switch is relatively small such that the cost of one
1769 indirect jump on the target are higher than the cost of a
1770 decision tree, go with the decision tree.
1772 If range of values is much bigger than number of values,
1773 or if it is too large to represent in a HOST_WIDE_INT,
1774 make a sequence of conditional branches instead of a dispatch.
1776 The definition of "much bigger" depends on whether we are
1777 optimizing for size or for speed. If the former, the maximum
1778 ratio range/count = 3, because this was found to be the optimal
1779 ratio for size on i686-pc-linux-gnu, see PR11823. The ratio
1780 10 is much older, and was probably selected after an extensive
1781 benchmarking investigation on numerous platforms. Or maybe it
1782 just made sense to someone at some point in the history of GCC,
1783 who knows... */
1784 max_ratio = optimize_insn_for_size_p () ? 3 : 10;
1785 if (count < case_values_threshold ()
1786 || ! host_integerp (range, /*pos=*/1)
1787 || compare_tree_int (range, max_ratio * count) > 0)
1788 return true;
1790 return false;
1793 /* Generate a decision tree, switching on INDEX_EXPR and jumping to
1794 one of the labels in CASE_LIST or to the DEFAULT_LABEL.
1795 DEFAULT_PROB is the estimated probability that it jumps to
1796 DEFAULT_LABEL.
1798 We generate a binary decision tree to select the appropriate target
1799 code. This is done as follows:
1801 If the index is a short or char that we do not have
1802 an insn to handle comparisons directly, convert it to
1803 a full integer now, rather than letting each comparison
1804 generate the conversion.
1806 Load the index into a register.
1808 The list of cases is rearranged into a binary tree,
1809 nearly optimal assuming equal probability for each case.
1811 The tree is transformed into RTL, eliminating redundant
1812 test conditions at the same time.
1814 If program flow could reach the end of the decision tree
1815 an unconditional jump to the default code is emitted.
1817 The above process is unaware of the CFG. The caller has to fix up
1818 the CFG itself. This is done in cfgexpand.c. */
1820 static void
1821 emit_case_decision_tree (tree index_expr, tree index_type,
1822 struct case_node *case_list, rtx default_label,
1823 int default_prob)
1825 rtx index = expand_normal (index_expr);
1827 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
1828 && ! have_insn_for (COMPARE, GET_MODE (index)))
1830 int unsignedp = TYPE_UNSIGNED (index_type);
1831 enum machine_mode wider_mode;
1832 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
1833 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
1834 if (have_insn_for (COMPARE, wider_mode))
1836 index = convert_to_mode (wider_mode, index, unsignedp);
1837 break;
1841 do_pending_stack_adjust ();
1843 if (MEM_P (index))
1845 index = copy_to_reg (index);
1846 if (TREE_CODE (index_expr) == SSA_NAME)
1847 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (index_expr), index);
1850 balance_case_nodes (&case_list, NULL);
1852 if (dump_file && (dump_flags & TDF_DETAILS))
1854 int indent_step = ceil_log2 (TYPE_PRECISION (index_type)) + 2;
1855 fprintf (dump_file, ";; Expanding GIMPLE switch as decision tree:\n");
1856 dump_case_nodes (dump_file, case_list, indent_step, 0);
1859 emit_case_nodes (index, case_list, default_label, default_prob, index_type);
1860 if (default_label)
1861 emit_jump (default_label);
1864 /* Return the sum of probabilities of outgoing edges of basic block BB. */
1866 static int
1867 get_outgoing_edge_probs (basic_block bb)
1869 edge e;
1870 edge_iterator ei;
1871 int prob_sum = 0;
1872 if (!bb)
1873 return 0;
1874 FOR_EACH_EDGE(e, ei, bb->succs)
1875 prob_sum += e->probability;
1876 return prob_sum;
1879 /* Computes the conditional probability of jumping to a target if the branch
1880 instruction is executed.
1881 TARGET_PROB is the estimated probability of jumping to a target relative
1882 to some basic block BB.
1883 BASE_PROB is the probability of reaching the branch instruction relative
1884 to the same basic block BB. */
1886 static inline int
1887 conditional_probability (int target_prob, int base_prob)
1889 if (base_prob > 0)
1891 gcc_assert (target_prob >= 0);
1892 gcc_assert (target_prob <= base_prob);
1893 return RDIV (target_prob * REG_BR_PROB_BASE, base_prob);
1895 return -1;
1898 /* Generate a dispatch tabler, switching on INDEX_EXPR and jumping to
1899 one of the labels in CASE_LIST or to the DEFAULT_LABEL.
1900 MINVAL, MAXVAL, and RANGE are the extrema and range of the case
1901 labels in CASE_LIST. STMT_BB is the basic block containing the statement.
1903 First, a jump insn is emitted. First we try "casesi". If that
1904 fails, try "tablejump". A target *must* have one of them (or both).
1906 Then, a table with the target labels is emitted.
1908 The process is unaware of the CFG. The caller has to fix up
1909 the CFG itself. This is done in cfgexpand.c. */
1911 static void
1912 emit_case_dispatch_table (tree index_expr, tree index_type,
1913 struct case_node *case_list, rtx default_label,
1914 tree minval, tree maxval, tree range,
1915 basic_block stmt_bb)
1917 int i, ncases;
1918 struct case_node *n;
1919 rtx *labelvec;
1920 rtx fallback_label = label_rtx (case_list->code_label);
1921 rtx table_label = gen_label_rtx ();
1922 bool has_gaps = false;
1923 edge default_edge = stmt_bb ? EDGE_SUCC(stmt_bb, 0) : NULL;
1924 int default_prob = default_edge ? default_edge->probability : 0;
1925 int base = get_outgoing_edge_probs (stmt_bb);
1926 bool try_with_tablejump = false;
1928 int new_default_prob = conditional_probability (default_prob,
1929 base);
1931 if (! try_casesi (index_type, index_expr, minval, range,
1932 table_label, default_label, fallback_label,
1933 new_default_prob))
1935 /* Index jumptables from zero for suitable values of minval to avoid
1936 a subtraction. For the rationale see:
1937 "http://gcc.gnu.org/ml/gcc-patches/2001-10/msg01234.html". */
1938 if (optimize_insn_for_speed_p ()
1939 && compare_tree_int (minval, 0) > 0
1940 && compare_tree_int (minval, 3) < 0)
1942 minval = build_int_cst (index_type, 0);
1943 range = maxval;
1944 has_gaps = true;
1946 try_with_tablejump = true;
1949 /* Get table of labels to jump to, in order of case index. */
1951 ncases = tree_low_cst (range, 0) + 1;
1952 labelvec = XALLOCAVEC (rtx, ncases);
1953 memset (labelvec, 0, ncases * sizeof (rtx));
1955 for (n = case_list; n; n = n->right)
1957 /* Compute the low and high bounds relative to the minimum
1958 value since that should fit in a HOST_WIDE_INT while the
1959 actual values may not. */
1960 HOST_WIDE_INT i_low
1961 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
1962 n->low, minval), 1);
1963 HOST_WIDE_INT i_high
1964 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
1965 n->high, minval), 1);
1966 HOST_WIDE_INT i;
1968 for (i = i_low; i <= i_high; i ++)
1969 labelvec[i]
1970 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
1973 /* Fill in the gaps with the default. We may have gaps at
1974 the beginning if we tried to avoid the minval subtraction,
1975 so substitute some label even if the default label was
1976 deemed unreachable. */
1977 if (!default_label)
1978 default_label = fallback_label;
1979 for (i = 0; i < ncases; i++)
1980 if (labelvec[i] == 0)
1982 has_gaps = true;
1983 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
1986 if (has_gaps)
1988 /* There is at least one entry in the jump table that jumps
1989 to default label. The default label can either be reached
1990 through the indirect jump or the direct conditional jump
1991 before that. Split the probability of reaching the
1992 default label among these two jumps. */
1993 new_default_prob = conditional_probability (default_prob/2,
1994 base);
1995 default_prob /= 2;
1996 base -= default_prob;
1998 else
2000 base -= default_prob;
2001 default_prob = 0;
2004 if (default_edge)
2005 default_edge->probability = default_prob;
2007 /* We have altered the probability of the default edge. So the probabilities
2008 of all other edges need to be adjusted so that it sums up to
2009 REG_BR_PROB_BASE. */
2010 if (base)
2012 edge e;
2013 edge_iterator ei;
2014 FOR_EACH_EDGE (e, ei, stmt_bb->succs)
2015 e->probability = RDIV (e->probability * REG_BR_PROB_BASE, base);
2018 if (try_with_tablejump)
2020 bool ok = try_tablejump (index_type, index_expr, minval, range,
2021 table_label, default_label, new_default_prob);
2022 gcc_assert (ok);
2024 /* Output the table. */
2025 emit_label (table_label);
2027 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
2028 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
2029 gen_rtx_LABEL_REF (Pmode, table_label),
2030 gen_rtvec_v (ncases, labelvec),
2031 const0_rtx, const0_rtx));
2032 else
2033 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
2034 gen_rtvec_v (ncases, labelvec)));
2036 /* Record no drop-through after the table. */
2037 emit_barrier ();
2040 /* Reset the aux field of all outgoing edges of basic block BB. */
2042 static inline void
2043 reset_out_edges_aux (basic_block bb)
2045 edge e;
2046 edge_iterator ei;
2047 FOR_EACH_EDGE(e, ei, bb->succs)
2048 e->aux = (void *)0;
2051 /* Compute the number of case labels that correspond to each outgoing edge of
2052 STMT. Record this information in the aux field of the edge. */
2054 static inline void
2055 compute_cases_per_edge (gimple stmt)
2057 basic_block bb = gimple_bb (stmt);
2058 reset_out_edges_aux (bb);
2059 int ncases = gimple_switch_num_labels (stmt);
2060 for (int i = ncases - 1; i >= 1; --i)
2062 tree elt = gimple_switch_label (stmt, i);
2063 tree lab = CASE_LABEL (elt);
2064 basic_block case_bb = label_to_block_fn (cfun, lab);
2065 edge case_edge = find_edge (bb, case_bb);
2066 case_edge->aux = (void *)((intptr_t)(case_edge->aux) + 1);
2070 /* Terminate a case (Pascal/Ada) or switch (C) statement
2071 in which ORIG_INDEX is the expression to be tested.
2072 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
2073 type as given in the source before any compiler conversions.
2074 Generate the code to test it and jump to the right place. */
2076 void
2077 expand_case (gimple stmt)
2079 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
2080 rtx default_label = NULL_RTX;
2081 unsigned int count, uniq;
2082 int i;
2083 int ncases = gimple_switch_num_labels (stmt);
2084 tree index_expr = gimple_switch_index (stmt);
2085 tree index_type = TREE_TYPE (index_expr);
2086 tree elt;
2087 basic_block bb = gimple_bb (stmt);
2089 /* A list of case labels; it is first built as a list and it may then
2090 be rearranged into a nearly balanced binary tree. */
2091 struct case_node *case_list = 0;
2093 /* A pool for case nodes. */
2094 alloc_pool case_node_pool;
2096 /* An ERROR_MARK occurs for various reasons including invalid data type.
2097 ??? Can this still happen, with GIMPLE and all? */
2098 if (index_type == error_mark_node)
2099 return;
2101 /* cleanup_tree_cfg removes all SWITCH_EXPR with their index
2102 expressions being INTEGER_CST. */
2103 gcc_assert (TREE_CODE (index_expr) != INTEGER_CST);
2105 case_node_pool = create_alloc_pool ("struct case_node pool",
2106 sizeof (struct case_node),
2107 100);
2109 do_pending_stack_adjust ();
2111 /* Find the default case target label. */
2112 default_label = label_rtx (CASE_LABEL (gimple_switch_default_label (stmt)));
2113 edge default_edge = EDGE_SUCC(bb, 0);
2114 int default_prob = default_edge->probability;
2116 /* Get upper and lower bounds of case values. */
2117 elt = gimple_switch_label (stmt, 1);
2118 minval = fold_convert (index_type, CASE_LOW (elt));
2119 elt = gimple_switch_label (stmt, ncases - 1);
2120 if (CASE_HIGH (elt))
2121 maxval = fold_convert (index_type, CASE_HIGH (elt));
2122 else
2123 maxval = fold_convert (index_type, CASE_LOW (elt));
2125 /* Compute span of values. */
2126 range = fold_build2 (MINUS_EXPR, index_type, maxval, minval);
2128 /* Listify the labels queue and gather some numbers to decide
2129 how to expand this switch(). */
2130 uniq = 0;
2131 count = 0;
2132 struct pointer_set_t *seen_labels = pointer_set_create ();
2133 compute_cases_per_edge (stmt);
2135 for (i = ncases - 1; i >= 1; --i)
2137 elt = gimple_switch_label (stmt, i);
2138 tree low = CASE_LOW (elt);
2139 gcc_assert (low);
2140 tree high = CASE_HIGH (elt);
2141 gcc_assert (! high || tree_int_cst_lt (low, high));
2142 tree lab = CASE_LABEL (elt);
2144 /* Count the elements.
2145 A range counts double, since it requires two compares. */
2146 count++;
2147 if (high)
2148 count++;
2150 /* If we have not seen this label yet, then increase the
2151 number of unique case node targets seen. */
2152 if (!pointer_set_insert (seen_labels, lab))
2153 uniq++;
2155 /* The bounds on the case range, LOW and HIGH, have to be converted
2156 to case's index type TYPE. Note that the original type of the
2157 case index in the source code is usually "lost" during
2158 gimplification due to type promotion, but the case labels retain the
2159 original type. Make sure to drop overflow flags. */
2160 low = fold_convert (index_type, low);
2161 if (TREE_OVERFLOW (low))
2162 low = build_int_cst_wide (index_type,
2163 TREE_INT_CST_LOW (low),
2164 TREE_INT_CST_HIGH (low));
2166 /* The canonical from of a case label in GIMPLE is that a simple case
2167 has an empty CASE_HIGH. For the casesi and tablejump expanders,
2168 the back ends want simple cases to have high == low. */
2169 if (! high)
2170 high = low;
2171 high = fold_convert (index_type, high);
2172 if (TREE_OVERFLOW (high))
2173 high = build_int_cst_wide (index_type,
2174 TREE_INT_CST_LOW (high),
2175 TREE_INT_CST_HIGH (high));
2177 basic_block case_bb = label_to_block_fn (cfun, lab);
2178 edge case_edge = find_edge (bb, case_bb);
2179 case_list = add_case_node (
2180 case_list, low, high, lab,
2181 case_edge->probability / (intptr_t)(case_edge->aux),
2182 case_node_pool);
2184 pointer_set_destroy (seen_labels);
2185 reset_out_edges_aux (bb);
2187 /* cleanup_tree_cfg removes all SWITCH_EXPR with a single
2188 destination, such as one with a default case only.
2189 It also removes cases that are out of range for the switch
2190 type, so we should never get a zero here. */
2191 gcc_assert (count > 0);
2193 rtx before_case = get_last_insn ();
2195 /* Decide how to expand this switch.
2196 The two options at this point are a dispatch table (casesi or
2197 tablejump) or a decision tree. */
2199 if (expand_switch_as_decision_tree_p (range, uniq, count))
2200 emit_case_decision_tree (index_expr, index_type,
2201 case_list, default_label,
2202 default_prob);
2203 else
2204 emit_case_dispatch_table (index_expr, index_type,
2205 case_list, default_label,
2206 minval, maxval, range, bb);
2208 reorder_insns (NEXT_INSN (before_case), get_last_insn (), before_case);
2210 free_temp_slots ();
2211 free_alloc_pool (case_node_pool);
2214 /* Expand the dispatch to a short decrement chain if there are few cases
2215 to dispatch to. Likewise if neither casesi nor tablejump is available,
2216 or if flag_jump_tables is set. Otherwise, expand as a casesi or a
2217 tablejump. The index mode is always the mode of integer_type_node.
2218 Trap if no case matches the index.
2220 DISPATCH_INDEX is the index expression to switch on. It should be a
2221 memory or register operand.
2223 DISPATCH_TABLE is a set of case labels. The set should be sorted in
2224 ascending order, be contiguous, starting with value 0, and contain only
2225 single-valued case labels. */
2227 void
2228 expand_sjlj_dispatch_table (rtx dispatch_index,
2229 vec<tree> dispatch_table)
2231 tree index_type = integer_type_node;
2232 enum machine_mode index_mode = TYPE_MODE (index_type);
2234 int ncases = dispatch_table.length ();
2236 do_pending_stack_adjust ();
2237 rtx before_case = get_last_insn ();
2239 /* Expand as a decrement-chain if there are 5 or fewer dispatch
2240 labels. This covers more than 98% of the cases in libjava,
2241 and seems to be a reasonable compromise between the "old way"
2242 of expanding as a decision tree or dispatch table vs. the "new
2243 way" with decrement chain or dispatch table. */
2244 if (dispatch_table.length () <= 5
2245 || (!HAVE_casesi && !HAVE_tablejump)
2246 || !flag_jump_tables)
2248 /* Expand the dispatch as a decrement chain:
2250 "switch(index) {case 0: do_0; case 1: do_1; ...; case N: do_N;}"
2254 if (index == 0) do_0; else index--;
2255 if (index == 0) do_1; else index--;
2257 if (index == 0) do_N; else index--;
2259 This is more efficient than a dispatch table on most machines.
2260 The last "index--" is redundant but the code is trivially dead
2261 and will be cleaned up by later passes. */
2262 rtx index = copy_to_mode_reg (index_mode, dispatch_index);
2263 rtx zero = CONST0_RTX (index_mode);
2264 for (int i = 0; i < ncases; i++)
2266 tree elt = dispatch_table[i];
2267 rtx lab = label_rtx (CASE_LABEL (elt));
2268 do_jump_if_equal (index_mode, index, zero, lab, 0, -1);
2269 force_expand_binop (index_mode, sub_optab,
2270 index, CONST1_RTX (index_mode),
2271 index, 0, OPTAB_DIRECT);
2274 else
2276 /* Similar to expand_case, but much simpler. */
2277 struct case_node *case_list = 0;
2278 alloc_pool case_node_pool = create_alloc_pool ("struct sjlj_case pool",
2279 sizeof (struct case_node),
2280 ncases);
2281 tree index_expr = make_tree (index_type, dispatch_index);
2282 tree minval = build_int_cst (index_type, 0);
2283 tree maxval = CASE_LOW (dispatch_table.last ());
2284 tree range = maxval;
2285 rtx default_label = gen_label_rtx ();
2287 for (int i = ncases - 1; i >= 0; --i)
2289 tree elt = dispatch_table[i];
2290 tree low = CASE_LOW (elt);
2291 tree lab = CASE_LABEL (elt);
2292 case_list = add_case_node (case_list, low, low, lab, 0, case_node_pool);
2295 emit_case_dispatch_table (index_expr, index_type,
2296 case_list, default_label,
2297 minval, maxval, range,
2298 BLOCK_FOR_INSN (before_case));
2299 emit_label (default_label);
2300 free_alloc_pool (case_node_pool);
2303 /* Dispatching something not handled? Trap! */
2304 expand_builtin_trap ();
2306 reorder_insns (NEXT_INSN (before_case), get_last_insn (), before_case);
2308 free_temp_slots ();
2312 /* Take an ordered list of case nodes
2313 and transform them into a near optimal binary tree,
2314 on the assumption that any target code selection value is as
2315 likely as any other.
2317 The transformation is performed by splitting the ordered
2318 list into two equal sections plus a pivot. The parts are
2319 then attached to the pivot as left and right branches. Each
2320 branch is then transformed recursively. */
2322 static void
2323 balance_case_nodes (case_node_ptr *head, case_node_ptr parent)
2325 case_node_ptr np;
2327 np = *head;
2328 if (np)
2330 int i = 0;
2331 int ranges = 0;
2332 case_node_ptr *npp;
2333 case_node_ptr left;
2335 /* Count the number of entries on branch. Also count the ranges. */
2337 while (np)
2339 if (!tree_int_cst_equal (np->low, np->high))
2340 ranges++;
2342 i++;
2343 np = np->right;
2346 if (i > 2)
2348 /* Split this list if it is long enough for that to help. */
2349 npp = head;
2350 left = *npp;
2352 /* If there are just three nodes, split at the middle one. */
2353 if (i == 3)
2354 npp = &(*npp)->right;
2355 else
2357 /* Find the place in the list that bisects the list's total cost,
2358 where ranges count as 2.
2359 Here I gets half the total cost. */
2360 i = (i + ranges + 1) / 2;
2361 while (1)
2363 /* Skip nodes while their cost does not reach that amount. */
2364 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2365 i--;
2366 i--;
2367 if (i <= 0)
2368 break;
2369 npp = &(*npp)->right;
2372 *head = np = *npp;
2373 *npp = 0;
2374 np->parent = parent;
2375 np->left = left;
2377 /* Optimize each of the two split parts. */
2378 balance_case_nodes (&np->left, np);
2379 balance_case_nodes (&np->right, np);
2380 np->subtree_prob = np->prob;
2381 np->subtree_prob += np->left->subtree_prob;
2382 np->subtree_prob += np->right->subtree_prob;
2384 else
2386 /* Else leave this branch as one level,
2387 but fill in `parent' fields. */
2388 np = *head;
2389 np->parent = parent;
2390 np->subtree_prob = np->prob;
2391 for (; np->right; np = np->right)
2393 np->right->parent = np;
2394 (*head)->subtree_prob += np->right->subtree_prob;
2400 /* Search the parent sections of the case node tree
2401 to see if a test for the lower bound of NODE would be redundant.
2402 INDEX_TYPE is the type of the index expression.
2404 The instructions to generate the case decision tree are
2405 output in the same order as nodes are processed so it is
2406 known that if a parent node checks the range of the current
2407 node minus one that the current node is bounded at its lower
2408 span. Thus the test would be redundant. */
2410 static int
2411 node_has_low_bound (case_node_ptr node, tree index_type)
2413 tree low_minus_one;
2414 case_node_ptr pnode;
2416 /* If the lower bound of this node is the lowest value in the index type,
2417 we need not test it. */
2419 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
2420 return 1;
2422 /* If this node has a left branch, the value at the left must be less
2423 than that at this node, so it cannot be bounded at the bottom and
2424 we need not bother testing any further. */
2426 if (node->left)
2427 return 0;
2429 low_minus_one = fold_build2 (MINUS_EXPR, TREE_TYPE (node->low),
2430 node->low,
2431 build_int_cst (TREE_TYPE (node->low), 1));
2433 /* If the subtraction above overflowed, we can't verify anything.
2434 Otherwise, look for a parent that tests our value - 1. */
2436 if (! tree_int_cst_lt (low_minus_one, node->low))
2437 return 0;
2439 for (pnode = node->parent; pnode; pnode = pnode->parent)
2440 if (tree_int_cst_equal (low_minus_one, pnode->high))
2441 return 1;
2443 return 0;
2446 /* Search the parent sections of the case node tree
2447 to see if a test for the upper bound of NODE would be redundant.
2448 INDEX_TYPE is the type of the index expression.
2450 The instructions to generate the case decision tree are
2451 output in the same order as nodes are processed so it is
2452 known that if a parent node checks the range of the current
2453 node plus one that the current node is bounded at its upper
2454 span. Thus the test would be redundant. */
2456 static int
2457 node_has_high_bound (case_node_ptr node, tree index_type)
2459 tree high_plus_one;
2460 case_node_ptr pnode;
2462 /* If there is no upper bound, obviously no test is needed. */
2464 if (TYPE_MAX_VALUE (index_type) == NULL)
2465 return 1;
2467 /* If the upper bound of this node is the highest value in the type
2468 of the index expression, we need not test against it. */
2470 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
2471 return 1;
2473 /* If this node has a right branch, the value at the right must be greater
2474 than that at this node, so it cannot be bounded at the top and
2475 we need not bother testing any further. */
2477 if (node->right)
2478 return 0;
2480 high_plus_one = fold_build2 (PLUS_EXPR, TREE_TYPE (node->high),
2481 node->high,
2482 build_int_cst (TREE_TYPE (node->high), 1));
2484 /* If the addition above overflowed, we can't verify anything.
2485 Otherwise, look for a parent that tests our value + 1. */
2487 if (! tree_int_cst_lt (node->high, high_plus_one))
2488 return 0;
2490 for (pnode = node->parent; pnode; pnode = pnode->parent)
2491 if (tree_int_cst_equal (high_plus_one, pnode->low))
2492 return 1;
2494 return 0;
2497 /* Search the parent sections of the
2498 case node tree to see if both tests for the upper and lower
2499 bounds of NODE would be redundant. */
2501 static int
2502 node_is_bounded (case_node_ptr node, tree index_type)
2504 return (node_has_low_bound (node, index_type)
2505 && node_has_high_bound (node, index_type));
2509 /* Emit step-by-step code to select a case for the value of INDEX.
2510 The thus generated decision tree follows the form of the
2511 case-node binary tree NODE, whose nodes represent test conditions.
2512 INDEX_TYPE is the type of the index of the switch.
2514 Care is taken to prune redundant tests from the decision tree
2515 by detecting any boundary conditions already checked by
2516 emitted rtx. (See node_has_high_bound, node_has_low_bound
2517 and node_is_bounded, above.)
2519 Where the test conditions can be shown to be redundant we emit
2520 an unconditional jump to the target code. As a further
2521 optimization, the subordinates of a tree node are examined to
2522 check for bounded nodes. In this case conditional and/or
2523 unconditional jumps as a result of the boundary check for the
2524 current node are arranged to target the subordinates associated
2525 code for out of bound conditions on the current node.
2527 We can assume that when control reaches the code generated here,
2528 the index value has already been compared with the parents
2529 of this node, and determined to be on the same side of each parent
2530 as this node is. Thus, if this node tests for the value 51,
2531 and a parent tested for 52, we don't need to consider
2532 the possibility of a value greater than 51. If another parent
2533 tests for the value 50, then this node need not test anything. */
2535 static void
2536 emit_case_nodes (rtx index, case_node_ptr node, rtx default_label,
2537 int default_prob, tree index_type)
2539 /* If INDEX has an unsigned type, we must make unsigned branches. */
2540 int unsignedp = TYPE_UNSIGNED (index_type);
2541 int probability;
2542 int prob = node->prob, subtree_prob = node->subtree_prob;
2543 enum machine_mode mode = GET_MODE (index);
2544 enum machine_mode imode = TYPE_MODE (index_type);
2546 /* Handle indices detected as constant during RTL expansion. */
2547 if (mode == VOIDmode)
2548 mode = imode;
2550 /* See if our parents have already tested everything for us.
2551 If they have, emit an unconditional jump for this node. */
2552 if (node_is_bounded (node, index_type))
2553 emit_jump (label_rtx (node->code_label));
2555 else if (tree_int_cst_equal (node->low, node->high))
2557 probability = conditional_probability (prob, subtree_prob + default_prob);
2558 /* Node is single valued. First see if the index expression matches
2559 this node and then check our children, if any. */
2560 do_jump_if_equal (mode, index,
2561 convert_modes (mode, imode,
2562 expand_normal (node->low),
2563 unsignedp),
2564 label_rtx (node->code_label), unsignedp, probability);
2565 /* Since this case is taken at this point, reduce its weight from
2566 subtree_weight. */
2567 subtree_prob -= prob;
2568 if (node->right != 0 && node->left != 0)
2570 /* This node has children on both sides.
2571 Dispatch to one side or the other
2572 by comparing the index value with this node's value.
2573 If one subtree is bounded, check that one first,
2574 so we can avoid real branches in the tree. */
2576 if (node_is_bounded (node->right, index_type))
2578 probability = conditional_probability (
2579 node->right->prob,
2580 subtree_prob + default_prob);
2581 emit_cmp_and_jump_insns (index,
2582 convert_modes
2583 (mode, imode,
2584 expand_normal (node->high),
2585 unsignedp),
2586 GT, NULL_RTX, mode, unsignedp,
2587 label_rtx (node->right->code_label),
2588 probability);
2589 emit_case_nodes (index, node->left, default_label, default_prob,
2590 index_type);
2593 else if (node_is_bounded (node->left, index_type))
2595 probability = conditional_probability (
2596 node->left->prob,
2597 subtree_prob + default_prob);
2598 emit_cmp_and_jump_insns (index,
2599 convert_modes
2600 (mode, imode,
2601 expand_normal (node->high),
2602 unsignedp),
2603 LT, NULL_RTX, mode, unsignedp,
2604 label_rtx (node->left->code_label),
2605 probability);
2606 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2609 /* If both children are single-valued cases with no
2610 children, finish up all the work. This way, we can save
2611 one ordered comparison. */
2612 else if (tree_int_cst_equal (node->right->low, node->right->high)
2613 && node->right->left == 0
2614 && node->right->right == 0
2615 && tree_int_cst_equal (node->left->low, node->left->high)
2616 && node->left->left == 0
2617 && node->left->right == 0)
2619 /* Neither node is bounded. First distinguish the two sides;
2620 then emit the code for one side at a time. */
2622 /* See if the value matches what the right hand side
2623 wants. */
2624 probability = conditional_probability (
2625 node->right->prob,
2626 subtree_prob + default_prob);
2627 do_jump_if_equal (mode, index,
2628 convert_modes (mode, imode,
2629 expand_normal (node->right->low),
2630 unsignedp),
2631 label_rtx (node->right->code_label),
2632 unsignedp, probability);
2634 /* See if the value matches what the left hand side
2635 wants. */
2636 probability = conditional_probability (
2637 node->left->prob,
2638 subtree_prob + default_prob);
2639 do_jump_if_equal (mode, index,
2640 convert_modes (mode, imode,
2641 expand_normal (node->left->low),
2642 unsignedp),
2643 label_rtx (node->left->code_label),
2644 unsignedp, probability);
2647 else
2649 /* Neither node is bounded. First distinguish the two sides;
2650 then emit the code for one side at a time. */
2652 tree test_label
2653 = build_decl (curr_insn_location (),
2654 LABEL_DECL, NULL_TREE, NULL_TREE);
2656 /* The default label could be reached either through the right
2657 subtree or the left subtree. Divide the probability
2658 equally. */
2659 probability = conditional_probability (
2660 node->right->subtree_prob + default_prob/2,
2661 subtree_prob + default_prob);
2662 /* See if the value is on the right. */
2663 emit_cmp_and_jump_insns (index,
2664 convert_modes
2665 (mode, imode,
2666 expand_normal (node->high),
2667 unsignedp),
2668 GT, NULL_RTX, mode, unsignedp,
2669 label_rtx (test_label),
2670 probability);
2671 default_prob /= 2;
2673 /* Value must be on the left.
2674 Handle the left-hand subtree. */
2675 emit_case_nodes (index, node->left, default_label, default_prob, index_type);
2676 /* If left-hand subtree does nothing,
2677 go to default. */
2678 if (default_label)
2679 emit_jump (default_label);
2681 /* Code branches here for the right-hand subtree. */
2682 expand_label (test_label);
2683 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2687 else if (node->right != 0 && node->left == 0)
2689 /* Here we have a right child but no left so we issue a conditional
2690 branch to default and process the right child.
2692 Omit the conditional branch to default if the right child
2693 does not have any children and is single valued; it would
2694 cost too much space to save so little time. */
2696 if (node->right->right || node->right->left
2697 || !tree_int_cst_equal (node->right->low, node->right->high))
2699 if (!node_has_low_bound (node, index_type))
2701 probability = conditional_probability (
2702 default_prob/2,
2703 subtree_prob + default_prob);
2704 emit_cmp_and_jump_insns (index,
2705 convert_modes
2706 (mode, imode,
2707 expand_normal (node->high),
2708 unsignedp),
2709 LT, NULL_RTX, mode, unsignedp,
2710 default_label,
2711 probability);
2712 default_prob /= 2;
2715 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2717 else
2719 probability = conditional_probability (
2720 node->right->subtree_prob,
2721 subtree_prob + default_prob);
2722 /* We cannot process node->right normally
2723 since we haven't ruled out the numbers less than
2724 this node's value. So handle node->right explicitly. */
2725 do_jump_if_equal (mode, index,
2726 convert_modes
2727 (mode, imode,
2728 expand_normal (node->right->low),
2729 unsignedp),
2730 label_rtx (node->right->code_label), unsignedp, probability);
2734 else if (node->right == 0 && node->left != 0)
2736 /* Just one subtree, on the left. */
2737 if (node->left->left || node->left->right
2738 || !tree_int_cst_equal (node->left->low, node->left->high))
2740 if (!node_has_high_bound (node, index_type))
2742 probability = conditional_probability (
2743 default_prob/2,
2744 subtree_prob + default_prob);
2745 emit_cmp_and_jump_insns (index,
2746 convert_modes
2747 (mode, imode,
2748 expand_normal (node->high),
2749 unsignedp),
2750 GT, NULL_RTX, mode, unsignedp,
2751 default_label,
2752 probability);
2753 default_prob /= 2;
2756 emit_case_nodes (index, node->left, default_label,
2757 default_prob, index_type);
2759 else
2761 probability = conditional_probability (
2762 node->left->subtree_prob,
2763 subtree_prob + default_prob);
2764 /* We cannot process node->left normally
2765 since we haven't ruled out the numbers less than
2766 this node's value. So handle node->left explicitly. */
2767 do_jump_if_equal (mode, index,
2768 convert_modes
2769 (mode, imode,
2770 expand_normal (node->left->low),
2771 unsignedp),
2772 label_rtx (node->left->code_label), unsignedp, probability);
2776 else
2778 /* Node is a range. These cases are very similar to those for a single
2779 value, except that we do not start by testing whether this node
2780 is the one to branch to. */
2782 if (node->right != 0 && node->left != 0)
2784 /* Node has subtrees on both sides.
2785 If the right-hand subtree is bounded,
2786 test for it first, since we can go straight there.
2787 Otherwise, we need to make a branch in the control structure,
2788 then handle the two subtrees. */
2789 tree test_label = 0;
2791 if (node_is_bounded (node->right, index_type))
2793 /* Right hand node is fully bounded so we can eliminate any
2794 testing and branch directly to the target code. */
2795 probability = conditional_probability (
2796 node->right->subtree_prob,
2797 subtree_prob + default_prob);
2798 emit_cmp_and_jump_insns (index,
2799 convert_modes
2800 (mode, imode,
2801 expand_normal (node->high),
2802 unsignedp),
2803 GT, NULL_RTX, mode, unsignedp,
2804 label_rtx (node->right->code_label),
2805 probability);
2807 else
2809 /* Right hand node requires testing.
2810 Branch to a label where we will handle it later. */
2812 test_label = build_decl (curr_insn_location (),
2813 LABEL_DECL, NULL_TREE, NULL_TREE);
2814 probability = conditional_probability (
2815 node->right->subtree_prob + default_prob/2,
2816 subtree_prob + default_prob);
2817 emit_cmp_and_jump_insns (index,
2818 convert_modes
2819 (mode, imode,
2820 expand_normal (node->high),
2821 unsignedp),
2822 GT, NULL_RTX, mode, unsignedp,
2823 label_rtx (test_label),
2824 probability);
2825 default_prob /= 2;
2828 /* Value belongs to this node or to the left-hand subtree. */
2830 probability = conditional_probability (
2831 prob,
2832 subtree_prob + default_prob);
2833 emit_cmp_and_jump_insns (index,
2834 convert_modes
2835 (mode, imode,
2836 expand_normal (node->low),
2837 unsignedp),
2838 GE, NULL_RTX, mode, unsignedp,
2839 label_rtx (node->code_label),
2840 probability);
2842 /* Handle the left-hand subtree. */
2843 emit_case_nodes (index, node->left, default_label, default_prob, index_type);
2845 /* If right node had to be handled later, do that now. */
2847 if (test_label)
2849 /* If the left-hand subtree fell through,
2850 don't let it fall into the right-hand subtree. */
2851 if (default_label)
2852 emit_jump (default_label);
2854 expand_label (test_label);
2855 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2859 else if (node->right != 0 && node->left == 0)
2861 /* Deal with values to the left of this node,
2862 if they are possible. */
2863 if (!node_has_low_bound (node, index_type))
2865 probability = conditional_probability (
2866 default_prob/2,
2867 subtree_prob + default_prob);
2868 emit_cmp_and_jump_insns (index,
2869 convert_modes
2870 (mode, imode,
2871 expand_normal (node->low),
2872 unsignedp),
2873 LT, NULL_RTX, mode, unsignedp,
2874 default_label,
2875 probability);
2876 default_prob /= 2;
2879 /* Value belongs to this node or to the right-hand subtree. */
2881 probability = conditional_probability (
2882 prob,
2883 subtree_prob + default_prob);
2884 emit_cmp_and_jump_insns (index,
2885 convert_modes
2886 (mode, imode,
2887 expand_normal (node->high),
2888 unsignedp),
2889 LE, NULL_RTX, mode, unsignedp,
2890 label_rtx (node->code_label),
2891 probability);
2893 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2896 else if (node->right == 0 && node->left != 0)
2898 /* Deal with values to the right of this node,
2899 if they are possible. */
2900 if (!node_has_high_bound (node, index_type))
2902 probability = conditional_probability (
2903 default_prob/2,
2904 subtree_prob + default_prob);
2905 emit_cmp_and_jump_insns (index,
2906 convert_modes
2907 (mode, imode,
2908 expand_normal (node->high),
2909 unsignedp),
2910 GT, NULL_RTX, mode, unsignedp,
2911 default_label,
2912 probability);
2913 default_prob /= 2;
2916 /* Value belongs to this node or to the left-hand subtree. */
2918 probability = conditional_probability (
2919 prob,
2920 subtree_prob + default_prob);
2921 emit_cmp_and_jump_insns (index,
2922 convert_modes
2923 (mode, imode,
2924 expand_normal (node->low),
2925 unsignedp),
2926 GE, NULL_RTX, mode, unsignedp,
2927 label_rtx (node->code_label),
2928 probability);
2930 emit_case_nodes (index, node->left, default_label, default_prob, index_type);
2933 else
2935 /* Node has no children so we check low and high bounds to remove
2936 redundant tests. Only one of the bounds can exist,
2937 since otherwise this node is bounded--a case tested already. */
2938 int high_bound = node_has_high_bound (node, index_type);
2939 int low_bound = node_has_low_bound (node, index_type);
2941 if (!high_bound && low_bound)
2943 probability = conditional_probability (
2944 default_prob,
2945 subtree_prob + default_prob);
2946 emit_cmp_and_jump_insns (index,
2947 convert_modes
2948 (mode, imode,
2949 expand_normal (node->high),
2950 unsignedp),
2951 GT, NULL_RTX, mode, unsignedp,
2952 default_label,
2953 probability);
2956 else if (!low_bound && high_bound)
2958 probability = conditional_probability (
2959 default_prob,
2960 subtree_prob + default_prob);
2961 emit_cmp_and_jump_insns (index,
2962 convert_modes
2963 (mode, imode,
2964 expand_normal (node->low),
2965 unsignedp),
2966 LT, NULL_RTX, mode, unsignedp,
2967 default_label,
2968 probability);
2970 else if (!low_bound && !high_bound)
2972 /* Widen LOW and HIGH to the same width as INDEX. */
2973 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
2974 tree low = build1 (CONVERT_EXPR, type, node->low);
2975 tree high = build1 (CONVERT_EXPR, type, node->high);
2976 rtx low_rtx, new_index, new_bound;
2978 /* Instead of doing two branches, emit one unsigned branch for
2979 (index-low) > (high-low). */
2980 low_rtx = expand_expr (low, NULL_RTX, mode, EXPAND_NORMAL);
2981 new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
2982 NULL_RTX, unsignedp,
2983 OPTAB_WIDEN);
2984 new_bound = expand_expr (fold_build2 (MINUS_EXPR, type,
2985 high, low),
2986 NULL_RTX, mode, EXPAND_NORMAL);
2988 probability = conditional_probability (
2989 default_prob,
2990 subtree_prob + default_prob);
2991 emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
2992 mode, 1, default_label, probability);
2995 emit_jump (label_rtx (node->code_label));