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
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
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. */
27 #include "coretypes.h"
31 #include "hard-reg-set.h"
37 #include "insn-config.h"
42 #include "diagnostic-core.h"
45 #include "langhooks.h"
51 #include "alloc-pool.h"
52 #include "pretty-print.h"
53 #include "pointer-set.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
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
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
84 For very small, suitable switch statements, we can generate a series
85 of simple bit test and branches instead. */
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 */
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
);
152 /* Add an unconditional jump to LABEL as the next sequential instruction. */
155 emit_jump (rtx label
)
157 do_pending_stack_adjust ();
158 emit_jump_insn (gen_jump (label
));
162 /* Emit code to jump to the address
163 specified by the pointer expression EXP. */
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. */
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'. */
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
);
228 emit_jump (label_rtx (label
));
231 /* Return the number of times character C occurs in string S. */
233 n_occurrences (int c
, const char *s
)
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. */
247 expand_asm_loc (tree string
, int vol
, location_t locus
)
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
)),
258 MEM_VOLATILE_P (body
) = vol
;
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. */
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
;
284 /* Assume the constraint doesn't allow the use of either a register
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
, '=');
295 p
= strchr (constraint
, '+');
297 /* If the string doesn't contain an `=', issue an error
301 error ("output operand constraint lacks %<=%>");
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
)
313 size_t c_len
= strlen (constraint
);
316 warning (0, "output constraint %qc for operand %d "
317 "is not at the beginning",
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 `+'.) */
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
))
339 error ("operand constraint contains incorrectly positioned "
344 if (operand_num
+ 1 == ninputs
+ noutputs
)
346 error ("%<%%%> constraint used with last operand");
351 case 'V': case TARGET_MEM_CONSTRAINT
: case 'o':
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 ',':
362 case '0': case '1': case '2': case '3': case '4':
363 case '5': case '6': case '7': case '8': case '9':
365 error ("matching constraint not valid in output operand");
369 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
370 excepting those that expand_call created. So match memory
387 if (REG_CLASS_FROM_CONSTRAINT (*p
, p
) != NO_REGS
)
389 #ifdef EXTRA_CONSTRAINT_STR
390 else if (EXTRA_ADDRESS_CONSTRAINT (*p
, p
))
392 else if (EXTRA_MEMORY_CONSTRAINT (*p
, p
))
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. */
409 /* Similar, but for input constraints. */
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
);
421 bool saw_match
= false;
423 /* Assume the constraint doesn't allow the use of either
424 a register or memory. */
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
]);
442 if (constraint
== orig_constraint
443 && input_num
+ 1 == ninputs
- ninout
)
445 error ("%<%%%> constraint used with last operand");
450 case 'V': case TARGET_MEM_CONSTRAINT
: case 'o':
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 ',':
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':
475 match
= strtoul (constraint
+ j
, &end
, 10);
476 if (match
>= (unsigned long) noutputs
)
478 error ("matching constraint references invalid operand number");
482 /* Try and find the real constraint for this dup. Only do this
483 if the matching constraint is the only alternative. */
485 && (j
== 0 || (j
== 1 && constraint
[0] == '%')))
487 constraint
= constraints
[match
];
488 *constraint_p
= constraint
;
489 c_len
= strlen (constraint
);
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. */
498 j
= end
- constraint
;
499 /* Anticipate increment at end of loop. */
514 if (! ISALPHA (constraint
[j
]))
516 error ("invalid punctuation %qc in constraint", constraint
[j
]);
519 if (REG_CLASS_FROM_CONSTRAINT (constraint
[j
], constraint
+ j
)
522 #ifdef EXTRA_CONSTRAINT_STR
523 else if (EXTRA_ADDRESS_CONSTRAINT (constraint
[j
], constraint
+ j
))
525 else if (EXTRA_MEMORY_CONSTRAINT (constraint
[j
], constraint
+ j
))
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. */
539 if (saw_match
&& !*allows_reg
)
540 warning (0, "matching constraint does not allow a register");
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. */
549 decl_overlaps_hard_reg_set_p (tree
*declp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
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
)))
568 else if (TYPE_P (decl
) || TREE_CODE (decl
) == PARM_DECL
)
573 /* If there is an overlap between *REGS and DECL, return the first overlap
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. */
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
);
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
599 DECL_REGISTER (overlap
) = 0;
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
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
621 VOL nonzero means the insn is volatile; don't optimize it. */
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
;
629 int ninputs
= list_length (inputs
);
630 int noutputs
= list_length (outputs
);
631 int nlabels
= list_length (labels
);
634 HARD_REG_SET clobbered_regs
;
635 int clobber_conflict_found
= 0;
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. */
651 if (! check_operand_nalternatives (outputs
, inputs
))
654 string
= resolve_asm_operand_names (string
, outputs
, inputs
, labels
);
656 /* Collect constraints. */
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. */
672 CLEAR_HARD_REG_SET (clobbered_regs
);
673 for (tail
= clobbers
; tail
; tail
= TREE_CHAIN (tail
))
678 if (TREE_VALUE (tail
) == error_mark_node
)
680 regname
= TREE_STRING_POINTER (TREE_VALUE (tail
));
682 i
= decode_reg_name_and_count (regname
, &nregs
);
686 error ("unknown register name %qs in %<asm%>", regname
);
688 /* Mark clobbered registers. */
693 for (reg
= i
; reg
< i
+ nregs
; reg
++)
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
);
704 SET_HARD_REG_BIT (clobbered_regs
, reg
);
709 /* First pass over inputs and outputs checks validity and sets
710 mark_addressable if needed. */
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
;
722 /* If there's an erroneous arg, emit no insn. */
723 if (type
== error_mark_node
)
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
))
737 && REG_P (DECL_RTL (val
))
738 && GET_MODE (DECL_RTL (val
)) != TYPE_MODE (type
))))
739 mark_addressable (val
);
746 if (ninputs
+ noutputs
> MAX_RECOG_OPERANDS
)
748 error ("more than %d operands in %<asm%>", MAX_RECOG_OPERANDS
);
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
)
762 constraint
= constraints
[i
+ noutputs
];
763 if (! parse_input_constraint (&constraint
, i
, ninputs
, noutputs
, ninout
,
764 constraints
, &allows_mem
, &allows_reg
))
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. */
775 do_pending_stack_adjust ();
778 for (i
= 0, tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
), i
++)
780 tree val
= TREE_VALUE (tail
);
781 tree type
= TREE_TYPE (val
);
788 ok
= parse_output_constraint (&constraints
[i
], i
, ninputs
,
789 noutputs
, &allows_mem
, &allows_reg
,
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
804 && (allows_mem
|| REG_P (DECL_RTL (val
)))
805 && ! (REG_P (DECL_RTL (val
))
806 && GET_MODE (DECL_RTL (val
)) != TYPE_MODE (type
)))
810 op
= expand_expr (val
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
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
));
822 emit_move_insn (op
, real_output_rtx
[i
]);
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
);
835 generating_concat_p
= old_generating_concat_p
;
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
,
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
;
873 constraint
= constraints
[i
+ noutputs
];
874 ok
= parse_input_constraint (&constraint
, i
, ninputs
, noutputs
, ninout
,
875 constraints
, &allows_mem
, &allows_reg
);
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
);
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",
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. */
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
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
];
935 ASM_OPERANDS_INPUT (body
, ninputs
- ninout
+ i
)
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. */
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
));
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
++)
984 = gen_rtx_SET (VOIDmode
,
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. */
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
));
1007 int j
= decode_reg_name_and_count (regname
, &nregs
);
1012 if (j
== -3) /* `cc', which is not a register */
1015 if (j
== -4) /* `memory', don't cache memory across asm */
1017 XVECEXP (body
, 0, i
++)
1018 = gen_rtx_CLOBBER (VOIDmode
,
1021 gen_rtx_SCRATCH (VOIDmode
)));
1025 /* Ignore unknown register, error already signaled. */
1029 for (reg
= j
; reg
< j
+ nregs
; reg
++)
1031 /* Use QImode since that's guaranteed to clobber just
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
1039 if (!clobber_conflict_found
)
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
,
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
,
1056 ("asm clobber conflict with input operand");
1059 XVECEXP (body
, 0, i
++)
1060 = gen_rtx_CLOBBER (VOIDmode
, clobbered_reg
);
1065 emit_jump_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;
1081 expand_asm_stmt (gimple stmt
)
1084 tree outputs
, tail
, t
;
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. */
1095 n
= gimple_asm_noutputs (stmt
);
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
);
1104 n
= gimple_asm_ninputs (stmt
);
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
);
1113 n
= gimple_asm_nclobbers (stmt
);
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
);
1122 n
= gimple_asm_nlabels (stmt
);
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
);
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);
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. */
1172 check_operand_nalternatives (tree outputs
, tree inputs
)
1174 if (outputs
|| inputs
)
1176 tree tmp
= TREE_PURPOSE (outputs
? outputs
: inputs
);
1178 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp
)));
1181 if (nalternatives
+ 1 > MAX_RECOG_ALTERNATIVES
)
1183 error ("too many alternatives in %<asm%>");
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");
1200 if (TREE_CHAIN (tmp
))
1201 tmp
= TREE_CHAIN (tmp
);
1203 tmp
= next
, next
= 0;
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. */
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
));
1226 for (j
= TREE_CHAIN (i
); j
; j
= TREE_CHAIN (j
))
1227 if (simple_cst_equal (i_name
, TREE_PURPOSE (TREE_PURPOSE (j
))))
1231 for (i
= inputs
; i
; i
= TREE_CHAIN (i
))
1233 i_name
= TREE_PURPOSE (TREE_PURPOSE (i
));
1237 for (j
= TREE_CHAIN (i
); j
; j
= TREE_CHAIN (j
))
1238 if (simple_cst_equal (i_name
, TREE_PURPOSE (TREE_PURPOSE (j
))))
1240 for (j
= outputs
; j
; j
= TREE_CHAIN (j
))
1241 if (simple_cst_equal (i_name
, TREE_PURPOSE (TREE_PURPOSE (j
))))
1245 for (i
= labels
; i
; i
= TREE_CHAIN (i
))
1247 i_name
= TREE_PURPOSE (i
);
1251 for (j
= TREE_CHAIN (i
); j
; j
= TREE_CHAIN (j
))
1252 if (simple_cst_equal (i_name
, TREE_PURPOSE (j
)))
1254 for (j
= inputs
; j
; j
= TREE_CHAIN (j
))
1255 if (simple_cst_equal (i_name
, TREE_PURPOSE (TREE_PURPOSE (j
))))
1262 error ("duplicate asm operand name %qs", TREE_STRING_POINTER (i_name
));
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. */
1271 resolve_asm_operand_names (tree string
, tree outputs
, tree inputs
, tree labels
)
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
);
1296 /* Now check for any needed substitutions in the template. */
1297 c
= TREE_STRING_POINTER (string
);
1298 while ((c
= strchr (c
, '%')) != NULL
)
1302 else if (ISALPHA (c
[1]) && c
[2] == '[')
1306 c
+= 1 + (c
[1] == '%');
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
)
1324 else if (ISALPHA (p
[1]) && p
[2] == '[')
1328 p
+= 1 + (p
[1] == '%');
1332 p
= resolve_operand_name_1 (p
, outputs
, inputs
, labels
);
1335 string
= build_string (strlen (buffer
), buffer
);
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. */
1348 resolve_operand_name_1 (char *p
, tree outputs
, tree inputs
, tree labels
)
1354 /* Collect the operand name. */
1355 q
= strchr (++p
, ']');
1358 error ("missing close brace for named operand");
1359 return strchr (p
, '\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)
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)
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)
1383 error ("undefined named operand %qs", identifier_to_locale (p
));
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);
1402 /* Generate RTL to return from the current function, with no value.
1403 (That is, we do not do anything about returning any value.) */
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.) */
1420 expand_naked_return (void)
1424 clear_pending_stack_adjust ();
1425 do_pending_stack_adjust ();
1427 end_label
= naked_return_label
;
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. */
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);
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
));
1461 emit_move_insn (return_reg
, val
);
1464 expand_null_return_1 ();
1467 /* Output a return with no value. */
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. */
1481 expand_return (tree retval
)
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 ();
1495 if (retval
== error_mark_node
)
1497 /* Treat this like a return of no value from a function that
1499 expand_null_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);
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
);
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
);
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
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
);
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
1560 expand_nl_goto_receiver (void)
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
)
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
;
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
)
1607 if (i
== ARRAY_SIZE (elim_regs
))
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 ()));
1618 #ifdef HAVE_nonlocal_goto_receiver
1619 if (HAVE_nonlocal_goto_receiver
)
1620 emit_insn (gen_nonlocal_goto_receiver ());
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)
1635 do_pending_stack_adjust ();
1636 emit_stack_save (SAVE_BLOCK
, &ret
);
1640 /* Emit code to restore the current value of stack. */
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. */
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
);
1686 r
->code_label
= label
;
1687 r
->parent
= r
->left
= NULL
;
1689 r
->subtree_prob
= prob
;
1694 /* Dump ROOT, a list or tree of case nodes, to file. */
1697 dump_case_nodes (FILE *f
, struct case_node
*root
,
1698 int indent_step
, int indent_level
)
1700 HOST_WIDE_INT low
, high
;
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);
1713 fprintf(f
, "%*s" HOST_WIDE_INT_PRINT_DEC
,
1714 indent_step
* indent_level
, "", low
);
1716 fprintf(f
, "%*s" HOST_WIDE_INT_PRINT_DEC
" ... " HOST_WIDE_INT_PRINT_DEC
,
1717 indent_step
* indent_level
, "", low
, high
);
1720 dump_case_nodes (f
, root
->right
, indent_step
, indent_level
);
1724 #define HAVE_casesi 0
1727 #ifndef HAVE_tablejump
1728 #define HAVE_tablejump 0
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. */
1735 case_values_threshold (void)
1737 unsigned int threshold
= PARAM_VALUE (PARAM_CASE_VALUES_THRESHOLD
);
1740 threshold
= targetm
.case_values_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. */
1751 expand_switch_as_decision_tree_p (tree range
,
1752 unsigned int uniq ATTRIBUTE_UNUSED
,
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
)
1761 if (!flag_jump_tables
)
1764 /* If the switch is relatively small such that the cost of one
1765 indirect jump on the target are higher than the cost of a
1766 decision tree, go with the decision tree.
1768 If range of values is much bigger than number of values,
1769 or if it is too large to represent in a HOST_WIDE_INT,
1770 make a sequence of conditional branches instead of a dispatch.
1772 The definition of "much bigger" depends on whether we are
1773 optimizing for size or for speed. If the former, the maximum
1774 ratio range/count = 3, because this was found to be the optimal
1775 ratio for size on i686-pc-linux-gnu, see PR11823. The ratio
1776 10 is much older, and was probably selected after an extensive
1777 benchmarking investigation on numerous platforms. Or maybe it
1778 just made sense to someone at some point in the history of GCC,
1780 max_ratio
= optimize_insn_for_size_p () ? 3 : 10;
1781 if (count
< case_values_threshold ()
1782 || ! host_integerp (range
, /*pos=*/1)
1783 || compare_tree_int (range
, max_ratio
* count
) > 0)
1789 /* Generate a decision tree, switching on INDEX_EXPR and jumping to
1790 one of the labels in CASE_LIST or to the DEFAULT_LABEL.
1791 DEFAULT_PROB is the estimated probability that it jumps to
1794 We generate a binary decision tree to select the appropriate target
1795 code. This is done as follows:
1797 If the index is a short or char that we do not have
1798 an insn to handle comparisons directly, convert it to
1799 a full integer now, rather than letting each comparison
1800 generate the conversion.
1802 Load the index into a register.
1804 The list of cases is rearranged into a binary tree,
1805 nearly optimal assuming equal probability for each case.
1807 The tree is transformed into RTL, eliminating redundant
1808 test conditions at the same time.
1810 If program flow could reach the end of the decision tree
1811 an unconditional jump to the default code is emitted.
1813 The above process is unaware of the CFG. The caller has to fix up
1814 the CFG itself. This is done in cfgexpand.c. */
1817 emit_case_decision_tree (tree index_expr
, tree index_type
,
1818 struct case_node
*case_list
, rtx default_label
,
1821 rtx index
= expand_normal (index_expr
);
1823 if (GET_MODE_CLASS (GET_MODE (index
)) == MODE_INT
1824 && ! have_insn_for (COMPARE
, GET_MODE (index
)))
1826 int unsignedp
= TYPE_UNSIGNED (index_type
);
1827 enum machine_mode wider_mode
;
1828 for (wider_mode
= GET_MODE (index
); wider_mode
!= VOIDmode
;
1829 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
1830 if (have_insn_for (COMPARE
, wider_mode
))
1832 index
= convert_to_mode (wider_mode
, index
, unsignedp
);
1837 do_pending_stack_adjust ();
1841 index
= copy_to_reg (index
);
1842 if (TREE_CODE (index_expr
) == SSA_NAME
)
1843 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (index_expr
), index
);
1846 balance_case_nodes (&case_list
, NULL
);
1848 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1850 int indent_step
= ceil_log2 (TYPE_PRECISION (index_type
)) + 2;
1851 fprintf (dump_file
, ";; Expanding GIMPLE switch as decision tree:\n");
1852 dump_case_nodes (dump_file
, case_list
, indent_step
, 0);
1855 emit_case_nodes (index
, case_list
, default_label
, default_prob
, index_type
);
1857 emit_jump (default_label
);
1860 /* Return the sum of probabilities of outgoing edges of basic block BB. */
1863 get_outgoing_edge_probs (basic_block bb
)
1870 FOR_EACH_EDGE(e
, ei
, bb
->succs
)
1871 prob_sum
+= e
->probability
;
1875 /* Computes the conditional probability of jumping to a target if the branch
1876 instruction is executed.
1877 TARGET_PROB is the estimated probability of jumping to a target relative
1878 to some basic block BB.
1879 BASE_PROB is the probability of reaching the branch instruction relative
1880 to the same basic block BB. */
1883 conditional_probability (int target_prob
, int base_prob
)
1887 gcc_assert (target_prob
>= 0);
1888 gcc_assert (target_prob
<= base_prob
);
1889 return RDIV (target_prob
* REG_BR_PROB_BASE
, base_prob
);
1894 /* Generate a dispatch tabler, switching on INDEX_EXPR and jumping to
1895 one of the labels in CASE_LIST or to the DEFAULT_LABEL.
1896 MINVAL, MAXVAL, and RANGE are the extrema and range of the case
1897 labels in CASE_LIST. STMT_BB is the basic block containing the statement.
1899 First, a jump insn is emitted. First we try "casesi". If that
1900 fails, try "tablejump". A target *must* have one of them (or both).
1902 Then, a table with the target labels is emitted.
1904 The process is unaware of the CFG. The caller has to fix up
1905 the CFG itself. This is done in cfgexpand.c. */
1908 emit_case_dispatch_table (tree index_expr
, tree index_type
,
1909 struct case_node
*case_list
, rtx default_label
,
1910 tree minval
, tree maxval
, tree range
,
1911 basic_block stmt_bb
)
1914 struct case_node
*n
;
1916 rtx fallback_label
= label_rtx (case_list
->code_label
);
1917 rtx table_label
= gen_label_rtx ();
1918 bool has_gaps
= false;
1919 edge default_edge
= stmt_bb
? EDGE_SUCC(stmt_bb
, 0) : NULL
;
1920 int default_prob
= default_edge
? default_edge
->probability
: 0;
1921 int base
= get_outgoing_edge_probs (stmt_bb
);
1922 bool try_with_tablejump
= false;
1924 int new_default_prob
= conditional_probability (default_prob
,
1927 if (! try_casesi (index_type
, index_expr
, minval
, range
,
1928 table_label
, default_label
, fallback_label
,
1931 /* Index jumptables from zero for suitable values of minval to avoid
1932 a subtraction. For the rationale see:
1933 "http://gcc.gnu.org/ml/gcc-patches/2001-10/msg01234.html". */
1934 if (optimize_insn_for_speed_p ()
1935 && compare_tree_int (minval
, 0) > 0
1936 && compare_tree_int (minval
, 3) < 0)
1938 minval
= build_int_cst (index_type
, 0);
1942 try_with_tablejump
= true;
1945 /* Get table of labels to jump to, in order of case index. */
1947 ncases
= tree_low_cst (range
, 0) + 1;
1948 labelvec
= XALLOCAVEC (rtx
, ncases
);
1949 memset (labelvec
, 0, ncases
* sizeof (rtx
));
1951 for (n
= case_list
; n
; n
= n
->right
)
1953 /* Compute the low and high bounds relative to the minimum
1954 value since that should fit in a HOST_WIDE_INT while the
1955 actual values may not. */
1957 = tree_low_cst (fold_build2 (MINUS_EXPR
, index_type
,
1958 n
->low
, minval
), 1);
1959 HOST_WIDE_INT i_high
1960 = tree_low_cst (fold_build2 (MINUS_EXPR
, index_type
,
1961 n
->high
, minval
), 1);
1964 for (i
= i_low
; i
<= i_high
; i
++)
1966 = gen_rtx_LABEL_REF (Pmode
, label_rtx (n
->code_label
));
1969 /* Fill in the gaps with the default. We may have gaps at
1970 the beginning if we tried to avoid the minval subtraction,
1971 so substitute some label even if the default label was
1972 deemed unreachable. */
1974 default_label
= fallback_label
;
1975 for (i
= 0; i
< ncases
; i
++)
1976 if (labelvec
[i
] == 0)
1979 labelvec
[i
] = gen_rtx_LABEL_REF (Pmode
, default_label
);
1984 /* There is at least one entry in the jump table that jumps
1985 to default label. The default label can either be reached
1986 through the indirect jump or the direct conditional jump
1987 before that. Split the probability of reaching the
1988 default label among these two jumps. */
1989 new_default_prob
= conditional_probability (default_prob
/2,
1992 base
-= default_prob
;
1996 base
-= default_prob
;
2001 default_edge
->probability
= default_prob
;
2003 /* We have altered the probability of the default edge. So the probabilities
2004 of all other edges need to be adjusted so that it sums up to
2005 REG_BR_PROB_BASE. */
2010 FOR_EACH_EDGE (e
, ei
, stmt_bb
->succs
)
2011 e
->probability
= RDIV (e
->probability
* REG_BR_PROB_BASE
, base
);
2014 if (try_with_tablejump
)
2016 bool ok
= try_tablejump (index_type
, index_expr
, minval
, range
,
2017 table_label
, default_label
, new_default_prob
);
2020 /* Output the table. */
2021 emit_label (table_label
);
2023 if (CASE_VECTOR_PC_RELATIVE
|| flag_pic
)
2024 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE
,
2025 gen_rtx_LABEL_REF (Pmode
, table_label
),
2026 gen_rtvec_v (ncases
, labelvec
),
2027 const0_rtx
, const0_rtx
));
2029 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE
,
2030 gen_rtvec_v (ncases
, labelvec
)));
2032 /* Record no drop-through after the table. */
2036 /* Reset the aux field of all outgoing edges of basic block BB. */
2039 reset_out_edges_aux (basic_block bb
)
2043 FOR_EACH_EDGE(e
, ei
, bb
->succs
)
2047 /* Compute the number of case labels that correspond to each outgoing edge of
2048 STMT. Record this information in the aux field of the edge. */
2051 compute_cases_per_edge (gimple stmt
)
2053 basic_block bb
= gimple_bb (stmt
);
2054 reset_out_edges_aux (bb
);
2055 int ncases
= gimple_switch_num_labels (stmt
);
2056 for (int i
= ncases
- 1; i
>= 1; --i
)
2058 tree elt
= gimple_switch_label (stmt
, i
);
2059 tree lab
= CASE_LABEL (elt
);
2060 basic_block case_bb
= label_to_block_fn (cfun
, lab
);
2061 edge case_edge
= find_edge (bb
, case_bb
);
2062 case_edge
->aux
= (void *)((intptr_t)(case_edge
->aux
) + 1);
2066 /* Terminate a case (Pascal/Ada) or switch (C) statement
2067 in which ORIG_INDEX is the expression to be tested.
2068 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
2069 type as given in the source before any compiler conversions.
2070 Generate the code to test it and jump to the right place. */
2073 expand_case (gimple stmt
)
2075 tree minval
= NULL_TREE
, maxval
= NULL_TREE
, range
= NULL_TREE
;
2076 rtx default_label
= NULL_RTX
;
2077 unsigned int count
, uniq
;
2079 int ncases
= gimple_switch_num_labels (stmt
);
2080 tree index_expr
= gimple_switch_index (stmt
);
2081 tree index_type
= TREE_TYPE (index_expr
);
2083 basic_block bb
= gimple_bb (stmt
);
2085 /* A list of case labels; it is first built as a list and it may then
2086 be rearranged into a nearly balanced binary tree. */
2087 struct case_node
*case_list
= 0;
2089 /* A pool for case nodes. */
2090 alloc_pool case_node_pool
;
2092 /* An ERROR_MARK occurs for various reasons including invalid data type.
2093 ??? Can this still happen, with GIMPLE and all? */
2094 if (index_type
== error_mark_node
)
2097 /* cleanup_tree_cfg removes all SWITCH_EXPR with their index
2098 expressions being INTEGER_CST. */
2099 gcc_assert (TREE_CODE (index_expr
) != INTEGER_CST
);
2101 case_node_pool
= create_alloc_pool ("struct case_node pool",
2102 sizeof (struct case_node
),
2105 do_pending_stack_adjust ();
2107 /* Find the default case target label. */
2108 default_label
= label_rtx (CASE_LABEL (gimple_switch_default_label (stmt
)));
2109 edge default_edge
= EDGE_SUCC(bb
, 0);
2110 int default_prob
= default_edge
->probability
;
2112 /* Get upper and lower bounds of case values. */
2113 elt
= gimple_switch_label (stmt
, 1);
2114 minval
= fold_convert (index_type
, CASE_LOW (elt
));
2115 elt
= gimple_switch_label (stmt
, ncases
- 1);
2116 if (CASE_HIGH (elt
))
2117 maxval
= fold_convert (index_type
, CASE_HIGH (elt
));
2119 maxval
= fold_convert (index_type
, CASE_LOW (elt
));
2121 /* Compute span of values. */
2122 range
= fold_build2 (MINUS_EXPR
, index_type
, maxval
, minval
);
2124 /* Listify the labels queue and gather some numbers to decide
2125 how to expand this switch(). */
2128 struct pointer_set_t
*seen_labels
= pointer_set_create ();
2129 compute_cases_per_edge (stmt
);
2131 for (i
= ncases
- 1; i
>= 1; --i
)
2133 elt
= gimple_switch_label (stmt
, i
);
2134 tree low
= CASE_LOW (elt
);
2136 tree high
= CASE_HIGH (elt
);
2137 gcc_assert (! high
|| tree_int_cst_lt (low
, high
));
2138 tree lab
= CASE_LABEL (elt
);
2140 /* Count the elements.
2141 A range counts double, since it requires two compares. */
2146 /* If we have not seen this label yet, then increase the
2147 number of unique case node targets seen. */
2148 if (!pointer_set_insert (seen_labels
, lab
))
2151 /* The bounds on the case range, LOW and HIGH, have to be converted
2152 to case's index type TYPE. Note that the original type of the
2153 case index in the source code is usually "lost" during
2154 gimplification due to type promotion, but the case labels retain the
2155 original type. Make sure to drop overflow flags. */
2156 low
= fold_convert (index_type
, low
);
2157 if (TREE_OVERFLOW (low
))
2158 low
= build_int_cst_wide (index_type
,
2159 TREE_INT_CST_LOW (low
),
2160 TREE_INT_CST_HIGH (low
));
2162 /* The canonical from of a case label in GIMPLE is that a simple case
2163 has an empty CASE_HIGH. For the casesi and tablejump expanders,
2164 the back ends want simple cases to have high == low. */
2167 high
= fold_convert (index_type
, high
);
2168 if (TREE_OVERFLOW (high
))
2169 high
= build_int_cst_wide (index_type
,
2170 TREE_INT_CST_LOW (high
),
2171 TREE_INT_CST_HIGH (high
));
2173 basic_block case_bb
= label_to_block_fn (cfun
, lab
);
2174 edge case_edge
= find_edge (bb
, case_bb
);
2175 case_list
= add_case_node (
2176 case_list
, low
, high
, lab
,
2177 case_edge
->probability
/ (intptr_t)(case_edge
->aux
),
2180 pointer_set_destroy (seen_labels
);
2181 reset_out_edges_aux (bb
);
2183 /* cleanup_tree_cfg removes all SWITCH_EXPR with a single
2184 destination, such as one with a default case only.
2185 It also removes cases that are out of range for the switch
2186 type, so we should never get a zero here. */
2187 gcc_assert (count
> 0);
2189 rtx before_case
= get_last_insn ();
2191 /* Decide how to expand this switch.
2192 The two options at this point are a dispatch table (casesi or
2193 tablejump) or a decision tree. */
2195 if (expand_switch_as_decision_tree_p (range
, uniq
, count
))
2196 emit_case_decision_tree (index_expr
, index_type
,
2197 case_list
, default_label
,
2200 emit_case_dispatch_table (index_expr
, index_type
,
2201 case_list
, default_label
,
2202 minval
, maxval
, range
, bb
);
2204 reorder_insns (NEXT_INSN (before_case
), get_last_insn (), before_case
);
2207 free_alloc_pool (case_node_pool
);
2210 /* Expand the dispatch to a short decrement chain if there are few cases
2211 to dispatch to. Likewise if neither casesi nor tablejump is available,
2212 or if flag_jump_tables is set. Otherwise, expand as a casesi or a
2213 tablejump. The index mode is always the mode of integer_type_node.
2214 Trap if no case matches the index.
2216 DISPATCH_INDEX is the index expression to switch on. It should be a
2217 memory or register operand.
2219 DISPATCH_TABLE is a set of case labels. The set should be sorted in
2220 ascending order, be contiguous, starting with value 0, and contain only
2221 single-valued case labels. */
2224 expand_sjlj_dispatch_table (rtx dispatch_index
,
2225 vec
<tree
> dispatch_table
)
2227 tree index_type
= integer_type_node
;
2228 enum machine_mode index_mode
= TYPE_MODE (index_type
);
2230 int ncases
= dispatch_table
.length ();
2232 do_pending_stack_adjust ();
2233 rtx before_case
= get_last_insn ();
2235 /* Expand as a decrement-chain if there are 5 or fewer dispatch
2236 labels. This covers more than 98% of the cases in libjava,
2237 and seems to be a reasonable compromise between the "old way"
2238 of expanding as a decision tree or dispatch table vs. the "new
2239 way" with decrement chain or dispatch table. */
2240 if (dispatch_table
.length () <= 5
2241 || (!HAVE_casesi
&& !HAVE_tablejump
)
2242 || !flag_jump_tables
)
2244 /* Expand the dispatch as a decrement chain:
2246 "switch(index) {case 0: do_0; case 1: do_1; ...; case N: do_N;}"
2250 if (index == 0) do_0; else index--;
2251 if (index == 0) do_1; else index--;
2253 if (index == 0) do_N; else index--;
2255 This is more efficient than a dispatch table on most machines.
2256 The last "index--" is redundant but the code is trivially dead
2257 and will be cleaned up by later passes. */
2258 rtx index
= copy_to_mode_reg (index_mode
, dispatch_index
);
2259 rtx zero
= CONST0_RTX (index_mode
);
2260 for (int i
= 0; i
< ncases
; i
++)
2262 tree elt
= dispatch_table
[i
];
2263 rtx lab
= label_rtx (CASE_LABEL (elt
));
2264 do_jump_if_equal (index_mode
, index
, zero
, lab
, 0, -1);
2265 force_expand_binop (index_mode
, sub_optab
,
2266 index
, CONST1_RTX (index_mode
),
2267 index
, 0, OPTAB_DIRECT
);
2272 /* Similar to expand_case, but much simpler. */
2273 struct case_node
*case_list
= 0;
2274 alloc_pool case_node_pool
= create_alloc_pool ("struct sjlj_case pool",
2275 sizeof (struct case_node
),
2277 tree index_expr
= make_tree (index_type
, dispatch_index
);
2278 tree minval
= build_int_cst (index_type
, 0);
2279 tree maxval
= CASE_LOW (dispatch_table
.last ());
2280 tree range
= maxval
;
2281 rtx default_label
= gen_label_rtx ();
2283 for (int i
= ncases
- 1; i
>= 0; --i
)
2285 tree elt
= dispatch_table
[i
];
2286 tree low
= CASE_LOW (elt
);
2287 tree lab
= CASE_LABEL (elt
);
2288 case_list
= add_case_node (case_list
, low
, low
, lab
, 0, case_node_pool
);
2291 emit_case_dispatch_table (index_expr
, index_type
,
2292 case_list
, default_label
,
2293 minval
, maxval
, range
,
2294 BLOCK_FOR_INSN (before_case
));
2295 emit_label (default_label
);
2296 free_alloc_pool (case_node_pool
);
2299 /* Dispatching something not handled? Trap! */
2300 expand_builtin_trap ();
2302 reorder_insns (NEXT_INSN (before_case
), get_last_insn (), before_case
);
2308 /* Take an ordered list of case nodes
2309 and transform them into a near optimal binary tree,
2310 on the assumption that any target code selection value is as
2311 likely as any other.
2313 The transformation is performed by splitting the ordered
2314 list into two equal sections plus a pivot. The parts are
2315 then attached to the pivot as left and right branches. Each
2316 branch is then transformed recursively. */
2319 balance_case_nodes (case_node_ptr
*head
, case_node_ptr parent
)
2331 /* Count the number of entries on branch. Also count the ranges. */
2335 if (!tree_int_cst_equal (np
->low
, np
->high
))
2344 /* Split this list if it is long enough for that to help. */
2348 /* If there are just three nodes, split at the middle one. */
2350 npp
= &(*npp
)->right
;
2353 /* Find the place in the list that bisects the list's total cost,
2354 where ranges count as 2.
2355 Here I gets half the total cost. */
2356 i
= (i
+ ranges
+ 1) / 2;
2359 /* Skip nodes while their cost does not reach that amount. */
2360 if (!tree_int_cst_equal ((*npp
)->low
, (*npp
)->high
))
2365 npp
= &(*npp
)->right
;
2370 np
->parent
= parent
;
2373 /* Optimize each of the two split parts. */
2374 balance_case_nodes (&np
->left
, np
);
2375 balance_case_nodes (&np
->right
, np
);
2376 np
->subtree_prob
= np
->prob
;
2377 np
->subtree_prob
+= np
->left
->subtree_prob
;
2378 np
->subtree_prob
+= np
->right
->subtree_prob
;
2382 /* Else leave this branch as one level,
2383 but fill in `parent' fields. */
2385 np
->parent
= parent
;
2386 np
->subtree_prob
= np
->prob
;
2387 for (; np
->right
; np
= np
->right
)
2389 np
->right
->parent
= np
;
2390 (*head
)->subtree_prob
+= np
->right
->subtree_prob
;
2396 /* Search the parent sections of the case node tree
2397 to see if a test for the lower bound of NODE would be redundant.
2398 INDEX_TYPE is the type of the index expression.
2400 The instructions to generate the case decision tree are
2401 output in the same order as nodes are processed so it is
2402 known that if a parent node checks the range of the current
2403 node minus one that the current node is bounded at its lower
2404 span. Thus the test would be redundant. */
2407 node_has_low_bound (case_node_ptr node
, tree index_type
)
2410 case_node_ptr pnode
;
2412 /* If the lower bound of this node is the lowest value in the index type,
2413 we need not test it. */
2415 if (tree_int_cst_equal (node
->low
, TYPE_MIN_VALUE (index_type
)))
2418 /* If this node has a left branch, the value at the left must be less
2419 than that at this node, so it cannot be bounded at the bottom and
2420 we need not bother testing any further. */
2425 low_minus_one
= fold_build2 (MINUS_EXPR
, TREE_TYPE (node
->low
),
2427 build_int_cst (TREE_TYPE (node
->low
), 1));
2429 /* If the subtraction above overflowed, we can't verify anything.
2430 Otherwise, look for a parent that tests our value - 1. */
2432 if (! tree_int_cst_lt (low_minus_one
, node
->low
))
2435 for (pnode
= node
->parent
; pnode
; pnode
= pnode
->parent
)
2436 if (tree_int_cst_equal (low_minus_one
, pnode
->high
))
2442 /* Search the parent sections of the case node tree
2443 to see if a test for the upper bound of NODE would be redundant.
2444 INDEX_TYPE is the type of the index expression.
2446 The instructions to generate the case decision tree are
2447 output in the same order as nodes are processed so it is
2448 known that if a parent node checks the range of the current
2449 node plus one that the current node is bounded at its upper
2450 span. Thus the test would be redundant. */
2453 node_has_high_bound (case_node_ptr node
, tree index_type
)
2456 case_node_ptr pnode
;
2458 /* If there is no upper bound, obviously no test is needed. */
2460 if (TYPE_MAX_VALUE (index_type
) == NULL
)
2463 /* If the upper bound of this node is the highest value in the type
2464 of the index expression, we need not test against it. */
2466 if (tree_int_cst_equal (node
->high
, TYPE_MAX_VALUE (index_type
)))
2469 /* If this node has a right branch, the value at the right must be greater
2470 than that at this node, so it cannot be bounded at the top and
2471 we need not bother testing any further. */
2476 high_plus_one
= fold_build2 (PLUS_EXPR
, TREE_TYPE (node
->high
),
2478 build_int_cst (TREE_TYPE (node
->high
), 1));
2480 /* If the addition above overflowed, we can't verify anything.
2481 Otherwise, look for a parent that tests our value + 1. */
2483 if (! tree_int_cst_lt (node
->high
, high_plus_one
))
2486 for (pnode
= node
->parent
; pnode
; pnode
= pnode
->parent
)
2487 if (tree_int_cst_equal (high_plus_one
, pnode
->low
))
2493 /* Search the parent sections of the
2494 case node tree to see if both tests for the upper and lower
2495 bounds of NODE would be redundant. */
2498 node_is_bounded (case_node_ptr node
, tree index_type
)
2500 return (node_has_low_bound (node
, index_type
)
2501 && node_has_high_bound (node
, index_type
));
2505 /* Emit step-by-step code to select a case for the value of INDEX.
2506 The thus generated decision tree follows the form of the
2507 case-node binary tree NODE, whose nodes represent test conditions.
2508 INDEX_TYPE is the type of the index of the switch.
2510 Care is taken to prune redundant tests from the decision tree
2511 by detecting any boundary conditions already checked by
2512 emitted rtx. (See node_has_high_bound, node_has_low_bound
2513 and node_is_bounded, above.)
2515 Where the test conditions can be shown to be redundant we emit
2516 an unconditional jump to the target code. As a further
2517 optimization, the subordinates of a tree node are examined to
2518 check for bounded nodes. In this case conditional and/or
2519 unconditional jumps as a result of the boundary check for the
2520 current node are arranged to target the subordinates associated
2521 code for out of bound conditions on the current node.
2523 We can assume that when control reaches the code generated here,
2524 the index value has already been compared with the parents
2525 of this node, and determined to be on the same side of each parent
2526 as this node is. Thus, if this node tests for the value 51,
2527 and a parent tested for 52, we don't need to consider
2528 the possibility of a value greater than 51. If another parent
2529 tests for the value 50, then this node need not test anything. */
2532 emit_case_nodes (rtx index
, case_node_ptr node
, rtx default_label
,
2533 int default_prob
, tree index_type
)
2535 /* If INDEX has an unsigned type, we must make unsigned branches. */
2536 int unsignedp
= TYPE_UNSIGNED (index_type
);
2538 int prob
= node
->prob
, subtree_prob
= node
->subtree_prob
;
2539 enum machine_mode mode
= GET_MODE (index
);
2540 enum machine_mode imode
= TYPE_MODE (index_type
);
2542 /* Handle indices detected as constant during RTL expansion. */
2543 if (mode
== VOIDmode
)
2546 /* See if our parents have already tested everything for us.
2547 If they have, emit an unconditional jump for this node. */
2548 if (node_is_bounded (node
, index_type
))
2549 emit_jump (label_rtx (node
->code_label
));
2551 else if (tree_int_cst_equal (node
->low
, node
->high
))
2553 probability
= conditional_probability (prob
, subtree_prob
+ default_prob
);
2554 /* Node is single valued. First see if the index expression matches
2555 this node and then check our children, if any. */
2556 do_jump_if_equal (mode
, index
,
2557 convert_modes (mode
, imode
,
2558 expand_normal (node
->low
),
2560 label_rtx (node
->code_label
), unsignedp
, probability
);
2561 /* Since this case is taken at this point, reduce its weight from
2563 subtree_prob
-= prob
;
2564 if (node
->right
!= 0 && node
->left
!= 0)
2566 /* This node has children on both sides.
2567 Dispatch to one side or the other
2568 by comparing the index value with this node's value.
2569 If one subtree is bounded, check that one first,
2570 so we can avoid real branches in the tree. */
2572 if (node_is_bounded (node
->right
, index_type
))
2574 probability
= conditional_probability (
2576 subtree_prob
+ default_prob
);
2577 emit_cmp_and_jump_insns (index
,
2580 expand_normal (node
->high
),
2582 GT
, NULL_RTX
, mode
, unsignedp
,
2583 label_rtx (node
->right
->code_label
),
2585 emit_case_nodes (index
, node
->left
, default_label
, default_prob
,
2589 else if (node_is_bounded (node
->left
, index_type
))
2591 probability
= conditional_probability (
2593 subtree_prob
+ default_prob
);
2594 emit_cmp_and_jump_insns (index
,
2597 expand_normal (node
->high
),
2599 LT
, NULL_RTX
, mode
, unsignedp
,
2600 label_rtx (node
->left
->code_label
),
2602 emit_case_nodes (index
, node
->right
, default_label
, default_prob
, index_type
);
2605 /* If both children are single-valued cases with no
2606 children, finish up all the work. This way, we can save
2607 one ordered comparison. */
2608 else if (tree_int_cst_equal (node
->right
->low
, node
->right
->high
)
2609 && node
->right
->left
== 0
2610 && node
->right
->right
== 0
2611 && tree_int_cst_equal (node
->left
->low
, node
->left
->high
)
2612 && node
->left
->left
== 0
2613 && node
->left
->right
== 0)
2615 /* Neither node is bounded. First distinguish the two sides;
2616 then emit the code for one side at a time. */
2618 /* See if the value matches what the right hand side
2620 probability
= conditional_probability (
2622 subtree_prob
+ default_prob
);
2623 do_jump_if_equal (mode
, index
,
2624 convert_modes (mode
, imode
,
2625 expand_normal (node
->right
->low
),
2627 label_rtx (node
->right
->code_label
),
2628 unsignedp
, probability
);
2630 /* See if the value matches what the left hand side
2632 probability
= conditional_probability (
2634 subtree_prob
+ default_prob
);
2635 do_jump_if_equal (mode
, index
,
2636 convert_modes (mode
, imode
,
2637 expand_normal (node
->left
->low
),
2639 label_rtx (node
->left
->code_label
),
2640 unsignedp
, probability
);
2645 /* Neither node is bounded. First distinguish the two sides;
2646 then emit the code for one side at a time. */
2649 = build_decl (curr_insn_location (),
2650 LABEL_DECL
, NULL_TREE
, NULL_TREE
);
2652 /* The default label could be reached either through the right
2653 subtree or the left subtree. Divide the probability
2655 probability
= conditional_probability (
2656 node
->right
->subtree_prob
+ default_prob
/2,
2657 subtree_prob
+ default_prob
);
2658 /* See if the value is on the right. */
2659 emit_cmp_and_jump_insns (index
,
2662 expand_normal (node
->high
),
2664 GT
, NULL_RTX
, mode
, unsignedp
,
2665 label_rtx (test_label
),
2669 /* Value must be on the left.
2670 Handle the left-hand subtree. */
2671 emit_case_nodes (index
, node
->left
, default_label
, default_prob
, index_type
);
2672 /* If left-hand subtree does nothing,
2675 emit_jump (default_label
);
2677 /* Code branches here for the right-hand subtree. */
2678 expand_label (test_label
);
2679 emit_case_nodes (index
, node
->right
, default_label
, default_prob
, index_type
);
2683 else if (node
->right
!= 0 && node
->left
== 0)
2685 /* Here we have a right child but no left so we issue a conditional
2686 branch to default and process the right child.
2688 Omit the conditional branch to default if the right child
2689 does not have any children and is single valued; it would
2690 cost too much space to save so little time. */
2692 if (node
->right
->right
|| node
->right
->left
2693 || !tree_int_cst_equal (node
->right
->low
, node
->right
->high
))
2695 if (!node_has_low_bound (node
, index_type
))
2697 probability
= conditional_probability (
2699 subtree_prob
+ default_prob
);
2700 emit_cmp_and_jump_insns (index
,
2703 expand_normal (node
->high
),
2705 LT
, NULL_RTX
, mode
, unsignedp
,
2711 emit_case_nodes (index
, node
->right
, default_label
, default_prob
, index_type
);
2715 probability
= conditional_probability (
2716 node
->right
->subtree_prob
,
2717 subtree_prob
+ default_prob
);
2718 /* We cannot process node->right normally
2719 since we haven't ruled out the numbers less than
2720 this node's value. So handle node->right explicitly. */
2721 do_jump_if_equal (mode
, index
,
2724 expand_normal (node
->right
->low
),
2726 label_rtx (node
->right
->code_label
), unsignedp
, probability
);
2730 else if (node
->right
== 0 && node
->left
!= 0)
2732 /* Just one subtree, on the left. */
2733 if (node
->left
->left
|| node
->left
->right
2734 || !tree_int_cst_equal (node
->left
->low
, node
->left
->high
))
2736 if (!node_has_high_bound (node
, index_type
))
2738 probability
= conditional_probability (
2740 subtree_prob
+ default_prob
);
2741 emit_cmp_and_jump_insns (index
,
2744 expand_normal (node
->high
),
2746 GT
, NULL_RTX
, mode
, unsignedp
,
2752 emit_case_nodes (index
, node
->left
, default_label
,
2753 default_prob
, index_type
);
2757 probability
= conditional_probability (
2758 node
->left
->subtree_prob
,
2759 subtree_prob
+ default_prob
);
2760 /* We cannot process node->left normally
2761 since we haven't ruled out the numbers less than
2762 this node's value. So handle node->left explicitly. */
2763 do_jump_if_equal (mode
, index
,
2766 expand_normal (node
->left
->low
),
2768 label_rtx (node
->left
->code_label
), unsignedp
, probability
);
2774 /* Node is a range. These cases are very similar to those for a single
2775 value, except that we do not start by testing whether this node
2776 is the one to branch to. */
2778 if (node
->right
!= 0 && node
->left
!= 0)
2780 /* Node has subtrees on both sides.
2781 If the right-hand subtree is bounded,
2782 test for it first, since we can go straight there.
2783 Otherwise, we need to make a branch in the control structure,
2784 then handle the two subtrees. */
2785 tree test_label
= 0;
2787 if (node_is_bounded (node
->right
, index_type
))
2789 /* Right hand node is fully bounded so we can eliminate any
2790 testing and branch directly to the target code. */
2791 probability
= conditional_probability (
2792 node
->right
->subtree_prob
,
2793 subtree_prob
+ default_prob
);
2794 emit_cmp_and_jump_insns (index
,
2797 expand_normal (node
->high
),
2799 GT
, NULL_RTX
, mode
, unsignedp
,
2800 label_rtx (node
->right
->code_label
),
2805 /* Right hand node requires testing.
2806 Branch to a label where we will handle it later. */
2808 test_label
= build_decl (curr_insn_location (),
2809 LABEL_DECL
, NULL_TREE
, NULL_TREE
);
2810 probability
= conditional_probability (
2811 node
->right
->subtree_prob
+ default_prob
/2,
2812 subtree_prob
+ default_prob
);
2813 emit_cmp_and_jump_insns (index
,
2816 expand_normal (node
->high
),
2818 GT
, NULL_RTX
, mode
, unsignedp
,
2819 label_rtx (test_label
),
2824 /* Value belongs to this node or to the left-hand subtree. */
2826 probability
= conditional_probability (
2828 subtree_prob
+ default_prob
);
2829 emit_cmp_and_jump_insns (index
,
2832 expand_normal (node
->low
),
2834 GE
, NULL_RTX
, mode
, unsignedp
,
2835 label_rtx (node
->code_label
),
2838 /* Handle the left-hand subtree. */
2839 emit_case_nodes (index
, node
->left
, default_label
, default_prob
, index_type
);
2841 /* If right node had to be handled later, do that now. */
2845 /* If the left-hand subtree fell through,
2846 don't let it fall into the right-hand subtree. */
2848 emit_jump (default_label
);
2850 expand_label (test_label
);
2851 emit_case_nodes (index
, node
->right
, default_label
, default_prob
, index_type
);
2855 else if (node
->right
!= 0 && node
->left
== 0)
2857 /* Deal with values to the left of this node,
2858 if they are possible. */
2859 if (!node_has_low_bound (node
, index_type
))
2861 probability
= conditional_probability (
2863 subtree_prob
+ default_prob
);
2864 emit_cmp_and_jump_insns (index
,
2867 expand_normal (node
->low
),
2869 LT
, NULL_RTX
, mode
, unsignedp
,
2875 /* Value belongs to this node or to the right-hand subtree. */
2877 probability
= conditional_probability (
2879 subtree_prob
+ default_prob
);
2880 emit_cmp_and_jump_insns (index
,
2883 expand_normal (node
->high
),
2885 LE
, NULL_RTX
, mode
, unsignedp
,
2886 label_rtx (node
->code_label
),
2889 emit_case_nodes (index
, node
->right
, default_label
, default_prob
, index_type
);
2892 else if (node
->right
== 0 && node
->left
!= 0)
2894 /* Deal with values to the right of this node,
2895 if they are possible. */
2896 if (!node_has_high_bound (node
, index_type
))
2898 probability
= conditional_probability (
2900 subtree_prob
+ default_prob
);
2901 emit_cmp_and_jump_insns (index
,
2904 expand_normal (node
->high
),
2906 GT
, NULL_RTX
, mode
, unsignedp
,
2912 /* Value belongs to this node or to the left-hand subtree. */
2914 probability
= conditional_probability (
2916 subtree_prob
+ default_prob
);
2917 emit_cmp_and_jump_insns (index
,
2920 expand_normal (node
->low
),
2922 GE
, NULL_RTX
, mode
, unsignedp
,
2923 label_rtx (node
->code_label
),
2926 emit_case_nodes (index
, node
->left
, default_label
, default_prob
, index_type
);
2931 /* Node has no children so we check low and high bounds to remove
2932 redundant tests. Only one of the bounds can exist,
2933 since otherwise this node is bounded--a case tested already. */
2934 int high_bound
= node_has_high_bound (node
, index_type
);
2935 int low_bound
= node_has_low_bound (node
, index_type
);
2937 if (!high_bound
&& low_bound
)
2939 probability
= conditional_probability (
2941 subtree_prob
+ default_prob
);
2942 emit_cmp_and_jump_insns (index
,
2945 expand_normal (node
->high
),
2947 GT
, NULL_RTX
, mode
, unsignedp
,
2952 else if (!low_bound
&& high_bound
)
2954 probability
= conditional_probability (
2956 subtree_prob
+ default_prob
);
2957 emit_cmp_and_jump_insns (index
,
2960 expand_normal (node
->low
),
2962 LT
, NULL_RTX
, mode
, unsignedp
,
2966 else if (!low_bound
&& !high_bound
)
2968 /* Widen LOW and HIGH to the same width as INDEX. */
2969 tree type
= lang_hooks
.types
.type_for_mode (mode
, unsignedp
);
2970 tree low
= build1 (CONVERT_EXPR
, type
, node
->low
);
2971 tree high
= build1 (CONVERT_EXPR
, type
, node
->high
);
2972 rtx low_rtx
, new_index
, new_bound
;
2974 /* Instead of doing two branches, emit one unsigned branch for
2975 (index-low) > (high-low). */
2976 low_rtx
= expand_expr (low
, NULL_RTX
, mode
, EXPAND_NORMAL
);
2977 new_index
= expand_simple_binop (mode
, MINUS
, index
, low_rtx
,
2978 NULL_RTX
, unsignedp
,
2980 new_bound
= expand_expr (fold_build2 (MINUS_EXPR
, type
,
2982 NULL_RTX
, mode
, EXPAND_NORMAL
);
2984 probability
= conditional_probability (
2986 subtree_prob
+ default_prob
);
2987 emit_cmp_and_jump_insns (new_index
, new_bound
, GT
, NULL_RTX
,
2988 mode
, 1, default_label
, probability
);
2991 emit_jump (label_rtx (node
->code_label
));