1 /* Expands front end tree to back end RTL for GCC
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004 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"
62 /* Assume that case vectors are not pc-relative. */
63 #ifndef CASE_VECTOR_PC_RELATIVE
64 #define CASE_VECTOR_PC_RELATIVE 0
67 /* Functions and data structures for expanding case statements. */
69 /* Case label structure, used to hold info on labels within case
70 statements. We handle "range" labels; for a single-value label
71 as in C, the high and low limits are the same.
73 An AVL tree of case nodes is initially created, and later transformed
74 to a list linked via the RIGHT fields in the nodes. Nodes with
75 higher case values are later in the list.
77 Switch statements can be output in one of two forms. A branch table
78 is used if there are more than a few labels and the labels are dense
79 within the range between the smallest and largest case value. If a
80 branch table is used, no further manipulations are done with the case
83 The alternative to the use of a branch table is to generate a series
84 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
85 and PARENT fields to hold a binary tree. Initially the tree is
86 totally unbalanced, with everything on the right. We balance the tree
87 with nodes on the left having lower case values than the parent
88 and nodes on the right having higher values. We then output the tree
91 struct case_node GTY(())
93 struct case_node *left; /* Left son in binary tree */
94 struct case_node *right; /* Right son in binary tree; also node chain */
95 struct case_node *parent; /* Parent of node in binary tree */
96 tree low; /* Lowest index value for this label */
97 tree high; /* Highest index value for this label */
98 tree code_label; /* Label to jump to when node matches */
102 typedef struct case_node case_node;
103 typedef struct case_node *case_node_ptr;
105 /* These are used by estimate_case_costs and balance_case_nodes. */
107 /* This must be a signed type, and non-ANSI compilers lack signed char. */
108 static short cost_table_[129];
109 static int use_cost_table;
110 static int cost_table_initialized;
112 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
114 #define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
116 /* Stack of control and binding constructs we are currently inside.
118 These constructs begin when you call `expand_start_WHATEVER'
119 and end when you call `expand_end_WHATEVER'. This stack records
120 info about how the construct began that tells the end-function
121 what to do. It also may provide information about the construct
122 to alter the behavior of other constructs within the body.
123 For example, they may affect the behavior of C `break' and `continue'.
125 Each construct gets one `struct nesting' object.
126 All of these objects are chained through the `all' field.
127 `nesting_stack' points to the first object (innermost construct).
128 The position of an entry on `nesting_stack' is in its `depth' field.
130 Each type of construct has its own individual stack.
131 For example, loops have `loop_stack'. Each object points to the
132 next object of the same type through the `next' field.
134 Some constructs are visible to `break' exit-statements and others
135 are not. Which constructs are visible depends on the language.
136 Therefore, the data structure allows each construct to be visible
137 or not, according to the args given when the construct is started.
138 The construct is visible if the `exit_label' field is non-null.
139 In that case, the value should be a CODE_LABEL rtx. */
141 struct nesting GTY(())
144 struct nesting *next;
155 /* For conds (if-then and if-then-else statements). */
158 /* Label for the end of the if construct.
159 There is none if EXITFLAG was not set
160 and no `else' has been seen yet. */
162 /* Label for the end of this alternative.
163 This may be the end of the if or the next else/elseif. */
165 } GTY ((tag ("COND_NESTING"))) cond;
169 /* Label at the top of the loop; place to loop back to. */
171 /* Label at the end of the whole construct. */
173 /* Label for `continue' statement to jump to;
174 this is in front of the stepper of the loop. */
176 } GTY ((tag ("LOOP_NESTING"))) loop;
177 /* For variable binding contours. */
180 /* Sequence number of this binding contour within the function,
181 in order of entry. */
182 int block_start_count;
183 /* Nonzero => value to restore stack to on exit. */
185 /* The NOTE that starts this contour.
186 Used by expand_goto to check whether the destination
187 is within each contour or not. */
189 /* Innermost containing binding contour that has a stack level. */
190 struct nesting *innermost_stack_block;
191 /* List of cleanups to be run on exit from this contour.
192 This is a list of expressions to be evaluated.
193 The TREE_PURPOSE of each link is the ..._DECL node
194 which the cleanup pertains to. */
196 /* List of cleanup-lists of blocks containing this block,
197 as they were at the locus where this block appears.
198 There is an element for each containing block,
199 ordered innermost containing block first.
200 The tail of this list can be 0,
201 if all remaining elements would be empty lists.
202 The element's TREE_VALUE is the cleanup-list of that block,
203 which may be null. */
205 /* Chain of labels defined inside this binding contour.
206 For contours that have stack levels or cleanups. */
207 struct label_chain *label_chain;
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() ggc_alloc (sizeof (struct nesting))
258 /* Pop the nesting stack element by element until we pop off
259 the element which is at the top of STACK.
260 Update all the other stacks, popping off elements from them
261 as we pop them from nesting_stack. */
263 #define POPSTACK(STACK) \
264 do { struct nesting *target = STACK; \
265 struct nesting *this; \
266 do { this = nesting_stack; \
267 if (loop_stack == this) \
268 loop_stack = loop_stack->next; \
269 if (cond_stack == this) \
270 cond_stack = cond_stack->next; \
271 if (block_stack == this) \
272 block_stack = block_stack->next; \
273 if (stack_block_stack == this) \
274 stack_block_stack = stack_block_stack->next; \
275 if (case_stack == this) \
276 case_stack = case_stack->next; \
277 nesting_depth = nesting_stack->depth - 1; \
278 nesting_stack = this->all; } \
279 while (this != target); } while (0)
281 /* In some cases it is impossible to generate code for a forward goto
282 until the label definition is seen. This happens when it may be necessary
283 for the goto to reset the stack pointer: we don't yet know how to do that.
284 So expand_goto puts an entry on this fixup list.
285 Each time a binding contour that resets the stack is exited,
287 If the target label has now been defined, we can insert the proper code. */
289 struct goto_fixup GTY(())
291 /* Points to following fixup. */
292 struct goto_fixup *next;
293 /* Points to the insn before the jump insn.
294 If more code must be inserted, it goes after this insn. */
296 /* The LABEL_DECL that this jump is jumping to, or 0
297 for break, continue or return. */
299 /* The BLOCK for the place where this goto was found. */
301 /* The CODE_LABEL rtx that this is jumping to. */
303 /* Number of binding contours started in current function
304 before the label reference. */
305 int block_start_count;
306 /* The outermost stack level that should be restored for this jump.
307 Each time a binding contour that resets the stack is exited,
308 if the target label is *not* yet defined, this slot is updated. */
310 /* List of lists of cleanup expressions to be run by this goto.
311 There is one element for each block that this goto is within.
312 The tail of this list can be 0,
313 if all remaining elements would be empty.
314 The TREE_VALUE contains the cleanup list of that block as of the
315 time this goto was seen.
316 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
317 tree cleanup_list_list;
320 /* Within any binding contour that must restore a stack level,
321 all labels are recorded with a chain of these structures. */
323 struct label_chain GTY(())
325 /* Points to following fixup. */
326 struct label_chain *next;
330 struct stmt_status GTY(())
332 /* Chain of all pending binding contours. */
333 struct nesting * x_block_stack;
335 /* If any new stacks are added here, add them to POPSTACKS too. */
337 /* Chain of all pending binding contours that restore stack levels
339 struct nesting * x_stack_block_stack;
341 /* Chain of all pending conditional statements. */
342 struct nesting * x_cond_stack;
344 /* Chain of all pending loops. */
345 struct nesting * x_loop_stack;
347 /* Chain of all pending case or switch statements. */
348 struct nesting * x_case_stack;
350 /* Separate chain including all of the above,
351 chained through the `all' field. */
352 struct nesting * x_nesting_stack;
354 /* Number of entries on nesting_stack now. */
357 /* Number of binding contours started so far in this function. */
358 int x_block_start_count;
360 /* Each time we expand an expression-statement,
361 record the expr's type and its RTL value here. */
362 tree x_last_expr_type;
363 rtx x_last_expr_value;
364 rtx x_last_expr_alt_rtl;
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 /* Location of last line-number note, whether we actually
371 emitted it or not. */
372 location_t x_emit_locus;
374 struct goto_fixup *x_goto_fixup_chain;
377 #define block_stack (cfun->stmt->x_block_stack)
378 #define stack_block_stack (cfun->stmt->x_stack_block_stack)
379 #define cond_stack (cfun->stmt->x_cond_stack)
380 #define loop_stack (cfun->stmt->x_loop_stack)
381 #define case_stack (cfun->stmt->x_case_stack)
382 #define nesting_stack (cfun->stmt->x_nesting_stack)
383 #define nesting_depth (cfun->stmt->x_nesting_depth)
384 #define current_block_start_count (cfun->stmt->x_block_start_count)
385 #define last_expr_type (cfun->stmt->x_last_expr_type)
386 #define last_expr_value (cfun->stmt->x_last_expr_value)
387 #define last_expr_alt_rtl (cfun->stmt->x_last_expr_alt_rtl)
388 #define expr_stmts_for_value (cfun->stmt->x_expr_stmts_for_value)
389 #define emit_locus (cfun->stmt->x_emit_locus)
390 #define goto_fixup_chain (cfun->stmt->x_goto_fixup_chain)
392 /* Nonzero if we are using EH to handle cleanups. */
393 static int using_eh_for_cleanups_p = 0;
395 static int n_occurrences (int, const char *);
396 static bool decl_conflicts_with_clobbers_p (tree, const HARD_REG_SET);
397 static void expand_goto_internal (tree, rtx, rtx);
398 static int expand_fixup (tree, rtx, rtx);
399 static rtx expand_nl_handler_label (rtx, rtx);
400 static void expand_nl_goto_receiver (void);
401 static void expand_nl_goto_receivers (struct nesting *);
402 static void fixup_gotos (struct nesting *, rtx, tree, rtx, int);
403 static bool check_operand_nalternatives (tree, tree);
404 static bool check_unique_operand_names (tree, tree);
405 static char *resolve_operand_name_1 (char *, tree, tree);
406 static void expand_null_return_1 (rtx);
407 static enum br_predictor return_prediction (rtx);
408 static rtx shift_return_value (rtx);
409 static void expand_value_return (rtx);
410 static int tail_recursion_args (tree, tree);
411 static void expand_cleanups (tree, int, int);
412 static void check_seenlabel (void);
413 static void do_jump_if_equal (rtx, rtx, rtx, int);
414 static int estimate_case_costs (case_node_ptr);
415 static bool same_case_target_p (rtx, rtx);
416 static void strip_default_case_nodes (case_node_ptr *, rtx);
417 static bool lshift_cheap_p (void);
418 static int case_bit_test_cmp (const void *, const void *);
419 static void emit_case_bit_tests (tree, tree, tree, tree, case_node_ptr, rtx);
420 static void group_case_nodes (case_node_ptr);
421 static void balance_case_nodes (case_node_ptr *, case_node_ptr);
422 static int node_has_low_bound (case_node_ptr, tree);
423 static int node_has_high_bound (case_node_ptr, tree);
424 static int node_is_bounded (case_node_ptr, tree);
425 static void emit_jump_if_reachable (rtx);
426 static void emit_case_nodes (rtx, case_node_ptr, rtx, tree);
427 static struct case_node *case_tree2list (case_node *, case_node *);
430 using_eh_for_cleanups (void)
432 using_eh_for_cleanups_p = 1;
436 init_stmt_for_function (void)
438 cfun->stmt = ggc_alloc_cleared (sizeof (struct stmt_status));
441 /* Record the current file and line. Called from emit_line_note. */
444 set_file_and_line_for_stmt (location_t location)
446 /* If we're outputting an inline function, and we add a line note,
447 there may be no CFUN->STMT information. So, there's no need to
450 emit_locus = location;
453 /* Emit a no-op instruction. */
460 last_insn = get_last_insn ();
462 && (GET_CODE (last_insn) == CODE_LABEL
463 || (GET_CODE (last_insn) == NOTE
464 && prev_real_insn (last_insn) == 0)))
465 emit_insn (gen_nop ());
468 /* Return the rtx-label that corresponds to a LABEL_DECL,
469 creating it if necessary. */
472 label_rtx (tree label)
474 if (TREE_CODE (label) != LABEL_DECL)
477 if (!DECL_RTL_SET_P (label))
478 SET_DECL_RTL (label, gen_label_rtx ());
480 return DECL_RTL (label);
483 /* As above, but also put it on the forced-reference list of the
484 function that contains it. */
486 force_label_rtx (tree label)
488 rtx ref = label_rtx (label);
489 tree function = decl_function_context (label);
495 if (function != current_function_decl
496 && function != inline_function_decl)
497 p = find_function_data (function);
501 p->expr->x_forced_labels = gen_rtx_EXPR_LIST (VOIDmode, ref,
502 p->expr->x_forced_labels);
506 /* Add an unconditional jump to LABEL as the next sequential instruction. */
509 emit_jump (rtx label)
511 do_pending_stack_adjust ();
512 emit_jump_insn (gen_jump (label));
516 /* Emit code to jump to the address
517 specified by the pointer expression EXP. */
520 expand_computed_goto (tree exp)
522 rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
524 x = convert_memory_address (Pmode, x);
528 if (! cfun->computed_goto_common_label)
530 cfun->computed_goto_common_reg = copy_to_mode_reg (Pmode, x);
531 cfun->computed_goto_common_label = gen_label_rtx ();
533 do_pending_stack_adjust ();
534 emit_label (cfun->computed_goto_common_label);
535 emit_indirect_jump (cfun->computed_goto_common_reg);
537 current_function_has_computed_jump = 1;
541 emit_move_insn (cfun->computed_goto_common_reg, x);
542 emit_jump (cfun->computed_goto_common_label);
546 /* Handle goto statements and the labels that they can go to. */
548 /* Specify the location in the RTL code of a label LABEL,
549 which is a LABEL_DECL tree node.
551 This is used for the kind of label that the user can jump to with a
552 goto statement, and for alternatives of a switch or case statement.
553 RTL labels generated for loops and conditionals don't go through here;
554 they are generated directly at the RTL level, by other functions below.
556 Note that this has nothing to do with defining label *names*.
557 Languages vary in how they do that and what that even means. */
560 expand_label (tree label)
562 struct label_chain *p;
564 do_pending_stack_adjust ();
565 emit_label (label_rtx (label));
566 if (DECL_NAME (label))
567 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
569 if (stack_block_stack != 0)
571 p = ggc_alloc (sizeof (struct label_chain));
572 p->next = stack_block_stack->data.block.label_chain;
573 stack_block_stack->data.block.label_chain = p;
578 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
579 from nested functions. */
582 declare_nonlocal_label (tree label)
584 rtx slot = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
586 nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
587 LABEL_PRESERVE_P (label_rtx (label)) = 1;
588 if (nonlocal_goto_handler_slots == 0)
590 emit_stack_save (SAVE_NONLOCAL,
591 &nonlocal_goto_stack_level,
592 PREV_INSN (tail_recursion_reentry));
594 nonlocal_goto_handler_slots
595 = gen_rtx_EXPR_LIST (VOIDmode, slot, nonlocal_goto_handler_slots);
598 /* Generate RTL code for a `goto' statement with target label LABEL.
599 LABEL should be a LABEL_DECL tree node that was or will later be
600 defined with `expand_label'. */
603 expand_goto (tree label)
607 /* Check for a nonlocal goto to a containing function. */
608 context = decl_function_context (label);
609 if (context != 0 && context != current_function_decl)
611 struct function *p = find_function_data (context);
612 rtx label_ref = gen_rtx_LABEL_REF (Pmode, label_rtx (label));
613 rtx handler_slot, static_chain, save_area, insn;
616 /* Find the corresponding handler slot for this label. */
617 handler_slot = p->x_nonlocal_goto_handler_slots;
618 for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label;
619 link = TREE_CHAIN (link))
620 handler_slot = XEXP (handler_slot, 1);
621 handler_slot = XEXP (handler_slot, 0);
623 p->has_nonlocal_label = 1;
624 current_function_has_nonlocal_goto = 1;
625 LABEL_REF_NONLOCAL_P (label_ref) = 1;
627 /* Copy the rtl for the slots so that they won't be shared in
628 case the virtual stack vars register gets instantiated differently
629 in the parent than in the child. */
631 static_chain = copy_to_reg (lookup_static_chain (label));
633 /* Get addr of containing function's current nonlocal goto handler,
634 which will do any cleanups and then jump to the label. */
635 handler_slot = copy_to_reg (replace_rtx (copy_rtx (handler_slot),
636 virtual_stack_vars_rtx,
639 /* Get addr of containing function's nonlocal save area. */
640 save_area = p->x_nonlocal_goto_stack_level;
642 save_area = replace_rtx (copy_rtx (save_area),
643 virtual_stack_vars_rtx, static_chain);
645 #if HAVE_nonlocal_goto
646 if (HAVE_nonlocal_goto)
647 emit_insn (gen_nonlocal_goto (static_chain, handler_slot,
648 save_area, label_ref));
652 emit_insn (gen_rtx_CLOBBER (VOIDmode,
653 gen_rtx_MEM (BLKmode,
654 gen_rtx_SCRATCH (VOIDmode))));
655 emit_insn (gen_rtx_CLOBBER (VOIDmode,
656 gen_rtx_MEM (BLKmode,
657 hard_frame_pointer_rtx)));
659 /* Restore frame pointer for containing function.
660 This sets the actual hard register used for the frame pointer
661 to the location of the function's incoming static chain info.
662 The non-local goto handler will then adjust it to contain the
663 proper value and reload the argument pointer, if needed. */
664 emit_move_insn (hard_frame_pointer_rtx, static_chain);
665 emit_stack_restore (SAVE_NONLOCAL, save_area, NULL_RTX);
667 /* USE of hard_frame_pointer_rtx added for consistency;
668 not clear if really needed. */
669 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
670 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
671 emit_indirect_jump (handler_slot);
674 /* Search backwards to the jump insn and mark it as a
676 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
678 if (GET_CODE (insn) == JUMP_INSN)
680 REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO,
681 const0_rtx, REG_NOTES (insn));
684 else if (GET_CODE (insn) == CALL_INSN)
689 expand_goto_internal (label, label_rtx (label), NULL_RTX);
692 /* Generate RTL code for a `goto' statement with target label BODY.
693 LABEL should be a LABEL_REF.
694 LAST_INSN, if non-0, is the rtx we should consider as the last
695 insn emitted (for the purposes of cleaning up a return). */
698 expand_goto_internal (tree body, rtx label, rtx last_insn)
700 struct nesting *block;
703 if (GET_CODE (label) != CODE_LABEL)
706 /* If label has already been defined, we can tell now
707 whether and how we must alter the stack level. */
709 if (PREV_INSN (label) != 0)
711 /* Find the innermost pending block that contains the label.
712 (Check containment by comparing insn-uids.)
713 Then restore the outermost stack level within that block,
714 and do cleanups of all blocks contained in it. */
715 for (block = block_stack; block; block = block->next)
717 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
719 if (block->data.block.stack_level != 0)
720 stack_level = block->data.block.stack_level;
721 /* Execute the cleanups for blocks we are exiting. */
722 if (block->data.block.cleanups != 0)
724 expand_cleanups (block->data.block.cleanups, 1, 1);
725 do_pending_stack_adjust ();
731 /* Ensure stack adjust isn't done by emit_jump, as this
732 would clobber the stack pointer. This one should be
733 deleted as dead by flow. */
734 clear_pending_stack_adjust ();
735 do_pending_stack_adjust ();
737 /* Don't do this adjust if it's to the end label and this function
738 is to return with a depressed stack pointer. */
739 if (label == return_label
740 && (((TREE_CODE (TREE_TYPE (current_function_decl))
742 && (TYPE_RETURNS_STACK_DEPRESSED
743 (TREE_TYPE (current_function_decl))))))
746 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
749 if (body != 0 && DECL_TOO_LATE (body))
750 error ("jump to `%s' invalidly jumps into binding contour",
751 IDENTIFIER_POINTER (DECL_NAME (body)));
753 /* Label not yet defined: may need to put this goto
754 on the fixup list. */
755 else if (! expand_fixup (body, label, last_insn))
757 /* No fixup needed. Record that the label is the target
758 of at least one goto that has no fixup. */
760 TREE_ADDRESSABLE (body) = 1;
766 /* Generate if necessary a fixup for a goto
767 whose target label in tree structure (if any) is TREE_LABEL
768 and whose target in rtl is RTL_LABEL.
770 If LAST_INSN is nonzero, we pretend that the jump appears
771 after insn LAST_INSN instead of at the current point in the insn stream.
773 The fixup will be used later to insert insns just before the goto.
774 Those insns will restore the stack level as appropriate for the
775 target label, and will (in the case of C++) also invoke any object
776 destructors which have to be invoked when we exit the scopes which
777 are exited by the goto.
779 Value is nonzero if a fixup is made. */
782 expand_fixup (tree tree_label, rtx rtl_label, rtx last_insn)
784 struct nesting *block, *end_block;
786 /* See if we can recognize which block the label will be output in.
787 This is possible in some very common cases.
788 If we succeed, set END_BLOCK to that block.
789 Otherwise, set it to 0. */
792 && (rtl_label == cond_stack->data.cond.endif_label
793 || rtl_label == cond_stack->data.cond.next_label))
794 end_block = cond_stack;
795 /* If we are in a loop, recognize certain labels which
796 are likely targets. This reduces the number of fixups
797 we need to create. */
799 && (rtl_label == loop_stack->data.loop.start_label
800 || rtl_label == loop_stack->data.loop.end_label
801 || rtl_label == loop_stack->data.loop.continue_label))
802 end_block = loop_stack;
806 /* Now set END_BLOCK to the binding level to which we will return. */
810 struct nesting *next_block = end_block->all;
813 /* First see if the END_BLOCK is inside the innermost binding level.
814 If so, then no cleanups or stack levels are relevant. */
815 while (next_block && next_block != block)
816 next_block = next_block->all;
821 /* Otherwise, set END_BLOCK to the innermost binding level
822 which is outside the relevant control-structure nesting. */
823 next_block = block_stack->next;
824 for (block = block_stack; block != end_block; block = block->all)
825 if (block == next_block)
826 next_block = next_block->next;
827 end_block = next_block;
830 /* Does any containing block have a stack level or cleanups?
831 If not, no fixup is needed, and that is the normal case
832 (the only case, for standard C). */
833 for (block = block_stack; block != end_block; block = block->next)
834 if (block->data.block.stack_level != 0
835 || block->data.block.cleanups != 0)
838 if (block != end_block)
840 /* Ok, a fixup is needed. Add a fixup to the list of such. */
841 struct goto_fixup *fixup = ggc_alloc (sizeof (struct goto_fixup));
842 /* In case an old stack level is restored, make sure that comes
843 after any pending stack adjust. */
844 /* ?? If the fixup isn't to come at the present position,
845 doing the stack adjust here isn't useful. Doing it with our
846 settings at that location isn't useful either. Let's hope
849 do_pending_stack_adjust ();
850 fixup->target = tree_label;
851 fixup->target_rtl = rtl_label;
853 /* Create a BLOCK node and a corresponding matched set of
854 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes at
855 this point. The notes will encapsulate any and all fixup
856 code which we might later insert at this point in the insn
857 stream. Also, the BLOCK node will be the parent (i.e. the
858 `SUPERBLOCK') of any other BLOCK nodes which we might create
859 later on when we are expanding the fixup code.
861 Note that optimization passes (including expand_end_loop)
862 might move the *_BLOCK notes away, so we use a NOTE_INSN_DELETED
866 rtx original_before_jump
867 = last_insn ? last_insn : get_last_insn ();
872 block = make_node (BLOCK);
873 TREE_USED (block) = 1;
875 if (!cfun->x_whole_function_mode_p)
876 (*lang_hooks.decls.insert_block) (block);
880 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
881 BLOCK_CHAIN (DECL_INITIAL (current_function_decl))
886 start = emit_note (NOTE_INSN_BLOCK_BEG);
887 if (cfun->x_whole_function_mode_p)
888 NOTE_BLOCK (start) = block;
889 fixup->before_jump = emit_note (NOTE_INSN_DELETED);
890 end = emit_note (NOTE_INSN_BLOCK_END);
891 if (cfun->x_whole_function_mode_p)
892 NOTE_BLOCK (end) = block;
893 fixup->context = block;
895 emit_insn_after (start, original_before_jump);
898 fixup->block_start_count = current_block_start_count;
899 fixup->stack_level = 0;
900 fixup->cleanup_list_list
901 = ((block->data.block.outer_cleanups
902 || block->data.block.cleanups)
903 ? tree_cons (NULL_TREE, block->data.block.cleanups,
904 block->data.block.outer_cleanups)
906 fixup->next = goto_fixup_chain;
907 goto_fixup_chain = fixup;
913 /* Expand any needed fixups in the outputmost binding level of the
914 function. FIRST_INSN is the first insn in the function. */
917 expand_fixups (rtx first_insn)
919 fixup_gotos (NULL, NULL_RTX, NULL_TREE, first_insn, 0);
922 /* When exiting a binding contour, process all pending gotos requiring fixups.
923 THISBLOCK is the structure that describes the block being exited.
924 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
925 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
926 FIRST_INSN is the insn that began this contour.
928 Gotos that jump out of this contour must restore the
929 stack level and do the cleanups before actually jumping.
931 DONT_JUMP_IN positive means report error if there is a jump into this
932 contour from before the beginning of the contour. This is also done if
933 STACK_LEVEL is nonzero unless DONT_JUMP_IN is negative. */
936 fixup_gotos (struct nesting *thisblock, rtx stack_level,
937 tree cleanup_list, rtx first_insn, int dont_jump_in)
939 struct goto_fixup *f, *prev;
941 /* F is the fixup we are considering; PREV is the previous one. */
942 /* We run this loop in two passes so that cleanups of exited blocks
943 are run first, and blocks that are exited are marked so
946 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
948 /* Test for a fixup that is inactive because it is already handled. */
949 if (f->before_jump == 0)
951 /* Delete inactive fixup from the chain, if that is easy to do. */
953 prev->next = f->next;
955 /* Has this fixup's target label been defined?
956 If so, we can finalize it. */
957 else if (PREV_INSN (f->target_rtl) != 0)
961 /* If this fixup jumped into this contour from before the beginning
962 of this contour, report an error. This code used to use
963 the first non-label insn after f->target_rtl, but that's
964 wrong since such can be added, by things like put_var_into_stack
965 and have INSN_UIDs that are out of the range of the block. */
966 /* ??? Bug: this does not detect jumping in through intermediate
967 blocks that have stack levels or cleanups.
968 It detects only a problem with the innermost block
971 && (dont_jump_in > 0 || (dont_jump_in == 0 && stack_level)
973 && INSN_UID (first_insn) < INSN_UID (f->target_rtl)
974 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
975 && ! DECL_ERROR_ISSUED (f->target))
977 error ("%Jlabel '%D' used before containing binding contour",
978 f->target, f->target);
979 /* Prevent multiple errors for one label. */
980 DECL_ERROR_ISSUED (f->target) = 1;
983 /* We will expand the cleanups into a sequence of their own and
984 then later on we will attach this new sequence to the insn
985 stream just ahead of the actual jump insn. */
989 /* Temporarily restore the lexical context where we will
990 logically be inserting the fixup code. We do this for the
991 sake of getting the debugging information right. */
993 (*lang_hooks.decls.pushlevel) (0);
994 (*lang_hooks.decls.set_block) (f->context);
996 /* Expand the cleanups for blocks this jump exits. */
997 if (f->cleanup_list_list)
1000 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1001 /* Marked elements correspond to blocks that have been closed.
1002 Do their cleanups. */
1003 if (TREE_ADDRESSABLE (lists)
1004 && TREE_VALUE (lists) != 0)
1006 expand_cleanups (TREE_VALUE (lists), 1, 1);
1007 /* Pop any pushes done in the cleanups,
1008 in case function is about to return. */
1009 do_pending_stack_adjust ();
1013 /* Restore stack level for the biggest contour that this
1014 jump jumps out of. */
1016 && ! (f->target_rtl == return_label
1017 && ((TREE_CODE (TREE_TYPE (current_function_decl))
1019 && (TYPE_RETURNS_STACK_DEPRESSED
1020 (TREE_TYPE (current_function_decl))))))
1021 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1023 /* Finish up the sequence containing the insns which implement the
1024 necessary cleanups, and then attach that whole sequence to the
1025 insn stream just ahead of the actual jump insn. Attaching it
1026 at that point insures that any cleanups which are in fact
1027 implicit C++ object destructions (which must be executed upon
1028 leaving the block) appear (to the debugger) to be taking place
1029 in an area of the generated code where the object(s) being
1030 destructed are still "in scope". */
1032 cleanup_insns = get_insns ();
1033 (*lang_hooks.decls.poplevel) (1, 0, 0);
1036 emit_insn_after (cleanup_insns, f->before_jump);
1042 /* For any still-undefined labels, do the cleanups for this block now.
1043 We must do this now since items in the cleanup list may go out
1044 of scope when the block ends. */
1045 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1046 if (f->before_jump != 0
1047 && PREV_INSN (f->target_rtl) == 0
1048 /* Label has still not appeared. If we are exiting a block with
1049 a stack level to restore, that started before the fixup,
1050 mark this stack level as needing restoration
1051 when the fixup is later finalized. */
1053 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared, it
1054 means the label is undefined. That's erroneous, but possible. */
1055 && (thisblock->data.block.block_start_count
1056 <= f->block_start_count))
1058 tree lists = f->cleanup_list_list;
1061 for (; lists; lists = TREE_CHAIN (lists))
1062 /* If the following elt. corresponds to our containing block
1063 then the elt. must be for this block. */
1064 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1067 (*lang_hooks.decls.pushlevel) (0);
1068 (*lang_hooks.decls.set_block) (f->context);
1069 expand_cleanups (TREE_VALUE (lists), 1, 1);
1070 do_pending_stack_adjust ();
1071 cleanup_insns = get_insns ();
1072 (*lang_hooks.decls.poplevel) (1, 0, 0);
1074 if (cleanup_insns != 0)
1076 = emit_insn_after (cleanup_insns, f->before_jump);
1078 f->cleanup_list_list = TREE_CHAIN (lists);
1082 f->stack_level = stack_level;
1086 /* Return the number of times character C occurs in string S. */
1088 n_occurrences (int c, const char *s)
1096 /* Generate RTL for an asm statement (explicit assembler code).
1097 STRING is a STRING_CST node containing the assembler code text,
1098 or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the
1099 insn is volatile; don't optimize it. */
1102 expand_asm (tree string, int vol)
1106 if (TREE_CODE (string) == ADDR_EXPR)
1107 string = TREE_OPERAND (string, 0);
1109 body = gen_rtx_ASM_INPUT (VOIDmode, TREE_STRING_POINTER (string));
1111 MEM_VOLATILE_P (body) = vol;
1118 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
1119 OPERAND_NUMth output operand, indexed from zero. There are NINPUTS
1120 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
1121 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
1122 memory operand. Similarly, *ALLOWS_REG will be TRUE iff the
1123 constraint allows the use of a register operand. And, *IS_INOUT
1124 will be true if the operand is read-write, i.e., if it is used as
1125 an input as well as an output. If *CONSTRAINT_P is not in
1126 canonical form, it will be made canonical. (Note that `+' will be
1127 replaced with `=' as part of this process.)
1129 Returns TRUE if all went well; FALSE if an error occurred. */
1132 parse_output_constraint (const char **constraint_p, int operand_num,
1133 int ninputs, int noutputs, bool *allows_mem,
1134 bool *allows_reg, bool *is_inout)
1136 const char *constraint = *constraint_p;
1139 /* Assume the constraint doesn't allow the use of either a register
1141 *allows_mem = false;
1142 *allows_reg = false;
1144 /* Allow the `=' or `+' to not be at the beginning of the string,
1145 since it wasn't explicitly documented that way, and there is a
1146 large body of code that puts it last. Swap the character to
1147 the front, so as not to uglify any place else. */
1148 p = strchr (constraint, '=');
1150 p = strchr (constraint, '+');
1152 /* If the string doesn't contain an `=', issue an error
1156 error ("output operand constraint lacks `='");
1160 /* If the constraint begins with `+', then the operand is both read
1161 from and written to. */
1162 *is_inout = (*p == '+');
1164 /* Canonicalize the output constraint so that it begins with `='. */
1165 if (p != constraint || is_inout)
1168 size_t c_len = strlen (constraint);
1170 if (p != constraint)
1171 warning ("output constraint `%c' for operand %d is not at the beginning",
1174 /* Make a copy of the constraint. */
1175 buf = alloca (c_len + 1);
1176 strcpy (buf, constraint);
1177 /* Swap the first character and the `=' or `+'. */
1178 buf[p - constraint] = buf[0];
1179 /* Make sure the first character is an `='. (Until we do this,
1180 it might be a `+'.) */
1182 /* Replace the constraint with the canonicalized string. */
1183 *constraint_p = ggc_alloc_string (buf, c_len);
1184 constraint = *constraint_p;
1187 /* Loop through the constraint string. */
1188 for (p = constraint + 1; *p; p += CONSTRAINT_LEN (*p, p))
1193 error ("operand constraint contains incorrectly positioned '+' or '='");
1197 if (operand_num + 1 == ninputs + noutputs)
1199 error ("`%%' constraint used with last operand");
1204 case 'V': case 'm': case 'o':
1208 case '?': case '!': case '*': case '&': case '#':
1209 case 'E': case 'F': case 'G': case 'H':
1210 case 's': case 'i': case 'n':
1211 case 'I': case 'J': case 'K': case 'L': case 'M':
1212 case 'N': case 'O': case 'P': case ',':
1215 case '0': case '1': case '2': case '3': case '4':
1216 case '5': case '6': case '7': case '8': case '9':
1218 error ("matching constraint not valid in output operand");
1222 /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1223 excepting those that expand_call created. So match memory
1240 if (REG_CLASS_FROM_CONSTRAINT (*p, p) != NO_REGS)
1242 #ifdef EXTRA_CONSTRAINT_STR
1243 else if (EXTRA_ADDRESS_CONSTRAINT (*p, p))
1245 else if (EXTRA_MEMORY_CONSTRAINT (*p, p))
1249 /* Otherwise we can't assume anything about the nature of
1250 the constraint except that it isn't purely registers.
1251 Treat it like "g" and hope for the best. */
1262 /* Similar, but for input constraints. */
1265 parse_input_constraint (const char **constraint_p, int input_num,
1266 int ninputs, int noutputs, int ninout,
1267 const char * const * constraints,
1268 bool *allows_mem, bool *allows_reg)
1270 const char *constraint = *constraint_p;
1271 const char *orig_constraint = constraint;
1272 size_t c_len = strlen (constraint);
1274 bool saw_match = false;
1276 /* Assume the constraint doesn't allow the use of either
1277 a register or memory. */
1278 *allows_mem = false;
1279 *allows_reg = false;
1281 /* Make sure constraint has neither `=', `+', nor '&'. */
1283 for (j = 0; j < c_len; j += CONSTRAINT_LEN (constraint[j], constraint+j))
1284 switch (constraint[j])
1286 case '+': case '=': case '&':
1287 if (constraint == orig_constraint)
1289 error ("input operand constraint contains `%c'", constraint[j]);
1295 if (constraint == orig_constraint
1296 && input_num + 1 == ninputs - ninout)
1298 error ("`%%' constraint used with last operand");
1303 case 'V': case 'm': case 'o':
1308 case '?': case '!': case '*': case '#':
1309 case 'E': case 'F': case 'G': case 'H':
1310 case 's': case 'i': case 'n':
1311 case 'I': case 'J': case 'K': case 'L': case 'M':
1312 case 'N': case 'O': case 'P': case ',':
1315 /* Whether or not a numeric constraint allows a register is
1316 decided by the matching constraint, and so there is no need
1317 to do anything special with them. We must handle them in
1318 the default case, so that we don't unnecessarily force
1319 operands to memory. */
1320 case '0': case '1': case '2': case '3': case '4':
1321 case '5': case '6': case '7': case '8': case '9':
1324 unsigned long match;
1328 match = strtoul (constraint + j, &end, 10);
1329 if (match >= (unsigned long) noutputs)
1331 error ("matching constraint references invalid operand number");
1335 /* Try and find the real constraint for this dup. Only do this
1336 if the matching constraint is the only alternative. */
1338 && (j == 0 || (j == 1 && constraint[0] == '%')))
1340 constraint = constraints[match];
1341 *constraint_p = constraint;
1342 c_len = strlen (constraint);
1344 /* ??? At the end of the loop, we will skip the first part of
1345 the matched constraint. This assumes not only that the
1346 other constraint is an output constraint, but also that
1347 the '=' or '+' come first. */
1351 j = end - constraint;
1352 /* Anticipate increment at end of loop. */
1367 if (! ISALPHA (constraint[j]))
1369 error ("invalid punctuation `%c' in constraint", constraint[j]);
1372 if (REG_CLASS_FROM_CONSTRAINT (constraint[j], constraint + j)
1375 #ifdef EXTRA_CONSTRAINT_STR
1376 else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j], constraint + j))
1378 else if (EXTRA_MEMORY_CONSTRAINT (constraint[j], 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. */
1392 if (saw_match && !*allows_reg)
1393 warning ("matching constraint does not allow a register");
1398 /* Check for overlap between registers marked in CLOBBERED_REGS and
1399 anything inappropriate in DECL. Emit error and return TRUE for error,
1403 decl_conflicts_with_clobbers_p (tree decl, const HARD_REG_SET clobbered_regs)
1405 /* Conflicts between asm-declared register variables and the clobber
1406 list are not allowed. */
1407 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
1408 && DECL_REGISTER (decl)
1409 && REG_P (DECL_RTL (decl))
1410 && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
1412 rtx reg = DECL_RTL (decl);
1415 for (regno = REGNO (reg);
1416 regno < (REGNO (reg)
1417 + HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg)));
1419 if (TEST_HARD_REG_BIT (clobbered_regs, regno))
1421 error ("asm-specifier for variable `%s' conflicts with asm clobber list",
1422 IDENTIFIER_POINTER (DECL_NAME (decl)));
1424 /* Reset registerness to stop multiple errors emitted for a
1426 DECL_REGISTER (decl) = 0;
1433 /* Generate RTL for an asm statement with arguments.
1434 STRING is the instruction template.
1435 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1436 Each output or input has an expression in the TREE_VALUE and
1437 and a tree list in TREE_PURPOSE which in turn contains a constraint
1438 name in TREE_VALUE (or NULL_TREE) and a constraint string
1440 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1441 that is clobbered by this insn.
1443 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1444 Some elements of OUTPUTS may be replaced with trees representing temporary
1445 values. The caller should copy those temporary values to the originally
1448 VOL nonzero means the insn is volatile; don't optimize it. */
1451 expand_asm_operands (tree string, tree outputs, tree inputs,
1452 tree clobbers, int vol, location_t locus)
1454 rtvec argvec, constraintvec;
1456 int ninputs = list_length (inputs);
1457 int noutputs = list_length (outputs);
1460 HARD_REG_SET clobbered_regs;
1461 int clobber_conflict_found = 0;
1465 /* Vector of RTX's of evaluated output operands. */
1466 rtx *output_rtx = alloca (noutputs * sizeof (rtx));
1467 int *inout_opnum = alloca (noutputs * sizeof (int));
1468 rtx *real_output_rtx = alloca (noutputs * sizeof (rtx));
1469 enum machine_mode *inout_mode
1470 = alloca (noutputs * sizeof (enum machine_mode));
1471 const char **constraints
1472 = alloca ((noutputs + ninputs) * sizeof (const char *));
1473 int old_generating_concat_p = generating_concat_p;
1475 /* An ASM with no outputs needs to be treated as volatile, for now. */
1479 if (! check_operand_nalternatives (outputs, inputs))
1482 string = resolve_asm_operand_names (string, outputs, inputs);
1484 /* Collect constraints. */
1486 for (t = outputs; t ; t = TREE_CHAIN (t), i++)
1487 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1488 for (t = inputs; t ; t = TREE_CHAIN (t), i++)
1489 constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1491 #ifdef MD_ASM_CLOBBERS
1492 /* Sometimes we wish to automatically clobber registers across an asm.
1493 Case in point is when the i386 backend moved from cc0 to a hard reg --
1494 maintaining source-level compatibility means automatically clobbering
1495 the flags register. */
1496 MD_ASM_CLOBBERS (clobbers);
1499 /* Count the number of meaningful clobbered registers, ignoring what
1500 we would ignore later. */
1502 CLEAR_HARD_REG_SET (clobbered_regs);
1503 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1505 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1507 i = decode_reg_name (regname);
1508 if (i >= 0 || i == -4)
1511 error ("unknown register name `%s' in `asm'", regname);
1513 /* Mark clobbered registers. */
1516 /* Clobbering the PIC register is an error */
1517 if (i == (int) PIC_OFFSET_TABLE_REGNUM)
1519 error ("PIC register `%s' clobbered in `asm'", regname);
1523 SET_HARD_REG_BIT (clobbered_regs, i);
1529 /* First pass over inputs and outputs checks validity and sets
1530 mark_addressable if needed. */
1533 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1535 tree val = TREE_VALUE (tail);
1536 tree type = TREE_TYPE (val);
1537 const char *constraint;
1542 /* If there's an erroneous arg, emit no insn. */
1543 if (type == error_mark_node)
1546 /* Try to parse the output constraint. If that fails, there's
1547 no point in going further. */
1548 constraint = constraints[i];
1549 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
1550 &allows_mem, &allows_reg, &is_inout))
1557 && GET_CODE (DECL_RTL (val)) == REG
1558 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
1559 (*lang_hooks.mark_addressable) (val);
1566 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1568 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1572 for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
1574 bool allows_reg, allows_mem;
1575 const char *constraint;
1577 /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
1578 would get VOIDmode and that could cause a crash in reload. */
1579 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1582 constraint = constraints[i + noutputs];
1583 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1584 constraints, &allows_mem, &allows_reg))
1587 if (! allows_reg && allows_mem)
1588 (*lang_hooks.mark_addressable) (TREE_VALUE (tail));
1591 /* Second pass evaluates arguments. */
1594 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1596 tree val = TREE_VALUE (tail);
1597 tree type = TREE_TYPE (val);
1603 if (!parse_output_constraint (&constraints[i], i, ninputs,
1604 noutputs, &allows_mem, &allows_reg,
1608 /* If an output operand is not a decl or indirect ref and our constraint
1609 allows a register, make a temporary to act as an intermediate.
1610 Make the asm insn write into that, then our caller will copy it to
1611 the real output operand. Likewise for promoted variables. */
1613 generating_concat_p = 0;
1615 real_output_rtx[i] = NULL_RTX;
1616 if ((TREE_CODE (val) == INDIRECT_REF
1619 && (allows_mem || GET_CODE (DECL_RTL (val)) == REG)
1620 && ! (GET_CODE (DECL_RTL (val)) == REG
1621 && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
1625 op = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
1626 if (GET_CODE (op) == MEM)
1627 op = validize_mem (op);
1629 if (! allows_reg && GET_CODE (op) != MEM)
1630 error ("output number %d not directly addressable", i);
1631 if ((! allows_mem && GET_CODE (op) == MEM)
1632 || GET_CODE (op) == CONCAT)
1634 real_output_rtx[i] = protect_from_queue (op, 1);
1635 op = gen_reg_rtx (GET_MODE (op));
1637 emit_move_insn (op, real_output_rtx[i]);
1642 op = assign_temp (type, 0, 0, 1);
1643 op = validize_mem (op);
1644 TREE_VALUE (tail) = make_tree (type, op);
1648 generating_concat_p = old_generating_concat_p;
1652 inout_mode[ninout] = TYPE_MODE (type);
1653 inout_opnum[ninout++] = i;
1656 if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
1657 clobber_conflict_found = 1;
1660 /* Make vectors for the expression-rtx, constraint strings,
1661 and named operands. */
1663 argvec = rtvec_alloc (ninputs);
1664 constraintvec = rtvec_alloc (ninputs);
1666 body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
1667 : GET_MODE (output_rtx[0])),
1668 TREE_STRING_POINTER (string),
1669 empty_string, 0, argvec, constraintvec,
1670 locus.file, locus.line);
1672 MEM_VOLATILE_P (body) = vol;
1674 /* Eval the inputs and put them into ARGVEC.
1675 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1677 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
1679 bool allows_reg, allows_mem;
1680 const char *constraint;
1684 constraint = constraints[i + noutputs];
1685 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
1686 constraints, &allows_mem, &allows_reg))
1689 generating_concat_p = 0;
1691 val = TREE_VALUE (tail);
1692 type = TREE_TYPE (val);
1693 op = expand_expr (val, NULL_RTX, VOIDmode,
1694 (allows_mem && !allows_reg
1695 ? EXPAND_MEMORY : EXPAND_NORMAL));
1697 /* Never pass a CONCAT to an ASM. */
1698 if (GET_CODE (op) == CONCAT)
1699 op = force_reg (GET_MODE (op), op);
1700 else if (GET_CODE (op) == MEM)
1701 op = validize_mem (op);
1703 if (asm_operand_ok (op, constraint) <= 0)
1706 op = force_reg (TYPE_MODE (type), op);
1707 else if (!allows_mem)
1708 warning ("asm operand %d probably doesn't match constraints",
1710 else if (GET_CODE (op) == MEM)
1712 /* We won't recognize either volatile memory or memory
1713 with a queued address as available a memory_operand
1714 at this point. Ignore it: clearly this *is* a memory. */
1718 warning ("use of memory input without lvalue in "
1719 "asm operand %d is deprecated", i + noutputs);
1721 if (CONSTANT_P (op))
1723 rtx mem = force_const_mem (TYPE_MODE (type), op);
1725 op = validize_mem (mem);
1727 op = force_reg (TYPE_MODE (type), op);
1729 if (GET_CODE (op) == REG
1730 || GET_CODE (op) == SUBREG
1731 || GET_CODE (op) == ADDRESSOF
1732 || GET_CODE (op) == CONCAT)
1734 tree qual_type = build_qualified_type (type,
1736 | TYPE_QUAL_CONST));
1737 rtx memloc = assign_temp (qual_type, 1, 1, 1);
1738 memloc = validize_mem (memloc);
1739 emit_move_insn (memloc, op);
1745 generating_concat_p = old_generating_concat_p;
1746 ASM_OPERANDS_INPUT (body, i) = op;
1748 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
1749 = gen_rtx_ASM_INPUT (TYPE_MODE (type), constraints[i + noutputs]);
1751 if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
1752 clobber_conflict_found = 1;
1755 /* Protect all the operands from the queue now that they have all been
1758 generating_concat_p = 0;
1760 for (i = 0; i < ninputs - ninout; i++)
1761 ASM_OPERANDS_INPUT (body, i)
1762 = protect_from_queue (ASM_OPERANDS_INPUT (body, i), 0);
1764 for (i = 0; i < noutputs; i++)
1765 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1767 /* For in-out operands, copy output rtx to input rtx. */
1768 for (i = 0; i < ninout; i++)
1770 int j = inout_opnum[i];
1773 ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
1776 sprintf (buffer, "%d", j);
1777 ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
1778 = gen_rtx_ASM_INPUT (inout_mode[i], ggc_strdup (buffer));
1781 generating_concat_p = old_generating_concat_p;
1783 /* Now, for each output, construct an rtx
1784 (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
1785 ARGVEC CONSTRAINTS OPNAMES))
1786 If there is more than one, put them inside a PARALLEL. */
1788 if (noutputs == 1 && nclobbers == 0)
1790 ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = constraints[0];
1791 emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
1794 else if (noutputs == 0 && nclobbers == 0)
1796 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1808 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
1810 /* For each output operand, store a SET. */
1811 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1813 XVECEXP (body, 0, i)
1814 = gen_rtx_SET (VOIDmode,
1816 gen_rtx_ASM_OPERANDS
1817 (GET_MODE (output_rtx[i]),
1818 TREE_STRING_POINTER (string),
1819 constraints[i], i, argvec, constraintvec,
1820 locus.file, locus.line));
1822 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1825 /* If there are no outputs (but there are some clobbers)
1826 store the bare ASM_OPERANDS into the PARALLEL. */
1829 XVECEXP (body, 0, i++) = obody;
1831 /* Store (clobber REG) for each clobbered register specified. */
1833 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1835 const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1836 int j = decode_reg_name (regname);
1841 if (j == -3) /* `cc', which is not a register */
1844 if (j == -4) /* `memory', don't cache memory across asm */
1846 XVECEXP (body, 0, i++)
1847 = gen_rtx_CLOBBER (VOIDmode,
1850 gen_rtx_SCRATCH (VOIDmode)));
1854 /* Ignore unknown register, error already signaled. */
1858 /* Use QImode since that's guaranteed to clobber just one reg. */
1859 clobbered_reg = gen_rtx_REG (QImode, j);
1861 /* Do sanity check for overlap between clobbers and respectively
1862 input and outputs that hasn't been handled. Such overlap
1863 should have been detected and reported above. */
1864 if (!clobber_conflict_found)
1868 /* We test the old body (obody) contents to avoid tripping
1869 over the under-construction body. */
1870 for (opno = 0; opno < noutputs; opno++)
1871 if (reg_overlap_mentioned_p (clobbered_reg, output_rtx[opno]))
1872 internal_error ("asm clobber conflict with output operand");
1874 for (opno = 0; opno < ninputs - ninout; opno++)
1875 if (reg_overlap_mentioned_p (clobbered_reg,
1876 ASM_OPERANDS_INPUT (obody, opno)))
1877 internal_error ("asm clobber conflict with input operand");
1880 XVECEXP (body, 0, i++)
1881 = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1887 /* For any outputs that needed reloading into registers, spill them
1888 back to where they belong. */
1889 for (i = 0; i < noutputs; ++i)
1890 if (real_output_rtx[i])
1891 emit_move_insn (real_output_rtx[i], output_rtx[i]);
1896 /* A subroutine of expand_asm_operands. Check that all operands have
1897 the same number of alternatives. Return true if so. */
1900 check_operand_nalternatives (tree outputs, tree inputs)
1902 if (outputs || inputs)
1904 tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1906 = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1909 if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1911 error ("too many alternatives in `asm'");
1918 const char *constraint
1919 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1921 if (n_occurrences (',', constraint) != nalternatives)
1923 error ("operand constraints for `asm' differ in number of alternatives");
1927 if (TREE_CHAIN (tmp))
1928 tmp = TREE_CHAIN (tmp);
1930 tmp = next, next = 0;
1937 /* A subroutine of expand_asm_operands. Check that all operand names
1938 are unique. Return true if so. We rely on the fact that these names
1939 are identifiers, and so have been canonicalized by get_identifier,
1940 so all we need are pointer comparisons. */
1943 check_unique_operand_names (tree outputs, tree inputs)
1947 for (i = outputs; i ; i = TREE_CHAIN (i))
1949 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1953 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1954 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1958 for (i = inputs; i ; i = TREE_CHAIN (i))
1960 tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1964 for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1965 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1967 for (j = outputs; j ; j = TREE_CHAIN (j))
1968 if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1975 error ("duplicate asm operand name '%s'",
1976 TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i))));
1980 /* A subroutine of expand_asm_operands. Resolve the names of the operands
1981 in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1982 STRING and in the constraints to those numbers. */
1985 resolve_asm_operand_names (tree string, tree outputs, tree inputs)
1992 check_unique_operand_names (outputs, inputs);
1994 /* Substitute [<name>] in input constraint strings. There should be no
1995 named operands in output constraints. */
1996 for (t = inputs; t ; t = TREE_CHAIN (t))
1998 c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1999 if (strchr (c, '[') != NULL)
2001 p = buffer = xstrdup (c);
2002 while ((p = strchr (p, '[')) != NULL)
2003 p = resolve_operand_name_1 (p, outputs, inputs);
2004 TREE_VALUE (TREE_PURPOSE (t))
2005 = build_string (strlen (buffer), buffer);
2010 /* Now check for any needed substitutions in the template. */
2011 c = TREE_STRING_POINTER (string);
2012 while ((c = strchr (c, '%')) != NULL)
2016 else if (ISALPHA (c[1]) && c[2] == '[')
2027 /* OK, we need to make a copy so we can perform the substitutions.
2028 Assume that we will not need extra space--we get to remove '['
2029 and ']', which means we cannot have a problem until we have more
2030 than 999 operands. */
2031 buffer = xstrdup (TREE_STRING_POINTER (string));
2032 p = buffer + (c - TREE_STRING_POINTER (string));
2034 while ((p = strchr (p, '%')) != NULL)
2038 else if (ISALPHA (p[1]) && p[2] == '[')
2046 p = resolve_operand_name_1 (p, outputs, inputs);
2049 string = build_string (strlen (buffer), buffer);
2056 /* A subroutine of resolve_operand_names. P points to the '[' for a
2057 potential named operand of the form [<name>]. In place, replace
2058 the name and brackets with a number. Return a pointer to the
2059 balance of the string after substitution. */
2062 resolve_operand_name_1 (char *p, tree outputs, tree inputs)
2069 /* Collect the operand name. */
2070 q = strchr (p, ']');
2073 error ("missing close brace for named operand");
2074 return strchr (p, '\0');
2078 /* Resolve the name to a number. */
2079 for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
2081 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
2084 const char *c = TREE_STRING_POINTER (name);
2085 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
2089 for (t = inputs; t ; t = TREE_CHAIN (t), op++)
2091 tree name = TREE_PURPOSE (TREE_PURPOSE (t));
2094 const char *c = TREE_STRING_POINTER (name);
2095 if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
2101 error ("undefined named operand '%s'", p + 1);
2105 /* Replace the name with the number. Unfortunately, not all libraries
2106 get the return value of sprintf correct, so search for the end of the
2107 generated string by hand. */
2108 sprintf (p, "%d", op);
2109 p = strchr (p, '\0');
2111 /* Verify the no extra buffer space assumption. */
2115 /* Shift the rest of the buffer down to fill the gap. */
2116 memmove (p, q + 1, strlen (q + 1) + 1);
2121 /* Generate RTL to evaluate the expression EXP
2122 and remember it in case this is the VALUE in a ({... VALUE; }) constr.
2123 Provided just for backward-compatibility. expand_expr_stmt_value()
2124 should be used for new code. */
2127 expand_expr_stmt (tree exp)
2129 expand_expr_stmt_value (exp, -1, 1);
2132 /* Generate RTL to evaluate the expression EXP. WANT_VALUE tells
2133 whether to (1) save the value of the expression, (0) discard it or
2134 (-1) use expr_stmts_for_value to tell. The use of -1 is
2135 deprecated, and retained only for backward compatibility. */
2138 expand_expr_stmt_value (tree exp, int want_value, int maybe_last)
2144 if (want_value == -1)
2145 want_value = expr_stmts_for_value != 0;
2147 /* If -Wextra, warn about statements with no side effects,
2148 except for an explicit cast to void (e.g. for assert()), and
2149 except for last statement in ({...}) where they may be useful. */
2151 && (expr_stmts_for_value == 0 || ! maybe_last)
2152 && exp != error_mark_node
2153 && warn_unused_value)
2155 if (TREE_SIDE_EFFECTS (exp))
2156 warn_if_unused_value (exp);
2157 else if (!VOID_TYPE_P (TREE_TYPE (exp)))
2158 warning ("%Hstatement with no effect", &emit_locus);
2161 /* If EXP is of function type and we are expanding statements for
2162 value, convert it to pointer-to-function. */
2163 if (want_value && TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE)
2164 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
2166 /* The call to `expand_expr' could cause last_expr_type and
2167 last_expr_value to get reset. Therefore, we set last_expr_value
2168 and last_expr_type *after* calling expand_expr. */
2169 value = expand_expr_real (exp, want_value ? NULL_RTX : const0_rtx,
2170 VOIDmode, 0, &alt_rtl);
2171 type = TREE_TYPE (exp);
2173 /* If all we do is reference a volatile value in memory,
2174 copy it to a register to be sure it is actually touched. */
2175 if (value && GET_CODE (value) == MEM && TREE_THIS_VOLATILE (exp))
2177 if (TYPE_MODE (type) == VOIDmode)
2179 else if (TYPE_MODE (type) != BLKmode)
2180 value = copy_to_reg (value);
2183 rtx lab = gen_label_rtx ();
2185 /* Compare the value with itself to reference it. */
2186 emit_cmp_and_jump_insns (value, value, EQ,
2187 expand_expr (TYPE_SIZE (type),
2188 NULL_RTX, VOIDmode, 0),
2194 /* If this expression is part of a ({...}) and is in memory, we may have
2195 to preserve temporaries. */
2196 preserve_temp_slots (value);
2198 /* Free any temporaries used to evaluate this expression. Any temporary
2199 used as a result of this expression will already have been preserved
2205 last_expr_value = value;
2206 last_expr_alt_rtl = alt_rtl;
2207 last_expr_type = type;
2213 /* Warn if EXP contains any computations whose results are not used.
2214 Return 1 if a warning is printed; 0 otherwise. */
2217 warn_if_unused_value (tree exp)
2219 if (TREE_USED (exp))
2222 /* Don't warn about void constructs. This includes casting to void,
2223 void function calls, and statement expressions with a final cast
2225 if (VOID_TYPE_P (TREE_TYPE (exp)))
2228 switch (TREE_CODE (exp))
2230 case PREINCREMENT_EXPR:
2231 case POSTINCREMENT_EXPR:
2232 case PREDECREMENT_EXPR:
2233 case POSTDECREMENT_EXPR:
2239 case TRY_CATCH_EXPR:
2240 case WITH_CLEANUP_EXPR:
2245 /* For a binding, warn if no side effect within it. */
2246 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2249 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2251 case TRUTH_ORIF_EXPR:
2252 case TRUTH_ANDIF_EXPR:
2253 /* In && or ||, warn if 2nd operand has no side effect. */
2254 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2257 if (TREE_NO_UNUSED_WARNING (exp))
2259 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
2261 /* Let people do `(foo (), 0)' without a warning. */
2262 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
2264 return warn_if_unused_value (TREE_OPERAND (exp, 1));
2268 case NON_LVALUE_EXPR:
2269 /* Don't warn about conversions not explicit in the user's program. */
2270 if (TREE_NO_UNUSED_WARNING (exp))
2272 /* Assignment to a cast usually results in a cast of a modify.
2273 Don't complain about that. There can be an arbitrary number of
2274 casts before the modify, so we must loop until we find the first
2275 non-cast expression and then test to see if that is a modify. */
2277 tree tem = TREE_OPERAND (exp, 0);
2279 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
2280 tem = TREE_OPERAND (tem, 0);
2282 if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
2283 || TREE_CODE (tem) == CALL_EXPR)
2289 /* Don't warn about automatic dereferencing of references, since
2290 the user cannot control it. */
2291 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
2292 return warn_if_unused_value (TREE_OPERAND (exp, 0));
2296 /* Referencing a volatile value is a side effect, so don't warn. */
2298 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
2299 && TREE_THIS_VOLATILE (exp))
2302 /* If this is an expression which has no operands, there is no value
2303 to be unused. There are no such language-independent codes,
2304 but front ends may define such. */
2305 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'e'
2306 && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
2310 /* If this is an expression with side effects, don't warn. */
2311 if (TREE_SIDE_EFFECTS (exp))
2314 warning ("%Hvalue computed is not used", &emit_locus);
2319 /* Clear out the memory of the last expression evaluated. */
2322 clear_last_expr (void)
2324 last_expr_type = NULL_TREE;
2325 last_expr_value = NULL_RTX;
2326 last_expr_alt_rtl = NULL_RTX;
2329 /* Begin a statement-expression, i.e., a series of statements which
2330 may return a value. Return the RTL_EXPR for this statement expr.
2331 The caller must save that value and pass it to
2332 expand_end_stmt_expr. If HAS_SCOPE is nonzero, temporaries created
2333 in the statement-expression are deallocated at the end of the
2337 expand_start_stmt_expr (int has_scope)
2341 /* Make the RTL_EXPR node temporary, not momentary,
2342 so that rtl_expr_chain doesn't become garbage. */
2343 t = make_node (RTL_EXPR);
2344 do_pending_stack_adjust ();
2346 start_sequence_for_rtl_expr (t);
2350 expr_stmts_for_value++;
2354 /* Restore the previous state at the end of a statement that returns a value.
2355 Returns a tree node representing the statement's value and the
2356 insns to compute the value.
2358 The nodes of that expression have been freed by now, so we cannot use them.
2359 But we don't want to do that anyway; the expression has already been
2360 evaluated and now we just want to use the value. So generate a RTL_EXPR
2361 with the proper type and RTL value.
2363 If the last substatement was not an expression,
2364 return something with type `void'. */
2367 expand_end_stmt_expr (tree t)
2371 if (! last_expr_value || ! last_expr_type)
2373 last_expr_value = const0_rtx;
2374 last_expr_alt_rtl = NULL_RTX;
2375 last_expr_type = void_type_node;
2377 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
2378 /* Remove any possible QUEUED. */
2379 last_expr_value = protect_from_queue (last_expr_value, 0);
2383 TREE_TYPE (t) = last_expr_type;
2384 RTL_EXPR_RTL (t) = last_expr_value;
2385 RTL_EXPR_ALT_RTL (t) = last_expr_alt_rtl;
2386 RTL_EXPR_SEQUENCE (t) = get_insns ();
2388 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
2392 /* Don't consider deleting this expr or containing exprs at tree level. */
2393 TREE_SIDE_EFFECTS (t) = 1;
2394 /* Propagate volatility of the actual RTL expr. */
2395 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
2398 expr_stmts_for_value--;
2403 /* Generate RTL for the start of an if-then. COND is the expression
2404 whose truth should be tested.
2406 If EXITFLAG is nonzero, this conditional is visible to
2407 `exit_something'. */
2410 expand_start_cond (tree cond, int exitflag)
2412 struct nesting *thiscond = ALLOC_NESTING ();
2414 /* Make an entry on cond_stack for the cond we are entering. */
2416 thiscond->desc = COND_NESTING;
2417 thiscond->next = cond_stack;
2418 thiscond->all = nesting_stack;
2419 thiscond->depth = ++nesting_depth;
2420 thiscond->data.cond.next_label = gen_label_rtx ();
2421 /* Before we encounter an `else', we don't need a separate exit label
2422 unless there are supposed to be exit statements
2423 to exit this conditional. */
2424 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
2425 thiscond->data.cond.endif_label = thiscond->exit_label;
2426 cond_stack = thiscond;
2427 nesting_stack = thiscond;
2429 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
2432 /* Generate RTL between then-clause and the elseif-clause
2433 of an if-then-elseif-.... */
2436 expand_start_elseif (tree cond)
2438 if (cond_stack->data.cond.endif_label == 0)
2439 cond_stack->data.cond.endif_label = gen_label_rtx ();
2440 emit_jump (cond_stack->data.cond.endif_label);
2441 emit_label (cond_stack->data.cond.next_label);
2442 cond_stack->data.cond.next_label = gen_label_rtx ();
2443 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2446 /* Generate RTL between the then-clause and the else-clause
2447 of an if-then-else. */
2450 expand_start_else (void)
2452 if (cond_stack->data.cond.endif_label == 0)
2453 cond_stack->data.cond.endif_label = gen_label_rtx ();
2455 emit_jump (cond_stack->data.cond.endif_label);
2456 emit_label (cond_stack->data.cond.next_label);
2457 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
2460 /* After calling expand_start_else, turn this "else" into an "else if"
2461 by providing another condition. */
2464 expand_elseif (tree cond)
2466 cond_stack->data.cond.next_label = gen_label_rtx ();
2467 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
2470 /* Generate RTL for the end of an if-then.
2471 Pop the record for it off of cond_stack. */
2474 expand_end_cond (void)
2476 struct nesting *thiscond = cond_stack;
2478 do_pending_stack_adjust ();
2479 if (thiscond->data.cond.next_label)
2480 emit_label (thiscond->data.cond.next_label);
2481 if (thiscond->data.cond.endif_label)
2482 emit_label (thiscond->data.cond.endif_label);
2484 POPSTACK (cond_stack);
2488 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2489 loop should be exited by `exit_something'. This is a loop for which
2490 `expand_continue' will jump to the top of the loop.
2492 Make an entry on loop_stack to record the labels associated with
2496 expand_start_loop (int exit_flag)
2498 struct nesting *thisloop = ALLOC_NESTING ();
2500 /* Make an entry on loop_stack for the loop we are entering. */
2502 thisloop->desc = LOOP_NESTING;
2503 thisloop->next = loop_stack;
2504 thisloop->all = nesting_stack;
2505 thisloop->depth = ++nesting_depth;
2506 thisloop->data.loop.start_label = gen_label_rtx ();
2507 thisloop->data.loop.end_label = gen_label_rtx ();
2508 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2509 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2510 loop_stack = thisloop;
2511 nesting_stack = thisloop;
2513 do_pending_stack_adjust ();
2515 emit_note (NOTE_INSN_LOOP_BEG);
2516 emit_label (thisloop->data.loop.start_label);
2521 /* Like expand_start_loop but for a loop where the continuation point
2522 (for expand_continue_loop) will be specified explicitly. */
2525 expand_start_loop_continue_elsewhere (int exit_flag)
2527 struct nesting *thisloop = expand_start_loop (exit_flag);
2528 loop_stack->data.loop.continue_label = gen_label_rtx ();
2532 /* Begin a null, aka do { } while (0) "loop". But since the contents
2533 of said loop can still contain a break, we must frob the loop nest. */
2536 expand_start_null_loop (void)
2538 struct nesting *thisloop = ALLOC_NESTING ();
2540 /* Make an entry on loop_stack for the loop we are entering. */
2542 thisloop->desc = LOOP_NESTING;
2543 thisloop->next = loop_stack;
2544 thisloop->all = nesting_stack;
2545 thisloop->depth = ++nesting_depth;
2546 thisloop->data.loop.start_label = emit_note (NOTE_INSN_DELETED);
2547 thisloop->data.loop.end_label = gen_label_rtx ();
2548 thisloop->data.loop.continue_label = thisloop->data.loop.end_label;
2549 thisloop->exit_label = thisloop->data.loop.end_label;
2550 loop_stack = thisloop;
2551 nesting_stack = thisloop;
2556 /* Specify the continuation point for a loop started with
2557 expand_start_loop_continue_elsewhere.
2558 Use this at the point in the code to which a continue statement
2562 expand_loop_continue_here (void)
2564 do_pending_stack_adjust ();
2565 emit_note (NOTE_INSN_LOOP_CONT);
2566 emit_label (loop_stack->data.loop.continue_label);
2569 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2570 Pop the block off of loop_stack. */
2573 expand_end_loop (void)
2575 rtx start_label = loop_stack->data.loop.start_label;
2577 int eh_regions, debug_blocks;
2580 /* Mark the continue-point at the top of the loop if none elsewhere. */
2581 if (start_label == loop_stack->data.loop.continue_label)
2582 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2584 do_pending_stack_adjust ();
2586 /* If the loop starts with a loop exit, roll that to the end where
2587 it will optimize together with the jump back.
2589 If the loop presently looks like this (in pseudo-C):
2593 if (test) goto end_label;
2599 transform it to look like:
2606 if (test) goto end_label;
2610 We rely on the presence of NOTE_INSN_LOOP_END_TOP_COND to mark
2611 the end of the entry conditional. Without this, our lexical scan
2612 can't tell the difference between an entry conditional and a
2613 body conditional that exits the loop. Mistaking the two means
2614 that we can misplace the NOTE_INSN_LOOP_CONT note, which can
2615 screw up loop unrolling.
2617 Things will be oh so much better when loop optimization is done
2618 off of a proper control flow graph... */
2620 /* Scan insns from the top of the loop looking for the END_TOP_COND note. */
2623 eh_regions = debug_blocks = 0;
2624 for (etc_note = start_label; etc_note ; etc_note = NEXT_INSN (etc_note))
2625 if (GET_CODE (etc_note) == NOTE)
2627 if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_END_TOP_COND)
2630 /* We must not walk into a nested loop. */
2631 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_LOOP_BEG)
2633 etc_note = NULL_RTX;
2637 /* At the same time, scan for EH region notes, as we don't want
2638 to scrog region nesting. This shouldn't happen, but... */
2639 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_BEG)
2641 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_EH_REGION_END)
2643 if (--eh_regions < 0)
2644 /* We've come to the end of an EH region, but never saw the
2645 beginning of that region. That means that an EH region
2646 begins before the top of the loop, and ends in the middle
2647 of it. The existence of such a situation violates a basic
2648 assumption in this code, since that would imply that even
2649 when EH_REGIONS is zero, we might move code out of an
2650 exception region. */
2654 /* Likewise for debug scopes. In this case we'll either (1) move
2655 all of the notes if they are properly nested or (2) leave the
2656 notes alone and only rotate the loop at high optimization
2657 levels when we expect to scrog debug info. */
2658 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_BEG)
2660 else if (NOTE_LINE_NUMBER (etc_note) == NOTE_INSN_BLOCK_END)
2663 else if (INSN_P (etc_note))
2670 && (debug_blocks == 0 || optimize >= 2)
2671 && NEXT_INSN (etc_note) != NULL_RTX
2672 && ! any_condjump_p (get_last_insn ()))
2674 /* We found one. Move everything from START to ETC to the end
2675 of the loop, and add a jump from the top of the loop. */
2676 rtx top_label = gen_label_rtx ();
2677 rtx start_move = start_label;
2679 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2680 then we want to move this note also. */
2681 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2682 && NOTE_LINE_NUMBER (PREV_INSN (start_move)) == NOTE_INSN_LOOP_CONT)
2683 start_move = PREV_INSN (start_move);
2685 emit_label_before (top_label, start_move);
2687 /* Actually move the insns. If the debug scopes are nested, we
2688 can move everything at once. Otherwise we have to move them
2689 one by one and squeeze out the block notes. */
2690 if (debug_blocks == 0)
2691 reorder_insns (start_move, etc_note, get_last_insn ());
2694 rtx insn, next_insn;
2695 for (insn = start_move; insn; insn = next_insn)
2697 /* Figure out which insn comes after this one. We have
2698 to do this before we move INSN. */
2699 next_insn = (insn == etc_note ? NULL : NEXT_INSN (insn));
2701 if (GET_CODE (insn) == NOTE
2702 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2703 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2706 reorder_insns (insn, insn, get_last_insn ());
2710 /* Add the jump from the top of the loop. */
2711 emit_jump_insn_before (gen_jump (start_label), top_label);
2712 emit_barrier_before (top_label);
2713 start_label = top_label;
2716 emit_jump (start_label);
2717 emit_note (NOTE_INSN_LOOP_END);
2718 emit_label (loop_stack->data.loop.end_label);
2720 POPSTACK (loop_stack);
2725 /* Finish a null loop, aka do { } while (0). */
2728 expand_end_null_loop (void)
2730 do_pending_stack_adjust ();
2731 emit_label (loop_stack->data.loop.end_label);
2733 POPSTACK (loop_stack);
2738 /* Generate a jump to the current loop's continue-point.
2739 This is usually the top of the loop, but may be specified
2740 explicitly elsewhere. If not currently inside a loop,
2741 return 0 and do nothing; caller will print an error message. */
2744 expand_continue_loop (struct nesting *whichloop)
2746 /* Emit information for branch prediction. */
2749 if (flag_guess_branch_prob)
2751 note = emit_note (NOTE_INSN_PREDICTION);
2752 NOTE_PREDICTION (note) = NOTE_PREDICT (PRED_CONTINUE, IS_TAKEN);
2756 whichloop = loop_stack;
2759 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2764 /* Generate a jump to exit the current loop. If not currently inside a loop,
2765 return 0 and do nothing; caller will print an error message. */
2768 expand_exit_loop (struct nesting *whichloop)
2772 whichloop = loop_stack;
2775 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2779 /* Generate a conditional jump to exit the current loop if COND
2780 evaluates to zero. If not currently inside a loop,
2781 return 0 and do nothing; caller will print an error message. */
2784 expand_exit_loop_if_false (struct nesting *whichloop, tree cond)
2790 whichloop = loop_stack;
2794 if (integer_nonzerop (cond))
2796 if (integer_zerop (cond))
2797 return expand_exit_loop (whichloop);
2799 /* Check if we definitely won't need a fixup. */
2800 if (whichloop == nesting_stack)
2802 jumpifnot (cond, whichloop->data.loop.end_label);
2806 /* In order to handle fixups, we actually create a conditional jump
2807 around an unconditional branch to exit the loop. If fixups are
2808 necessary, they go before the unconditional branch. */
2810 label = gen_label_rtx ();
2811 jumpif (cond, label);
2812 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2819 /* Like expand_exit_loop_if_false except also emit a note marking
2820 the end of the conditional. Should only be used immediately
2821 after expand_loop_start. */
2824 expand_exit_loop_top_cond (struct nesting *whichloop, tree cond)
2826 if (! expand_exit_loop_if_false (whichloop, cond))
2829 emit_note (NOTE_INSN_LOOP_END_TOP_COND);
2833 /* Return nonzero if we should preserve sub-expressions as separate
2834 pseudos. We never do so if we aren't optimizing. We always do so
2835 if -fexpensive-optimizations.
2837 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2838 the loop may still be a small one. */
2841 preserve_subexpressions_p (void)
2845 if (flag_expensive_optimizations)
2848 if (optimize == 0 || cfun == 0 || cfun->stmt == 0 || loop_stack == 0)
2851 insn = get_last_insn_anywhere ();
2854 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2855 < n_non_fixed_regs * 3));
2859 /* Generate a jump to exit the current loop, conditional, binding contour
2860 or case statement. Not all such constructs are visible to this function,
2861 only those started with EXIT_FLAG nonzero. Individual languages use
2862 the EXIT_FLAG parameter to control which kinds of constructs you can
2865 If not currently inside anything that can be exited,
2866 return 0 and do nothing; caller will print an error message. */
2869 expand_exit_something (void)
2873 for (n = nesting_stack; n; n = n->all)
2874 if (n->exit_label != 0)
2876 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2883 /* Generate RTL to return from the current function, with no value.
2884 (That is, we do not do anything about returning any value.) */
2887 expand_null_return (void)
2891 last_insn = get_last_insn ();
2893 /* If this function was declared to return a value, but we
2894 didn't, clobber the return registers so that they are not
2895 propagated live to the rest of the function. */
2896 clobber_return_register ();
2898 expand_null_return_1 (last_insn);
2901 /* Generate RTL to return directly from the current function.
2902 (That is, we bypass any return value.) */
2905 expand_naked_return (void)
2907 rtx last_insn, end_label;
2909 last_insn = get_last_insn ();
2910 end_label = naked_return_label;
2912 clear_pending_stack_adjust ();
2913 do_pending_stack_adjust ();
2917 end_label = naked_return_label = gen_label_rtx ();
2918 expand_goto_internal (NULL_TREE, end_label, last_insn);
2921 /* Try to guess whether the value of return means error code. */
2922 static enum br_predictor
2923 return_prediction (rtx val)
2925 /* Different heuristics for pointers and scalars. */
2926 if (POINTER_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl))))
2928 /* NULL is usually not returned. */
2929 if (val == const0_rtx)
2930 return PRED_NULL_RETURN;
2934 /* Negative return values are often used to indicate
2936 if (GET_CODE (val) == CONST_INT
2937 && INTVAL (val) < 0)
2938 return PRED_NEGATIVE_RETURN;
2939 /* Constant return values are also usually erors,
2940 zero/one often mean booleans so exclude them from the
2942 if (CONSTANT_P (val)
2943 && (val != const0_rtx && val != const1_rtx))
2944 return PRED_CONST_RETURN;
2946 return PRED_NO_PREDICTION;
2950 /* If the current function returns values in the most significant part
2951 of a register, shift return value VAL appropriately. The mode of
2952 the function's return type is known not to be BLKmode. */
2955 shift_return_value (rtx val)
2959 type = TREE_TYPE (DECL_RESULT (current_function_decl));
2960 if (targetm.calls.return_in_msb (type))
2963 HOST_WIDE_INT shift;
2965 target = DECL_RTL (DECL_RESULT (current_function_decl));
2966 shift = (GET_MODE_BITSIZE (GET_MODE (target))
2967 - BITS_PER_UNIT * int_size_in_bytes (type));
2969 val = expand_binop (GET_MODE (target), ashl_optab,
2970 gen_lowpart (GET_MODE (target), val),
2971 GEN_INT (shift), target, 1, OPTAB_WIDEN);
2977 /* Generate RTL to return from the current function, with value VAL. */
2980 expand_value_return (rtx val)
2984 enum br_predictor pred;
2986 if (flag_guess_branch_prob
2987 && (pred = return_prediction (val)) != PRED_NO_PREDICTION)
2989 /* Emit information for branch prediction. */
2992 note = emit_note (NOTE_INSN_PREDICTION);
2994 NOTE_PREDICTION (note) = NOTE_PREDICT (pred, NOT_TAKEN);
2998 last_insn = get_last_insn ();
2999 return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
3001 /* Copy the value to the return location
3002 unless it's already there. */
3004 if (return_reg != val)
3006 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
3007 if (targetm.calls.promote_function_return (TREE_TYPE (current_function_decl)))
3009 int unsignedp = TREE_UNSIGNED (type);
3010 enum machine_mode old_mode
3011 = DECL_MODE (DECL_RESULT (current_function_decl));
3012 enum machine_mode mode
3013 = promote_mode (type, old_mode, &unsignedp, 1);
3015 if (mode != old_mode)
3016 val = convert_modes (mode, old_mode, val, unsignedp);
3018 if (GET_CODE (return_reg) == PARALLEL)
3019 emit_group_load (return_reg, val, type, int_size_in_bytes (type));
3021 emit_move_insn (return_reg, val);
3024 expand_null_return_1 (last_insn);
3027 /* Output a return with no value. If LAST_INSN is nonzero,
3028 pretend that the return takes place after LAST_INSN. */
3031 expand_null_return_1 (rtx last_insn)
3033 rtx end_label = cleanup_label ? cleanup_label : return_label;
3035 clear_pending_stack_adjust ();
3036 do_pending_stack_adjust ();
3040 end_label = return_label = gen_label_rtx ();
3041 expand_goto_internal (NULL_TREE, end_label, last_insn);
3044 /* Generate RTL to evaluate the expression RETVAL and return it
3045 from the current function. */
3048 expand_return (tree retval)
3050 /* If there are any cleanups to be performed, then they will
3051 be inserted following LAST_INSN. It is desirable
3052 that the last_insn, for such purposes, should be the
3053 last insn before computing the return value. Otherwise, cleanups
3054 which call functions can clobber the return value. */
3055 /* ??? rms: I think that is erroneous, because in C++ it would
3056 run destructors on variables that might be used in the subsequent
3057 computation of the return value. */
3063 /* If function wants no value, give it none. */
3064 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
3066 expand_expr (retval, NULL_RTX, VOIDmode, 0);
3068 expand_null_return ();
3072 if (retval == error_mark_node)
3074 /* Treat this like a return of no value from a function that
3076 expand_null_return ();
3079 else if (TREE_CODE (retval) == RESULT_DECL)
3080 retval_rhs = retval;
3081 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
3082 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
3083 retval_rhs = TREE_OPERAND (retval, 1);
3084 else if (VOID_TYPE_P (TREE_TYPE (retval)))
3085 /* Recognize tail-recursive call to void function. */
3086 retval_rhs = retval;
3088 retval_rhs = NULL_TREE;
3090 last_insn = get_last_insn ();
3092 /* Distribute return down conditional expr if either of the sides
3093 may involve tail recursion (see test below). This enhances the number
3094 of tail recursions we see. Don't do this always since it can produce
3095 sub-optimal code in some cases and we distribute assignments into
3096 conditional expressions when it would help. */
3098 if (optimize && retval_rhs != 0
3099 && frame_offset == 0
3100 && TREE_CODE (retval_rhs) == COND_EXPR
3101 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
3102 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
3104 rtx label = gen_label_rtx ();
3107 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
3108 start_cleanup_deferral ();
3109 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
3110 DECL_RESULT (current_function_decl),
3111 TREE_OPERAND (retval_rhs, 1));
3112 TREE_SIDE_EFFECTS (expr) = 1;
3113 expand_return (expr);
3116 expr = build (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (current_function_decl)),
3117 DECL_RESULT (current_function_decl),
3118 TREE_OPERAND (retval_rhs, 2));
3119 TREE_SIDE_EFFECTS (expr) = 1;
3120 expand_return (expr);
3121 end_cleanup_deferral ();
3125 result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
3127 /* If the result is an aggregate that is being returned in one (or more)
3128 registers, load the registers here. The compiler currently can't handle
3129 copying a BLKmode value into registers. We could put this code in a
3130 more general area (for use by everyone instead of just function
3131 call/return), but until this feature is generally usable it is kept here
3132 (and in expand_call). The value must go into a pseudo in case there
3133 are cleanups that will clobber the real return register. */
3136 && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
3137 && GET_CODE (result_rtl) == REG)
3140 unsigned HOST_WIDE_INT bitpos, xbitpos;
3141 unsigned HOST_WIDE_INT padding_correction = 0;
3142 unsigned HOST_WIDE_INT bytes
3143 = int_size_in_bytes (TREE_TYPE (retval_rhs));
3144 int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3145 unsigned int bitsize
3146 = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
3147 rtx *result_pseudos = alloca (sizeof (rtx) * n_regs);
3148 rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
3149 rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
3150 enum machine_mode tmpmode, result_reg_mode;
3154 expand_null_return ();
3158 /* If the structure doesn't take up a whole number of words, see
3159 whether the register value should be padded on the left or on
3160 the right. Set PADDING_CORRECTION to the number of padding
3161 bits needed on the left side.
3163 In most ABIs, the structure will be returned at the least end of
3164 the register, which translates to right padding on little-endian
3165 targets and left padding on big-endian targets. The opposite
3166 holds if the structure is returned at the most significant
3167 end of the register. */
3168 if (bytes % UNITS_PER_WORD != 0
3169 && (targetm.calls.return_in_msb (TREE_TYPE (retval_rhs))
3171 : BYTES_BIG_ENDIAN))
3172 padding_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
3175 /* Copy the structure BITSIZE bits at a time. */
3176 for (bitpos = 0, xbitpos = padding_correction;
3177 bitpos < bytes * BITS_PER_UNIT;
3178 bitpos += bitsize, xbitpos += bitsize)
3180 /* We need a new destination pseudo each time xbitpos is
3181 on a word boundary and when xbitpos == padding_correction
3182 (the first time through). */
3183 if (xbitpos % BITS_PER_WORD == 0
3184 || xbitpos == padding_correction)
3186 /* Generate an appropriate register. */
3187 dst = gen_reg_rtx (word_mode);
3188 result_pseudos[xbitpos / BITS_PER_WORD] = dst;
3190 /* Clear the destination before we move anything into it. */
3191 emit_move_insn (dst, CONST0_RTX (GET_MODE (dst)));
3194 /* We need a new source operand each time bitpos is on a word
3196 if (bitpos % BITS_PER_WORD == 0)
3197 src = operand_subword_force (result_val,
3198 bitpos / BITS_PER_WORD,
3201 /* Use bitpos for the source extraction (left justified) and
3202 xbitpos for the destination store (right justified). */
3203 store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
3204 extract_bit_field (src, bitsize,
3205 bitpos % BITS_PER_WORD, 1,
3206 NULL_RTX, word_mode, word_mode,
3211 tmpmode = GET_MODE (result_rtl);
3212 if (tmpmode == BLKmode)
3214 /* Find the smallest integer mode large enough to hold the
3215 entire structure and use that mode instead of BLKmode
3216 on the USE insn for the return register. */
3217 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3218 tmpmode != VOIDmode;
3219 tmpmode = GET_MODE_WIDER_MODE (tmpmode))
3220 /* Have we found a large enough mode? */
3221 if (GET_MODE_SIZE (tmpmode) >= bytes)
3224 /* No suitable mode found. */
3225 if (tmpmode == VOIDmode)
3228 PUT_MODE (result_rtl, tmpmode);
3231 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
3232 result_reg_mode = word_mode;
3234 result_reg_mode = tmpmode;
3235 result_reg = gen_reg_rtx (result_reg_mode);
3238 for (i = 0; i < n_regs; i++)
3239 emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
3242 if (tmpmode != result_reg_mode)
3243 result_reg = gen_lowpart (tmpmode, result_reg);
3245 expand_value_return (result_reg);
3247 else if (retval_rhs != 0
3248 && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3249 && (GET_CODE (result_rtl) == REG
3250 || (GET_CODE (result_rtl) == PARALLEL)))
3252 /* Calculate the return value into a temporary (usually a pseudo
3254 tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
3255 tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
3257 val = assign_temp (nt, 0, 0, 1);
3258 val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
3259 val = force_not_mem (val);
3261 /* Return the calculated value, doing cleanups first. */
3262 expand_value_return (shift_return_value (val));
3266 /* No cleanups or no hard reg used;
3267 calculate value into hard return reg. */
3268 expand_expr (retval, const0_rtx, VOIDmode, 0);
3270 expand_value_return (result_rtl);
3274 /* Attempt to optimize a potential tail recursion call into a goto.
3275 ARGUMENTS are the arguments to a CALL_EXPR; LAST_INSN indicates
3276 where to place the jump to the tail recursion label.
3278 Return TRUE if the call was optimized into a goto. */
3281 optimize_tail_recursion (tree arguments, rtx last_insn)
3283 /* Finish checking validity, and if valid emit code to set the
3284 argument variables for the new call. */
3285 if (tail_recursion_args (arguments, DECL_ARGUMENTS (current_function_decl)))
3287 if (tail_recursion_label == 0)
3289 tail_recursion_label = gen_label_rtx ();
3290 emit_label_after (tail_recursion_label,
3291 tail_recursion_reentry);
3294 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
3301 /* Emit code to alter this function's formal parms for a tail-recursive call.
3302 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
3303 FORMALS is the chain of decls of formals.
3304 Return 1 if this can be done;
3305 otherwise return 0 and do not emit any code. */
3308 tail_recursion_args (tree actuals, tree formals)
3310 tree a = actuals, f = formals;
3314 /* Check that number and types of actuals are compatible
3315 with the formals. This is not always true in valid C code.
3316 Also check that no formal needs to be addressable
3317 and that all formals are scalars. */
3319 /* Also count the args. */
3321 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
3323 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (a)))
3324 != TYPE_MAIN_VARIANT (TREE_TYPE (f)))
3326 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
3329 if (a != 0 || f != 0)
3332 /* Compute all the actuals. */
3334 argvec = alloca (i * sizeof (rtx));
3336 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3337 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
3339 /* Find which actual values refer to current values of previous formals.
3340 Copy each of them now, before any formal is changed. */
3342 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
3346 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
3347 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
3353 argvec[i] = copy_to_reg (argvec[i]);
3356 /* Insert the pre-call sequence point. This is important in cases
3357 where the actual values post-modify the formals: we want the final
3358 values of the formals to be the ones that we assign below, not the
3359 result of the post-modification. */
3362 /* Store the values of the actuals into the formals. */
3364 for (f = formals, a = actuals, i = 0; f;
3365 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
3367 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
3368 emit_move_insn (DECL_RTL (f), argvec[i]);
3371 rtx tmp = argvec[i];
3372 int unsignedp = TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a)));
3373 promote_mode(TREE_TYPE (TREE_VALUE (a)), GET_MODE (tmp),
3375 if (DECL_MODE (f) != GET_MODE (DECL_RTL (f)))
3377 tmp = gen_reg_rtx (DECL_MODE (f));
3378 convert_move (tmp, argvec[i], unsignedp);
3380 convert_move (DECL_RTL (f), tmp, unsignedp);
3388 /* Generate the RTL code for entering a binding contour.
3389 The variables are declared one by one, by calls to `expand_decl'.
3391 FLAGS is a bitwise or of the following flags:
3393 1 - Nonzero if this construct should be visible to
3396 2 - Nonzero if this contour does not require a
3397 NOTE_INSN_BLOCK_BEG note. Virtually all calls from
3398 language-independent code should set this flag because they
3399 will not create corresponding BLOCK nodes. (There should be
3400 a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
3401 and BLOCKs.) If this flag is set, MARK_ENDS should be zero
3402 when expand_end_bindings is called.
3404 If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
3405 optionally be supplied. If so, it becomes the NOTE_BLOCK for the
3409 expand_start_bindings_and_block (int flags, tree block)
3411 struct nesting *thisblock = ALLOC_NESTING ();
3413 int exit_flag = ((flags & 1) != 0);
3414 int block_flag = ((flags & 2) == 0);
3416 /* If a BLOCK is supplied, then the caller should be requesting a
3417 NOTE_INSN_BLOCK_BEG note. */
3418 if (!block_flag && block)
3421 /* Create a note to mark the beginning of the block. */
3424 note = emit_note (NOTE_INSN_BLOCK_BEG);
3425 NOTE_BLOCK (note) = block;
3428 note = emit_note (NOTE_INSN_DELETED);
3430 /* Make an entry on block_stack for the block we are entering. */
3432 thisblock->desc = BLOCK_NESTING;
3433 thisblock->next = block_stack;
3434 thisblock->all = nesting_stack;
3435 thisblock->depth = ++nesting_depth;
3436 thisblock->data.block.stack_level = 0;
3437 thisblock->data.block.cleanups = 0;
3438 thisblock->data.block.exception_region = 0;
3439 thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
3441 thisblock->data.block.conditional_code = 0;
3442 thisblock->data.block.last_unconditional_cleanup = note;
3443 /* When we insert instructions after the last unconditional cleanup,
3444 we don't adjust last_insn. That means that a later add_insn will
3445 clobber the instructions we've just added. The easiest way to
3446 fix this is to just insert another instruction here, so that the
3447 instructions inserted after the last unconditional cleanup are
3448 never the last instruction. */
3449 emit_note (NOTE_INSN_DELETED);
3452 && !(block_stack->data.block.cleanups == NULL_TREE
3453 && block_stack->data.block.outer_cleanups == NULL_TREE))
3454 thisblock->data.block.outer_cleanups
3455 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
3456 block_stack->data.block.outer_cleanups);
3458 thisblock->data.block.outer_cleanups = 0;
3459 thisblock->data.block.label_chain = 0;
3460 thisblock->data.block.innermost_stack_block = stack_block_stack;
3461 thisblock->data.block.first_insn = note;
3462 thisblock->data.block.block_start_count = ++current_block_start_count;
3463 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
3464 block_stack = thisblock;
3465 nesting_stack = thisblock;
3467 /* Make a new level for allocating stack slots. */
3471 /* Specify the scope of temporaries created by TARGET_EXPRs. Similar
3472 to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
3473 expand_expr are made. After we end the region, we know that all
3474 space for all temporaries that were created by TARGET_EXPRs will be
3475 destroyed and their space freed for reuse. */
3478 expand_start_target_temps (void)
3480 /* This is so that even if the result is preserved, the space
3481 allocated will be freed, as we know that it is no longer in use. */
3484 /* Start a new binding layer that will keep track of all cleanup
3485 actions to be performed. */
3486 expand_start_bindings (2);
3488 target_temp_slot_level = temp_slot_level;
3492 expand_end_target_temps (void)
3494 expand_end_bindings (NULL_TREE, 0, 0);
3496 /* This is so that even if the result is preserved, the space
3497 allocated will be freed, as we know that it is no longer in use. */
3501 /* Given a pointer to a BLOCK node return nonzero if (and only if) the node
3502 in question represents the outermost pair of curly braces (i.e. the "body
3503 block") of a function or method.
3505 For any BLOCK node representing a "body block" of a function or method, the
3506 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
3507 represents the outermost (function) scope for the function or method (i.e.
3508 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
3509 *that* node in turn will point to the relevant FUNCTION_DECL node. */
3512 is_body_block (tree stmt)
3514 if (lang_hooks.no_body_blocks)
3517 if (TREE_CODE (stmt) == BLOCK)
3519 tree parent = BLOCK_SUPERCONTEXT (stmt);
3521 if (parent && TREE_CODE (parent) == BLOCK)
3523 tree grandparent = BLOCK_SUPERCONTEXT (parent);
3525 if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
3533 /* True if we are currently emitting insns in an area of output code
3534 that is controlled by a conditional expression. This is used by
3535 the cleanup handling code to generate conditional cleanup actions. */
3538 conditional_context (void)
3540 return block_stack && block_stack->data.block.conditional_code;
3543 /* Return an opaque pointer to the current nesting level, so frontend code
3544 can check its own sanity. */
3547 current_nesting_level (void)
3549 return cfun ? block_stack : 0;
3552 /* Emit a handler label for a nonlocal goto handler.
3553 Also emit code to store the handler label in SLOT before BEFORE_INSN. */
3556 expand_nl_handler_label (rtx slot, rtx before_insn)
3559 rtx handler_label = gen_label_rtx ();
3561 /* Don't let cleanup_cfg delete the handler. */
3562 LABEL_PRESERVE_P (handler_label) = 1;
3565 emit_move_insn (slot, gen_rtx_LABEL_REF (Pmode, handler_label));
3566 insns = get_insns ();
3568 emit_insn_before (insns, before_insn);
3570 emit_label (handler_label);
3572 return handler_label;
3575 /* Emit code to restore vital registers at the beginning of a nonlocal goto
3578 expand_nl_goto_receiver (void)
3580 /* Clobber the FP when we get here, so we have to make sure it's
3581 marked as used by this function. */
3582 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
3584 /* Mark the static chain as clobbered here so life information
3585 doesn't get messed up for it. */
3586 emit_insn (gen_rtx_CLOBBER (VOIDmode, static_chain_rtx));
3588 #ifdef HAVE_nonlocal_goto
3589 if (! HAVE_nonlocal_goto)
3591 /* First adjust our frame pointer to its actual value. It was
3592 previously set to the start of the virtual area corresponding to
3593 the stacked variables when we branched here and now needs to be
3594 adjusted to the actual hardware fp value.
3596 Assignments are to virtual registers are converted by
3597 instantiate_virtual_regs into the corresponding assignment
3598 to the underlying register (fp in this case) that makes
3599 the original assignment true.
3600 So the following insn will actually be
3601 decrementing fp by STARTING_FRAME_OFFSET. */
3602 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
3604 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3605 if (fixed_regs[ARG_POINTER_REGNUM])
3607 #ifdef ELIMINABLE_REGS
3608 /* If the argument pointer can be eliminated in favor of the
3609 frame pointer, we don't need to restore it. We assume here
3610 that if such an elimination is present, it can always be used.
3611 This is the case on all known machines; if we don't make this
3612 assumption, we do unnecessary saving on many machines. */
3613 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
3616 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
3617 if (elim_regs[i].from == ARG_POINTER_REGNUM
3618 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
3621 if (i == ARRAY_SIZE (elim_regs))
3624 /* Now restore our arg pointer from the address at which it
3625 was saved in our stack frame. */
3626 emit_move_insn (virtual_incoming_args_rtx,
3627 copy_to_reg (get_arg_pointer_save_area (cfun)));
3632 #ifdef HAVE_nonlocal_goto_receiver
3633 if (HAVE_nonlocal_goto_receiver)
3634 emit_insn (gen_nonlocal_goto_receiver ());
3637 /* @@@ This is a kludge. Not all machine descriptions define a blockage
3638 insn, but we must not allow the code we just generated to be reordered
3639 by scheduling. Specifically, the update of the frame pointer must
3640 happen immediately, not later. So emit an ASM_INPUT to act as blockage
3642 emit_insn (gen_rtx_ASM_INPUT (VOIDmode, ""));
3645 /* Make handlers for nonlocal gotos taking place in the function calls in
3649 expand_nl_goto_receivers (struct nesting *thisblock)
3652 rtx afterward = gen_label_rtx ();
3657 /* Record the handler address in the stack slot for that purpose,
3658 during this block, saving and restoring the outer value. */
3659 if (thisblock->next != 0)
3660 for (slot = nonlocal_goto_handler_slots; slot; slot = XEXP (slot, 1))
3662 rtx save_receiver = gen_reg_rtx (Pmode);
3663 emit_move_insn (XEXP (slot, 0), save_receiver);
3666 emit_move_insn (save_receiver, XEXP (slot, 0));
3667 insns = get_insns ();
3669 emit_insn_before (insns, thisblock->data.block.first_insn);
3672 /* Jump around the handlers; they run only when specially invoked. */
3673 emit_jump (afterward);
3675 /* Make a separate handler for each label. */
3676 link = nonlocal_labels;
3677 slot = nonlocal_goto_handler_slots;
3678 label_list = NULL_RTX;
3679 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3680 /* Skip any labels we shouldn't be able to jump to from here,
3681 we generate one special handler for all of them below which just calls
3683 if (! DECL_TOO_LATE (TREE_VALUE (link)))
3686 lab = expand_nl_handler_label (XEXP (slot, 0),
3687 thisblock->data.block.first_insn);
3688 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3690 expand_nl_goto_receiver ();
3692 /* Jump to the "real" nonlocal label. */
3693 expand_goto (TREE_VALUE (link));
3696 /* A second pass over all nonlocal labels; this time we handle those
3697 we should not be able to jump to at this point. */
3698 link = nonlocal_labels;
3699 slot = nonlocal_goto_handler_slots;
3701 for (; link; link = TREE_CHAIN (link), slot = XEXP (slot, 1))
3702 if (DECL_TOO_LATE (TREE_VALUE (link)))
3705 lab = expand_nl_handler_label (XEXP (slot, 0),
3706 thisblock->data.block.first_insn);
3707 label_list = gen_rtx_EXPR_LIST (VOIDmode, lab, label_list);
3713 expand_nl_goto_receiver ();
3714 expand_builtin_trap ();
3717 nonlocal_goto_handler_labels = label_list;
3718 emit_label (afterward);
3721 /* Warn about any unused VARS (which may contain nodes other than
3722 VAR_DECLs, but such nodes are ignored). The nodes are connected
3723 via the TREE_CHAIN field. */
3726 warn_about_unused_variables (tree vars)
3730 if (warn_unused_variable)
3731 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3732 if (TREE_CODE (decl) == VAR_DECL
3733 && ! TREE_USED (decl)
3734 && ! DECL_IN_SYSTEM_HEADER (decl)
3735 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
3736 warning ("%Junused variable '%D'", decl, decl);
3739 /* Generate RTL code to terminate a binding contour.
3741 VARS is the chain of VAR_DECL nodes for the variables bound in this
3742 contour. There may actually be other nodes in this chain, but any
3743 nodes other than VAR_DECLS are ignored.
3745 MARK_ENDS is nonzero if we should put a note at the beginning
3746 and end of this binding contour.
3748 DONT_JUMP_IN is positive if it is not valid to jump into this contour,
3749 zero if we can jump into this contour only if it does not have a saved
3750 stack level, and negative if we are not to check for invalid use of
3751 labels (because the front end does that). */
3754 expand_end_bindings (tree vars, int mark_ends, int dont_jump_in)
3756 struct nesting *thisblock = block_stack;
3758 /* If any of the variables in this scope were not used, warn the
3760 warn_about_unused_variables (vars);
3762 if (thisblock->exit_label)
3764 do_pending_stack_adjust ();
3765 emit_label (thisblock->exit_label);
3768 /* If necessary, make handlers for nonlocal gotos taking
3769 place in the function calls in this block. */
3770 if (function_call_count != 0 && nonlocal_labels
3771 /* Make handler for outermost block
3772 if there were any nonlocal gotos to this function. */
3773 && (thisblock->next == 0 ? current_function_has_nonlocal_label
3774 /* Make handler for inner block if it has something
3775 special to do when you jump out of it. */
3776 : (thisblock->data.block.cleanups != 0
3777 || thisblock->data.block.stack_level != 0)))
3778 expand_nl_goto_receivers (thisblock);
3780 /* Don't allow jumping into a block that has a stack level.
3781 Cleanups are allowed, though. */
3782 if (dont_jump_in > 0
3783 || (dont_jump_in == 0 && thisblock->data.block.stack_level != 0))
3785 struct label_chain *chain;
3787 /* Any labels in this block are no longer valid to go to.
3788 Mark them to cause an error message. */
3789 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
3791 DECL_TOO_LATE (chain->label) = 1;
3792 /* If any goto without a fixup came to this label,
3793 that must be an error, because gotos without fixups
3794 come from outside all saved stack-levels. */
3795 if (TREE_ADDRESSABLE (chain->label))
3796 error ("%Jlabel '%D' used before containing binding contour",
3797 chain->label, chain->label);
3801 /* Restore stack level in effect before the block
3802 (only if variable-size objects allocated). */
3803 /* Perform any cleanups associated with the block. */
3805 if (thisblock->data.block.stack_level != 0
3806 || thisblock->data.block.cleanups != 0)
3811 /* Don't let cleanups affect ({...}) constructs. */
3812 int old_expr_stmts_for_value = expr_stmts_for_value;
3813 rtx old_last_expr_value = last_expr_value;
3814 rtx old_last_expr_alt_rtl = last_expr_alt_rtl;
3815 tree old_last_expr_type = last_expr_type;
3816 expr_stmts_for_value = 0;
3818 /* Only clean up here if this point can actually be reached. */
3819 insn = get_last_insn ();
3820 if (GET_CODE (insn) == NOTE)
3821 insn = prev_nonnote_insn (insn);
3822 reachable = (! insn || GET_CODE (insn) != BARRIER);
3824 /* Do the cleanups. */
3825 expand_cleanups (thisblock->data.block.cleanups, 0, reachable);
3827 do_pending_stack_adjust ();
3829 expr_stmts_for_value = old_expr_stmts_for_value;
3830 last_expr_value = old_last_expr_value;
3831 last_expr_alt_rtl = old_last_expr_alt_rtl;
3832 last_expr_type = old_last_expr_type;
3834 /* Restore the stack level. */
3836 if (reachable && thisblock->data.block.stack_level != 0)
3838 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3839 thisblock->data.block.stack_level, NULL_RTX);
3840 if (nonlocal_goto_handler_slots != 0)
3841 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
3845 /* Any gotos out of this block must also do these things.
3846 Also report any gotos with fixups that came to labels in this
3848 fixup_gotos (thisblock,
3849 thisblock->data.block.stack_level,
3850 thisblock->data.block.cleanups,
3851 thisblock->data.block.first_insn,
3855 /* Mark the beginning and end of the scope if requested.
3856 We do this now, after running cleanups on the variables
3857 just going out of scope, so they are in scope for their cleanups. */
3861 rtx note = emit_note (NOTE_INSN_BLOCK_END);
3862 NOTE_BLOCK (note) = NOTE_BLOCK (thisblock->data.block.first_insn);
3865 /* Get rid of the beginning-mark if we don't make an end-mark. */
3866 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3868 /* Restore the temporary level of TARGET_EXPRs. */
3869 target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
3871 /* Restore block_stack level for containing block. */
3873 stack_block_stack = thisblock->data.block.innermost_stack_block;
3874 POPSTACK (block_stack);
3876 /* Pop the stack slot nesting and free any slots at this level. */
3880 /* Generate code to save the stack pointer at the start of the current block
3881 and set up to restore it on exit. */
3884 save_stack_pointer (void)
3886 struct nesting *thisblock = block_stack;
3888 if (thisblock->data.block.stack_level == 0)
3890 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3891 &thisblock->data.block.stack_level,
3892 thisblock->data.block.first_insn);
3893 stack_block_stack = thisblock;
3897 /* Generate RTL for the automatic variable declaration DECL.
3898 (Other kinds of declarations are simply ignored if seen here.) */
3901 expand_decl (tree decl)
3905 type = TREE_TYPE (decl);
3907 /* For a CONST_DECL, set mode, alignment, and sizes from those of the
3908 type in case this node is used in a reference. */
3909 if (TREE_CODE (decl) == CONST_DECL)
3911 DECL_MODE (decl) = TYPE_MODE (type);
3912 DECL_ALIGN (decl) = TYPE_ALIGN (type);
3913 DECL_SIZE (decl) = TYPE_SIZE (type);
3914 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
3918 /* Otherwise, only automatic variables need any expansion done. Static and
3919 external variables, and external functions, will be handled by
3920 `assemble_variable' (called from finish_decl). TYPE_DECL requires
3921 nothing. PARM_DECLs are handled in `assign_parms'. */
3922 if (TREE_CODE (decl) != VAR_DECL)
3925 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3928 /* Create the RTL representation for the variable. */
3930 if (type == error_mark_node)
3931 SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
3933 else if (DECL_SIZE (decl) == 0)
3934 /* Variable with incomplete type. */
3937 if (DECL_INITIAL (decl) == 0)
3938 /* Error message was already done; now avoid a crash. */
3939 x = gen_rtx_MEM (BLKmode, const0_rtx);
3941 /* An initializer is going to decide the size of this array.
3942 Until we know the size, represent its address with a reg. */
3943 x = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
3945 set_mem_attributes (x, decl, 1);
3946 SET_DECL_RTL (decl, x);
3948 else if (DECL_MODE (decl) != BLKmode
3949 /* If -ffloat-store, don't put explicit float vars
3951 && !(flag_float_store
3952 && TREE_CODE (type) == REAL_TYPE)
3953 && ! TREE_THIS_VOLATILE (decl)
3954 && ! DECL_NONLOCAL (decl)
3955 && (DECL_REGISTER (decl) || DECL_ARTIFICIAL (decl) || optimize))
3957 /* Automatic variable that can go in a register. */
3958 int unsignedp = TREE_UNSIGNED (type);
3959 enum machine_mode reg_mode
3960 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3962 SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
3964 if (!DECL_ARTIFICIAL (decl))
3965 mark_user_reg (DECL_RTL (decl));
3967 if (POINTER_TYPE_P (type))
3968 mark_reg_pointer (DECL_RTL (decl),
3969 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
3971 maybe_set_unchanging (DECL_RTL (decl), decl);
3973 /* If something wants our address, try to use ADDRESSOF. */
3974 if (TREE_ADDRESSABLE (decl))
3975 put_var_into_stack (decl, /*rescan=*/false);
3978 else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
3979 && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
3980 && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
3981 STACK_CHECK_MAX_VAR_SIZE)))
3983 /* Variable of fixed size that goes on the stack. */
3988 /* If we previously made RTL for this decl, it must be an array
3989 whose size was determined by the initializer.
3990 The old address was a register; set that register now
3991 to the proper address. */
3992 if (DECL_RTL_SET_P (decl))
3994 if (GET_CODE (DECL_RTL (decl)) != MEM
3995 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3997 oldaddr = XEXP (DECL_RTL (decl), 0);
4000 /* Set alignment we actually gave this decl. */
4001 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
4002 : GET_MODE_BITSIZE (DECL_MODE (decl)));
4003 DECL_USER_ALIGN (decl) = 0;
4005 x = assign_temp (decl, 1, 1, 1);
4006 set_mem_attributes (x, decl, 1);
4007 SET_DECL_RTL (decl, x);
4011 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
4012 if (addr != oldaddr)
4013 emit_move_insn (oldaddr, addr);
4017 /* Dynamic-size object: must push space on the stack. */
4019 rtx address, size, x;
4021 /* Record the stack pointer on entry to block, if have
4022 not already done so. */
4023 do_pending_stack_adjust ();
4024 save_stack_pointer ();
4026 /* In function-at-a-time mode, variable_size doesn't expand this,
4028 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
4029 expand_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4030 const0_rtx, VOIDmode, 0);
4032 /* Compute the variable's size, in bytes. */
4033 size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
4036 /* Allocate space on the stack for the variable. Note that
4037 DECL_ALIGN says how the variable is to be aligned and we
4038 cannot use it to conclude anything about the alignment of
4040 address = allocate_dynamic_stack_space (size, NULL_RTX,
4041 TYPE_ALIGN (TREE_TYPE (decl)));
4043 /* Reference the variable indirect through that rtx. */
4044 x = gen_rtx_MEM (DECL_MODE (decl), address);
4045 set_mem_attributes (x, decl, 1);
4046 SET_DECL_RTL (decl, x);
4049 /* Indicate the alignment we actually gave this variable. */
4050 #ifdef STACK_BOUNDARY
4051 DECL_ALIGN (decl) = STACK_BOUNDARY;
4053 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
4055 DECL_USER_ALIGN (decl) = 0;
4059 /* Emit code to perform the initialization of a declaration DECL. */
4062 expand_decl_init (tree decl)
4064 int was_used = TREE_USED (decl);
4066 /* If this is a CONST_DECL, we don't have to generate any code. Likewise
4067 for static decls. */
4068 if (TREE_CODE (decl) == CONST_DECL
4069 || TREE_STATIC (decl))
4072 /* Compute and store the initial value now. */
4076 if (DECL_INITIAL (decl) == error_mark_node)
4078 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
4080 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
4081 || code == POINTER_TYPE || code == REFERENCE_TYPE)
4082 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
4086 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
4088 emit_line_note (DECL_SOURCE_LOCATION (decl));
4089 expand_assignment (decl, DECL_INITIAL (decl), 0);
4093 /* Don't let the initialization count as "using" the variable. */
4094 TREE_USED (decl) = was_used;
4096 /* Free any temporaries we made while initializing the decl. */
4097 preserve_temp_slots (NULL_RTX);
4102 /* CLEANUP is an expression to be executed at exit from this binding contour;
4103 for example, in C++, it might call the destructor for this variable.
4105 We wrap CLEANUP in an UNSAVE_EXPR node, so that we can expand the
4106 CLEANUP multiple times, and have the correct semantics. This
4107 happens in exception handling, for gotos, returns, breaks that
4108 leave the current scope.
4110 If CLEANUP is nonzero and DECL is zero, we record a cleanup
4111 that is not associated with any particular variable. */
4114 expand_decl_cleanup (tree decl, tree cleanup)
4116 struct nesting *thisblock;
4118 /* Error if we are not in any block. */
4119 if (cfun == 0 || block_stack == 0)
4122 thisblock = block_stack;
4124 /* Record the cleanup if there is one. */
4130 tree *cleanups = &thisblock->data.block.cleanups;
4131 int cond_context = conditional_context ();
4135 rtx flag = gen_reg_rtx (word_mode);
4140 emit_move_insn (flag, const0_rtx);
4141 set_flag_0 = get_insns ();
4144 thisblock->data.block.last_unconditional_cleanup
4145 = emit_insn_after (set_flag_0,
4146 thisblock->data.block.last_unconditional_cleanup);
4148 emit_move_insn (flag, const1_rtx);
4150 cond = build_decl (VAR_DECL, NULL_TREE,
4151 (*lang_hooks.types.type_for_mode) (word_mode, 1));
4152 SET_DECL_RTL (cond, flag);
4154 /* Conditionalize the cleanup. */
4155 cleanup = build (COND_EXPR, void_type_node,
4156 (*lang_hooks.truthvalue_conversion) (cond),
4157 cleanup, integer_zero_node);
4158 cleanup = fold (cleanup);
4160 cleanups = &thisblock->data.block.cleanups;
4163 cleanup = unsave_expr (cleanup);
4165 t = *cleanups = tree_cons (decl, cleanup, *cleanups);
4168 /* If this block has a cleanup, it belongs in stack_block_stack. */
4169 stack_block_stack = thisblock;
4176 if (! using_eh_for_cleanups_p)
4177 TREE_ADDRESSABLE (t) = 1;
4179 expand_eh_region_start ();
4186 thisblock->data.block.last_unconditional_cleanup
4187 = emit_insn_after (seq,
4188 thisblock->data.block.last_unconditional_cleanup);
4192 thisblock->data.block.last_unconditional_cleanup
4194 /* When we insert instructions after the last unconditional cleanup,
4195 we don't adjust last_insn. That means that a later add_insn will
4196 clobber the instructions we've just added. The easiest way to
4197 fix this is to just insert another instruction here, so that the
4198 instructions inserted after the last unconditional cleanup are
4199 never the last instruction. */
4200 emit_note (NOTE_INSN_DELETED);
4206 /* Like expand_decl_cleanup, but maybe only run the cleanup if an exception
4210 expand_decl_cleanup_eh (tree decl, tree cleanup, int eh_only)
4212 int ret = expand_decl_cleanup (decl, cleanup);
4215 tree node = block_stack->data.block.cleanups;
4216 CLEANUP_EH_ONLY (node) = eh_only;
4221 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
4222 DECL_ELTS is the list of elements that belong to DECL's type.
4223 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
4226 expand_anon_union_decl (tree decl, tree cleanup, tree decl_elts)
4228 struct nesting *thisblock = cfun == 0 ? 0 : block_stack;