Remove a trivial assert (missed in previous checkin)
[official-gcc.git] / gcc / stmt.c
blob1dc447a5c858cb3c5fba4c7735a01a48d08510c1
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 bool check_operand_nalternatives (tree, tree);
108 static bool check_unique_operand_names (tree, tree, tree);
109 static char *resolve_operand_name_1 (char *, tree, tree, tree);
110 static void expand_null_return_1 (void);
111 static void expand_value_return (rtx);
112 static void balance_case_nodes (case_node_ptr *, case_node_ptr);
113 static int node_has_low_bound (case_node_ptr, tree);
114 static int node_has_high_bound (case_node_ptr, tree);
115 static int node_is_bounded (case_node_ptr, tree);
116 static void emit_case_nodes (rtx, case_node_ptr, rtx, int, tree);
118 /* Return the rtx-label that corresponds to a LABEL_DECL,
119 creating it if necessary. */
122 label_rtx (tree label)
124 gcc_assert (TREE_CODE (label) == LABEL_DECL);
126 if (!DECL_RTL_SET_P (label))
128 rtx r = gen_label_rtx ();
129 SET_DECL_RTL (label, r);
130 if (FORCED_LABEL (label) || DECL_NONLOCAL (label))
131 LABEL_PRESERVE_P (r) = 1;
134 return DECL_RTL (label);
137 /* As above, but also put it on the forced-reference list of the
138 function that contains it. */
140 force_label_rtx (tree label)
142 rtx ref = label_rtx (label);
143 tree function = decl_function_context (label);
145 gcc_assert (function);
147 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, ref, forced_labels);
148 return ref;
151 /* Add an unconditional jump to LABEL as the next sequential instruction. */
153 void
154 emit_jump (rtx label)
156 do_pending_stack_adjust ();
157 emit_jump_insn (gen_jump (label));
158 emit_barrier ();
161 /* Emit code to jump to the address
162 specified by the pointer expression EXP. */
164 void
165 expand_computed_goto (tree exp)
167 rtx x = expand_normal (exp);
169 x = convert_memory_address (Pmode, x);
171 do_pending_stack_adjust ();
172 emit_indirect_jump (x);
175 /* Handle goto statements and the labels that they can go to. */
177 /* Specify the location in the RTL code of a label LABEL,
178 which is a LABEL_DECL tree node.
180 This is used for the kind of label that the user can jump to with a
181 goto statement, and for alternatives of a switch or case statement.
182 RTL labels generated for loops and conditionals don't go through here;
183 they are generated directly at the RTL level, by other functions below.
185 Note that this has nothing to do with defining label *names*.
186 Languages vary in how they do that and what that even means. */
188 void
189 expand_label (tree label)
191 rtx label_r = label_rtx (label);
193 do_pending_stack_adjust ();
194 emit_label (label_r);
195 if (DECL_NAME (label))
196 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
198 if (DECL_NONLOCAL (label))
200 expand_builtin_setjmp_receiver (NULL);
201 nonlocal_goto_handler_labels
202 = gen_rtx_EXPR_LIST (VOIDmode, label_r,
203 nonlocal_goto_handler_labels);
206 if (FORCED_LABEL (label))
207 forced_labels = gen_rtx_EXPR_LIST (VOIDmode, label_r, forced_labels);
209 if (DECL_NONLOCAL (label) || FORCED_LABEL (label))
210 maybe_set_first_label_num (label_r);
213 /* Generate RTL code for a `goto' statement with target label LABEL.
214 LABEL should be a LABEL_DECL tree node that was or will later be
215 defined with `expand_label'. */
217 void
218 expand_goto (tree label)
220 #ifdef ENABLE_CHECKING
221 /* Check for a nonlocal goto to a containing function. Should have
222 gotten translated to __builtin_nonlocal_goto. */
223 tree context = decl_function_context (label);
224 gcc_assert (!context || context == current_function_decl);
225 #endif
227 emit_jump (label_rtx (label));
230 /* Return the number of times character C occurs in string S. */
231 static int
232 n_occurrences (int c, const char *s)
234 int n = 0;
235 while (*s)
236 n += (*s++ == c);
237 return n;
240 /* Generate RTL for an asm statement (explicit assembler code).
241 STRING is a STRING_CST node containing the assembler code text,
242 or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the
243 insn is volatile; don't optimize it. */
245 static void
246 expand_asm_loc (tree string, int vol, location_t locus)
248 rtx body;
250 if (TREE_CODE (string) == ADDR_EXPR)
251 string = TREE_OPERAND (string, 0);
253 body = gen_rtx_ASM_INPUT_loc (VOIDmode,
254 ggc_strdup (TREE_STRING_POINTER (string)),
255 locus);
257 MEM_VOLATILE_P (body) = vol;
259 emit_insn (body);
262 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
263 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
264 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
265 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
266 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
267 constraint allows the use of a register operand. And, *IS_INOUT
268 will be true if the operand is read-write, i.e., if it is used as
269 an input as well as an output. If *CONSTRAINT_P is not in
270 canonical form, it will be made canonical. (Note that `+' will be
271 replaced with `=' as part of this process.)
273 Returns TRUE if all went well; FALSE if an error occurred. */
275 bool
276 parse_output_constraint (const char **constraint_p, int operand_num,
277 int ninputs, int noutputs, bool *allows_mem,
278 bool *allows_reg, bool *is_inout)
280 const char *constraint = *constraint_p;
281 const char *p;
283 /* Assume the constraint doesn't allow the use of either a register
284 or memory. */
285 *allows_mem = false;
286 *allows_reg = false;
288 /* Allow the `=' or `+' to not be at the beginning of the string,
289 since it wasn't explicitly documented that way, and there is a
290 large body of code that puts it last. Swap the character to
291 the front, so as not to uglify any place else. */
292 p = strchr (constraint, '=');
293 if (!p)
294 p = strchr (constraint, '+');
296 /* If the string doesn't contain an `=', issue an error
297 message. */
298 if (!p)
300 error ("output operand constraint lacks %<=%>");
301 return false;
304 /* If the constraint begins with `+', then the operand is both read
305 from and written to. */
306 *is_inout = (*p == '+');
308 /* Canonicalize the output constraint so that it begins with `='. */
309 if (p != constraint || *is_inout)
311 char *buf;
312 size_t c_len = strlen (constraint);
314 if (p != constraint)
315 warning (0, "output constraint %qc for operand %d "
316 "is not at the beginning",
317 *p, operand_num);
319 /* Make a copy of the constraint. */
320 buf = XALLOCAVEC (char, c_len + 1);
321 strcpy (buf, constraint);
322 /* Swap the first character and the `=' or `+'. */
323 buf[p - constraint] = buf[0];
324 /* Make sure the first character is an `='. (Until we do this,
325 it might be a `+'.) */
326 buf[0] = '=';
327 /* Replace the constraint with the canonicalized string. */
328 *constraint_p = ggc_alloc_string (buf, c_len);
329 constraint = *constraint_p;
332 /* Loop through the constraint string. */
333 for (p = constraint + 1; *p; p += CONSTRAINT_LEN (*p, p))
334 switch (*p)
336 case '+':
337 case '=':
338 error ("operand constraint contains incorrectly positioned "
339 "%<+%> or %<=%>");
340 return false;
342 case '%':
343 if (operand_num + 1 == ninputs + noutputs)
345 error ("%<%%%> constraint used with last operand");
346 return false;
348 break;
350 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
351 *allows_mem = true;
352 break;
354 case '?': case '!': case '*': case '&': case '#':
355 case 'E': case 'F': case 'G': case 'H':
356 case 's': case 'i': case 'n':
357 case 'I': case 'J': case 'K': case 'L': case 'M':
358 case 'N': case 'O': case 'P': case ',':
359 break;
361 case '0': case '1': case '2': case '3': case '4':
362 case '5': case '6': case '7': case '8': case '9':
363 case '[':
364 error ("matching constraint not valid in output operand");
365 return false;
367 case '<': case '>':
368 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
369 excepting those that expand_call created. So match memory
370 and hope. */
371 *allows_mem = true;
372 break;
374 case 'g': case 'X':
375 *allows_reg = true;
376 *allows_mem = true;
377 break;
379 case 'p': case 'r':
380 *allows_reg = true;
381 break;
383 default:
384 if (!ISALPHA (*p))
385 break;
386 if (REG_CLASS_FROM_CONSTRAINT (*p, p) != NO_REGS)
387 *allows_reg = true;
388 #ifdef EXTRA_CONSTRAINT_STR
389 else if (EXTRA_ADDRESS_CONSTRAINT (*p, p))
390 *allows_reg = true;
391 else if (EXTRA_MEMORY_CONSTRAINT (*p, p))
392 *allows_mem = true;
393 else
395 /* Otherwise we can't assume anything about the nature of
396 the constraint except that it isn't purely registers.
397 Treat it like "g" and hope for the best. */
398 *allows_reg = true;
399 *allows_mem = true;
401 #endif
402 break;
405 return true;
408 /* Similar, but for input constraints. */
410 bool
411 parse_input_constraint (const char **constraint_p, int input_num,
412 int ninputs, int noutputs, int ninout,
413 const char * const * constraints,
414 bool *allows_mem, bool *allows_reg)
416 const char *constraint = *constraint_p;
417 const char *orig_constraint = constraint;
418 size_t c_len = strlen (constraint);
419 size_t j;
420 bool saw_match = false;
422 /* Assume the constraint doesn't allow the use of either
423 a register or memory. */
424 *allows_mem = false;
425 *allows_reg = false;
427 /* Make sure constraint has neither `=', `+', nor '&'. */
429 for (j = 0; j < c_len; j += CONSTRAINT_LEN (constraint[j], constraint+j))
430 switch (constraint[j])
432 case '+': case '=': case '&':
433 if (constraint == orig_constraint)
435 error ("input operand constraint contains %qc", constraint[j]);
436 return false;
438 break;
440 case '%':
441 if (constraint == orig_constraint
442 && input_num + 1 == ninputs - ninout)
444 error ("%<%%%> constraint used with last operand");
445 return false;
447 break;
449 case 'V': case TARGET_MEM_CONSTRAINT: case 'o':
450 *allows_mem = true;
451 break;
453 case '<': case '>':
454 case '?': case '!': case '*': case '#':
455 case 'E': case 'F': case 'G': case 'H':
456 case 's': case 'i': case 'n':
457 case 'I': case 'J': case 'K': case 'L': case 'M':
458 case 'N': case 'O': case 'P': case ',':
459 break;
461 /* Whether or not a numeric constraint allows a register is
462 decided by the matching constraint, and so there is no need
463 to do anything special with them. We must handle them in
464 the default case, so that we don't unnecessarily force
465 operands to memory. */
466 case '0': case '1': case '2': case '3': case '4':
467 case '5': case '6': case '7': case '8': case '9':
469 char *end;
470 unsigned long match;
472 saw_match = true;
474 match = strtoul (constraint + j, &end, 10);
475 if (match >= (unsigned long) noutputs)
477 error ("matching constraint references invalid operand number");
478 return false;
481 /* Try and find the real constraint for this dup. Only do this
482 if the matching constraint is the only alternative. */
483 if (*end == '\0'
484 && (j == 0 || (j == 1 && constraint[0] == '%')))
486 constraint = constraints[match];
487 *constraint_p = constraint;
488 c_len = strlen (constraint);
489 j = 0;
490 /* ??? At the end of the loop, we will skip the first part of
491 the matched constraint. This assumes not only that the
492 other constraint is an output constraint, but also that
493 the '=' or '+' come first. */
494 break;
496 else
497 j = end - constraint;
498 /* Anticipate increment at end of loop. */
499 j--;
501 /* Fall through. */
503 case 'p': case 'r':
504 *allows_reg = true;
505 break;
507 case 'g': case 'X':
508 *allows_reg = true;
509 *allows_mem = true;
510 break;
512 default:
513 if (! ISALPHA (constraint[j]))
515 error ("invalid punctuation %qc in constraint", constraint[j]);
516 return false;
518 if (REG_CLASS_FROM_CONSTRAINT (constraint[j], constraint + j)
519 != NO_REGS)
520 *allows_reg = true;
521 #ifdef EXTRA_CONSTRAINT_STR
522 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j], constraint + j))
523 *allows_reg = true;
524 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j], constraint + j))
525 *allows_mem = true;
526 else
528 /* Otherwise we can't assume anything about the nature of
529 the constraint except that it isn't purely registers.
530 Treat it like "g" and hope for the best. */
531 *allows_reg = true;
532 *allows_mem = true;
534 #endif
535 break;
538 if (saw_match && !*allows_reg)
539 warning (0, "matching constraint does not allow a register");
541 return true;
544 /* Return DECL iff there's an overlap between *REGS and DECL, where DECL
545 can be an asm-declared register. Called via walk_tree. */
547 static tree
548 decl_overlaps_hard_reg_set_p (tree *declp, int *walk_subtrees ATTRIBUTE_UNUSED,
549 void *data)
551 tree decl = *declp;
552 const HARD_REG_SET *const regs = (const HARD_REG_SET *) data;
554 if (TREE_CODE (decl) == VAR_DECL)
556 if (DECL_HARD_REGISTER (decl)
557 && REG_P (DECL_RTL (decl))
558 && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
560 rtx reg = DECL_RTL (decl);
562 if (overlaps_hard_reg_set_p (*regs, GET_MODE (reg), REGNO (reg)))
563 return decl;
565 walk_subtrees = 0;
567 else if (TYPE_P (decl) || TREE_CODE (decl) == PARM_DECL)
568 walk_subtrees = 0;
569 return NULL_TREE;
572 /* If there is an overlap between *REGS and DECL, return the first overlap
573 found. */
574 tree
575 tree_overlaps_hard_reg_set (tree decl, HARD_REG_SET *regs)
577 return walk_tree (&decl, decl_overlaps_hard_reg_set_p, regs, NULL);
580 /* Check for overlap between registers marked in CLOBBERED_REGS and
581 anything inappropriate in T. Emit error and return the register
582 variable definition for error, NULL_TREE for ok. */
584 static bool
585 tree_conflicts_with_clobbers_p (tree t, HARD_REG_SET *clobbered_regs)
587 /* Conflicts between asm-declared register variables and the clobber
588 list are not allowed. */
589 tree overlap = tree_overlaps_hard_reg_set (t, clobbered_regs);
591 if (overlap)
593 error ("asm-specifier for variable %qE conflicts with asm clobber list",
594 DECL_NAME (overlap));
596 /* Reset registerness to stop multiple errors emitted for a single
597 variable. */
598 DECL_REGISTER (overlap) = 0;
599 return true;
602 return false;
605 /* Generate RTL for an asm statement with arguments.
606 STRING is the instruction template.
607 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
608 Each output or input has an expression in the TREE_VALUE and
609 a tree list in TREE_PURPOSE which in turn contains a constraint
610 name in TREE_VALUE (or NULL_TREE) and a constraint string
611 in TREE_PURPOSE.
612 CLOBBERS is a list of STRING_CST nodes each naming a hard register
613 that is clobbered by this insn.
615 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
616 Some elements of OUTPUTS may be replaced with trees representing temporary
617 values. The caller should copy those temporary values to the originally
618 specified lvalues.
620 VOL nonzero means the insn is volatile; don't optimize it. */
622 static void
623 expand_asm_operands (tree string, tree outputs, tree inputs,
624 tree clobbers, tree labels, int vol, location_t locus)
626 rtvec argvec, constraintvec, labelvec;
627 rtx body;
628 int ninputs = list_length (inputs);
629 int noutputs = list_length (outputs);
630 int nlabels = list_length (labels);
631 int ninout;
632 int nclobbers;
633 HARD_REG_SET clobbered_regs;
634 int clobber_conflict_found = 0;
635 tree tail;
636 tree t;
637 int i;
638 /* Vector of RTX's of evaluated output operands. */
639 rtx *output_rtx = XALLOCAVEC (rtx, noutputs);
640 int *inout_opnum = XALLOCAVEC (int, noutputs);
641 rtx *real_output_rtx = XALLOCAVEC (rtx, noutputs);
642 enum machine_mode *inout_mode = XALLOCAVEC (enum machine_mode, noutputs);
643 const char **constraints = XALLOCAVEC (const char *, noutputs + ninputs);
644 int old_generating_concat_p = generating_concat_p;
646 /* An ASM with no outputs needs to be treated as volatile, for now. */
647 if (noutputs == 0)
648 vol = 1;
650 if (! check_operand_nalternatives (outputs, inputs))
651 return;
653 string = resolve_asm_operand_names (string, outputs, inputs, labels);
655 /* Collect constraints. */
656 i = 0;
657 for (t = outputs; t ; t = TREE_CHAIN (t), i++)
658 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
659 for (t = inputs; t ; t = TREE_CHAIN (t), i++)
660 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
662 /* Sometimes we wish to automatically clobber registers across an asm.
663 Case in point is when the i386 backend moved from cc0 to a hard reg --
664 maintaining source-level compatibility means automatically clobbering
665 the flags register. */
666 clobbers = targetm.md_asm_clobbers (outputs, inputs, clobbers);
668 /* Count the number of meaningful clobbered registers, ignoring what
669 we would ignore later. */
670 nclobbers = 0;
671 CLEAR_HARD_REG_SET (clobbered_regs);
672 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
674 const char *regname;
675 int nregs;
677 if (TREE_VALUE (tail) == error_mark_node)
678 return;
679 regname = TREE_STRING_POINTER (TREE_VALUE (tail));
681 i = decode_reg_name_and_count (regname, &nregs);
682 if (i == -4)
683 ++nclobbers;
684 else if (i == -2)
685 error ("unknown register name %qs in %<asm%>", regname);
687 /* Mark clobbered registers. */
688 if (i >= 0)
690 int reg;
692 for (reg = i; reg < i + nregs; reg++)
694 ++nclobbers;
696 /* Clobbering the PIC register is an error. */
697 if (reg == (int) PIC_OFFSET_TABLE_REGNUM)
699 error ("PIC register clobbered by %qs in %<asm%>", regname);
700 return;
703 SET_HARD_REG_BIT (clobbered_regs, reg);
708 /* First pass over inputs and outputs checks validity and sets
709 mark_addressable if needed. */
711 ninout = 0;
712 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
714 tree val = TREE_VALUE (tail);
715 tree type = TREE_TYPE (val);
716 const char *constraint;
717 bool is_inout;
718 bool allows_reg;
719 bool allows_mem;
721 /* If there's an erroneous arg, emit no insn. */
722 if (type == error_mark_node)
723 return;
725 /* Try to parse the output constraint. If that fails, there's
726 no point in going further. */
727 constraint = constraints[i];
728 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
729 &allows_mem, &allows_reg, &is_inout))
730 return;
732 if (! allows_reg
733 && (allows_mem
734 || is_inout
735 || (DECL_P (val)
736 && REG_P (DECL_RTL (val))
737 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
738 mark_addressable (val);
740 if (is_inout)
741 ninout++;
744 ninputs += ninout;
745 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
747 error ("more than %d operands in %<asm%>", MAX_RECOG_OPERANDS);
748 return;
751 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
753 bool allows_reg, allows_mem;
754 const char *constraint;
756 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
757 would get VOIDmode and that could cause a crash in reload. */
758 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
759 return;
761 constraint = constraints[i + noutputs];
762 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
763 constraints, &allows_mem, &allows_reg))
764 return;
766 if (! allows_reg && allows_mem)
767 mark_addressable (TREE_VALUE (tail));
770 /* Second pass evaluates arguments. */
772 /* Make sure stack is consistent for asm goto. */
773 if (nlabels > 0)
774 do_pending_stack_adjust ();
776 ninout = 0;
777 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
779 tree val = TREE_VALUE (tail);
780 tree type = TREE_TYPE (val);
781 bool is_inout;
782 bool allows_reg;
783 bool allows_mem;
784 rtx op;
785 bool ok;
787 ok = parse_output_constraint (&constraints[i], i, ninputs,
788 noutputs, &allows_mem, &allows_reg,
789 &is_inout);
790 gcc_assert (ok);
792 /* If an output operand is not a decl or indirect ref and our constraint
793 allows a register, make a temporary to act as an intermediate.
794 Make the asm insn write into that, then our caller will copy it to
795 the real output operand. Likewise for promoted variables. */
797 generating_concat_p = 0;
799 real_output_rtx[i] = NULL_RTX;
800 if ((TREE_CODE (val) == INDIRECT_REF
801 && allows_mem)
802 || (DECL_P (val)
803 && (allows_mem || REG_P (DECL_RTL (val)))
804 && ! (REG_P (DECL_RTL (val))
805 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
806 || ! allows_reg
807 || is_inout)
809 op = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
810 if (MEM_P (op))
811 op = validize_mem (op);
813 if (! allows_reg && !MEM_P (op))
814 error ("output number %d not directly addressable", i);
815 if ((! allows_mem && MEM_P (op))
816 || GET_CODE (op) == CONCAT)
818 real_output_rtx[i] = op;
819 op = gen_reg_rtx (GET_MODE (op));
820 if (is_inout)
821 emit_move_insn (op, real_output_rtx[i]);
824 else
826 op = assign_temp (type, 0, 1);
827 op = validize_mem (op);
828 if (!MEM_P (op) && TREE_CODE (TREE_VALUE (tail)) == SSA_NAME)
829 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (TREE_VALUE (tail)), op);
830 TREE_VALUE (tail) = make_tree (type, op);
832 output_rtx[i] = op;
834 generating_concat_p = old_generating_concat_p;
836 if (is_inout)
838 inout_mode[ninout] = TYPE_MODE (type);
839 inout_opnum[ninout++] = i;
842 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
843 clobber_conflict_found = 1;
846 /* Make vectors for the expression-rtx, constraint strings,
847 and named operands. */
849 argvec = rtvec_alloc (ninputs);
850 constraintvec = rtvec_alloc (ninputs);
851 labelvec = rtvec_alloc (nlabels);
853 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
854 : GET_MODE (output_rtx[0])),
855 ggc_strdup (TREE_STRING_POINTER (string)),
856 empty_string, 0, argvec, constraintvec,
857 labelvec, locus);
859 MEM_VOLATILE_P (body) = vol;
861 /* Eval the inputs and put them into ARGVEC.
862 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
864 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
866 bool allows_reg, allows_mem;
867 const char *constraint;
868 tree val, type;
869 rtx op;
870 bool ok;
872 constraint = constraints[i + noutputs];
873 ok = parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
874 constraints, &allows_mem, &allows_reg);
875 gcc_assert (ok);
877 generating_concat_p = 0;
879 val = TREE_VALUE (tail);
880 type = TREE_TYPE (val);
881 /* EXPAND_INITIALIZER will not generate code for valid initializer
882 constants, but will still generate code for other types of operand.
883 This is the behavior we want for constant constraints. */
884 op = expand_expr (val, NULL_RTX, VOIDmode,
885 allows_reg ? EXPAND_NORMAL
886 : allows_mem ? EXPAND_MEMORY
887 : EXPAND_INITIALIZER);
889 /* Never pass a CONCAT to an ASM. */
890 if (GET_CODE (op) == CONCAT)
891 op = force_reg (GET_MODE (op), op);
892 else if (MEM_P (op))
893 op = validize_mem (op);
895 if (asm_operand_ok (op, constraint, NULL) <= 0)
897 if (allows_reg && TYPE_MODE (type) != BLKmode)
898 op = force_reg (TYPE_MODE (type), op);
899 else if (!allows_mem)
900 warning (0, "asm operand %d probably doesn%'t match constraints",
901 i + noutputs);
902 else if (MEM_P (op))
904 /* We won't recognize either volatile memory or memory
905 with a queued address as available a memory_operand
906 at this point. Ignore it: clearly this *is* a memory. */
908 else
909 gcc_unreachable ();
912 generating_concat_p = old_generating_concat_p;
913 ASM_OPERANDS_INPUT (body, i) = op;
915 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
916 = gen_rtx_ASM_INPUT (TYPE_MODE (type),
917 ggc_strdup (constraints[i + noutputs]));
919 if (tree_conflicts_with_clobbers_p (val, &clobbered_regs))
920 clobber_conflict_found = 1;
923 /* Protect all the operands from the queue now that they have all been
924 evaluated. */
926 generating_concat_p = 0;
928 /* For in-out operands, copy output rtx to input rtx. */
929 for (i = 0; i < ninout; i++)
931 int j = inout_opnum[i];
932 char buffer[16];
934 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
935 = output_rtx[j];
937 sprintf (buffer, "%d", j);
938 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
939 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_strdup (buffer));
942 /* Copy labels to the vector. */
943 for (i = 0, tail = labels; i < nlabels; ++i, tail = TREE_CHAIN (tail))
944 ASM_OPERANDS_LABEL (body, i)
945 = gen_rtx_LABEL_REF (Pmode, label_rtx (TREE_VALUE (tail)));
947 generating_concat_p = old_generating_concat_p;
949 /* Now, for each output, construct an rtx
950 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
951 ARGVEC CONSTRAINTS OPNAMES))
952 If there is more than one, put them inside a PARALLEL. */
954 if (nlabels > 0 && nclobbers == 0)
956 gcc_assert (noutputs == 0);
957 emit_jump_insn (body);
959 else if (noutputs == 0 && nclobbers == 0)
961 /* No output operands: put in a raw ASM_OPERANDS rtx. */
962 emit_insn (body);
964 else if (noutputs == 1 && nclobbers == 0)
966 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = ggc_strdup (constraints[0]);
967 emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
969 else
971 rtx obody = body;
972 int num = noutputs;
974 if (num == 0)
975 num = 1;
977 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
979 /* For each output operand, store a SET. */
980 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
982 XVECEXP (body, 0, i)
983 = gen_rtx_SET (VOIDmode,
984 output_rtx[i],
985 gen_rtx_ASM_OPERANDS
986 (GET_MODE (output_rtx[i]),
987 ggc_strdup (TREE_STRING_POINTER (string)),
988 ggc_strdup (constraints[i]),
989 i, argvec, constraintvec, labelvec, locus));
991 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
994 /* If there are no outputs (but there are some clobbers)
995 store the bare ASM_OPERANDS into the PARALLEL. */
997 if (i == 0)
998 XVECEXP (body, 0, i++) = obody;
1000 /* Store (clobber REG) for each clobbered register specified. */
1002 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1004 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1005 int reg, nregs;
1006 int j = decode_reg_name_and_count (regname, &nregs);
1007 rtx clobbered_reg;
1009 if (j < 0)
1011 if (j == -3) /* `cc', which is not a register */
1012 continue;
1014 if (j == -4) /* `memory', don't cache memory across asm */
1016 XVECEXP (body, 0, i++)
1017 = gen_rtx_CLOBBER (VOIDmode,
1018 gen_rtx_MEM
1019 (BLKmode,
1020 gen_rtx_SCRATCH (VOIDmode)));
1021 continue;
1024 /* Ignore unknown register, error already signaled. */
1025 continue;
1028 for (reg = j; reg < j + nregs; reg++)
1030 /* Use QImode since that's guaranteed to clobber just
1031 * one reg. */
1032 clobbered_reg = gen_rtx_REG (QImode, reg);
1034 /* Do sanity check for overlap between clobbers and
1035 respectively input and outputs that hasn't been
1036 handled. Such overlap should have been detected and
1037 reported above. */
1038 if (!clobber_conflict_found)
1040 int opno;
1042 /* We test the old body (obody) contents to avoid
1043 tripping over the under-construction body. */
1044 for (opno = 0; opno < noutputs; opno++)
1045 if (reg_overlap_mentioned_p (clobbered_reg,
1046 output_rtx[opno]))
1047 internal_error
1048 ("asm clobber conflict with output operand");
1050 for (opno = 0; opno < ninputs - ninout; opno++)
1051 if (reg_overlap_mentioned_p (clobbered_reg,
1052 ASM_OPERANDS_INPUT (obody,
1053 opno)))
1054 internal_error
1055 ("asm clobber conflict with input operand");
1058 XVECEXP (body, 0, i++)
1059 = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1063 if (nlabels > 0)
1064 emit_jump_insn (body);
1065 else
1066 emit_insn (body);
1069 /* For any outputs that needed reloading into registers, spill them
1070 back to where they belong. */
1071 for (i = 0; i < noutputs; ++i)
1072 if (real_output_rtx[i])
1073 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1075 crtl->has_asm_statement = 1;
1076 free_temp_slots ();
1079 void
1080 expand_asm_stmt (gimple stmt)
1082 int noutputs;
1083 tree outputs, tail, t;
1084 tree *o;
1085 size_t i, n;
1086 const char *s;
1087 tree str, out, in, cl, labels;
1088 location_t locus = gimple_location (stmt);
1090 /* Meh... convert the gimple asm operands into real tree lists.
1091 Eventually we should make all routines work on the vectors instead
1092 of relying on TREE_CHAIN. */
1093 out = NULL_TREE;
1094 n = gimple_asm_noutputs (stmt);
1095 if (n > 0)
1097 t = out = gimple_asm_output_op (stmt, 0);
1098 for (i = 1; i < n; i++)
1099 t = TREE_CHAIN (t) = gimple_asm_output_op (stmt, i);
1102 in = NULL_TREE;
1103 n = gimple_asm_ninputs (stmt);
1104 if (n > 0)
1106 t = in = gimple_asm_input_op (stmt, 0);
1107 for (i = 1; i < n; i++)
1108 t = TREE_CHAIN (t) = gimple_asm_input_op (stmt, i);
1111 cl = NULL_TREE;
1112 n = gimple_asm_nclobbers (stmt);
1113 if (n > 0)
1115 t = cl = gimple_asm_clobber_op (stmt, 0);
1116 for (i = 1; i < n; i++)
1117 t = TREE_CHAIN (t) = gimple_asm_clobber_op (stmt, i);
1120 labels = NULL_TREE;
1121 n = gimple_asm_nlabels (stmt);
1122 if (n > 0)
1124 t = labels = gimple_asm_label_op (stmt, 0);
1125 for (i = 1; i < n; i++)
1126 t = TREE_CHAIN (t) = gimple_asm_label_op (stmt, i);
1129 s = gimple_asm_string (stmt);
1130 str = build_string (strlen (s), s);
1132 if (gimple_asm_input_p (stmt))
1134 expand_asm_loc (str, gimple_asm_volatile_p (stmt), locus);
1135 return;
1138 outputs = out;
1139 noutputs = gimple_asm_noutputs (stmt);
1140 /* o[I] is the place that output number I should be written. */
1141 o = (tree *) alloca (noutputs * sizeof (tree));
1143 /* Record the contents of OUTPUTS before it is modified. */
1144 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1145 o[i] = TREE_VALUE (tail);
1147 /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
1148 OUTPUTS some trees for where the values were actually stored. */
1149 expand_asm_operands (str, outputs, in, cl, labels,
1150 gimple_asm_volatile_p (stmt), locus);
1152 /* Copy all the intermediate outputs into the specified outputs. */
1153 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1155 if (o[i] != TREE_VALUE (tail))
1157 expand_assignment (o[i], TREE_VALUE (tail), false);
1158 free_temp_slots ();
1160 /* Restore the original value so that it's correct the next
1161 time we expand this function. */
1162 TREE_VALUE (tail) = o[i];
1167 /* A subroutine of expand_asm_operands. Check that all operands have
1168 the same number of alternatives. Return true if so. */
1170 static bool
1171 check_operand_nalternatives (tree outputs, tree inputs)
1173 if (outputs || inputs)
1175 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1176 int nalternatives
1177 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1178 tree next = inputs;
1180 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1182 error ("too many alternatives in %<asm%>");
1183 return false;
1186 tmp = outputs;
1187 while (tmp)
1189 const char *constraint
1190 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1192 if (n_occurrences (',', constraint) != nalternatives)
1194 error ("operand constraints for %<asm%> differ "
1195 "in number of alternatives");
1196 return false;
1199 if (TREE_CHAIN (tmp))
1200 tmp = TREE_CHAIN (tmp);
1201 else
1202 tmp = next, next = 0;
1206 return true;
1209 /* A subroutine of expand_asm_operands. Check that all operand names
1210 are unique. Return true if so. We rely on the fact that these names
1211 are identifiers, and so have been canonicalized by get_identifier,
1212 so all we need are pointer comparisons. */
1214 static bool
1215 check_unique_operand_names (tree outputs, tree inputs, tree labels)
1217 tree i, j, i_name = NULL_TREE;
1219 for (i = outputs; i ; i = TREE_CHAIN (i))
1221 i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1222 if (! i_name)
1223 continue;
1225 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1226 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1227 goto failure;
1230 for (i = inputs; i ; i = TREE_CHAIN (i))
1232 i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1233 if (! i_name)
1234 continue;
1236 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1237 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1238 goto failure;
1239 for (j = outputs; j ; j = TREE_CHAIN (j))
1240 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1241 goto failure;
1244 for (i = labels; i ; i = TREE_CHAIN (i))
1246 i_name = TREE_PURPOSE (i);
1247 if (! i_name)
1248 continue;
1250 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1251 if (simple_cst_equal (i_name, TREE_PURPOSE (j)))
1252 goto failure;
1253 for (j = inputs; j ; j = TREE_CHAIN (j))
1254 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1255 goto failure;
1258 return true;
1260 failure:
1261 error ("duplicate asm operand name %qs", TREE_STRING_POINTER (i_name));
1262 return false;
1265 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1266 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1267 STRING and in the constraints to those numbers. */
1269 tree
1270 resolve_asm_operand_names (tree string, tree outputs, tree inputs, tree labels)
1272 char *buffer;
1273 char *p;
1274 const char *c;
1275 tree t;
1277 check_unique_operand_names (outputs, inputs, labels);
1279 /* Substitute [<name>] in input constraint strings. There should be no
1280 named operands in output constraints. */
1281 for (t = inputs; t ; t = TREE_CHAIN (t))
1283 c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1284 if (strchr (c, '[') != NULL)
1286 p = buffer = xstrdup (c);
1287 while ((p = strchr (p, '[')) != NULL)
1288 p = resolve_operand_name_1 (p, outputs, inputs, NULL);
1289 TREE_VALUE (TREE_PURPOSE (t))
1290 = build_string (strlen (buffer), buffer);
1291 free (buffer);
1295 /* Now check for any needed substitutions in the template. */
1296 c = TREE_STRING_POINTER (string);
1297 while ((c = strchr (c, '%')) != NULL)
1299 if (c[1] == '[')
1300 break;
1301 else if (ISALPHA (c[1]) && c[2] == '[')
1302 break;
1303 else
1305 c += 1 + (c[1] == '%');
1306 continue;
1310 if (c)
1312 /* OK, we need to make a copy so we can perform the substitutions.
1313 Assume that we will not need extra space--we get to remove '['
1314 and ']', which means we cannot have a problem until we have more
1315 than 999 operands. */
1316 buffer = xstrdup (TREE_STRING_POINTER (string));
1317 p = buffer + (c - TREE_STRING_POINTER (string));
1319 while ((p = strchr (p, '%')) != NULL)
1321 if (p[1] == '[')
1322 p += 1;
1323 else if (ISALPHA (p[1]) && p[2] == '[')
1324 p += 2;
1325 else
1327 p += 1 + (p[1] == '%');
1328 continue;
1331 p = resolve_operand_name_1 (p, outputs, inputs, labels);
1334 string = build_string (strlen (buffer), buffer);
1335 free (buffer);
1338 return string;
1341 /* A subroutine of resolve_operand_names. P points to the '[' for a
1342 potential named operand of the form [<name>]. In place, replace
1343 the name and brackets with a number. Return a pointer to the
1344 balance of the string after substitution. */
1346 static char *
1347 resolve_operand_name_1 (char *p, tree outputs, tree inputs, tree labels)
1349 char *q;
1350 int op;
1351 tree t;
1353 /* Collect the operand name. */
1354 q = strchr (++p, ']');
1355 if (!q)
1357 error ("missing close brace for named operand");
1358 return strchr (p, '\0');
1360 *q = '\0';
1362 /* Resolve the name to a number. */
1363 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
1365 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1366 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1367 goto found;
1369 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
1371 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1372 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1373 goto found;
1375 for (t = labels; t ; t = TREE_CHAIN (t), op++)
1377 tree name = TREE_PURPOSE (t);
1378 if (name && strcmp (TREE_STRING_POINTER (name), p) == 0)
1379 goto found;
1382 error ("undefined named operand %qs", identifier_to_locale (p));
1383 op = 0;
1385 found:
1386 /* Replace the name with the number. Unfortunately, not all libraries
1387 get the return value of sprintf correct, so search for the end of the
1388 generated string by hand. */
1389 sprintf (--p, "%d", op);
1390 p = strchr (p, '\0');
1392 /* Verify the no extra buffer space assumption. */
1393 gcc_assert (p <= q);
1395 /* Shift the rest of the buffer down to fill the gap. */
1396 memmove (p, q + 1, strlen (q + 1) + 1);
1398 return p;
1401 /* Generate RTL to return from the current function, with no value.
1402 (That is, we do not do anything about returning any value.) */
1404 void
1405 expand_null_return (void)
1407 /* If this function was declared to return a value, but we
1408 didn't, clobber the return registers so that they are not
1409 propagated live to the rest of the function. */
1410 clobber_return_register ();
1412 expand_null_return_1 ();
1415 /* Generate RTL to return directly from the current function.
1416 (That is, we bypass any return value.) */
1418 void
1419 expand_naked_return (void)
1421 rtx end_label;
1423 clear_pending_stack_adjust ();
1424 do_pending_stack_adjust ();
1426 end_label = naked_return_label;
1427 if (end_label == 0)
1428 end_label = naked_return_label = gen_label_rtx ();
1430 emit_jump (end_label);
1433 /* Generate RTL to return from the current function, with value VAL. */
1435 static void
1436 expand_value_return (rtx val)
1438 /* Copy the value to the return location unless it's already there. */
1440 tree decl = DECL_RESULT (current_function_decl);
1441 rtx return_reg = DECL_RTL (decl);
1442 if (return_reg != val)
1444 tree funtype = TREE_TYPE (current_function_decl);
1445 tree type = TREE_TYPE (decl);
1446 int unsignedp = TYPE_UNSIGNED (type);
1447 enum machine_mode old_mode = DECL_MODE (decl);
1448 enum machine_mode mode;
1449 if (DECL_BY_REFERENCE (decl))
1450 mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 2);
1451 else
1452 mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 1);
1454 if (mode != old_mode)
1455 val = convert_modes (mode, old_mode, val, unsignedp);
1457 if (GET_CODE (return_reg) == PARALLEL)
1458 emit_group_load (return_reg, val, type, int_size_in_bytes (type));
1459 else
1460 emit_move_insn (return_reg, val);
1463 expand_null_return_1 ();
1466 /* Output a return with no value. */
1468 static void
1469 expand_null_return_1 (void)
1471 clear_pending_stack_adjust ();
1472 do_pending_stack_adjust ();
1473 emit_jump (return_label);
1476 /* Generate RTL to evaluate the expression RETVAL and return it
1477 from the current function. */
1479 void
1480 expand_return (tree retval)
1482 rtx result_rtl;
1483 rtx val = 0;
1484 tree retval_rhs;
1486 /* If function wants no value, give it none. */
1487 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
1489 expand_normal (retval);
1490 expand_null_return ();
1491 return;
1494 if (retval == error_mark_node)
1496 /* Treat this like a return of no value from a function that
1497 returns a value. */
1498 expand_null_return ();
1499 return;
1501 else if ((TREE_CODE (retval) == MODIFY_EXPR
1502 || TREE_CODE (retval) == INIT_EXPR)
1503 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
1504 retval_rhs = TREE_OPERAND (retval, 1);
1505 else
1506 retval_rhs = retval;
1508 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
1510 /* If we are returning the RESULT_DECL, then the value has already
1511 been stored into it, so we don't have to do anything special. */
1512 if (TREE_CODE (retval_rhs) == RESULT_DECL)
1513 expand_value_return (result_rtl);
1515 /* If the result is an aggregate that is being returned in one (or more)
1516 registers, load the registers here. */
1518 else if (retval_rhs != 0
1519 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
1520 && REG_P (result_rtl))
1522 val = copy_blkmode_to_reg (GET_MODE (result_rtl), retval_rhs);
1523 if (val)
1525 /* Use the mode of the result value on the return register. */
1526 PUT_MODE (result_rtl, GET_MODE (val));
1527 expand_value_return (val);
1529 else
1530 expand_null_return ();
1532 else if (retval_rhs != 0
1533 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
1534 && (REG_P (result_rtl)
1535 || (GET_CODE (result_rtl) == PARALLEL)))
1537 /* Calculate the return value into a temporary (usually a pseudo
1538 reg). */
1539 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
1540 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
1542 val = assign_temp (nt, 0, 1);
1543 val = expand_expr (retval_rhs, val, GET_MODE (val), EXPAND_NORMAL);
1544 val = force_not_mem (val);
1545 /* Return the calculated value. */
1546 expand_value_return (val);
1548 else
1550 /* No hard reg used; calculate value into hard return reg. */
1551 expand_expr (retval, const0_rtx, VOIDmode, EXPAND_NORMAL);
1552 expand_value_return (result_rtl);
1557 /* Emit code to save the current value of stack. */
1559 expand_stack_save (void)
1561 rtx ret = NULL_RTX;
1563 do_pending_stack_adjust ();
1564 emit_stack_save (SAVE_BLOCK, &ret);
1565 return ret;
1568 /* Emit code to restore the current value of stack. */
1569 void
1570 expand_stack_restore (tree var)
1572 rtx prev, sa = expand_normal (var);
1574 sa = convert_memory_address (Pmode, sa);
1576 prev = get_last_insn ();
1577 emit_stack_restore (SAVE_BLOCK, sa);
1578 fixup_args_size_notes (prev, get_last_insn (), 0);
1581 /* Generate code to jump to LABEL if OP0 and OP1 are equal in mode MODE. PROB
1582 is the probability of jumping to LABEL. */
1583 static void
1584 do_jump_if_equal (enum machine_mode mode, rtx op0, rtx op1, rtx label,
1585 int unsignedp, int prob)
1587 gcc_assert (prob <= REG_BR_PROB_BASE);
1588 do_compare_rtx_and_jump (op0, op1, EQ, unsignedp, mode,
1589 NULL_RTX, NULL_RTX, label, prob);
1592 /* Do the insertion of a case label into case_list. The labels are
1593 fed to us in descending order from the sorted vector of case labels used
1594 in the tree part of the middle end. So the list we construct is
1595 sorted in ascending order.
1597 LABEL is the case label to be inserted. LOW and HIGH are the bounds
1598 against which the index is compared to jump to LABEL and PROB is the
1599 estimated probability LABEL is reached from the switch statement. */
1601 static struct case_node *
1602 add_case_node (struct case_node *head, tree low, tree high,
1603 tree label, int prob, alloc_pool case_node_pool)
1605 struct case_node *r;
1607 gcc_checking_assert (low);
1608 gcc_checking_assert (high && (TREE_TYPE (low) == TREE_TYPE (high)));
1610 /* Add this label to the chain. */
1611 r = (struct case_node *) pool_alloc (case_node_pool);
1612 r->low = low;
1613 r->high = high;
1614 r->code_label = label;
1615 r->parent = r->left = NULL;
1616 r->prob = prob;
1617 r->subtree_prob = prob;
1618 r->right = head;
1619 return r;
1622 /* Dump ROOT, a list or tree of case nodes, to file. */
1624 static void
1625 dump_case_nodes (FILE *f, struct case_node *root,
1626 int indent_step, int indent_level)
1628 HOST_WIDE_INT low, high;
1630 if (root == 0)
1631 return;
1632 indent_level++;
1634 dump_case_nodes (f, root->left, indent_step, indent_level);
1636 low = tree_low_cst (root->low, 0);
1637 high = tree_low_cst (root->high, 0);
1639 fputs (";; ", f);
1640 if (high == low)
1641 fprintf(f, "%*s" HOST_WIDE_INT_PRINT_DEC,
1642 indent_step * indent_level, "", low);
1643 else
1644 fprintf(f, "%*s" HOST_WIDE_INT_PRINT_DEC " ... " HOST_WIDE_INT_PRINT_DEC,
1645 indent_step * indent_level, "", low, high);
1646 fputs ("\n", f);
1648 dump_case_nodes (f, root->right, indent_step, indent_level);
1651 #ifndef HAVE_casesi
1652 #define HAVE_casesi 0
1653 #endif
1655 #ifndef HAVE_tablejump
1656 #define HAVE_tablejump 0
1657 #endif
1659 /* Return the smallest number of different values for which it is best to use a
1660 jump-table instead of a tree of conditional branches. */
1662 static unsigned int
1663 case_values_threshold (void)
1665 unsigned int threshold = PARAM_VALUE (PARAM_CASE_VALUES_THRESHOLD);
1667 if (threshold == 0)
1668 threshold = targetm.case_values_threshold ();
1670 return threshold;
1673 /* Return true if a switch should be expanded as a decision tree.
1674 RANGE is the difference between highest and lowest case.
1675 UNIQ is number of unique case node targets, not counting the default case.
1676 COUNT is the number of comparisons needed, not counting the default case. */
1678 static bool
1679 expand_switch_as_decision_tree_p (tree range,
1680 unsigned int uniq ATTRIBUTE_UNUSED,
1681 unsigned int count)
1683 int max_ratio;
1685 /* If neither casesi or tablejump is available, or flag_jump_tables
1686 over-ruled us, we really have no choice. */
1687 if (!HAVE_casesi && !HAVE_tablejump)
1688 return true;
1689 if (!flag_jump_tables)
1690 return true;
1691 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
1692 if (flag_pic)
1693 return true;
1694 #endif
1696 /* If the switch is relatively small such that the cost of one
1697 indirect jump on the target are higher than the cost of a
1698 decision tree, go with the decision tree.
1700 If range of values is much bigger than number of values,
1701 or if it is too large to represent in a HOST_WIDE_INT,
1702 make a sequence of conditional branches instead of a dispatch.
1704 The definition of "much bigger" depends on whether we are
1705 optimizing for size or for speed. If the former, the maximum
1706 ratio range/count = 3, because this was found to be the optimal
1707 ratio for size on i686-pc-linux-gnu, see PR11823. The ratio
1708 10 is much older, and was probably selected after an extensive
1709 benchmarking investigation on numerous platforms. Or maybe it
1710 just made sense to someone at some point in the history of GCC,
1711 who knows... */
1712 max_ratio = optimize_insn_for_size_p () ? 3 : 10;
1713 if (count < case_values_threshold ()
1714 || ! host_integerp (range, /*pos=*/1)
1715 || compare_tree_int (range, max_ratio * count) > 0)
1716 return true;
1718 return false;
1721 /* Generate a decision tree, switching on INDEX_EXPR and jumping to
1722 one of the labels in CASE_LIST or to the DEFAULT_LABEL.
1723 DEFAULT_PROB is the estimated probability that it jumps to
1724 DEFAULT_LABEL.
1726 We generate a binary decision tree to select the appropriate target
1727 code. This is done as follows:
1729 If the index is a short or char that we do not have
1730 an insn to handle comparisons directly, convert it to
1731 a full integer now, rather than letting each comparison
1732 generate the conversion.
1734 Load the index into a register.
1736 The list of cases is rearranged into a binary tree,
1737 nearly optimal assuming equal probability for each case.
1739 The tree is transformed into RTL, eliminating redundant
1740 test conditions at the same time.
1742 If program flow could reach the end of the decision tree
1743 an unconditional jump to the default code is emitted.
1745 The above process is unaware of the CFG. The caller has to fix up
1746 the CFG itself. This is done in cfgexpand.c. */
1748 static void
1749 emit_case_decision_tree (tree index_expr, tree index_type,
1750 struct case_node *case_list, rtx default_label,
1751 int default_prob)
1753 rtx index = expand_normal (index_expr);
1755 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
1756 && ! have_insn_for (COMPARE, GET_MODE (index)))
1758 int unsignedp = TYPE_UNSIGNED (index_type);
1759 enum machine_mode wider_mode;
1760 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
1761 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
1762 if (have_insn_for (COMPARE, wider_mode))
1764 index = convert_to_mode (wider_mode, index, unsignedp);
1765 break;
1769 do_pending_stack_adjust ();
1771 if (MEM_P (index))
1773 index = copy_to_reg (index);
1774 if (TREE_CODE (index_expr) == SSA_NAME)
1775 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (index_expr), index);
1778 balance_case_nodes (&case_list, NULL);
1780 if (dump_file && (dump_flags & TDF_DETAILS))
1782 int indent_step = ceil_log2 (TYPE_PRECISION (index_type)) + 2;
1783 fprintf (dump_file, ";; Expanding GIMPLE switch as decision tree:\n");
1784 dump_case_nodes (dump_file, case_list, indent_step, 0);
1787 emit_case_nodes (index, case_list, default_label, default_prob, index_type);
1788 if (default_label)
1789 emit_jump (default_label);
1792 /* Return the sum of probabilities of outgoing edges of basic block BB. */
1794 static int
1795 get_outgoing_edge_probs (basic_block bb)
1797 edge e;
1798 edge_iterator ei;
1799 int prob_sum = 0;
1800 if (!bb)
1801 return 0;
1802 FOR_EACH_EDGE(e, ei, bb->succs)
1803 prob_sum += e->probability;
1804 return prob_sum;
1807 /* Computes the conditional probability of jumping to a target if the branch
1808 instruction is executed.
1809 TARGET_PROB is the estimated probability of jumping to a target relative
1810 to some basic block BB.
1811 BASE_PROB is the probability of reaching the branch instruction relative
1812 to the same basic block BB. */
1814 static inline int
1815 conditional_probability (int target_prob, int base_prob)
1817 if (base_prob > 0)
1819 gcc_assert (target_prob >= 0);
1820 gcc_assert (target_prob <= base_prob);
1821 return GCOV_COMPUTE_SCALE (target_prob, base_prob);
1823 return -1;
1826 /* Generate a dispatch tabler, switching on INDEX_EXPR and jumping to
1827 one of the labels in CASE_LIST or to the DEFAULT_LABEL.
1828 MINVAL, MAXVAL, and RANGE are the extrema and range of the case
1829 labels in CASE_LIST. STMT_BB is the basic block containing the statement.
1831 First, a jump insn is emitted. First we try "casesi". If that
1832 fails, try "tablejump". A target *must* have one of them (or both).
1834 Then, a table with the target labels is emitted.
1836 The process is unaware of the CFG. The caller has to fix up
1837 the CFG itself. This is done in cfgexpand.c. */
1839 static void
1840 emit_case_dispatch_table (tree index_expr, tree index_type,
1841 struct case_node *case_list, rtx default_label,
1842 tree minval, tree maxval, tree range,
1843 basic_block stmt_bb)
1845 int i, ncases;
1846 struct case_node *n;
1847 rtx *labelvec;
1848 rtx fallback_label = label_rtx (case_list->code_label);
1849 rtx table_label = gen_label_rtx ();
1850 bool has_gaps = false;
1851 edge default_edge = stmt_bb ? EDGE_SUCC(stmt_bb, 0) : NULL;
1852 int default_prob = default_edge ? default_edge->probability : 0;
1853 int base = get_outgoing_edge_probs (stmt_bb);
1854 bool try_with_tablejump = false;
1856 int new_default_prob = conditional_probability (default_prob,
1857 base);
1859 if (! try_casesi (index_type, index_expr, minval, range,
1860 table_label, default_label, fallback_label,
1861 new_default_prob))
1863 /* Index jumptables from zero for suitable values of minval to avoid
1864 a subtraction. For the rationale see:
1865 "http://gcc.gnu.org/ml/gcc-patches/2001-10/msg01234.html". */
1866 if (optimize_insn_for_speed_p ()
1867 && compare_tree_int (minval, 0) > 0
1868 && compare_tree_int (minval, 3) < 0)
1870 minval = build_int_cst (index_type, 0);
1871 range = maxval;
1872 has_gaps = true;
1874 try_with_tablejump = true;
1877 /* Get table of labels to jump to, in order of case index. */
1879 ncases = tree_low_cst (range, 0) + 1;
1880 labelvec = XALLOCAVEC (rtx, ncases);
1881 memset (labelvec, 0, ncases * sizeof (rtx));
1883 for (n = case_list; n; n = n->right)
1885 /* Compute the low and high bounds relative to the minimum
1886 value since that should fit in a HOST_WIDE_INT while the
1887 actual values may not. */
1888 HOST_WIDE_INT i_low
1889 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
1890 n->low, minval), 1);
1891 HOST_WIDE_INT i_high
1892 = tree_low_cst (fold_build2 (MINUS_EXPR, index_type,
1893 n->high, minval), 1);
1894 HOST_WIDE_INT i;
1896 for (i = i_low; i <= i_high; i ++)
1897 labelvec[i]
1898 = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
1901 /* Fill in the gaps with the default. We may have gaps at
1902 the beginning if we tried to avoid the minval subtraction,
1903 so substitute some label even if the default label was
1904 deemed unreachable. */
1905 if (!default_label)
1906 default_label = fallback_label;
1907 for (i = 0; i < ncases; i++)
1908 if (labelvec[i] == 0)
1910 has_gaps = true;
1911 labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
1914 if (has_gaps)
1916 /* There is at least one entry in the jump table that jumps
1917 to default label. The default label can either be reached
1918 through the indirect jump or the direct conditional jump
1919 before that. Split the probability of reaching the
1920 default label among these two jumps. */
1921 new_default_prob = conditional_probability (default_prob/2,
1922 base);
1923 default_prob /= 2;
1924 base -= default_prob;
1926 else
1928 base -= default_prob;
1929 default_prob = 0;
1932 if (default_edge)
1933 default_edge->probability = default_prob;
1935 /* We have altered the probability of the default edge. So the probabilities
1936 of all other edges need to be adjusted so that it sums up to
1937 REG_BR_PROB_BASE. */
1938 if (base)
1940 edge e;
1941 edge_iterator ei;
1942 FOR_EACH_EDGE (e, ei, stmt_bb->succs)
1943 e->probability = GCOV_COMPUTE_SCALE (e->probability, base);
1946 if (try_with_tablejump)
1948 bool ok = try_tablejump (index_type, index_expr, minval, range,
1949 table_label, default_label, new_default_prob);
1950 gcc_assert (ok);
1952 /* Output the table. */
1953 emit_label (table_label);
1955 if (CASE_VECTOR_PC_RELATIVE || flag_pic)
1956 emit_jump_table_data (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
1957 gen_rtx_LABEL_REF (Pmode,
1958 table_label),
1959 gen_rtvec_v (ncases, labelvec),
1960 const0_rtx, const0_rtx));
1961 else
1962 emit_jump_table_data (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
1963 gen_rtvec_v (ncases, labelvec)));
1965 /* Record no drop-through after the table. */
1966 emit_barrier ();
1969 /* Reset the aux field of all outgoing edges of basic block BB. */
1971 static inline void
1972 reset_out_edges_aux (basic_block bb)
1974 edge e;
1975 edge_iterator ei;
1976 FOR_EACH_EDGE(e, ei, bb->succs)
1977 e->aux = (void *)0;
1980 /* Compute the number of case labels that correspond to each outgoing edge of
1981 STMT. Record this information in the aux field of the edge. */
1983 static inline void
1984 compute_cases_per_edge (gimple stmt)
1986 basic_block bb = gimple_bb (stmt);
1987 reset_out_edges_aux (bb);
1988 int ncases = gimple_switch_num_labels (stmt);
1989 for (int i = ncases - 1; i >= 1; --i)
1991 tree elt = gimple_switch_label (stmt, i);
1992 tree lab = CASE_LABEL (elt);
1993 basic_block case_bb = label_to_block_fn (cfun, lab);
1994 edge case_edge = find_edge (bb, case_bb);
1995 case_edge->aux = (void *)((intptr_t)(case_edge->aux) + 1);
1999 /* Terminate a case (Pascal/Ada) or switch (C) statement
2000 in which ORIG_INDEX is the expression to be tested.
2001 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
2002 type as given in the source before any compiler conversions.
2003 Generate the code to test it and jump to the right place. */
2005 void
2006 expand_case (gimple stmt)
2008 tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
2009 rtx default_label = NULL_RTX;
2010 unsigned int count, uniq;
2011 int i;
2012 int ncases = gimple_switch_num_labels (stmt);
2013 tree index_expr = gimple_switch_index (stmt);
2014 tree index_type = TREE_TYPE (index_expr);
2015 tree elt;
2016 basic_block bb = gimple_bb (stmt);
2018 /* A list of case labels; it is first built as a list and it may then
2019 be rearranged into a nearly balanced binary tree. */
2020 struct case_node *case_list = 0;
2022 /* A pool for case nodes. */
2023 alloc_pool case_node_pool;
2025 /* An ERROR_MARK occurs for various reasons including invalid data type.
2026 ??? Can this still happen, with GIMPLE and all? */
2027 if (index_type == error_mark_node)
2028 return;
2030 /* cleanup_tree_cfg removes all SWITCH_EXPR with their index
2031 expressions being INTEGER_CST. */
2032 gcc_assert (TREE_CODE (index_expr) != INTEGER_CST);
2034 case_node_pool = create_alloc_pool ("struct case_node pool",
2035 sizeof (struct case_node),
2036 100);
2038 do_pending_stack_adjust ();
2040 /* Find the default case target label. */
2041 default_label = label_rtx (CASE_LABEL (gimple_switch_default_label (stmt)));
2042 edge default_edge = EDGE_SUCC(bb, 0);
2043 int default_prob = default_edge->probability;
2045 /* Get upper and lower bounds of case values. */
2046 elt = gimple_switch_label (stmt, 1);
2047 minval = fold_convert (index_type, CASE_LOW (elt));
2048 elt = gimple_switch_label (stmt, ncases - 1);
2049 if (CASE_HIGH (elt))
2050 maxval = fold_convert (index_type, CASE_HIGH (elt));
2051 else
2052 maxval = fold_convert (index_type, CASE_LOW (elt));
2054 /* Compute span of values. */
2055 range = fold_build2 (MINUS_EXPR, index_type, maxval, minval);
2057 /* Listify the labels queue and gather some numbers to decide
2058 how to expand this switch(). */
2059 uniq = 0;
2060 count = 0;
2061 struct pointer_set_t *seen_labels = pointer_set_create ();
2062 compute_cases_per_edge (stmt);
2064 for (i = ncases - 1; i >= 1; --i)
2066 elt = gimple_switch_label (stmt, i);
2067 tree low = CASE_LOW (elt);
2068 gcc_assert (low);
2069 tree high = CASE_HIGH (elt);
2070 gcc_assert (! high || tree_int_cst_lt (low, high));
2071 tree lab = CASE_LABEL (elt);
2073 /* Count the elements.
2074 A range counts double, since it requires two compares. */
2075 count++;
2076 if (high)
2077 count++;
2079 /* If we have not seen this label yet, then increase the
2080 number of unique case node targets seen. */
2081 if (!pointer_set_insert (seen_labels, lab))
2082 uniq++;
2084 /* The bounds on the case range, LOW and HIGH, have to be converted
2085 to case's index type TYPE. Note that the original type of the
2086 case index in the source code is usually "lost" during
2087 gimplification due to type promotion, but the case labels retain the
2088 original type. Make sure to drop overflow flags. */
2089 low = fold_convert (index_type, low);
2090 if (TREE_OVERFLOW (low))
2091 low = build_int_cst_wide (index_type,
2092 TREE_INT_CST_LOW (low),
2093 TREE_INT_CST_HIGH (low));
2095 /* The canonical from of a case label in GIMPLE is that a simple case
2096 has an empty CASE_HIGH. For the casesi and tablejump expanders,
2097 the back ends want simple cases to have high == low. */
2098 if (! high)
2099 high = low;
2100 high = fold_convert (index_type, high);
2101 if (TREE_OVERFLOW (high))
2102 high = build_int_cst_wide (index_type,
2103 TREE_INT_CST_LOW (high),
2104 TREE_INT_CST_HIGH (high));
2106 basic_block case_bb = label_to_block_fn (cfun, lab);
2107 edge case_edge = find_edge (bb, case_bb);
2108 case_list = add_case_node (
2109 case_list, low, high, lab,
2110 case_edge->probability / (intptr_t)(case_edge->aux),
2111 case_node_pool);
2113 pointer_set_destroy (seen_labels);
2114 reset_out_edges_aux (bb);
2116 /* cleanup_tree_cfg removes all SWITCH_EXPR with a single
2117 destination, such as one with a default case only.
2118 It also removes cases that are out of range for the switch
2119 type, so we should never get a zero here. */
2120 gcc_assert (count > 0);
2122 rtx before_case = get_last_insn ();
2124 /* Decide how to expand this switch.
2125 The two options at this point are a dispatch table (casesi or
2126 tablejump) or a decision tree. */
2128 if (expand_switch_as_decision_tree_p (range, uniq, count))
2129 emit_case_decision_tree (index_expr, index_type,
2130 case_list, default_label,
2131 default_prob);
2132 else
2133 emit_case_dispatch_table (index_expr, index_type,
2134 case_list, default_label,
2135 minval, maxval, range, bb);
2137 reorder_insns (NEXT_INSN (before_case), get_last_insn (), before_case);
2139 free_temp_slots ();
2140 free_alloc_pool (case_node_pool);
2143 /* Expand the dispatch to a short decrement chain if there are few cases
2144 to dispatch to. Likewise if neither casesi nor tablejump is available,
2145 or if flag_jump_tables is set. Otherwise, expand as a casesi or a
2146 tablejump. The index mode is always the mode of integer_type_node.
2147 Trap if no case matches the index.
2149 DISPATCH_INDEX is the index expression to switch on. It should be a
2150 memory or register operand.
2152 DISPATCH_TABLE is a set of case labels. The set should be sorted in
2153 ascending order, be contiguous, starting with value 0, and contain only
2154 single-valued case labels. */
2156 void
2157 expand_sjlj_dispatch_table (rtx dispatch_index,
2158 vec<tree> dispatch_table)
2160 tree index_type = integer_type_node;
2161 enum machine_mode index_mode = TYPE_MODE (index_type);
2163 int ncases = dispatch_table.length ();
2165 do_pending_stack_adjust ();
2166 rtx before_case = get_last_insn ();
2168 /* Expand as a decrement-chain if there are 5 or fewer dispatch
2169 labels. This covers more than 98% of the cases in libjava,
2170 and seems to be a reasonable compromise between the "old way"
2171 of expanding as a decision tree or dispatch table vs. the "new
2172 way" with decrement chain or dispatch table. */
2173 if (dispatch_table.length () <= 5
2174 || (!HAVE_casesi && !HAVE_tablejump)
2175 || !flag_jump_tables)
2177 /* Expand the dispatch as a decrement chain:
2179 "switch(index) {case 0: do_0; case 1: do_1; ...; case N: do_N;}"
2183 if (index == 0) do_0; else index--;
2184 if (index == 0) do_1; else index--;
2186 if (index == 0) do_N; else index--;
2188 This is more efficient than a dispatch table on most machines.
2189 The last "index--" is redundant but the code is trivially dead
2190 and will be cleaned up by later passes. */
2191 rtx index = copy_to_mode_reg (index_mode, dispatch_index);
2192 rtx zero = CONST0_RTX (index_mode);
2193 for (int i = 0; i < ncases; i++)
2195 tree elt = dispatch_table[i];
2196 rtx lab = label_rtx (CASE_LABEL (elt));
2197 do_jump_if_equal (index_mode, index, zero, lab, 0, -1);
2198 force_expand_binop (index_mode, sub_optab,
2199 index, CONST1_RTX (index_mode),
2200 index, 0, OPTAB_DIRECT);
2203 else
2205 /* Similar to expand_case, but much simpler. */
2206 struct case_node *case_list = 0;
2207 alloc_pool case_node_pool = create_alloc_pool ("struct sjlj_case pool",
2208 sizeof (struct case_node),
2209 ncases);
2210 tree index_expr = make_tree (index_type, dispatch_index);
2211 tree minval = build_int_cst (index_type, 0);
2212 tree maxval = CASE_LOW (dispatch_table.last ());
2213 tree range = maxval;
2214 rtx default_label = gen_label_rtx ();
2216 for (int i = ncases - 1; i >= 0; --i)
2218 tree elt = dispatch_table[i];
2219 tree low = CASE_LOW (elt);
2220 tree lab = CASE_LABEL (elt);
2221 case_list = add_case_node (case_list, low, low, lab, 0, case_node_pool);
2224 emit_case_dispatch_table (index_expr, index_type,
2225 case_list, default_label,
2226 minval, maxval, range,
2227 BLOCK_FOR_INSN (before_case));
2228 emit_label (default_label);
2229 free_alloc_pool (case_node_pool);
2232 /* Dispatching something not handled? Trap! */
2233 expand_builtin_trap ();
2235 reorder_insns (NEXT_INSN (before_case), get_last_insn (), before_case);
2237 free_temp_slots ();
2241 /* Take an ordered list of case nodes
2242 and transform them into a near optimal binary tree,
2243 on the assumption that any target code selection value is as
2244 likely as any other.
2246 The transformation is performed by splitting the ordered
2247 list into two equal sections plus a pivot. The parts are
2248 then attached to the pivot as left and right branches. Each
2249 branch is then transformed recursively. */
2251 static void
2252 balance_case_nodes (case_node_ptr *head, case_node_ptr parent)
2254 case_node_ptr np;
2256 np = *head;
2257 if (np)
2259 int i = 0;
2260 int ranges = 0;
2261 case_node_ptr *npp;
2262 case_node_ptr left;
2264 /* Count the number of entries on branch. Also count the ranges. */
2266 while (np)
2268 if (!tree_int_cst_equal (np->low, np->high))
2269 ranges++;
2271 i++;
2272 np = np->right;
2275 if (i > 2)
2277 /* Split this list if it is long enough for that to help. */
2278 npp = head;
2279 left = *npp;
2281 /* If there are just three nodes, split at the middle one. */
2282 if (i == 3)
2283 npp = &(*npp)->right;
2284 else
2286 /* Find the place in the list that bisects the list's total cost,
2287 where ranges count as 2.
2288 Here I gets half the total cost. */
2289 i = (i + ranges + 1) / 2;
2290 while (1)
2292 /* Skip nodes while their cost does not reach that amount. */
2293 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2294 i--;
2295 i--;
2296 if (i <= 0)
2297 break;
2298 npp = &(*npp)->right;
2301 *head = np = *npp;
2302 *npp = 0;
2303 np->parent = parent;
2304 np->left = left;
2306 /* Optimize each of the two split parts. */
2307 balance_case_nodes (&np->left, np);
2308 balance_case_nodes (&np->right, np);
2309 np->subtree_prob = np->prob;
2310 np->subtree_prob += np->left->subtree_prob;
2311 np->subtree_prob += np->right->subtree_prob;
2313 else
2315 /* Else leave this branch as one level,
2316 but fill in `parent' fields. */
2317 np = *head;
2318 np->parent = parent;
2319 np->subtree_prob = np->prob;
2320 for (; np->right; np = np->right)
2322 np->right->parent = np;
2323 (*head)->subtree_prob += np->right->subtree_prob;
2329 /* Search the parent sections of the case node tree
2330 to see if a test for the lower bound of NODE would be redundant.
2331 INDEX_TYPE is the type of the index expression.
2333 The instructions to generate the case decision tree are
2334 output in the same order as nodes are processed so it is
2335 known that if a parent node checks the range of the current
2336 node minus one that the current node is bounded at its lower
2337 span. Thus the test would be redundant. */
2339 static int
2340 node_has_low_bound (case_node_ptr node, tree index_type)
2342 tree low_minus_one;
2343 case_node_ptr pnode;
2345 /* If the lower bound of this node is the lowest value in the index type,
2346 we need not test it. */
2348 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
2349 return 1;
2351 /* If this node has a left branch, the value at the left must be less
2352 than that at this node, so it cannot be bounded at the bottom and
2353 we need not bother testing any further. */
2355 if (node->left)
2356 return 0;
2358 low_minus_one = fold_build2 (MINUS_EXPR, TREE_TYPE (node->low),
2359 node->low,
2360 build_int_cst (TREE_TYPE (node->low), 1));
2362 /* If the subtraction above overflowed, we can't verify anything.
2363 Otherwise, look for a parent that tests our value - 1. */
2365 if (! tree_int_cst_lt (low_minus_one, node->low))
2366 return 0;
2368 for (pnode = node->parent; pnode; pnode = pnode->parent)
2369 if (tree_int_cst_equal (low_minus_one, pnode->high))
2370 return 1;
2372 return 0;
2375 /* Search the parent sections of the case node tree
2376 to see if a test for the upper bound of NODE would be redundant.
2377 INDEX_TYPE is the type of the index expression.
2379 The instructions to generate the case decision tree are
2380 output in the same order as nodes are processed so it is
2381 known that if a parent node checks the range of the current
2382 node plus one that the current node is bounded at its upper
2383 span. Thus the test would be redundant. */
2385 static int
2386 node_has_high_bound (case_node_ptr node, tree index_type)
2388 tree high_plus_one;
2389 case_node_ptr pnode;
2391 /* If there is no upper bound, obviously no test is needed. */
2393 if (TYPE_MAX_VALUE (index_type) == NULL)
2394 return 1;
2396 /* If the upper bound of this node is the highest value in the type
2397 of the index expression, we need not test against it. */
2399 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
2400 return 1;
2402 /* If this node has a right branch, the value at the right must be greater
2403 than that at this node, so it cannot be bounded at the top and
2404 we need not bother testing any further. */
2406 if (node->right)
2407 return 0;
2409 high_plus_one = fold_build2 (PLUS_EXPR, TREE_TYPE (node->high),
2410 node->high,
2411 build_int_cst (TREE_TYPE (node->high), 1));
2413 /* If the addition above overflowed, we can't verify anything.
2414 Otherwise, look for a parent that tests our value + 1. */
2416 if (! tree_int_cst_lt (node->high, high_plus_one))
2417 return 0;
2419 for (pnode = node->parent; pnode; pnode = pnode->parent)
2420 if (tree_int_cst_equal (high_plus_one, pnode->low))
2421 return 1;
2423 return 0;
2426 /* Search the parent sections of the
2427 case node tree to see if both tests for the upper and lower
2428 bounds of NODE would be redundant. */
2430 static int
2431 node_is_bounded (case_node_ptr node, tree index_type)
2433 return (node_has_low_bound (node, index_type)
2434 && node_has_high_bound (node, index_type));
2438 /* Emit step-by-step code to select a case for the value of INDEX.
2439 The thus generated decision tree follows the form of the
2440 case-node binary tree NODE, whose nodes represent test conditions.
2441 INDEX_TYPE is the type of the index of the switch.
2443 Care is taken to prune redundant tests from the decision tree
2444 by detecting any boundary conditions already checked by
2445 emitted rtx. (See node_has_high_bound, node_has_low_bound
2446 and node_is_bounded, above.)
2448 Where the test conditions can be shown to be redundant we emit
2449 an unconditional jump to the target code. As a further
2450 optimization, the subordinates of a tree node are examined to
2451 check for bounded nodes. In this case conditional and/or
2452 unconditional jumps as a result of the boundary check for the
2453 current node are arranged to target the subordinates associated
2454 code for out of bound conditions on the current node.
2456 We can assume that when control reaches the code generated here,
2457 the index value has already been compared with the parents
2458 of this node, and determined to be on the same side of each parent
2459 as this node is. Thus, if this node tests for the value 51,
2460 and a parent tested for 52, we don't need to consider
2461 the possibility of a value greater than 51. If another parent
2462 tests for the value 50, then this node need not test anything. */
2464 static void
2465 emit_case_nodes (rtx index, case_node_ptr node, rtx default_label,
2466 int default_prob, tree index_type)
2468 /* If INDEX has an unsigned type, we must make unsigned branches. */
2469 int unsignedp = TYPE_UNSIGNED (index_type);
2470 int probability;
2471 int prob = node->prob, subtree_prob = node->subtree_prob;
2472 enum machine_mode mode = GET_MODE (index);
2473 enum machine_mode imode = TYPE_MODE (index_type);
2475 /* Handle indices detected as constant during RTL expansion. */
2476 if (mode == VOIDmode)
2477 mode = imode;
2479 /* See if our parents have already tested everything for us.
2480 If they have, emit an unconditional jump for this node. */
2481 if (node_is_bounded (node, index_type))
2482 emit_jump (label_rtx (node->code_label));
2484 else if (tree_int_cst_equal (node->low, node->high))
2486 probability = conditional_probability (prob, subtree_prob + default_prob);
2487 /* Node is single valued. First see if the index expression matches
2488 this node and then check our children, if any. */
2489 do_jump_if_equal (mode, index,
2490 convert_modes (mode, imode,
2491 expand_normal (node->low),
2492 unsignedp),
2493 label_rtx (node->code_label), unsignedp, probability);
2494 /* Since this case is taken at this point, reduce its weight from
2495 subtree_weight. */
2496 subtree_prob -= prob;
2497 if (node->right != 0 && node->left != 0)
2499 /* This node has children on both sides.
2500 Dispatch to one side or the other
2501 by comparing the index value with this node's value.
2502 If one subtree is bounded, check that one first,
2503 so we can avoid real branches in the tree. */
2505 if (node_is_bounded (node->right, index_type))
2507 probability = conditional_probability (
2508 node->right->prob,
2509 subtree_prob + default_prob);
2510 emit_cmp_and_jump_insns (index,
2511 convert_modes
2512 (mode, imode,
2513 expand_normal (node->high),
2514 unsignedp),
2515 GT, NULL_RTX, mode, unsignedp,
2516 label_rtx (node->right->code_label),
2517 probability);
2518 emit_case_nodes (index, node->left, default_label, default_prob,
2519 index_type);
2522 else if (node_is_bounded (node->left, index_type))
2524 probability = conditional_probability (
2525 node->left->prob,
2526 subtree_prob + default_prob);
2527 emit_cmp_and_jump_insns (index,
2528 convert_modes
2529 (mode, imode,
2530 expand_normal (node->high),
2531 unsignedp),
2532 LT, NULL_RTX, mode, unsignedp,
2533 label_rtx (node->left->code_label),
2534 probability);
2535 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2538 /* If both children are single-valued cases with no
2539 children, finish up all the work. This way, we can save
2540 one ordered comparison. */
2541 else if (tree_int_cst_equal (node->right->low, node->right->high)
2542 && node->right->left == 0
2543 && node->right->right == 0
2544 && tree_int_cst_equal (node->left->low, node->left->high)
2545 && node->left->left == 0
2546 && node->left->right == 0)
2548 /* Neither node is bounded. First distinguish the two sides;
2549 then emit the code for one side at a time. */
2551 /* See if the value matches what the right hand side
2552 wants. */
2553 probability = conditional_probability (
2554 node->right->prob,
2555 subtree_prob + default_prob);
2556 do_jump_if_equal (mode, index,
2557 convert_modes (mode, imode,
2558 expand_normal (node->right->low),
2559 unsignedp),
2560 label_rtx (node->right->code_label),
2561 unsignedp, probability);
2563 /* See if the value matches what the left hand side
2564 wants. */
2565 probability = conditional_probability (
2566 node->left->prob,
2567 subtree_prob + default_prob);
2568 do_jump_if_equal (mode, index,
2569 convert_modes (mode, imode,
2570 expand_normal (node->left->low),
2571 unsignedp),
2572 label_rtx (node->left->code_label),
2573 unsignedp, probability);
2576 else
2578 /* Neither node is bounded. First distinguish the two sides;
2579 then emit the code for one side at a time. */
2581 tree test_label
2582 = build_decl (curr_insn_location (),
2583 LABEL_DECL, NULL_TREE, NULL_TREE);
2585 /* The default label could be reached either through the right
2586 subtree or the left subtree. Divide the probability
2587 equally. */
2588 probability = conditional_probability (
2589 node->right->subtree_prob + default_prob/2,
2590 subtree_prob + default_prob);
2591 /* See if the value is on the right. */
2592 emit_cmp_and_jump_insns (index,
2593 convert_modes
2594 (mode, imode,
2595 expand_normal (node->high),
2596 unsignedp),
2597 GT, NULL_RTX, mode, unsignedp,
2598 label_rtx (test_label),
2599 probability);
2600 default_prob /= 2;
2602 /* Value must be on the left.
2603 Handle the left-hand subtree. */
2604 emit_case_nodes (index, node->left, default_label, default_prob, index_type);
2605 /* If left-hand subtree does nothing,
2606 go to default. */
2607 if (default_label)
2608 emit_jump (default_label);
2610 /* Code branches here for the right-hand subtree. */
2611 expand_label (test_label);
2612 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2616 else if (node->right != 0 && node->left == 0)
2618 /* Here we have a right child but no left so we issue a conditional
2619 branch to default and process the right child.
2621 Omit the conditional branch to default if the right child
2622 does not have any children and is single valued; it would
2623 cost too much space to save so little time. */
2625 if (node->right->right || node->right->left
2626 || !tree_int_cst_equal (node->right->low, node->right->high))
2628 if (!node_has_low_bound (node, index_type))
2630 probability = conditional_probability (
2631 default_prob/2,
2632 subtree_prob + default_prob);
2633 emit_cmp_and_jump_insns (index,
2634 convert_modes
2635 (mode, imode,
2636 expand_normal (node->high),
2637 unsignedp),
2638 LT, NULL_RTX, mode, unsignedp,
2639 default_label,
2640 probability);
2641 default_prob /= 2;
2644 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2646 else
2648 probability = conditional_probability (
2649 node->right->subtree_prob,
2650 subtree_prob + default_prob);
2651 /* We cannot process node->right normally
2652 since we haven't ruled out the numbers less than
2653 this node's value. So handle node->right explicitly. */
2654 do_jump_if_equal (mode, index,
2655 convert_modes
2656 (mode, imode,
2657 expand_normal (node->right->low),
2658 unsignedp),
2659 label_rtx (node->right->code_label), unsignedp, probability);
2663 else if (node->right == 0 && node->left != 0)
2665 /* Just one subtree, on the left. */
2666 if (node->left->left || node->left->right
2667 || !tree_int_cst_equal (node->left->low, node->left->high))
2669 if (!node_has_high_bound (node, index_type))
2671 probability = conditional_probability (
2672 default_prob/2,
2673 subtree_prob + default_prob);
2674 emit_cmp_and_jump_insns (index,
2675 convert_modes
2676 (mode, imode,
2677 expand_normal (node->high),
2678 unsignedp),
2679 GT, NULL_RTX, mode, unsignedp,
2680 default_label,
2681 probability);
2682 default_prob /= 2;
2685 emit_case_nodes (index, node->left, default_label,
2686 default_prob, index_type);
2688 else
2690 probability = conditional_probability (
2691 node->left->subtree_prob,
2692 subtree_prob + default_prob);
2693 /* We cannot process node->left normally
2694 since we haven't ruled out the numbers less than
2695 this node's value. So handle node->left explicitly. */
2696 do_jump_if_equal (mode, index,
2697 convert_modes
2698 (mode, imode,
2699 expand_normal (node->left->low),
2700 unsignedp),
2701 label_rtx (node->left->code_label), unsignedp, probability);
2705 else
2707 /* Node is a range. These cases are very similar to those for a single
2708 value, except that we do not start by testing whether this node
2709 is the one to branch to. */
2711 if (node->right != 0 && node->left != 0)
2713 /* Node has subtrees on both sides.
2714 If the right-hand subtree is bounded,
2715 test for it first, since we can go straight there.
2716 Otherwise, we need to make a branch in the control structure,
2717 then handle the two subtrees. */
2718 tree test_label = 0;
2720 if (node_is_bounded (node->right, index_type))
2722 /* Right hand node is fully bounded so we can eliminate any
2723 testing and branch directly to the target code. */
2724 probability = conditional_probability (
2725 node->right->subtree_prob,
2726 subtree_prob + default_prob);
2727 emit_cmp_and_jump_insns (index,
2728 convert_modes
2729 (mode, imode,
2730 expand_normal (node->high),
2731 unsignedp),
2732 GT, NULL_RTX, mode, unsignedp,
2733 label_rtx (node->right->code_label),
2734 probability);
2736 else
2738 /* Right hand node requires testing.
2739 Branch to a label where we will handle it later. */
2741 test_label = build_decl (curr_insn_location (),
2742 LABEL_DECL, NULL_TREE, NULL_TREE);
2743 probability = conditional_probability (
2744 node->right->subtree_prob + default_prob/2,
2745 subtree_prob + default_prob);
2746 emit_cmp_and_jump_insns (index,
2747 convert_modes
2748 (mode, imode,
2749 expand_normal (node->high),
2750 unsignedp),
2751 GT, NULL_RTX, mode, unsignedp,
2752 label_rtx (test_label),
2753 probability);
2754 default_prob /= 2;
2757 /* Value belongs to this node or to the left-hand subtree. */
2759 probability = conditional_probability (
2760 prob,
2761 subtree_prob + default_prob);
2762 emit_cmp_and_jump_insns (index,
2763 convert_modes
2764 (mode, imode,
2765 expand_normal (node->low),
2766 unsignedp),
2767 GE, NULL_RTX, mode, unsignedp,
2768 label_rtx (node->code_label),
2769 probability);
2771 /* Handle the left-hand subtree. */
2772 emit_case_nodes (index, node->left, default_label, default_prob, index_type);
2774 /* If right node had to be handled later, do that now. */
2776 if (test_label)
2778 /* If the left-hand subtree fell through,
2779 don't let it fall into the right-hand subtree. */
2780 if (default_label)
2781 emit_jump (default_label);
2783 expand_label (test_label);
2784 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2788 else if (node->right != 0 && node->left == 0)
2790 /* Deal with values to the left of this node,
2791 if they are possible. */
2792 if (!node_has_low_bound (node, index_type))
2794 probability = conditional_probability (
2795 default_prob/2,
2796 subtree_prob + default_prob);
2797 emit_cmp_and_jump_insns (index,
2798 convert_modes
2799 (mode, imode,
2800 expand_normal (node->low),
2801 unsignedp),
2802 LT, NULL_RTX, mode, unsignedp,
2803 default_label,
2804 probability);
2805 default_prob /= 2;
2808 /* Value belongs to this node or to the right-hand subtree. */
2810 probability = conditional_probability (
2811 prob,
2812 subtree_prob + default_prob);
2813 emit_cmp_and_jump_insns (index,
2814 convert_modes
2815 (mode, imode,
2816 expand_normal (node->high),
2817 unsignedp),
2818 LE, NULL_RTX, mode, unsignedp,
2819 label_rtx (node->code_label),
2820 probability);
2822 emit_case_nodes (index, node->right, default_label, default_prob, index_type);
2825 else if (node->right == 0 && node->left != 0)
2827 /* Deal with values to the right of this node,
2828 if they are possible. */
2829 if (!node_has_high_bound (node, index_type))
2831 probability = conditional_probability (
2832 default_prob/2,
2833 subtree_prob + default_prob);
2834 emit_cmp_and_jump_insns (index,
2835 convert_modes
2836 (mode, imode,
2837 expand_normal (node->high),
2838 unsignedp),
2839 GT, NULL_RTX, mode, unsignedp,
2840 default_label,
2841 probability);
2842 default_prob /= 2;
2845 /* Value belongs to this node or to the left-hand subtree. */
2847 probability = conditional_probability (
2848 prob,
2849 subtree_prob + default_prob);
2850 emit_cmp_and_jump_insns (index,
2851 convert_modes
2852 (mode, imode,
2853 expand_normal (node->low),
2854 unsignedp),
2855 GE, NULL_RTX, mode, unsignedp,
2856 label_rtx (node->code_label),
2857 probability);
2859 emit_case_nodes (index, node->left, default_label, default_prob, index_type);
2862 else
2864 /* Node has no children so we check low and high bounds to remove
2865 redundant tests. Only one of the bounds can exist,
2866 since otherwise this node is bounded--a case tested already. */
2867 int high_bound = node_has_high_bound (node, index_type);
2868 int low_bound = node_has_low_bound (node, index_type);
2870 if (!high_bound && low_bound)
2872 probability = conditional_probability (
2873 default_prob,
2874 subtree_prob + default_prob);
2875 emit_cmp_and_jump_insns (index,
2876 convert_modes
2877 (mode, imode,
2878 expand_normal (node->high),
2879 unsignedp),
2880 GT, NULL_RTX, mode, unsignedp,
2881 default_label,
2882 probability);
2885 else if (!low_bound && high_bound)
2887 probability = conditional_probability (
2888 default_prob,
2889 subtree_prob + default_prob);
2890 emit_cmp_and_jump_insns (index,
2891 convert_modes
2892 (mode, imode,
2893 expand_normal (node->low),
2894 unsignedp),
2895 LT, NULL_RTX, mode, unsignedp,
2896 default_label,
2897 probability);
2899 else if (!low_bound && !high_bound)
2901 /* Widen LOW and HIGH to the same width as INDEX. */
2902 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
2903 tree low = build1 (CONVERT_EXPR, type, node->low);
2904 tree high = build1 (CONVERT_EXPR, type, node->high);
2905 rtx low_rtx, new_index, new_bound;
2907 /* Instead of doing two branches, emit one unsigned branch for
2908 (index-low) > (high-low). */
2909 low_rtx = expand_expr (low, NULL_RTX, mode, EXPAND_NORMAL);
2910 new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
2911 NULL_RTX, unsignedp,
2912 OPTAB_WIDEN);
2913 new_bound = expand_expr (fold_build2 (MINUS_EXPR, type,
2914 high, low),
2915 NULL_RTX, mode, EXPAND_NORMAL);
2917 probability = conditional_probability (
2918 default_prob,
2919 subtree_prob + default_prob);
2920 emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
2921 mode, 1, default_label, probability);
2924 emit_jump (label_rtx (node->code_label));