(CONST_OK_FOR_LETTER_P): Only allow constants valid when inverted for 'K'.
[official-gcc.git] / gcc / stmt.c
blob704dc65fafaccca48fe4dac52f759d26bc42b3c3
1 /* Expands front end tree to back end RTL for GNU C-Compiler
2 Copyright (C) 1987, 88, 89, 92, 93, 1994 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* This file handles the generation of rtl code from tree structure
22 above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
23 It also creates the rtl expressions for parameters and auto variables
24 and has full responsibility for allocating stack slots.
26 The functions whose names start with `expand_' are called by the
27 parser to generate RTL instructions for various kinds of constructs.
29 Some control and binding constructs require calling several such
30 functions at different times. For example, a simple if-then
31 is expanded by calling `expand_start_cond' (with the condition-expression
32 as argument) before parsing the then-clause and calling `expand_end_cond'
33 after parsing the then-clause. */
35 #include "config.h"
37 #include <stdio.h>
38 #include <ctype.h>
40 #include "rtl.h"
41 #include "tree.h"
42 #include "flags.h"
43 #include "function.h"
44 #include "insn-flags.h"
45 #include "insn-config.h"
46 #include "insn-codes.h"
47 #include "expr.h"
48 #include "hard-reg-set.h"
49 #include "obstack.h"
50 #include "loop.h"
51 #include "recog.h"
52 #include "machmode.h"
54 #include "bytecode.h"
55 #include "bc-typecd.h"
56 #include "bc-opcode.h"
57 #include "bc-optab.h"
58 #include "bc-emit.h"
60 #define obstack_chunk_alloc xmalloc
61 #define obstack_chunk_free free
62 struct obstack stmt_obstack;
64 /* Filename and line number of last line-number note,
65 whether we actually emitted it or not. */
66 char *emit_filename;
67 int emit_lineno;
69 /* Nonzero if within a ({...}) grouping, in which case we must
70 always compute a value for each expr-stmt in case it is the last one. */
72 int expr_stmts_for_value;
74 /* Each time we expand an expression-statement,
75 record the expr's type and its RTL value here. */
77 static tree last_expr_type;
78 static rtx last_expr_value;
80 /* Each time we expand the end of a binding contour (in `expand_end_bindings')
81 and we emit a new NOTE_INSN_BLOCK_END note, we save a pointer to it here.
82 This is used by the `remember_end_note' function to record the endpoint
83 of each generated block in its associated BLOCK node. */
85 static rtx last_block_end_note;
87 /* Number of binding contours started so far in this function. */
89 int block_start_count;
91 /* Nonzero if function being compiled needs to
92 return the address of where it has put a structure value. */
94 extern int current_function_returns_pcc_struct;
96 /* Label that will go on parm cleanup code, if any.
97 Jumping to this label runs cleanup code for parameters, if
98 such code must be run. Following this code is the logical return label. */
100 extern rtx cleanup_label;
102 /* Label that will go on function epilogue.
103 Jumping to this label serves as a "return" instruction
104 on machines which require execution of the epilogue on all returns. */
106 extern rtx return_label;
108 /* List (chain of EXPR_LISTs) of pseudo-regs of SAVE_EXPRs.
109 So we can mark them all live at the end of the function, if nonopt. */
110 extern rtx save_expr_regs;
112 /* Offset to end of allocated area of stack frame.
113 If stack grows down, this is the address of the last stack slot allocated.
114 If stack grows up, this is the address for the next slot. */
115 extern int frame_offset;
117 /* Label to jump back to for tail recursion, or 0 if we have
118 not yet needed one for this function. */
119 extern rtx tail_recursion_label;
121 /* Place after which to insert the tail_recursion_label if we need one. */
122 extern rtx tail_recursion_reentry;
124 /* Location at which to save the argument pointer if it will need to be
125 referenced. There are two cases where this is done: if nonlocal gotos
126 exist, or if vars whose is an offset from the argument pointer will be
127 needed by inner routines. */
129 extern rtx arg_pointer_save_area;
131 /* Chain of all RTL_EXPRs that have insns in them. */
132 extern tree rtl_expr_chain;
134 #if 0 /* Turned off because 0 seems to work just as well. */
135 /* Cleanup lists are required for binding levels regardless of whether
136 that binding level has cleanups or not. This node serves as the
137 cleanup list whenever an empty list is required. */
138 static tree empty_cleanup_list;
139 #endif
141 /* Functions and data structures for expanding case statements. */
143 /* Case label structure, used to hold info on labels within case
144 statements. We handle "range" labels; for a single-value label
145 as in C, the high and low limits are the same.
147 A chain of case nodes is initially maintained via the RIGHT fields
148 in the nodes. Nodes with higher case values are later in the list.
150 Switch statements can be output in one of two forms. A branch table
151 is used if there are more than a few labels and the labels are dense
152 within the range between the smallest and largest case value. If a
153 branch table is used, no further manipulations are done with the case
154 node chain.
156 The alternative to the use of a branch table is to generate a series
157 of compare and jump insns. When that is done, we use the LEFT, RIGHT,
158 and PARENT fields to hold a binary tree. Initially the tree is
159 totally unbalanced, with everything on the right. We balance the tree
160 with nodes on the left having lower case values than the parent
161 and nodes on the right having higher values. We then output the tree
162 in order. */
164 struct case_node
166 struct case_node *left; /* Left son in binary tree */
167 struct case_node *right; /* Right son in binary tree; also node chain */
168 struct case_node *parent; /* Parent of node in binary tree */
169 tree low; /* Lowest index value for this label */
170 tree high; /* Highest index value for this label */
171 tree code_label; /* Label to jump to when node matches */
174 typedef struct case_node case_node;
175 typedef struct case_node *case_node_ptr;
177 /* These are used by estimate_case_costs and balance_case_nodes. */
179 /* This must be a signed type, and non-ANSI compilers lack signed char. */
180 static short *cost_table;
181 static int use_cost_table;
183 /* Stack of control and binding constructs we are currently inside.
185 These constructs begin when you call `expand_start_WHATEVER'
186 and end when you call `expand_end_WHATEVER'. This stack records
187 info about how the construct began that tells the end-function
188 what to do. It also may provide information about the construct
189 to alter the behavior of other constructs within the body.
190 For example, they may affect the behavior of C `break' and `continue'.
192 Each construct gets one `struct nesting' object.
193 All of these objects are chained through the `all' field.
194 `nesting_stack' points to the first object (innermost construct).
195 The position of an entry on `nesting_stack' is in its `depth' field.
197 Each type of construct has its own individual stack.
198 For example, loops have `loop_stack'. Each object points to the
199 next object of the same type through the `next' field.
201 Some constructs are visible to `break' exit-statements and others
202 are not. Which constructs are visible depends on the language.
203 Therefore, the data structure allows each construct to be visible
204 or not, according to the args given when the construct is started.
205 The construct is visible if the `exit_label' field is non-null.
206 In that case, the value should be a CODE_LABEL rtx. */
208 struct nesting
210 struct nesting *all;
211 struct nesting *next;
212 int depth;
213 rtx exit_label;
214 union
216 /* For conds (if-then and if-then-else statements). */
217 struct
219 /* Label for the end of the if construct.
220 There is none if EXITFLAG was not set
221 and no `else' has been seen yet. */
222 rtx endif_label;
223 /* Label for the end of this alternative.
224 This may be the end of the if or the next else/elseif. */
225 rtx next_label;
226 } cond;
227 /* For loops. */
228 struct
230 /* Label at the top of the loop; place to loop back to. */
231 rtx start_label;
232 /* Label at the end of the whole construct. */
233 rtx end_label;
234 /* Label for `continue' statement to jump to;
235 this is in front of the stepper of the loop. */
236 rtx continue_label;
237 } loop;
238 /* For variable binding contours. */
239 struct
241 /* Sequence number of this binding contour within the function,
242 in order of entry. */
243 int block_start_count;
244 /* Nonzero => value to restore stack to on exit. Complemented by
245 bc_stack_level (see below) when generating bytecodes. */
246 rtx stack_level;
247 /* The NOTE that starts this contour.
248 Used by expand_goto to check whether the destination
249 is within each contour or not. */
250 rtx first_insn;
251 /* Innermost containing binding contour that has a stack level. */
252 struct nesting *innermost_stack_block;
253 /* List of cleanups to be run on exit from this contour.
254 This is a list of expressions to be evaluated.
255 The TREE_PURPOSE of each link is the ..._DECL node
256 which the cleanup pertains to. */
257 tree cleanups;
258 /* List of cleanup-lists of blocks containing this block,
259 as they were at the locus where this block appears.
260 There is an element for each containing block,
261 ordered innermost containing block first.
262 The tail of this list can be 0 (was empty_cleanup_list),
263 if all remaining elements would be empty lists.
264 The element's TREE_VALUE is the cleanup-list of that block,
265 which may be null. */
266 tree outer_cleanups;
267 /* Chain of labels defined inside this binding contour.
268 For contours that have stack levels or cleanups. */
269 struct label_chain *label_chain;
270 /* Number of function calls seen, as of start of this block. */
271 int function_call_count;
272 /* Bytecode specific: stack level to restore stack to on exit. */
273 int bc_stack_level;
274 } block;
275 /* For switch (C) or case (Pascal) statements,
276 and also for dummies (see `expand_start_case_dummy'). */
277 struct
279 /* The insn after which the case dispatch should finally
280 be emitted. Zero for a dummy. */
281 rtx start;
282 /* For bytecodes, the case table is in-lined right in the code.
283 A label is needed for skipping over this block. It is only
284 used when generating bytecodes. */
285 rtx skip_label;
286 /* A list of case labels, kept in ascending order by value
287 as the list is built.
288 During expand_end_case, this list may be rearranged into a
289 nearly balanced binary tree. */
290 struct case_node *case_list;
291 /* Label to jump to if no case matches. */
292 tree default_label;
293 /* The expression to be dispatched on. */
294 tree index_expr;
295 /* Type that INDEX_EXPR should be converted to. */
296 tree nominal_type;
297 /* Number of range exprs in case statement. */
298 int num_ranges;
299 /* Name of this kind of statement, for warnings. */
300 char *printname;
301 /* Nonzero if a case label has been seen in this case stmt. */
302 char seenlabel;
303 } case_stmt;
304 } data;
307 /* Chain of all pending binding contours. */
308 struct nesting *block_stack;
310 /* If any new stacks are added here, add them to POPSTACKS too. */
312 /* Chain of all pending binding contours that restore stack levels
313 or have cleanups. */
314 struct nesting *stack_block_stack;
316 /* Chain of all pending conditional statements. */
317 struct nesting *cond_stack;
319 /* Chain of all pending loops. */
320 struct nesting *loop_stack;
322 /* Chain of all pending case or switch statements. */
323 struct nesting *case_stack;
325 /* Separate chain including all of the above,
326 chained through the `all' field. */
327 struct nesting *nesting_stack;
329 /* Number of entries on nesting_stack now. */
330 int nesting_depth;
332 /* Allocate and return a new `struct nesting'. */
334 #define ALLOC_NESTING() \
335 (struct nesting *) obstack_alloc (&stmt_obstack, sizeof (struct nesting))
337 /* Pop the nesting stack element by element until we pop off
338 the element which is at the top of STACK.
339 Update all the other stacks, popping off elements from them
340 as we pop them from nesting_stack. */
342 #define POPSTACK(STACK) \
343 do { struct nesting *target = STACK; \
344 struct nesting *this; \
345 do { this = nesting_stack; \
346 if (loop_stack == this) \
347 loop_stack = loop_stack->next; \
348 if (cond_stack == this) \
349 cond_stack = cond_stack->next; \
350 if (block_stack == this) \
351 block_stack = block_stack->next; \
352 if (stack_block_stack == this) \
353 stack_block_stack = stack_block_stack->next; \
354 if (case_stack == this) \
355 case_stack = case_stack->next; \
356 nesting_depth = nesting_stack->depth - 1; \
357 nesting_stack = this->all; \
358 obstack_free (&stmt_obstack, this); } \
359 while (this != target); } while (0)
361 /* In some cases it is impossible to generate code for a forward goto
362 until the label definition is seen. This happens when it may be necessary
363 for the goto to reset the stack pointer: we don't yet know how to do that.
364 So expand_goto puts an entry on this fixup list.
365 Each time a binding contour that resets the stack is exited,
366 we check each fixup.
367 If the target label has now been defined, we can insert the proper code. */
369 struct goto_fixup
371 /* Points to following fixup. */
372 struct goto_fixup *next;
373 /* Points to the insn before the jump insn.
374 If more code must be inserted, it goes after this insn. */
375 rtx before_jump;
376 /* The LABEL_DECL that this jump is jumping to, or 0
377 for break, continue or return. */
378 tree target;
379 /* The BLOCK for the place where this goto was found. */
380 tree context;
381 /* The CODE_LABEL rtx that this is jumping to. */
382 rtx target_rtl;
383 /* Number of binding contours started in current function
384 before the label reference. */
385 int block_start_count;
386 /* The outermost stack level that should be restored for this jump.
387 Each time a binding contour that resets the stack is exited,
388 if the target label is *not* yet defined, this slot is updated. */
389 rtx stack_level;
390 /* List of lists of cleanup expressions to be run by this goto.
391 There is one element for each block that this goto is within.
392 The tail of this list can be 0 (was empty_cleanup_list),
393 if all remaining elements would be empty.
394 The TREE_VALUE contains the cleanup list of that block as of the
395 time this goto was seen.
396 The TREE_ADDRESSABLE flag is 1 for a block that has been exited. */
397 tree cleanup_list_list;
399 /* Bytecode specific members follow */
401 /* The label that this jump is jumping to, or 0 for break, continue
402 or return. */
403 struct bc_label *bc_target;
405 /* The label we use for the fixup patch */
406 struct bc_label *label;
408 /* True (non-0) if fixup has been handled */
409 int bc_handled:1;
411 /* Like stack_level above, except refers to the interpreter stack */
412 int bc_stack_level;
415 static struct goto_fixup *goto_fixup_chain;
417 /* Within any binding contour that must restore a stack level,
418 all labels are recorded with a chain of these structures. */
420 struct label_chain
422 /* Points to following fixup. */
423 struct label_chain *next;
424 tree label;
426 static void expand_goto_internal PROTO((tree, rtx, rtx));
427 static void bc_expand_goto_internal PROTO((enum bytecode_opcode,
428 struct bc_label *, tree));
429 static int expand_fixup PROTO((tree, rtx, rtx));
430 static void bc_expand_fixup PROTO((enum bytecode_opcode,
431 struct bc_label *, int));
432 static void fixup_gotos PROTO((struct nesting *, rtx, tree,
433 rtx, int));
434 static void bc_fixup_gotos PROTO((struct nesting *, int, tree,
435 rtx, int));
436 static int warn_if_unused_value PROTO((tree));
437 static void bc_expand_start_cond PROTO((tree, int));
438 static void bc_expand_end_cond PROTO((void));
439 static void bc_expand_start_else PROTO((void));
440 static void bc_expand_end_loop PROTO((void));
441 static void bc_expand_end_bindings PROTO((tree, int, int));
442 static void bc_expand_decl PROTO((tree, tree));
443 static void bc_expand_variable_local_init PROTO((tree));
444 static void bc_expand_decl_init PROTO((tree));
445 static void expand_null_return_1 PROTO((rtx, int));
446 static int tail_recursion_args PROTO((tree, tree));
447 static void expand_cleanups PROTO((tree, tree));
448 static void bc_expand_start_case PROTO((struct nesting *, tree,
449 tree, char *));
450 static int bc_pushcase PROTO((tree, tree));
451 static void bc_check_for_full_enumeration_handling PROTO((tree));
452 static void bc_expand_end_case PROTO((tree));
453 static void do_jump_if_equal PROTO((rtx, rtx, rtx, int));
454 static int estimate_case_costs PROTO((case_node_ptr));
455 static void group_case_nodes PROTO((case_node_ptr));
456 static void balance_case_nodes PROTO((case_node_ptr *,
457 case_node_ptr));
458 static int node_has_low_bound PROTO((case_node_ptr, tree));
459 static int node_has_high_bound PROTO((case_node_ptr, tree));
460 static int node_is_bounded PROTO((case_node_ptr, tree));
461 static void emit_jump_if_reachable PROTO((rtx));
462 static void emit_case_nodes PROTO((rtx, case_node_ptr, rtx, tree));
464 int bc_expand_exit_loop_if_false ();
465 void bc_expand_start_cond ();
466 void bc_expand_end_cond ();
467 void bc_expand_start_else ();
468 void bc_expand_end_bindings ();
469 void bc_expand_start_case ();
470 void bc_check_for_full_enumeration_handling ();
471 void bc_expand_end_case ();
472 void bc_expand_decl ();
474 extern rtx bc_allocate_local ();
475 extern rtx bc_allocate_variable_array ();
477 void
478 init_stmt ()
480 gcc_obstack_init (&stmt_obstack);
481 #if 0
482 empty_cleanup_list = build_tree_list (NULL_TREE, NULL_TREE);
483 #endif
486 void
487 init_stmt_for_function ()
489 /* We are not currently within any block, conditional, loop or case. */
490 block_stack = 0;
491 stack_block_stack = 0;
492 loop_stack = 0;
493 case_stack = 0;
494 cond_stack = 0;
495 nesting_stack = 0;
496 nesting_depth = 0;
498 block_start_count = 0;
500 /* No gotos have been expanded yet. */
501 goto_fixup_chain = 0;
503 /* We are not processing a ({...}) grouping. */
504 expr_stmts_for_value = 0;
505 last_expr_type = 0;
508 void
509 save_stmt_status (p)
510 struct function *p;
512 p->block_stack = block_stack;
513 p->stack_block_stack = stack_block_stack;
514 p->cond_stack = cond_stack;
515 p->loop_stack = loop_stack;
516 p->case_stack = case_stack;
517 p->nesting_stack = nesting_stack;
518 p->nesting_depth = nesting_depth;
519 p->block_start_count = block_start_count;
520 p->last_expr_type = last_expr_type;
521 p->last_expr_value = last_expr_value;
522 p->expr_stmts_for_value = expr_stmts_for_value;
523 p->emit_filename = emit_filename;
524 p->emit_lineno = emit_lineno;
525 p->goto_fixup_chain = goto_fixup_chain;
528 void
529 restore_stmt_status (p)
530 struct function *p;
532 block_stack = p->block_stack;
533 stack_block_stack = p->stack_block_stack;
534 cond_stack = p->cond_stack;
535 loop_stack = p->loop_stack;
536 case_stack = p->case_stack;
537 nesting_stack = p->nesting_stack;
538 nesting_depth = p->nesting_depth;
539 block_start_count = p->block_start_count;
540 last_expr_type = p->last_expr_type;
541 last_expr_value = p->last_expr_value;
542 expr_stmts_for_value = p->expr_stmts_for_value;
543 emit_filename = p->emit_filename;
544 emit_lineno = p->emit_lineno;
545 goto_fixup_chain = p->goto_fixup_chain;
548 /* Emit a no-op instruction. */
550 void
551 emit_nop ()
553 rtx last_insn;
555 if (!output_bytecode)
557 last_insn = get_last_insn ();
558 if (!optimize
559 && (GET_CODE (last_insn) == CODE_LABEL
560 || prev_real_insn (last_insn) == 0))
561 emit_insn (gen_nop ());
565 /* Return the rtx-label that corresponds to a LABEL_DECL,
566 creating it if necessary. */
569 label_rtx (label)
570 tree label;
572 if (TREE_CODE (label) != LABEL_DECL)
573 abort ();
575 if (DECL_RTL (label))
576 return DECL_RTL (label);
578 return DECL_RTL (label) = gen_label_rtx ();
581 /* Add an unconditional jump to LABEL as the next sequential instruction. */
583 void
584 emit_jump (label)
585 rtx label;
587 do_pending_stack_adjust ();
588 emit_jump_insn (gen_jump (label));
589 emit_barrier ();
592 /* Emit code to jump to the address
593 specified by the pointer expression EXP. */
595 void
596 expand_computed_goto (exp)
597 tree exp;
599 if (output_bytecode)
601 bc_expand_expr (exp);
602 bc_emit_instruction (jumpP);
604 else
606 rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
607 emit_queue ();
608 emit_indirect_jump (x);
612 /* Handle goto statements and the labels that they can go to. */
614 /* Specify the location in the RTL code of a label LABEL,
615 which is a LABEL_DECL tree node.
617 This is used for the kind of label that the user can jump to with a
618 goto statement, and for alternatives of a switch or case statement.
619 RTL labels generated for loops and conditionals don't go through here;
620 they are generated directly at the RTL level, by other functions below.
622 Note that this has nothing to do with defining label *names*.
623 Languages vary in how they do that and what that even means. */
625 void
626 expand_label (label)
627 tree label;
629 struct label_chain *p;
631 if (output_bytecode)
633 if (! DECL_RTL (label))
634 DECL_RTL (label) = bc_gen_rtx ((char *) 0, 0, bc_get_bytecode_label ());
635 if (! bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (DECL_RTL (label))))
636 error ("multiply defined label");
637 return;
640 do_pending_stack_adjust ();
641 emit_label (label_rtx (label));
642 if (DECL_NAME (label))
643 LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
645 if (stack_block_stack != 0)
647 p = (struct label_chain *) oballoc (sizeof (struct label_chain));
648 p->next = stack_block_stack->data.block.label_chain;
649 stack_block_stack->data.block.label_chain = p;
650 p->label = label;
654 /* Declare that LABEL (a LABEL_DECL) may be used for nonlocal gotos
655 from nested functions. */
657 void
658 declare_nonlocal_label (label)
659 tree label;
661 nonlocal_labels = tree_cons (NULL_TREE, label, nonlocal_labels);
662 LABEL_PRESERVE_P (label_rtx (label)) = 1;
663 if (nonlocal_goto_handler_slot == 0)
665 nonlocal_goto_handler_slot
666 = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
667 emit_stack_save (SAVE_NONLOCAL,
668 &nonlocal_goto_stack_level,
669 PREV_INSN (tail_recursion_reentry));
673 /* Generate RTL code for a `goto' statement with target label LABEL.
674 LABEL should be a LABEL_DECL tree node that was or will later be
675 defined with `expand_label'. */
677 void
678 expand_goto (label)
679 tree label;
681 tree context;
683 if (output_bytecode)
685 expand_goto_internal (label, label_rtx (label), NULL_RTX);
686 return;
689 /* Check for a nonlocal goto to a containing function. */
690 context = decl_function_context (label);
691 if (context != 0 && context != current_function_decl)
693 struct function *p = find_function_data (context);
694 rtx label_ref = gen_rtx (LABEL_REF, Pmode, label_rtx (label));
695 rtx temp;
697 p->has_nonlocal_label = 1;
698 current_function_has_nonlocal_goto = 1;
699 LABEL_REF_NONLOCAL_P (label_ref) = 1;
701 /* Copy the rtl for the slots so that they won't be shared in
702 case the virtual stack vars register gets instantiated differently
703 in the parent than in the child. */
705 #if HAVE_nonlocal_goto
706 if (HAVE_nonlocal_goto)
707 emit_insn (gen_nonlocal_goto (lookup_static_chain (label),
708 copy_rtx (p->nonlocal_goto_handler_slot),
709 copy_rtx (p->nonlocal_goto_stack_level),
710 label_ref));
711 else
712 #endif
714 rtx addr;
716 /* Restore frame pointer for containing function.
717 This sets the actual hard register used for the frame pointer
718 to the location of the function's incoming static chain info.
719 The non-local goto handler will then adjust it to contain the
720 proper value and reload the argument pointer, if needed. */
721 emit_move_insn (hard_frame_pointer_rtx, lookup_static_chain (label));
723 /* We have now loaded the frame pointer hardware register with
724 the address of that corresponds to the start of the virtual
725 stack vars. So replace virtual_stack_vars_rtx in all
726 addresses we use with stack_pointer_rtx. */
728 /* Get addr of containing function's current nonlocal goto handler,
729 which will do any cleanups and then jump to the label. */
730 addr = copy_rtx (p->nonlocal_goto_handler_slot);
731 temp = copy_to_reg (replace_rtx (addr, virtual_stack_vars_rtx,
732 hard_frame_pointer_rtx));
734 /* Restore the stack pointer. Note this uses fp just restored. */
735 addr = p->nonlocal_goto_stack_level;
736 if (addr)
737 addr = replace_rtx (copy_rtx (addr),
738 virtual_stack_vars_rtx,
739 hard_frame_pointer_rtx);
741 emit_stack_restore (SAVE_NONLOCAL, addr, NULL_RTX);
743 /* Put in the static chain register the nonlocal label address. */
744 emit_move_insn (static_chain_rtx, label_ref);
745 /* USE of hard_frame_pointer_rtx added for consistency; not clear if
746 really needed. */
747 emit_insn (gen_rtx (USE, VOIDmode, hard_frame_pointer_rtx));
748 emit_insn (gen_rtx (USE, VOIDmode, stack_pointer_rtx));
749 emit_insn (gen_rtx (USE, VOIDmode, static_chain_rtx));
750 emit_indirect_jump (temp);
753 else
754 expand_goto_internal (label, label_rtx (label), NULL_RTX);
757 /* Generate RTL code for a `goto' statement with target label BODY.
758 LABEL should be a LABEL_REF.
759 LAST_INSN, if non-0, is the rtx we should consider as the last
760 insn emitted (for the purposes of cleaning up a return). */
762 static void
763 expand_goto_internal (body, label, last_insn)
764 tree body;
765 rtx label;
766 rtx last_insn;
768 struct nesting *block;
769 rtx stack_level = 0;
771 /* NOTICE! If a bytecode instruction other than `jump' is needed,
772 then the caller has to call bc_expand_goto_internal()
773 directly. This is rather an exceptional case, and there aren't
774 that many places where this is necessary. */
775 if (output_bytecode)
777 expand_goto_internal (body, label, last_insn);
778 return;
781 if (GET_CODE (label) != CODE_LABEL)
782 abort ();
784 /* If label has already been defined, we can tell now
785 whether and how we must alter the stack level. */
787 if (PREV_INSN (label) != 0)
789 /* Find the innermost pending block that contains the label.
790 (Check containment by comparing insn-uids.)
791 Then restore the outermost stack level within that block,
792 and do cleanups of all blocks contained in it. */
793 for (block = block_stack; block; block = block->next)
795 if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
796 break;
797 if (block->data.block.stack_level != 0)
798 stack_level = block->data.block.stack_level;
799 /* Execute the cleanups for blocks we are exiting. */
800 if (block->data.block.cleanups != 0)
802 expand_cleanups (block->data.block.cleanups, NULL_TREE);
803 do_pending_stack_adjust ();
807 if (stack_level)
809 /* Ensure stack adjust isn't done by emit_jump, as this would clobber
810 the stack pointer. This one should be deleted as dead by flow. */
811 clear_pending_stack_adjust ();
812 do_pending_stack_adjust ();
813 emit_stack_restore (SAVE_BLOCK, stack_level, NULL_RTX);
816 if (body != 0 && DECL_TOO_LATE (body))
817 error ("jump to `%s' invalidly jumps into binding contour",
818 IDENTIFIER_POINTER (DECL_NAME (body)));
820 /* Label not yet defined: may need to put this goto
821 on the fixup list. */
822 else if (! expand_fixup (body, label, last_insn))
824 /* No fixup needed. Record that the label is the target
825 of at least one goto that has no fixup. */
826 if (body != 0)
827 TREE_ADDRESSABLE (body) = 1;
830 emit_jump (label);
833 /* Generate a jump with OPCODE to the given bytecode LABEL which is
834 found within BODY. */
836 static void
837 bc_expand_goto_internal (opcode, label, body)
838 enum bytecode_opcode opcode;
839 struct bc_label *label;
840 tree body;
842 struct nesting *block;
843 int stack_level = -1;
845 /* If the label is defined, adjust the stack as necessary.
846 If it's not defined, we have to push the reference on the
847 fixup list. */
849 if (label->defined)
852 /* Find the innermost pending block that contains the label.
853 (Check containment by comparing bytecode uids.) Then restore the
854 outermost stack level within that block. */
856 for (block = block_stack; block; block = block->next)
858 if (BYTECODE_BC_LABEL (block->data.block.first_insn)->uid < label->uid)
859 break;
860 if (block->data.block.bc_stack_level)
861 stack_level = block->data.block.bc_stack_level;
863 /* Execute the cleanups for blocks we are exiting. */
864 if (block->data.block.cleanups != 0)
866 expand_cleanups (block->data.block.cleanups, NULL_TREE);
867 do_pending_stack_adjust ();
871 /* Restore the stack level. If we need to adjust the stack, we
872 must do so after the jump, since the jump may depend on
873 what's on the stack. Thus, any stack-modifying conditional
874 jumps (these are the only ones that rely on what's on the
875 stack) go into the fixup list. */
877 if (stack_level >= 0
878 && stack_depth != stack_level
879 && opcode != jump)
881 bc_expand_fixup (opcode, label, stack_level);
882 else
884 if (stack_level >= 0)
885 bc_adjust_stack (stack_depth - stack_level);
887 if (body && DECL_BIT_FIELD (body))
888 error ("jump to `%s' invalidly jumps into binding contour",
889 IDENTIFIER_POINTER (DECL_NAME (body)));
891 /* Emit immediate jump */
892 bc_emit_bytecode (opcode);
893 bc_emit_bytecode_labelref (label);
895 #ifdef DEBUG_PRINT_CODE
896 fputc ('\n', stderr);
897 #endif
900 else
901 /* Put goto in the fixup list */
902 bc_expand_fixup (opcode, label, stack_level);
905 /* Generate if necessary a fixup for a goto
906 whose target label in tree structure (if any) is TREE_LABEL
907 and whose target in rtl is RTL_LABEL.
909 If LAST_INSN is nonzero, we pretend that the jump appears
910 after insn LAST_INSN instead of at the current point in the insn stream.
912 The fixup will be used later to insert insns just before the goto.
913 Those insns will restore the stack level as appropriate for the
914 target label, and will (in the case of C++) also invoke any object
915 destructors which have to be invoked when we exit the scopes which
916 are exited by the goto.
918 Value is nonzero if a fixup is made. */
920 static int
921 expand_fixup (tree_label, rtl_label, last_insn)
922 tree tree_label;
923 rtx rtl_label;
924 rtx last_insn;
926 struct nesting *block, *end_block;
928 /* See if we can recognize which block the label will be output in.
929 This is possible in some very common cases.
930 If we succeed, set END_BLOCK to that block.
931 Otherwise, set it to 0. */
933 if (cond_stack
934 && (rtl_label == cond_stack->data.cond.endif_label
935 || rtl_label == cond_stack->data.cond.next_label))
936 end_block = cond_stack;
937 /* If we are in a loop, recognize certain labels which
938 are likely targets. This reduces the number of fixups
939 we need to create. */
940 else if (loop_stack
941 && (rtl_label == loop_stack->data.loop.start_label
942 || rtl_label == loop_stack->data.loop.end_label
943 || rtl_label == loop_stack->data.loop.continue_label))
944 end_block = loop_stack;
945 else
946 end_block = 0;
948 /* Now set END_BLOCK to the binding level to which we will return. */
950 if (end_block)
952 struct nesting *next_block = end_block->all;
953 block = block_stack;
955 /* First see if the END_BLOCK is inside the innermost binding level.
956 If so, then no cleanups or stack levels are relevant. */
957 while (next_block && next_block != block)
958 next_block = next_block->all;
960 if (next_block)
961 return 0;
963 /* Otherwise, set END_BLOCK to the innermost binding level
964 which is outside the relevant control-structure nesting. */
965 next_block = block_stack->next;
966 for (block = block_stack; block != end_block; block = block->all)
967 if (block == next_block)
968 next_block = next_block->next;
969 end_block = next_block;
972 /* Does any containing block have a stack level or cleanups?
973 If not, no fixup is needed, and that is the normal case
974 (the only case, for standard C). */
975 for (block = block_stack; block != end_block; block = block->next)
976 if (block->data.block.stack_level != 0
977 || block->data.block.cleanups != 0)
978 break;
980 if (block != end_block)
982 /* Ok, a fixup is needed. Add a fixup to the list of such. */
983 struct goto_fixup *fixup
984 = (struct goto_fixup *) oballoc (sizeof (struct goto_fixup));
985 /* In case an old stack level is restored, make sure that comes
986 after any pending stack adjust. */
987 /* ?? If the fixup isn't to come at the present position,
988 doing the stack adjust here isn't useful. Doing it with our
989 settings at that location isn't useful either. Let's hope
990 someone does it! */
991 if (last_insn == 0)
992 do_pending_stack_adjust ();
993 fixup->target = tree_label;
994 fixup->target_rtl = rtl_label;
996 /* Create a BLOCK node and a corresponding matched set of
997 NOTE_INSN_BEGIN_BLOCK and NOTE_INSN_END_BLOCK notes at
998 this point. The notes will encapsulate any and all fixup
999 code which we might later insert at this point in the insn
1000 stream. Also, the BLOCK node will be the parent (i.e. the
1001 `SUPERBLOCK') of any other BLOCK nodes which we might create
1002 later on when we are expanding the fixup code. */
1005 register rtx original_before_jump
1006 = last_insn ? last_insn : get_last_insn ();
1008 start_sequence ();
1009 pushlevel (0);
1010 fixup->before_jump = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
1011 last_block_end_note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
1012 fixup->context = poplevel (1, 0, 0); /* Create the BLOCK node now! */
1013 end_sequence ();
1014 emit_insns_after (fixup->before_jump, original_before_jump);
1017 fixup->block_start_count = block_start_count;
1018 fixup->stack_level = 0;
1019 fixup->cleanup_list_list
1020 = (((block->data.block.outer_cleanups
1021 #if 0
1022 && block->data.block.outer_cleanups != empty_cleanup_list
1023 #endif
1025 || block->data.block.cleanups)
1026 ? tree_cons (NULL_TREE, block->data.block.cleanups,
1027 block->data.block.outer_cleanups)
1028 : 0);
1029 fixup->next = goto_fixup_chain;
1030 goto_fixup_chain = fixup;
1033 return block != 0;
1037 /* Generate bytecode jump with OPCODE to a fixup routine that links to LABEL.
1038 Make the fixup restore the stack level to STACK_LEVEL. */
1040 static void
1041 bc_expand_fixup (opcode, label, stack_level)
1042 enum bytecode_opcode opcode;
1043 struct bc_label *label;
1044 int stack_level;
1046 struct goto_fixup *fixup
1047 = (struct goto_fixup *) oballoc (sizeof (struct goto_fixup));
1049 fixup->label = bc_get_bytecode_label ();
1050 fixup->bc_target = label;
1051 fixup->bc_stack_level = stack_level;
1052 fixup->bc_handled = FALSE;
1054 fixup->next = goto_fixup_chain;
1055 goto_fixup_chain = fixup;
1057 /* Insert a jump to the fixup code */
1058 bc_emit_bytecode (opcode);
1059 bc_emit_bytecode_labelref (fixup->label);
1061 #ifdef DEBUG_PRINT_CODE
1062 fputc ('\n', stderr);
1063 #endif
1066 /* Expand any needed fixups in the outputmost binding level of the
1067 function. FIRST_INSN is the first insn in the function. */
1069 void
1070 expand_fixups (first_insn)
1071 rtx first_insn;
1073 fixup_gotos (NULL_PTR, NULL_RTX, NULL_TREE, first_insn, 0);
1076 /* When exiting a binding contour, process all pending gotos requiring fixups.
1077 THISBLOCK is the structure that describes the block being exited.
1078 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
1079 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
1080 FIRST_INSN is the insn that began this contour.
1082 Gotos that jump out of this contour must restore the
1083 stack level and do the cleanups before actually jumping.
1085 DONT_JUMP_IN nonzero means report error there is a jump into this
1086 contour from before the beginning of the contour.
1087 This is also done if STACK_LEVEL is nonzero. */
1089 static void
1090 fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
1091 struct nesting *thisblock;
1092 rtx stack_level;
1093 tree cleanup_list;
1094 rtx first_insn;
1095 int dont_jump_in;
1097 register struct goto_fixup *f, *prev;
1099 if (output_bytecode)
1101 /* ??? The second arg is the bc stack level, which is not the same
1102 as STACK_LEVEL. I have no idea what should go here, so I'll
1103 just pass 0. */
1104 bc_fixup_gotos (thisblock, 0, cleanup_list, first_insn, dont_jump_in);
1105 return;
1108 /* F is the fixup we are considering; PREV is the previous one. */
1109 /* We run this loop in two passes so that cleanups of exited blocks
1110 are run first, and blocks that are exited are marked so
1111 afterwards. */
1113 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1115 /* Test for a fixup that is inactive because it is already handled. */
1116 if (f->before_jump == 0)
1118 /* Delete inactive fixup from the chain, if that is easy to do. */
1119 if (prev != 0)
1120 prev->next = f->next;
1122 /* Has this fixup's target label been defined?
1123 If so, we can finalize it. */
1124 else if (PREV_INSN (f->target_rtl) != 0)
1126 register rtx cleanup_insns;
1128 /* Get the first non-label after the label
1129 this goto jumps to. If that's before this scope begins,
1130 we don't have a jump into the scope. */
1131 rtx after_label = f->target_rtl;
1132 while (after_label != 0 && GET_CODE (after_label) == CODE_LABEL)
1133 after_label = NEXT_INSN (after_label);
1135 /* If this fixup jumped into this contour from before the beginning
1136 of this contour, report an error. */
1137 /* ??? Bug: this does not detect jumping in through intermediate
1138 blocks that have stack levels or cleanups.
1139 It detects only a problem with the innermost block
1140 around the label. */
1141 if (f->target != 0
1142 && (dont_jump_in || stack_level || cleanup_list)
1143 /* If AFTER_LABEL is 0, it means the jump goes to the end
1144 of the rtl, which means it jumps into this scope. */
1145 && (after_label == 0
1146 || INSN_UID (first_insn) < INSN_UID (after_label))
1147 && INSN_UID (first_insn) > INSN_UID (f->before_jump)
1148 && ! DECL_REGISTER (f->target))
1150 error_with_decl (f->target,
1151 "label `%s' used before containing binding contour");
1152 /* Prevent multiple errors for one label. */
1153 DECL_REGISTER (f->target) = 1;
1156 /* We will expand the cleanups into a sequence of their own and
1157 then later on we will attach this new sequence to the insn
1158 stream just ahead of the actual jump insn. */
1160 start_sequence ();
1162 /* Temporarily restore the lexical context where we will
1163 logically be inserting the fixup code. We do this for the
1164 sake of getting the debugging information right. */
1166 pushlevel (0);
1167 set_block (f->context);
1169 /* Expand the cleanups for blocks this jump exits. */
1170 if (f->cleanup_list_list)
1172 tree lists;
1173 for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
1174 /* Marked elements correspond to blocks that have been closed.
1175 Do their cleanups. */
1176 if (TREE_ADDRESSABLE (lists)
1177 && TREE_VALUE (lists) != 0)
1179 expand_cleanups (TREE_VALUE (lists), 0);
1180 /* Pop any pushes done in the cleanups,
1181 in case function is about to return. */
1182 do_pending_stack_adjust ();
1186 /* Restore stack level for the biggest contour that this
1187 jump jumps out of. */
1188 if (f->stack_level)
1189 emit_stack_restore (SAVE_BLOCK, f->stack_level, f->before_jump);
1191 /* Finish up the sequence containing the insns which implement the
1192 necessary cleanups, and then attach that whole sequence to the
1193 insn stream just ahead of the actual jump insn. Attaching it
1194 at that point insures that any cleanups which are in fact
1195 implicit C++ object destructions (which must be executed upon
1196 leaving the block) appear (to the debugger) to be taking place
1197 in an area of the generated code where the object(s) being
1198 destructed are still "in scope". */
1200 cleanup_insns = get_insns ();
1201 poplevel (1, 0, 0);
1203 end_sequence ();
1204 emit_insns_after (cleanup_insns, f->before_jump);
1207 f->before_jump = 0;
1211 /* Mark the cleanups of exited blocks so that they are executed
1212 by the code above. */
1213 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1214 if (f->before_jump != 0
1215 && PREV_INSN (f->target_rtl) == 0
1216 /* Label has still not appeared. If we are exiting a block with
1217 a stack level to restore, that started before the fixup,
1218 mark this stack level as needing restoration
1219 when the fixup is later finalized.
1220 Also mark the cleanup_list_list element for F
1221 that corresponds to this block, so that ultimately
1222 this block's cleanups will be executed by the code above. */
1223 && thisblock != 0
1224 /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared,
1225 it means the label is undefined. That's erroneous, but possible. */
1226 && (thisblock->data.block.block_start_count
1227 <= f->block_start_count))
1229 tree lists = f->cleanup_list_list;
1230 for (; lists; lists = TREE_CHAIN (lists))
1231 /* If the following elt. corresponds to our containing block
1232 then the elt. must be for this block. */
1233 if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
1234 TREE_ADDRESSABLE (lists) = 1;
1236 if (stack_level)
1237 f->stack_level = stack_level;
1242 /* When exiting a binding contour, process all pending gotos requiring fixups.
1243 Note: STACK_DEPTH is not altered.
1245 The arguments are currently not used in the bytecode compiler, but we may
1246 need them one day for languages other than C.
1248 THISBLOCK is the structure that describes the block being exited.
1249 STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
1250 CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
1251 FIRST_INSN is the insn that began this contour.
1253 Gotos that jump out of this contour must restore the
1254 stack level and do the cleanups before actually jumping.
1256 DONT_JUMP_IN nonzero means report error there is a jump into this
1257 contour from before the beginning of the contour.
1258 This is also done if STACK_LEVEL is nonzero. */
1260 static void
1261 bc_fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
1262 struct nesting *thisblock;
1263 int stack_level;
1264 tree cleanup_list;
1265 rtx first_insn;
1266 int dont_jump_in;
1268 register struct goto_fixup *f, *prev;
1269 int saved_stack_depth;
1271 /* F is the fixup we are considering; PREV is the previous one. */
1273 for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
1275 /* Test for a fixup that is inactive because it is already handled. */
1276 if (f->before_jump == 0)
1278 /* Delete inactive fixup from the chain, if that is easy to do. */
1279 if (prev)
1280 prev->next = f->next;
1283 /* Emit code to restore the stack and continue */
1284 bc_emit_bytecode_labeldef (f->label);
1286 /* Save stack_depth across call, since bc_adjust_stack () will alter
1287 the perceived stack depth via the instructions generated. */
1289 if (f->bc_stack_level >= 0)
1291 saved_stack_depth = stack_depth;
1292 bc_adjust_stack (stack_depth - f->bc_stack_level);
1293 stack_depth = saved_stack_depth;
1296 bc_emit_bytecode (jump);
1297 bc_emit_bytecode_labelref (f->bc_target);
1299 #ifdef DEBUG_PRINT_CODE
1300 fputc ('\n', stderr);
1301 #endif
1304 goto_fixup_chain = NULL;
1307 /* Generate RTL for an asm statement (explicit assembler code).
1308 BODY is a STRING_CST node containing the assembler code text,
1309 or an ADDR_EXPR containing a STRING_CST. */
1311 void
1312 expand_asm (body)
1313 tree body;
1315 if (output_bytecode)
1317 error ("`asm' is illegal when generating bytecode");
1318 return;
1321 if (TREE_CODE (body) == ADDR_EXPR)
1322 body = TREE_OPERAND (body, 0);
1324 emit_insn (gen_rtx (ASM_INPUT, VOIDmode,
1325 TREE_STRING_POINTER (body)));
1326 last_expr_type = 0;
1329 /* Generate RTL for an asm statement with arguments.
1330 STRING is the instruction template.
1331 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
1332 Each output or input has an expression in the TREE_VALUE and
1333 a constraint-string in the TREE_PURPOSE.
1334 CLOBBERS is a list of STRING_CST nodes each naming a hard register
1335 that is clobbered by this insn.
1337 Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
1338 Some elements of OUTPUTS may be replaced with trees representing temporary
1339 values. The caller should copy those temporary values to the originally
1340 specified lvalues.
1342 VOL nonzero means the insn is volatile; don't optimize it. */
1344 void
1345 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
1346 tree string, outputs, inputs, clobbers;
1347 int vol;
1348 char *filename;
1349 int line;
1351 rtvec argvec, constraints;
1352 rtx body;
1353 int ninputs = list_length (inputs);
1354 int noutputs = list_length (outputs);
1355 int nclobbers;
1356 tree tail;
1357 register int i;
1358 /* Vector of RTX's of evaluated output operands. */
1359 rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
1360 /* The insn we have emitted. */
1361 rtx insn;
1363 if (output_bytecode)
1365 error ("`asm' is illegal when generating bytecode");
1366 return;
1369 /* Count the number of meaningful clobbered registers, ignoring what
1370 we would ignore later. */
1371 nclobbers = 0;
1372 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1374 char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1375 i = decode_reg_name (regname);
1376 if (i >= 0 || i == -4)
1377 ++nclobbers;
1380 last_expr_type = 0;
1382 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1384 tree val = TREE_VALUE (tail);
1385 tree val1;
1386 int j;
1387 int found_equal;
1389 /* If there's an erroneous arg, emit no insn. */
1390 if (TREE_TYPE (val) == error_mark_node)
1391 return;
1393 /* Make sure constraint has `=' and does not have `+'. */
1395 found_equal = 0;
1396 for (j = 0; j < TREE_STRING_LENGTH (TREE_PURPOSE (tail)); j++)
1398 if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '+')
1400 error ("output operand constraint contains `+'");
1401 return;
1403 if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '=')
1404 found_equal = 1;
1406 if (! found_equal)
1408 error ("output operand constraint lacks `='");
1409 return;
1412 /* If an output operand is not a variable or indirect ref,
1413 or a part of one,
1414 create a SAVE_EXPR which is a pseudo-reg
1415 to act as an intermediate temporary.
1416 Make the asm insn write into that, then copy it to
1417 the real output operand. */
1419 while (TREE_CODE (val) == COMPONENT_REF
1420 || TREE_CODE (val) == ARRAY_REF)
1421 val = TREE_OPERAND (val, 0);
1423 if (TREE_CODE (val) != VAR_DECL
1424 && TREE_CODE (val) != PARM_DECL
1425 && TREE_CODE (val) != INDIRECT_REF)
1427 TREE_VALUE (tail) = save_expr (TREE_VALUE (tail));
1428 /* If it's a constant, print error now so don't crash later. */
1429 if (TREE_CODE (TREE_VALUE (tail)) != SAVE_EXPR)
1431 error ("invalid output in `asm'");
1432 return;
1436 output_rtx[i] = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode, 0);
1439 if (ninputs + noutputs > MAX_RECOG_OPERANDS)
1441 error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
1442 return;
1445 /* Make vectors for the expression-rtx and constraint strings. */
1447 argvec = rtvec_alloc (ninputs);
1448 constraints = rtvec_alloc (ninputs);
1450 body = gen_rtx (ASM_OPERANDS, VOIDmode,
1451 TREE_STRING_POINTER (string), "", 0, argvec, constraints,
1452 filename, line);
1453 MEM_VOLATILE_P (body) = vol;
1455 /* Eval the inputs and put them into ARGVEC.
1456 Put their constraints into ASM_INPUTs and store in CONSTRAINTS. */
1458 i = 0;
1459 for (tail = inputs; tail; tail = TREE_CHAIN (tail))
1461 int j;
1463 /* If there's an erroneous arg, emit no insn,
1464 because the ASM_INPUT would get VOIDmode
1465 and that could cause a crash in reload. */
1466 if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
1467 return;
1468 if (TREE_PURPOSE (tail) == NULL_TREE)
1470 error ("hard register `%s' listed as input operand to `asm'",
1471 TREE_STRING_POINTER (TREE_VALUE (tail)) );
1472 return;
1475 /* Make sure constraint has neither `=' nor `+'. */
1477 for (j = 0; j < TREE_STRING_LENGTH (TREE_PURPOSE (tail)); j++)
1478 if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '='
1479 || TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '+')
1481 error ("input operand constraint contains `%c'",
1482 TREE_STRING_POINTER (TREE_PURPOSE (tail))[j]);
1483 return;
1486 XVECEXP (body, 3, i) /* argvec */
1487 = expand_expr (TREE_VALUE (tail), NULL_RTX, VOIDmode, 0);
1488 XVECEXP (body, 4, i) /* constraints */
1489 = gen_rtx (ASM_INPUT, TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
1490 TREE_STRING_POINTER (TREE_PURPOSE (tail)));
1491 i++;
1494 /* Protect all the operands from the queue,
1495 now that they have all been evaluated. */
1497 for (i = 0; i < ninputs; i++)
1498 XVECEXP (body, 3, i) = protect_from_queue (XVECEXP (body, 3, i), 0);
1500 for (i = 0; i < noutputs; i++)
1501 output_rtx[i] = protect_from_queue (output_rtx[i], 1);
1503 /* Now, for each output, construct an rtx
1504 (set OUTPUT (asm_operands INSN OUTPUTNUMBER OUTPUTCONSTRAINT
1505 ARGVEC CONSTRAINTS))
1506 If there is more than one, put them inside a PARALLEL. */
1508 if (noutputs == 1 && nclobbers == 0)
1510 XSTR (body, 1) = TREE_STRING_POINTER (TREE_PURPOSE (outputs));
1511 insn = emit_insn (gen_rtx (SET, VOIDmode, output_rtx[0], body));
1513 else if (noutputs == 0 && nclobbers == 0)
1515 /* No output operands: put in a raw ASM_OPERANDS rtx. */
1516 insn = emit_insn (body);
1518 else
1520 rtx obody = body;
1521 int num = noutputs;
1522 if (num == 0) num = 1;
1523 body = gen_rtx (PARALLEL, VOIDmode, rtvec_alloc (num + nclobbers));
1525 /* For each output operand, store a SET. */
1527 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1529 XVECEXP (body, 0, i)
1530 = gen_rtx (SET, VOIDmode,
1531 output_rtx[i],
1532 gen_rtx (ASM_OPERANDS, VOIDmode,
1533 TREE_STRING_POINTER (string),
1534 TREE_STRING_POINTER (TREE_PURPOSE (tail)),
1535 i, argvec, constraints,
1536 filename, line));
1537 MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
1540 /* If there are no outputs (but there are some clobbers)
1541 store the bare ASM_OPERANDS into the PARALLEL. */
1543 if (i == 0)
1544 XVECEXP (body, 0, i++) = obody;
1546 /* Store (clobber REG) for each clobbered register specified. */
1548 for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
1550 char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
1551 int j = decode_reg_name (regname);
1553 if (j < 0)
1555 if (j == -3) /* `cc', which is not a register */
1556 continue;
1558 if (j == -4) /* `memory', don't cache memory across asm */
1560 XVECEXP (body, 0, i++)
1561 = gen_rtx (CLOBBER, VOIDmode,
1562 gen_rtx (MEM, BLKmode,
1563 gen_rtx (SCRATCH, VOIDmode, 0)));
1564 continue;
1567 error ("unknown register name `%s' in `asm'", regname);
1568 return;
1571 /* Use QImode since that's guaranteed to clobber just one reg. */
1572 XVECEXP (body, 0, i++)
1573 = gen_rtx (CLOBBER, VOIDmode, gen_rtx (REG, QImode, j));
1576 insn = emit_insn (body);
1579 free_temp_slots ();
1582 /* Generate RTL to evaluate the expression EXP
1583 and remember it in case this is the VALUE in a ({... VALUE; }) constr. */
1585 void
1586 expand_expr_stmt (exp)
1587 tree exp;
1589 if (output_bytecode)
1591 int org_stack_depth = stack_depth;
1593 bc_expand_expr (exp);
1595 /* Restore stack depth */
1596 if (stack_depth < org_stack_depth)
1597 abort ();
1599 bc_emit_instruction (drop);
1601 last_expr_type = TREE_TYPE (exp);
1602 return;
1605 /* If -W, warn about statements with no side effects,
1606 except for an explicit cast to void (e.g. for assert()), and
1607 except inside a ({...}) where they may be useful. */
1608 if (expr_stmts_for_value == 0 && exp != error_mark_node)
1610 if (! TREE_SIDE_EFFECTS (exp) && (extra_warnings || warn_unused)
1611 && !(TREE_CODE (exp) == CONVERT_EXPR
1612 && TREE_TYPE (exp) == void_type_node))
1613 warning_with_file_and_line (emit_filename, emit_lineno,
1614 "statement with no effect");
1615 else if (warn_unused)
1616 warn_if_unused_value (exp);
1618 last_expr_type = TREE_TYPE (exp);
1619 if (! flag_syntax_only)
1620 last_expr_value = expand_expr (exp,
1621 (expr_stmts_for_value
1622 ? NULL_RTX : const0_rtx),
1623 VOIDmode, 0);
1625 /* If all we do is reference a volatile value in memory,
1626 copy it to a register to be sure it is actually touched. */
1627 if (last_expr_value != 0 && GET_CODE (last_expr_value) == MEM
1628 && TREE_THIS_VOLATILE (exp))
1630 if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode)
1632 else if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
1633 copy_to_reg (last_expr_value);
1634 else
1636 rtx lab = gen_label_rtx ();
1638 /* Compare the value with itself to reference it. */
1639 emit_cmp_insn (last_expr_value, last_expr_value, EQ,
1640 expand_expr (TYPE_SIZE (last_expr_type),
1641 NULL_RTX, VOIDmode, 0),
1642 BLKmode, 0,
1643 TYPE_ALIGN (last_expr_type) / BITS_PER_UNIT);
1644 emit_jump_insn ((*bcc_gen_fctn[(int) EQ]) (lab));
1645 emit_label (lab);
1649 /* If this expression is part of a ({...}) and is in memory, we may have
1650 to preserve temporaries. */
1651 preserve_temp_slots (last_expr_value);
1653 /* Free any temporaries used to evaluate this expression. Any temporary
1654 used as a result of this expression will already have been preserved
1655 above. */
1656 free_temp_slots ();
1658 emit_queue ();
1661 /* Warn if EXP contains any computations whose results are not used.
1662 Return 1 if a warning is printed; 0 otherwise. */
1664 static int
1665 warn_if_unused_value (exp)
1666 tree exp;
1668 if (TREE_USED (exp))
1669 return 0;
1671 switch (TREE_CODE (exp))
1673 case PREINCREMENT_EXPR:
1674 case POSTINCREMENT_EXPR:
1675 case PREDECREMENT_EXPR:
1676 case POSTDECREMENT_EXPR:
1677 case MODIFY_EXPR:
1678 case INIT_EXPR:
1679 case TARGET_EXPR:
1680 case CALL_EXPR:
1681 case METHOD_CALL_EXPR:
1682 case RTL_EXPR:
1683 case WITH_CLEANUP_EXPR:
1684 case EXIT_EXPR:
1685 /* We don't warn about COND_EXPR because it may be a useful
1686 construct if either arm contains a side effect. */
1687 case COND_EXPR:
1688 return 0;
1690 case BIND_EXPR:
1691 /* For a binding, warn if no side effect within it. */
1692 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1694 case TRUTH_ORIF_EXPR:
1695 case TRUTH_ANDIF_EXPR:
1696 /* In && or ||, warn if 2nd operand has no side effect. */
1697 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1699 case COMPOUND_EXPR:
1700 if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
1701 return 1;
1702 /* Let people do `(foo (), 0)' without a warning. */
1703 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1704 return 0;
1705 return warn_if_unused_value (TREE_OPERAND (exp, 1));
1707 case NOP_EXPR:
1708 case CONVERT_EXPR:
1709 case NON_LVALUE_EXPR:
1710 /* Don't warn about values cast to void. */
1711 if (TREE_TYPE (exp) == void_type_node)
1712 return 0;
1713 /* Don't warn about conversions not explicit in the user's program. */
1714 if (TREE_NO_UNUSED_WARNING (exp))
1715 return 0;
1716 /* Assignment to a cast usually results in a cast of a modify.
1717 Don't complain about that. There can be an arbitrary number of
1718 casts before the modify, so we must loop until we find the first
1719 non-cast expression and then test to see if that is a modify. */
1721 tree tem = TREE_OPERAND (exp, 0);
1723 while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
1724 tem = TREE_OPERAND (tem, 0);
1726 if (TREE_CODE (tem) == MODIFY_EXPR)
1727 return 0;
1729 /* ... fall through ... */
1731 default:
1732 /* Referencing a volatile value is a side effect, so don't warn. */
1733 if ((TREE_CODE_CLASS (TREE_CODE (exp)) == 'd'
1734 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'r')
1735 && TREE_THIS_VOLATILE (exp))
1736 return 0;
1737 warning_with_file_and_line (emit_filename, emit_lineno,
1738 "value computed is not used");
1739 return 1;
1743 /* Clear out the memory of the last expression evaluated. */
1745 void
1746 clear_last_expr ()
1748 last_expr_type = 0;
1751 /* Begin a statement which will return a value.
1752 Return the RTL_EXPR for this statement expr.
1753 The caller must save that value and pass it to expand_end_stmt_expr. */
1755 tree
1756 expand_start_stmt_expr ()
1758 int momentary;
1759 tree t;
1761 /* When generating bytecode just note down the stack depth */
1762 if (output_bytecode)
1763 return (build_int_2 (stack_depth, 0));
1765 /* Make the RTL_EXPR node temporary, not momentary,
1766 so that rtl_expr_chain doesn't become garbage. */
1767 momentary = suspend_momentary ();
1768 t = make_node (RTL_EXPR);
1769 resume_momentary (momentary);
1770 start_sequence_for_rtl_expr (t);
1771 NO_DEFER_POP;
1772 expr_stmts_for_value++;
1773 return t;
1776 /* Restore the previous state at the end of a statement that returns a value.
1777 Returns a tree node representing the statement's value and the
1778 insns to compute the value.
1780 The nodes of that expression have been freed by now, so we cannot use them.
1781 But we don't want to do that anyway; the expression has already been
1782 evaluated and now we just want to use the value. So generate a RTL_EXPR
1783 with the proper type and RTL value.
1785 If the last substatement was not an expression,
1786 return something with type `void'. */
1788 tree
1789 expand_end_stmt_expr (t)
1790 tree t;
1792 if (output_bytecode)
1794 int i;
1795 tree t;
1798 /* At this point, all expressions have been evaluated in order.
1799 However, all expression values have been popped when evaluated,
1800 which means we have to recover the last expression value. This is
1801 the last value removed by means of a `drop' instruction. Instead
1802 of adding code to inhibit dropping the last expression value, it
1803 is here recovered by undoing the `drop'. Since `drop' is
1804 equivalent to `adjustackSI [1]', it can be undone with `adjstackSI
1805 [-1]'. */
1807 bc_adjust_stack (-1);
1809 if (!last_expr_type)
1810 last_expr_type = void_type_node;
1812 t = make_node (RTL_EXPR);
1813 TREE_TYPE (t) = last_expr_type;
1814 RTL_EXPR_RTL (t) = NULL;
1815 RTL_EXPR_SEQUENCE (t) = NULL;
1817 /* Don't consider deleting this expr or containing exprs at tree level. */
1818 TREE_THIS_VOLATILE (t) = 1;
1820 last_expr_type = 0;
1821 return t;
1824 OK_DEFER_POP;
1826 if (last_expr_type == 0)
1828 last_expr_type = void_type_node;
1829 last_expr_value = const0_rtx;
1831 else if (last_expr_value == 0)
1832 /* There are some cases where this can happen, such as when the
1833 statement is void type. */
1834 last_expr_value = const0_rtx;
1835 else if (GET_CODE (last_expr_value) != REG && ! CONSTANT_P (last_expr_value))
1836 /* Remove any possible QUEUED. */
1837 last_expr_value = protect_from_queue (last_expr_value, 0);
1839 emit_queue ();
1841 TREE_TYPE (t) = last_expr_type;
1842 RTL_EXPR_RTL (t) = last_expr_value;
1843 RTL_EXPR_SEQUENCE (t) = get_insns ();
1845 rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
1847 end_sequence ();
1849 /* Don't consider deleting this expr or containing exprs at tree level. */
1850 TREE_SIDE_EFFECTS (t) = 1;
1851 /* Propagate volatility of the actual RTL expr. */
1852 TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
1854 last_expr_type = 0;
1855 expr_stmts_for_value--;
1857 return t;
1860 /* Generate RTL for the start of an if-then. COND is the expression
1861 whose truth should be tested.
1863 If EXITFLAG is nonzero, this conditional is visible to
1864 `exit_something'. */
1866 void
1867 expand_start_cond (cond, exitflag)
1868 tree cond;
1869 int exitflag;
1871 struct nesting *thiscond = ALLOC_NESTING ();
1873 /* Make an entry on cond_stack for the cond we are entering. */
1875 thiscond->next = cond_stack;
1876 thiscond->all = nesting_stack;
1877 thiscond->depth = ++nesting_depth;
1878 thiscond->data.cond.next_label = gen_label_rtx ();
1879 /* Before we encounter an `else', we don't need a separate exit label
1880 unless there are supposed to be exit statements
1881 to exit this conditional. */
1882 thiscond->exit_label = exitflag ? gen_label_rtx () : 0;
1883 thiscond->data.cond.endif_label = thiscond->exit_label;
1884 cond_stack = thiscond;
1885 nesting_stack = thiscond;
1887 if (output_bytecode)
1888 bc_expand_start_cond (cond, exitflag);
1889 else
1890 do_jump (cond, thiscond->data.cond.next_label, NULL_RTX);
1893 /* Generate RTL between then-clause and the elseif-clause
1894 of an if-then-elseif-.... */
1896 void
1897 expand_start_elseif (cond)
1898 tree cond;
1900 if (cond_stack->data.cond.endif_label == 0)
1901 cond_stack->data.cond.endif_label = gen_label_rtx ();
1902 emit_jump (cond_stack->data.cond.endif_label);
1903 emit_label (cond_stack->data.cond.next_label);
1904 cond_stack->data.cond.next_label = gen_label_rtx ();
1905 do_jump (cond, cond_stack->data.cond.next_label, NULL_RTX);
1908 /* Generate RTL between the then-clause and the else-clause
1909 of an if-then-else. */
1911 void
1912 expand_start_else ()
1914 if (cond_stack->data.cond.endif_label == 0)
1915 cond_stack->data.cond.endif_label = gen_label_rtx ();
1917 if (output_bytecode)
1919 bc_expand_start_else ();
1920 return;
1923 emit_jump (cond_stack->data.cond.endif_label);
1924 emit_label (cond_stack->data.cond.next_label);
1925 cond_stack->data.cond.next_label = 0; /* No more _else or _elseif calls. */
1928 /* Generate RTL for the end of an if-then.
1929 Pop the record for it off of cond_stack. */
1931 void
1932 expand_end_cond ()
1934 struct nesting *thiscond = cond_stack;
1936 if (output_bytecode)
1937 bc_expand_end_cond ();
1938 else
1940 do_pending_stack_adjust ();
1941 if (thiscond->data.cond.next_label)
1942 emit_label (thiscond->data.cond.next_label);
1943 if (thiscond->data.cond.endif_label)
1944 emit_label (thiscond->data.cond.endif_label);
1947 POPSTACK (cond_stack);
1948 last_expr_type = 0;
1952 /* Generate code for the start of an if-then. COND is the expression
1953 whose truth is to be tested; if EXITFLAG is nonzero this conditional
1954 is to be visible to exit_something. It is assumed that the caller
1955 has pushed the previous context on the cond stack. */
1957 static void
1958 bc_expand_start_cond (cond, exitflag)
1959 tree cond;
1960 int exitflag;
1962 struct nesting *thiscond = cond_stack;
1964 thiscond->data.case_stmt.nominal_type = cond;
1965 if (! exitflag)
1966 thiscond->exit_label = gen_label_rtx ();
1967 bc_expand_expr (cond);
1968 bc_emit_bytecode (xjumpifnot);
1969 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (thiscond->exit_label));
1971 #ifdef DEBUG_PRINT_CODE
1972 fputc ('\n', stderr);
1973 #endif
1976 /* Generate the label for the end of an if with
1977 no else- clause. */
1979 static void
1980 bc_expand_end_cond ()
1982 struct nesting *thiscond = cond_stack;
1984 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (thiscond->exit_label));
1987 /* Generate code for the start of the else- clause of
1988 an if-then-else. */
1990 static void
1991 bc_expand_start_else ()
1993 struct nesting *thiscond = cond_stack;
1995 thiscond->data.cond.endif_label = thiscond->exit_label;
1996 thiscond->exit_label = gen_label_rtx ();
1997 bc_emit_bytecode (jump);
1998 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (thiscond->exit_label));
2000 #ifdef DEBUG_PRINT_CODE
2001 fputc ('\n', stderr);
2002 #endif
2004 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (thiscond->data.cond.endif_label));
2007 /* Generate RTL for the start of a loop. EXIT_FLAG is nonzero if this
2008 loop should be exited by `exit_something'. This is a loop for which
2009 `expand_continue' will jump to the top of the loop.
2011 Make an entry on loop_stack to record the labels associated with
2012 this loop. */
2014 struct nesting *
2015 expand_start_loop (exit_flag)
2016 int exit_flag;
2018 register struct nesting *thisloop = ALLOC_NESTING ();
2020 /* Make an entry on loop_stack for the loop we are entering. */
2022 thisloop->next = loop_stack;
2023 thisloop->all = nesting_stack;
2024 thisloop->depth = ++nesting_depth;
2025 thisloop->data.loop.start_label = gen_label_rtx ();
2026 thisloop->data.loop.end_label = gen_label_rtx ();
2027 thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
2028 thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
2029 loop_stack = thisloop;
2030 nesting_stack = thisloop;
2032 if (output_bytecode)
2034 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (thisloop->data.loop.start_label));
2035 return thisloop;
2038 do_pending_stack_adjust ();
2039 emit_queue ();
2040 emit_note (NULL_PTR, NOTE_INSN_LOOP_BEG);
2041 emit_label (thisloop->data.loop.start_label);
2043 return thisloop;
2046 /* Like expand_start_loop but for a loop where the continuation point
2047 (for expand_continue_loop) will be specified explicitly. */
2049 struct nesting *
2050 expand_start_loop_continue_elsewhere (exit_flag)
2051 int exit_flag;
2053 struct nesting *thisloop = expand_start_loop (exit_flag);
2054 loop_stack->data.loop.continue_label = gen_label_rtx ();
2055 return thisloop;
2058 /* Specify the continuation point for a loop started with
2059 expand_start_loop_continue_elsewhere.
2060 Use this at the point in the code to which a continue statement
2061 should jump. */
2063 void
2064 expand_loop_continue_here ()
2066 if (output_bytecode)
2068 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (loop_stack->data.loop.continue_label));
2069 return;
2071 do_pending_stack_adjust ();
2072 emit_note (NULL_PTR, NOTE_INSN_LOOP_CONT);
2073 emit_label (loop_stack->data.loop.continue_label);
2076 /* End a loop. */
2078 static void
2079 bc_expand_end_loop ()
2081 struct nesting *thisloop = loop_stack;
2083 bc_emit_bytecode (jump);
2084 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (thisloop->data.loop.start_label));
2086 #ifdef DEBUG_PRINT_CODE
2087 fputc ('\n', stderr);
2088 #endif
2090 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (thisloop->exit_label));
2091 POPSTACK (loop_stack);
2092 last_expr_type = 0;
2096 /* Finish a loop. Generate a jump back to the top and the loop-exit label.
2097 Pop the block off of loop_stack. */
2099 void
2100 expand_end_loop ()
2102 register rtx insn;
2103 register rtx start_label;
2104 rtx last_test_insn = 0;
2105 int num_insns = 0;
2107 if (output_bytecode)
2109 bc_expand_end_loop ();
2110 return;
2113 insn = get_last_insn ();
2114 start_label = loop_stack->data.loop.start_label;
2116 /* Mark the continue-point at the top of the loop if none elsewhere. */
2117 if (start_label == loop_stack->data.loop.continue_label)
2118 emit_note_before (NOTE_INSN_LOOP_CONT, start_label);
2120 do_pending_stack_adjust ();
2122 /* If optimizing, perhaps reorder the loop. If the loop
2123 starts with a conditional exit, roll that to the end
2124 where it will optimize together with the jump back.
2126 We look for the last conditional branch to the exit that we encounter
2127 before hitting 30 insns or a CALL_INSN. If we see an unconditional
2128 branch to the exit first, use it.
2130 We must also stop at NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes
2131 because moving them is not valid. */
2133 if (optimize
2135 ! (GET_CODE (insn) == JUMP_INSN
2136 && GET_CODE (PATTERN (insn)) == SET
2137 && SET_DEST (PATTERN (insn)) == pc_rtx
2138 && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE))
2140 /* Scan insns from the top of the loop looking for a qualified
2141 conditional exit. */
2142 for (insn = NEXT_INSN (loop_stack->data.loop.start_label); insn;
2143 insn = NEXT_INSN (insn))
2145 if (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == CODE_LABEL)
2146 break;
2148 if (GET_CODE (insn) == NOTE
2149 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2150 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2151 break;
2153 if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == INSN)
2154 num_insns++;
2156 if (last_test_insn && num_insns > 30)
2157 break;
2159 if (GET_CODE (insn) == JUMP_INSN && GET_CODE (PATTERN (insn)) == SET
2160 && SET_DEST (PATTERN (insn)) == pc_rtx
2161 && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE
2162 && ((GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == LABEL_REF
2163 && (XEXP (XEXP (SET_SRC (PATTERN (insn)), 1), 0)
2164 == loop_stack->data.loop.end_label))
2165 || (GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 2)) == LABEL_REF
2166 && (XEXP (XEXP (SET_SRC (PATTERN (insn)), 2), 0)
2167 == loop_stack->data.loop.end_label))))
2168 last_test_insn = insn;
2170 if (last_test_insn == 0 && GET_CODE (insn) == JUMP_INSN
2171 && GET_CODE (PATTERN (insn)) == SET
2172 && SET_DEST (PATTERN (insn)) == pc_rtx
2173 && GET_CODE (SET_SRC (PATTERN (insn))) == LABEL_REF
2174 && (XEXP (SET_SRC (PATTERN (insn)), 0)
2175 == loop_stack->data.loop.end_label))
2176 /* Include BARRIER. */
2177 last_test_insn = NEXT_INSN (insn);
2180 if (last_test_insn != 0 && last_test_insn != get_last_insn ())
2182 /* We found one. Move everything from there up
2183 to the end of the loop, and add a jump into the loop
2184 to jump to there. */
2185 register rtx newstart_label = gen_label_rtx ();
2186 register rtx start_move = start_label;
2188 /* If the start label is preceded by a NOTE_INSN_LOOP_CONT note,
2189 then we want to move this note also. */
2190 if (GET_CODE (PREV_INSN (start_move)) == NOTE
2191 && (NOTE_LINE_NUMBER (PREV_INSN (start_move))
2192 == NOTE_INSN_LOOP_CONT))
2193 start_move = PREV_INSN (start_move);
2195 emit_label_after (newstart_label, PREV_INSN (start_move));
2196 reorder_insns (start_move, last_test_insn, get_last_insn ());
2197 emit_jump_insn_after (gen_jump (start_label),
2198 PREV_INSN (newstart_label));
2199 emit_barrier_after (PREV_INSN (newstart_label));
2200 start_label = newstart_label;
2204 emit_jump (start_label);
2205 emit_note (NULL_PTR, NOTE_INSN_LOOP_END);
2206 emit_label (loop_stack->data.loop.end_label);
2208 POPSTACK (loop_stack);
2210 last_expr_type = 0;
2213 /* Generate a jump to the current loop's continue-point.
2214 This is usually the top of the loop, but may be specified
2215 explicitly elsewhere. If not currently inside a loop,
2216 return 0 and do nothing; caller will print an error message. */
2219 expand_continue_loop (whichloop)
2220 struct nesting *whichloop;
2222 last_expr_type = 0;
2223 if (whichloop == 0)
2224 whichloop = loop_stack;
2225 if (whichloop == 0)
2226 return 0;
2227 expand_goto_internal (NULL_TREE, whichloop->data.loop.continue_label,
2228 NULL_RTX);
2229 return 1;
2232 /* Generate a jump to exit the current loop. If not currently inside a loop,
2233 return 0 and do nothing; caller will print an error message. */
2236 expand_exit_loop (whichloop)
2237 struct nesting *whichloop;
2239 last_expr_type = 0;
2240 if (whichloop == 0)
2241 whichloop = loop_stack;
2242 if (whichloop == 0)
2243 return 0;
2244 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label, NULL_RTX);
2245 return 1;
2248 /* Generate a conditional jump to exit the current loop if COND
2249 evaluates to zero. If not currently inside a loop,
2250 return 0 and do nothing; caller will print an error message. */
2253 expand_exit_loop_if_false (whichloop, cond)
2254 struct nesting *whichloop;
2255 tree cond;
2257 last_expr_type = 0;
2258 if (whichloop == 0)
2259 whichloop = loop_stack;
2260 if (whichloop == 0)
2261 return 0;
2262 if (output_bytecode)
2264 bc_expand_expr (cond);
2265 bc_expand_goto_internal (xjumpifnot,
2266 BYTECODE_BC_LABEL (whichloop->exit_label),
2267 NULL_TREE);
2269 else
2271 /* In order to handle fixups, we actually create a conditional jump
2272 around a unconditional branch to exit the loop. If fixups are
2273 necessary, they go before the unconditional branch. */
2275 rtx label = gen_label_rtx ();
2276 do_jump (cond, NULL_RTX, label);
2277 expand_goto_internal (NULL_TREE, whichloop->data.loop.end_label,
2278 NULL_RTX);
2279 emit_label (label);
2282 return 1;
2285 /* Return non-zero if we should preserve sub-expressions as separate
2286 pseudos. We never do so if we aren't optimizing. We always do so
2287 if -fexpensive-optimizations.
2289 Otherwise, we only do so if we are in the "early" part of a loop. I.e.,
2290 the loop may still be a small one. */
2293 preserve_subexpressions_p ()
2295 rtx insn;
2297 if (flag_expensive_optimizations)
2298 return 1;
2300 if (optimize == 0 || loop_stack == 0)
2301 return 0;
2303 insn = get_last_insn_anywhere ();
2305 return (insn
2306 && (INSN_UID (insn) - INSN_UID (loop_stack->data.loop.start_label)
2307 < n_non_fixed_regs * 3));
2311 /* Generate a jump to exit the current loop, conditional, binding contour
2312 or case statement. Not all such constructs are visible to this function,
2313 only those started with EXIT_FLAG nonzero. Individual languages use
2314 the EXIT_FLAG parameter to control which kinds of constructs you can
2315 exit this way.
2317 If not currently inside anything that can be exited,
2318 return 0 and do nothing; caller will print an error message. */
2321 expand_exit_something ()
2323 struct nesting *n;
2324 last_expr_type = 0;
2325 for (n = nesting_stack; n; n = n->all)
2326 if (n->exit_label != 0)
2328 expand_goto_internal (NULL_TREE, n->exit_label, NULL_RTX);
2329 return 1;
2332 return 0;
2335 /* Generate RTL to return from the current function, with no value.
2336 (That is, we do not do anything about returning any value.) */
2338 void
2339 expand_null_return ()
2341 struct nesting *block = block_stack;
2342 rtx last_insn = 0;
2344 if (output_bytecode)
2346 bc_emit_instruction (ret);
2347 return;
2350 /* Does any pending block have cleanups? */
2352 while (block && block->data.block.cleanups == 0)
2353 block = block->next;
2355 /* If yes, use a goto to return, since that runs cleanups. */
2357 expand_null_return_1 (last_insn, block != 0);
2360 /* Generate RTL to return from the current function, with value VAL. */
2362 void
2363 expand_value_return (val)
2364 rtx val;
2366 struct nesting *block = block_stack;
2367 rtx last_insn = get_last_insn ();
2368 rtx return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
2370 /* Copy the value to the return location
2371 unless it's already there. */
2373 if (return_reg != val)
2375 #ifdef PROMOTE_FUNCTION_RETURN
2376 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
2377 int unsignedp = TREE_UNSIGNED (type);
2378 enum machine_mode mode
2379 = promote_mode (type, DECL_MODE (DECL_RESULT (current_function_decl)),
2380 &unsignedp, 1);
2382 if (GET_MODE (val) != VOIDmode && GET_MODE (val) != mode)
2383 convert_move (return_reg, val, unsignedp);
2384 else
2385 #endif
2386 emit_move_insn (return_reg, val);
2388 if (GET_CODE (return_reg) == REG
2389 && REGNO (return_reg) < FIRST_PSEUDO_REGISTER)
2390 emit_insn (gen_rtx (USE, VOIDmode, return_reg));
2392 /* Does any pending block have cleanups? */
2394 while (block && block->data.block.cleanups == 0)
2395 block = block->next;
2397 /* If yes, use a goto to return, since that runs cleanups.
2398 Use LAST_INSN to put cleanups *before* the move insn emitted above. */
2400 expand_null_return_1 (last_insn, block != 0);
2403 /* Output a return with no value. If LAST_INSN is nonzero,
2404 pretend that the return takes place after LAST_INSN.
2405 If USE_GOTO is nonzero then don't use a return instruction;
2406 go to the return label instead. This causes any cleanups
2407 of pending blocks to be executed normally. */
2409 static void
2410 expand_null_return_1 (last_insn, use_goto)
2411 rtx last_insn;
2412 int use_goto;
2414 rtx end_label = cleanup_label ? cleanup_label : return_label;
2416 clear_pending_stack_adjust ();
2417 do_pending_stack_adjust ();
2418 last_expr_type = 0;
2420 /* PCC-struct return always uses an epilogue. */
2421 if (current_function_returns_pcc_struct || use_goto)
2423 if (end_label == 0)
2424 end_label = return_label = gen_label_rtx ();
2425 expand_goto_internal (NULL_TREE, end_label, last_insn);
2426 return;
2429 /* Otherwise output a simple return-insn if one is available,
2430 unless it won't do the job. */
2431 #ifdef HAVE_return
2432 if (HAVE_return && use_goto == 0 && cleanup_label == 0)
2434 emit_jump_insn (gen_return ());
2435 emit_barrier ();
2436 return;
2438 #endif
2440 /* Otherwise jump to the epilogue. */
2441 expand_goto_internal (NULL_TREE, end_label, last_insn);
2444 /* Generate RTL to evaluate the expression RETVAL and return it
2445 from the current function. */
2447 void
2448 expand_return (retval)
2449 tree retval;
2451 /* If there are any cleanups to be performed, then they will
2452 be inserted following LAST_INSN. It is desirable
2453 that the last_insn, for such purposes, should be the
2454 last insn before computing the return value. Otherwise, cleanups
2455 which call functions can clobber the return value. */
2456 /* ??? rms: I think that is erroneous, because in C++ it would
2457 run destructors on variables that might be used in the subsequent
2458 computation of the return value. */
2459 rtx last_insn = 0;
2460 register rtx val = 0;
2461 register rtx op0;
2462 tree retval_rhs;
2463 int cleanups;
2464 struct nesting *block;
2466 /* Bytecode returns are quite simple, just leave the result on the
2467 arithmetic stack. */
2468 if (output_bytecode)
2470 bc_expand_expr (retval);
2471 bc_emit_instruction (ret);
2472 return;
2475 /* If function wants no value, give it none. */
2476 if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
2478 expand_expr (retval, NULL_RTX, VOIDmode, 0);
2479 emit_queue ();
2480 expand_null_return ();
2481 return;
2484 /* Are any cleanups needed? E.g. C++ destructors to be run? */
2485 cleanups = any_pending_cleanups (1);
2487 if (TREE_CODE (retval) == RESULT_DECL)
2488 retval_rhs = retval;
2489 else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
2490 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
2491 retval_rhs = TREE_OPERAND (retval, 1);
2492 else if (TREE_TYPE (retval) == void_type_node)
2493 /* Recognize tail-recursive call to void function. */
2494 retval_rhs = retval;
2495 else
2496 retval_rhs = NULL_TREE;
2498 /* Only use `last_insn' if there are cleanups which must be run. */
2499 if (cleanups || cleanup_label != 0)
2500 last_insn = get_last_insn ();
2502 /* Distribute return down conditional expr if either of the sides
2503 may involve tail recursion (see test below). This enhances the number
2504 of tail recursions we see. Don't do this always since it can produce
2505 sub-optimal code in some cases and we distribute assignments into
2506 conditional expressions when it would help. */
2508 if (optimize && retval_rhs != 0
2509 && frame_offset == 0
2510 && TREE_CODE (retval_rhs) == COND_EXPR
2511 && (TREE_CODE (TREE_OPERAND (retval_rhs, 1)) == CALL_EXPR
2512 || TREE_CODE (TREE_OPERAND (retval_rhs, 2)) == CALL_EXPR))
2514 rtx label = gen_label_rtx ();
2515 tree expr;
2517 do_jump (TREE_OPERAND (retval_rhs, 0), label, NULL_RTX);
2518 expr = build (MODIFY_EXPR, TREE_TYPE (current_function_decl),
2519 DECL_RESULT (current_function_decl),
2520 TREE_OPERAND (retval_rhs, 1));
2521 TREE_SIDE_EFFECTS (expr) = 1;
2522 expand_return (expr);
2523 emit_label (label);
2525 expr = build (MODIFY_EXPR, TREE_TYPE (current_function_decl),
2526 DECL_RESULT (current_function_decl),
2527 TREE_OPERAND (retval_rhs, 2));
2528 TREE_SIDE_EFFECTS (expr) = 1;
2529 expand_return (expr);
2530 return;
2533 /* For tail-recursive call to current function,
2534 just jump back to the beginning.
2535 It's unsafe if any auto variable in this function
2536 has its address taken; for simplicity,
2537 require stack frame to be empty. */
2538 if (optimize && retval_rhs != 0
2539 && frame_offset == 0
2540 && TREE_CODE (retval_rhs) == CALL_EXPR
2541 && TREE_CODE (TREE_OPERAND (retval_rhs, 0)) == ADDR_EXPR
2542 && TREE_OPERAND (TREE_OPERAND (retval_rhs, 0), 0) == current_function_decl
2543 /* Finish checking validity, and if valid emit code
2544 to set the argument variables for the new call. */
2545 && tail_recursion_args (TREE_OPERAND (retval_rhs, 1),
2546 DECL_ARGUMENTS (current_function_decl)))
2548 if (tail_recursion_label == 0)
2550 tail_recursion_label = gen_label_rtx ();
2551 emit_label_after (tail_recursion_label,
2552 tail_recursion_reentry);
2554 emit_queue ();
2555 expand_goto_internal (NULL_TREE, tail_recursion_label, last_insn);
2556 emit_barrier ();
2557 return;
2559 #ifdef HAVE_return
2560 /* This optimization is safe if there are local cleanups
2561 because expand_null_return takes care of them.
2562 ??? I think it should also be safe when there is a cleanup label,
2563 because expand_null_return takes care of them, too.
2564 Any reason why not? */
2565 if (HAVE_return && cleanup_label == 0
2566 && ! current_function_returns_pcc_struct
2567 && BRANCH_COST <= 1)
2569 /* If this is return x == y; then generate
2570 if (x == y) return 1; else return 0;
2571 if we can do it with explicit return insns and
2572 branches are cheap. */
2573 if (retval_rhs)
2574 switch (TREE_CODE (retval_rhs))
2576 case EQ_EXPR:
2577 case NE_EXPR:
2578 case GT_EXPR:
2579 case GE_EXPR:
2580 case LT_EXPR:
2581 case LE_EXPR:
2582 case TRUTH_ANDIF_EXPR:
2583 case TRUTH_ORIF_EXPR:
2584 case TRUTH_AND_EXPR:
2585 case TRUTH_OR_EXPR:
2586 case TRUTH_NOT_EXPR:
2587 case TRUTH_XOR_EXPR:
2588 op0 = gen_label_rtx ();
2589 jumpifnot (retval_rhs, op0);
2590 expand_value_return (const1_rtx);
2591 emit_label (op0);
2592 expand_value_return (const0_rtx);
2593 return;
2596 #endif /* HAVE_return */
2598 if (cleanups
2599 && retval_rhs != 0
2600 && TREE_TYPE (retval_rhs) != void_type_node
2601 && GET_CODE (DECL_RTL (DECL_RESULT (current_function_decl))) == REG)
2603 /* Calculate the return value into a pseudo reg. */
2604 val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
2605 emit_queue ();
2606 /* All temporaries have now been used. */
2607 free_temp_slots ();
2608 /* Return the calculated value, doing cleanups first. */
2609 expand_value_return (val);
2611 else
2613 /* No cleanups or no hard reg used;
2614 calculate value into hard return reg. */
2615 expand_expr (retval, const0_rtx, VOIDmode, 0);
2616 emit_queue ();
2617 free_temp_slots ();
2618 expand_value_return (DECL_RTL (DECL_RESULT (current_function_decl)));
2622 /* Return 1 if the end of the generated RTX is not a barrier.
2623 This means code already compiled can drop through. */
2626 drop_through_at_end_p ()
2628 rtx insn = get_last_insn ();
2629 while (insn && GET_CODE (insn) == NOTE)
2630 insn = PREV_INSN (insn);
2631 return insn && GET_CODE (insn) != BARRIER;
2634 /* Emit code to alter this function's formal parms for a tail-recursive call.
2635 ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
2636 FORMALS is the chain of decls of formals.
2637 Return 1 if this can be done;
2638 otherwise return 0 and do not emit any code. */
2640 static int
2641 tail_recursion_args (actuals, formals)
2642 tree actuals, formals;
2644 register tree a = actuals, f = formals;
2645 register int i;
2646 register rtx *argvec;
2648 /* Check that number and types of actuals are compatible
2649 with the formals. This is not always true in valid C code.
2650 Also check that no formal needs to be addressable
2651 and that all formals are scalars. */
2653 /* Also count the args. */
2655 for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
2657 if (TREE_TYPE (TREE_VALUE (a)) != TREE_TYPE (f))
2658 return 0;
2659 if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
2660 return 0;
2662 if (a != 0 || f != 0)
2663 return 0;
2665 /* Compute all the actuals. */
2667 argvec = (rtx *) alloca (i * sizeof (rtx));
2669 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
2670 argvec[i] = expand_expr (TREE_VALUE (a), NULL_RTX, VOIDmode, 0);
2672 /* Find which actual values refer to current values of previous formals.
2673 Copy each of them now, before any formal is changed. */
2675 for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
2677 int copy = 0;
2678 register int j;
2679 for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
2680 if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
2681 { copy = 1; break; }
2682 if (copy)
2683 argvec[i] = copy_to_reg (argvec[i]);
2686 /* Store the values of the actuals into the formals. */
2688 for (f = formals, a = actuals, i = 0; f;
2689 f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
2691 if (GET_MODE (DECL_RTL (f)) == GET_MODE (argvec[i]))
2692 emit_move_insn (DECL_RTL (f), argvec[i]);
2693 else
2694 convert_move (DECL_RTL (f), argvec[i],
2695 TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
2698 free_temp_slots ();
2699 return 1;
2702 /* Generate the RTL code for entering a binding contour.
2703 The variables are declared one by one, by calls to `expand_decl'.
2705 EXIT_FLAG is nonzero if this construct should be visible to
2706 `exit_something'. */
2708 void
2709 expand_start_bindings (exit_flag)
2710 int exit_flag;
2712 struct nesting *thisblock = ALLOC_NESTING ();
2713 rtx note = output_bytecode ? 0 : emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG);
2715 /* Make an entry on block_stack for the block we are entering. */
2717 thisblock->next = block_stack;
2718 thisblock->all = nesting_stack;
2719 thisblock->depth = ++nesting_depth;
2720 thisblock->data.block.stack_level = 0;
2721 thisblock->data.block.cleanups = 0;
2722 thisblock->data.block.function_call_count = 0;
2723 #if 0
2724 if (block_stack)
2726 if (block_stack->data.block.cleanups == NULL_TREE
2727 && (block_stack->data.block.outer_cleanups == NULL_TREE
2728 || block_stack->data.block.outer_cleanups == empty_cleanup_list))
2729 thisblock->data.block.outer_cleanups = empty_cleanup_list;
2730 else
2731 thisblock->data.block.outer_cleanups
2732 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
2733 block_stack->data.block.outer_cleanups);
2735 else
2736 thisblock->data.block.outer_cleanups = 0;
2737 #endif
2738 #if 1
2739 if (block_stack
2740 && !(block_stack->data.block.cleanups == NULL_TREE
2741 && block_stack->data.block.outer_cleanups == NULL_TREE))
2742 thisblock->data.block.outer_cleanups
2743 = tree_cons (NULL_TREE, block_stack->data.block.cleanups,
2744 block_stack->data.block.outer_cleanups);
2745 else
2746 thisblock->data.block.outer_cleanups = 0;
2747 #endif
2748 thisblock->data.block.label_chain = 0;
2749 thisblock->data.block.innermost_stack_block = stack_block_stack;
2750 thisblock->data.block.first_insn = note;
2751 thisblock->data.block.block_start_count = ++block_start_count;
2752 thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
2753 block_stack = thisblock;
2754 nesting_stack = thisblock;
2756 if (!output_bytecode)
2758 /* Make a new level for allocating stack slots. */
2759 push_temp_slots ();
2763 /* Given a pointer to a BLOCK node, save a pointer to the most recently
2764 generated NOTE_INSN_BLOCK_END in the BLOCK_END_NOTE field of the given
2765 BLOCK node. */
2767 void
2768 remember_end_note (block)
2769 register tree block;
2771 BLOCK_END_NOTE (block) = last_block_end_note;
2772 last_block_end_note = NULL_RTX;
2775 /* Generate RTL code to terminate a binding contour.
2776 VARS is the chain of VAR_DECL nodes
2777 for the variables bound in this contour.
2778 MARK_ENDS is nonzero if we should put a note at the beginning
2779 and end of this binding contour.
2781 DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
2782 (That is true automatically if the contour has a saved stack level.) */
2784 void
2785 expand_end_bindings (vars, mark_ends, dont_jump_in)
2786 tree vars;
2787 int mark_ends;
2788 int dont_jump_in;
2790 register struct nesting *thisblock = block_stack;
2791 register tree decl;
2793 if (output_bytecode)
2795 bc_expand_end_bindings (vars, mark_ends, dont_jump_in);
2796 return;
2799 if (warn_unused)
2800 for (decl = vars; decl; decl = TREE_CHAIN (decl))
2801 if (! TREE_USED (decl) && TREE_CODE (decl) == VAR_DECL
2802 && ! DECL_IN_SYSTEM_HEADER (decl))
2803 warning_with_decl (decl, "unused variable `%s'");
2805 if (thisblock->exit_label)
2807 do_pending_stack_adjust ();
2808 emit_label (thisblock->exit_label);
2811 /* If necessary, make a handler for nonlocal gotos taking
2812 place in the function calls in this block. */
2813 if (function_call_count != thisblock->data.block.function_call_count
2814 && nonlocal_labels
2815 /* Make handler for outermost block
2816 if there were any nonlocal gotos to this function. */
2817 && (thisblock->next == 0 ? current_function_has_nonlocal_label
2818 /* Make handler for inner block if it has something
2819 special to do when you jump out of it. */
2820 : (thisblock->data.block.cleanups != 0
2821 || thisblock->data.block.stack_level != 0)))
2823 tree link;
2824 rtx afterward = gen_label_rtx ();
2825 rtx handler_label = gen_label_rtx ();
2826 rtx save_receiver = gen_reg_rtx (Pmode);
2827 rtx insns;
2829 /* Don't let jump_optimize delete the handler. */
2830 LABEL_PRESERVE_P (handler_label) = 1;
2832 /* Record the handler address in the stack slot for that purpose,
2833 during this block, saving and restoring the outer value. */
2834 if (thisblock->next != 0)
2836 emit_move_insn (nonlocal_goto_handler_slot, save_receiver);
2838 start_sequence ();
2839 emit_move_insn (save_receiver, nonlocal_goto_handler_slot);
2840 insns = get_insns ();
2841 end_sequence ();
2842 emit_insns_before (insns, thisblock->data.block.first_insn);
2845 start_sequence ();
2846 emit_move_insn (nonlocal_goto_handler_slot,
2847 gen_rtx (LABEL_REF, Pmode, handler_label));
2848 insns = get_insns ();
2849 end_sequence ();
2850 emit_insns_before (insns, thisblock->data.block.first_insn);
2852 /* Jump around the handler; it runs only when specially invoked. */
2853 emit_jump (afterward);
2854 emit_label (handler_label);
2856 #ifdef HAVE_nonlocal_goto
2857 if (! HAVE_nonlocal_goto)
2858 #endif
2859 /* First adjust our frame pointer to its actual value. It was
2860 previously set to the start of the virtual area corresponding to
2861 the stacked variables when we branched here and now needs to be
2862 adjusted to the actual hardware fp value.
2864 Assignments are to virtual registers are converted by
2865 instantiate_virtual_regs into the corresponding assignment
2866 to the underlying register (fp in this case) that makes
2867 the original assignment true.
2868 So the following insn will actually be
2869 decrementing fp by STARTING_FRAME_OFFSET. */
2870 emit_move_insn (virtual_stack_vars_rtx, frame_pointer_rtx);
2872 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2873 if (fixed_regs[ARG_POINTER_REGNUM])
2875 #ifdef ELIMINABLE_REGS
2876 /* If the argument pointer can be eliminated in favor of the
2877 frame pointer, we don't need to restore it. We assume here
2878 that if such an elimination is present, it can always be used.
2879 This is the case on all known machines; if we don't make this
2880 assumption, we do unnecessary saving on many machines. */
2881 static struct elims {int from, to;} elim_regs[] = ELIMINABLE_REGS;
2882 int i;
2884 for (i = 0; i < sizeof elim_regs / sizeof elim_regs[0]; i++)
2885 if (elim_regs[i].from == ARG_POINTER_REGNUM
2886 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
2887 break;
2889 if (i == sizeof elim_regs / sizeof elim_regs [0])
2890 #endif
2892 /* Now restore our arg pointer from the address at which it
2893 was saved in our stack frame.
2894 If there hasn't be space allocated for it yet, make
2895 some now. */
2896 if (arg_pointer_save_area == 0)
2897 arg_pointer_save_area
2898 = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
2899 emit_move_insn (virtual_incoming_args_rtx,
2900 /* We need a pseudo here, or else
2901 instantiate_virtual_regs_1 complains. */
2902 copy_to_reg (arg_pointer_save_area));
2905 #endif
2907 /* The handler expects the desired label address in the static chain
2908 register. It tests the address and does an appropriate jump
2909 to whatever label is desired. */
2910 for (link = nonlocal_labels; link; link = TREE_CHAIN (link))
2911 /* Skip any labels we shouldn't be able to jump to from here. */
2912 if (! DECL_TOO_LATE (TREE_VALUE (link)))
2914 rtx not_this = gen_label_rtx ();
2915 rtx this = gen_label_rtx ();
2916 do_jump_if_equal (static_chain_rtx,
2917 gen_rtx (LABEL_REF, Pmode, DECL_RTL (TREE_VALUE (link))),
2918 this, 0);
2919 emit_jump (not_this);
2920 emit_label (this);
2921 expand_goto (TREE_VALUE (link));
2922 emit_label (not_this);
2924 /* If label is not recognized, abort. */
2925 emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "abort"), 0,
2926 VOIDmode, 0);
2927 emit_label (afterward);
2930 /* Don't allow jumping into a block that has cleanups or a stack level. */
2931 if (dont_jump_in
2932 || thisblock->data.block.stack_level != 0
2933 || thisblock->data.block.cleanups != 0)
2935 struct label_chain *chain;
2937 /* Any labels in this block are no longer valid to go to.
2938 Mark them to cause an error message. */
2939 for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
2941 DECL_TOO_LATE (chain->label) = 1;
2942 /* If any goto without a fixup came to this label,
2943 that must be an error, because gotos without fixups
2944 come from outside all saved stack-levels and all cleanups. */
2945 if (TREE_ADDRESSABLE (chain->label))
2946 error_with_decl (chain->label,
2947 "label `%s' used before containing binding contour");
2951 /* Restore stack level in effect before the block
2952 (only if variable-size objects allocated). */
2953 /* Perform any cleanups associated with the block. */
2955 if (thisblock->data.block.stack_level != 0
2956 || thisblock->data.block.cleanups != 0)
2958 /* Only clean up here if this point can actually be reached. */
2959 if (GET_CODE (get_last_insn ()) != BARRIER)
2961 /* Don't let cleanups affect ({...}) constructs. */
2962 int old_expr_stmts_for_value = expr_stmts_for_value;
2963 rtx old_last_expr_value = last_expr_value;
2964 tree old_last_expr_type = last_expr_type;
2965 expr_stmts_for_value = 0;
2967 /* Do the cleanups. */
2968 expand_cleanups (thisblock->data.block.cleanups, NULL_TREE);
2969 do_pending_stack_adjust ();
2971 expr_stmts_for_value = old_expr_stmts_for_value;
2972 last_expr_value = old_last_expr_value;
2973 last_expr_type = old_last_expr_type;
2975 /* Restore the stack level. */
2977 if (thisblock->data.block.stack_level != 0)
2979 emit_stack_restore (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
2980 thisblock->data.block.stack_level, NULL_RTX);
2981 if (nonlocal_goto_handler_slot != 0)
2982 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level,
2983 NULL_RTX);
2987 /* Any gotos out of this block must also do these things.
2988 Also report any gotos with fixups that came to labels in this
2989 level. */
2990 fixup_gotos (thisblock,
2991 thisblock->data.block.stack_level,
2992 thisblock->data.block.cleanups,
2993 thisblock->data.block.first_insn,
2994 dont_jump_in);
2997 /* Mark the beginning and end of the scope if requested.
2998 We do this now, after running cleanups on the variables
2999 just going out of scope, so they are in scope for their cleanups. */
3001 if (mark_ends)
3002 last_block_end_note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_END);
3003 else
3004 /* Get rid of the beginning-mark if we don't make an end-mark. */
3005 NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
3007 /* If doing stupid register allocation, make sure lives of all
3008 register variables declared here extend thru end of scope. */
3010 if (obey_regdecls)
3011 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3013 rtx rtl = DECL_RTL (decl);
3014 if (TREE_CODE (decl) == VAR_DECL && rtl != 0)
3015 use_variable (rtl);
3018 /* Restore block_stack level for containing block. */
3020 stack_block_stack = thisblock->data.block.innermost_stack_block;
3021 POPSTACK (block_stack);
3023 /* Pop the stack slot nesting and free any slots at this level. */
3024 pop_temp_slots ();
3028 /* End a binding contour.
3029 VARS is the chain of VAR_DECL nodes for the variables bound
3030 in this contour. MARK_ENDS is nonzer if we should put a note
3031 at the beginning and end of this binding contour.
3032 DONT_JUMP_IN is nonzero if it is not valid to jump into this
3033 contour. */
3035 static void
3036 bc_expand_end_bindings (vars, mark_ends, dont_jump_in)
3037 tree vars;
3038 int mark_ends;
3039 int dont_jump_in;
3041 struct nesting *thisbind = nesting_stack;
3042 tree decl;
3044 if (warn_unused)
3045 for (decl = vars; decl; decl = TREE_CHAIN (decl))
3046 if (! TREE_USED (TREE_VALUE (decl)) && TREE_CODE (TREE_VALUE (decl)) == VAR_DECL)
3047 warning_with_decl (decl, "unused variable `%s'");
3049 if (thisbind->exit_label)
3050 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (thisbind->exit_label));
3052 /* Pop block/bindings off stack */
3053 POPSTACK (block_stack);
3056 /* Generate RTL for the automatic variable declaration DECL.
3057 (Other kinds of declarations are simply ignored if seen here.)
3058 CLEANUP is an expression to be executed at exit from this binding contour;
3059 for example, in C++, it might call the destructor for this variable.
3061 If CLEANUP contains any SAVE_EXPRs, then you must preevaluate them
3062 either before or after calling `expand_decl' but before compiling
3063 any subsequent expressions. This is because CLEANUP may be expanded
3064 more than once, on different branches of execution.
3065 For the same reason, CLEANUP may not contain a CALL_EXPR
3066 except as its topmost node--else `preexpand_calls' would get confused.
3068 If CLEANUP is nonzero and DECL is zero, we record a cleanup
3069 that is not associated with any particular variable.
3071 There is no special support here for C++ constructors.
3072 They should be handled by the proper code in DECL_INITIAL. */
3074 void
3075 expand_decl (decl)
3076 register tree decl;
3078 struct nesting *thisblock = block_stack;
3079 tree type;
3081 if (output_bytecode)
3083 bc_expand_decl (decl, 0);
3084 return;
3087 type = TREE_TYPE (decl);
3089 /* Only automatic variables need any expansion done.
3090 Static and external variables, and external functions,
3091 will be handled by `assemble_variable' (called from finish_decl).
3092 TYPE_DECL and CONST_DECL require nothing.
3093 PARM_DECLs are handled in `assign_parms'. */
3095 if (TREE_CODE (decl) != VAR_DECL)
3096 return;
3097 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3098 return;
3100 /* Create the RTL representation for the variable. */
3102 if (type == error_mark_node)
3103 DECL_RTL (decl) = gen_rtx (MEM, BLKmode, const0_rtx);
3104 else if (DECL_SIZE (decl) == 0)
3105 /* Variable with incomplete type. */
3107 if (DECL_INITIAL (decl) == 0)
3108 /* Error message was already done; now avoid a crash. */
3109 DECL_RTL (decl) = assign_stack_temp (DECL_MODE (decl), 0, 1);
3110 else
3111 /* An initializer is going to decide the size of this array.
3112 Until we know the size, represent its address with a reg. */
3113 DECL_RTL (decl) = gen_rtx (MEM, BLKmode, gen_reg_rtx (Pmode));
3115 else if (DECL_MODE (decl) != BLKmode
3116 /* If -ffloat-store, don't put explicit float vars
3117 into regs. */
3118 && !(flag_float_store
3119 && TREE_CODE (type) == REAL_TYPE)
3120 && ! TREE_THIS_VOLATILE (decl)
3121 && ! TREE_ADDRESSABLE (decl)
3122 && (DECL_REGISTER (decl) || ! obey_regdecls))
3124 /* Automatic variable that can go in a register. */
3125 int unsignedp = TREE_UNSIGNED (type);
3126 enum machine_mode reg_mode
3127 = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
3129 if (TREE_CODE (type) == COMPLEX_TYPE)
3131 rtx realpart, imagpart;
3132 enum machine_mode partmode = TYPE_MODE (TREE_TYPE (type));
3134 /* For a complex type variable, make a CONCAT of two pseudos
3135 so that the real and imaginary parts
3136 can be allocated separately. */
3137 realpart = gen_reg_rtx (partmode);
3138 REG_USERVAR_P (realpart) = 1;
3139 imagpart = gen_reg_rtx (partmode);
3140 REG_USERVAR_P (imagpart) = 1;
3141 DECL_RTL (decl) = gen_rtx (CONCAT, reg_mode, realpart, imagpart);
3143 else
3145 DECL_RTL (decl) = gen_reg_rtx (reg_mode);
3146 if (TREE_CODE (type) == POINTER_TYPE)
3147 mark_reg_pointer (DECL_RTL (decl));
3148 REG_USERVAR_P (DECL_RTL (decl)) = 1;
3151 else if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3153 /* Variable of fixed size that goes on the stack. */
3154 rtx oldaddr = 0;
3155 rtx addr;
3157 /* If we previously made RTL for this decl, it must be an array
3158 whose size was determined by the initializer.
3159 The old address was a register; set that register now
3160 to the proper address. */
3161 if (DECL_RTL (decl) != 0)
3163 if (GET_CODE (DECL_RTL (decl)) != MEM
3164 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
3165 abort ();
3166 oldaddr = XEXP (DECL_RTL (decl), 0);
3169 DECL_RTL (decl)
3170 = assign_stack_temp (DECL_MODE (decl),
3171 ((TREE_INT_CST_LOW (DECL_SIZE (decl))
3172 + BITS_PER_UNIT - 1)
3173 / BITS_PER_UNIT),
3176 /* Set alignment we actually gave this decl. */
3177 DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
3178 : GET_MODE_BITSIZE (DECL_MODE (decl)));
3180 if (oldaddr)
3182 addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
3183 if (addr != oldaddr)
3184 emit_move_insn (oldaddr, addr);
3187 /* If this is a memory ref that contains aggregate components,
3188 mark it as such for cse and loop optimize. */
3189 MEM_IN_STRUCT_P (DECL_RTL (decl)) = AGGREGATE_TYPE_P (TREE_TYPE (decl));
3190 #if 0
3191 /* If this is in memory because of -ffloat-store,
3192 set the volatile bit, to prevent optimizations from
3193 undoing the effects. */
3194 if (flag_float_store && TREE_CODE (type) == REAL_TYPE)
3195 MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
3196 #endif
3198 else
3199 /* Dynamic-size object: must push space on the stack. */
3201 rtx address, size;
3203 /* Record the stack pointer on entry to block, if have
3204 not already done so. */
3205 if (thisblock->data.block.stack_level == 0)
3207 do_pending_stack_adjust ();
3208 emit_stack_save (thisblock->next ? SAVE_BLOCK : SAVE_FUNCTION,
3209 &thisblock->data.block.stack_level,
3210 thisblock->data.block.first_insn);
3211 stack_block_stack = thisblock;
3214 /* Compute the variable's size, in bytes. */
3215 size = expand_expr (size_binop (CEIL_DIV_EXPR,
3216 DECL_SIZE (decl),
3217 size_int (BITS_PER_UNIT)),
3218 NULL_RTX, VOIDmode, 0);
3219 free_temp_slots ();
3221 /* Allocate space on the stack for the variable. */
3222 address = allocate_dynamic_stack_space (size, NULL_RTX,
3223 DECL_ALIGN (decl));
3225 /* Reference the variable indirect through that rtx. */
3226 DECL_RTL (decl) = gen_rtx (MEM, DECL_MODE (decl), address);
3228 /* If this is a memory ref that contains aggregate components,
3229 mark it as such for cse and loop optimize. */
3230 MEM_IN_STRUCT_P (DECL_RTL (decl)) = AGGREGATE_TYPE_P (TREE_TYPE (decl));
3232 /* Indicate the alignment we actually gave this variable. */
3233 #ifdef STACK_BOUNDARY
3234 DECL_ALIGN (decl) = STACK_BOUNDARY;
3235 #else
3236 DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
3237 #endif
3240 if (TREE_THIS_VOLATILE (decl))
3241 MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
3242 #if 0 /* A variable is not necessarily unchanging
3243 just because it is const. RTX_UNCHANGING_P
3244 means no change in the function,
3245 not merely no change in the variable's scope.
3246 It is correct to set RTX_UNCHANGING_P if the variable's scope
3247 is the whole function. There's no convenient way to test that. */
3248 if (TREE_READONLY (decl))
3249 RTX_UNCHANGING_P (DECL_RTL (decl)) = 1;
3250 #endif
3252 /* If doing stupid register allocation, make sure life of any
3253 register variable starts here, at the start of its scope. */
3255 if (obey_regdecls)
3256 use_variable (DECL_RTL (decl));
3260 /* Generate code for the automatic variable declaration DECL. For
3261 most variables this just means we give it a stack offset. The
3262 compiler sometimes emits cleanups without variables and we will
3263 have to deal with those too. */
3265 static void
3266 bc_expand_decl (decl, cleanup)
3267 tree decl;
3268 tree cleanup;
3270 tree type;
3272 if (!decl)
3274 /* A cleanup with no variable. */
3275 if (!cleanup)
3276 abort ();
3278 return;
3281 /* Only auto variables need any work. */
3282 if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3283 return;
3285 type = TREE_TYPE (decl);
3287 if (type == error_mark_node)
3288 DECL_RTL (decl) = bc_gen_rtx ((char *) 0, 0, (struct bc_label *) 0);
3290 else if (DECL_SIZE (decl) == 0)
3292 /* Variable with incomplete type. The stack offset herein will be
3293 fixed later in expand_decl_init (). */
3294 DECL_RTL (decl) = bc_gen_rtx ((char *) 0, 0, (struct bc_label *) 0);
3296 else if (TREE_CONSTANT (DECL_SIZE (decl)))
3298 DECL_RTL (decl) = bc_allocate_local (TREE_INT_CST_LOW (DECL_SIZE (decl)) / BITS_PER_UNIT,
3299 DECL_ALIGN (decl));
3301 else
3302 DECL_RTL (decl) = bc_allocate_variable_array (DECL_SIZE (decl));
3305 /* Emit code to perform the initialization of a declaration DECL. */
3307 void
3308 expand_decl_init (decl)
3309 tree decl;
3311 int was_used = TREE_USED (decl);
3313 if (output_bytecode)
3315 bc_expand_decl_init (decl);
3316 return;
3319 /* If this is a CONST_DECL, we don't have to generate any code, but
3320 if DECL_INITIAL is a constant, call expand_expr to force TREE_CST_RTL
3321 to be set while in the obstack containing the constant. If we don't
3322 do this, we can lose if we have functions nested three deep and the middle
3323 function makes a CONST_DECL whose DECL_INITIAL is a STRING_CST while
3324 the innermost function is the first to expand that STRING_CST. */
3325 if (TREE_CODE (decl) == CONST_DECL)
3327 if (DECL_INITIAL (decl) && TREE_CONSTANT (DECL_INITIAL (decl)))
3328 expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
3329 EXPAND_INITIALIZER);
3330 return;
3333 if (TREE_STATIC (decl))
3334 return;
3336 /* Compute and store the initial value now. */
3338 if (DECL_INITIAL (decl) == error_mark_node)
3340 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3341 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3342 || code == POINTER_TYPE)
3343 expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
3344 0, 0);
3345 emit_queue ();
3347 else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
3349 emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3350 expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
3351 emit_queue ();
3354 /* Don't let the initialization count as "using" the variable. */
3355 TREE_USED (decl) = was_used;
3357 /* Free any temporaries we made while initializing the decl. */
3358 free_temp_slots ();
3361 /* Expand initialization for variable-sized types. Allocate array
3362 using newlocalSI and set local variable, which is a pointer to the
3363 storage. */
3365 static void
3366 bc_expand_variable_local_init (decl)
3367 tree decl;
3369 /* Evaluate size expression and coerce to SI */
3370 bc_expand_expr (DECL_SIZE (decl));
3372 /* Type sizes are always (?) of TREE_CODE INTEGER_CST, so
3373 no coercion is necessary (?) */
3375 /* emit_typecode_conversion (preferred_typecode (TYPE_MODE (DECL_SIZE (decl)),
3376 TREE_UNSIGNED (DECL_SIZE (decl))), SIcode); */
3378 /* Emit code to allocate array */
3379 bc_emit_instruction (newlocalSI);
3381 /* Store array pointer in local variable. This is the only instance
3382 where we actually want the address of the pointer to the
3383 variable-size block, rather than the pointer itself. We avoid
3384 using expand_address() since that would cause the pointer to be
3385 pushed rather than its address. Hence the hard-coded reference;
3386 notice also that the variable is always local (no global
3387 variable-size type variables). */
3389 bc_load_localaddr (DECL_RTL (decl));
3390 bc_emit_instruction (storeP);
3394 /* Emit code to initialize a declaration. */
3396 static void
3397 bc_expand_decl_init (decl)
3398 tree decl;
3400 int org_stack_depth;
3402 /* Statical initializers are handled elsewhere */
3404 if (TREE_STATIC (decl))
3405 return;
3407 /* Memory original stack depth */
3408 org_stack_depth = stack_depth;
3410 /* If the type is variable-size, we first create its space (we ASSUME
3411 it CAN'T be static). We do this regardless of whether there's an
3412 initializer assignment or not. */
3414 if (TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
3415 bc_expand_variable_local_init (decl);
3417 /* Expand initializer assignment */
3418 if (DECL_INITIAL (decl) == error_mark_node)
3420 enum tree_code code = TREE_CODE (TREE_TYPE (decl));
3422 if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
3423 || code == POINTER_TYPE)
3425 expand_assignment (TREE_TYPE (decl), decl, 0, 0);
3427 else if (DECL_INITIAL (decl))
3428 expand_assignment (TREE_TYPE (decl), decl, 0, 0);
3430 /* Restore stack depth */
3431 if (org_stack_depth > stack_depth)
3432 abort ();
3434 bc_adjust_stack (stack_depth - org_stack_depth);
3438 /* CLEANUP is an expression to be executed at exit from this binding contour;
3439 for example, in C++, it might call the destructor for this variable.
3441 If CLEANUP contains any SAVE_EXPRs, then you must preevaluate them
3442 either before or after calling `expand_decl' but before compiling
3443 any subsequent expressions. This is because CLEANUP may be expanded
3444 more than once, on different branches of execution.
3445 For the same reason, CLEANUP may not contain a CALL_EXPR
3446 except as its topmost node--else `preexpand_calls' would get confused.
3448 If CLEANUP is nonzero and DECL is zero, we record a cleanup
3449 that is not associated with any particular variable. */
3452 expand_decl_cleanup (decl, cleanup)
3453 tree decl, cleanup;
3455 struct nesting *thisblock = block_stack;
3457 /* Error if we are not in any block. */
3458 if (thisblock == 0)
3459 return 0;
3461 /* Record the cleanup if there is one. */
3463 if (cleanup != 0)
3465 thisblock->data.block.cleanups
3466 = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
3467 /* If this block has a cleanup, it belongs in stack_block_stack. */
3468 stack_block_stack = thisblock;
3470 return 1;
3473 /* DECL is an anonymous union. CLEANUP is a cleanup for DECL.
3474 DECL_ELTS is the list of elements that belong to DECL's type.
3475 In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup. */
3477 void
3478 expand_anon_union_decl (decl, cleanup, decl_elts)
3479 tree decl, cleanup, decl_elts;
3481 struct nesting *thisblock = block_stack;
3482 rtx x;
3484 expand_decl (decl, cleanup);
3485 x = DECL_RTL (decl);
3487 while (decl_elts)
3489 tree decl_elt = TREE_VALUE (decl_elts);
3490 tree cleanup_elt = TREE_PURPOSE (decl_elts);
3491 enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
3493 /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
3494 instead create a new MEM rtx with the proper mode. */
3495 if (GET_CODE (x) == MEM)
3497 if (mode == GET_MODE (x))
3498 DECL_RTL (decl_elt) = x;
3499 else
3501 DECL_RTL (decl_elt) = gen_rtx (MEM, mode, copy_rtx (XEXP (x, 0)));
3502 MEM_IN_STRUCT_P (DECL_RTL (decl_elt)) = MEM_IN_STRUCT_P (x);
3503 RTX_UNCHANGING_P (DECL_RTL (decl_elt)) = RTX_UNCHANGING_P (x);
3506 else if (GET_CODE (x) == REG)
3508 if (mode == GET_MODE (x))
3509 DECL_RTL (decl_elt) = x;
3510 else
3511 DECL_RTL (decl_elt) = gen_rtx (SUBREG, mode, x, 0);
3513 else
3514 abort ();
3516 /* Record the cleanup if there is one. */
3518 if (cleanup != 0)
3519 thisblock->data.block.cleanups
3520 = temp_tree_cons (decl_elt, cleanup_elt,
3521 thisblock->data.block.cleanups);
3523 decl_elts = TREE_CHAIN (decl_elts);
3527 /* Expand a list of cleanups LIST.
3528 Elements may be expressions or may be nested lists.
3530 If DONT_DO is nonnull, then any list-element
3531 whose TREE_PURPOSE matches DONT_DO is omitted.
3532 This is sometimes used to avoid a cleanup associated with
3533 a value that is being returned out of the scope. */
3535 static void
3536 expand_cleanups (list, dont_do)
3537 tree list;
3538 tree dont_do;
3540 tree tail;
3541 for (tail = list; tail; tail = TREE_CHAIN (tail))
3542 if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
3544 if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
3545 expand_cleanups (TREE_VALUE (tail), dont_do);
3546 else
3548 /* Cleanups may be run multiple times. For example,
3549 when exiting a binding contour, we expand the
3550 cleanups associated with that contour. When a goto
3551 within that binding contour has a target outside that
3552 contour, it will expand all cleanups from its scope to
3553 the target. Though the cleanups are expanded multiple
3554 times, the control paths are non-overlapping so the
3555 cleanups will not be executed twice. */
3556 expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
3557 free_temp_slots ();
3562 /* Move all cleanups from the current block_stack
3563 to the containing block_stack, where they are assumed to
3564 have been created. If anything can cause a temporary to
3565 be created, but not expanded for more than one level of
3566 block_stacks, then this code will have to change. */
3568 void
3569 move_cleanups_up ()
3571 struct nesting *block = block_stack;
3572 struct nesting *outer = block->next;
3574 outer->data.block.cleanups
3575 = chainon (block->data.block.cleanups,
3576 outer->data.block.cleanups);
3577 block->data.block.cleanups = 0;
3580 tree
3581 last_cleanup_this_contour ()
3583 if (block_stack == 0)
3584 return 0;
3586 return block_stack->data.block.cleanups;
3589 /* Return 1 if there are any pending cleanups at this point.
3590 If THIS_CONTOUR is nonzero, check the current contour as well.
3591 Otherwise, look only at the contours that enclose this one. */
3594 any_pending_cleanups (this_contour)
3595 int this_contour;
3597 struct nesting *block;
3599 if (block_stack == 0)
3600 return 0;
3602 if (this_contour && block_stack->data.block.cleanups != NULL)
3603 return 1;
3604 if (block_stack->data.block.cleanups == 0
3605 && (block_stack->data.block.outer_cleanups == 0
3606 #if 0
3607 || block_stack->data.block.outer_cleanups == empty_cleanup_list
3608 #endif
3610 return 0;
3612 for (block = block_stack->next; block; block = block->next)
3613 if (block->data.block.cleanups != 0)
3614 return 1;
3616 return 0;
3619 /* Enter a case (Pascal) or switch (C) statement.
3620 Push a block onto case_stack and nesting_stack
3621 to accumulate the case-labels that are seen
3622 and to record the labels generated for the statement.
3624 EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
3625 Otherwise, this construct is transparent for `exit_something'.
3627 EXPR is the index-expression to be dispatched on.
3628 TYPE is its nominal type. We could simply convert EXPR to this type,
3629 but instead we take short cuts. */
3631 void
3632 expand_start_case (exit_flag, expr, type, printname)
3633 int exit_flag;
3634 tree expr;
3635 tree type;
3636 char *printname;
3638 register struct nesting *thiscase = ALLOC_NESTING ();
3640 /* Make an entry on case_stack for the case we are entering. */
3642 thiscase->next = case_stack;
3643 thiscase->all = nesting_stack;
3644 thiscase->depth = ++nesting_depth;
3645 thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
3646 thiscase->data.case_stmt.case_list = 0;
3647 thiscase->data.case_stmt.index_expr = expr;
3648 thiscase->data.case_stmt.nominal_type = type;
3649 thiscase->data.case_stmt.default_label = 0;
3650 thiscase->data.case_stmt.num_ranges = 0;
3651 thiscase->data.case_stmt.printname = printname;
3652 thiscase->data.case_stmt.seenlabel = 0;
3653 case_stack = thiscase;
3654 nesting_stack = thiscase;
3656 if (output_bytecode)
3658 bc_expand_start_case (thiscase, expr, type, printname);
3659 return;
3662 do_pending_stack_adjust ();
3664 /* Make sure case_stmt.start points to something that won't
3665 need any transformation before expand_end_case. */
3666 if (GET_CODE (get_last_insn ()) != NOTE)
3667 emit_note (NULL_PTR, NOTE_INSN_DELETED);
3669 thiscase->data.case_stmt.start = get_last_insn ();
3673 /* Enter a case statement. It is assumed that the caller has pushed
3674 the current context onto the case stack. */
3676 static void
3677 bc_expand_start_case (thiscase, expr, type, printname)
3678 struct nesting *thiscase;
3679 tree expr;
3680 tree type;
3681 char *printname;
3683 bc_expand_expr (expr);
3684 bc_expand_conversion (TREE_TYPE (expr), type);
3686 /* For cases, the skip is a place we jump to that's emitted after
3687 the size of the jump table is known. */
3689 thiscase->data.case_stmt.skip_label = gen_label_rtx ();
3690 bc_emit_bytecode (jump);
3691 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (thiscase->data.case_stmt.skip_label));
3693 #ifdef DEBUG_PRINT_CODE
3694 fputc ('\n', stderr);
3695 #endif
3699 /* Start a "dummy case statement" within which case labels are invalid
3700 and are not connected to any larger real case statement.
3701 This can be used if you don't want to let a case statement jump
3702 into the middle of certain kinds of constructs. */
3704 void
3705 expand_start_case_dummy ()
3707 register struct nesting *thiscase = ALLOC_NESTING ();
3709 /* Make an entry on case_stack for the dummy. */
3711 thiscase->next = case_stack;
3712 thiscase->all = nesting_stack;
3713 thiscase->depth = ++nesting_depth;
3714 thiscase->exit_label = 0;
3715 thiscase->data.case_stmt.case_list = 0;
3716 thiscase->data.case_stmt.start = 0;
3717 thiscase->data.case_stmt.nominal_type = 0;
3718 thiscase->data.case_stmt.default_label = 0;
3719 thiscase->data.case_stmt.num_ranges = 0;
3720 case_stack = thiscase;
3721 nesting_stack = thiscase;
3724 /* End a dummy case statement. */
3726 void
3727 expand_end_case_dummy ()
3729 POPSTACK (case_stack);
3732 /* Return the data type of the index-expression
3733 of the innermost case statement, or null if none. */
3735 tree
3736 case_index_expr_type ()
3738 if (case_stack)
3739 return TREE_TYPE (case_stack->data.case_stmt.index_expr);
3740 return 0;
3743 /* Accumulate one case or default label inside a case or switch statement.
3744 VALUE is the value of the case (a null pointer, for a default label).
3745 The function CONVERTER, when applied to arguments T and V,
3746 converts the value V to the type T.
3748 If not currently inside a case or switch statement, return 1 and do
3749 nothing. The caller will print a language-specific error message.
3750 If VALUE is a duplicate or overlaps, return 2 and do nothing
3751 except store the (first) duplicate node in *DUPLICATE.
3752 If VALUE is out of range, return 3 and do nothing.
3753 If we are jumping into the scope of a cleaup or var-sized array, return 5.
3754 Return 0 on success.
3756 Extended to handle range statements. */
3759 pushcase (value, converter, label, duplicate)
3760 register tree value;
3761 tree (*converter) PROTO((tree, tree));
3762 register tree label;
3763 tree *duplicate;
3765 register struct case_node **l;
3766 register struct case_node *n;
3767 tree index_type;
3768 tree nominal_type;
3770 if (output_bytecode)
3771 return bc_pushcase (value, label);
3773 /* Fail if not inside a real case statement. */
3774 if (! (case_stack && case_stack->data.case_stmt.start))
3775 return 1;
3777 if (stack_block_stack
3778 && stack_block_stack->depth > case_stack->depth)
3779 return 5;
3781 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
3782 nominal_type = case_stack->data.case_stmt.nominal_type;
3784 /* If the index is erroneous, avoid more problems: pretend to succeed. */
3785 if (index_type == error_mark_node)
3786 return 0;
3788 /* Convert VALUE to the type in which the comparisons are nominally done. */
3789 if (value != 0)
3790 value = (*converter) (nominal_type, value);
3792 /* If this is the first label, warn if any insns have been emitted. */
3793 if (case_stack->data.case_stmt.seenlabel == 0)
3795 rtx insn;
3796 for (insn = case_stack->data.case_stmt.start;
3797 insn;
3798 insn = NEXT_INSN (insn))
3800 if (GET_CODE (insn) == CODE_LABEL)
3801 break;
3802 if (GET_CODE (insn) != NOTE
3803 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
3805 warning ("unreachable code at beginning of %s",
3806 case_stack->data.case_stmt.printname);
3807 break;
3811 case_stack->data.case_stmt.seenlabel = 1;
3813 /* Fail if this value is out of range for the actual type of the index
3814 (which may be narrower than NOMINAL_TYPE). */
3815 if (value != 0 && ! int_fits_type_p (value, index_type))
3816 return 3;
3818 /* Fail if this is a duplicate or overlaps another entry. */
3819 if (value == 0)
3821 if (case_stack->data.case_stmt.default_label != 0)
3823 *duplicate = case_stack->data.case_stmt.default_label;
3824 return 2;
3826 case_stack->data.case_stmt.default_label = label;
3828 else
3830 /* Find the elt in the chain before which to insert the new value,
3831 to keep the chain sorted in increasing order.
3832 But report an error if this element is a duplicate. */
3833 for (l = &case_stack->data.case_stmt.case_list;
3834 /* Keep going past elements distinctly less than VALUE. */
3835 *l != 0 && tree_int_cst_lt ((*l)->high, value);
3836 l = &(*l)->right)
3838 if (*l)
3840 /* Element we will insert before must be distinctly greater;
3841 overlap means error. */
3842 if (! tree_int_cst_lt (value, (*l)->low))
3844 *duplicate = (*l)->code_label;
3845 return 2;
3849 /* Add this label to the chain, and succeed.
3850 Copy VALUE so it is on temporary rather than momentary
3851 obstack and will thus survive till the end of the case statement. */
3852 n = (struct case_node *) oballoc (sizeof (struct case_node));
3853 n->left = 0;
3854 n->right = *l;
3855 n->high = n->low = copy_node (value);
3856 n->code_label = label;
3857 *l = n;
3860 expand_label (label);
3861 return 0;
3864 /* Like pushcase but this case applies to all values
3865 between VALUE1 and VALUE2 (inclusive).
3866 The return value is the same as that of pushcase
3867 but there is one additional error code:
3868 4 means the specified range was empty. */
3871 pushcase_range (value1, value2, converter, label, duplicate)
3872 register tree value1, value2;
3873 tree (*converter) PROTO((tree, tree));
3874 register tree label;
3875 tree *duplicate;
3877 register struct case_node **l;
3878 register struct case_node *n;
3879 tree index_type;
3880 tree nominal_type;
3882 /* Fail if not inside a real case statement. */
3883 if (! (case_stack && case_stack->data.case_stmt.start))
3884 return 1;
3886 if (stack_block_stack
3887 && stack_block_stack->depth > case_stack->depth)
3888 return 5;
3890 index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
3891 nominal_type = case_stack->data.case_stmt.nominal_type;
3893 /* If the index is erroneous, avoid more problems: pretend to succeed. */
3894 if (index_type == error_mark_node)
3895 return 0;
3897 /* If this is the first label, warn if any insns have been emitted. */
3898 if (case_stack->data.case_stmt.seenlabel == 0)
3900 rtx insn;
3901 for (insn = case_stack->data.case_stmt.start;
3902 insn;
3903 insn = NEXT_INSN (insn))
3905 if (GET_CODE (insn) == CODE_LABEL)
3906 break;
3907 if (GET_CODE (insn) != NOTE
3908 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn)) != USE))
3910 warning ("unreachable code at beginning of %s",
3911 case_stack->data.case_stmt.printname);
3912 break;
3916 case_stack->data.case_stmt.seenlabel = 1;
3918 /* Convert VALUEs to type in which the comparisons are nominally done. */
3919 if (value1 == 0) /* Negative infinity. */
3920 value1 = TYPE_MIN_VALUE(index_type);
3921 value1 = (*converter) (nominal_type, value1);
3923 if (value2 == 0) /* Positive infinity. */
3924 value2 = TYPE_MAX_VALUE(index_type);
3925 value2 = (*converter) (nominal_type, value2);
3927 /* Fail if these values are out of range. */
3928 if (! int_fits_type_p (value1, index_type))
3929 return 3;
3931 if (! int_fits_type_p (value2, index_type))
3932 return 3;
3934 /* Fail if the range is empty. */
3935 if (tree_int_cst_lt (value2, value1))
3936 return 4;
3938 /* If the bounds are equal, turn this into the one-value case. */
3939 if (tree_int_cst_equal (value1, value2))
3940 return pushcase (value1, converter, label, duplicate);
3942 /* Find the elt in the chain before which to insert the new value,
3943 to keep the chain sorted in increasing order.
3944 But report an error if this element is a duplicate. */
3945 for (l = &case_stack->data.case_stmt.case_list;
3946 /* Keep going past elements distinctly less than this range. */
3947 *l != 0 && tree_int_cst_lt ((*l)->high, value1);
3948 l = &(*l)->right)
3950 if (*l)
3952 /* Element we will insert before must be distinctly greater;
3953 overlap means error. */
3954 if (! tree_int_cst_lt (value2, (*l)->low))
3956 *duplicate = (*l)->code_label;
3957 return 2;
3961 /* Add this label to the chain, and succeed.
3962 Copy VALUE1, VALUE2 so they are on temporary rather than momentary
3963 obstack and will thus survive till the end of the case statement. */
3965 n = (struct case_node *) oballoc (sizeof (struct case_node));
3966 n->left = 0;
3967 n->right = *l;
3968 n->low = copy_node (value1);
3969 n->high = copy_node (value2);
3970 n->code_label = label;
3971 *l = n;
3973 expand_label (label);
3975 case_stack->data.case_stmt.num_ranges++;
3977 return 0;
3981 /* Accumulate one case or default label; VALUE is the value of the
3982 case, or nil for a default label. If not currently inside a case,
3983 return 1 and do nothing. If VALUE is a duplicate or overlaps, return
3984 2 and do nothing. If VALUE is out of range, return 3 and do nothing.
3985 Return 0 on success. This function is a leftover from the earlier
3986 bytecode compiler, which was based on gcc 1.37. It should be
3987 merged into pushcase. */
3989 static int
3990 bc_pushcase (value, label)
3991 tree value;
3992 tree label;
3994 struct nesting *thiscase = case_stack;
3995 struct case_node *case_label, *new_label;
3997 if (! thiscase)
3998 return 1;
4000 /* Fail if duplicate, overlap, or out of type range. */
4001 if (value)
4003 value = convert (thiscase->data.case_stmt.nominal_type, value);
4004 if (! int_fits_type_p (value, thiscase->data.case_stmt.nominal_type))
4005 return 3;
4007 for (case_label = thiscase->data.case_stmt.case_list;
4008 case_label->left; case_label = case_label->left)
4009 if (! tree_int_cst_lt (case_label->left->high, value))
4010 break;
4012 if (case_label != thiscase->data.case_stmt.case_list
4013 && ! tree_int_cst_lt (case_label->high, value)
4014 || case_label->left && ! tree_int_cst_lt (value, case_label->left->low))
4015 return 2;
4017 new_label = (struct case_node *) oballoc (sizeof (struct case_node));
4018 new_label->low = new_label->high = copy_node (value);
4019 new_label->code_label = label;
4020 new_label->left = case_label->left;
4022 case_label->left = new_label;
4023 thiscase->data.case_stmt.num_ranges++;
4025 else
4027 if (thiscase->data.case_stmt.default_label)
4028 return 2;
4029 thiscase->data.case_stmt.default_label = label;
4032 expand_label (label);
4033 return 0;
4036 /* Called when the index of a switch statement is an enumerated type
4037 and there is no default label.
4039 Checks that all enumeration literals are covered by the case
4040 expressions of a switch. Also, warn if there are any extra
4041 switch cases that are *not* elements of the enumerated type.
4043 If all enumeration literals were covered by the case expressions,
4044 turn one of the expressions into the default expression since it should
4045 not be possible to fall through such a switch. */
4047 void
4048 check_for_full_enumeration_handling (type)
4049 tree type;
4051 register struct case_node *n;
4052 register struct case_node **l;
4053 register tree chain;
4054 int all_values = 1;
4056 if (output_bytecode)
4058 bc_check_for_full_enumeration_handling (type);
4059 return;
4062 /* The time complexity of this loop is currently O(N * M), with
4063 N being the number of members in the enumerated type, and
4064 M being the number of case expressions in the switch. */
4066 for (chain = TYPE_VALUES (type);
4067 chain;
4068 chain = TREE_CHAIN (chain))
4070 /* Find a match between enumeral and case expression, if possible.
4071 Quit looking when we've gone too far (since case expressions
4072 are kept sorted in ascending order). Warn about enumerators not
4073 handled in the switch statement case expression list. */
4075 for (n = case_stack->data.case_stmt.case_list;
4076 n && tree_int_cst_lt (n->high, TREE_VALUE (chain));
4077 n = n->right)
4080 if (!n || tree_int_cst_lt (TREE_VALUE (chain), n->low))
4082 if (warn_switch)
4083 warning ("enumeration value `%s' not handled in switch",
4084 IDENTIFIER_POINTER (TREE_PURPOSE (chain)));
4085 all_values = 0;
4089 /* Now we go the other way around; we warn if there are case
4090 expressions that don't correspond to enumerators. This can
4091 occur since C and C++ don't enforce type-checking of
4092 assignments to enumeration variables. */
4094 if (warn_switch)
4095 for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
4097 for (chain = TYPE_VALUES (type);
4098 chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain));
4099 chain = TREE_CHAIN (chain))
4102 if (!chain)
4104 if (TYPE_NAME (type) == 0)
4105 warning ("case value `%d' not in enumerated type",
4106 TREE_INT_CST_LOW (n->low));
4107 else
4108 warning ("case value `%d' not in enumerated type `%s'",
4109 TREE_INT_CST_LOW (n->low),
4110 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
4111 == IDENTIFIER_NODE)
4112 ? TYPE_NAME (type)
4113 : DECL_NAME (TYPE_NAME (type))));
4115 if (!tree_int_cst_equal (n->low, n->high))
4117 for (chain = TYPE_VALUES (type);
4118 chain && !tree_int_cst_equal (n->high, TREE_VALUE (chain));
4119 chain = TREE_CHAIN (chain))
4122 if (!chain)
4124 if (TYPE_NAME (type) == 0)
4125 warning ("case value `%d' not in enumerated type",
4126 TREE_INT_CST_LOW (n->high));
4127 else
4128 warning ("case value `%d' not in enumerated type `%s'",
4129 TREE_INT_CST_LOW (n->high),
4130 IDENTIFIER_POINTER ((TREE_CODE (TYPE_NAME (type))
4131 == IDENTIFIER_NODE)
4132 ? TYPE_NAME (type)
4133 : DECL_NAME (TYPE_NAME (type))));
4138 #if 0
4139 /* ??? This optimization is disabled because it causes valid programs to
4140 fail. ANSI C does not guarantee that an expression with enum type
4141 will have a value that is the same as one of the enumation literals. */
4143 /* If all values were found as case labels, make one of them the default
4144 label. Thus, this switch will never fall through. We arbitrarily pick
4145 the last one to make the default since this is likely the most
4146 efficient choice. */
4148 if (all_values)
4150 for (l = &case_stack->data.case_stmt.case_list;
4151 (*l)->right != 0;
4152 l = &(*l)->right)
4155 case_stack->data.case_stmt.default_label = (*l)->code_label;
4156 *l = 0;
4158 #endif /* 0 */
4162 /* Check that all enumeration literals are covered by the case
4163 expressions of a switch. Also warn if there are any cases
4164 that are not elements of the enumerated type. */
4166 static void
4167 bc_check_for_full_enumeration_handling (type)
4168 tree type;
4170 struct nesting *thiscase = case_stack;
4171 struct case_node *c;
4172 tree e;
4174 /* Check for enums not handled. */
4175 for (e = TYPE_VALUES (type); e; e = TREE_CHAIN (e))
4177 for (c = thiscase->data.case_stmt.case_list->left;
4178 c && tree_int_cst_lt (c->high, TREE_VALUE (e));
4179 c = c->left)
4181 if (! (c && tree_int_cst_equal (c->low, TREE_VALUE (e))))
4182 warning ("enumerated value `%s' not handled in switch",
4183 IDENTIFIER_POINTER (TREE_PURPOSE (e)));
4186 /* Check for cases not in the enumeration. */
4187 for (c = thiscase->data.case_stmt.case_list->left; c; c = c->left)
4189 for (e = TYPE_VALUES (type);
4190 e && !tree_int_cst_equal (c->low, TREE_VALUE (e));
4191 e = TREE_CHAIN (e))
4193 if (! e)
4194 warning ("case value `%d' not in enumerated type `%s'",
4195 TREE_INT_CST_LOW (c->low),
4196 IDENTIFIER_POINTER (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
4197 ? TYPE_NAME (type)
4198 : DECL_NAME (TYPE_NAME (type))));
4202 /* Terminate a case (Pascal) or switch (C) statement
4203 in which ORIG_INDEX is the expression to be tested.
4204 Generate the code to test it and jump to the right place. */
4206 void
4207 expand_end_case (orig_index)
4208 tree orig_index;
4210 tree minval, maxval, range, orig_minval;
4211 rtx default_label = 0;
4212 register struct case_node *n;
4213 int count;
4214 rtx index;
4215 rtx table_label;
4216 int ncases;
4217 rtx *labelvec;
4218 register int i;
4219 rtx before_case;
4220 register struct nesting *thiscase = case_stack;
4221 tree index_expr, index_type;
4222 int unsignedp;
4224 if (output_bytecode)
4226 bc_expand_end_case (orig_index);
4227 return;
4230 table_label = gen_label_rtx ();
4231 index_expr = thiscase->data.case_stmt.index_expr;
4232 index_type = TREE_TYPE (index_expr);
4233 unsignedp = TREE_UNSIGNED (index_type);
4235 do_pending_stack_adjust ();
4237 /* An ERROR_MARK occurs for various reasons including invalid data type. */
4238 if (index_type != error_mark_node)
4240 /* If switch expression was an enumerated type, check that all
4241 enumeration literals are covered by the cases.
4242 No sense trying this if there's a default case, however. */
4244 if (!thiscase->data.case_stmt.default_label
4245 && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
4246 && TREE_CODE (index_expr) != INTEGER_CST)
4247 check_for_full_enumeration_handling (TREE_TYPE (orig_index));
4249 /* If this is the first label, warn if any insns have been emitted. */
4250 if (thiscase->data.case_stmt.seenlabel == 0)
4252 rtx insn;
4253 for (insn = get_last_insn ();
4254 insn != case_stack->data.case_stmt.start;
4255 insn = PREV_INSN (insn))
4256 if (GET_CODE (insn) != NOTE
4257 && (GET_CODE (insn) != INSN || GET_CODE (PATTERN (insn))!= USE))
4259 warning ("unreachable code at beginning of %s",
4260 case_stack->data.case_stmt.printname);
4261 break;
4265 /* If we don't have a default-label, create one here,
4266 after the body of the switch. */
4267 if (thiscase->data.case_stmt.default_label == 0)
4269 thiscase->data.case_stmt.default_label
4270 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
4271 expand_label (thiscase->data.case_stmt.default_label);
4273 default_label = label_rtx (thiscase->data.case_stmt.default_label);
4275 before_case = get_last_insn ();
4277 /* Simplify the case-list before we count it. */
4278 group_case_nodes (thiscase->data.case_stmt.case_list);
4280 /* Get upper and lower bounds of case values.
4281 Also convert all the case values to the index expr's data type. */
4283 count = 0;
4284 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
4286 /* Check low and high label values are integers. */
4287 if (TREE_CODE (n->low) != INTEGER_CST)
4288 abort ();
4289 if (TREE_CODE (n->high) != INTEGER_CST)
4290 abort ();
4292 n->low = convert (index_type, n->low);
4293 n->high = convert (index_type, n->high);
4295 /* Count the elements and track the largest and smallest
4296 of them (treating them as signed even if they are not). */
4297 if (count++ == 0)
4299 minval = n->low;
4300 maxval = n->high;
4302 else
4304 if (INT_CST_LT (n->low, minval))
4305 minval = n->low;
4306 if (INT_CST_LT (maxval, n->high))
4307 maxval = n->high;
4309 /* A range counts double, since it requires two compares. */
4310 if (! tree_int_cst_equal (n->low, n->high))
4311 count++;
4314 orig_minval = minval;
4316 /* Compute span of values. */
4317 if (count != 0)
4318 range = fold (build (MINUS_EXPR, index_type, maxval, minval));
4320 if (count == 0)
4322 expand_expr (index_expr, const0_rtx, VOIDmode, 0);
4323 emit_queue ();
4324 emit_jump (default_label);
4327 /* If range of values is much bigger than number of values,
4328 make a sequence of conditional branches instead of a dispatch.
4329 If the switch-index is a constant, do it this way
4330 because we can optimize it. */
4332 #ifndef CASE_VALUES_THRESHOLD
4333 #ifdef HAVE_casesi
4334 #define CASE_VALUES_THRESHOLD (HAVE_casesi ? 4 : 5)
4335 #else
4336 /* If machine does not have a case insn that compares the
4337 bounds, this means extra overhead for dispatch tables
4338 which raises the threshold for using them. */
4339 #define CASE_VALUES_THRESHOLD 5
4340 #endif /* HAVE_casesi */
4341 #endif /* CASE_VALUES_THRESHOLD */
4343 else if (TREE_INT_CST_HIGH (range) != 0
4344 || count < CASE_VALUES_THRESHOLD
4345 || ((unsigned HOST_WIDE_INT) (TREE_INT_CST_LOW (range))
4346 > 10 * count)
4347 || TREE_CODE (index_expr) == INTEGER_CST
4348 /* These will reduce to a constant. */
4349 || (TREE_CODE (index_expr) == CALL_EXPR
4350 && TREE_CODE (TREE_OPERAND (index_expr, 0)) == ADDR_EXPR
4351 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == FUNCTION_DECL
4352 && DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (index_expr, 0), 0)) == BUILT_IN_CLASSIFY_TYPE)
4353 || (TREE_CODE (index_expr) == COMPOUND_EXPR
4354 && TREE_CODE (TREE_OPERAND (index_expr, 1)) == INTEGER_CST))
4356 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
4358 /* If the index is a short or char that we do not have
4359 an insn to handle comparisons directly, convert it to
4360 a full integer now, rather than letting each comparison
4361 generate the conversion. */
4363 if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
4364 && (cmp_optab->handlers[(int) GET_MODE(index)].insn_code
4365 == CODE_FOR_nothing))
4367 enum machine_mode wider_mode;
4368 for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
4369 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
4370 if (cmp_optab->handlers[(int) wider_mode].insn_code
4371 != CODE_FOR_nothing)
4373 index = convert_to_mode (wider_mode, index, unsignedp);
4374 break;
4378 emit_queue ();
4379 do_pending_stack_adjust ();
4381 index = protect_from_queue (index, 0);
4382 if (GET_CODE (index) == MEM)
4383 index = copy_to_reg (index);
4384 if (GET_CODE (index) == CONST_INT
4385 || TREE_CODE (index_expr) == INTEGER_CST)
4387 /* Make a tree node with the proper constant value
4388 if we don't already have one. */
4389 if (TREE_CODE (index_expr) != INTEGER_CST)
4391 index_expr
4392 = build_int_2 (INTVAL (index),
4393 unsignedp || INTVAL (index) >= 0 ? 0 : -1);
4394 index_expr = convert (index_type, index_expr);
4397 /* For constant index expressions we need only
4398 issue a unconditional branch to the appropriate
4399 target code. The job of removing any unreachable
4400 code is left to the optimisation phase if the
4401 "-O" option is specified. */
4402 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
4403 if (! tree_int_cst_lt (index_expr, n->low)
4404 && ! tree_int_cst_lt (n->high, index_expr))
4405 break;
4407 if (n)
4408 emit_jump (label_rtx (n->code_label));
4409 else
4410 emit_jump (default_label);
4412 else
4414 /* If the index expression is not constant we generate
4415 a binary decision tree to select the appropriate
4416 target code. This is done as follows:
4418 The list of cases is rearranged into a binary tree,
4419 nearly optimal assuming equal probability for each case.
4421 The tree is transformed into RTL, eliminating
4422 redundant test conditions at the same time.
4424 If program flow could reach the end of the
4425 decision tree an unconditional jump to the
4426 default code is emitted. */
4428 use_cost_table
4429 = (TREE_CODE (TREE_TYPE (orig_index)) != ENUMERAL_TYPE
4430 && estimate_case_costs (thiscase->data.case_stmt.case_list));
4431 balance_case_nodes (&thiscase->data.case_stmt.case_list,
4432 NULL_PTR);
4433 emit_case_nodes (index, thiscase->data.case_stmt.case_list,
4434 default_label, index_type);
4435 emit_jump_if_reachable (default_label);
4438 else
4440 int win = 0;
4441 #ifdef HAVE_casesi
4442 if (HAVE_casesi)
4444 enum machine_mode index_mode = SImode;
4445 int index_bits = GET_MODE_BITSIZE (index_mode);
4446 rtx op1, op2;
4447 enum machine_mode op_mode;
4449 /* Convert the index to SImode. */
4450 if (GET_MODE_BITSIZE (TYPE_MODE (index_type))
4451 > GET_MODE_BITSIZE (index_mode))
4453 enum machine_mode omode = TYPE_MODE (index_type);
4454 rtx rangertx = expand_expr (range, NULL_RTX, VOIDmode, 0);
4456 /* We must handle the endpoints in the original mode. */
4457 index_expr = build (MINUS_EXPR, index_type,
4458 index_expr, minval);
4459 minval = integer_zero_node;
4460 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
4461 emit_cmp_insn (rangertx, index, LTU, NULL_RTX, omode, 1, 0);
4462 emit_jump_insn (gen_bltu (default_label));
4463 /* Now we can safely truncate. */
4464 index = convert_to_mode (index_mode, index, 0);
4466 else
4468 if (TYPE_MODE (index_type) != index_mode)
4470 index_expr = convert (type_for_size (index_bits, 0),
4471 index_expr);
4472 index_type = TREE_TYPE (index_expr);
4475 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
4477 emit_queue ();
4478 index = protect_from_queue (index, 0);
4479 do_pending_stack_adjust ();
4481 op_mode = insn_operand_mode[(int)CODE_FOR_casesi][0];
4482 if (! (*insn_operand_predicate[(int)CODE_FOR_casesi][0])
4483 (index, op_mode))
4484 index = copy_to_mode_reg (op_mode, index);
4486 op1 = expand_expr (minval, NULL_RTX, VOIDmode, 0);
4488 op_mode = insn_operand_mode[(int)CODE_FOR_casesi][1];
4489 if (! (*insn_operand_predicate[(int)CODE_FOR_casesi][1])
4490 (op1, op_mode))
4491 op1 = copy_to_mode_reg (op_mode, op1);
4493 op2 = expand_expr (range, NULL_RTX, VOIDmode, 0);
4495 op_mode = insn_operand_mode[(int)CODE_FOR_casesi][2];
4496 if (! (*insn_operand_predicate[(int)CODE_FOR_casesi][2])
4497 (op2, op_mode))
4498 op2 = copy_to_mode_reg (op_mode, op2);
4500 emit_jump_insn (gen_casesi (index, op1, op2,
4501 table_label, default_label));
4502 win = 1;
4504 #endif
4505 #ifdef HAVE_tablejump
4506 if (! win && HAVE_tablejump)
4508 index_expr = convert (thiscase->data.case_stmt.nominal_type,
4509 fold (build (MINUS_EXPR, index_type,
4510 index_expr, minval)));
4511 index_type = TREE_TYPE (index_expr);
4512 index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
4513 emit_queue ();
4514 index = protect_from_queue (index, 0);
4515 do_pending_stack_adjust ();
4517 do_tablejump (index, TYPE_MODE (index_type),
4518 expand_expr (range, NULL_RTX, VOIDmode, 0),
4519 table_label, default_label);
4520 win = 1;
4522 #endif
4523 if (! win)
4524 abort ();
4526 /* Get table of labels to jump to, in order of case index. */
4528 ncases = TREE_INT_CST_LOW (range) + 1;
4529 labelvec = (rtx *) alloca (ncases * sizeof (rtx));
4530 bzero (labelvec, ncases * sizeof (rtx));
4532 for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
4534 register HOST_WIDE_INT i
4535 = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (orig_minval);
4537 while (1)
4539 labelvec[i]
4540 = gen_rtx (LABEL_REF, Pmode, label_rtx (n->code_label));
4541 if (i + TREE_INT_CST_LOW (orig_minval)
4542 == TREE_INT_CST_LOW (n->high))
4543 break;
4544 i++;
4548 /* Fill in the gaps with the default. */
4549 for (i = 0; i < ncases; i++)
4550 if (labelvec[i] == 0)
4551 labelvec[i] = gen_rtx (LABEL_REF, Pmode, default_label);
4553 /* Output the table */
4554 emit_label (table_label);
4556 /* This would be a lot nicer if CASE_VECTOR_PC_RELATIVE
4557 were an expression, instead of an #ifdef/#ifndef. */
4558 if (
4559 #ifdef CASE_VECTOR_PC_RELATIVE
4560 1 ||
4561 #endif
4562 flag_pic)
4563 emit_jump_insn (gen_rtx (ADDR_DIFF_VEC, CASE_VECTOR_MODE,
4564 gen_rtx (LABEL_REF, Pmode, table_label),
4565 gen_rtvec_v (ncases, labelvec)));
4566 else
4567 emit_jump_insn (gen_rtx (ADDR_VEC, CASE_VECTOR_MODE,
4568 gen_rtvec_v (ncases, labelvec)));
4570 /* If the case insn drops through the table,
4571 after the table we must jump to the default-label.
4572 Otherwise record no drop-through after the table. */
4573 #ifdef CASE_DROPS_THROUGH
4574 emit_jump (default_label);
4575 #else
4576 emit_barrier ();
4577 #endif
4580 before_case = squeeze_notes (NEXT_INSN (before_case), get_last_insn ());
4581 reorder_insns (before_case, get_last_insn (),
4582 thiscase->data.case_stmt.start);
4585 if (thiscase->exit_label)
4586 emit_label (thiscase->exit_label);
4588 POPSTACK (case_stack);
4590 free_temp_slots ();
4594 /* Terminate a case statement. EXPR is the original index
4595 expression. */
4597 static void
4598 bc_expand_end_case (expr)
4599 tree expr;
4601 struct nesting *thiscase = case_stack;
4602 enum bytecode_opcode opcode;
4603 struct bc_label *jump_label;
4604 struct case_node *c;
4606 bc_emit_bytecode (jump);
4607 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (thiscase->exit_label));
4609 #ifdef DEBUG_PRINT_CODE
4610 fputc ('\n', stderr);
4611 #endif
4613 /* Now that the size of the jump table is known, emit the actual
4614 indexed jump instruction. */
4615 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (thiscase->data.case_stmt.skip_label));
4617 opcode = TYPE_MODE (thiscase->data.case_stmt.nominal_type) == SImode
4618 ? TREE_UNSIGNED (thiscase->data.case_stmt.nominal_type) ? caseSU : caseSI
4619 : TREE_UNSIGNED (thiscase->data.case_stmt.nominal_type) ? caseDU : caseDI;
4621 bc_emit_bytecode (opcode);
4623 /* Now emit the case instructions literal arguments, in order.
4624 In addition to the value on the stack, it uses:
4625 1. The address of the jump table.
4626 2. The size of the jump table.
4627 3. The default label. */
4629 jump_label = bc_get_bytecode_label ();
4630 bc_emit_bytecode_labelref (jump_label);
4631 bc_emit_bytecode_const ((char *) &thiscase->data.case_stmt.num_ranges,
4632 sizeof thiscase->data.case_stmt.num_ranges);
4634 if (thiscase->data.case_stmt.default_label)
4635 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (DECL_RTL (thiscase->data.case_stmt.default_label)));
4636 else
4637 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (thiscase->exit_label));
4639 /* Output the jump table. */
4641 bc_align_bytecode (3 /* PTR_ALIGN */);
4642 bc_emit_bytecode_labeldef (jump_label);
4644 if (TYPE_MODE (thiscase->data.case_stmt.nominal_type) == SImode)
4645 for (c = thiscase->data.case_stmt.case_list->left; c; c = c->left)
4647 opcode = TREE_INT_CST_LOW (c->low);
4648 bc_emit_bytecode_const ((char *) &opcode, sizeof opcode);
4650 opcode = TREE_INT_CST_LOW (c->high);
4651 bc_emit_bytecode_const ((char *) &opcode, sizeof opcode);
4653 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (DECL_RTL (c->code_label)));
4655 else
4656 if (TYPE_MODE (thiscase->data.case_stmt.nominal_type) == DImode)
4657 for (c = thiscase->data.case_stmt.case_list->left; c; c = c->left)
4659 bc_emit_bytecode_DI_const (c->low);
4660 bc_emit_bytecode_DI_const (c->high);
4662 bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (DECL_RTL (c->code_label)));
4664 else
4665 /* Bad mode */
4666 abort ();
4669 bc_emit_bytecode_labeldef (BYTECODE_BC_LABEL (thiscase->exit_label));
4671 /* Possibly issue enumeration warnings. */
4673 if (!thiscase->data.case_stmt.default_label
4674 && TREE_CODE (TREE_TYPE (expr)) == ENUMERAL_TYPE
4675 && TREE_CODE (expr) != INTEGER_CST
4676 && warn_switch)
4677 check_for_full_enumeration_handling (TREE_TYPE (expr));
4680 #ifdef DEBUG_PRINT_CODE
4681 fputc ('\n', stderr);
4682 #endif
4684 POPSTACK (case_stack);
4688 /* Return unique bytecode ID. */
4690 int
4691 bc_new_uid ()
4693 static int bc_uid = 0;
4695 return (++bc_uid);
4698 /* Generate code to jump to LABEL if OP1 and OP2 are equal. */
4700 static void
4701 do_jump_if_equal (op1, op2, label, unsignedp)
4702 rtx op1, op2, label;
4703 int unsignedp;
4705 if (GET_CODE (op1) == CONST_INT
4706 && GET_CODE (op2) == CONST_INT)
4708 if (INTVAL (op1) == INTVAL (op2))
4709 emit_jump (label);
4711 else
4713 enum machine_mode mode = GET_MODE (op1);
4714 if (mode == VOIDmode)
4715 mode = GET_MODE (op2);
4716 emit_cmp_insn (op1, op2, EQ, NULL_RTX, mode, unsignedp, 0);
4717 emit_jump_insn (gen_beq (label));
4721 /* Not all case values are encountered equally. This function
4722 uses a heuristic to weight case labels, in cases where that
4723 looks like a reasonable thing to do.
4725 Right now, all we try to guess is text, and we establish the
4726 following weights:
4728 chars above space: 16
4729 digits: 16
4730 default: 12
4731 space, punct: 8
4732 tab: 4
4733 newline: 2
4734 other "\" chars: 1
4735 remaining chars: 0
4737 If we find any cases in the switch that are not either -1 or in the range
4738 of valid ASCII characters, or are control characters other than those
4739 commonly used with "\", don't treat this switch scanning text.
4741 Return 1 if these nodes are suitable for cost estimation, otherwise
4742 return 0. */
4744 static int
4745 estimate_case_costs (node)
4746 case_node_ptr node;
4748 tree min_ascii = build_int_2 (-1, -1);
4749 tree max_ascii = convert (TREE_TYPE (node->high), build_int_2 (127, 0));
4750 case_node_ptr n;
4751 int i;
4753 /* If we haven't already made the cost table, make it now. Note that the
4754 lower bound of the table is -1, not zero. */
4756 if (cost_table == NULL)
4758 cost_table = ((short *) xmalloc (129 * sizeof (short))) + 1;
4759 bzero (cost_table - 1, 129 * sizeof (short));
4761 for (i = 0; i < 128; i++)
4763 if (isalnum (i))
4764 cost_table[i] = 16;
4765 else if (ispunct (i))
4766 cost_table[i] = 8;
4767 else if (iscntrl (i))
4768 cost_table[i] = -1;
4771 cost_table[' '] = 8;
4772 cost_table['\t'] = 4;
4773 cost_table['\0'] = 4;
4774 cost_table['\n'] = 2;
4775 cost_table['\f'] = 1;
4776 cost_table['\v'] = 1;
4777 cost_table['\b'] = 1;
4780 /* See if all the case expressions look like text. It is text if the
4781 constant is >= -1 and the highest constant is <= 127. Do all comparisons
4782 as signed arithmetic since we don't want to ever access cost_table with a
4783 value less than -1. Also check that none of the constants in a range
4784 are strange control characters. */
4786 for (n = node; n; n = n->right)
4788 if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
4789 return 0;
4791 for (i = TREE_INT_CST_LOW (n->low); i <= TREE_INT_CST_LOW (n->high); i++)
4792 if (cost_table[i] < 0)
4793 return 0;
4796 /* All interesting values are within the range of interesting
4797 ASCII characters. */
4798 return 1;
4801 /* Scan an ordered list of case nodes
4802 combining those with consecutive values or ranges.
4804 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
4806 static void
4807 group_case_nodes (head)
4808 case_node_ptr head;
4810 case_node_ptr node = head;
4812 while (node)
4814 rtx lb = next_real_insn (label_rtx (node->code_label));
4815 case_node_ptr np = node;
4817 /* Try to group the successors of NODE with NODE. */
4818 while (((np = np->right) != 0)
4819 /* Do they jump to the same place? */
4820 && next_real_insn (label_rtx (np->code_label)) == lb
4821 /* Are their ranges consecutive? */
4822 && tree_int_cst_equal (np->low,
4823 fold (build (PLUS_EXPR,
4824 TREE_TYPE (node->high),
4825 node->high,
4826 integer_one_node)))
4827 /* An overflow is not consecutive. */
4828 && tree_int_cst_lt (node->high,
4829 fold (build (PLUS_EXPR,
4830 TREE_TYPE (node->high),
4831 node->high,
4832 integer_one_node))))
4834 node->high = np->high;
4836 /* NP is the first node after NODE which can't be grouped with it.
4837 Delete the nodes in between, and move on to that node. */
4838 node->right = np;
4839 node = np;
4843 /* Take an ordered list of case nodes
4844 and transform them into a near optimal binary tree,
4845 on the assumption that any target code selection value is as
4846 likely as any other.
4848 The transformation is performed by splitting the ordered
4849 list into two equal sections plus a pivot. The parts are
4850 then attached to the pivot as left and right branches. Each
4851 branch is is then transformed recursively. */
4853 static void
4854 balance_case_nodes (head, parent)
4855 case_node_ptr *head;
4856 case_node_ptr parent;
4858 register case_node_ptr np;
4860 np = *head;
4861 if (np)
4863 int cost = 0;
4864 int i = 0;
4865 int ranges = 0;
4866 register case_node_ptr *npp;
4867 case_node_ptr left;
4869 /* Count the number of entries on branch. Also count the ranges. */
4871 while (np)
4873 if (!tree_int_cst_equal (np->low, np->high))
4875 ranges++;
4876 if (use_cost_table)
4877 cost += cost_table[TREE_INT_CST_LOW (np->high)];
4880 if (use_cost_table)
4881 cost += cost_table[TREE_INT_CST_LOW (np->low)];
4883 i++;
4884 np = np->right;
4887 if (i > 2)
4889 /* Split this list if it is long enough for that to help. */
4890 npp = head;
4891 left = *npp;
4892 if (use_cost_table)
4894 /* Find the place in the list that bisects the list's total cost,
4895 Here I gets half the total cost. */
4896 int n_moved = 0;
4897 i = (cost + 1) / 2;
4898 while (1)
4900 /* Skip nodes while their cost does not reach that amount. */
4901 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
4902 i -= cost_table[TREE_INT_CST_LOW ((*npp)->high)];
4903 i -= cost_table[TREE_INT_CST_LOW ((*npp)->low)];
4904 if (i <= 0)
4905 break;
4906 npp = &(*npp)->right;
4907 n_moved += 1;
4909 if (n_moved == 0)
4911 /* Leave this branch lopsided, but optimize left-hand
4912 side and fill in `parent' fields for right-hand side. */
4913 np = *head;
4914 np->parent = parent;
4915 balance_case_nodes (&np->left, np);
4916 for (; np->right; np = np->right)
4917 np->right->parent = np;
4918 return;
4921 /* If there are just three nodes, split at the middle one. */
4922 else if (i == 3)
4923 npp = &(*npp)->right;
4924 else
4926 /* Find the place in the list that bisects the list's total cost,
4927 where ranges count as 2.
4928 Here I gets half the total cost. */
4929 i = (i + ranges + 1) / 2;
4930 while (1)
4932 /* Skip nodes while their cost does not reach that amount. */
4933 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
4934 i--;
4935 i--;
4936 if (i <= 0)
4937 break;
4938 npp = &(*npp)->right;
4941 *head = np = *npp;
4942 *npp = 0;
4943 np->parent = parent;
4944 np->left = left;
4946 /* Optimize each of the two split parts. */
4947 balance_case_nodes (&np->left, np);
4948 balance_case_nodes (&np->right, np);
4950 else
4952 /* Else leave this branch as one level,
4953 but fill in `parent' fields. */
4954 np = *head;
4955 np->parent = parent;
4956 for (; np->right; np = np->right)
4957 np->right->parent = np;
4962 /* Search the parent sections of the case node tree
4963 to see if a test for the lower bound of NODE would be redundant.
4964 INDEX_TYPE is the type of the index expression.
4966 The instructions to generate the case decision tree are
4967 output in the same order as nodes are processed so it is
4968 known that if a parent node checks the range of the current
4969 node minus one that the current node is bounded at its lower
4970 span. Thus the test would be redundant. */
4972 static int
4973 node_has_low_bound (node, index_type)
4974 case_node_ptr node;
4975 tree index_type;
4977 tree low_minus_one;
4978 case_node_ptr pnode;
4980 /* If the lower bound of this node is the lowest value in the index type,
4981 we need not test it. */
4983 if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
4984 return 1;
4986 /* If this node has a left branch, the value at the left must be less
4987 than that at this node, so it cannot be bounded at the bottom and
4988 we need not bother testing any further. */
4990 if (node->left)
4991 return 0;
4993 low_minus_one = fold (build (MINUS_EXPR, TREE_TYPE (node->low),
4994 node->low, integer_one_node));
4996 /* If the subtraction above overflowed, we can't verify anything.
4997 Otherwise, look for a parent that tests our value - 1. */
4999 if (! tree_int_cst_lt (low_minus_one, node->low))
5000 return 0;
5002 for (pnode = node->parent; pnode; pnode = pnode->parent)
5003 if (tree_int_cst_equal (low_minus_one, pnode->high))
5004 return 1;
5006 return 0;
5009 /* Search the parent sections of the case node tree
5010 to see if a test for the upper bound of NODE would be redundant.
5011 INDEX_TYPE is the type of the index expression.
5013 The instructions to generate the case decision tree are
5014 output in the same order as nodes are processed so it is
5015 known that if a parent node checks the range of the current
5016 node plus one that the current node is bounded at its upper
5017 span. Thus the test would be redundant. */
5019 static int
5020 node_has_high_bound (node, index_type)
5021 case_node_ptr node;
5022 tree index_type;
5024 tree high_plus_one;
5025 case_node_ptr pnode;
5027 /* If the upper bound of this node is the highest value in the type
5028 of the index expression, we need not test against it. */
5030 if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
5031 return 1;
5033 /* If this node has a right branch, the value at the right must be greater
5034 than that at this node, so it cannot be bounded at the top and
5035 we need not bother testing any further. */
5037 if (node->right)
5038 return 0;
5040 high_plus_one = fold (build (PLUS_EXPR, TREE_TYPE (node->high),
5041 node->high, integer_one_node));
5043 /* If the addition above overflowed, we can't verify anything.
5044 Otherwise, look for a parent that tests our value + 1. */
5046 if (! tree_int_cst_lt (node->high, high_plus_one))
5047 return 0;
5049 for (pnode = node->parent; pnode; pnode = pnode->parent)
5050 if (tree_int_cst_equal (high_plus_one, pnode->low))
5051 return 1;
5053 return 0;
5056 /* Search the parent sections of the
5057 case node tree to see if both tests for the upper and lower
5058 bounds of NODE would be redundant. */
5060 static int
5061 node_is_bounded (node, index_type)
5062 case_node_ptr node;
5063 tree index_type;
5065 return (node_has_low_bound (node, index_type)
5066 && node_has_high_bound (node, index_type));
5069 /* Emit an unconditional jump to LABEL unless it would be dead code. */
5071 static void
5072 emit_jump_if_reachable (label)
5073 rtx label;
5075 if (GET_CODE (get_last_insn ()) != BARRIER)
5076 emit_jump (label);
5079 /* Emit step-by-step code to select a case for the value of INDEX.
5080 The thus generated decision tree follows the form of the
5081 case-node binary tree NODE, whose nodes represent test conditions.
5082 INDEX_TYPE is the type of the index of the switch.
5084 Care is taken to prune redundant tests from the decision tree
5085 by detecting any boundary conditions already checked by
5086 emitted rtx. (See node_has_high_bound, node_has_low_bound
5087 and node_is_bounded, above.)
5089 Where the test conditions can be shown to be redundant we emit
5090 an unconditional jump to the target code. As a further
5091 optimization, the subordinates of a tree node are examined to
5092 check for bounded nodes. In this case conditional and/or
5093 unconditional jumps as a result of the boundary check for the
5094 current node are arranged to target the subordinates associated
5095 code for out of bound conditions on the current node node.
5097 We can assume that when control reaches the code generated here,
5098 the index value has already been compared with the parents
5099 of this node, and determined to be on the same side of each parent
5100 as this node is. Thus, if this node tests for the value 51,
5101 and a parent tested for 52, we don't need to consider
5102 the possibility of a value greater than 51. If another parent
5103 tests for the value 50, then this node need not test anything. */
5105 static void
5106 emit_case_nodes (index, node, default_label, index_type)
5107 rtx index;
5108 case_node_ptr node;
5109 rtx default_label;
5110 tree index_type;
5112 /* If INDEX has an unsigned type, we must make unsigned branches. */
5113 int unsignedp = TREE_UNSIGNED (index_type);
5114 typedef rtx rtx_function ();
5115 rtx_function *gen_bgt_pat = unsignedp ? gen_bgtu : gen_bgt;
5116 rtx_function *gen_bge_pat = unsignedp ? gen_bgeu : gen_bge;
5117 rtx_function *gen_blt_pat = unsignedp ? gen_bltu : gen_blt;
5118 rtx_function *gen_ble_pat = unsignedp ? gen_bleu : gen_ble;
5119 enum machine_mode mode = GET_MODE (index);
5121 /* See if our parents have already tested everything for us.
5122 If they have, emit an unconditional jump for this node. */
5123 if (node_is_bounded (node, index_type))
5124 emit_jump (label_rtx (node->code_label));
5126 else if (tree_int_cst_equal (node->low, node->high))
5128 /* Node is single valued. First see if the index expression matches
5129 this node and then check our children, if any. */
5131 do_jump_if_equal (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
5132 label_rtx (node->code_label), unsignedp);
5134 if (node->right != 0 && node->left != 0)
5136 /* This node has children on both sides.
5137 Dispatch to one side or the other
5138 by comparing the index value with this node's value.
5139 If one subtree is bounded, check that one first,
5140 so we can avoid real branches in the tree. */
5142 if (node_is_bounded (node->right, index_type))
5144 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5145 VOIDmode, 0),
5146 GT, NULL_RTX, mode, unsignedp, 0);
5148 emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->code_label)));
5149 emit_case_nodes (index, node->left, default_label, index_type);
5152 else if (node_is_bounded (node->left, index_type))
5154 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5155 VOIDmode, 0),
5156 LT, NULL_RTX, mode, unsignedp, 0);
5157 emit_jump_insn ((*gen_blt_pat) (label_rtx (node->left->code_label)));
5158 emit_case_nodes (index, node->right, default_label, index_type);
5161 else
5163 /* Neither node is bounded. First distinguish the two sides;
5164 then emit the code for one side at a time. */
5166 tree test_label
5167 = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5169 /* See if the value is on the right. */
5170 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5171 VOIDmode, 0),
5172 GT, NULL_RTX, mode, unsignedp, 0);
5173 emit_jump_insn ((*gen_bgt_pat) (label_rtx (test_label)));
5175 /* Value must be on the left.
5176 Handle the left-hand subtree. */
5177 emit_case_nodes (index, node->left, default_label, index_type);
5178 /* If left-hand subtree does nothing,
5179 go to default. */
5180 emit_jump_if_reachable (default_label);
5182 /* Code branches here for the right-hand subtree. */
5183 expand_label (test_label);
5184 emit_case_nodes (index, node->right, default_label, index_type);
5188 else if (node->right != 0 && node->left == 0)
5190 /* Here we have a right child but no left so we issue conditional
5191 branch to default and process the right child.
5193 Omit the conditional branch to default if we it avoid only one
5194 right child; it costs too much space to save so little time. */
5196 if (node->right->right || node->right->left
5197 || !tree_int_cst_equal (node->right->low, node->right->high))
5199 if (!node_has_low_bound (node, index_type))
5201 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5202 VOIDmode, 0),
5203 LT, NULL_RTX, mode, unsignedp, 0);
5204 emit_jump_insn ((*gen_blt_pat) (default_label));
5207 emit_case_nodes (index, node->right, default_label, index_type);
5209 else
5210 /* We cannot process node->right normally
5211 since we haven't ruled out the numbers less than
5212 this node's value. So handle node->right explicitly. */
5213 do_jump_if_equal (index,
5214 expand_expr (node->right->low, NULL_RTX,
5215 VOIDmode, 0),
5216 label_rtx (node->right->code_label), unsignedp);
5219 else if (node->right == 0 && node->left != 0)
5221 /* Just one subtree, on the left. */
5223 #if 0 /* The following code and comment were formerly part
5224 of the condition here, but they didn't work
5225 and I don't understand what the idea was. -- rms. */
5226 /* If our "most probable entry" is less probable
5227 than the default label, emit a jump to
5228 the default label using condition codes
5229 already lying around. With no right branch,
5230 a branch-greater-than will get us to the default
5231 label correctly. */
5232 if (use_cost_table
5233 && cost_table[TREE_INT_CST_LOW (node->high)] < 12)
5235 #endif /* 0 */
5236 if (node->left->left || node->left->right
5237 || !tree_int_cst_equal (node->left->low, node->left->high))
5239 if (!node_has_high_bound (node, index_type))
5241 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5242 VOIDmode, 0),
5243 GT, NULL_RTX, mode, unsignedp, 0);
5244 emit_jump_insn ((*gen_bgt_pat) (default_label));
5247 emit_case_nodes (index, node->left, default_label, index_type);
5249 else
5250 /* We cannot process node->left normally
5251 since we haven't ruled out the numbers less than
5252 this node's value. So handle node->left explicitly. */
5253 do_jump_if_equal (index,
5254 expand_expr (node->left->low, NULL_RTX,
5255 VOIDmode, 0),
5256 label_rtx (node->left->code_label), unsignedp);
5259 else
5261 /* Node is a range. These cases are very similar to those for a single
5262 value, except that we do not start by testing whether this node
5263 is the one to branch to. */
5265 if (node->right != 0 && node->left != 0)
5267 /* Node has subtrees on both sides.
5268 If the right-hand subtree is bounded,
5269 test for it first, since we can go straight there.
5270 Otherwise, we need to make a branch in the control structure,
5271 then handle the two subtrees. */
5272 tree test_label = 0;
5274 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5275 VOIDmode, 0),
5276 GT, NULL_RTX, mode, unsignedp, 0);
5278 if (node_is_bounded (node->right, index_type))
5279 /* Right hand node is fully bounded so we can eliminate any
5280 testing and branch directly to the target code. */
5281 emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->code_label)));
5282 else
5284 /* Right hand node requires testing.
5285 Branch to a label where we will handle it later. */
5287 test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
5288 emit_jump_insn ((*gen_bgt_pat) (label_rtx (test_label)));
5291 /* Value belongs to this node or to the left-hand subtree. */
5293 emit_cmp_insn (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
5294 GE, NULL_RTX, mode, unsignedp, 0);
5295 emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
5297 /* Handle the left-hand subtree. */
5298 emit_case_nodes (index, node->left, default_label, index_type);
5300 /* If right node had to be handled later, do that now. */
5302 if (test_label)
5304 /* If the left-hand subtree fell through,
5305 don't let it fall into the right-hand subtree. */
5306 emit_jump_if_reachable (default_label);
5308 expand_label (test_label);
5309 emit_case_nodes (index, node->right, default_label, index_type);
5313 else if (node->right != 0 && node->left == 0)
5315 /* Deal with values to the left of this node,
5316 if they are possible. */
5317 if (!node_has_low_bound (node, index_type))
5319 emit_cmp_insn (index, expand_expr (node->low, NULL_RTX,
5320 VOIDmode, 0),
5321 LT, NULL_RTX, mode, unsignedp, 0);
5322 emit_jump_insn ((*gen_blt_pat) (default_label));
5325 /* Value belongs to this node or to the right-hand subtree. */
5327 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5328 VOIDmode, 0),
5329 LE, NULL_RTX, mode, unsignedp, 0);
5330 emit_jump_insn ((*gen_ble_pat) (label_rtx (node->code_label)));
5332 emit_case_nodes (index, node->right, default_label, index_type);
5335 else if (node->right == 0 && node->left != 0)
5337 /* Deal with values to the right of this node,
5338 if they are possible. */
5339 if (!node_has_high_bound (node, index_type))
5341 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5342 VOIDmode, 0),
5343 GT, NULL_RTX, mode, unsignedp, 0);
5344 emit_jump_insn ((*gen_bgt_pat) (default_label));
5347 /* Value belongs to this node or to the left-hand subtree. */
5349 emit_cmp_insn (index, expand_expr (node->low, NULL_RTX, VOIDmode, 0),
5350 GE, NULL_RTX, mode, unsignedp, 0);
5351 emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
5353 emit_case_nodes (index, node->left, default_label, index_type);
5356 else
5358 /* Node has no children so we check low and high bounds to remove
5359 redundant tests. Only one of the bounds can exist,
5360 since otherwise this node is bounded--a case tested already. */
5362 if (!node_has_high_bound (node, index_type))
5364 emit_cmp_insn (index, expand_expr (node->high, NULL_RTX,
5365 VOIDmode, 0),
5366 GT, NULL_RTX, mode, unsignedp, 0);
5367 emit_jump_insn ((*gen_bgt_pat) (default_label));
5370 if (!node_has_low_bound (node, index_type))
5372 emit_cmp_insn (index, expand_expr (node->low, NULL_RTX,
5373 VOIDmode, 0),
5374 LT, NULL_RTX, mode, unsignedp, 0);
5375 emit_jump_insn ((*gen_blt_pat) (default_label));
5378 emit_jump (label_rtx (node->code_label));
5383 /* These routines are used by the loop unrolling code. They copy BLOCK trees
5384 so that the debugging info will be correct for the unrolled loop. */
5386 /* Indexed by block number, contains a pointer to the N'th block node. */
5388 static tree *block_vector;
5390 void
5391 find_loop_tree_blocks ()
5393 tree block = DECL_INITIAL (current_function_decl);
5395 /* There first block is for the function body, and does not have
5396 corresponding block notes. Don't include it in the block vector. */
5397 block = BLOCK_SUBBLOCKS (block);
5399 block_vector = identify_blocks (block, get_insns ());
5402 void
5403 unroll_block_trees ()
5405 tree block = DECL_INITIAL (current_function_decl);
5407 reorder_blocks (block_vector, block, get_insns ());