1 /* Expands front end tree to back end RTL for GNU C-Compiler
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* This file handles the generation of rtl code from tree structure
23 above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
24 It also creates the rtl expressions for parameters and auto variables
25 and has full responsibility for allocating stack slots.
27 The functions whose names start with `expand_' are called by the
28 parser to generate RTL instructions for various kinds of constructs.
30 Some control and binding constructs require calling several such
31 functions at different times. For example, a simple if-then
32 is expanded by calling `expand_start_cond' (with the condition-expression
33 as argument) before parsing the then-clause and calling `expand_end_cond'
34 after parsing the then-clause. */
38 #include "coretypes.h"
47 #include "insn-config.h"
50 #include "hard-reg-set.h"
57 #include "langhooks.h"
60 /* Assume that case vectors are not pc-relative. */
61 #ifndef CASE_VECTOR_PC_RELATIVE
62 #define CASE_VECTOR_PC_RELATIVE 0
65 /* Functions and data structures for expanding case statements. */
67 /* Case label structure, used to hold info on labels within case
68 statements. We handle "range" labels; for a single-value label
69 as in C, the high and low limits are the same.
71 An AVL tree of case nodes is initially created, and later transformed
72 to a list linked via the RIGHT fields in the nodes. Nodes with
73 higher case values are later in the list.
75 Switch statements can be output in one of two forms. A branch table
76 is used if there are more than a few labels and the labels are dense
77 within the range between the smallest and largest case value. If a
78 branch table is used, no further manipulations are done with the case
81 The alternative to the use of a branch table is to generate a series
82 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
83 and PARENT fields to hold a binary tree. Initially the tree is
84 totally unbalanced, with everything on the right. We balance the tree
85 with nodes on the left having lower case values than the parent
86 and nodes on the right having higher values. We then output the tree
89 struct case_node
GTY(())
91 struct case_node
*left
; /* Left son in binary tree */
92 struct case_node
*right
; /* Right son in binary tree; also node chain */
93 struct case_node
*parent
; /* Parent of node in binary tree */
94 tree low
; /* Lowest index value for this label */
95 tree high
; /* Highest index value for this label */
96 tree code_label
; /* Label to jump to when node matches */
100 typedef struct case_node case_node
;
101 typedef struct case_node
*case_node_ptr
;
103 /* These are used by estimate_case_costs and balance_case_nodes. */
105 /* This must be a signed type, and non-ANSI compilers lack signed char. */
106 static short cost_table_
[129];
107 static int use_cost_table
;
108 static int cost_table_initialized
;
110 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
112 #define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
114 /* Stack of control and binding constructs we are currently inside.
116 These constructs begin when you call `expand_start_WHATEVER'
117 and end when you call `expand_end_WHATEVER'. This stack records
118 info about how the construct began that tells the end-function
119 what to do. It also may provide information about the construct
120 to alter the behavior of other constructs within the body.
121 For example, they may affect the behavior of C `break' and `continue'.
123 Each construct gets one `struct nesting' object.
124 All of these objects are chained through the `all' field.
125 `nesting_stack' points to the first object (innermost construct).
126 The position of an entry on `nesting_stack' is in its `depth' field.
128 Each type of construct has its own individual stack.
129 For example, loops have `loop_stack'. Each object points to the
130 next object of the same type through the `next' field.
132 Some constructs are visible to `break' exit-statements and others
133 are not. Which constructs are visible depends on the language.
134 Therefore, the data structure allows each construct to be visible
135 or not, according to the args given when the construct is started.
136 The construct is visible if the `exit_label' field is non-null.
137 In that case, the value should be a CODE_LABEL rtx. */
139 struct nesting
GTY(())
142 struct nesting
*next
;
153 /* For conds (if-then and if-then-else statements). */
156 /* Label for the end of the if construct.
157 There is none if EXITFLAG was not set
158 and no `else' has been seen yet. */
160 /* Label for the end of this alternative.
161 This may be the end of the if or the next else/elseif. */
163 } GTY ((tag ("COND_NESTING"))) cond
;
167 /* Label at the top of the loop; place to loop back to. */
169 /* Label at the end of the whole construct. */
171 /* Label for `continue' statement to jump to;
172 this is in front of the stepper of the loop. */
174 } GTY ((tag ("LOOP_NESTING"))) loop
;
175 /* For variable binding contours. */
178 /* Sequence number of this binding contour within the function,
179 in order of entry. */
180 int block_start_count
;
181 /* Nonzero => value to restore stack to on exit. */
183 /* The NOTE that starts this contour.
184 Used by expand_goto to check whether the destination
185 is within each contour or not. */
187 /* Innermost containing binding contour that has a stack level. */
188 struct nesting
*innermost_stack_block
;
189 /* List of cleanups to be run on exit from this contour.
190 This is a list of expressions to be evaluated.
191 The TREE_PURPOSE of each link is the ..._DECL node
192 which the cleanup pertains to. */
194 /* List of cleanup-lists of blocks containing this block,
195 as they were at the locus where this block appears.
196 There is an element for each containing block,
197 ordered innermost containing block first.
198 The tail of this list can be 0,
199 if all remaining elements would be empty lists.
200 The element's TREE_VALUE is the cleanup-list of that block,
201 which may be null. */
203 /* Chain of labels defined inside this binding contour.
204 For contours that have stack levels or cleanups. */
205 struct label_chain
*label_chain
;
206 /* Number of function calls seen, as of start of this block. */
207 int n_function_calls
;
208 /* Nonzero if this is associated with an EH region. */
209 int exception_region
;
210 /* The saved target_temp_slot_level from our outer block.
211 We may reset target_temp_slot_level to be the level of
212 this block, if that is done, target_temp_slot_level
213 reverts to the saved target_temp_slot_level at the very
215 int block_target_temp_slot_level
;
216 /* True if we are currently emitting insns in an area of
217 output code that is controlled by a conditional
218 expression. This is used by the cleanup handling code to
219 generate conditional cleanup actions. */
220 int conditional_code
;
221 /* A place to move the start of the exception region for any
222 of the conditional cleanups, must be at the end or after
223 the start of the last unconditional cleanup, and before any
224 conditional branch points. */
225 rtx last_unconditional_cleanup
;
226 } GTY ((tag ("BLOCK_NESTING"))) block
;
227 /* For switch (C) or case (Pascal) statements,
228 and also for dummies (see `expand_start_case_dummy'). */
231 /* The insn after which the case dispatch should finally
232 be emitted. Zero for a dummy. */
234 /* A list of case labels; it is first built as an AVL tree.
235 During expand_end_case, this is converted to a list, and may be
236 rearranged into a nearly balanced binary tree. */
237 struct case_node
*case_list
;
238 /* Label to jump to if no case matches. */
240 /* The expression to be dispatched on. */
242 /* Type that INDEX_EXPR should be converted to. */
244 /* Name of this kind of statement, for warnings. */
245 const char *printname
;
246 /* Used to save no_line_numbers till we see the first case label.
247 We set this to -1 when we see the first case label in this
249 int line_number_status
;
250 } GTY ((tag ("CASE_NESTING"))) case_stmt
;
251 } GTY ((desc ("%1.desc"))) data
;
254 /* Allocate and return a new `struct nesting'. */
256 #define ALLOC_NESTING() \
257 (struct nesting *) ggc_alloc (sizeof (struct nesting))
259 /* Pop the nesting stack element by element until we pop off
260 the element which is at the top of STACK.
261 Update all the other stacks, popping off elements from them
262 as we pop them from nesting_stack. */
264 #define POPSTACK(STACK) \
265 do { struct nesting *target = STACK; \
266 struct nesting *this; \
267 do { this = nesting_stack; \
268 if (loop_stack == this) \
269 loop_stack = loop_stack->next; \
270 if (cond_stack == this) \
271 cond_stack = cond_stack->next; \
272 if (block_stack == this) \
273 block_stack = block_stack->next; \
274 if (stack_block_stack == this) \
275 stack_block_stack = stack_block_stack->next; \
276 if (case_stack == this) \
277 case_stack = case_stack->next; \
278 nesting_depth = nesting_stack->depth - 1; \
279 nesting_stack = this->all; } \
280 while (this != target); } while (0)
282 /* In some cases it is impossible to generate code for a forward goto
283 until the label definition is seen. This happens when it may be necessary
284 for the goto to reset the stack pointer: we don't yet know how to do that.
285 So expand_goto puts an entry on this fixup list.
286 Each time a binding contour that resets the stack is exited,
288 If the target label has now been defined, we can insert the proper code. */
290 struct goto_fixup
GTY(())
292 /* Points to following fixup. */
293 struct goto_fixup
*next
;
294 /* Points to the insn before the jump insn.
295 If more code must be inserted, it goes after this insn. */
297 /* The LABEL_DECL that this jump is jumping to, or 0
298 for break, continue or return. */
300 /* The BLOCK for the place where this goto was found. */
302 /* The CODE_LABEL rtx that this is jumping to. */
304 /* Number of binding contours started in current function
305 before the label reference. */
306 int block_start_count
;
307 /* The outermost stack level that should be restored for this jump.
308 Each time a binding contour that resets the stack is exited,
309 if the target label is *not* yet defined, this slot is updated. */
311 /* List of lists of cleanup expressions to be run by this goto.
312 There is one element for each block that this goto is within.
313 The tail of this list can be 0,
314 if all remaining elements would be empty.
315 The TREE_VALUE contains the cleanup list of that block as of the
316 time this goto was seen.
317 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
318 tree cleanup_list_list
;
321 /* Within any binding contour that must restore a stack level,
322 all labels are recorded with a chain of these structures. */
324 struct label_chain
GTY(())
326 /* Points to following fixup. */
327 struct label_chain
*next
;
331 struct stmt_status
GTY(())
333 /* Chain of all pending binding contours. */
334 struct nesting
* x_block_stack
;
336 /* If any new stacks are added here, add them to POPSTACKS too. */
338 /* Chain of all pending binding contours that restore stack levels
340 struct nesting
* x_stack_block_stack
;
342 /* Chain of all pending conditional statements. */
343 struct nesting
* x_cond_stack
;
345 /* Chain of all pending loops. */
346 struct nesting
* x_loop_stack
;
348 /* Chain of all pending case or switch statements. */
349 struct nesting
* x_case_stack
;
351 /* Separate chain including all of the above,
352 chained through the `all' field. */
353 struct nesting
* x_nesting_stack
;
355 /* Number of entries on nesting_stack now. */
358 /* Number of binding contours started so far in this function. */
359 int x_block_start_count
;
361 /* Each time we expand an expression-statement,
362 record the expr's type and its RTL value here. */
363 tree x_last_expr_type
;
364 rtx x_last_expr_value
;
366 /* Nonzero if within a ({...}) grouping, in which case we must
367 always compute a value for each expr-stmt in case it is the last one. */
368 int x_expr_stmts_for_value
;
370 /* Filename and line number of last line-number note,
371 whether we actually emitted it or not. */
372 const char *x_emit_filename
;
375 struct goto_fixup
*x_goto_fixup_chain
;
378 #define block_stack (cfun->stmt->x_block_stack)
379 #define stack_block_stack (cfun->stmt->x_stack_block_stack)
380 #define cond_stack (cfun->stmt->x_cond_stack)
381 #define loop_stack (cfun->stmt->x_loop_stack)
382 #define case_stack (cfun->stmt->x_case_stack)
383 #define nesting_stack (cfun->stmt->x_nesting_stack)
384 #define nesting_depth (cfun->stmt->x_nesting_depth)
385 #define current_block_start_count (cfun->stmt->x_block_start_count)
386 #define last_expr_type (cfun->stmt->x_last_expr_type)
387 #define last_expr_value (cfun->stmt->x_last_expr_value)
388 #define expr_stmts_for_value (cfun->stmt->x_expr_stmts_for_value)
389 #define emit_filename (cfun->stmt->x_emit_filename)
390 #define emit_lineno (cfun->stmt->x_emit_lineno)
391 #define goto_fixup_chain (cfun->stmt->x_goto_fixup_chain)
393 /* Nonzero if we are using EH to handle cleanups. */
394 static int using_eh_for_cleanups_p
= 0;
396 static int n_occurrences
PARAMS ((int, const char *));
397 static bool parse_input_constraint
PARAMS ((const char **, int, int, int,
398 int, const char * const *,
400 static bool decl_conflicts_with_clobbers_p
PARAMS ((tree
, const HARD_REG_SET
));
401 static void expand_goto_internal
PARAMS ((tree
, rtx
, rtx
));
402 static int expand_fixup
PARAMS ((tree
, rtx
, rtx
));
403 static rtx expand_nl_handler_label
PARAMS ((rtx
, rtx
));
404 static void expand_nl_goto_receiver
PARAMS ((void));
405 static void expand_nl_goto_receivers
PARAMS ((struct nesting
*));
406 static void fixup_gotos
PARAMS ((struct nesting
*, rtx
, tree
,
408 static bool check_operand_nalternatives
PARAMS ((tree
, tree
));
409 static bool check_unique_operand_names
PARAMS ((tree
, tree
));
410 static tree resolve_operand_names
PARAMS ((tree
, tree
, tree
,
412 static char *resolve_operand_name_1
PARAMS ((char *, tree
, tree
));
413 static void expand_null_return_1
PARAMS ((rtx
));
414 static enum br_predictor return_prediction
PARAMS ((rtx
));
415 static void expand_value_return
PARAMS ((rtx
));
416 static int tail_recursion_args
PARAMS ((tree
, tree
));
417 static void expand_cleanups
PARAMS ((tree
, tree
, int, int));
418 static void check_seenlabel
PARAMS ((void));
419 static void do_jump_if_equal
PARAMS ((rtx
, rtx
, rtx
, int));
420 static int estimate_case_costs
PARAMS ((case_node_ptr
));
421 static void group_case_nodes
PARAMS ((case_node_ptr
));
422 static void balance_case_nodes
PARAMS ((case_node_ptr
*,
424 static int node_has_low_bound
PARAMS ((case_node_ptr
, tree
));
425 static int node_has_high_bound
PARAMS ((case_node_ptr
, tree
));
426 static int node_is_bounded
PARAMS ((case_node_ptr
, tree
));
427 static void emit_jump_if_reachable
PARAMS ((rtx
));
428 static void emit_case_nodes
PARAMS ((rtx
, case_node_ptr
, rtx
, tree
));
429 static struct case_node
*case_tree2list
PARAMS ((case_node
*, case_node
*));
432 using_eh_for_cleanups ()
434 using_eh_for_cleanups_p
= 1;
438 init_stmt_for_function ()
440 cfun
->stmt
= ((struct stmt_status
*)ggc_alloc (sizeof (struct stmt_status
)));
442 /* We are not currently within any block, conditional, loop or case. */
444 stack_block_stack
= 0;
451 current_block_start_count
= 0;
453 /* No gotos have been expanded yet. */
454 goto_fixup_chain
= 0;
456 /* We are not processing a ({...}) grouping. */
457 expr_stmts_for_value
= 0;
461 /* Record the current file and line. Called from emit_line_note. */
463 set_file_and_line_for_stmt (file
, line
)
467 /* If we're outputting an inline function, and we add a line note,
468 there may be no CFUN->STMT information. So, there's no need to
472 emit_filename
= file
;
477 /* Emit a no-op instruction. */
484 last_insn
= get_last_insn ();
486 && (GET_CODE (last_insn
) == CODE_LABEL
487 || (GET_CODE (last_insn
) == NOTE
488 && prev_real_insn (last_insn
) == 0)))
489 emit_insn (gen_nop ());
492 /* Return the rtx-label that corresponds to a LABEL_DECL,
493 creating it if necessary. */
499 if (TREE_CODE (label
) != LABEL_DECL
)
502 if (!DECL_RTL_SET_P (label
))
503 SET_DECL_RTL (label
, gen_label_rtx ());
505 return DECL_RTL (label
);
509 /* Add an unconditional jump to LABEL as the next sequential instruction. */
515 do_pending_stack_adjust ();
516 emit_jump_insn (gen_jump (label
));
520 /* Emit code to jump to the address
521 specified by the pointer expression EXP. */
524 expand_computed_goto (exp
)
527 rtx x
= expand_expr (exp
, NULL_RTX
, VOIDmode
, 0);
529 #ifdef POINTERS_EXTEND_UNSIGNED
530 if (GET_MODE (x
) != Pmode
)
531 x
= convert_memory_address (Pmode
, x
);
535 do_pending_stack_adjust ();
536 emit_indirect_jump (x
);
538 current_function_has_computed_jump
= 1;
541 /* Handle goto statements and the labels that they can go to. */
543 /* Specify the location in the RTL code of a label LABEL,
544 which is a LABEL_DECL tree node.
546 This is used for the kind of label that the user can jump to with a
547 goto statement, and for alternatives of a switch or case statement.
548 RTL labels generated for loops and conditionals don't go through here;
549 they are generated directly at the RTL level, by other functions below.
551 Note that this has nothing to do with defining label *names*.
552 Languages vary in how they do that and what that even means. */
558 struct label_chain
*p
;
560 do_pending_stack_adjust ();
561 emit_label (label_rtx (label
));
562 if (DECL_NAME (label
))
563 LABEL_NAME (DECL_RTL (label
)) = IDENTIFIER_POINTER (DECL_NAME (label
));
565 if (stack_block_stack
!= 0)
567 p
= (struct label_chain
*) ggc_alloc (sizeof (struct label_chain
));
568 p
->next
= stack_block_stack
->data
.block
.label_chain
;
569 stack_block_stack
->data
.block
.label_chain
= p
;
574 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
575 from nested functions. */
578 declare_nonlocal_label (label
)
581 rtx slot
= assign_stack_local (Pmode
, GET_MODE_SIZE (Pmode
), 0);
583 nonlocal_labels
= tree_cons (NULL_TREE
, label
, nonlocal_labels
);
584 LABEL_PRESERVE_P (label_rtx (label
)) = 1;
585 if (nonlocal_goto_handler_slots
== 0)
587 emit_stack_save (SAVE_NONLOCAL
,
588 &nonlocal_goto_stack_level
,
589 PREV_INSN (tail_recursion_reentry
));
591 nonlocal_goto_handler_slots
592 = gen_rtx_EXPR_LIST (VOIDmode
, slot
, nonlocal_goto_handler_slots
);
595 /* Generate RTL code for a `goto' statement with target label LABEL.
596 LABEL should be a LABEL_DECL tree node that was or will later be
597 defined with `expand_label'. */
605 /* Check for a nonlocal goto to a containing function. */
606 context
= decl_function_context (label
);
607 if (context
!= 0 && context
!= current_function_decl
)
609 struct function
*p
= find_function_data (context
);
610 rtx label_ref
= gen_rtx_LABEL_REF (Pmode
, label_rtx (label
));
611 rtx handler_slot
, static_chain
, save_area
, insn
;
614 /* Find the corresponding handler slot for this label. */
615 handler_slot
= p
->x_nonlocal_goto_handler_slots
;
616 for (link
= p
->x_nonlocal_labels
; TREE_VALUE (link
) != label
;
617 link
= TREE_CHAIN (link
))
618 handler_slot
= XEXP (handler_slot
, 1);
619 handler_slot
= XEXP (handler_slot
, 0);
621 p
->has_nonlocal_label
= 1;
622 current_function_has_nonlocal_goto
= 1;
623 LABEL_REF_NONLOCAL_P (label_ref
) = 1;
625 /* Copy the rtl for the slots so that they won't be shared in
626 case the virtual stack vars register gets instantiated differently
627 in the parent than in the child. */
629 static_chain
= copy_to_reg (lookup_static_chain (label
));
631 /* Get addr of containing function's current nonlocal goto handler,
632 which will do any cleanups and then jump to the label. */
633 handler_slot
= copy_to_reg (replace_rtx (copy_rtx (handler_slot
),
634 virtual_stack_vars_rtx
,
637 /* Get addr of containing function's nonlocal save area. */
638 save_area
= p
->x_nonlocal_goto_stack_level
;
640 save_area
= replace_rtx (copy_rtx (save_area
),
641 virtual_stack_vars_rtx
, static_chain
);
643 #if HAVE_nonlocal_goto
644 if (HAVE_nonlocal_goto
)
645 emit_insn (gen_nonlocal_goto (static_chain
, handler_slot
,
646 save_area
, label_ref
));
650 /* Restore frame pointer for containing function.
651 This sets the actual hard register used for the frame pointer
652 to the location of the function's incoming static chain info.
653 The non-local goto handler will then adjust it to contain the
654 proper value and reload the argument pointer, if needed. */
655 emit_move_insn (hard_frame_pointer_rtx
, static_chain
);
656 emit_stack_restore (SAVE_NONLOCAL
, save_area
, NULL_RTX
);
658 /* USE of hard_frame_pointer_rtx added for consistency;
659 not clear if really needed. */
660 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
661 emit_insn (gen_rtx_USE (VOIDmode
, stack_pointer_rtx
));
662 emit_indirect_jump (handler_slot
);
665 /* Search backwards to the jump insn and mark it as a
667 for (insn
= get_last_insn (); insn
; insn
= PREV_INSN (insn
))
669 if (GET_CODE (insn
) == JUMP_INSN
)
671 REG_NOTES (insn
) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO
,
672 const0_rtx
, REG_NOTES (insn
));
675 else if (GET_CODE (insn
) == CALL_INSN
)
680 expand_goto_internal (label
, label_rtx (label
), NULL_RTX
);
683 /* Generate RTL code for a `goto' statement with target label BODY.
684 LABEL should be a LABEL_REF.
685 LAST_INSN, if non-0, is the rtx we should consider as the last
686 insn emitted (for the purposes of cleaning up a return). */
689 expand_goto_internal (body
, label
, last_insn
)
694 struct nesting
*block
;
697 if (GET_CODE (label
) != CODE_LABEL
)
700 /* If label has already been defined, we can tell now
701 whether and how we must alter the stack level. */
703 if (PREV_INSN (label
) != 0)
705 /* Find the innermost pending block that contains the label.
706 (Check containment by comparing insn-uids.)
707 Then restore the outermost stack level within that block,
708 and do cleanups of all blocks contained in it. */
709 for (block
= block_stack
; block
; block
= block
->next
)
711 if (INSN_UID (block
->data
.block
.first_insn
) < INSN_UID (label
))
713 if (block
->data
.block
.stack_level
!= 0)
714 stack_level
= block
->data
.block
.stack_level
;
715 /* Execute the cleanups for blocks we are exiting. */
716 if (block
->data
.block
.cleanups
!= 0)
718 expand_cleanups (block
->data
.block
.cleanups
, NULL_TREE
, 1, 1);
719 do_pending_stack_adjust ();
725 /* Ensure stack adjust isn't done by emit_jump, as this
726 would clobber the stack pointer. This one should be
727 deleted as dead by flow. */
728 clear_pending_stack_adjust ();
729 do_pending_stack_adjust ();
731 /* Don't do this adjust if it's to the end label and this function
732 is to return with a depressed stack pointer. */
733 if (label
== return_label
734 && (((TREE_CODE (TREE_TYPE (current_function_decl
))
736 && (TYPE_RETURNS_STACK_DEPRESSED
737 (TREE_TYPE (current_function_decl
))))))
740 emit_stack_restore (SAVE_BLOCK
, stack_level
, NULL_RTX
);
743 if (body
!= 0 && DECL_TOO_LATE (body
))
744 error ("jump to `%s' invalidly jumps into binding contour",
745 IDENTIFIER_POINTER (DECL_NAME (body
)));
747 /* Label not yet defined: may need to put this goto
748 on the fixup list. */
749 else if (! expand_fixup (body
, label
, last_insn
))
751 /* No fixup needed. Record that the label is the target
752 of at least one goto that has no fixup. */
754 TREE_ADDRESSABLE (body
) = 1;
760 /* Generate if necessary a fixup for a goto
761 whose target label in tree structure (if any) is TREE_LABEL
762 and whose target in rtl is RTL_LABEL.
764 If LAST_INSN is nonzero, we pretend that the jump appears
765 after insn LAST_INSN instead of at the current point in the insn stream.
767 The fixup will be used later to insert insns just before the goto.
768 Those insns will restore the stack level as appropriate for the
769 target label, and will (in the case of C++) also invoke any object
770 destructors which have to be invoked when we exit the scopes which
771 are exited by the goto.
773 Value is nonzero if a fixup is made. */
776 expand_fixup (tree_label
, rtl_label
, last_insn
)
781 struct nesting
*block
, *end_block
;
783 /* See if we can recognize which block the label will be output in.
784 This is possible in some very common cases.
785 If we succeed, set END_BLOCK to that block.
786 Otherwise, set it to 0. */
789 && (rtl_label
== cond_stack
->data
.cond
.endif_label
790 || rtl_label
== cond_stack
->data
.cond
.next_label
))
791 end_block
= cond_stack
;
792 /* If we are in a loop, recognize certain labels which
793 are likely targets. This reduces the number of fixups
794 we need to create. */
796 && (rtl_label
== loop_stack
->data
.loop
.start_label
797 || rtl_label
== loop_stack
->data
.loop
.end_label
798 || rtl_label
== loop_stack
->data
.loop
.continue_label
))
799 end_block
= loop_stack
;
803 /* Now set END_BLOCK to the binding level to which we will return. */
807 struct nesting
*next_block
= end_block
->all
;
810 /* First see if the END_BLOCK is inside the innermost binding level.
811 If so, then no cleanups or stack levels are relevant. */
812 while (next_block
&& next_block
!= block
)
813 next_block
= next_block
->all
;
818 /* Otherwise, set END_BLOCK to the innermost binding level
819 which is outside the relevant control-structure nesting. */
820 next_block
= block_stack
->next
;
821 for (block
= block_stack
; block
!= end_block
; block
= block
->all
)
822 if (block
== next_block
)
823 next_block
= next_block
->next
;
824 end_block
= next_block
;
827 /* Does any containing block have a stack level or cleanups?
828 If not, no fixup is needed, and that is the normal case
829 (the only case, for standard C). */
830 for (block
= block_stack
; block
!= end_block
; block
= block
->next
)
831 if (block
->data
.block
.stack_level
!= 0
832 || block
->data
.block
.cleanups
!= 0)
835 if (block
!= end_block
)
837 /* Ok, a fixup is needed. Add a fixup to the list of such. */
838 struct goto_fixup
*fixup
839 = (struct goto_fixup
*) ggc_alloc (sizeof (struct goto_fixup
));
840 /* In case an old stack level is restored, make sure that comes
841 after any pending stack adjust. */
842 /* ?? If the fixup isn't to come at the present position,
843 doing the stack adjust here isn't useful. Doing it with our
844 settings at that location isn't useful either. Let's hope
847 do_pending_stack_adjust ();
848 fixup
->target
= tree_label
;
849 fixup
->target_rtl
= rtl_label
;
851 /* Create a BLOCK node and a corresponding matched set of
852 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
853 this point. The notes will encapsulate any and all fixup
854 code which we might later insert at this point in the insn
855 stream. Also, the BLOCK node will be the parent (i.e. the
856 `SUPERBLOCK') of any other BLOCK nodes which we might create
857 later on when we are expanding the fixup code.
859 Note that optimization passes (including expand_end_loop)
860 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
864 rtx original_before_jump
865 = last_insn
? last_insn
: get_last_insn ();
870 block
= make_node (BLOCK
);
871 TREE_USED (block
) = 1;
873 if (!cfun
->x_whole_function_mode_p
)
874 (*lang_hooks
.decls
.insert_block
) (block
);
878 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl
));
879 BLOCK_CHAIN (DECL_INITIAL (current_function_decl
))
884 start
= emit_note (NULL
, NOTE_INSN_BLOCK_BEG
);
885 if (cfun
->x_whole_function_mode_p
)
886 NOTE_BLOCK (start
) = block
;
887 fixup
->before_jump
= emit_note (NULL
, NOTE_INSN_DELETED
);
888 end
= emit_note (NULL
, NOTE_INSN_BLOCK_END
);
889 if (cfun
->x_whole_function_mode_p
)
890 NOTE_BLOCK (end
) = block
;
891 fixup
->context
= block
;
893 emit_insn_after (start
, original_before_jump
);
896 fixup
->block_start_count
= current_block_start_count
;
897 fixup
->stack_level
= 0;
898 fixup
->cleanup_list_list
899 = ((block
->data
.block
.outer_cleanups
900 || block
->data
.block
.cleanups
)
901 ? tree_cons (NULL_TREE
, block
->data
.block
.cleanups
,
902 block
->data
.block
.outer_cleanups
)
904 fixup
->next
= goto_fixup_chain
;
905 goto_fixup_chain
= fixup
;
911 /* Expand any needed fixups in the outputmost binding level of the
912 function. FIRST_INSN is the first insn in the function. */
915 expand_fixups (first_insn
)
918 fixup_gotos (NULL
, NULL_RTX
, NULL_TREE
, first_insn
, 0);
921 /* When exiting a binding contour, process all pending gotos requiring fixups.
922 THISBLOCK is the structure that describes the block being exited.
923 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
924 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
925 FIRST_INSN is the insn that began this contour.
927 Gotos that jump out of this contour must restore the
928 stack level and do the cleanups before actually jumping.
930 DONT_JUMP_IN nonzero means report error there is a jump into this
931 contour from before the beginning of the contour.
932 This is also done if STACK_LEVEL is nonzero. */
935 fixup_gotos (thisblock
, stack_level
, cleanup_list
, first_insn
, dont_jump_in
)
936 struct nesting
*thisblock
;
942 struct goto_fixup
*f
, *prev
;
944 /* F is the fixup we are considering; PREV is the previous one. */
945 /* We run this loop in two passes so that cleanups of exited blocks
946 are run first, and blocks that are exited are marked so
949 for (prev
= 0, f
= goto_fixup_chain
; f
; prev
= f
, f
= f
->next
)
951 /* Test for a fixup that is inactive because it is already handled. */
952 if (f
->before_jump
== 0)
954 /* Delete inactive fixup from the chain, if that is easy to do. */
956 prev
->next
= f
->next
;
958 /* Has this fixup's target label been defined?
959 If so, we can finalize it. */
960 else if (PREV_INSN (f
->target_rtl
) != 0)
964 /* If this fixup jumped into this contour from before the beginning
965 of this contour, report an error. This code used to use
966 the first non-label insn after f->target_rtl, but that's
967 wrong since such can be added, by things like put_var_into_stack
968 and have INSN_UIDs that are out of the range of the block. */
969 /* ??? Bug: this does not detect jumping in through intermediate
970 blocks that have stack levels or cleanups.
971 It detects only a problem with the innermost block
974 && (dont_jump_in
|| stack_level
|| cleanup_list
)
975 && INSN_UID (first_insn
) < INSN_UID (f
->target_rtl
)
976 && INSN_UID (first_insn
) > INSN_UID (f
->before_jump
)
977 && ! DECL_ERROR_ISSUED (f
->target
))
979 error_with_decl (f
->target
,
980 "label `%s' used before containing binding contour");
981 /* Prevent multiple errors for one label. */
982 DECL_ERROR_ISSUED (f
->target
) = 1;
985 /* We will expand the cleanups into a sequence of their own and
986 then later on we will attach this new sequence to the insn
987 stream just ahead of the actual jump insn. */
991 /* Temporarily restore the lexical context where we will
992 logically be inserting the fixup code. We do this for the
993 sake of getting the debugging information right. */
995 (*lang_hooks
.decls
.pushlevel
) (0);
996 (*lang_hooks
.decls
.set_block
) (f
->context
);
998 /* Expand the cleanups for blocks this jump exits. */
999 if (f
->cleanup_list_list
)
1002 for (lists
= f
->cleanup_list_list
; lists
; lists
= TREE_CHAIN (lists
))
1003 /* Marked elements correspond to blocks that have been closed.
1004 Do their cleanups. */
1005 if (TREE_ADDRESSABLE (lists
)
1006 && TREE_VALUE (lists
) != 0)
1008 expand_cleanups (TREE_VALUE (lists
), NULL_TREE
, 1, 1);
1009 /* Pop any pushes done in the cleanups,
1010 in case function is about to return. */
1011 do_pending_stack_adjust ();
1015 /* Restore stack level for the biggest contour that this
1016 jump jumps out of. */
1018 && ! (f
->target_rtl
== return_label
1019 && ((TREE_CODE (TREE_TYPE (current_function_decl
))
1021 && (TYPE_RETURNS_STACK_DEPRESSED
1022 (TREE_TYPE (current_function_decl
))))))
1023 emit_stack_restore (SAVE_BLOCK
, f
->stack_level
, f
->before_jump
);
1025 /* Finish up the sequence containing the insns which implement the
1026 necessary cleanups, and then attach that whole sequence to the
1027 insn stream just ahead of the actual jump insn. Attaching it
1028 at that point insures that any cleanups which are in fact
1029 implicit C++ object destructions (which must be executed upon
1030 leaving the block) appear (to the debugger) to be taking place
1031 in an area of the generated code where the object(s) being
1032 destructed are still "in scope". */
1034 cleanup_insns
= get_insns ();
1035 (*lang_hooks
.decls
.poplevel
) (1, 0, 0);
1038 emit_insn_after (cleanup_insns
, f
->before_jump
);
1044 /* For any still-undefined labels, do the cleanups for this block now.
1045 We must do this now since items in the cleanup list may go out
1046 of scope when the block ends. */
1047 for (prev
= 0, f
= goto_fixup_chain
; f
; prev
= f
, f
= f
->next
)
1048 if (f
->before_jump
!= 0
1049 && PREV_INSN (f
->target_rtl
) == 0
1050 /* Label has still not appeared. If we are exiting a block with
1051 a stack level to restore, that started before the fixup,
1052 mark this stack level as needing restoration
1053 when the fixup is later finalized. */
1055 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1056 means the label is undefined. That's erroneous, but possible. */
1057 && (thisblock
->data
.block
.block_start_count
1058 <= f
->block_start_count
))
1060 tree lists
= f
->cleanup_list_list
;
1063 for (; lists
; lists
= TREE_CHAIN (lists
))
1064 /* If the following elt. corresponds to our containing block
1065 then the elt. must be for this block. */
1066 if (TREE_CHAIN (lists
) == thisblock
->data
.block
.outer_cleanups
)
1069 (*lang_hooks
.decls
.pushlevel
) (0);
1070 (*lang_hooks
.decls
.set_block
) (f
->context
);
1071 expand_cleanups (TREE_VALUE (lists
), NULL_TREE
, 1, 1);
1072 do_pending_stack_adjust ();
1073 cleanup_insns
= get_insns ();
1074 (*lang_hooks
.decls
.poplevel
) (1, 0, 0);
1076 if (cleanup_insns
!= 0)
1078 = emit_insn_after (cleanup_insns
, f
->before_jump
);
1080 f
->cleanup_list_list
= TREE_CHAIN (lists
);
1084 f
->stack_level
= stack_level
;
1088 /* Return the number of times character C occurs in string S. */
1090 n_occurrences (c
, s
)
1100 /* Generate RTL for an asm statement (explicit assembler code).
1101 BODY is a STRING_CST node containing the assembler code text,
1102 or an ADDR_EXPR containing a STRING_CST. */
1108 if (TREE_CODE (body
) == ADDR_EXPR
)
1109 body
= TREE_OPERAND (body
, 0);
1111 emit_insn (gen_rtx_ASM_INPUT (VOIDmode
,
1112 TREE_STRING_POINTER (body
)));
1116 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
1117 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
1118 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
1119 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
1120 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
1121 constraint allows the use of a register operand. And, *IS_INOUT
1122 will be true if the operand is read-write, i.e., if it is used as
1123 an input as well as an output. If *CONSTRAINT_P is not in
1124 canonical form, it will be made canonical. (Note that `+' will be
1125 replaced with `=' as part of this process.)
1127 Returns TRUE if all went well; FALSE if an error occurred. */
1130 parse_output_constraint (constraint_p
, operand_num
, ninputs
, noutputs
,
1131 allows_mem
, allows_reg
, is_inout
)
1132 const char **constraint_p
;
1140 const char *constraint
= *constraint_p
;
1143 /* Assume the constraint doesn't allow the use of either a register
1145 *allows_mem
= false;
1146 *allows_reg
= false;
1148 /* Allow the `=' or `+' to not be at the beginning of the string,
1149 since it wasn't explicitly documented that way, and there is a
1150 large body of code that puts it last. Swap the character to
1151 the front, so as not to uglify any place else. */
1152 p
= strchr (constraint
, '=');
1154 p
= strchr (constraint
, '+');
1156 /* If the string doesn't contain an `=', issue an error
1160 error ("output operand constraint lacks `='");
1164 /* If the constraint begins with `+', then the operand is both read
1165 from and written to. */
1166 *is_inout
= (*p
== '+');
1168 /* Canonicalize the output constraint so that it begins with `='. */
1169 if (p
!= constraint
|| is_inout
)
1172 size_t c_len
= strlen (constraint
);
1174 if (p
!= constraint
)
1175 warning ("output constraint `%c' for operand %d is not at the beginning",
1178 /* Make a copy of the constraint. */
1179 buf
= alloca (c_len
+ 1);
1180 strcpy (buf
, constraint
);
1181 /* Swap the first character and the `=' or `+'. */
1182 buf
[p
- constraint
] = buf
[0];
1183 /* Make sure the first character is an `='. (Until we do this,
1184 it might be a `+'.) */
1186 /* Replace the constraint with the canonicalized string. */
1187 *constraint_p
= ggc_alloc_string (buf
, c_len
);
1188 constraint
= *constraint_p
;
1191 /* Loop through the constraint string. */
1192 for (p
= constraint
+ 1; *p
; ++p
)
1197 error ("operand constraint contains incorrectly positioned '+' or '='");
1201 if (operand_num
+ 1 == ninputs
+ noutputs
)
1203 error ("`%%' constraint used with last operand");
1208 case 'V': case 'm': case 'o':
1212 case '?': case '!': case '*': case '&': case '#':
1213 case 'E': case 'F': case 'G': case 'H':
1214 case 's': case 'i': case 'n':
1215 case 'I': case 'J': case 'K': case 'L': case 'M':
1216 case 'N': case 'O': case 'P': case ',':
1219 case '0': case '1': case '2': case '3': case '4':
1220 case '5': case '6': case '7': case '8': case '9':
1222 error ("matching constraint not valid in output operand");
1226 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1227 excepting those that expand_call created. So match memory
1244 if (REG_CLASS_FROM_LETTER (*p
) != NO_REGS
)
1246 #ifdef EXTRA_CONSTRAINT
1247 else if (EXTRA_ADDRESS_CONSTRAINT (*p
))
1249 else if (EXTRA_MEMORY_CONSTRAINT (*p
))
1253 /* Otherwise we can't assume anything about the nature of
1254 the constraint except that it isn't purely registers.
1255 Treat it like "g" and hope for the best. */
1266 /* Similar, but for input constraints. */
1269 parse_input_constraint (constraint_p
, input_num
, ninputs
, noutputs
, ninout
,
1270 constraints
, allows_mem
, allows_reg
)
1271 const char **constraint_p
;
1276 const char * const * constraints
;
1280 const char *constraint
= *constraint_p
;
1281 const char *orig_constraint
= constraint
;
1282 size_t c_len
= strlen (constraint
);
1285 /* Assume the constraint doesn't allow the use of either
1286 a register or memory. */
1287 *allows_mem
= false;
1288 *allows_reg
= false;
1290 /* Make sure constraint has neither `=', `+', nor '&'. */
1292 for (j
= 0; j
< c_len
; j
++)
1293 switch (constraint
[j
])
1295 case '+': case '=': case '&':
1296 if (constraint
== orig_constraint
)
1298 error ("input operand constraint contains `%c'", constraint
[j
]);
1304 if (constraint
== orig_constraint
1305 && input_num
+ 1 == ninputs
- ninout
)
1307 error ("`%%' constraint used with last operand");
1312 case 'V': case 'm': case 'o':
1317 case '?': case '!': case '*': case '#':
1318 case 'E': case 'F': case 'G': case 'H':
1319 case 's': case 'i': case 'n':
1320 case 'I': case 'J': case 'K': case 'L': case 'M':
1321 case 'N': case 'O': case 'P': case ',':
1324 /* Whether or not a numeric constraint allows a register is
1325 decided by the matching constraint, and so there is no need
1326 to do anything special with them. We must handle them in
1327 the default case, so that we don't unnecessarily force
1328 operands to memory. */
1329 case '0': case '1': case '2': case '3': case '4':
1330 case '5': case '6': case '7': case '8': case '9':
1333 unsigned long match
;
1335 match
= strtoul (constraint
+ j
, &end
, 10);
1336 if (match
>= (unsigned long) noutputs
)
1338 error ("matching constraint references invalid operand number");
1342 /* Try and find the real constraint for this dup. Only do this
1343 if the matching constraint is the only alternative. */
1345 && (j
== 0 || (j
== 1 && constraint
[0] == '%')))
1347 constraint
= constraints
[match
];
1348 *constraint_p
= constraint
;
1349 c_len
= strlen (constraint
);
1354 j
= end
- constraint
;
1368 if (! ISALPHA (constraint
[j
]))
1370 error ("invalid punctuation `%c' in constraint", constraint
[j
]);
1373 if (REG_CLASS_FROM_LETTER (constraint
[j
]) != NO_REGS
)
1375 #ifdef EXTRA_CONSTRAINT
1376 else if (EXTRA_ADDRESS_CONSTRAINT (constraint
[j
]))
1378 else if (EXTRA_MEMORY_CONSTRAINT (constraint
[j
]))
1382 /* Otherwise we can't assume anything about the nature of
1383 the constraint except that it isn't purely registers.
1384 Treat it like "g" and hope for the best. */
1395 /* Check for overlap between registers marked in CLOBBERED_REGS and
1396 anything inappropriate in DECL. Emit error and return TRUE for error,
1400 decl_conflicts_with_clobbers_p (decl
, clobbered_regs
)
1402 const HARD_REG_SET clobbered_regs
;
1404 /* Conflicts between asm-declared register variables and the clobber
1405 list are not allowed. */
1406 if ((TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
)
1407 && DECL_REGISTER (decl
)
1408 && REG_P (DECL_RTL (decl
))
1409 && REGNO (DECL_RTL (decl
)) < FIRST_PSEUDO_REGISTER
)
1411 rtx reg
= DECL_RTL (decl
);
1414 for (regno
= REGNO (reg
);
1415 regno
< (REGNO (reg
)
1416 + HARD_REGNO_NREGS (REGNO (reg
), GET_MODE (reg
)));
1418 if (TEST_HARD_REG_BIT (clobbered_regs
, regno
))
1420 error ("asm-specifier for variable `%s' conflicts with asm clobber list",
1421 IDENTIFIER_POINTER (DECL_NAME (decl
)));
1423 /* Reset registerness to stop multiple errors emitted for a
1425 DECL_REGISTER (decl
) = 0;
1432 /* Generate RTL for an asm statement with arguments.
1433 STRING is the instruction template.
1434 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1435 Each output or input has an expression in the TREE_VALUE and
1436 and a tree list in TREE_PURPOSE which in turn contains a constraint
1437 name in TREE_VALUE (or NULL_TREE) and a constraint string
1439 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1440 that is clobbered by this insn.
1442 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1443 Some elements of OUTPUTS may be replaced with trees representing temporary
1444 values. The caller should copy those temporary values to the originally
1447 VOL nonzero means the insn is volatile; don't optimize it. */
1450 expand_asm_operands (string
, outputs
, inputs
, clobbers
, vol
, filename
, line
)
1451 tree string
, outputs
, inputs
, clobbers
;
1453 const char *filename
;
1456 rtvec argvec
, constraintvec
;
1458 int ninputs
= list_length (inputs
);
1459 int noutputs
= list_length (outputs
);
1462 HARD_REG_SET clobbered_regs
;
1463 int clobber_conflict_found
= 0;
1466 /* Vector of RTX's of evaluated output operands. */
1467 rtx
*output_rtx
= (rtx
*) alloca (noutputs
* sizeof (rtx
));
1468 int *inout_opnum
= (int *) alloca (noutputs
* sizeof (int));
1469 rtx
*real_output_rtx
= (rtx
*) alloca (noutputs
* sizeof (rtx
));
1470 enum machine_mode
*inout_mode
1471 = (enum machine_mode
*) alloca (noutputs
* sizeof (enum machine_mode
));
1472 const char **constraints
1473 = (const char **) alloca ((noutputs
+ ninputs
) * sizeof (const char *));
1474 int old_generating_concat_p
= generating_concat_p
;
1476 /* An ASM with no outputs needs to be treated as volatile, for now. */
1480 if (! check_operand_nalternatives (outputs
, inputs
))
1483 if (! check_unique_operand_names (outputs
, inputs
))
1486 string
= resolve_operand_names (string
, outputs
, inputs
, constraints
);
1488 #ifdef MD_ASM_CLOBBERS
1489 /* Sometimes we wish to automatically clobber registers across an asm.
1490 Case in point is when the i386 backend moved from cc0 to a hard reg --
1491 maintaining source-level compatibility means automatically clobbering
1492 the flags register. */
1493 MD_ASM_CLOBBERS (clobbers
);
1496 /* Count the number of meaningful clobbered registers, ignoring what
1497 we would ignore later. */
1499 CLEAR_HARD_REG_SET (clobbered_regs
);
1500 for (tail
= clobbers
; tail
; tail
= TREE_CHAIN (tail
))
1502 const char *regname
= TREE_STRING_POINTER (TREE_VALUE (tail
));
1504 i
= decode_reg_name (regname
);
1505 if (i
>= 0 || i
== -4)
1508 error ("unknown register name `%s' in `asm'", regname
);
1510 /* Mark clobbered registers. */
1513 /* Clobbering the PIC register is an error */
1514 if ((unsigned) i
== PIC_OFFSET_TABLE_REGNUM
)
1516 error ("PIC register `%s' clobbered in `asm'", regname
);
1520 SET_HARD_REG_BIT (clobbered_regs
, i
);
1526 /* First pass over inputs and outputs checks validity and sets
1527 mark_addressable if needed. */
1530 for (i
= 0, tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
), i
++)
1532 tree val
= TREE_VALUE (tail
);
1533 tree type
= TREE_TYPE (val
);
1534 const char *constraint
;
1539 /* If there's an erroneous arg, emit no insn. */
1540 if (type
== error_mark_node
)
1543 /* Try to parse the output constraint. If that fails, there's
1544 no point in going further. */
1545 constraint
= constraints
[i
];
1546 if (!parse_output_constraint (&constraint
, i
, ninputs
, noutputs
,
1547 &allows_mem
, &allows_reg
, &is_inout
))
1554 && GET_CODE (DECL_RTL (val
)) == REG
1555 && GET_MODE (DECL_RTL (val
)) != TYPE_MODE (type
))))
1556 (*lang_hooks
.mark_addressable
) (val
);
1563 if (ninputs
+ noutputs
> MAX_RECOG_OPERANDS
)
1565 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS
);
1569 for (i
= 0, tail
= inputs
; tail
; i
++, tail
= TREE_CHAIN (tail
))
1571 bool allows_reg
, allows_mem
;
1572 const char *constraint
;
1574 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
1575 would get VOIDmode and that could cause a crash in reload. */
1576 if (TREE_TYPE (TREE_VALUE (tail
)) == error_mark_node
)
1579 constraint
= constraints
[i
+ noutputs
];
1580 if (! parse_input_constraint (&constraint
, i
, ninputs
, noutputs
, ninout
,
1581 constraints
, &allows_mem
, &allows_reg
))
1584 if (! allows_reg
&& allows_mem
)
1585 (*lang_hooks
.mark_addressable
) (TREE_VALUE (tail
));
1588 /* Second pass evaluates arguments. */
1591 for (i
= 0, tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
), i
++)
1593 tree val
= TREE_VALUE (tail
);
1594 tree type
= TREE_TYPE (val
);
1599 if (!parse_output_constraint (&constraints
[i
], i
, ninputs
,
1600 noutputs
, &allows_mem
, &allows_reg
,
1604 /* If an output operand is not a decl or indirect ref and our constraint
1605 allows a register, make a temporary to act as an intermediate.
1606 Make the asm insn write into that, then our caller will copy it to
1607 the real output operand. Likewise for promoted variables. */
1609 generating_concat_p
= 0;
1611 real_output_rtx
[i
] = NULL_RTX
;
1612 if ((TREE_CODE (val
) == INDIRECT_REF
1615 && (allows_mem
|| GET_CODE (DECL_RTL (val
)) == REG
)
1616 && ! (GET_CODE (DECL_RTL (val
)) == REG
1617 && GET_MODE (DECL_RTL (val
)) != TYPE_MODE (type
)))
1621 output_rtx
[i
] = expand_expr (val
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
1623 if (! allows_reg
&& GET_CODE (output_rtx
[i
]) != MEM
)
1624 error ("output number %d not directly addressable", i
);
1625 if ((! allows_mem
&& GET_CODE (output_rtx
[i
]) == MEM
)
1626 || GET_CODE (output_rtx
[i
]) == CONCAT
)
1628 real_output_rtx
[i
] = protect_from_queue (output_rtx
[i
], 1);
1629 output_rtx
[i
] = gen_reg_rtx (GET_MODE (output_rtx
[i
]));
1631 emit_move_insn (output_rtx
[i
], real_output_rtx
[i
]);
1636 output_rtx
[i
] = assign_temp (type
, 0, 0, 1);
1637 TREE_VALUE (tail
) = make_tree (type
, output_rtx
[i
]);
1640 generating_concat_p
= old_generating_concat_p
;
1644 inout_mode
[ninout
] = TYPE_MODE (type
);
1645 inout_opnum
[ninout
++] = i
;
1648 if (decl_conflicts_with_clobbers_p (val
, clobbered_regs
))
1649 clobber_conflict_found
= 1;
1652 /* Make vectors for the expression-rtx, constraint strings,
1653 and named operands. */
1655 argvec
= rtvec_alloc (ninputs
);
1656 constraintvec
= rtvec_alloc (ninputs
);
1658 body
= gen_rtx_ASM_OPERANDS ((noutputs
== 0 ? VOIDmode
1659 : GET_MODE (output_rtx
[0])),
1660 TREE_STRING_POINTER (string
),
1661 empty_string
, 0, argvec
, constraintvec
,
1664 MEM_VOLATILE_P (body
) = vol
;
1666 /* Eval the inputs and put them into ARGVEC.
1667 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1669 for (i
= 0, tail
= inputs
; tail
; tail
= TREE_CHAIN (tail
), ++i
)
1671 bool allows_reg
, allows_mem
;
1672 const char *constraint
;
1676 constraint
= constraints
[i
+ noutputs
];
1677 if (! parse_input_constraint (&constraint
, i
, ninputs
, noutputs
, ninout
,
1678 constraints
, &allows_mem
, &allows_reg
))
1681 generating_concat_p
= 0;
1683 val
= TREE_VALUE (tail
);
1684 type
= TREE_TYPE (val
);
1685 op
= expand_expr (val
, NULL_RTX
, VOIDmode
, 0);
1687 /* Never pass a CONCAT to an ASM. */
1688 if (GET_CODE (op
) == CONCAT
)
1689 op
= force_reg (GET_MODE (op
), op
);
1691 if (asm_operand_ok (op
, constraint
) <= 0)
1694 op
= force_reg (TYPE_MODE (type
), op
);
1695 else if (!allows_mem
)
1696 warning ("asm operand %d probably doesn't match constraints",
1698 else if (CONSTANT_P (op
))
1699 op
= force_const_mem (TYPE_MODE (type
), op
);
1700 else if (GET_CODE (op
) == REG
1701 || GET_CODE (op
) == SUBREG
1702 || GET_CODE (op
) == ADDRESSOF
1703 || GET_CODE (op
) == CONCAT
)
1705 tree qual_type
= build_qualified_type (type
,
1707 | TYPE_QUAL_CONST
));
1708 rtx memloc
= assign_temp (qual_type
, 1, 1, 1);
1710 emit_move_insn (memloc
, op
);
1714 else if (GET_CODE (op
) == MEM
&& MEM_VOLATILE_P (op
))
1716 /* We won't recognize volatile memory as available a
1717 memory_operand at this point. Ignore it. */
1719 else if (queued_subexp_p (op
))
1722 /* ??? Leave this only until we have experience with what
1723 happens in combine and elsewhere when constraints are
1725 warning ("asm operand %d probably doesn't match constraints",
1729 generating_concat_p
= old_generating_concat_p
;
1730 ASM_OPERANDS_INPUT (body
, i
) = op
;
1732 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body
, i
)
1733 = gen_rtx_ASM_INPUT (TYPE_MODE (type
), constraints
[i
+ noutputs
]);
1735 if (decl_conflicts_with_clobbers_p (val
, clobbered_regs
))
1736 clobber_conflict_found
= 1;
1739 /* Protect all the operands from the queue now that they have all been
1742 generating_concat_p
= 0;
1744 for (i
= 0; i
< ninputs
- ninout
; i
++)
1745 ASM_OPERANDS_INPUT (body
, i
)
1746 = protect_from_queue (ASM_OPERANDS_INPUT (body
, i
), 0);
1748 for (i
= 0; i
< noutputs
; i
++)
1749 output_rtx
[i
] = protect_from_queue (output_rtx
[i
], 1);
1751 /* For in-out operands, copy output rtx to input rtx. */
1752 for (i
= 0; i
< ninout
; i
++)
1754 int j
= inout_opnum
[i
];
1757 ASM_OPERANDS_INPUT (body
, ninputs
- ninout
+ i
)
1760 sprintf (buffer
, "%d", j
);
1761 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body
, ninputs
- ninout
+ i
)
1762 = gen_rtx_ASM_INPUT (inout_mode
[i
], ggc_alloc_string (buffer
, -1));
1765 generating_concat_p
= old_generating_concat_p
;
1767 /* Now, for each output, construct an rtx
1768 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
1769 ARGVEC CONSTRAINTS OPNAMES))
1770 If there is more than one, put them inside a PARALLEL. */
1772 if (noutputs
== 1 && nclobbers
== 0)
1774 ASM_OPERANDS_OUTPUT_CONSTRAINT (body
) = constraints
[0];
1775 emit_insn (gen_rtx_SET (VOIDmode
, output_rtx
[0], body
));
1778 else if (noutputs
== 0 && nclobbers
== 0)
1780 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1792 body
= gen_rtx_PARALLEL (VOIDmode
, rtvec_alloc (num
+ nclobbers
));
1794 /* For each output operand, store a SET. */
1795 for (i
= 0, tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
), i
++)
1797 XVECEXP (body
, 0, i
)
1798 = gen_rtx_SET (VOIDmode
,
1800 gen_rtx_ASM_OPERANDS
1801 (GET_MODE (output_rtx
[i
]),
1802 TREE_STRING_POINTER (string
),
1803 constraints
[i
], i
, argvec
, constraintvec
,
1806 MEM_VOLATILE_P (SET_SRC (XVECEXP (body
, 0, i
))) = vol
;
1809 /* If there are no outputs (but there are some clobbers)
1810 store the bare ASM_OPERANDS into the PARALLEL. */
1813 XVECEXP (body
, 0, i
++) = obody
;
1815 /* Store (clobber REG) for each clobbered register specified. */
1817 for (tail
= clobbers
; tail
; tail
= TREE_CHAIN (tail
))
1819 const char *regname
= TREE_STRING_POINTER (TREE_VALUE (tail
));
1820 int j
= decode_reg_name (regname
);
1825 if (j
== -3) /* `cc', which is not a register */
1828 if (j
== -4) /* `memory', don't cache memory across asm */
1830 XVECEXP (body
, 0, i
++)
1831 = gen_rtx_CLOBBER (VOIDmode
,
1834 gen_rtx_SCRATCH (VOIDmode
)));
1838 /* Ignore unknown register, error already signaled. */
1842 /* Use QImode since that's guaranteed to clobber just one reg. */
1843 clobbered_reg
= gen_rtx_REG (QImode
, j
);
1845 /* Do sanity check for overlap between clobbers and respectively
1846 input and outputs that hasn't been handled. Such overlap
1847 should have been detected and reported above. */
1848 if (!clobber_conflict_found
)
1852 /* We test the old body (obody) contents to avoid tripping
1853 over the under-construction body. */
1854 for (opno
= 0; opno
< noutputs
; opno
++)
1855 if (reg_overlap_mentioned_p (clobbered_reg
, output_rtx
[opno
]))
1856 internal_error ("asm clobber conflict with output operand");
1858 for (opno
= 0; opno
< ninputs
- ninout
; opno
++)
1859 if (reg_overlap_mentioned_p (clobbered_reg
,
1860 ASM_OPERANDS_INPUT (obody
, opno
)))
1861 internal_error ("asm clobber conflict with input operand");
1864 XVECEXP (body
, 0, i
++)
1865 = gen_rtx_CLOBBER (VOIDmode
, clobbered_reg
);
1871 /* For any outputs that needed reloading into registers, spill them
1872 back to where they belong. */
1873 for (i
= 0; i
< noutputs
; ++i
)
1874 if (real_output_rtx
[i
])
1875 emit_move_insn (real_output_rtx
[i
], output_rtx
[i
]);
1880 /* A subroutine of expand_asm_operands. Check that all operands have
1881 the same number of alternatives. Return true if so. */
1884 check_operand_nalternatives (outputs
, inputs
)
1885 tree outputs
, inputs
;
1887 if (outputs
|| inputs
)
1889 tree tmp
= TREE_PURPOSE (outputs
? outputs
: inputs
);
1891 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp
)));
1894 if (nalternatives
+ 1 > MAX_RECOG_ALTERNATIVES
)
1896 error ("too many alternatives in `asm'");
1903 const char *constraint
1904 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp
)));
1906 if (n_occurrences (',', constraint
) != nalternatives
)
1908 error ("operand constraints for `asm' differ in number of alternatives");
1912 if (TREE_CHAIN (tmp
))
1913 tmp
= TREE_CHAIN (tmp
);
1915 tmp
= next
, next
= 0;
1922 /* A subroutine of expand_asm_operands. Check that all operand names
1923 are unique. Return true if so. We rely on the fact that these names
1924 are identifiers, and so have been canonicalized by get_identifier,
1925 so all we need are pointer comparisons. */
1928 check_unique_operand_names (outputs
, inputs
)
1929 tree outputs
, inputs
;
1933 for (i
= outputs
; i
; i
= TREE_CHAIN (i
))
1935 tree i_name
= TREE_PURPOSE (TREE_PURPOSE (i
));
1939 for (j
= TREE_CHAIN (i
); j
; j
= TREE_CHAIN (j
))
1940 if (simple_cst_equal (i_name
, TREE_PURPOSE (TREE_PURPOSE (j
))))
1944 for (i
= inputs
; i
; i
= TREE_CHAIN (i
))
1946 tree i_name
= TREE_PURPOSE (TREE_PURPOSE (i
));
1950 for (j
= TREE_CHAIN (i
); j
; j
= TREE_CHAIN (j
))
1951 if (simple_cst_equal (i_name
, TREE_PURPOSE (TREE_PURPOSE (j
))))
1953 for (j
= outputs
; j
; j
= TREE_CHAIN (j
))
1954 if (simple_cst_equal (i_name
, TREE_PURPOSE (TREE_PURPOSE (j
))))
1961 error ("duplicate asm operand name '%s'",
1962 TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i
))));
1966 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1967 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1968 STRING and in the constraints to those numbers. */
1971 resolve_operand_names (string
, outputs
, inputs
, pconstraints
)
1973 tree outputs
, inputs
;
1974 const char **pconstraints
;
1976 char *buffer
= xstrdup (TREE_STRING_POINTER (string
));
1980 /* Assume that we will not need extra space to perform the substitution.
1981 This because we get to remove '[' and ']', which means we cannot have
1982 a problem until we have more than 999 operands. */
1985 while ((p
= strchr (p
, '%')) != NULL
)
1989 else if (ISALPHA (p
[1]) && p
[2] == '[')
1997 p
= resolve_operand_name_1 (p
, outputs
, inputs
);
2000 string
= build_string (strlen (buffer
), buffer
);
2003 /* Collect output constraints here because it's convenient.
2004 There should be no named operands here; this is verified
2005 in expand_asm_operand. */
2006 for (t
= outputs
; t
; t
= TREE_CHAIN (t
), pconstraints
++)
2007 *pconstraints
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t
)));
2009 /* Substitute [<name>] in input constraint strings. */
2010 for (t
= inputs
; t
; t
= TREE_CHAIN (t
), pconstraints
++)
2012 const char *c
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t
)));
2013 if (strchr (c
, '[') == NULL
)
2017 p
= buffer
= xstrdup (c
);
2018 while ((p
= strchr (p
, '[')) != NULL
)
2019 p
= resolve_operand_name_1 (p
, outputs
, inputs
);
2021 *pconstraints
= ggc_alloc_string (buffer
, -1);
2029 /* A subroutine of resolve_operand_names. P points to the '[' for a
2030 potential named operand of the form [<name>]. In place, replace
2031 the name and brackets with a number. Return a pointer to the
2032 balance of the string after substitution. */
2035 resolve_operand_name_1 (p
, outputs
, inputs
)
2037 tree outputs
, inputs
;
2044 /* Collect the operand name. */
2045 q
= strchr (p
, ']');
2048 error ("missing close brace for named operand");
2049 return strchr (p
, '\0');
2053 /* Resolve the name to a number. */
2054 for (op
= 0, t
= outputs
; t
; t
= TREE_CHAIN (t
), op
++)
2056 tree name
= TREE_PURPOSE (TREE_PURPOSE (t
));
2059 const char *c
= TREE_STRING_POINTER (name
);
2060 if (strncmp (c
, p
+ 1, len
) == 0 && c
[len
] == '\0')
2064 for (t
= inputs
; t
; t
= TREE_CHAIN (t
), op
++)
2066 tree name
= TREE_PURPOSE (TREE_PURPOSE (t
));
2069 const char *c
= TREE_STRING_POINTER (name
);
2070 if (strncmp (c
, p
+ 1, len
) == 0 && c
[len
] == '\0')
2076 error ("undefined named operand '%s'", p
+ 1);
2080 /* Replace the name with the number. Unfortunately, not all libraries
2081 get the return value of sprintf correct, so search for the end of the
2082 generated string by hand. */
2083 sprintf (p
, "%d", op
);
2084 p
= strchr (p
, '\0');
2086 /* Verify the no extra buffer space assumption. */
2090 /* Shift the rest of the buffer down to fill the gap. */
2091 memmove (p
, q
+ 1, strlen (q
+ 1) + 1);
2096 /* Generate RTL to evaluate the expression EXP
2097 and remember it in case this is the VALUE in a ({... VALUE; }) constr.
2098 Provided just for backward-compatibility. expand_expr_stmt_value()
2099 should be used for new code. */
2102 expand_expr_stmt (exp
)
2105 expand_expr_stmt_value (exp
, -1, 1);
2108 /* Generate RTL to evaluate the expression EXP. WANT_VALUE tells
2109 whether to (1) save the value of the expression, (0) discard it or
2110 (-1) use expr_stmts_for_value to tell. The use of -1 is
2111 deprecated, and retained only for backward compatibility. */
2114 expand_expr_stmt_value (exp
, want_value
, maybe_last
)
2116 int want_value
, maybe_last
;
2121 if (want_value
== -1)
2122 want_value
= expr_stmts_for_value
!= 0;
2124 /* If -W, warn about statements with no side effects,
2125 except for an explicit cast to void (e.g. for assert()), and
2126 except for last statement in ({...}) where they may be useful. */
2128 && (expr_stmts_for_value
== 0 || ! maybe_last
)
2129 && exp
!= error_mark_node
)
2131 if (! TREE_SIDE_EFFECTS (exp
))
2133 if ((extra_warnings
|| warn_unused_value
)
2134 && !(TREE_CODE (exp
) == CONVERT_EXPR
2135 && VOID_TYPE_P (TREE_TYPE (exp
))))
2136 warning_with_file_and_line (emit_filename
, emit_lineno
,
2137 "statement with no effect");
2139 else if (warn_unused_value
)
2140 warn_if_unused_value (exp
);
2143 /* If EXP is of function type and we are expanding statements for
2144 value, convert it to pointer-to-function. */
2145 if (want_value
&& TREE_CODE (TREE_TYPE (exp
)) == FUNCTION_TYPE
)
2146 exp
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (exp
)), exp
);
2148 /* The call to `expand_expr' could cause last_expr_type and
2149 last_expr_value to get reset. Therefore, we set last_expr_value
2150 and last_expr_type *after* calling expand_expr. */
2151 value
= expand_expr (exp
, want_value
? NULL_RTX
: const0_rtx
,
2153 type
= TREE_TYPE (exp
);
2155 /* If all we do is reference a volatile value in memory,
2156 copy it to a register to be sure it is actually touched. */
2157 if (value
&& GET_CODE (value
) == MEM
&& TREE_THIS_VOLATILE (exp
))
2159 if (TYPE_MODE (type
) == VOIDmode
)
2161 else if (TYPE_MODE (type
) != BLKmode
)
2162 value
= copy_to_reg (value
);
2165 rtx lab
= gen_label_rtx ();
2167 /* Compare the value with itself to reference it. */
2168 emit_cmp_and_jump_insns (value
, value
, EQ
,
2169 expand_expr (TYPE_SIZE (type
),
2170 NULL_RTX
, VOIDmode
, 0),
2176 /* If this expression is part of a ({...}) and is in memory, we may have
2177 to preserve temporaries. */
2178 preserve_temp_slots (value
);
2180 /* Free any temporaries used to evaluate this expression. Any temporary
2181 used as a result of this expression will already have been preserved
2187 last_expr_value
= value
;
2188 last_expr_type
= type
;
2194 /* Warn if EXP contains any computations whose results are not used.
2195 Return 1 if a warning is printed; 0 otherwise. */
2198 warn_if_unused_value (exp
)
2201 if (TREE_USED (exp
))
2204 /* Don't warn about void constructs. This includes casting to void,
2205 void function calls, and statement expressions with a final cast
2207 if (VOID_TYPE_P (TREE_TYPE (exp
)))
2210 switch (TREE_CODE (exp
))
2212 case PREINCREMENT_EXPR
:
2213 case POSTINCREMENT_EXPR
:
2214 case PREDECREMENT_EXPR
:
2215 case POSTDECREMENT_EXPR
:
2220 case METHOD_CALL_EXPR
:
2222 case TRY_CATCH_EXPR
:
2223 case WITH_CLEANUP_EXPR
:
2228 /* For a binding, warn if no side effect within it. */
2229 return warn_if_unused_value (TREE_OPERAND (exp
, 1));
2232 return warn_if_unused_value (TREE_OPERAND (exp
, 1));
2234 case TRUTH_ORIF_EXPR
:
2235 case TRUTH_ANDIF_EXPR
:
2236 /* In && or ||, warn if 2nd operand has no side effect. */
2237 return warn_if_unused_value (TREE_OPERAND (exp
, 1));
2240 if (TREE_NO_UNUSED_WARNING (exp
))
2242 if (warn_if_unused_value (TREE_OPERAND (exp
, 0)))
2244 /* Let people do `(foo (), 0)' without a warning. */
2245 if (TREE_CONSTANT (TREE_OPERAND (exp
, 1)))
2247 return warn_if_unused_value (TREE_OPERAND (exp
, 1));
2251 case NON_LVALUE_EXPR
:
2252 /* Don't warn about conversions not explicit in the user's program. */
2253 if (TREE_NO_UNUSED_WARNING (exp
))
2255 /* Assignment to a cast usually results in a cast of a modify.
2256 Don't complain about that. There can be an arbitrary number of
2257 casts before the modify, so we must loop until we find the first
2258 non-cast expression and then test to see if that is a modify. */
2260 tree tem
= TREE_OPERAND (exp
, 0);
2262 while (TREE_CODE (tem
) == CONVERT_EXPR
|| TREE_CODE (tem
) == NOP_EXPR
)
2263 tem
= TREE_OPERAND (tem
, 0);
2265 if (TREE_CODE (tem
) == MODIFY_EXPR
|| TREE_CODE (tem
) == INIT_EXPR
2266 || TREE_CODE (tem
) == CALL_EXPR
)
2272 /* Don't warn about automatic dereferencing of references, since
2273 the user cannot control it. */
2274 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp
, 0))) == REFERENCE_TYPE
)
2275 return warn_if_unused_value (TREE_OPERAND (exp
, 0));
2279 /* Referencing a volatile value is a side effect, so don't warn. */
2281 || TREE_CODE_CLASS (TREE_CODE (exp
)) == 'r')
2282 && TREE_THIS_VOLATILE (exp
))
2285 /* If this is an expression which has no operands, there is no value
2286 to be unused. There are no such language-independent codes,
2287 but front ends may define such. */
2288 if (TREE_CODE_CLASS (TREE_CODE (exp
)) == 'e'
2289 && TREE_CODE_LENGTH (TREE_CODE (exp
)) == 0)
2293 /* If this is an expression with side effects, don't warn. */
2294 if (TREE_SIDE_EFFECTS (exp
))
2297 warning_with_file_and_line (emit_filename
, emit_lineno
,
2298 "value computed is not used");
2303 /* Clear out the memory of the last expression evaluated. */
2308 last_expr_type
= NULL_TREE
;
2309 last_expr_value
= NULL_RTX
;
2312 /* Begin a statement-expression, i.e., a series of statements which
2313 may return a value. Return the RTL_EXPR for this statement expr.
2314 The caller must save that value and pass it to
2315 expand_end_stmt_expr. If HAS_SCOPE is nonzero, temporaries created
2316 in the statement-expression are deallocated at the end of the
2320 expand_start_stmt_expr (has_scope
)
2325 /* Make the RTL_EXPR node temporary, not momentary,
2326 so that rtl_expr_chain doesn't become garbage. */
2327 t
= make_node (RTL_EXPR
);
2328 do_pending_stack_adjust ();
2330 start_sequence_for_rtl_expr (t
);
2334 expr_stmts_for_value
++;
2338 /* Restore the previous state at the end of a statement that returns a value.
2339 Returns a tree node representing the statement's value and the
2340 insns to compute the value.
2342 The nodes of that expression have been freed by now, so we cannot use them.
2343 But we don't want to do that anyway; the expression has already been
2344 evaluated and now we just want to use the value. So generate a RTL_EXPR
2345 with the proper type and RTL value.
2347 If the last substatement was not an expression,
2348 return something with type `void'. */
2351 expand_end_stmt_expr (t
)
2356 if (! last_expr_value
|| ! last_expr_type
)
2358 last_expr_value
= const0_rtx
;
2359 last_expr_type
= void_type_node
;
2361 else if (GET_CODE (last_expr_value
) != REG
&& ! CONSTANT_P (last_expr_value
))
2362 /* Remove any possible QUEUED. */
2363 last_expr_value
= protect_from_queue (last_expr_value
, 0);
2367 TREE_TYPE (t
) = last_expr_type
;
2368 RTL_EXPR_RTL (t
) = last_expr_value
;
2369 RTL_EXPR_SEQUENCE (t
) = get_insns ();
2371 rtl_expr_chain
= tree_cons (NULL_TREE
, t
, rtl_expr_chain
);
2375 /* Don't consider deleting this expr or containing exprs at tree level. */
2376 TREE_SIDE_EFFECTS (t
) = 1;
2377 /* Propagate volatility of the actual RTL expr. */
2378 TREE_THIS_VOLATILE (t
) = volatile_refs_p (last_expr_value
);
2381 expr_stmts_for_value
--;
2386 /* Generate RTL for the start of an if-then. COND is the expression
2387 whose truth should be tested.
2389 If EXITFLAG is nonzero, this conditional is visible to
2390 `exit_something'. */
2393 expand_start_cond (cond
, exitflag
)
2397 struct nesting
*thiscond
= ALLOC_NESTING ();
2399 /* Make an entry on cond_stack for the cond we are entering. */
2401 thiscond
->desc
= COND_NESTING
;
2402 thiscond
->next
= cond_stack
;
2403 thiscond
->all
= nesting_stack
;
2404 thiscond
->depth
= ++nesting_depth
;
2405 thiscond
->data
.cond
.next_label
= gen_label_rtx ();
2406 /* Before we encounter an `else', we don't need a separate exit label
2407 unless there are supposed to be exit statements
2408 to exit this conditional. */
2409 thiscond
->exit_label
= exitflag
? gen_label_rtx () : 0;
2410 thiscond
->data
.cond
.endif_label
= thiscond
->exit_label
;
2411 cond_stack
= thiscond
;
2412 nesting_stack
= thiscond
;
2414 do_jump (cond
, thiscond
->data
.cond
.next_label
, NULL_RTX
);
2417 /* Generate RTL between then-clause and the elseif-clause
2418 of an if-then-elseif-.... */
2421 expand_start_elseif (cond
)
2424 if (cond_stack
->data
.cond
.endif_label
== 0)
2425 cond_stack
->data
.cond
.endif_label
= gen_label_rtx ();
2426 emit_jump (cond_stack
->data
.cond
.endif_label
);
2427 emit_label (cond_stack
->data
.cond
.next_label
);
2428 cond_stack
->data
.cond
.next_label
= gen_label_rtx ();
2429 do_jump (cond
, cond_stack
->data
.cond
.next_label
, NULL_RTX
);
2432 /* Generate RTL between the then-clause and the else-clause
2433 of an if-then-else. */
2436 expand_start_else ()
2438 if (cond_stack
->data
.cond
.endif_label
== 0)
2439 cond_stack
->data
.cond
.endif_label
= gen_label_rtx ();
2441 emit_jump (cond_stack
->data
.cond
.endif_label
);
2442 emit_label (cond_stack
->data
.cond
.next_label
);
2443 cond_stack
->data
.cond
.next_label
= 0; /* No more _else or _elseif calls. */
2446 /* After calling expand_start_else, turn this "else" into an "else if"
2447 by providing another condition. */
2450 expand_elseif (cond
)
2453 cond_stack
->data
.cond
.next_label
= gen_label_rtx ();
2454 do_jump (cond
, cond_stack
->data
.cond
.next_label
, NULL_RTX
);
2457 /* Generate RTL for the end of an if-then.
2458 Pop the record for it off of cond_stack. */
2463 struct nesting
*thiscond
= cond_stack
;
2465 do_pending_stack_adjust ();
2466 if (thiscond
->data
.cond
.next_label
)
2467 emit_label (thiscond
->data
.cond
.next_label
);
2468 if (thiscond
->data
.cond
.endif_label
)
2469 emit_label (thiscond
->data
.cond
.endif_label
);
2471 POPSTACK (cond_stack
);
2475 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2476 loop should be exited by `exit_something'. This is a loop for which
2477 `expand_continue' will jump to the top of the loop.
2479 Make an entry on loop_stack to record the labels associated with
2483 expand_start_loop (exit_flag
)
2486 struct nesting
*thisloop
= ALLOC_NESTING ();
2488 /* Make an entry on loop_stack for the loop we are entering. */
2490 thisloop
->desc
= LOOP_NESTING
;
2491 thisloop
->next
= loop_stack
;
2492 thisloop
->all
= nesting_stack
;
2493 thisloop
->depth
= ++nesting_depth
;
2494 thisloop
->data
.loop
.start_label
= gen_label_rtx ();
2495 thisloop
->data
.loop
.end_label
= gen_label_rtx ();
2496 thisloop
->data
.loop
.continue_label
= thisloop
->data
.loop
.start_label
;
2497 thisloop
->exit_label
= exit_flag
? thisloop
->data
.loop
.end_label
: 0;
2498 loop_stack
= thisloop
;
2499 nesting_stack
= thisloop
;
2501 do_pending_stack_adjust ();
2503 emit_note (NULL
, NOTE_INSN_LOOP_BEG
);
2504 emit_label (thisloop
->data
.loop
.start_label
);
2509 /* Like expand_start_loop but for a loop where the continuation point
2510 (for expand_continue_loop) will be specified explicitly. */
2513 expand_start_loop_continue_elsewhere (exit_flag
)
2516 struct nesting
*thisloop
= expand_start_loop (exit_flag
);
2517 loop_stack
->data
.loop
.continue_label
= gen_label_rtx ();
2521 /* Begin a null, aka do { } while (0) "loop". But since the contents
2522 of said loop can still contain a break, we must frob the loop nest. */
2525 expand_start_null_loop ()
2527 struct nesting
*thisloop
= ALLOC_NESTING ();
2529 /* Make an entry on loop_stack for the loop we are entering. */
2531 thisloop
->desc
= LOOP_NESTING
;
2532 thisloop
->next
= loop_stack
;
2533 thisloop
->all
= nesting_stack
;
2534 thisloop
->depth
= ++nesting_depth
;
2535 thisloop
->data
.loop
.start_label
= emit_note (NULL
, NOTE_INSN_DELETED
);
2536 thisloop
->data
.loop
.end_label
= gen_label_rtx ();
2537 thisloop
->data
.loop
.continue_label
= thisloop
->data
.loop
.end_label
;
2538 thisloop
->exit_label
= thisloop
->data
.loop
.end_label
;
2539 loop_stack
= thisloop
;
2540 nesting_stack
= thisloop
;
2545 /* Specify the continuation point for a loop started with
2546 expand_start_loop_continue_elsewhere.
2547 Use this at the point in the code to which a continue statement
2551 expand_loop_continue_here ()
2553 do_pending_stack_adjust ();
2554 emit_note (NULL
, NOTE_INSN_LOOP_CONT
);
2555 emit_label (loop_stack
->data
.loop
.continue_label
);
2558 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2559 Pop the block off of loop_stack. */
2564 rtx start_label
= loop_stack
->data
.loop
.start_label
;
2566 int eh_regions
, debug_blocks
;
2569 /* Mark the continue-point at the top of the loop if none elsewhere. */
2570 if (start_label
== loop_stack
->data
.loop
.continue_label
)
2571 emit_note_before (NOTE_INSN_LOOP_CONT
, start_label
);
2573 do_pending_stack_adjust ();
2575 /* If the loop starts with a loop exit, roll that to the end where
2576 it will optimize together with the jump back.
2578 If the loop presently looks like this (in pseudo-C):
2582 if (test) goto end_label;
2588 transform it to look like:
2595 if (test) goto end_label;
2599 We rely on the presence of NOTE_INSN_LOOP_END_TOP_COND to mark
2600 the end of the entry conditional. Without this, our lexical scan
2601 can't tell the difference between an entry conditional and a
2602 body conditional that exits the loop. Mistaking the two means
2603 that we can misplace the NOTE_INSN_LOOP_CONT note, which can
2604 screw up loop unrolling.
2606 Things will be oh so much better when loop optimization is done
2607 off of a proper control flow graph... */
2609 /* Scan insns from the top of the loop looking for the END_TOP_COND note. */
2612 eh_regions
= debug_blocks
= 0;
2613 for (etc_note
= start_label
; etc_note
; etc_note
= NEXT_INSN (etc_note
))
2614 if (GET_CODE (etc_note
) == NOTE
)
2616 if (NOTE_LINE_NUMBER (etc_note
) == NOTE_INSN_LOOP_END_TOP_COND
)
2619 /* We must not walk into a nested loop. */
2620 else if (NOTE_LINE_NUMBER (etc_note
) == NOTE_INSN_LOOP_BEG
)
2622 etc_note
= NULL_RTX
;
2626 /* At the same time, scan for EH region notes, as we don't want
2627 to scrog region nesting. This shouldn't happen, but... */
2628 else if (NOTE_LINE_NUMBER (etc_note
) == NOTE_INSN_EH_REGION_BEG
)
2630 else if (NOTE_LINE_NUMBER (etc_note
) == NOTE_INSN_EH_REGION_END
)
2632 if (--eh_regions
< 0)
2633 /* We've come to the end of an EH region, but never saw the
2634 beginning of that region. That means that an EH region
2635 begins before the top of the loop, and ends in the middle
2636 of it. The existence of such a situation violates a basic
2637 assumption in this code, since that would imply that even
2638 when EH_REGIONS is zero, we might move code out of an
2639 exception region. */
2643 /* Likewise for debug scopes. In this case we'll either (1) move
2644 all of the notes if they are properly nested or (2) leave the
2645 notes alone and only rotate the loop at high optimization
2646 levels when we expect to scrog debug info. */
2647 else if (NOTE_LINE_NUMBER (etc_note
) == NOTE_INSN_BLOCK_BEG
)
2649 else if (NOTE_LINE_NUMBER (etc_note
) == NOTE_INSN_BLOCK_END
)
2652 else if (INSN_P (etc_note
))
2659 && (debug_blocks
== 0 || optimize
>= 2)
2660 && NEXT_INSN (etc_note
) != NULL_RTX
2661 && ! any_condjump_p (get_last_insn ()))
2663 /* We found one. Move everything from START to ETC to the end
2664 of the loop, and add a jump from the top of the loop. */
2665 rtx top_label
= gen_label_rtx ();
2666 rtx start_move
= start_label
;
2668 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2669 then we want to move this note also. */
2670 if (GET_CODE (PREV_INSN (start_move
)) == NOTE
2671 && NOTE_LINE_NUMBER (PREV_INSN (start_move
)) == NOTE_INSN_LOOP_CONT
)
2672 start_move
= PREV_INSN (start_move
);
2674 emit_label_before (top_label
, start_move
);
2676 /* Actually move the insns. If the debug scopes are nested, we
2677 can move everything at once. Otherwise we have to move them
2678 one by one and squeeze out the block notes. */
2679 if (debug_blocks
== 0)
2680 reorder_insns (start_move
, etc_note
, get_last_insn ());
2683 rtx insn
, next_insn
;
2684 for (insn
= start_move
; insn
; insn
= next_insn
)
2686 /* Figure out which insn comes after this one. We have
2687 to do this before we move INSN. */
2688 next_insn
= (insn
== etc_note
? NULL
: NEXT_INSN (insn
));
2690 if (GET_CODE (insn
) == NOTE
2691 && (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_BEG
2692 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_END
))
2695 reorder_insns (insn
, insn
, get_last_insn ());
2699 /* Add the jump from the top of the loop. */
2700 emit_jump_insn_before (gen_jump (start_label
), top_label
);
2701 emit_barrier_before (top_label
);
2702 start_label
= top_label
;
2705 emit_jump (start_label
);
2706 emit_note (NULL
, NOTE_INSN_LOOP_END
);
2707 emit_label (loop_stack
->data
.loop
.end_label
);
2709 POPSTACK (loop_stack
);
2714 /* Finish a null loop, aka do { } while (0). */
2717 expand_end_null_loop ()
2719 do_pending_stack_adjust ();
2720 emit_label (loop_stack
->data
.loop
.end_label
);
2722 POPSTACK (loop_stack
);
2727 /* Generate a jump to the current loop's continue-point.
2728 This is usually the top of the loop, but may be specified
2729 explicitly elsewhere. If not currently inside a loop,
2730 return 0 and do nothing; caller will print an error message. */
2733 expand_continue_loop (whichloop
)
2734 struct nesting
*whichloop
;
2736 /* Emit information for branch prediction. */
2739 note
= emit_note (NULL
, NOTE_INSN_PREDICTION
);
2740 NOTE_PREDICTION (note
) = NOTE_PREDICT (PRED_CONTINUE
, IS_TAKEN
);
2743 whichloop
= loop_stack
;
2746 expand_goto_internal (NULL_TREE
, whichloop
->data
.loop
.continue_label
,
2751 /* Generate a jump to exit the current loop. If not currently inside a loop,
2752 return 0 and do nothing; caller will print an error message. */
2755 expand_exit_loop (whichloop
)
2756 struct nesting
*whichloop
;
2760 whichloop
= loop_stack
;
2763 expand_goto_internal (NULL_TREE
, whichloop
->data
.loop
.end_label
, NULL_RTX
);
2767 /* Generate a conditional jump to exit the current loop if COND
2768 evaluates to zero. If not currently inside a loop,
2769 return 0 and do nothing; caller will print an error message. */
2772 expand_exit_loop_if_false (whichloop
, cond
)
2773 struct nesting
*whichloop
;
2780 whichloop
= loop_stack
;
2784 if (integer_nonzerop (cond
))
2786 if (integer_zerop (cond
))
2787 return expand_exit_loop (whichloop
);
2789 /* Check if we definitely won't need a fixup. */
2790 if (whichloop
== nesting_stack
)
2792 jumpifnot (cond
, whichloop
->data
.loop
.end_label
);
2796 /* In order to handle fixups, we actually create a conditional jump
2797 around an unconditional branch to exit the loop. If fixups are
2798 necessary, they go before the unconditional branch. */
2800 label
= gen_label_rtx ();
2801 jumpif (cond
, label
);
2802 expand_goto_internal (NULL_TREE
, whichloop
->data
.loop
.end_label
,
2809 /* Like expand_exit_loop_if_false except also emit a note marking
2810 the end of the conditional. Should only be used immediately
2811 after expand_loop_start. */
2814 expand_exit_loop_top_cond (whichloop
, cond
)
2815 struct nesting
*whichloop
;
2818 if (! expand_exit_loop_if_false (whichloop
, cond
))
2821 emit_note (NULL
, NOTE_INSN_LOOP_END_TOP_COND
);
2825 /* Return nonzero if we should preserve sub-expressions as separate
2826 pseudos. We never do so if we aren't optimizing. We always do so
2827 if -fexpensive-optimizations.
2829 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2830 the loop may still be a small one. */
2833 preserve_subexpressions_p ()
2837 if (flag_expensive_optimizations
)
2840 if (optimize
== 0 || cfun
== 0 || cfun
->stmt
== 0 || loop_stack
== 0)
2843 insn
= get_last_insn_anywhere ();
2846 && (INSN_UID (insn
) - INSN_UID (loop_stack
->data
.loop
.start_label
)
2847 < n_non_fixed_regs
* 3));
2851 /* Generate a jump to exit the current loop, conditional, binding contour
2852 or case statement. Not all such constructs are visible to this function,
2853 only those started with EXIT_FLAG nonzero. Individual languages use
2854 the EXIT_FLAG parameter to control which kinds of constructs you can
2857 If not currently inside anything that can be exited,
2858 return 0 and do nothing; caller will print an error message. */
2861 expand_exit_something ()
2865 for (n
= nesting_stack
; n
; n
= n
->all
)
2866 if (n
->exit_label
!= 0)
2868 expand_goto_internal (NULL_TREE
, n
->exit_label
, NULL_RTX
);
2875 /* Generate RTL to return from the current function, with no value.
2876 (That is, we do not do anything about returning any value.) */
2879 expand_null_return ()
2883 last_insn
= get_last_insn ();
2885 /* If this function was declared to return a value, but we
2886 didn't, clobber the return registers so that they are not
2887 propagated live to the rest of the function. */
2888 clobber_return_register ();
2890 expand_null_return_1 (last_insn
);
2893 /* Try to guess whether the value of return means error code. */
2894 static enum br_predictor
2895 return_prediction (val
)
2898 /* Different heuristics for pointers and scalars. */
2899 if (POINTER_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl
))))
2901 /* NULL is usually not returned. */
2902 if (val
== const0_rtx
)
2903 return PRED_NULL_RETURN
;
2907 /* Negative return values are often used to indicate
2909 if (GET_CODE (val
) == CONST_INT
2910 && INTVAL (val
) < 0)
2911 return PRED_NEGATIVE_RETURN
;
2912 /* Constant return values are also usually erors,
2913 zero/one often mean booleans so exclude them from the
2915 if (CONSTANT_P (val
)
2916 && (val
!= const0_rtx
&& val
!= const1_rtx
))
2917 return PRED_CONST_RETURN
;
2919 return PRED_NO_PREDICTION
;
2922 /* Generate RTL to return from the current function, with value VAL. */
2925 expand_value_return (val
)
2930 enum br_predictor pred
;
2932 if ((pred
= return_prediction (val
)) != PRED_NO_PREDICTION
)
2934 /* Emit information for branch prediction. */
2937 note
= emit_note (NULL
, NOTE_INSN_PREDICTION
);
2939 NOTE_PREDICTION (note
) = NOTE_PREDICT (pred
, NOT_TAKEN
);
2943 last_insn
= get_last_insn ();
2944 return_reg
= DECL_RTL (DECL_RESULT (current_function_decl
));
2946 /* Copy the value to the return location
2947 unless it's already there. */
2949 if (return_reg
!= val
)
2951 tree type
= TREE_TYPE (DECL_RESULT (current_function_decl
));
2952 #ifdef PROMOTE_FUNCTION_RETURN
2953 int unsignedp
= TREE_UNSIGNED (type
);
2954 enum machine_mode old_mode
2955 = DECL_MODE (DECL_RESULT (current_function_decl
));
2956 enum machine_mode mode
2957 = promote_mode (type
, old_mode
, &unsignedp
, 1);
2959 if (mode
!= old_mode
)
2960 val
= convert_modes (mode
, old_mode
, val
, unsignedp
);
2962 if (GET_CODE (return_reg
) == PARALLEL
)
2963 emit_group_load (return_reg
, val
, int_size_in_bytes (type
));
2965 emit_move_insn (return_reg
, val
);
2968 expand_null_return_1 (last_insn
);
2971 /* Output a return with no value. If LAST_INSN is nonzero,
2972 pretend that the return takes place after LAST_INSN. */
2975 expand_null_return_1 (last_insn
)
2978 rtx end_label
= cleanup_label
? cleanup_label
: return_label
;
2980 clear_pending_stack_adjust ();
2981 do_pending_stack_adjust ();
2985 end_label
= return_label
= gen_label_rtx ();
2986 expand_goto_internal (NULL_TREE
, end_label
, last_insn
);
2989 /* Generate RTL to evaluate the expression RETVAL and return it
2990 from the current function. */
2993 expand_return (retval
)
2996 /* If there are any cleanups to be performed, then they will
2997 be inserted following LAST_INSN. It is desirable
2998 that the last_insn, for such purposes, should be the
2999 last insn before computing the return value. Otherwise, cleanups
3000 which call functions can clobber the return value. */
3001 /* ??? rms: I think that is erroneous, because in C++ it would
3002 run destructors on variables that might be used in the subsequent
3003 computation of the return value. */
3009 /* If function wants no value, give it none. */
3010 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl
))) == VOID_TYPE
)
3012 expand_expr (retval
, NULL_RTX
, VOIDmode
, 0);
3014 expand_null_return ();
3018 if (retval
== error_mark_node
)
3020 /* Treat this like a return of no value from a function that
3022 expand_null_return ();
3025 else if (TREE_CODE (retval
) == RESULT_DECL
)
3026 retval_rhs
= retval
;
3027 else if ((TREE_CODE (retval
) == MODIFY_EXPR
|| TREE_CODE (retval
) == INIT_EXPR
)
3028 && TREE_CODE (TREE_OPERAND (retval
, 0)) == RESULT_DECL
)
3029 retval_rhs
= TREE_OPERAND (retval
, 1);
3030 else if (VOID_TYPE_P (TREE_TYPE (retval
)))
3031 /* Recognize tail-recursive call to void function. */
3032 retval_rhs
= retval
;
3034 retval_rhs
= NULL_TREE
;
3036 last_insn
= get_last_insn ();
3038 /* Distribute return down conditional expr if either of the sides
3039 may involve tail recursion (see test below). This enhances the number
3040 of tail recursions we see. Don't do this always since it can produce
3041 sub-optimal code in some cases and we distribute assignments into
3042 conditional expressions when it would help. */
3044 if (optimize
&& retval_rhs
!= 0
3045 && frame_offset
== 0
3046 && TREE_CODE (retval_rhs
) == COND_EXPR
3047 && (TREE_CODE (TREE_OPERAND (retval_rhs
, 1)) == CALL_EXPR
3048 || TREE_CODE (TREE_OPERAND (retval_rhs
, 2)) == CALL_EXPR
))
3050 rtx label
= gen_label_rtx ();
3053 do_jump (TREE_OPERAND (retval_rhs
, 0), label
, NULL_RTX
);
3054 start_cleanup_deferral ();
3055 expr
= build (MODIFY_EXPR
, TREE_TYPE (TREE_TYPE (current_function_decl
)),
3056 DECL_RESULT (current_function_decl
),
3057 TREE_OPERAND (retval_rhs
, 1));
3058 TREE_SIDE_EFFECTS (expr
) = 1;
3059 expand_return (expr
);
3062 expr
= build (MODIFY_EXPR
, TREE_TYPE (TREE_TYPE (current_function_decl
)),
3063 DECL_RESULT (current_function_decl
),
3064 TREE_OPERAND (retval_rhs
, 2));
3065 TREE_SIDE_EFFECTS (expr
) = 1;
3066 expand_return (expr
);
3067 end_cleanup_deferral ();
3071 result_rtl
= DECL_RTL (DECL_RESULT (current_function_decl
));
3073 /* If the result is an aggregate that is being returned in one (or more)
3074 registers, load the registers here. The compiler currently can't handle
3075 copying a BLKmode value into registers. We could put this code in a
3076 more general area (for use by everyone instead of just function
3077 call/return), but until this feature is generally usable it is kept here
3078 (and in expand_call). The value must go into a pseudo in case there
3079 are cleanups that will clobber the real return register. */
3082 && TYPE_MODE (TREE_TYPE (retval_rhs
)) == BLKmode
3083 && GET_CODE (result_rtl
) == REG
)
3086 unsigned HOST_WIDE_INT bitpos
, xbitpos
;
3087 unsigned HOST_WIDE_INT big_endian_correction
= 0;
3088 unsigned HOST_WIDE_INT bytes
3089 = int_size_in_bytes (TREE_TYPE (retval_rhs
));
3090 int n_regs
= (bytes
+ UNITS_PER_WORD
- 1) / UNITS_PER_WORD
;
3091 unsigned int bitsize
3092 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs
)), BITS_PER_WORD
);
3093 rtx
*result_pseudos
= (rtx
*) alloca (sizeof (rtx
) * n_regs
);
3094 rtx result_reg
, src
= NULL_RTX
, dst
= NULL_RTX
;
3095 rtx result_val
= expand_expr (retval_rhs
, NULL_RTX
, VOIDmode
, 0);
3096 enum machine_mode tmpmode
, result_reg_mode
;
3100 expand_null_return ();
3104 /* Structures whose size is not a multiple of a word are aligned
3105 to the least significant byte (to the right). On a BYTES_BIG_ENDIAN
3106 machine, this means we must skip the empty high order bytes when
3107 calculating the bit offset. */
3108 if (BYTES_BIG_ENDIAN
3109 && bytes
% UNITS_PER_WORD
)
3110 big_endian_correction
= (BITS_PER_WORD
- ((bytes
% UNITS_PER_WORD
)
3113 /* Copy the structure BITSIZE bits at a time. */
3114 for (bitpos
= 0, xbitpos
= big_endian_correction
;
3115 bitpos
< bytes
* BITS_PER_UNIT
;
3116 bitpos
+= bitsize
, xbitpos
+= bitsize
)
3118 /* We need a new destination pseudo each time xbitpos is
3119 on a word boundary and when xbitpos == big_endian_correction
3120 (the first time through). */
3121 if (xbitpos
% BITS_PER_WORD
== 0
3122 || xbitpos
== big_endian_correction
)
3124 /* Generate an appropriate register. */
3125 dst
= gen_reg_rtx (word_mode
);
3126 result_pseudos
[xbitpos
/ BITS_PER_WORD
] = dst
;
3128 /* Clear the destination before we move anything into it. */
3129 emit_move_insn (dst
, CONST0_RTX (GET_MODE (dst
)));
3132 /* We need a new source operand each time bitpos is on a word
3134 if (bitpos
% BITS_PER_WORD
== 0)
3135 src
= operand_subword_force (result_val
,
3136 bitpos
/ BITS_PER_WORD
,
3139 /* Use bitpos for the source extraction (left justified) and
3140 xbitpos for the destination store (right justified). */
3141 store_bit_field (dst
, bitsize
, xbitpos
% BITS_PER_WORD
, word_mode
,
3142 extract_bit_field (src
, bitsize
,
3143 bitpos
% BITS_PER_WORD
, 1,
3144 NULL_RTX
, word_mode
, word_mode
,
3149 /* Find the smallest integer mode large enough to hold the
3150 entire structure and use that mode instead of BLKmode
3151 on the USE insn for the return register. */
3152 for (tmpmode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
3153 tmpmode
!= VOIDmode
;
3154 tmpmode
= GET_MODE_WIDER_MODE (tmpmode
))
3155 /* Have we found a large enough mode? */
3156 if (GET_MODE_SIZE (tmpmode
) >= bytes
)
3159 /* No suitable mode found. */
3160 if (tmpmode
== VOIDmode
)
3163 PUT_MODE (result_rtl
, tmpmode
);
3165 if (GET_MODE_SIZE (tmpmode
) < GET_MODE_SIZE (word_mode
))
3166 result_reg_mode
= word_mode
;
3168 result_reg_mode
= tmpmode
;
3169 result_reg
= gen_reg_rtx (result_reg_mode
);
3172 for (i
= 0; i
< n_regs
; i
++)
3173 emit_move_insn (operand_subword (result_reg
, i
, 0, result_reg_mode
),
3176 if (tmpmode
!= result_reg_mode
)
3177 result_reg
= gen_lowpart (tmpmode
, result_reg
);
3179 expand_value_return (result_reg
);
3181 else if (retval_rhs
!= 0
3182 && !VOID_TYPE_P (TREE_TYPE (retval_rhs
))
3183 && (GET_CODE (result_rtl
) == REG
3184 || (GET_CODE (result_rtl
) == PARALLEL
)))
3186 /* Calculate the return value into a temporary (usually a pseudo
3188 tree ot
= TREE_TYPE (DECL_RESULT (current_function_decl
));
3189 tree nt
= build_qualified_type (ot
, TYPE_QUALS (ot
) | TYPE_QUAL_CONST
);
3191 val
= assign_temp (nt
, 0, 0, 1);
3192 val
= expand_expr (retval_rhs
, val
, GET_MODE (val
), 0);
3193 val
= force_not_mem (val
);
3195 /* Return the calculated value, doing cleanups first. */
3196 expand_value_return (val
);
3200 /* No cleanups or no hard reg used;
3201 calculate value into hard return reg. */
3202 expand_expr (retval
, const0_rtx
, VOIDmode
, 0);
3204 expand_value_return (result_rtl
);
3208 /* Attempt to optimize a potential tail recursion call into a goto.
3209 ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3210 where to place the jump to the tail recursion label.
3212 Return TRUE if the call was optimized into a goto. */
3215 optimize_tail_recursion (arguments
, last_insn
)
3219 /* Finish checking validity, and if valid emit code to set the
3220 argument variables for the new call. */
3221 if (tail_recursion_args (arguments
, DECL_ARGUMENTS (current_function_decl
)))
3223 if (tail_recursion_label
== 0)
3225 tail_recursion_label
= gen_label_rtx ();
3226 emit_label_after (tail_recursion_label
,
3227 tail_recursion_reentry
);
3230 expand_goto_internal (NULL_TREE
, tail_recursion_label
, last_insn
);
3237 /* Emit code to alter this function's formal parms for a tail-recursive call.
3238 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3239 FORMALS is the chain of decls of formals.
3240 Return 1 if this can be done;
3241 otherwise return 0 and do not emit any code. */
3244 tail_recursion_args (actuals
, formals
)
3245 tree actuals
, formals
;
3247 tree a
= actuals
, f
= formals
;
3251 /* Check that number and types of actuals are compatible
3252 with the formals. This is not always true in valid C code.
3253 Also check that no formal needs to be addressable
3254 and that all formals are scalars. */
3256 /* Also count the args. */
3258 for (a
= actuals
, f
= formals
, i
= 0; a
&& f
; a
= TREE_CHAIN (a
), f
= TREE_CHAIN (f
), i
++)
3260 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a
)))
3261 != TYPE_MAIN_VARIANT (TREE_TYPE (f
)))
3263 if (GET_CODE (DECL_RTL (f
)) != REG
|| DECL_MODE (f
) == BLKmode
)
3266 if (a
!= 0 || f
!= 0)
3269 /* Compute all the actuals. */
3271 argvec
= (rtx
*) alloca (i
* sizeof (rtx
));
3273 for (a
= actuals
, i
= 0; a
; a
= TREE_CHAIN (a
), i
++)
3274 argvec
[i
] = expand_expr (TREE_VALUE (a
), NULL_RTX
, VOIDmode
, 0);
3276 /* Find which actual values refer to current values of previous formals.
3277 Copy each of them now, before any formal is changed. */
3279 for (a
= actuals
, i
= 0; a
; a
= TREE_CHAIN (a
), i
++)
3283 for (f
= formals
, j
= 0; j
< i
; f
= TREE_CHAIN (f
), j
++)
3284 if (reg_mentioned_p (DECL_RTL (f
), argvec
[i
]))
3290 argvec
[i
] = copy_to_reg (argvec
[i
]);
3293 /* Store the values of the actuals into the formals. */
3295 for (f
= formals
, a
= actuals
, i
= 0; f
;
3296 f
= TREE_CHAIN (f
), a
= TREE_CHAIN (a
), i
++)
3298 if (GET_MODE (DECL_RTL (f
)) == GET_MODE (argvec
[i
]))
3299 emit_move_insn (DECL_RTL (f
), argvec
[i
]);
3302 rtx tmp
= argvec
[i
];
3304 if (DECL_MODE (f
) != GET_MODE (DECL_RTL (f
)))
3306 tmp
= gen_reg_rtx (DECL_MODE (f
));
3307 convert_move (tmp
, argvec
[i
],
3308 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a
))));
3310 convert_move (DECL_RTL (f
), tmp
,
3311 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a
))));
3319 /* Generate the RTL code for entering a binding contour.
3320 The variables are declared one by one, by calls to `expand_decl'.
3322 FLAGS is a bitwise or of the following flags:
3324 1 - Nonzero if this construct should be visible to
3327 2 - Nonzero if this contour does not require a
3328 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3329 language-independent code should set this flag because they
3330 will not create corresponding BLOCK nodes. (There should be
3331 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3332 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3333 when expand_end_bindings is called.
3335 If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3336 optionally be supplied. If so, it becomes the NOTE_BLOCK for the
3340 expand_start_bindings_and_block (flags
, block
)
3344 struct nesting
*thisblock
= ALLOC_NESTING ();
3346 int exit_flag
= ((flags
& 1) != 0);
3347 int block_flag
= ((flags
& 2) == 0);
3349 /* If a BLOCK is supplied, then the caller should be requesting a
3350 NOTE_INSN_BLOCK_BEG note. */
3351 if (!block_flag
&& block
)
3354 /* Create a note to mark the beginning of the block. */
3357 note
= emit_note (NULL
, NOTE_INSN_BLOCK_BEG
);
3358 NOTE_BLOCK (note
) = block
;
3361 note
= emit_note (NULL
, NOTE_INSN_DELETED
);
3363 /* Make an entry on block_stack for the block we are entering. */
3365 thisblock
->desc
= BLOCK_NESTING
;
3366 thisblock
->next
= block_stack
;
3367 thisblock
->all
= nesting_stack
;
3368 thisblock
->depth
= ++nesting_depth
;
3369 thisblock
->data
.block
.stack_level
= 0;
3370 thisblock
->data
.block
.cleanups
= 0;
3371 thisblock
->data
.block
.n_function_calls
= 0;
3372 thisblock
->data
.block
.exception_region
= 0;
3373 thisblock
->data
.block
.block_target_temp_slot_level
= target_temp_slot_level
;
3375 thisblock
->data
.block
.conditional_code
= 0;
3376 thisblock
->data
.block
.last_unconditional_cleanup
= note
;
3377 /* When we insert instructions after the last unconditional cleanup,
3378 we don't adjust last_insn. That means that a later add_insn will
3379 clobber the instructions we've just added. The easiest way to
3380 fix this is to just insert another instruction here, so that the
3381 instructions inserted after the last unconditional cleanup are
3382 never the last instruction. */
3383 emit_note (NULL
, NOTE_INSN_DELETED
);
3386 && !(block_stack
->data
.block
.cleanups
== NULL_TREE
3387 && block_stack
->data
.block
.outer_cleanups
== NULL_TREE
))
3388 thisblock
->data
.block
.outer_cleanups
3389 = tree_cons (NULL_TREE
, block_stack
->data
.block
.cleanups
,
3390 block_stack
->data
.block
.outer_cleanups
);
3392 thisblock
->data
.block
.outer_cleanups
= 0;
3393 thisblock
->data
.block
.label_chain
= 0;
3394 thisblock
->data
.block
.innermost_stack_block
= stack_block_stack
;
3395 thisblock
->data
.block
.first_insn
= note
;
3396 thisblock
->data
.block
.block_start_count
= ++current_block_start_count
;
3397 thisblock
->exit_label
= exit_flag
? gen_label_rtx () : 0;
3398 block_stack
= thisblock
;
3399 nesting_stack
= thisblock
;
3401 /* Make a new level for allocating stack slots. */
3405 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3406 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3407 expand_expr are made. After we end the region, we know that all
3408 space for all temporaries that were created by TARGET_EXPRs will be
3409 destroyed and their space freed for reuse. */
3412 expand_start_target_temps ()
3414 /* This is so that even if the result is preserved, the space
3415 allocated will be freed, as we know that it is no longer in use. */
3418 /* Start a new binding layer that will keep track of all cleanup
3419 actions to be performed. */
3420 expand_start_bindings (2);
3422 target_temp_slot_level
= temp_slot_level
;
3426 expand_end_target_temps ()
3428 expand_end_bindings (NULL_TREE
, 0, 0);
3430 /* This is so that even if the result is preserved, the space
3431 allocated will be freed, as we know that it is no longer in use. */
3435 /* Given a pointer to a BLOCK node return nonzero if (and only if) the node
3436 in question represents the outermost pair of curly braces (i.e. the "body
3437 block") of a function or method.
3439 For any BLOCK node representing a "body block" of a function or method, the
3440 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3441 represents the outermost (function) scope for the function or method (i.e.
3442 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
3443 *that* node in turn will point to the relevant FUNCTION_DECL node. */
3446 is_body_block (stmt
)
3449 if (TREE_CODE (stmt
) == BLOCK
)
3451 tree parent
= BLOCK_SUPERCONTEXT (stmt
);
3453 if (parent
&& TREE_CODE (parent
) == BLOCK
)
3455 tree grandparent
= BLOCK_SUPERCONTEXT (parent
);
3457 if (grandparent
&& TREE_CODE (grandparent
) == FUNCTION_DECL
)
3465 /* True if we are currently emitting insns in an area of output code
3466 that is controlled by a conditional expression. This is used by
3467 the cleanup handling code to generate conditional cleanup actions. */
3470 conditional_context ()
3472 return block_stack
&& block_stack
->data
.block
.conditional_code
;
3475 /* Return an opaque pointer to the current nesting level, so frontend code
3476 can check its own sanity. */
3479 current_nesting_level ()
3481 return cfun
? block_stack
: 0;
3484 /* Emit a handler label for a nonlocal goto handler.
3485 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3488 expand_nl_handler_label (slot
, before_insn
)
3489 rtx slot
, before_insn
;
3492 rtx handler_label
= gen_label_rtx ();
3494 /* Don't let cleanup_cfg delete the handler. */
3495 LABEL_PRESERVE_P (handler_label
) = 1;
3498 emit_move_insn (slot
, gen_rtx_LABEL_REF (Pmode
, handler_label
));
3499 insns
= get_insns ();
3501 emit_insn_before (insns
, before_insn
);
3503 emit_label (handler_label
);
3505 return handler_label
;
3508 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3511 expand_nl_goto_receiver ()
3513 #ifdef HAVE_nonlocal_goto
3514 if (! HAVE_nonlocal_goto
)
3516 /* First adjust our frame pointer to its actual value. It was
3517 previously set to the start of the virtual area corresponding to
3518 the stacked variables when we branched here and now needs to be
3519 adjusted to the actual hardware fp value.
3521 Assignments are to virtual registers are converted by
3522 instantiate_virtual_regs into the corresponding assignment
3523 to the underlying register (fp in this case) that makes
3524 the original assignment true.
3525 So the following insn will actually be
3526 decrementing fp by STARTING_FRAME_OFFSET. */
3527 emit_move_insn (virtual_stack_vars_rtx
, hard_frame_pointer_rtx
);
3529 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3530 if (fixed_regs
[ARG_POINTER_REGNUM
])
3532 #ifdef ELIMINABLE_REGS
3533 /* If the argument pointer can be eliminated in favor of the
3534 frame pointer, we don't need to restore it. We assume here
3535 that if such an elimination is present, it can always be used.
3536 This is the case on all known machines; if we don't make this
3537 assumption, we do unnecessary saving on many machines. */
3538 static const struct elims
{const int from
, to
;} elim_regs
[] = ELIMINABLE_REGS
;
3541 for (i
= 0; i
< ARRAY_SIZE (elim_regs
); i
++)
3542 if (elim_regs
[i
].from
== ARG_POINTER_REGNUM
3543 && elim_regs
[i
].to
== HARD_FRAME_POINTER_REGNUM
)
3546 if (i
== ARRAY_SIZE (elim_regs
))
3549 /* Now restore our arg pointer from the address at which it
3550 was saved in our stack frame. */
3551 emit_move_insn (virtual_incoming_args_rtx
,
3552 copy_to_reg (get_arg_pointer_save_area (cfun
)));
3557 #ifdef HAVE_nonlocal_goto_receiver
3558 if (HAVE_nonlocal_goto_receiver
)
3559 emit_insn (gen_nonlocal_goto_receiver ());
3563 /* Make handlers for nonlocal gotos taking place in the function calls in
3567 expand_nl_goto_receivers (thisblock
)
3568 struct nesting
*thisblock
;
3571 rtx afterward
= gen_label_rtx ();
3576 /* Record the handler address in the stack slot for that purpose,
3577 during this block, saving and restoring the outer value. */
3578 if (thisblock
->next
!= 0)
3579 for (slot
= nonlocal_goto_handler_slots
; slot
; slot
= XEXP (slot
, 1))
3581 rtx save_receiver
= gen_reg_rtx (Pmode
);
3582 emit_move_insn (XEXP (slot
, 0), save_receiver
);
3585 emit_move_insn (save_receiver
, XEXP (slot
, 0));
3586 insns
= get_insns ();
3588 emit_insn_before (insns
, thisblock
->data
.block
.first_insn
);
3591 /* Jump around the handlers; they run only when specially invoked. */
3592 emit_jump (afterward
);
3594 /* Make a separate handler for each label. */
3595 link
= nonlocal_labels
;
3596 slot
= nonlocal_goto_handler_slots
;
3597 label_list
= NULL_RTX
;
3598 for (; link
; link
= TREE_CHAIN (link
), slot
= XEXP (slot
, 1))
3599 /* Skip any labels we shouldn't be able to jump to from here,
3600 we generate one special handler for all of them below which just calls
3602 if (! DECL_TOO_LATE (TREE_VALUE (link
)))
3605 lab
= expand_nl_handler_label (XEXP (slot
, 0),
3606 thisblock
->data
.block
.first_insn
);
3607 label_list
= gen_rtx_EXPR_LIST (VOIDmode
, lab
, label_list
);
3609 expand_nl_goto_receiver ();
3611 /* Jump to the "real" nonlocal label. */
3612 expand_goto (TREE_VALUE (link
));
3615 /* A second pass over all nonlocal labels; this time we handle those
3616 we should not be able to jump to at this point. */
3617 link
= nonlocal_labels
;
3618 slot
= nonlocal_goto_handler_slots
;
3620 for (; link
; link
= TREE_CHAIN (link
), slot
= XEXP (slot
, 1))
3621 if (DECL_TOO_LATE (TREE_VALUE (link
)))
3624 lab
= expand_nl_handler_label (XEXP (slot
, 0),
3625 thisblock
->data
.block
.first_insn
);
3626 label_list
= gen_rtx_EXPR_LIST (VOIDmode
, lab
, label_list
);
3632 expand_nl_goto_receiver ();
3633 expand_builtin_trap ();
3636 nonlocal_goto_handler_labels
= label_list
;
3637 emit_label (afterward
);
3640 /* Warn about any unused VARS (which may contain nodes other than
3641 VAR_DECLs, but such nodes are ignored). The nodes are connected
3642 via the TREE_CHAIN field. */
3645 warn_about_unused_variables (vars
)
3650 if (warn_unused_variable
)
3651 for (decl
= vars
; decl
; decl
= TREE_CHAIN (decl
))
3652 if (TREE_CODE (decl
) == VAR_DECL
3653 && ! TREE_USED (decl
)
3654 && ! DECL_IN_SYSTEM_HEADER (decl
)
3655 && DECL_NAME (decl
) && ! DECL_ARTIFICIAL (decl
))
3656 warning_with_decl (decl
, "unused variable `%s'");
3659 /* Generate RTL code to terminate a binding contour.
3661 VARS is the chain of VAR_DECL nodes for the variables bound in this
3662 contour. There may actually be other nodes in this chain, but any
3663 nodes other than VAR_DECLS are ignored.
3665 MARK_ENDS is nonzero if we should put a note at the beginning
3666 and end of this binding contour.
3668 DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
3669 (That is true automatically if the contour has a saved stack level.) */
3672 expand_end_bindings (vars
, mark_ends
, dont_jump_in
)
3677 struct nesting
*thisblock
= block_stack
;
3679 /* If any of the variables in this scope were not used, warn the
3681 warn_about_unused_variables (vars
);
3683 if (thisblock
->exit_label
)
3685 do_pending_stack_adjust ();
3686 emit_label (thisblock
->exit_label
);
3689 /* If necessary, make handlers for nonlocal gotos taking
3690 place in the function calls in this block. */
3691 if (function_call_count
!= thisblock
->data
.block
.n_function_calls
3693 /* Make handler for outermost block
3694 if there were any nonlocal gotos to this function. */
3695 && (thisblock
->next
== 0 ? current_function_has_nonlocal_label
3696 /* Make handler for inner block if it has something
3697 special to do when you jump out of it. */
3698 : (thisblock
->data
.block
.cleanups
!= 0
3699 || thisblock
->data
.block
.stack_level
!= 0)))
3700 expand_nl_goto_receivers (thisblock
);
3702 /* Don't allow jumping into a block that has a stack level.
3703 Cleanups are allowed, though. */
3705 || thisblock
->data
.block
.stack_level
!= 0)
3707 struct label_chain
*chain
;
3709 /* Any labels in this block are no longer valid to go to.
3710 Mark them to cause an error message. */
3711 for (chain
= thisblock
->data
.block
.label_chain
; chain
; chain
= chain
->next
)
3713 DECL_TOO_LATE (chain
->label
) = 1;
3714 /* If any goto without a fixup came to this label,
3715 that must be an error, because gotos without fixups
3716 come from outside all saved stack-levels. */
3717 if (TREE_ADDRESSABLE (chain
->label
))
3718 error_with_decl (chain
->label
,
3719 "label `%s' used before containing binding contour");
3723 /* Restore stack level in effect before the block
3724 (only if variable-size objects allocated). */
3725 /* Perform any cleanups associated with the block. */
3727 if (thisblock
->data
.block
.stack_level
!= 0
3728 || thisblock
->data
.block
.cleanups
!= 0)
3733 /* Don't let cleanups affect ({...}) constructs. */
3734 int old_expr_stmts_for_value
= expr_stmts_for_value
;
3735 rtx old_last_expr_value
= last_expr_value
;
3736 tree old_last_expr_type
= last_expr_type
;
3737 expr_stmts_for_value
= 0;
3739 /* Only clean up here if this point can actually be reached. */
3740 insn
= get_last_insn ();
3741 if (GET_CODE (insn
) == NOTE
)
3742 insn
= prev_nonnote_insn (insn
);
3743 reachable
= (! insn
|| GET_CODE (insn
) != BARRIER
);
3745 /* Do the cleanups. */
3746 expand_cleanups (thisblock
->data
.block
.cleanups
, NULL_TREE
, 0, reachable
);
3748 do_pending_stack_adjust ();
3750 expr_stmts_for_value
= old_expr_stmts_for_value
;
3751 last_expr_value
= old_last_expr_value
;
3752 last_expr_type
= old_last_expr_type
;
3754 /* Restore the stack level. */
3756 if (reachable
&& thisblock
->data
.block
.stack_level
!= 0)
3758 emit_stack_restore (thisblock
->next
? SAVE_BLOCK
: SAVE_FUNCTION
,
3759 thisblock
->data
.block
.stack_level
, NULL_RTX
);
3760 if (nonlocal_goto_handler_slots
!= 0)
3761 emit_stack_save (SAVE_NONLOCAL
, &nonlocal_goto_stack_level
,
3765 /* Any gotos out of this block must also do these things.
3766 Also report any gotos with fixups that came to labels in this
3768 fixup_gotos (thisblock
,
3769 thisblock
->data
.block
.stack_level
,
3770 thisblock
->data
.block
.cleanups
,
3771 thisblock
->data
.block
.first_insn
,
3775 /* Mark the beginning and end of the scope if requested.
3776 We do this now, after running cleanups on the variables
3777 just going out of scope, so they are in scope for their cleanups. */
3781 rtx note
= emit_note (NULL
, NOTE_INSN_BLOCK_END
);
3782 NOTE_BLOCK (note
) = NOTE_BLOCK (thisblock
->data
.block
.first_insn
);
3785 /* Get rid of the beginning-mark if we don't make an end-mark. */
3786 NOTE_LINE_NUMBER (thisblock
->data
.block
.first_insn
) = NOTE_INSN_DELETED
;
3788 /* Restore the temporary level of TARGET_EXPRs. */
3789 target_temp_slot_level
= thisblock
->data
.block
.block_target_temp_slot_level
;
3791 /* Restore block_stack level for containing block. */
3793 stack_block_stack
= thisblock
->data
.block
.innermost_stack_block
;
3794 POPSTACK (block_stack
);
3796 /* Pop the stack slot nesting and free any slots at this level. */
3800 /* Generate code to save the stack pointer at the start of the current block
3801 and set up to restore it on exit. */
3804 save_stack_pointer ()
3806 struct nesting
*thisblock
= block_stack
;
3808 if (thisblock
->data
.block
.stack_level
== 0)
3810 emit_stack_save (thisblock
->next
? SAVE_BLOCK
: SAVE_FUNCTION
,
3811 &thisblock
->data
.block
.stack_level
,
3812 thisblock
->data
.block
.first_insn
);
3813 stack_block_stack
= thisblock
;
3817 /* Generate RTL for the automatic variable declaration DECL.
3818 (Other kinds of declarations are simply ignored if seen here.) */
3826 type
= TREE_TYPE (decl
);
3828 /* For a CONST_DECL, set mode, alignment, and sizes from those of the
3829 type in case this node is used in a reference. */
3830 if (TREE_CODE (decl
) == CONST_DECL
)
3832 DECL_MODE (decl
) = TYPE_MODE (type
);
3833 DECL_ALIGN (decl
) = TYPE_ALIGN (type
);
3834 DECL_SIZE (decl
) = TYPE_SIZE (type
);
3835 DECL_SIZE_UNIT (decl
) = TYPE_SIZE_UNIT (type
);
3839 /* Otherwise, only automatic variables need any expansion done. Static and
3840 external variables, and external functions, will be handled by
3841 `assemble_variable' (called from finish_decl). TYPE_DECL requires
3842 nothing. PARM_DECLs are handled in `assign_parms'. */
3843 if (TREE_CODE (decl
) != VAR_DECL
)
3846 if (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
))
3849 /* Create the RTL representation for the variable. */
3851 if (type
== error_mark_node
)
3852 SET_DECL_RTL (decl
, gen_rtx_MEM (BLKmode
, const0_rtx
));
3854 else if (DECL_SIZE (decl
) == 0)
3855 /* Variable with incomplete type. */
3858 if (DECL_INITIAL (decl
) == 0)
3859 /* Error message was already done; now avoid a crash. */
3860 x
= gen_rtx_MEM (BLKmode
, const0_rtx
);
3862 /* An initializer is going to decide the size of this array.
3863 Until we know the size, represent its address with a reg. */
3864 x
= gen_rtx_MEM (BLKmode
, gen_reg_rtx (Pmode
));
3866 set_mem_attributes (x
, decl
, 1);
3867 SET_DECL_RTL (decl
, x
);
3869 else if (DECL_MODE (decl
) != BLKmode
3870 /* If -ffloat-store, don't put explicit float vars
3872 && !(flag_float_store
3873 && TREE_CODE (type
) == REAL_TYPE
)
3874 && ! TREE_THIS_VOLATILE (decl
)
3875 && (DECL_REGISTER (decl
) || optimize
))
3877 /* Automatic variable that can go in a register. */
3878 int unsignedp
= TREE_UNSIGNED (type
);
3879 enum machine_mode reg_mode
3880 = promote_mode (type
, DECL_MODE (decl
), &unsignedp
, 0);
3882 SET_DECL_RTL (decl
, gen_reg_rtx (reg_mode
));
3884 if (GET_CODE (DECL_RTL (decl
)) == REG
)
3885 REGNO_DECL (REGNO (DECL_RTL (decl
))) = decl
;
3886 else if (GET_CODE (DECL_RTL (decl
)) == CONCAT
)
3888 REGNO_DECL (REGNO (XEXP (DECL_RTL (decl
), 0))) = decl
;
3889 REGNO_DECL (REGNO (XEXP (DECL_RTL (decl
), 1))) = decl
;
3892 mark_user_reg (DECL_RTL (decl
));
3894 if (POINTER_TYPE_P (type
))
3895 mark_reg_pointer (DECL_RTL (decl
),
3896 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
3898 maybe_set_unchanging (DECL_RTL (decl
), decl
);
3900 /* If something wants our address, try to use ADDRESSOF. */
3901 if (TREE_ADDRESSABLE (decl
))
3902 put_var_into_stack (decl
);
3905 else if (TREE_CODE (DECL_SIZE_UNIT (decl
)) == INTEGER_CST
3906 && ! (flag_stack_check
&& ! STACK_CHECK_BUILTIN
3907 && 0 < compare_tree_int (DECL_SIZE_UNIT (decl
),
3908 STACK_CHECK_MAX_VAR_SIZE
)))
3910 /* Variable of fixed size that goes on the stack. */
3915 /* If we previously made RTL for this decl, it must be an array
3916 whose size was determined by the initializer.
3917 The old address was a register; set that register now
3918 to the proper address. */
3919 if (DECL_RTL_SET_P (decl
))
3921 if (GET_CODE (DECL_RTL (decl
)) != MEM
3922 || GET_CODE (XEXP (DECL_RTL (decl
), 0)) != REG
)
3924 oldaddr
= XEXP (DECL_RTL (decl
), 0);
3927 /* Set alignment we actually gave this decl. */
3928 DECL_ALIGN (decl
) = (DECL_MODE (decl
) == BLKmode
? BIGGEST_ALIGNMENT
3929 : GET_MODE_BITSIZE (DECL_MODE (decl
)));
3930 DECL_USER_ALIGN (decl
) = 0;
3932 x
= assign_temp (decl
, 1, 1, 1);
3933 set_mem_attributes (x
, decl
, 1);
3934 SET_DECL_RTL (decl
, x
);
3938 addr
= force_operand (XEXP (DECL_RTL (decl
), 0), oldaddr
);
3939 if (addr
!= oldaddr
)
3940 emit_move_insn (oldaddr
, addr
);
3944 /* Dynamic-size object: must push space on the stack. */
3946 rtx address
, size
, x
;
3948 /* Record the stack pointer on entry to block, if have
3949 not already done so. */
3950 do_pending_stack_adjust ();
3951 save_stack_pointer ();
3953 /* In function-at-a-time mode, variable_size doesn't expand this,
3955 if (TREE_CODE (type
) == ARRAY_TYPE
&& TYPE_DOMAIN (type
))
3956 expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)),
3957 const0_rtx
, VOIDmode
, 0);
3959 /* Compute the variable's size, in bytes. */
3960 size
= expand_expr (DECL_SIZE_UNIT (decl
), NULL_RTX
, VOIDmode
, 0);
3963 /* Allocate space on the stack for the variable. Note that
3964 DECL_ALIGN says how the variable is to be aligned and we
3965 cannot use it to conclude anything about the alignment of
3967 address
= allocate_dynamic_stack_space (size
, NULL_RTX
,
3968 TYPE_ALIGN (TREE_TYPE (decl
)));
3970 /* Reference the variable indirect through that rtx. */
3971 x
= gen_rtx_MEM (DECL_MODE (decl
), address
);
3972 set_mem_attributes (x
, decl
, 1);
3973 SET_DECL_RTL (decl
, x
);
3976 /* Indicate the alignment we actually gave this variable. */
3977 #ifdef STACK_BOUNDARY
3978 DECL_ALIGN (decl
) = STACK_BOUNDARY
;
3980 DECL_ALIGN (decl
) = BIGGEST_ALIGNMENT
;
3982 DECL_USER_ALIGN (decl
) = 0;
3986 /* Emit code to perform the initialization of a declaration DECL. */
3989 expand_decl_init (decl
)
3992 int was_used
= TREE_USED (decl
);
3994 /* If this is a CONST_DECL, we don't have to generate any code. Likewise
3995 for static decls. */
3996 if (TREE_CODE (decl
) == CONST_DECL
3997 || TREE_STATIC (decl
))
4000 /* Compute and store the initial value now. */
4002 if (DECL_INITIAL (decl
) == error_mark_node
)
4004 enum tree_code code
= TREE_CODE (TREE_TYPE (decl
));
4006 if (code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== ENUMERAL_TYPE
4007 || code
== POINTER_TYPE
|| code
== REFERENCE_TYPE
)
4008 expand_assignment (decl
, convert (TREE_TYPE (decl
), integer_zero_node
),
4012 else if (DECL_INITIAL (decl
) && TREE_CODE (DECL_INITIAL (decl
)) != TREE_LIST
)
4014 emit_line_note (DECL_SOURCE_FILE (decl
), DECL_SOURCE_LINE (decl
));
4015 expand_assignment (decl
, DECL_INITIAL (decl
), 0, 0);
4019 /* Don't let the initialization count as "using" the variable. */
4020 TREE_USED (decl
) = was_used
;
4022 /* Free any temporaries we made while initializing the decl. */
4023 preserve_temp_slots (NULL_RTX
);
4027 /* CLEANUP is an expression to be executed at exit from this binding contour;
4028 for example, in C++, it might call the destructor for this variable.
4030 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
4031 CLEANUP multiple times, and have the correct semantics. This
4032 happens in exception handling, for gotos, returns, breaks that
4033 leave the current scope.
4035 If CLEANUP is nonzero and DECL is zero, we record a cleanup
4036 that is not associated with any particular variable. */
4039 expand_decl_cleanup (decl
, cleanup
)
4042 struct nesting
*thisblock
;
4044 /* Error if we are not in any block. */
4045 if (cfun
== 0 || block_stack
== 0)
4048 thisblock
= block_stack
;
4050 /* Record the cleanup if there is one. */
4056 tree
*cleanups
= &thisblock
->data
.block
.cleanups
;
4057 int cond_context
= conditional_context ();
4061 rtx flag
= gen_reg_rtx (word_mode
);
4066 emit_move_insn (flag
, const0_rtx
);
4067 set_flag_0
= get_insns ();
4070 thisblock
->data
.block
.last_unconditional_cleanup
4071 = emit_insn_after (set_flag_0
,
4072 thisblock
->data
.block
.last_unconditional_cleanup
);
4074 emit_move_insn (flag
, const1_rtx
);
4076 cond
= build_decl (VAR_DECL
, NULL_TREE
,
4077 (*lang_hooks
.types
.type_for_mode
) (word_mode
, 1));
4078 SET_DECL_RTL (cond
, flag
);
4080 /* Conditionalize the cleanup. */
4081 cleanup
= build (COND_EXPR
, void_type_node
,
4082 (*lang_hooks
.truthvalue_conversion
) (cond
),
4083 cleanup
, integer_zero_node
);
4084 cleanup
= fold (cleanup
);
4086 cleanups
= &thisblock
->data
.block
.cleanups
;
4089 cleanup
= unsave_expr (cleanup
);
4091 t
= *cleanups
= tree_cons (decl
, cleanup
, *cleanups
);
4094 /* If this block has a cleanup, it belongs in stack_block_stack. */
4095 stack_block_stack
= thisblock
;
4102 if (! using_eh_for_cleanups_p
)
4103 TREE_ADDRESSABLE (t
) = 1;
4105 expand_eh_region_start ();
4112 thisblock
->data
.block
.last_unconditional_cleanup
4113 = emit_insn_after (seq
,
4114 thisblock
->data
.block
.last_unconditional_cleanup
);
4118 thisblock
->data
.block
.last_unconditional_cleanup
4120 /* When we insert instructions after the last unconditional cleanup,
4121 we don't adjust last_insn. That means that a later add_insn will
4122 clobber the instructions we've just added. The easiest way to
4123 fix this is to just insert another instruction here, so that the
4124 instructions inserted after the last unconditional cleanup are
4125 never the last instruction. */
4126 emit_note (NULL
, NOTE_INSN_DELETED
);
4132 /* Like expand_decl_cleanup, but maybe only run the cleanup if an exception
4136 expand_decl_cleanup_eh (decl
, cleanup
, eh_only
)
4140 int ret
= expand_decl_cleanup (decl
, cleanup
);
4143 tree node
= block_stack
->data
.block
.cleanups
;
4144 CLEANUP_EH_ONLY (node
) = eh_only
;
4149 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4150 DECL_ELTS is the list of elements that belong to DECL's type.
4151 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4154 expand_anon_union_decl (decl
, cleanup
, decl_elts
)
4155 tree decl
, cleanup
, decl_elts
;
4157 struct nesting
*thisblock
= cfun
== 0 ? 0 : block_stack
;
4161 /* If any of the elements are addressable, so is the entire union. */
4162 for (t
= decl_elts
; t
; t
= TREE_CHAIN (t
))
4163 if (TREE_ADDRESSABLE (TREE_VALUE (t
)))
4165 TREE_ADDRESSABLE (decl
) = 1;
4170 expand_decl_cleanup (decl
, cleanup
);
4171 x
= DECL_RTL (decl
);
4173 /* Go through the elements, assigning RTL to each. */
4174 for (t
= decl_elts
; t
; t
= TREE_CHAIN (t
))
4176 tree decl_elt
= TREE_VALUE (t
);
4177 tree cleanup_elt
= TREE_PURPOSE (t
);
4178 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (decl_elt
));
4180 /* If any of the elements are addressable, so is the entire
4182 if (TREE_USED (decl_elt
))
4183 TREE_USED (decl
) = 1;
4185 /* Propagate the union's alignment to the elements. */
4186 DECL_ALIGN (decl_elt
) = DECL_ALIGN (decl
);
4187 DECL_USER_ALIGN (decl_elt
) = DECL_USER_ALIGN (decl
);
4189 /* If the element has BLKmode and the union doesn't, the union is
4190 aligned such that the element doesn't need to have BLKmode, so
4191 change the element's mode to the appropriate one for its size. */
4192 if (mode
== BLKmode
&& DECL_MODE (decl
) != BLKmode
)
4193 DECL_MODE (decl_elt
) = mode
4194 = mode_for_size_tree (DECL_SIZE (decl_elt
), MODE_INT
, 1);
4196 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
4197 instead create a new MEM rtx with the proper mode. */
4198 if (GET_CODE (x
) == MEM
)
4200 if (mode
== GET_MODE (x
))
4201 SET_DECL_RTL (decl_elt
, x
);
4203 SET_DECL_RTL (decl_elt
, adjust_address_nv (x
, mode
, 0));
4205 else if (GET_CODE (x
) == REG
)
4207 if (mode
== GET_MODE (x
))
4208 SET_DECL_RTL (decl_elt
, x
);
4210 SET_DECL_RTL (decl_elt
, gen_lowpart_SUBREG (mode
, x
));
4215 /* Record the cleanup if there is one. */
4218 thisblock
->data
.block
.cleanups
4219 = tree_cons (decl_elt
, cleanup_elt
,
4220 thisblock
->data
.block
.cleanups
);
4224 /* Expand a list of cleanups LIST.
4225 Elements may be expressions or may be nested lists.
4227 If DONT_DO is nonnull, then any list-element
4228 whose TREE_PURPOSE matches DONT_DO is omitted.
4229 This is sometimes used to avoid a cleanup associated with
4230 a value that is being returned out of the scope.
4232 If IN_FIXUP is nonzero, we are generating this cleanup for a fixup
4233 goto and handle protection regions specially in that case.
4235 If REACHABLE, we emit code, otherwise just inform the exception handling
4236 code about this finalization. */
4239 expand_cleanups (list
, dont_do
, in_fixup
, reachable
)
4246 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
4247 if (dont_do
== 0 || TREE_PURPOSE (tail
) != dont_do
)
4249 if (TREE_CODE (TREE_VALUE (tail
)) == TREE_LIST
)
4250 expand_cleanups (TREE_VALUE (tail
), dont_do
, in_fixup
, reachable
);
4253 if (! in_fixup
&& using_eh_for_cleanups_p
)
4254 expand_eh_region_end_cleanup (TREE_VALUE (tail
));
4256 if (reachable
&& !CLEANUP_EH_ONLY (tail
))
4258 /* Cleanups may be run multiple times. For example,
4259 when exiting a binding contour, we expand the
4260 cleanups associated with that contour. When a goto
4261 within that binding contour has a target outside that
4262 contour, it will expand all cleanups from its scope to
4263 the target. Though the cleanups are expanded multiple
4264 times, the control paths are non-overlapping so the
4265 cleanups will not be executed twice. */
4267 /* We may need to protect from outer cleanups. */
4268 if (in_fixup
&& using_eh_for_cleanups_p
)
4270 expand_eh_region_start ();
4272 expand_expr (TREE_VALUE (tail
), const0_rtx
, VOIDmode
, 0);
4274 expand_eh_region_end_fixup (TREE_VALUE (tail
));
4277 expand_expr (TREE_VALUE (tail
), const0_rtx
, VOIDmode
, 0);
4285 /* Mark when the context we are emitting RTL for as a conditional
4286 context, so that any cleanup actions we register with
4287 expand_decl_init will be properly conditionalized when those
4288 cleanup actions are later performed. Must be called before any
4289 expression (tree) is expanded that is within a conditional context. */
4292 start_cleanup_deferral ()
4294 /* block_stack can be NULL if we are inside the parameter list. It is
4295 OK to do nothing, because cleanups aren't possible here. */
4297 ++block_stack
->data
.block
.conditional_code
;
4300 /* Mark the end of a conditional region of code. Because cleanup
4301 deferrals may be nested, we may still be in a conditional region
4302 after we end the currently deferred cleanups, only after we end all
4303 deferred cleanups, are we back in unconditional code. */
4306 end_cleanup_deferral ()
4308 /* block_stack can be NULL if we are inside the parameter list. It is
4309 OK to do nothing, because cleanups aren't possible here. */
4311 --block_stack
->data
.block
.conditional_code
;
4315 last_cleanup_this_contour ()
4317 if (block_stack
== 0)
4320 return block_stack
->data
.block
.cleanups
;
4323 /* Return 1 if there are any pending cleanups at this point.
4324 If THIS_CONTOUR is nonzero, check the current contour as well.
4325 Otherwise, look only at the contours that enclose this one. */
4328 any_pending_cleanups (this_contour
)
4331 struct nesting
*block
;
4333 if (cfun
== NULL
|| cfun
->stmt
== NULL
|| block_stack
== 0)
4336 if (this_contour
&& block_stack
->data
.block
.cleanups
!= NULL
)
4338 if (block_stack
->data
.block
.cleanups
== 0
4339 && block_stack
->data
.block
.outer_cleanups
== 0)
4342 for (block
= block_stack
->next
; block
; block
= block
->next
)
4343 if (block
->data
.block
.cleanups
!= 0)
4349 /* Enter a case (Pascal) or switch (C) statement.
4350 Push a block onto case_stack and nesting_stack
4351 to accumulate the case-labels that are seen
4352 and to record the labels generated for the statement.
4354 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
4355 Otherwise, this construct is transparent for `exit_something'.
4357 EXPR is the index-expression to be dispatched on.
4358 TYPE is its nominal type. We could simply convert EXPR to this type,
4359 but instead we take short cuts. */
4362 expand_start_case (exit_flag
, expr
, type
, printname
)
4366 const char *printname
;
4368 struct nesting
*thiscase
= ALLOC_NESTING ();
4370 /* Make an entry on case_stack for the case we are entering. */
4372 thiscase
->desc
= CASE_NESTING
;
4373 thiscase
->next
= case_stack
;
4374 thiscase
->all
= nesting_stack
;
4375 thiscase
->depth
= ++nesting_depth
;
4376 thiscase
->exit_label
= exit_flag
? gen_label_rtx () : 0;
4377 thiscase
->data
.case_stmt
.case_list
= 0;
4378 thiscase
->data
.case_stmt
.index_expr
= expr
;
4379 thiscase
->data
.case_stmt
.nominal_type
= type
;
4380 thiscase
->data
.case_stmt
.default_label
= 0;
4381 thiscase
->data
.case_stmt
.printname
= printname
;
4382 thiscase
->data
.case_stmt
.line_number_status
= force_line_numbers ();
4383 case_stack
= thiscase
;
4384 nesting_stack
= thiscase
;
4386 do_pending_stack_adjust ();
4388 /* Make sure case_stmt.start points to something that won't
4389 need any transformation before expand_end_case. */
4390 if (GET_CODE (get_last_insn ()) != NOTE
)
4391 emit_note (NULL
, NOTE_INSN_DELETED
);
4393 thiscase
->data
.case_stmt
.start
= get_last_insn ();
4395 start_cleanup_deferral ();
4398 /* Start a "dummy case statement" within which case labels are invalid
4399 and are not connected to any larger real case statement.
4400 This can be used if you don't want to let a case statement jump
4401 into the middle of certain kinds of constructs. */
4404 expand_start_case_dummy ()
4406 struct nesting
*thiscase
= ALLOC_NESTING ();
4408 /* Make an entry on case_stack for the dummy. */
4410 thiscase
->desc
= CASE_NESTING
;
4411 thiscase
->next
= case_stack
;
4412 thiscase
->all
= nesting_stack
;
4413 thiscase
->depth
= ++nesting_depth
;
4414 thiscase
->exit_label
= 0;
4415 thiscase
->data
.case_stmt
.case_list
= 0;
4416 thiscase
->data
.case_stmt
.start
= 0;
4417 thiscase
->data
.case_stmt
.nominal_type
= 0;
4418 thiscase
->data
.case_stmt
.default_label
= 0;
4419 case_stack
= thiscase
;
4420 nesting_stack
= thiscase
;
4421 start_cleanup_deferral ();
4427 /* If this is the first label, warn if any insns have been emitted. */
4428 if (case_stack
->data
.case_stmt
.line_number_status
>= 0)
4432 restore_line_number_status
4433 (case_stack
->data
.case_stmt
.line_number_status
);
4434 case_stack
->data
.case_stmt
.line_number_status
= -1;
4436 for (insn
= case_stack
->data
.case_stmt
.start
;
4438 insn
= NEXT_INSN (insn
))
4440 if (GET_CODE (insn
) == CODE_LABEL
)
4442 if (GET_CODE (insn
) != NOTE
4443 && (GET_CODE (insn
) != INSN
|| GET_CODE (PATTERN (insn
)) != USE
))
4446 insn
= PREV_INSN (insn
);
4447 while (insn
&& (GET_CODE (insn
) != NOTE
|| NOTE_LINE_NUMBER (insn
) < 0));
4449 /* If insn is zero, then there must have been a syntax error. */
4451 warning_with_file_and_line (NOTE_SOURCE_FILE (insn
),
4452 NOTE_LINE_NUMBER (insn
),
4453 "unreachable code at beginning of %s",
4454 case_stack
->data
.case_stmt
.printname
);
4461 /* Accumulate one case or default label inside a case or switch statement.
4462 VALUE is the value of the case (a null pointer, for a default label).
4463 The function CONVERTER, when applied to arguments T and V,
4464 converts the value V to the type T.
4466 If not currently inside a case or switch statement, return 1 and do
4467 nothing. The caller will print a language-specific error message.
4468 If VALUE is a duplicate or overlaps, return 2 and do nothing
4469 except store the (first) duplicate node in *DUPLICATE.
4470 If VALUE is out of range, return 3 and do nothing.
4471 If we are jumping into the scope of a cleanup or var-sized array, return 5.
4472 Return 0 on success.
4474 Extended to handle range statements. */
4477 pushcase (value
, converter
, label
, duplicate
)
4479 tree (*converter
) PARAMS ((tree
, tree
));
4486 /* Fail if not inside a real case statement. */
4487 if (! (case_stack
&& case_stack
->data
.case_stmt
.start
))
4490 if (stack_block_stack
4491 && stack_block_stack
->depth
> case_stack
->depth
)
4494 index_type
= TREE_TYPE (case_stack
->data
.case_stmt
.index_expr
);
4495 nominal_type
= case_stack
->data
.case_stmt
.nominal_type
;
4497 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4498 if (index_type
== error_mark_node
)
4501 /* Convert VALUE to the type in which the comparisons are nominally done. */
4503 value
= (*converter
) (nominal_type
, value
);
4507 /* Fail if this value is out of range for the actual type of the index
4508 (which may be narrower than NOMINAL_TYPE). */
4510 && (TREE_CONSTANT_OVERFLOW (value
)
4511 || ! int_fits_type_p (value
, index_type
)))
4514 return add_case_node (value
, value
, label
, duplicate
);
4517 /* Like pushcase but this case applies to all values between VALUE1 and
4518 VALUE2 (inclusive). If VALUE1 is NULL, the range starts at the lowest
4519 value of the index type and ends at VALUE2. If VALUE2 is NULL, the range
4520 starts at VALUE1 and ends at the highest value of the index type.
4521 If both are NULL, this case applies to all values.
4523 The return value is the same as that of pushcase but there is one
4524 additional error code: 4 means the specified range was empty. */
4527 pushcase_range (value1
, value2
, converter
, label
, duplicate
)
4528 tree value1
, value2
;
4529 tree (*converter
) PARAMS ((tree
, tree
));
4536 /* Fail if not inside a real case statement. */
4537 if (! (case_stack
&& case_stack
->data
.case_stmt
.start
))
4540 if (stack_block_stack
4541 && stack_block_stack
->depth
> case_stack
->depth
)
4544 index_type
= TREE_TYPE (case_stack
->data
.case_stmt
.index_expr
);
4545 nominal_type
= case_stack
->data
.case_stmt
.nominal_type
;
4547 /* If the index is erroneous, avoid more problems: pretend to succeed. */
4548 if (index_type
== error_mark_node
)
4553 /* Convert VALUEs to type in which the comparisons are nominally done
4554 and replace any unspecified value with the corresponding bound. */
4556 value1
= TYPE_MIN_VALUE (index_type
);
4558 value2
= TYPE_MAX_VALUE (index_type
);
4560 /* Fail if the range is empty. Do this before any conversion since
4561 we want to allow out-of-range empty ranges. */
4562 if (value2
!= 0 && tree_int_cst_lt (value2
, value1
))
4565 /* If the max was unbounded, use the max of the nominal_type we are
4566 converting to. Do this after the < check above to suppress false
4569 value2
= TYPE_MAX_VALUE (nominal_type
);
4571 value1
= (*converter
) (nominal_type
, value1
);
4572 value2
= (*converter
) (nominal_type
, value2
);
4574 /* Fail if these values are out of range. */
4575 if (TREE_CONSTANT_OVERFLOW (value1
)
4576 || ! int_fits_type_p (value1
, index_type
))
4579 if (TREE_CONSTANT_OVERFLOW (value2
)
4580 || ! int_fits_type_p (value2
, index_type
))
4583 return add_case_node (value1
, value2
, label
, duplicate
);
4586 /* Do the actual insertion of a case label for pushcase and pushcase_range
4587 into case_stack->data.case_stmt.case_list. Use an AVL tree to avoid
4588 slowdown for large switch statements. */
4591 add_case_node (low
, high
, label
, duplicate
)
4596 struct case_node
*p
, **q
, *r
;
4598 /* If there's no HIGH value, then this is not a case range; it's
4599 just a simple case label. But that's just a degenerate case
4604 /* Handle default labels specially. */
4607 if (case_stack
->data
.case_stmt
.default_label
!= 0)
4609 *duplicate
= case_stack
->data
.case_stmt
.default_label
;
4612 case_stack
->data
.case_stmt
.default_label
= label
;
4613 expand_label (label
);
4617 q
= &case_stack
->data
.case_stmt
.case_list
;
4624 /* Keep going past elements distinctly greater than HIGH. */
4625 if (tree_int_cst_lt (high
, p
->low
))
4628 /* or distinctly less than LOW. */
4629 else if (tree_int_cst_lt (p
->high
, low
))
4634 /* We have an overlap; this is an error. */
4635 *duplicate
= p
->code_label
;
4640 /* Add this label to the chain, and succeed. */
4642 r
= (struct case_node
*) ggc_alloc (sizeof (struct case_node
));
4645 /* If the bounds are equal, turn this into the one-value case. */
4646 if (tree_int_cst_equal (low
, high
))
4651 r
->code_label
= label
;
4652 expand_label (label
);
4662 struct case_node
*s
;
4668 if (! (b
= p
->balance
))
4669 /* Growth propagation from left side. */
4676 if ((p
->left
= s
= r
->right
))
4685 if ((r
->parent
= s
))
4693 case_stack
->data
.case_stmt
.case_list
= r
;
4696 /* r->balance == +1 */
4701 struct case_node
*t
= r
->right
;
4703 if ((p
->left
= s
= t
->right
))
4707 if ((r
->right
= s
= t
->left
))
4721 if ((t
->parent
= s
))
4729 case_stack
->data
.case_stmt
.case_list
= t
;
4736 /* p->balance == +1; growth of left side balances the node. */
4746 if (! (b
= p
->balance
))
4747 /* Growth propagation from right side. */
4755 if ((p
->right
= s
= r
->left
))
4763 if ((r
->parent
= s
))
4772 case_stack
->data
.case_stmt
.case_list
= r
;
4776 /* r->balance == -1 */
4780 struct case_node
*t
= r
->left
;
4782 if ((p
->right
= s
= t
->left
))
4787 if ((r
->left
= s
= t
->right
))
4801 if ((t
->parent
= s
))
4810 case_stack
->data
.case_stmt
.case_list
= t
;
4816 /* p->balance == -1; growth of right side balances the node. */
4829 /* Returns the number of possible values of TYPE.
4830 Returns -1 if the number is unknown, variable, or if the number does not
4831 fit in a HOST_WIDE_INT.
4832 Sets *SPARSENESS to 2 if TYPE is an ENUMERAL_TYPE whose values
4833 do not increase monotonically (there may be duplicates);
4834 to 1 if the values increase monotonically, but not always by 1;
4835 otherwise sets it to 0. */
4838 all_cases_count (type
, sparseness
)
4843 HOST_WIDE_INT count
, minval
, lastval
;
4847 switch (TREE_CODE (type
))
4854 count
= 1 << BITS_PER_UNIT
;
4859 if (TYPE_MAX_VALUE (type
) != 0
4860 && 0 != (t
= fold (build (MINUS_EXPR
, type
, TYPE_MAX_VALUE (type
),
4861 TYPE_MIN_VALUE (type
))))
4862 && 0 != (t
= fold (build (PLUS_EXPR
, type
, t
,
4863 convert (type
, integer_zero_node
))))
4864 && host_integerp (t
, 1))
4865 count
= tree_low_cst (t
, 1);
4871 /* Don't waste time with enumeral types with huge values. */
4872 if (! host_integerp (TYPE_MIN_VALUE (type
), 0)
4873 || TYPE_MAX_VALUE (type
) == 0
4874 || ! host_integerp (TYPE_MAX_VALUE (type
), 0))
4877 lastval
= minval
= tree_low_cst (TYPE_MIN_VALUE (type
), 0);
4880 for (t
= TYPE_VALUES (type
); t
!= NULL_TREE
; t
= TREE_CHAIN (t
))
4882 HOST_WIDE_INT thisval
= tree_low_cst (TREE_VALUE (t
), 0);
4884 if (*sparseness
== 2 || thisval
<= lastval
)
4886 else if (thisval
!= minval
+ count
)
4897 #define BITARRAY_TEST(ARRAY, INDEX) \
4898 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4899 & (1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR)))
4900 #define BITARRAY_SET(ARRAY, INDEX) \
4901 ((ARRAY)[(unsigned) (INDEX) / HOST_BITS_PER_CHAR]\
4902 |= 1 << ((unsigned) (INDEX) % HOST_BITS_PER_CHAR))
4904 /* Set the elements of the bitstring CASES_SEEN (which has length COUNT),
4905 with the case values we have seen, assuming the case expression
4907 SPARSENESS is as determined by all_cases_count.
4909 The time needed is proportional to COUNT, unless
4910 SPARSENESS is 2, in which case quadratic time is needed. */
4913 mark_seen_cases (type
, cases_seen
, count
, sparseness
)
4915 unsigned char *cases_seen
;
4916 HOST_WIDE_INT count
;
4919 tree next_node_to_try
= NULL_TREE
;
4920 HOST_WIDE_INT next_node_offset
= 0;
4922 struct case_node
*n
, *root
= case_stack
->data
.case_stmt
.case_list
;
4923 tree val
= make_node (INTEGER_CST
);
4925 TREE_TYPE (val
) = type
;
4929 else if (sparseness
== 2)
4932 unsigned HOST_WIDE_INT xlo
;
4934 /* This less efficient loop is only needed to handle
4935 duplicate case values (multiple enum constants
4936 with the same value). */
4937 TREE_TYPE (val
) = TREE_TYPE (root
->low
);
4938 for (t
= TYPE_VALUES (type
), xlo
= 0; t
!= NULL_TREE
;
4939 t
= TREE_CHAIN (t
), xlo
++)
4941 TREE_INT_CST_LOW (val
) = TREE_INT_CST_LOW (TREE_VALUE (t
));
4942 TREE_INT_CST_HIGH (val
) = TREE_INT_CST_HIGH (TREE_VALUE (t
));
4946 /* Keep going past elements distinctly greater than VAL. */
4947 if (tree_int_cst_lt (val
, n
->low
))
4950 /* or distinctly less than VAL. */
4951 else if (tree_int_cst_lt (n
->high
, val
))
4956 /* We have found a matching range. */
4957 BITARRAY_SET (cases_seen
, xlo
);
4967 case_stack
->data
.case_stmt
.case_list
= root
= case_tree2list (root
, 0);
4969 for (n
= root
; n
; n
= n
->right
)
4971 TREE_INT_CST_LOW (val
) = TREE_INT_CST_LOW (n
->low
);
4972 TREE_INT_CST_HIGH (val
) = TREE_INT_CST_HIGH (n
->low
);
4973 while (! tree_int_cst_lt (n
->high
, val
))
4975 /* Calculate (into xlo) the "offset" of the integer (val).
4976 The element with lowest value has offset 0, the next smallest
4977 element has offset 1, etc. */
4979 unsigned HOST_WIDE_INT xlo
;
4983 if (sparseness
&& TYPE_VALUES (type
) != NULL_TREE
)
4985 /* The TYPE_VALUES will be in increasing order, so
4986 starting searching where we last ended. */
4987 t
= next_node_to_try
;
4988 xlo
= next_node_offset
;
4994 t
= TYPE_VALUES (type
);
4997 if (tree_int_cst_equal (val
, TREE_VALUE (t
)))
4999 next_node_to_try
= TREE_CHAIN (t
);
5000 next_node_offset
= xlo
+ 1;
5005 if (t
== next_node_to_try
)
5014 t
= TYPE_MIN_VALUE (type
);
5016 neg_double (TREE_INT_CST_LOW (t
), TREE_INT_CST_HIGH (t
),
5020 add_double (xlo
, xhi
,
5021 TREE_INT_CST_LOW (val
), TREE_INT_CST_HIGH (val
),
5025 if (xhi
== 0 && xlo
< (unsigned HOST_WIDE_INT
) count
)
5026 BITARRAY_SET (cases_seen
, xlo
);
5028 add_double (TREE_INT_CST_LOW (val
), TREE_INT_CST_HIGH (val
),
5030 &TREE_INT_CST_LOW (val
), &TREE_INT_CST_HIGH (val
));
5036 /* Given a switch statement with an expression that is an enumeration
5037 type, warn if any of the enumeration type's literals are not
5038 covered by the case expressions of the switch. Also, warn if there
5039 are any extra switch cases that are *not* elements of the
5044 At one stage this function would: ``If all enumeration literals
5045 were covered by the case expressions, turn one of the expressions
5046 into the default expression since it should not be possible to fall
5047 through such a switch.''
5049 That code has since been removed as: ``This optimization is
5050 disabled because it causes valid programs to fail. ANSI C does not
5051 guarantee that an expression with enum type will have a value that
5052 is the same as one of the enumeration literals.'' */
5055 check_for_full_enumeration_handling (type
)
5058 struct case_node
*n
;
5061 /* True iff the selector type is a numbered set mode. */
5064 /* The number of possible selector values. */
5067 /* For each possible selector value. a one iff it has been matched
5068 by a case value alternative. */
5069 unsigned char *cases_seen
;
5071 /* The allocated size of cases_seen, in chars. */
5072 HOST_WIDE_INT bytes_needed
;
5074 size
= all_cases_count (type
, &sparseness
);
5075 bytes_needed
= (size
+ HOST_BITS_PER_CHAR
) / HOST_BITS_PER_CHAR
;
5077 if (size
> 0 && size
< 600000
5078 /* We deliberately use calloc here, not cmalloc, so that we can suppress
5079 this optimization if we don't have enough memory rather than
5080 aborting, as xmalloc would do. */
5082 (unsigned char *) really_call_calloc (bytes_needed
, 1)) != NULL
)
5085 tree v
= TYPE_VALUES (type
);
5087 /* The time complexity of this code is normally O(N), where
5088 N being the number of members in the enumerated type.
5089 However, if type is an ENUMERAL_TYPE whose values do not
5090 increase monotonically, O(N*log(N)) time may be needed. */
5092 mark_seen_cases (type
, cases_seen
, size
, sparseness
);
5094 for (i
= 0; v
!= NULL_TREE
&& i
< size
; i
++, v
= TREE_CHAIN (v
))
5095 if (BITARRAY_TEST (cases_seen
, i
) == 0)
5096 warning ("enumeration value `%s' not handled in switch",
5097 IDENTIFIER_POINTER (TREE_PURPOSE (v
)));
5102 /* Now we go the other way around; we warn if there are case
5103 expressions that don't correspond to enumerators. This can
5104 occur since C and C++ don't enforce type-checking of
5105 assignments to enumeration variables. */
5107 if (case_stack
->data
.case_stmt
.case_list
5108 && case_stack
->data
.case_stmt
.case_list
->left
)
5109 case_stack
->data
.case_stmt
.case_list
5110 = case_tree2list (case_stack
->data
.case_stmt
.case_list
, 0);
5111 for (n
= case_stack
->data
.case_stmt
.case_list
; n
; n
= n
->right
)
5113 for (chain
= TYPE_VALUES (type
);
5114 chain
&& !tree_int_cst_equal (n
->low
, TREE_VALUE (chain
));
5115 chain
= TREE_CHAIN (chain
))
5120 if (TYPE_NAME (type
) == 0)
5121 warning ("case value `%ld' not in enumerated type",
5122 (long) TREE_INT_CST_LOW (n
->low
));
5124 warning ("case value `%ld' not in enumerated type `%s'",
5125 (long) TREE_INT_CST_LOW (n
->low
),
5126 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type
))
5129 : DECL_NAME (TYPE_NAME (type
))));
5131 if (!tree_int_cst_equal (n
->low
, n
->high
))
5133 for (chain
= TYPE_VALUES (type
);
5134 chain
&& !tree_int_cst_equal (n
->high
, TREE_VALUE (chain
));
5135 chain
= TREE_CHAIN (chain
))
5140 if (TYPE_NAME (type
) == 0)
5141 warning ("case value `%ld' not in enumerated type",
5142 (long) TREE_INT_CST_LOW (n
->high
));
5144 warning ("case value `%ld' not in enumerated type `%s'",
5145 (long) TREE_INT_CST_LOW (n
->high
),
5146 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type
))
5149 : DECL_NAME (TYPE_NAME (type
))));
5157 /* Terminate a case (Pascal) or switch (C) statement
5158 in which ORIG_INDEX is the expression to be tested.
5159 If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
5160 type as given in the source before any compiler conversions.
5161 Generate the code to test it and jump to the right place. */
5164 expand_end_case_type (orig_index
, orig_type
)
5165 tree orig_index
, orig_type
;
5167 tree minval
= NULL_TREE
, maxval
= NULL_TREE
, range
= NULL_TREE
;
5168 rtx default_label
= 0;
5169 struct case_node
*n
;
5176 rtx before_case
, end
;
5177 struct nesting
*thiscase
= case_stack
;
5178 tree index_expr
, index_type
;
5181 /* Don't crash due to previous errors. */
5182 if (thiscase
== NULL
)
5185 table_label
= gen_label_rtx ();
5186 index_expr
= thiscase
->data
.case_stmt
.index_expr
;
5187 index_type
= TREE_TYPE (index_expr
);
5188 unsignedp
= TREE_UNSIGNED (index_type
);
5189 if (orig_type
== NULL
)
5190 orig_type
= TREE_TYPE (orig_index
);
5192 do_pending_stack_adjust ();
5194 /* This might get a spurious warning in the presence of a syntax error;
5195 it could be fixed by moving the call to check_seenlabel after the
5196 check for error_mark_node, and copying the code of check_seenlabel that
5197 deals with case_stack->data.case_stmt.line_number_status /
5198 restore_line_number_status in front of the call to end_cleanup_deferral;
5199 However, this might miss some useful warnings in the presence of
5200 non-syntax errors. */
5203 /* An ERROR_MARK occurs for various reasons including invalid data type. */
5204 if (index_type
!= error_mark_node
)
5206 /* If the switch expression was an enumerated type, check that
5207 exactly all enumeration literals are covered by the cases.
5208 The check is made when -Wswitch was specified and there is no
5209 default case, or when -Wswitch-enum was specified. */
5210 if (((warn_switch
&& !thiscase
->data
.case_stmt
.default_label
)
5211 || warn_switch_enum
)
5212 && TREE_CODE (orig_type
) == ENUMERAL_TYPE
5213 && TREE_CODE (index_expr
) != INTEGER_CST
)
5214 check_for_full_enumeration_handling (orig_type
);
5216 if (warn_switch_default
&& !thiscase
->data
.case_stmt
.default_label
)
5217 warning ("switch missing default case");
5219 /* If we don't have a default-label, create one here,
5220 after the body of the switch. */
5221 if (thiscase
->data
.case_stmt
.default_label
== 0)
5223 thiscase
->data
.case_stmt
.default_label
5224 = build_decl (LABEL_DECL
, NULL_TREE
, NULL_TREE
);
5225 expand_label (thiscase
->data
.case_stmt
.default_label
);
5227 default_label
= label_rtx (thiscase
->data
.case_stmt
.default_label
);
5229 before_case
= get_last_insn ();
5231 if (thiscase
->data
.case_stmt
.case_list
5232 && thiscase
->data
.case_stmt
.case_list
->left
)
5233 thiscase
->data
.case_stmt
.case_list
5234 = case_tree2list (thiscase
->data
.case_stmt
.case_list
, 0);
5236 /* Simplify the case-list before we count it. */
5237 group_case_nodes (thiscase
->data
.case_stmt
.case_list
);
5239 /* Get upper and lower bounds of case values.
5240 Also convert all the case values to the index expr's data type. */
5243 for (n
= thiscase
->data
.case_stmt
.case_list
; n
; n
= n
->right
)
5245 /* Check low and high label values are integers. */
5246 if (TREE_CODE (n
->low
) != INTEGER_CST
)
5248 if (TREE_CODE (n
->high
) != INTEGER_CST
)
5251 n
->low
= convert (index_type
, n
->low
);
5252 n
->high
= convert (index_type
, n
->high
);
5254 /* Count the elements and track the largest and smallest
5255 of them (treating them as signed even if they are not). */
5263 if (INT_CST_LT (n
->low
, minval
))
5265 if (INT_CST_LT (maxval
, n
->high
))
5268 /* A range counts double, since it requires two compares. */
5269 if (! tree_int_cst_equal (n
->low
, n
->high
))
5273 /* Compute span of values. */
5275 range
= fold (build (MINUS_EXPR
, index_type
, maxval
, minval
));
5277 end_cleanup_deferral ();
5281 expand_expr (index_expr
, const0_rtx
, VOIDmode
, 0);
5283 emit_jump (default_label
);
5286 /* If range of values is much bigger than number of values,
5287 make a sequence of conditional branches instead of a dispatch.
5288 If the switch-index is a constant, do it this way
5289 because we can optimize it. */
5291 else if (count
< case_values_threshold ()
5292 || compare_tree_int (range
, 10 * count
) > 0
5293 /* RANGE may be signed, and really large ranges will show up
5294 as negative numbers. */
5295 || compare_tree_int (range
, 0) < 0
5296 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
5299 || TREE_CODE (index_expr
) == INTEGER_CST
5300 || (TREE_CODE (index_expr
) == COMPOUND_EXPR
5301 && TREE_CODE (TREE_OPERAND (index_expr
, 1)) == INTEGER_CST
))
5303 index
= expand_expr (index_expr
, NULL_RTX
, VOIDmode
, 0);
5305 /* If the index is a short or char that we do not have
5306 an insn to handle comparisons directly, convert it to
5307 a full integer now, rather than letting each comparison
5308 generate the conversion. */
5310 if (GET_MODE_CLASS (GET_MODE (index
)) == MODE_INT
5311 && ! have_insn_for (COMPARE
, GET_MODE (index
)))
5313 enum machine_mode wider_mode
;
5314 for (wider_mode
= GET_MODE (index
); wider_mode
!= VOIDmode
;
5315 wider_mode
= GET_MODE_WIDER_MODE (wider_mode
))
5316 if (have_insn_for (COMPARE
, wider_mode
))
5318 index
= convert_to_mode (wider_mode
, index
, unsignedp
);
5324 do_pending_stack_adjust ();
5326 index
= protect_from_queue (index
, 0);
5327 if (GET_CODE (index
) == MEM
)
5328 index
= copy_to_reg (index
);
5329 if (GET_CODE (index
) == CONST_INT
5330 || TREE_CODE (index_expr
) == INTEGER_CST
)
5332 /* Make a tree node with the proper constant value
5333 if we don't already have one. */
5334 if (TREE_CODE (index_expr
) != INTEGER_CST
)
5337 = build_int_2 (INTVAL (index
),
5338 unsignedp
|| INTVAL (index
) >= 0 ? 0 : -1);
5339 index_expr
= convert (index_type
, index_expr
);
5342 /* For constant index expressions we need only
5343 issue an unconditional branch to the appropriate
5344 target code. The job of removing any unreachable
5345 code is left to the optimisation phase if the
5346 "-O" option is specified. */
5347 for (n
= thiscase
->data
.case_stmt
.case_list
; n
; n
= n
->right
)
5348 if (! tree_int_cst_lt (index_expr
, n
->low
)
5349 && ! tree_int_cst_lt (n
->high
, index_expr
))
5353 emit_jump (label_rtx (n
->code_label
));
5355 emit_jump (default_label
);
5359 /* If the index expression is not constant we generate
5360 a binary decision tree to select the appropriate
5361 target code. This is done as follows:
5363 The list of cases is rearranged into a binary tree,
5364 nearly optimal assuming equal probability for each case.
5366 The tree is transformed into RTL, eliminating
5367 redundant test conditions at the same time.
5369 If program flow could reach the end of the
5370 decision tree an unconditional jump to the
5371 default code is emitted. */
5374 = (TREE_CODE (orig_type
) != ENUMERAL_TYPE
5375 && estimate_case_costs (thiscase
->data
.case_stmt
.case_list
));
5376 balance_case_nodes (&thiscase
->data
.case_stmt
.case_list
, NULL
);
5377 emit_case_nodes (index
, thiscase
->data
.case_stmt
.case_list
,
5378 default_label
, index_type
);
5379 emit_jump_if_reachable (default_label
);
5384 if (! try_casesi (index_type
, index_expr
, minval
, range
,
5385 table_label
, default_label
))
5387 index_type
= thiscase
->data
.case_stmt
.nominal_type
;
5389 /* Index jumptables from zero for suitable values of
5390 minval to avoid a subtraction. */
5392 && compare_tree_int (minval
, 0) > 0
5393 && compare_tree_int (minval
, 3) < 0)
5395 minval
= integer_zero_node
;
5399 if (! try_tablejump (index_type
, index_expr
, minval
, range
,
5400 table_label
, default_label
))
5404 /* Get table of labels to jump to, in order of case index. */
5406 ncases
= tree_low_cst (range
, 0) + 1;
5407 labelvec
= (rtx
*) alloca (ncases
* sizeof (rtx
));
5408 memset ((char *) labelvec
, 0, ncases
* sizeof (rtx
));
5410 for (n
= thiscase
->data
.case_stmt
.case_list
; n
; n
= n
->right
)
5412 /* Compute the low and high bounds relative to the minimum
5413 value since that should fit in a HOST_WIDE_INT while the
5414 actual values may not. */
5416 = tree_low_cst (fold (build (MINUS_EXPR
, index_type
,
5417 n
->low
, minval
)), 1);
5418 HOST_WIDE_INT i_high
5419 = tree_low_cst (fold (build (MINUS_EXPR
, index_type
,
5420 n
->high
, minval
)), 1);
5423 for (i
= i_low
; i
<= i_high
; i
++)
5425 = gen_rtx_LABEL_REF (Pmode
, label_rtx (n
->code_label
));
5428 /* Fill in the gaps with the default. */
5429 for (i
= 0; i
< ncases
; i
++)
5430 if (labelvec
[i
] == 0)
5431 labelvec
[i
] = gen_rtx_LABEL_REF (Pmode
, default_label
);
5433 /* Output the table */
5434 emit_label (table_label
);
5436 if (CASE_VECTOR_PC_RELATIVE
|| flag_pic
)
5437 emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE
,
5438 gen_rtx_LABEL_REF (Pmode
, table_label
),
5439 gen_rtvec_v (ncases
, labelvec
),
5440 const0_rtx
, const0_rtx
));
5442 emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE
,
5443 gen_rtvec_v (ncases
, labelvec
)));
5445 /* If the case insn drops through the table,
5446 after the table we must jump to the default-label.
5447 Otherwise record no drop-through after the table. */
5448 #ifdef CASE_DROPS_THROUGH
5449 emit_jump (default_label
);
5455 before_case
= NEXT_INSN (before_case
);
5456 end
= get_last_insn ();
5457 if (squeeze_notes (&before_case
, &end
))
5459 reorder_insns (before_case
, end
,
5460 thiscase
->data
.case_stmt
.start
);
5463 end_cleanup_deferral ();
5465 if (thiscase
->exit_label
)
5466 emit_label (thiscase
->exit_label
);
5468 POPSTACK (case_stack
);
5473 /* Convert the tree NODE into a list linked by the right field, with the left
5474 field zeroed. RIGHT is used for recursion; it is a list to be placed
5475 rightmost in the resulting list. */
5477 static struct case_node
*
5478 case_tree2list (node
, right
)
5479 struct case_node
*node
, *right
;
5481 struct case_node
*left
;
5484 right
= case_tree2list (node
->right
, right
);
5486 node
->right
= right
;
5487 if ((left
= node
->left
))
5490 return case_tree2list (left
, node
);
5496 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
5499 do_jump_if_equal (op1
, op2
, label
, unsignedp
)
5500 rtx op1
, op2
, label
;
5503 if (GET_CODE (op1
) == CONST_INT
&& GET_CODE (op2
) == CONST_INT
)
5505 if (INTVAL (op1
) == INTVAL (op2
))
5509 emit_cmp_and_jump_insns (op1
, op2
, EQ
, NULL_RTX
,
5510 (GET_MODE (op1
) == VOIDmode
5511 ? GET_MODE (op2
) : GET_MODE (op1
)),
5515 /* Not all case values are encountered equally. This function
5516 uses a heuristic to weight case labels, in cases where that
5517 looks like a reasonable thing to do.
5519 Right now, all we try to guess is text, and we establish the
5522 chars above space: 16
5531 If we find any cases in the switch that are not either -1 or in the range
5532 of valid ASCII characters, or are control characters other than those
5533 commonly used with "\", don't treat this switch scanning text.
5535 Return 1 if these nodes are suitable for cost estimation, otherwise
5539 estimate_case_costs (node
)
5542 tree min_ascii
= integer_minus_one_node
;
5543 tree max_ascii
= convert (TREE_TYPE (node
->high
), build_int_2 (127, 0));
5547 /* If we haven't already made the cost table, make it now. Note that the
5548 lower bound of the table is -1, not zero. */
5550 if (! cost_table_initialized
)
5552 cost_table_initialized
= 1;
5554 for (i
= 0; i
< 128; i
++)
5557 COST_TABLE (i
) = 16;
5558 else if (ISPUNCT (i
))
5560 else if (ISCNTRL (i
))
5561 COST_TABLE (i
) = -1;
5564 COST_TABLE (' ') = 8;
5565 COST_TABLE ('\t') = 4;
5566 COST_TABLE ('\0') = 4;
5567 COST_TABLE ('\n') = 2;
5568 COST_TABLE ('\f') = 1;
5569 COST_TABLE ('\v') = 1;
5570 COST_TABLE ('\b') = 1;
5573 /* See if all the case expressions look like text. It is text if the
5574 constant is >= -1 and the highest constant is <= 127. Do all comparisons
5575 as signed arithmetic since we don't want to ever access cost_table with a
5576 value less than -1. Also check that none of the constants in a range
5577 are strange control characters. */
5579 for (n
= node
; n
; n
= n
->right
)
5581 if ((INT_CST_LT (n
->low
, min_ascii
)) || INT_CST_LT (max_ascii
, n
->high
))
5584 for (i
= (HOST_WIDE_INT
) TREE_INT_CST_LOW (n
->low
);
5585 i
<= (HOST_WIDE_INT
) TREE_INT_CST_LOW (n
->high
); i
++)
5586 if (COST_TABLE (i
) < 0)
5590 /* All interesting values are within the range of interesting
5591 ASCII characters. */
5595 /* Scan an ordered list of case nodes
5596 combining those with consecutive values or ranges.
5598 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
5601 group_case_nodes (head
)
5604 case_node_ptr node
= head
;
5608 rtx lb
= next_real_insn (label_rtx (node
->code_label
));
5610 case_node_ptr np
= node
;
5612 /* Try to group the successors of NODE with NODE. */
5613 while (((np
= np
->right
) != 0)
5614 /* Do they jump to the same place? */
5615 && ((lb2
= next_real_insn (label_rtx (np
->code_label
))) == lb
5616 || (lb
!= 0 && lb2
!= 0
5617 && simplejump_p (lb
)
5618 && simplejump_p (lb2
)
5619 && rtx_equal_p (SET_SRC (PATTERN (lb
)),
5620 SET_SRC (PATTERN (lb2
)))))
5621 /* Are their ranges consecutive? */
5622 && tree_int_cst_equal (np
->low
,
5623 fold (build (PLUS_EXPR
,
5624 TREE_TYPE (node
->high
),
5627 /* An overflow is not consecutive. */
5628 && tree_int_cst_lt (node
->high
,
5629 fold (build (PLUS_EXPR
,
5630 TREE_TYPE (node
->high
),
5632 integer_one_node
))))
5634 node
->high
= np
->high
;
5636 /* NP is the first node after NODE which can't be grouped with it.
5637 Delete the nodes in between, and move on to that node. */
5643 /* Take an ordered list of case nodes
5644 and transform them into a near optimal binary tree,
5645 on the assumption that any target code selection value is as
5646 likely as any other.
5648 The transformation is performed by splitting the ordered
5649 list into two equal sections plus a pivot. The parts are
5650 then attached to the pivot as left and right branches. Each
5651 branch is then transformed recursively. */
5654 balance_case_nodes (head
, parent
)
5655 case_node_ptr
*head
;
5656 case_node_ptr parent
;
5669 /* Count the number of entries on branch. Also count the ranges. */
5673 if (!tree_int_cst_equal (np
->low
, np
->high
))
5677 cost
+= COST_TABLE (TREE_INT_CST_LOW (np
->high
));
5681 cost
+= COST_TABLE (TREE_INT_CST_LOW (np
->low
));
5689 /* Split this list if it is long enough for that to help. */
5694 /* Find the place in the list that bisects the list's total cost,
5695 Here I gets half the total cost. */
5700 /* Skip nodes while their cost does not reach that amount. */
5701 if (!tree_int_cst_equal ((*npp
)->low
, (*npp
)->high
))
5702 i
-= COST_TABLE (TREE_INT_CST_LOW ((*npp
)->high
));
5703 i
-= COST_TABLE (TREE_INT_CST_LOW ((*npp
)->low
));
5706 npp
= &(*npp
)->right
;
5711 /* Leave this branch lopsided, but optimize left-hand
5712 side and fill in `parent' fields for right-hand side. */
5714 np
->parent
= parent
;
5715 balance_case_nodes (&np
->left
, np
);
5716 for (; np
->right
; np
= np
->right
)
5717 np
->right
->parent
= np
;
5721 /* If there are just three nodes, split at the middle one. */
5723 npp
= &(*npp
)->right
;
5726 /* Find the place in the list that bisects the list's total cost,
5727 where ranges count as 2.
5728 Here I gets half the total cost. */
5729 i
= (i
+ ranges
+ 1) / 2;
5732 /* Skip nodes while their cost does not reach that amount. */
5733 if (!tree_int_cst_equal ((*npp
)->low
, (*npp
)->high
))
5738 npp
= &(*npp
)->right
;
5743 np
->parent
= parent
;
5746 /* Optimize each of the two split parts. */
5747 balance_case_nodes (&np
->left
, np
);
5748 balance_case_nodes (&np
->right
, np
);
5752 /* Else leave this branch as one level,
5753 but fill in `parent' fields. */
5755 np
->parent
= parent
;
5756 for (; np
->right
; np
= np
->right
)
5757 np
->right
->parent
= np
;
5762 /* Search the parent sections of the case node tree
5763 to see if a test for the lower bound of NODE would be redundant.
5764 INDEX_TYPE is the type of the index expression.
5766 The instructions to generate the case decision tree are
5767 output in the same order as nodes are processed so it is
5768 known that if a parent node checks the range of the current
5769 node minus one that the current node is bounded at its lower
5770 span. Thus the test would be redundant. */
5773 node_has_low_bound (node
, index_type
)
5778 case_node_ptr pnode
;
5780 /* If the lower bound of this node is the lowest value in the index type,
5781 we need not test it. */
5783 if (tree_int_cst_equal (node
->low
, TYPE_MIN_VALUE (index_type
)))
5786 /* If this node has a left branch, the value at the left must be less
5787 than that at this node, so it cannot be bounded at the bottom and
5788 we need not bother testing any further. */
5793 low_minus_one
= fold (build (MINUS_EXPR
, TREE_TYPE (node
->low
),
5794 node
->low
, integer_one_node
));
5796 /* If the subtraction above overflowed, we can't verify anything.
5797 Otherwise, look for a parent that tests our value - 1. */
5799 if (! tree_int_cst_lt (low_minus_one
, node
->low
))
5802 for (pnode
= node
->parent
; pnode
; pnode
= pnode
->parent
)
5803 if (tree_int_cst_equal (low_minus_one
, pnode
->high
))
5809 /* Search the parent sections of the case node tree
5810 to see if a test for the upper bound of NODE would be redundant.
5811 INDEX_TYPE is the type of the index expression.
5813 The instructions to generate the case decision tree are
5814 output in the same order as nodes are processed so it is
5815 known that if a parent node checks the range of the current
5816 node plus one that the current node is bounded at its upper
5817 span. Thus the test would be redundant. */
5820 node_has_high_bound (node
, index_type
)
5825 case_node_ptr pnode
;
5827 /* If there is no upper bound, obviously no test is needed. */
5829 if (TYPE_MAX_VALUE (index_type
) == NULL
)
5832 /* If the upper bound of this node is the highest value in the type
5833 of the index expression, we need not test against it. */
5835 if (tree_int_cst_equal (node
->high
, TYPE_MAX_VALUE (index_type
)))
5838 /* If this node has a right branch, the value at the right must be greater
5839 than that at this node, so it cannot be bounded at the top and
5840 we need not bother testing any further. */
5845 high_plus_one
= fold (build (PLUS_EXPR
, TREE_TYPE (node
->high
),
5846 node
->high
, integer_one_node
));
5848 /* If the addition above overflowed, we can't verify anything.
5849 Otherwise, look for a parent that tests our value + 1. */
5851 if (! tree_int_cst_lt (node
->high
, high_plus_one
))
5854 for (pnode
= node
->parent
; pnode
; pnode
= pnode
->parent
)
5855 if (tree_int_cst_equal (high_plus_one
, pnode
->low
))
5861 /* Search the parent sections of the
5862 case node tree to see if both tests for the upper and lower
5863 bounds of NODE would be redundant. */
5866 node_is_bounded (node
, index_type
)
5870 return (node_has_low_bound (node
, index_type
)
5871 && node_has_high_bound (node
, index_type
));
5874 /* Emit an unconditional jump to LABEL unless it would be dead code. */
5877 emit_jump_if_reachable (label
)
5880 if (GET_CODE (get_last_insn ()) != BARRIER
)
5884 /* Emit step-by-step code to select a case for the value of INDEX.
5885 The thus generated decision tree follows the form of the
5886 case-node binary tree NODE, whose nodes represent test conditions.
5887 INDEX_TYPE is the type of the index of the switch.
5889 Care is taken to prune redundant tests from the decision tree
5890 by detecting any boundary conditions already checked by
5891 emitted rtx. (See node_has_high_bound, node_has_low_bound
5892 and node_is_bounded, above.)
5894 Where the test conditions can be shown to be redundant we emit
5895 an unconditional jump to the target code. As a further
5896 optimization, the subordinates of a tree node are examined to
5897 check for bounded nodes. In this case conditional and/or
5898 unconditional jumps as a result of the boundary check for the
5899 current node are arranged to target the subordinates associated
5900 code for out of bound conditions on the current node.
5902 We can assume that when control reaches the code generated here,
5903 the index value has already been compared with the parents
5904 of this node, and determined to be on the same side of each parent
5905 as this node is. Thus, if this node tests for the value 51,
5906 and a parent tested for 52, we don't need to consider
5907 the possibility of a value greater than 51. If another parent
5908 tests for the value 50, then this node need not test anything. */
5911 emit_case_nodes (index
, node
, default_label
, index_type
)
5917 /* If INDEX has an unsigned type, we must make unsigned branches. */
5918 int unsignedp
= TREE_UNSIGNED (index_type
);
5919 enum machine_mode mode
= GET_MODE (index
);
5920 enum machine_mode imode
= TYPE_MODE (index_type
);
5922 /* See if our parents have already tested everything for us.
5923 If they have, emit an unconditional jump for this node. */
5924 if (node_is_bounded (node
, index_type
))
5925 emit_jump (label_rtx (node
->code_label
));
5927 else if (tree_int_cst_equal (node
->low
, node
->high
))
5929 /* Node is single valued. First see if the index expression matches
5930 this node and then check our children, if any. */
5932 do_jump_if_equal (index
,
5933 convert_modes (mode
, imode
,
5934 expand_expr (node
->low
, NULL_RTX
,
5937 label_rtx (node
->code_label
), unsignedp
);
5939 if (node
->right
!= 0 && node
->left
!= 0)
5941 /* This node has children on both sides.
5942 Dispatch to one side or the other
5943 by comparing the index value with this node's value.
5944 If one subtree is bounded, check that one first,
5945 so we can avoid real branches in the tree. */
5947 if (node_is_bounded (node
->right
, index_type
))
5949 emit_cmp_and_jump_insns (index
,
5952 expand_expr (node
->high
, NULL_RTX
,
5955 GT
, NULL_RTX
, mode
, unsignedp
,
5956 label_rtx (node
->right
->code_label
));
5957 emit_case_nodes (index
, node
->left
, default_label
, index_type
);
5960 else if (node_is_bounded (node
->left
, index_type
))
5962 emit_cmp_and_jump_insns (index
,
5965 expand_expr (node
->high
, NULL_RTX
,
5968 LT
, NULL_RTX
, mode
, unsignedp
,
5969 label_rtx (node
->left
->code_label
));
5970 emit_case_nodes (index
, node
->right
, default_label
, index_type
);
5975 /* Neither node is bounded. First distinguish the two sides;
5976 then emit the code for one side at a time. */
5978 tree test_label
= build_decl (LABEL_DECL
, NULL_TREE
, NULL_TREE
);
5980 /* See if the value is on the right. */
5981 emit_cmp_and_jump_insns (index
,
5984 expand_expr (node
->high
, NULL_RTX
,
5987 GT
, NULL_RTX
, mode
, unsignedp
,
5988 label_rtx (test_label
));
5990 /* Value must be on the left.
5991 Handle the left-hand subtree. */
5992 emit_case_nodes (index
, node
->left
, default_label
, index_type
);
5993 /* If left-hand subtree does nothing,
5995 emit_jump_if_reachable (default_label
);
5997 /* Code branches here for the right-hand subtree. */
5998 expand_label (test_label
);
5999 emit_case_nodes (index
, node
->right
, default_label
, index_type
);
6003 else if (node
->right
!= 0 && node
->left
== 0)
6005 /* Here we have a right child but no left so we issue conditional
6006 branch to default and process the right child.
6008 Omit the conditional branch to default if we it avoid only one
6009 right child; it costs too much space to save so little time. */
6011 if (node
->right
->right
|| node
->right
->left
6012 || !tree_int_cst_equal (node
->right
->low
, node
->right
->high
))
6014 if (!node_has_low_bound (node
, index_type
))
6016 emit_cmp_and_jump_insns (index
,
6019 expand_expr (node
->high
, NULL_RTX
,
6022 LT
, NULL_RTX
, mode
, unsignedp
,
6026 emit_case_nodes (index
, node
->right
, default_label
, index_type
);
6029 /* We cannot process node->right normally
6030 since we haven't ruled out the numbers less than
6031 this node's value. So handle node->right explicitly. */
6032 do_jump_if_equal (index
,
6035 expand_expr (node
->right
->low
, NULL_RTX
,
6038 label_rtx (node
->right
->code_label
), unsignedp
);
6041 else if (node
->right
== 0 && node
->left
!= 0)
6043 /* Just one subtree, on the left. */
6044 if (node
->left
->left
|| node
->left
->right
6045 || !tree_int_cst_equal (node
->left
->low
, node
->left
->high
))
6047 if (!node_has_high_bound (node
, index_type
))
6049 emit_cmp_and_jump_insns (index
,
6052 expand_expr (node
->high
, NULL_RTX
,
6055 GT
, NULL_RTX
, mode
, unsignedp
,
6059 emit_case_nodes (index
, node
->left
, default_label
, index_type
);
6062 /* We cannot process node->left normally
6063 since we haven't ruled out the numbers less than
6064 this node's value. So handle node->left explicitly. */
6065 do_jump_if_equal (index
,
6068 expand_expr (node
->left
->low
, NULL_RTX
,
6071 label_rtx (node
->left
->code_label
), unsignedp
);
6076 /* Node is a range. These cases are very similar to those for a single
6077 value, except that we do not start by testing whether this node
6078 is the one to branch to. */
6080 if (node
->right
!= 0 && node
->left
!= 0)
6082 /* Node has subtrees on both sides.
6083 If the right-hand subtree is bounded,
6084 test for it first, since we can go straight there.
6085 Otherwise, we need to make a branch in the control structure,
6086 then handle the two subtrees. */
6087 tree test_label
= 0;
6089 if (node_is_bounded (node
->right
, index_type
))
6090 /* Right hand node is fully bounded so we can eliminate any
6091 testing and branch directly to the target code. */
6092 emit_cmp_and_jump_insns (index
,
6095 expand_expr (node
->high
, NULL_RTX
,
6098 GT
, NULL_RTX
, mode
, unsignedp
,
6099 label_rtx (node
->right
->code_label
));
6102 /* Right hand node requires testing.
6103 Branch to a label where we will handle it later. */
6105 test_label
= build_decl (LABEL_DECL
, NULL_TREE
, NULL_TREE
);
6106 emit_cmp_and_jump_insns (index
,
6109 expand_expr (node
->high
, NULL_RTX
,
6112 GT
, NULL_RTX
, mode
, unsignedp
,
6113 label_rtx (test_label
));
6116 /* Value belongs to this node or to the left-hand subtree. */
6118 emit_cmp_and_jump_insns (index
,
6121 expand_expr (node
->low
, NULL_RTX
,
6124 GE
, NULL_RTX
, mode
, unsignedp
,
6125 label_rtx (node
->code_label
));
6127 /* Handle the left-hand subtree. */
6128 emit_case_nodes (index
, node
->left
, default_label
, index_type
);
6130 /* If right node had to be handled later, do that now. */
6134 /* If the left-hand subtree fell through,
6135 don't let it fall into the right-hand subtree. */
6136 emit_jump_if_reachable (default_label
);
6138 expand_label (test_label
);
6139 emit_case_nodes (index
, node
->right
, default_label
, index_type
);
6143 else if (node
->right
!= 0 && node
->left
== 0)
6145 /* Deal with values to the left of this node,
6146 if they are possible. */
6147 if (!node_has_low_bound (node
, index_type
))
6149 emit_cmp_and_jump_insns (index
,
6152 expand_expr (node
->low
, NULL_RTX
,
6155 LT
, NULL_RTX
, mode
, unsignedp
,
6159 /* Value belongs to this node or to the right-hand subtree. */
6161 emit_cmp_and_jump_insns (index
,
6164 expand_expr (node
->high
, NULL_RTX
,
6167 LE
, NULL_RTX
, mode
, unsignedp
,
6168 label_rtx (node
->code_label
));
6170 emit_case_nodes (index
, node
->right
, default_label
, index_type
);
6173 else if (node
->right
== 0 && node
->left
!= 0)
6175 /* Deal with values to the right of this node,
6176 if they are possible. */
6177 if (!node_has_high_bound (node
, index_type
))
6179 emit_cmp_and_jump_insns (index
,
6182 expand_expr (node
->high
, NULL_RTX
,
6185 GT
, NULL_RTX
, mode
, unsignedp
,
6189 /* Value belongs to this node or to the left-hand subtree. */
6191 emit_cmp_and_jump_insns (index
,
6194 expand_expr (node
->low
, NULL_RTX
,
6197 GE
, NULL_RTX
, mode
, unsignedp
,
6198 label_rtx (node
->code_label
));
6200 emit_case_nodes (index
, node
->left
, default_label
, index_type
);
6205 /* Node has no children so we check low and high bounds to remove
6206 redundant tests. Only one of the bounds can exist,
6207 since otherwise this node is bounded--a case tested already. */
6208 int high_bound
= node_has_high_bound (node
, index_type
);
6209 int low_bound
= node_has_low_bound (node
, index_type
);
6211 if (!high_bound
&& low_bound
)
6213 emit_cmp_and_jump_insns (index
,
6216 expand_expr (node
->high
, NULL_RTX
,
6219 GT
, NULL_RTX
, mode
, unsignedp
,
6223 else if (!low_bound
&& high_bound
)
6225 emit_cmp_and_jump_insns (index
,
6228 expand_expr (node
->low
, NULL_RTX
,
6231 LT
, NULL_RTX
, mode
, unsignedp
,
6234 else if (!low_bound
&& !high_bound
)
6236 /* Widen LOW and HIGH to the same width as INDEX. */
6237 tree type
= (*lang_hooks
.types
.type_for_mode
) (mode
, unsignedp
);
6238 tree low
= build1 (CONVERT_EXPR
, type
, node
->low
);
6239 tree high
= build1 (CONVERT_EXPR
, type
, node
->high
);
6240 rtx low_rtx
, new_index
, new_bound
;
6242 /* Instead of doing two branches, emit one unsigned branch for
6243 (index-low) > (high-low). */
6244 low_rtx
= expand_expr (low
, NULL_RTX
, mode
, 0);
6245 new_index
= expand_simple_binop (mode
, MINUS
, index
, low_rtx
,
6246 NULL_RTX
, unsignedp
,
6248 new_bound
= expand_expr (fold (build (MINUS_EXPR
, type
,
6252 emit_cmp_and_jump_insns (new_index
, new_bound
, GT
, NULL_RTX
,
6253 mode
, 1, default_label
);
6256 emit_jump (label_rtx (node
->code_label
));
6261 #include "gt-stmt.h"