OSDN Git Service

* config/i386/i386.c (x86_schedule): Fix typo, m_K6 intead of m_K8.
[pf3gnuchains/gcc-fork.git] / gcc / stmt.c
1 /* Expands front end tree to back end RTL for GCC
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3    1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22 /* This file handles the generation of rtl code from tree structure
23    above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
24    The functions whose names start with `expand_' are called by the
25    expander to generate RTL instructions for various kinds of constructs.  */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31
32 #include "rtl.h"
33 #include "tree.h"
34 #include "tm_p.h"
35 #include "flags.h"
36 #include "except.h"
37 #include "function.h"
38 #include "insn-config.h"
39 #include "expr.h"
40 #include "libfuncs.h"
41 #include "hard-reg-set.h"
42 #include "recog.h"
43 #include "machmode.h"
44 #include "toplev.h"
45 #include "output.h"
46 #include "ggc.h"
47 #include "langhooks.h"
48 #include "predict.h"
49 #include "optabs.h"
50 #include "target.h"
51 #include "regs.h"
52 \f
53 /* Functions and data structures for expanding case statements.  */
54
55 /* Case label structure, used to hold info on labels within case
56    statements.  We handle "range" labels; for a single-value label
57    as in C, the high and low limits are the same.
58
59    We start with a vector of case nodes sorted in ascending order, and
60    the default label as the last element in the vector.  Before expanding
61    to RTL, we transform this vector into a list linked via the RIGHT
62    fields in the case_node struct.  Nodes with higher case values are
63    later in the list.
64
65    Switch statements can be output in three forms.  A branch table is
66    used if there are more than a few labels and the labels are dense
67    within the range between the smallest and largest case value.  If a
68    branch table is used, no further manipulations are done with the case
69    node chain.
70
71    The alternative to the use of a branch table is to generate a series
72    of compare and jump insns.  When that is done, we use the LEFT, RIGHT,
73    and PARENT fields to hold a binary tree.  Initially the tree is
74    totally unbalanced, with everything on the right.  We balance the tree
75    with nodes on the left having lower case values than the parent
76    and nodes on the right having higher values.  We then output the tree
77    in order.
78
79    For very small, suitable switch statements, we can generate a series
80    of simple bit test and branches instead.  */
81
82 struct case_node GTY(())
83 {
84   struct case_node      *left;  /* Left son in binary tree */
85   struct case_node      *right; /* Right son in binary tree; also node chain */
86   struct case_node      *parent; /* Parent of node in binary tree */
87   tree                  low;    /* Lowest index value for this label */
88   tree                  high;   /* Highest index value for this label */
89   tree                  code_label; /* Label to jump to when node matches */
90 };
91
92 typedef struct case_node case_node;
93 typedef struct case_node *case_node_ptr;
94
95 /* These are used by estimate_case_costs and balance_case_nodes.  */
96
97 /* This must be a signed type, and non-ANSI compilers lack signed char.  */
98 static short cost_table_[129];
99 static int use_cost_table;
100 static int cost_table_initialized;
101
102 /* Special care is needed because we allow -1, but TREE_INT_CST_LOW
103    is unsigned.  */
104 #define COST_TABLE(I)  cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)]
105 \f
106 static int n_occurrences (int, const char *);
107 static bool decl_conflicts_with_clobbers_p (tree, const HARD_REG_SET);
108 static void expand_nl_goto_receiver (void);
109 static bool check_operand_nalternatives (tree, tree);
110 static bool check_unique_operand_names (tree, tree);
111 static char *resolve_operand_name_1 (char *, tree, tree);
112 static void expand_null_return_1 (void);
113 static rtx shift_return_value (rtx);
114 static void expand_value_return (rtx);
115 static void do_jump_if_equal (rtx, rtx, rtx, int);
116 static int estimate_case_costs (case_node_ptr);
117 static bool lshift_cheap_p (void);
118 static int case_bit_test_cmp (const void *, const void *);
119 static void emit_case_bit_tests (tree, tree, tree, tree, case_node_ptr, rtx);
120 static void balance_case_nodes (case_node_ptr *, case_node_ptr);
121 static int node_has_low_bound (case_node_ptr, tree);
122 static int node_has_high_bound (case_node_ptr, tree);
123 static int node_is_bounded (case_node_ptr, tree);
124 static void emit_case_nodes (rtx, case_node_ptr, rtx, tree);
125 static struct case_node *add_case_node (struct case_node *, tree,
126                                         tree, tree, tree);
127
128 \f
129 /* Return the rtx-label that corresponds to a LABEL_DECL,
130    creating it if necessary.  */
131
132 rtx
133 label_rtx (tree label)
134 {
135   gcc_assert (TREE_CODE (label) == LABEL_DECL);
136
137   if (!DECL_RTL_SET_P (label))
138     {
139       rtx r = gen_label_rtx ();
140       SET_DECL_RTL (label, r);
141       if (FORCED_LABEL (label) || DECL_NONLOCAL (label))
142         LABEL_PRESERVE_P (r) = 1;
143     }
144
145   return DECL_RTL (label);
146 }
147
148 /* As above, but also put it on the forced-reference list of the
149    function that contains it.  */
150 rtx
151 force_label_rtx (tree label)
152 {
153   rtx ref = label_rtx (label);
154   tree function = decl_function_context (label);
155   struct function *p;
156
157   gcc_assert (function);
158
159   if (function != current_function_decl)
160     p = find_function_data (function);
161   else
162     p = cfun;
163
164   p->expr->x_forced_labels = gen_rtx_EXPR_LIST (VOIDmode, ref,
165                                                 p->expr->x_forced_labels);
166   return ref;
167 }
168
169 /* Add an unconditional jump to LABEL as the next sequential instruction.  */
170
171 void
172 emit_jump (rtx label)
173 {
174   do_pending_stack_adjust ();
175   emit_jump_insn (gen_jump (label));
176   emit_barrier ();
177 }
178
179 /* Emit code to jump to the address
180    specified by the pointer expression EXP.  */
181
182 void
183 expand_computed_goto (tree exp)
184 {
185   rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
186
187   x = convert_memory_address (Pmode, x);
188
189   do_pending_stack_adjust ();
190   emit_indirect_jump (x);
191 }
192 \f
193 /* Handle goto statements and the labels that they can go to.  */
194
195 /* Specify the location in the RTL code of a label LABEL,
196    which is a LABEL_DECL tree node.
197
198    This is used for the kind of label that the user can jump to with a
199    goto statement, and for alternatives of a switch or case statement.
200    RTL labels generated for loops and conditionals don't go through here;
201    they are generated directly at the RTL level, by other functions below.
202
203    Note that this has nothing to do with defining label *names*.
204    Languages vary in how they do that and what that even means.  */
205
206 void
207 expand_label (tree label)
208 {
209   rtx label_r = label_rtx (label);
210
211   do_pending_stack_adjust ();
212   emit_label (label_r);
213   if (DECL_NAME (label))
214     LABEL_NAME (DECL_RTL (label)) = IDENTIFIER_POINTER (DECL_NAME (label));
215
216   if (DECL_NONLOCAL (label))
217     {
218       expand_nl_goto_receiver ();
219       nonlocal_goto_handler_labels
220         = gen_rtx_EXPR_LIST (VOIDmode, label_r,
221                              nonlocal_goto_handler_labels);
222     }
223
224   if (FORCED_LABEL (label))
225     forced_labels = gen_rtx_EXPR_LIST (VOIDmode, label_r, forced_labels);
226
227   if (DECL_NONLOCAL (label) || FORCED_LABEL (label))
228     maybe_set_first_label_num (label_r);
229 }
230
231 /* Generate RTL code for a `goto' statement with target label LABEL.
232    LABEL should be a LABEL_DECL tree node that was or will later be
233    defined with `expand_label'.  */
234
235 void
236 expand_goto (tree label)
237 {
238 #ifdef ENABLE_CHECKING
239   /* Check for a nonlocal goto to a containing function.  Should have
240      gotten translated to __builtin_nonlocal_goto.  */
241   tree context = decl_function_context (label);
242   gcc_assert (!context || context == current_function_decl);
243 #endif
244
245   emit_jump (label_rtx (label));
246 }
247 \f
248 /* Return the number of times character C occurs in string S.  */
249 static int
250 n_occurrences (int c, const char *s)
251 {
252   int n = 0;
253   while (*s)
254     n += (*s++ == c);
255   return n;
256 }
257 \f
258 /* Generate RTL for an asm statement (explicit assembler code).
259    STRING is a STRING_CST node containing the assembler code text,
260    or an ADDR_EXPR containing a STRING_CST.  VOL nonzero means the
261    insn is volatile; don't optimize it.  */
262
263 static void
264 expand_asm (tree string, int vol)
265 {
266   rtx body;
267
268   if (TREE_CODE (string) == ADDR_EXPR)
269     string = TREE_OPERAND (string, 0);
270
271   body = gen_rtx_ASM_INPUT (VOIDmode,
272                             ggc_strdup (TREE_STRING_POINTER (string)));
273
274   MEM_VOLATILE_P (body) = vol;
275
276   emit_insn (body);
277 }
278
279 /* Parse the output constraint pointed to by *CONSTRAINT_P.  It is the
280    OPERAND_NUMth output operand, indexed from zero.  There are NINPUTS
281    inputs and NOUTPUTS outputs to this extended-asm.  Upon return,
282    *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
283    memory operand.  Similarly, *ALLOWS_REG will be TRUE iff the
284    constraint allows the use of a register operand.  And, *IS_INOUT
285    will be true if the operand is read-write, i.e., if it is used as
286    an input as well as an output.  If *CONSTRAINT_P is not in
287    canonical form, it will be made canonical.  (Note that `+' will be
288    replaced with `=' as part of this process.)
289
290    Returns TRUE if all went well; FALSE if an error occurred.  */
291
292 bool
293 parse_output_constraint (const char **constraint_p, int operand_num,
294                          int ninputs, int noutputs, bool *allows_mem,
295                          bool *allows_reg, bool *is_inout)
296 {
297   const char *constraint = *constraint_p;
298   const char *p;
299
300   /* Assume the constraint doesn't allow the use of either a register
301      or memory.  */
302   *allows_mem = false;
303   *allows_reg = false;
304
305   /* Allow the `=' or `+' to not be at the beginning of the string,
306      since it wasn't explicitly documented that way, and there is a
307      large body of code that puts it last.  Swap the character to
308      the front, so as not to uglify any place else.  */
309   p = strchr (constraint, '=');
310   if (!p)
311     p = strchr (constraint, '+');
312
313   /* If the string doesn't contain an `=', issue an error
314      message.  */
315   if (!p)
316     {
317       error ("output operand constraint lacks %<=%>");
318       return false;
319     }
320
321   /* If the constraint begins with `+', then the operand is both read
322      from and written to.  */
323   *is_inout = (*p == '+');
324
325   /* Canonicalize the output constraint so that it begins with `='.  */
326   if (p != constraint || is_inout)
327     {
328       char *buf;
329       size_t c_len = strlen (constraint);
330
331       if (p != constraint)
332         warning ("output constraint %qc for operand %d "
333                  "is not at the beginning",
334                  *p, operand_num);
335
336       /* Make a copy of the constraint.  */
337       buf = alloca (c_len + 1);
338       strcpy (buf, constraint);
339       /* Swap the first character and the `=' or `+'.  */
340       buf[p - constraint] = buf[0];
341       /* Make sure the first character is an `='.  (Until we do this,
342          it might be a `+'.)  */
343       buf[0] = '=';
344       /* Replace the constraint with the canonicalized string.  */
345       *constraint_p = ggc_alloc_string (buf, c_len);
346       constraint = *constraint_p;
347     }
348
349   /* Loop through the constraint string.  */
350   for (p = constraint + 1; *p; p += CONSTRAINT_LEN (*p, p))
351     switch (*p)
352       {
353       case '+':
354       case '=':
355         error ("operand constraint contains incorrectly positioned "
356                "%<+%> or %<=%>");
357         return false;
358
359       case '%':
360         if (operand_num + 1 == ninputs + noutputs)
361           {
362             error ("%<%%%> constraint used with last operand");
363             return false;
364           }
365         break;
366
367       case 'V':  case 'm':  case 'o':
368         *allows_mem = true;
369         break;
370
371       case '?':  case '!':  case '*':  case '&':  case '#':
372       case 'E':  case 'F':  case 'G':  case 'H':
373       case 's':  case 'i':  case 'n':
374       case 'I':  case 'J':  case 'K':  case 'L':  case 'M':
375       case 'N':  case 'O':  case 'P':  case ',':
376         break;
377
378       case '0':  case '1':  case '2':  case '3':  case '4':
379       case '5':  case '6':  case '7':  case '8':  case '9':
380       case '[':
381         error ("matching constraint not valid in output operand");
382         return false;
383
384       case '<':  case '>':
385         /* ??? Before flow, auto inc/dec insns are not supposed to exist,
386            excepting those that expand_call created.  So match memory
387            and hope.  */
388         *allows_mem = true;
389         break;
390
391       case 'g':  case 'X':
392         *allows_reg = true;
393         *allows_mem = true;
394         break;
395
396       case 'p': case 'r':
397         *allows_reg = true;
398         break;
399
400       default:
401         if (!ISALPHA (*p))
402           break;
403         if (REG_CLASS_FROM_CONSTRAINT (*p, p) != NO_REGS)
404           *allows_reg = true;
405 #ifdef EXTRA_CONSTRAINT_STR
406         else if (EXTRA_ADDRESS_CONSTRAINT (*p, p))
407           *allows_reg = true;
408         else if (EXTRA_MEMORY_CONSTRAINT (*p, p))
409           *allows_mem = true;
410         else
411           {
412             /* Otherwise we can't assume anything about the nature of
413                the constraint except that it isn't purely registers.
414                Treat it like "g" and hope for the best.  */
415             *allows_reg = true;
416             *allows_mem = true;
417           }
418 #endif
419         break;
420       }
421
422   return true;
423 }
424
425 /* Similar, but for input constraints.  */
426
427 bool
428 parse_input_constraint (const char **constraint_p, int input_num,
429                         int ninputs, int noutputs, int ninout,
430                         const char * const * constraints,
431                         bool *allows_mem, bool *allows_reg)
432 {
433   const char *constraint = *constraint_p;
434   const char *orig_constraint = constraint;
435   size_t c_len = strlen (constraint);
436   size_t j;
437   bool saw_match = false;
438
439   /* Assume the constraint doesn't allow the use of either
440      a register or memory.  */
441   *allows_mem = false;
442   *allows_reg = false;
443
444   /* Make sure constraint has neither `=', `+', nor '&'.  */
445
446   for (j = 0; j < c_len; j += CONSTRAINT_LEN (constraint[j], constraint+j))
447     switch (constraint[j])
448       {
449       case '+':  case '=':  case '&':
450         if (constraint == orig_constraint)
451           {
452             error ("input operand constraint contains %qc", constraint[j]);
453             return false;
454           }
455         break;
456
457       case '%':
458         if (constraint == orig_constraint
459             && input_num + 1 == ninputs - ninout)
460           {
461             error ("%<%%%> constraint used with last operand");
462             return false;
463           }
464         break;
465
466       case 'V':  case 'm':  case 'o':
467         *allows_mem = true;
468         break;
469
470       case '<':  case '>':
471       case '?':  case '!':  case '*':  case '#':
472       case 'E':  case 'F':  case 'G':  case 'H':
473       case 's':  case 'i':  case 'n':
474       case 'I':  case 'J':  case 'K':  case 'L':  case 'M':
475       case 'N':  case 'O':  case 'P':  case ',':
476         break;
477
478         /* Whether or not a numeric constraint allows a register is
479            decided by the matching constraint, and so there is no need
480            to do anything special with them.  We must handle them in
481            the default case, so that we don't unnecessarily force
482            operands to memory.  */
483       case '0':  case '1':  case '2':  case '3':  case '4':
484       case '5':  case '6':  case '7':  case '8':  case '9':
485         {
486           char *end;
487           unsigned long match;
488
489           saw_match = true;
490
491           match = strtoul (constraint + j, &end, 10);
492           if (match >= (unsigned long) noutputs)
493             {
494               error ("matching constraint references invalid operand number");
495               return false;
496             }
497
498           /* Try and find the real constraint for this dup.  Only do this
499              if the matching constraint is the only alternative.  */
500           if (*end == '\0'
501               && (j == 0 || (j == 1 && constraint[0] == '%')))
502             {
503               constraint = constraints[match];
504               *constraint_p = constraint;
505               c_len = strlen (constraint);
506               j = 0;
507               /* ??? At the end of the loop, we will skip the first part of
508                  the matched constraint.  This assumes not only that the
509                  other constraint is an output constraint, but also that
510                  the '=' or '+' come first.  */
511               break;
512             }
513           else
514             j = end - constraint;
515           /* Anticipate increment at end of loop.  */
516           j--;
517         }
518         /* Fall through.  */
519
520       case 'p':  case 'r':
521         *allows_reg = true;
522         break;
523
524       case 'g':  case 'X':
525         *allows_reg = true;
526         *allows_mem = true;
527         break;
528
529       default:
530         if (! ISALPHA (constraint[j]))
531           {
532             error ("invalid punctuation %qc in constraint", constraint[j]);
533             return false;
534           }
535         if (REG_CLASS_FROM_CONSTRAINT (constraint[j], constraint + j)
536             != NO_REGS)
537           *allows_reg = true;
538 #ifdef EXTRA_CONSTRAINT_STR
539         else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j], constraint + j))
540           *allows_reg = true;
541         else if (EXTRA_MEMORY_CONSTRAINT (constraint[j], constraint + j))
542           *allows_mem = true;
543         else
544           {
545             /* Otherwise we can't assume anything about the nature of
546                the constraint except that it isn't purely registers.
547                Treat it like "g" and hope for the best.  */
548             *allows_reg = true;
549             *allows_mem = true;
550           }
551 #endif
552         break;
553       }
554
555   if (saw_match && !*allows_reg)
556     warning ("matching constraint does not allow a register");
557
558   return true;
559 }
560
561 /* Check for overlap between registers marked in CLOBBERED_REGS and
562    anything inappropriate in DECL.  Emit error and return TRUE for error,
563    FALSE for ok.  */
564
565 static bool
566 decl_conflicts_with_clobbers_p (tree decl, const HARD_REG_SET clobbered_regs)
567 {
568   /* Conflicts between asm-declared register variables and the clobber
569      list are not allowed.  */
570   if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
571       && DECL_REGISTER (decl)
572       && REG_P (DECL_RTL (decl))
573       && REGNO (DECL_RTL (decl)) < FIRST_PSEUDO_REGISTER)
574     {
575       rtx reg = DECL_RTL (decl);
576       unsigned int regno;
577
578       for (regno = REGNO (reg);
579            regno < (REGNO (reg)
580                     + hard_regno_nregs[REGNO (reg)][GET_MODE (reg)]);
581            regno++)
582         if (TEST_HARD_REG_BIT (clobbered_regs, regno))
583           {
584             error ("asm-specifier for variable %qs conflicts with "
585                    "asm clobber list",
586                    IDENTIFIER_POINTER (DECL_NAME (decl)));
587
588             /* Reset registerness to stop multiple errors emitted for a
589                single variable.  */
590             DECL_REGISTER (decl) = 0;
591             return true;
592           }
593     }
594   return false;
595 }
596
597 /* Generate RTL for an asm statement with arguments.
598    STRING is the instruction template.
599    OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
600    Each output or input has an expression in the TREE_VALUE and
601    and a tree list in TREE_PURPOSE which in turn contains a constraint
602    name in TREE_VALUE (or NULL_TREE) and a constraint string
603    in TREE_PURPOSE.
604    CLOBBERS is a list of STRING_CST nodes each naming a hard register
605    that is clobbered by this insn.
606
607    Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
608    Some elements of OUTPUTS may be replaced with trees representing temporary
609    values.  The caller should copy those temporary values to the originally
610    specified lvalues.
611
612    VOL nonzero means the insn is volatile; don't optimize it.  */
613
614 static void
615 expand_asm_operands (tree string, tree outputs, tree inputs,
616                      tree clobbers, int vol, location_t locus)
617 {
618   rtvec argvec, constraintvec;
619   rtx body;
620   int ninputs = list_length (inputs);
621   int noutputs = list_length (outputs);
622   int ninout;
623   int nclobbers;
624   HARD_REG_SET clobbered_regs;
625   int clobber_conflict_found = 0;
626   tree tail;
627   tree t;
628   int i;
629   /* Vector of RTX's of evaluated output operands.  */
630   rtx *output_rtx = alloca (noutputs * sizeof (rtx));
631   int *inout_opnum = alloca (noutputs * sizeof (int));
632   rtx *real_output_rtx = alloca (noutputs * sizeof (rtx));
633   enum machine_mode *inout_mode
634     = alloca (noutputs * sizeof (enum machine_mode));
635   const char **constraints
636     = alloca ((noutputs + ninputs) * sizeof (const char *));
637   int old_generating_concat_p = generating_concat_p;
638
639   /* An ASM with no outputs needs to be treated as volatile, for now.  */
640   if (noutputs == 0)
641     vol = 1;
642
643   if (! check_operand_nalternatives (outputs, inputs))
644     return;
645
646   string = resolve_asm_operand_names (string, outputs, inputs);
647
648   /* Collect constraints.  */
649   i = 0;
650   for (t = outputs; t ; t = TREE_CHAIN (t), i++)
651     constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
652   for (t = inputs; t ; t = TREE_CHAIN (t), i++)
653     constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
654
655   /* Sometimes we wish to automatically clobber registers across an asm.
656      Case in point is when the i386 backend moved from cc0 to a hard reg --
657      maintaining source-level compatibility means automatically clobbering
658      the flags register.  */
659   clobbers = targetm.md_asm_clobbers (clobbers);
660
661   /* Count the number of meaningful clobbered registers, ignoring what
662      we would ignore later.  */
663   nclobbers = 0;
664   CLEAR_HARD_REG_SET (clobbered_regs);
665   for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
666     {
667       const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
668
669       i = decode_reg_name (regname);
670       if (i >= 0 || i == -4)
671         ++nclobbers;
672       else if (i == -2)
673         error ("unknown register name %qs in %<asm%>", regname);
674
675       /* Mark clobbered registers.  */
676       if (i >= 0)
677         {
678           /* Clobbering the PIC register is an error.  */
679           if (i == (int) PIC_OFFSET_TABLE_REGNUM)
680             {
681               error ("PIC register %qs clobbered in %<asm%>", regname);
682               return;
683             }
684
685           SET_HARD_REG_BIT (clobbered_regs, i);
686         }
687     }
688
689   /* First pass over inputs and outputs checks validity and sets
690      mark_addressable if needed.  */
691
692   ninout = 0;
693   for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
694     {
695       tree val = TREE_VALUE (tail);
696       tree type = TREE_TYPE (val);
697       const char *constraint;
698       bool is_inout;
699       bool allows_reg;
700       bool allows_mem;
701
702       /* If there's an erroneous arg, emit no insn.  */
703       if (type == error_mark_node)
704         return;
705
706       /* Try to parse the output constraint.  If that fails, there's
707          no point in going further.  */
708       constraint = constraints[i];
709       if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
710                                     &allows_mem, &allows_reg, &is_inout))
711         return;
712
713       if (! allows_reg
714           && (allows_mem
715               || is_inout
716               || (DECL_P (val)
717                   && REG_P (DECL_RTL (val))
718                   && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
719         lang_hooks.mark_addressable (val);
720
721       if (is_inout)
722         ninout++;
723     }
724
725   ninputs += ninout;
726   if (ninputs + noutputs > MAX_RECOG_OPERANDS)
727     {
728       error ("more than %d operands in %<asm%>", MAX_RECOG_OPERANDS);
729       return;
730     }
731
732   for (i = 0, tail = inputs; tail; i++, tail = TREE_CHAIN (tail))
733     {
734       bool allows_reg, allows_mem;
735       const char *constraint;
736
737       /* If there's an erroneous arg, emit no insn, because the ASM_INPUT
738          would get VOIDmode and that could cause a crash in reload.  */
739       if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
740         return;
741
742       constraint = constraints[i + noutputs];
743       if (! parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
744                                     constraints, &allows_mem, &allows_reg))
745         return;
746
747       if (! allows_reg && allows_mem)
748         lang_hooks.mark_addressable (TREE_VALUE (tail));
749     }
750
751   /* Second pass evaluates arguments.  */
752
753   ninout = 0;
754   for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
755     {
756       tree val = TREE_VALUE (tail);
757       tree type = TREE_TYPE (val);
758       bool is_inout;
759       bool allows_reg;
760       bool allows_mem;
761       rtx op;
762       bool ok;
763
764       ok = parse_output_constraint (&constraints[i], i, ninputs,
765                                     noutputs, &allows_mem, &allows_reg,
766                                     &is_inout);
767       gcc_assert (ok);
768
769       /* If an output operand is not a decl or indirect ref and our constraint
770          allows a register, make a temporary to act as an intermediate.
771          Make the asm insn write into that, then our caller will copy it to
772          the real output operand.  Likewise for promoted variables.  */
773
774       generating_concat_p = 0;
775
776       real_output_rtx[i] = NULL_RTX;
777       if ((TREE_CODE (val) == INDIRECT_REF
778            && allows_mem)
779           || (DECL_P (val)
780               && (allows_mem || REG_P (DECL_RTL (val)))
781               && ! (REG_P (DECL_RTL (val))
782                     && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
783           || ! allows_reg
784           || is_inout)
785         {
786           op = expand_expr (val, NULL_RTX, VOIDmode, EXPAND_WRITE);
787           if (MEM_P (op))
788             op = validize_mem (op);
789
790           if (! allows_reg && !MEM_P (op))
791             error ("output number %d not directly addressable", i);
792           if ((! allows_mem && MEM_P (op))
793               || GET_CODE (op) == CONCAT)
794             {
795               real_output_rtx[i] = op;
796               op = gen_reg_rtx (GET_MODE (op));
797               if (is_inout)
798                 emit_move_insn (op, real_output_rtx[i]);
799             }
800         }
801       else
802         {
803           op = assign_temp (type, 0, 0, 1);
804           op = validize_mem (op);
805           TREE_VALUE (tail) = make_tree (type, op);
806         }
807       output_rtx[i] = op;
808
809       generating_concat_p = old_generating_concat_p;
810
811       if (is_inout)
812         {
813           inout_mode[ninout] = TYPE_MODE (type);
814           inout_opnum[ninout++] = i;
815         }
816
817       if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
818         clobber_conflict_found = 1;
819     }
820
821   /* Make vectors for the expression-rtx, constraint strings,
822      and named operands.  */
823
824   argvec = rtvec_alloc (ninputs);
825   constraintvec = rtvec_alloc (ninputs);
826
827   body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
828                                 : GET_MODE (output_rtx[0])),
829                                ggc_strdup (TREE_STRING_POINTER (string)),
830                                empty_string, 0, argvec, constraintvec,
831                                locus);
832
833   MEM_VOLATILE_P (body) = vol;
834
835   /* Eval the inputs and put them into ARGVEC.
836      Put their constraints into ASM_INPUTs and store in CONSTRAINTS.  */
837
838   for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), ++i)
839     {
840       bool allows_reg, allows_mem;
841       const char *constraint;
842       tree val, type;
843       rtx op;
844       bool ok;
845
846       constraint = constraints[i + noutputs];
847       ok = parse_input_constraint (&constraint, i, ninputs, noutputs, ninout,
848                                    constraints, &allows_mem, &allows_reg);
849       gcc_assert (ok);
850
851       generating_concat_p = 0;
852
853       val = TREE_VALUE (tail);
854       type = TREE_TYPE (val);
855       op = expand_expr (val, NULL_RTX, VOIDmode,
856                         (allows_mem && !allows_reg
857                          ? EXPAND_MEMORY : EXPAND_NORMAL));
858
859       /* Never pass a CONCAT to an ASM.  */
860       if (GET_CODE (op) == CONCAT)
861         op = force_reg (GET_MODE (op), op);
862       else if (MEM_P (op))
863         op = validize_mem (op);
864
865       if (asm_operand_ok (op, constraint) <= 0)
866         {
867           if (allows_reg)
868             op = force_reg (TYPE_MODE (type), op);
869           else if (!allows_mem)
870             warning ("asm operand %d probably doesn%'t match constraints",
871                      i + noutputs);
872           else if (MEM_P (op))
873             {
874               /* We won't recognize either volatile memory or memory
875                  with a queued address as available a memory_operand
876                  at this point.  Ignore it: clearly this *is* a memory.  */
877             }
878           else
879             {
880               warning ("use of memory input without lvalue in "
881                        "asm operand %d is deprecated", i + noutputs);
882
883               if (CONSTANT_P (op))
884                 {
885                   rtx mem = force_const_mem (TYPE_MODE (type), op);
886                   if (mem)
887                     op = validize_mem (mem);
888                   else
889                     op = force_reg (TYPE_MODE (type), op);
890                 }
891               if (REG_P (op)
892                   || GET_CODE (op) == SUBREG
893                   || GET_CODE (op) == CONCAT)
894                 {
895                   tree qual_type = build_qualified_type (type,
896                                                          (TYPE_QUALS (type)
897                                                           | TYPE_QUAL_CONST));
898                   rtx memloc = assign_temp (qual_type, 1, 1, 1);
899                   memloc = validize_mem (memloc);
900                   emit_move_insn (memloc, op);
901                   op = memloc;
902                 }
903             }
904         }
905
906       generating_concat_p = old_generating_concat_p;
907       ASM_OPERANDS_INPUT (body, i) = op;
908
909       ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
910         = gen_rtx_ASM_INPUT (TYPE_MODE (type), 
911                              ggc_strdup (constraints[i + noutputs]));
912
913       if (decl_conflicts_with_clobbers_p (val, clobbered_regs))
914         clobber_conflict_found = 1;
915     }
916
917   /* Protect all the operands from the queue now that they have all been
918      evaluated.  */
919
920   generating_concat_p = 0;
921
922   /* For in-out operands, copy output rtx to input rtx.  */
923   for (i = 0; i < ninout; i++)
924     {
925       int j = inout_opnum[i];
926       char buffer[16];
927
928       ASM_OPERANDS_INPUT (body, ninputs - ninout + i)
929         = output_rtx[j];
930
931       sprintf (buffer, "%d", j);
932       ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, ninputs - ninout + i)
933         = gen_rtx_ASM_INPUT (inout_mode[i], ggc_strdup (buffer));
934     }
935
936   generating_concat_p = old_generating_concat_p;
937
938   /* Now, for each output, construct an rtx
939      (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
940                                ARGVEC CONSTRAINTS OPNAMES))
941      If there is more than one, put them inside a PARALLEL.  */
942
943   if (noutputs == 1 && nclobbers == 0)
944     {
945       ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = ggc_strdup (constraints[0]);
946       emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
947     }
948
949   else if (noutputs == 0 && nclobbers == 0)
950     {
951       /* No output operands: put in a raw ASM_OPERANDS rtx.  */
952       emit_insn (body);
953     }
954
955   else
956     {
957       rtx obody = body;
958       int num = noutputs;
959
960       if (num == 0)
961         num = 1;
962
963       body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers));
964
965       /* For each output operand, store a SET.  */
966       for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
967         {
968           XVECEXP (body, 0, i)
969             = gen_rtx_SET (VOIDmode,
970                            output_rtx[i],
971                            gen_rtx_ASM_OPERANDS
972                            (GET_MODE (output_rtx[i]),
973                             ggc_strdup (TREE_STRING_POINTER (string)),
974                             ggc_strdup (constraints[i]),
975                             i, argvec, constraintvec, locus));
976
977           MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
978         }
979
980       /* If there are no outputs (but there are some clobbers)
981          store the bare ASM_OPERANDS into the PARALLEL.  */
982
983       if (i == 0)
984         XVECEXP (body, 0, i++) = obody;
985
986       /* Store (clobber REG) for each clobbered register specified.  */
987
988       for (tail = clobbers; tail; tail = TREE_CHAIN (tail))
989         {
990           const char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
991           int j = decode_reg_name (regname);
992           rtx clobbered_reg;
993
994           if (j < 0)
995             {
996               if (j == -3)      /* `cc', which is not a register */
997                 continue;
998
999               if (j == -4)      /* `memory', don't cache memory across asm */
1000                 {
1001                   XVECEXP (body, 0, i++)
1002                     = gen_rtx_CLOBBER (VOIDmode,
1003                                        gen_rtx_MEM
1004                                        (BLKmode,
1005                                         gen_rtx_SCRATCH (VOIDmode)));
1006                   continue;
1007                 }
1008
1009               /* Ignore unknown register, error already signaled.  */
1010               continue;
1011             }
1012
1013           /* Use QImode since that's guaranteed to clobber just one reg.  */
1014           clobbered_reg = gen_rtx_REG (QImode, j);
1015
1016           /* Do sanity check for overlap between clobbers and respectively
1017              input and outputs that hasn't been handled.  Such overlap
1018              should have been detected and reported above.  */
1019           if (!clobber_conflict_found)
1020             {
1021               int opno;
1022
1023               /* We test the old body (obody) contents to avoid tripping
1024                  over the under-construction body.  */
1025               for (opno = 0; opno < noutputs; opno++)
1026                 if (reg_overlap_mentioned_p (clobbered_reg, output_rtx[opno]))
1027                   internal_error ("asm clobber conflict with output operand");
1028
1029               for (opno = 0; opno < ninputs - ninout; opno++)
1030                 if (reg_overlap_mentioned_p (clobbered_reg,
1031                                              ASM_OPERANDS_INPUT (obody, opno)))
1032                   internal_error ("asm clobber conflict with input operand");
1033             }
1034
1035           XVECEXP (body, 0, i++)
1036             = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
1037         }
1038
1039       emit_insn (body);
1040     }
1041
1042   /* For any outputs that needed reloading into registers, spill them
1043      back to where they belong.  */
1044   for (i = 0; i < noutputs; ++i)
1045     if (real_output_rtx[i])
1046       emit_move_insn (real_output_rtx[i], output_rtx[i]);
1047
1048   free_temp_slots ();
1049 }
1050
1051 void
1052 expand_asm_expr (tree exp)
1053 {
1054   int noutputs, i;
1055   tree outputs, tail;
1056   tree *o;
1057
1058   if (ASM_INPUT_P (exp))
1059     {
1060       expand_asm (ASM_STRING (exp), ASM_VOLATILE_P (exp));
1061       return;
1062     }
1063
1064   outputs = ASM_OUTPUTS (exp);
1065   noutputs = list_length (outputs);
1066   /* o[I] is the place that output number I should be written.  */
1067   o = (tree *) alloca (noutputs * sizeof (tree));
1068
1069   /* Record the contents of OUTPUTS before it is modified.  */
1070   for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1071     o[i] = TREE_VALUE (tail);
1072
1073   /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
1074      OUTPUTS some trees for where the values were actually stored.  */
1075   expand_asm_operands (ASM_STRING (exp), outputs, ASM_INPUTS (exp),
1076                        ASM_CLOBBERS (exp), ASM_VOLATILE_P (exp),
1077                        input_location);
1078
1079   /* Copy all the intermediate outputs into the specified outputs.  */
1080   for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
1081     {
1082       if (o[i] != TREE_VALUE (tail))
1083         {
1084           expand_assignment (o[i], TREE_VALUE (tail));
1085           free_temp_slots ();
1086
1087           /* Restore the original value so that it's correct the next
1088              time we expand this function.  */
1089           TREE_VALUE (tail) = o[i];
1090         }
1091     }
1092 }
1093
1094 /* A subroutine of expand_asm_operands.  Check that all operands have
1095    the same number of alternatives.  Return true if so.  */
1096
1097 static bool
1098 check_operand_nalternatives (tree outputs, tree inputs)
1099 {
1100   if (outputs || inputs)
1101     {
1102       tree tmp = TREE_PURPOSE (outputs ? outputs : inputs);
1103       int nalternatives
1104         = n_occurrences (',', TREE_STRING_POINTER (TREE_VALUE (tmp)));
1105       tree next = inputs;
1106
1107       if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
1108         {
1109           error ("too many alternatives in %<asm%>");
1110           return false;
1111         }
1112
1113       tmp = outputs;
1114       while (tmp)
1115         {
1116           const char *constraint
1117             = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tmp)));
1118
1119           if (n_occurrences (',', constraint) != nalternatives)
1120             {
1121               error ("operand constraints for %<asm%> differ "
1122                      "in number of alternatives");
1123               return false;
1124             }
1125
1126           if (TREE_CHAIN (tmp))
1127             tmp = TREE_CHAIN (tmp);
1128           else
1129             tmp = next, next = 0;
1130         }
1131     }
1132
1133   return true;
1134 }
1135
1136 /* A subroutine of expand_asm_operands.  Check that all operand names
1137    are unique.  Return true if so.  We rely on the fact that these names
1138    are identifiers, and so have been canonicalized by get_identifier,
1139    so all we need are pointer comparisons.  */
1140
1141 static bool
1142 check_unique_operand_names (tree outputs, tree inputs)
1143 {
1144   tree i, j;
1145
1146   for (i = outputs; i ; i = TREE_CHAIN (i))
1147     {
1148       tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1149       if (! i_name)
1150         continue;
1151
1152       for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1153         if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1154           goto failure;
1155     }
1156
1157   for (i = inputs; i ; i = TREE_CHAIN (i))
1158     {
1159       tree i_name = TREE_PURPOSE (TREE_PURPOSE (i));
1160       if (! i_name)
1161         continue;
1162
1163       for (j = TREE_CHAIN (i); j ; j = TREE_CHAIN (j))
1164         if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1165           goto failure;
1166       for (j = outputs; j ; j = TREE_CHAIN (j))
1167         if (simple_cst_equal (i_name, TREE_PURPOSE (TREE_PURPOSE (j))))
1168           goto failure;
1169     }
1170
1171   return true;
1172
1173  failure:
1174   error ("duplicate asm operand name %qs",
1175          TREE_STRING_POINTER (TREE_PURPOSE (TREE_PURPOSE (i))));
1176   return false;
1177 }
1178
1179 /* A subroutine of expand_asm_operands.  Resolve the names of the operands
1180    in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
1181    STRING and in the constraints to those numbers.  */
1182
1183 tree
1184 resolve_asm_operand_names (tree string, tree outputs, tree inputs)
1185 {
1186   char *buffer;
1187   char *p;
1188   const char *c;
1189   tree t;
1190
1191   check_unique_operand_names (outputs, inputs);
1192
1193   /* Substitute [<name>] in input constraint strings.  There should be no
1194      named operands in output constraints.  */
1195   for (t = inputs; t ; t = TREE_CHAIN (t))
1196     {
1197       c = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1198       if (strchr (c, '[') != NULL)
1199         {
1200           p = buffer = xstrdup (c);
1201           while ((p = strchr (p, '[')) != NULL)
1202             p = resolve_operand_name_1 (p, outputs, inputs);
1203           TREE_VALUE (TREE_PURPOSE (t))
1204             = build_string (strlen (buffer), buffer);
1205           free (buffer);
1206         }
1207     }
1208
1209   /* Now check for any needed substitutions in the template.  */
1210   c = TREE_STRING_POINTER (string);
1211   while ((c = strchr (c, '%')) != NULL)
1212     {
1213       if (c[1] == '[')
1214         break;
1215       else if (ISALPHA (c[1]) && c[2] == '[')
1216         break;
1217       else
1218         {
1219           c += 1;
1220           continue;
1221         }
1222     }
1223
1224   if (c)
1225     {
1226       /* OK, we need to make a copy so we can perform the substitutions.
1227          Assume that we will not need extra space--we get to remove '['
1228          and ']', which means we cannot have a problem until we have more
1229          than 999 operands.  */
1230       buffer = xstrdup (TREE_STRING_POINTER (string));
1231       p = buffer + (c - TREE_STRING_POINTER (string));
1232
1233       while ((p = strchr (p, '%')) != NULL)
1234         {
1235           if (p[1] == '[')
1236             p += 1;
1237           else if (ISALPHA (p[1]) && p[2] == '[')
1238             p += 2;
1239           else
1240             {
1241               p += 1;
1242               continue;
1243             }
1244
1245           p = resolve_operand_name_1 (p, outputs, inputs);
1246         }
1247
1248       string = build_string (strlen (buffer), buffer);
1249       free (buffer);
1250     }
1251
1252   return string;
1253 }
1254
1255 /* A subroutine of resolve_operand_names.  P points to the '[' for a
1256    potential named operand of the form [<name>].  In place, replace
1257    the name and brackets with a number.  Return a pointer to the
1258    balance of the string after substitution.  */
1259
1260 static char *
1261 resolve_operand_name_1 (char *p, tree outputs, tree inputs)
1262 {
1263   char *q;
1264   int op;
1265   tree t;
1266   size_t len;
1267
1268   /* Collect the operand name.  */
1269   q = strchr (p, ']');
1270   if (!q)
1271     {
1272       error ("missing close brace for named operand");
1273       return strchr (p, '\0');
1274     }
1275   len = q - p - 1;
1276
1277   /* Resolve the name to a number.  */
1278   for (op = 0, t = outputs; t ; t = TREE_CHAIN (t), op++)
1279     {
1280       tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1281       if (name)
1282         {
1283           const char *c = TREE_STRING_POINTER (name);
1284           if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
1285             goto found;
1286         }
1287     }
1288   for (t = inputs; t ; t = TREE_CHAIN (t), op++)
1289     {
1290       tree name = TREE_PURPOSE (TREE_PURPOSE (t));
1291       if (name)
1292         {
1293           const char *c = TREE_STRING_POINTER (name);
1294           if (strncmp (c, p + 1, len) == 0 && c[len] == '\0')
1295             goto found;
1296         }
1297     }
1298
1299   *q = '\0';
1300   error ("undefined named operand %qs", p + 1);
1301   op = 0;
1302  found:
1303
1304   /* Replace the name with the number.  Unfortunately, not all libraries
1305      get the return value of sprintf correct, so search for the end of the
1306      generated string by hand.  */
1307   sprintf (p, "%d", op);
1308   p = strchr (p, '\0');
1309
1310   /* Verify the no extra buffer space assumption.  */
1311   gcc_assert (p <= q);
1312
1313   /* Shift the rest of the buffer down to fill the gap.  */
1314   memmove (p, q + 1, strlen (q + 1) + 1);
1315
1316   return p;
1317 }
1318 \f
1319 /* Generate RTL to evaluate the expression EXP.  */
1320
1321 void
1322 expand_expr_stmt (tree exp)
1323 {
1324   rtx value;
1325   tree type;
1326
1327   value = expand_expr (exp, const0_rtx, VOIDmode, 0);
1328   type = TREE_TYPE (exp);
1329
1330   /* If all we do is reference a volatile value in memory,
1331      copy it to a register to be sure it is actually touched.  */
1332   if (value && MEM_P (value) && TREE_THIS_VOLATILE (exp))
1333     {
1334       if (TYPE_MODE (type) == VOIDmode)
1335         ;
1336       else if (TYPE_MODE (type) != BLKmode)
1337         value = copy_to_reg (value);
1338       else
1339         {
1340           rtx lab = gen_label_rtx ();
1341
1342           /* Compare the value with itself to reference it.  */
1343           emit_cmp_and_jump_insns (value, value, EQ,
1344                                    expand_expr (TYPE_SIZE (type),
1345                                                 NULL_RTX, VOIDmode, 0),
1346                                    BLKmode, 0, lab);
1347           emit_label (lab);
1348         }
1349     }
1350
1351   /* Free any temporaries used to evaluate this expression.  */
1352   free_temp_slots ();
1353 }
1354
1355 /* Warn if EXP contains any computations whose results are not used.
1356    Return 1 if a warning is printed; 0 otherwise.  LOCUS is the
1357    (potential) location of the expression.  */
1358
1359 int
1360 warn_if_unused_value (tree exp, location_t locus)
1361 {
1362  restart:
1363   if (TREE_USED (exp))
1364     return 0;
1365
1366   /* Don't warn about void constructs.  This includes casting to void,
1367      void function calls, and statement expressions with a final cast
1368      to void.  */
1369   if (VOID_TYPE_P (TREE_TYPE (exp)))
1370     return 0;
1371
1372   if (EXPR_HAS_LOCATION (exp))
1373     locus = EXPR_LOCATION (exp);
1374
1375   switch (TREE_CODE (exp))
1376     {
1377     case PREINCREMENT_EXPR:
1378     case POSTINCREMENT_EXPR:
1379     case PREDECREMENT_EXPR:
1380     case POSTDECREMENT_EXPR:
1381     case MODIFY_EXPR:
1382     case INIT_EXPR:
1383     case TARGET_EXPR:
1384     case CALL_EXPR:
1385     case TRY_CATCH_EXPR:
1386     case WITH_CLEANUP_EXPR:
1387     case EXIT_EXPR:
1388       return 0;
1389
1390     case BIND_EXPR:
1391       /* For a binding, warn if no side effect within it.  */
1392       exp = BIND_EXPR_BODY (exp);
1393       goto restart;
1394
1395     case SAVE_EXPR:
1396       exp = TREE_OPERAND (exp, 0);
1397       goto restart;
1398
1399     case TRUTH_ORIF_EXPR:
1400     case TRUTH_ANDIF_EXPR:
1401       /* In && or ||, warn if 2nd operand has no side effect.  */
1402       exp = TREE_OPERAND (exp, 1);
1403       goto restart;
1404
1405     case COMPOUND_EXPR:
1406       if (TREE_NO_WARNING (exp))
1407         return 0;
1408       if (warn_if_unused_value (TREE_OPERAND (exp, 0), locus))
1409         return 1;
1410       /* Let people do `(foo (), 0)' without a warning.  */
1411       if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1412         return 0;
1413       exp = TREE_OPERAND (exp, 1);
1414       goto restart;
1415
1416     case NOP_EXPR:
1417     case CONVERT_EXPR:
1418     case NON_LVALUE_EXPR:
1419       /* Don't warn about conversions not explicit in the user's program.  */
1420       if (TREE_NO_WARNING (exp))
1421         return 0;
1422       /* Assignment to a cast usually results in a cast of a modify.
1423          Don't complain about that.  There can be an arbitrary number of
1424          casts before the modify, so we must loop until we find the first
1425          non-cast expression and then test to see if that is a modify.  */
1426       {
1427         tree tem = TREE_OPERAND (exp, 0);
1428
1429         while (TREE_CODE (tem) == CONVERT_EXPR || TREE_CODE (tem) == NOP_EXPR)
1430           tem = TREE_OPERAND (tem, 0);
1431
1432         if (TREE_CODE (tem) == MODIFY_EXPR || TREE_CODE (tem) == INIT_EXPR
1433             || TREE_CODE (tem) == CALL_EXPR)
1434           return 0;
1435       }
1436       goto maybe_warn;
1437
1438     case INDIRECT_REF:
1439       /* Don't warn about automatic dereferencing of references, since
1440          the user cannot control it.  */
1441       if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
1442         {
1443           exp = TREE_OPERAND (exp, 0);
1444           goto restart;
1445         }
1446       /* Fall through.  */
1447
1448     default:
1449       /* Referencing a volatile value is a side effect, so don't warn.  */
1450       if ((DECL_P (exp) || REFERENCE_CLASS_P (exp))
1451           && TREE_THIS_VOLATILE (exp))
1452         return 0;
1453
1454       /* If this is an expression which has no operands, there is no value
1455          to be unused.  There are no such language-independent codes,
1456          but front ends may define such.  */
1457       if (EXPRESSION_CLASS_P (exp) && TREE_CODE_LENGTH (TREE_CODE (exp)) == 0)
1458         return 0;
1459
1460     maybe_warn:
1461       /* If this is an expression with side effects, don't warn.  */
1462       if (TREE_SIDE_EFFECTS (exp))
1463         return 0;
1464
1465       warning ("%Hvalue computed is not used", &locus);
1466       return 1;
1467     }
1468 }
1469
1470 \f
1471 /* Generate RTL to return from the current function, with no value.
1472    (That is, we do not do anything about returning any value.)  */
1473
1474 void
1475 expand_null_return (void)
1476 {
1477   /* If this function was declared to return a value, but we
1478      didn't, clobber the return registers so that they are not
1479      propagated live to the rest of the function.  */
1480   clobber_return_register ();
1481
1482   expand_null_return_1 ();
1483 }
1484
1485 /* Generate RTL to return directly from the current function.
1486    (That is, we bypass any return value.)  */
1487
1488 void
1489 expand_naked_return (void)
1490 {
1491   rtx end_label;
1492
1493   clear_pending_stack_adjust ();
1494   do_pending_stack_adjust ();
1495
1496   end_label = naked_return_label;
1497   if (end_label == 0)
1498     end_label = naked_return_label = gen_label_rtx ();
1499
1500   emit_jump (end_label);
1501 }
1502
1503 /* If the current function returns values in the most significant part
1504    of a register, shift return value VAL appropriately.  The mode of
1505    the function's return type is known not to be BLKmode.  */
1506
1507 static rtx
1508 shift_return_value (rtx val)
1509 {
1510   tree type;
1511
1512   type = TREE_TYPE (DECL_RESULT (current_function_decl));
1513   if (targetm.calls.return_in_msb (type))
1514     {
1515       rtx target;
1516       HOST_WIDE_INT shift;
1517
1518       target = DECL_RTL (DECL_RESULT (current_function_decl));
1519       shift = (GET_MODE_BITSIZE (GET_MODE (target))
1520                - BITS_PER_UNIT * int_size_in_bytes (type));
1521       if (shift > 0)
1522         val = expand_shift (LSHIFT_EXPR, GET_MODE (target),
1523                             gen_lowpart (GET_MODE (target), val),
1524                             build_int_cst (NULL_TREE, shift), target, 1);
1525     }
1526   return val;
1527 }
1528
1529
1530 /* Generate RTL to return from the current function, with value VAL.  */
1531
1532 static void
1533 expand_value_return (rtx val)
1534 {
1535   /* Copy the value to the return location
1536      unless it's already there.  */
1537
1538   rtx return_reg = DECL_RTL (DECL_RESULT (current_function_decl));
1539   if (return_reg != val)
1540     {
1541       tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
1542       if (targetm.calls.promote_function_return (TREE_TYPE (current_function_decl)))
1543       {
1544         int unsignedp = TYPE_UNSIGNED (type);
1545         enum machine_mode old_mode
1546           = DECL_MODE (DECL_RESULT (current_function_decl));
1547         enum machine_mode mode
1548           = promote_mode (type, old_mode, &unsignedp, 1);
1549
1550         if (mode != old_mode)
1551           val = convert_modes (mode, old_mode, val, unsignedp);
1552       }
1553       if (GET_CODE (return_reg) == PARALLEL)
1554         emit_group_load (return_reg, val, type, int_size_in_bytes (type));
1555       else
1556         emit_move_insn (return_reg, val);
1557     }
1558
1559   expand_null_return_1 ();
1560 }
1561
1562 /* Output a return with no value.  */
1563
1564 static void
1565 expand_null_return_1 (void)
1566 {
1567   clear_pending_stack_adjust ();
1568   do_pending_stack_adjust ();
1569   emit_jump (return_label);
1570 }
1571 \f
1572 /* Generate RTL to evaluate the expression RETVAL and return it
1573    from the current function.  */
1574
1575 void
1576 expand_return (tree retval)
1577 {
1578   rtx result_rtl;
1579   rtx val = 0;
1580   tree retval_rhs;
1581
1582   /* If function wants no value, give it none.  */
1583   if (TREE_CODE (TREE_TYPE (TREE_TYPE (current_function_decl))) == VOID_TYPE)
1584     {
1585       expand_expr (retval, NULL_RTX, VOIDmode, 0);
1586       expand_null_return ();
1587       return;
1588     }
1589
1590   if (retval == error_mark_node)
1591     {
1592       /* Treat this like a return of no value from a function that
1593          returns a value.  */
1594       expand_null_return ();
1595       return;
1596     }
1597   else if ((TREE_CODE (retval) == MODIFY_EXPR
1598             || TREE_CODE (retval) == INIT_EXPR)
1599            && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
1600     retval_rhs = TREE_OPERAND (retval, 1);
1601   else
1602     retval_rhs = retval;
1603
1604   result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
1605
1606   /* If we are returning the RESULT_DECL, then the value has already
1607      been stored into it, so we don't have to do anything special.  */
1608   if (TREE_CODE (retval_rhs) == RESULT_DECL)
1609     expand_value_return (result_rtl);
1610
1611   /* If the result is an aggregate that is being returned in one (or more)
1612      registers, load the registers here.  The compiler currently can't handle
1613      copying a BLKmode value into registers.  We could put this code in a
1614      more general area (for use by everyone instead of just function
1615      call/return), but until this feature is generally usable it is kept here
1616      (and in expand_call).  */
1617
1618   else if (retval_rhs != 0
1619            && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
1620            && REG_P (result_rtl))
1621     {
1622       int i;
1623       unsigned HOST_WIDE_INT bitpos, xbitpos;
1624       unsigned HOST_WIDE_INT padding_correction = 0;
1625       unsigned HOST_WIDE_INT bytes
1626         = int_size_in_bytes (TREE_TYPE (retval_rhs));
1627       int n_regs = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1628       unsigned int bitsize
1629         = MIN (TYPE_ALIGN (TREE_TYPE (retval_rhs)), BITS_PER_WORD);
1630       rtx *result_pseudos = alloca (sizeof (rtx) * n_regs);
1631       rtx result_reg, src = NULL_RTX, dst = NULL_RTX;
1632       rtx result_val = expand_expr (retval_rhs, NULL_RTX, VOIDmode, 0);
1633       enum machine_mode tmpmode, result_reg_mode;
1634
1635       if (bytes == 0)
1636         {
1637           expand_null_return ();
1638           return;
1639         }
1640
1641       /* If the structure doesn't take up a whole number of words, see
1642          whether the register value should be padded on the left or on
1643          the right.  Set PADDING_CORRECTION to the number of padding
1644          bits needed on the left side.
1645
1646          In most ABIs, the structure will be returned at the least end of
1647          the register, which translates to right padding on little-endian
1648          targets and left padding on big-endian targets.  The opposite
1649          holds if the structure is returned at the most significant
1650          end of the register.  */
1651       if (bytes % UNITS_PER_WORD != 0
1652           && (targetm.calls.return_in_msb (TREE_TYPE (retval_rhs))
1653               ? !BYTES_BIG_ENDIAN
1654               : BYTES_BIG_ENDIAN))
1655         padding_correction = (BITS_PER_WORD - ((bytes % UNITS_PER_WORD)
1656                                                * BITS_PER_UNIT));
1657
1658       /* Copy the structure BITSIZE bits at a time.  */
1659       for (bitpos = 0, xbitpos = padding_correction;
1660            bitpos < bytes * BITS_PER_UNIT;
1661            bitpos += bitsize, xbitpos += bitsize)
1662         {
1663           /* We need a new destination pseudo each time xbitpos is
1664              on a word boundary and when xbitpos == padding_correction
1665              (the first time through).  */
1666           if (xbitpos % BITS_PER_WORD == 0
1667               || xbitpos == padding_correction)
1668             {
1669               /* Generate an appropriate register.  */
1670               dst = gen_reg_rtx (word_mode);
1671               result_pseudos[xbitpos / BITS_PER_WORD] = dst;
1672
1673               /* Clear the destination before we move anything into it.  */
1674               emit_move_insn (dst, CONST0_RTX (GET_MODE (dst)));
1675             }
1676
1677           /* We need a new source operand each time bitpos is on a word
1678              boundary.  */
1679           if (bitpos % BITS_PER_WORD == 0)
1680             src = operand_subword_force (result_val,
1681                                          bitpos / BITS_PER_WORD,
1682                                          BLKmode);
1683
1684           /* Use bitpos for the source extraction (left justified) and
1685              xbitpos for the destination store (right justified).  */
1686           store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode,
1687                            extract_bit_field (src, bitsize,
1688                                               bitpos % BITS_PER_WORD, 1,
1689                                               NULL_RTX, word_mode, word_mode));
1690         }
1691
1692       tmpmode = GET_MODE (result_rtl);
1693       if (tmpmode == BLKmode)
1694         {
1695           /* Find the smallest integer mode large enough to hold the
1696              entire structure and use that mode instead of BLKmode
1697              on the USE insn for the return register.  */
1698           for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
1699                tmpmode != VOIDmode;
1700                tmpmode = GET_MODE_WIDER_MODE (tmpmode))
1701             /* Have we found a large enough mode?  */
1702             if (GET_MODE_SIZE (tmpmode) >= bytes)
1703               break;
1704
1705           /* A suitable mode should have been found.  */
1706           gcc_assert (tmpmode != VOIDmode);
1707
1708           PUT_MODE (result_rtl, tmpmode);
1709         }
1710
1711       if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode))
1712         result_reg_mode = word_mode;
1713       else
1714         result_reg_mode = tmpmode;
1715       result_reg = gen_reg_rtx (result_reg_mode);
1716
1717       for (i = 0; i < n_regs; i++)
1718         emit_move_insn (operand_subword (result_reg, i, 0, result_reg_mode),
1719                         result_pseudos[i]);
1720
1721       if (tmpmode != result_reg_mode)
1722         result_reg = gen_lowpart (tmpmode, result_reg);
1723
1724       expand_value_return (result_reg);
1725     }
1726   else if (retval_rhs != 0
1727            && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
1728            && (REG_P (result_rtl)
1729                || (GET_CODE (result_rtl) == PARALLEL)))
1730     {
1731       /* Calculate the return value into a temporary (usually a pseudo
1732          reg).  */
1733       tree ot = TREE_TYPE (DECL_RESULT (current_function_decl));
1734       tree nt = build_qualified_type (ot, TYPE_QUALS (ot) | TYPE_QUAL_CONST);
1735
1736       val = assign_temp (nt, 0, 0, 1);
1737       val = expand_expr (retval_rhs, val, GET_MODE (val), 0);
1738       val = force_not_mem (val);
1739       /* Return the calculated value.  */
1740       expand_value_return (shift_return_value (val));
1741     }
1742   else
1743     {
1744       /* No hard reg used; calculate value into hard return reg.  */
1745       expand_expr (retval, const0_rtx, VOIDmode, 0);
1746       expand_value_return (result_rtl);
1747     }
1748 }
1749 \f
1750 /* Given a pointer to a BLOCK node return nonzero if (and only if) the node
1751    in question represents the outermost pair of curly braces (i.e. the "body
1752    block") of a function or method.
1753
1754    For any BLOCK node representing a "body block" of a function or method, the
1755    BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
1756    represents the outermost (function) scope for the function or method (i.e.
1757    the one which includes the formal parameters).  The BLOCK_SUPERCONTEXT of
1758    *that* node in turn will point to the relevant FUNCTION_DECL node.  */
1759
1760 int
1761 is_body_block (tree stmt)
1762 {
1763   if (lang_hooks.no_body_blocks)
1764     return 0;
1765
1766   if (TREE_CODE (stmt) == BLOCK)
1767     {
1768       tree parent = BLOCK_SUPERCONTEXT (stmt);
1769
1770       if (parent && TREE_CODE (parent) == BLOCK)
1771         {
1772           tree grandparent = BLOCK_SUPERCONTEXT (parent);
1773
1774           if (grandparent && TREE_CODE (grandparent) == FUNCTION_DECL)
1775             return 1;
1776         }
1777     }
1778
1779   return 0;
1780 }
1781
1782 /* Emit code to restore vital registers at the beginning of a nonlocal goto
1783    handler.  */
1784 static void
1785 expand_nl_goto_receiver (void)
1786 {
1787   /* Clobber the FP when we get here, so we have to make sure it's
1788      marked as used by this function.  */
1789   emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
1790
1791   /* Mark the static chain as clobbered here so life information
1792      doesn't get messed up for it.  */
1793   emit_insn (gen_rtx_CLOBBER (VOIDmode, static_chain_rtx));
1794
1795 #ifdef HAVE_nonlocal_goto
1796   if (! HAVE_nonlocal_goto)
1797 #endif
1798     /* First adjust our frame pointer to its actual value.  It was
1799        previously set to the start of the virtual area corresponding to
1800        the stacked variables when we branched here and now needs to be
1801        adjusted to the actual hardware fp value.
1802
1803        Assignments are to virtual registers are converted by
1804        instantiate_virtual_regs into the corresponding assignment
1805        to the underlying register (fp in this case) that makes
1806        the original assignment true.
1807        So the following insn will actually be
1808        decrementing fp by STARTING_FRAME_OFFSET.  */
1809     emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
1810
1811 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
1812   if (fixed_regs[ARG_POINTER_REGNUM])
1813     {
1814 #ifdef ELIMINABLE_REGS
1815       /* If the argument pointer can be eliminated in favor of the
1816          frame pointer, we don't need to restore it.  We assume here
1817          that if such an elimination is present, it can always be used.
1818          This is the case on all known machines; if we don't make this
1819          assumption, we do unnecessary saving on many machines.  */
1820       static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
1821       size_t i;
1822
1823       for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
1824         if (elim_regs[i].from == ARG_POINTER_REGNUM
1825             && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
1826           break;
1827
1828       if (i == ARRAY_SIZE (elim_regs))
1829 #endif
1830         {
1831           /* Now restore our arg pointer from the address at which it
1832              was saved in our stack frame.  */
1833           emit_move_insn (virtual_incoming_args_rtx,
1834                           copy_to_reg (get_arg_pointer_save_area (cfun)));
1835         }
1836     }
1837 #endif
1838
1839 #ifdef HAVE_nonlocal_goto_receiver
1840   if (HAVE_nonlocal_goto_receiver)
1841     emit_insn (gen_nonlocal_goto_receiver ());
1842 #endif
1843
1844   /* @@@ This is a kludge.  Not all machine descriptions define a blockage
1845      insn, but we must not allow the code we just generated to be reordered
1846      by scheduling.  Specifically, the update of the frame pointer must
1847      happen immediately, not later.  So emit an ASM_INPUT to act as blockage
1848      insn.  */
1849   emit_insn (gen_rtx_ASM_INPUT (VOIDmode, ""));
1850 }
1851 \f
1852 /* Generate RTL for the automatic variable declaration DECL.
1853    (Other kinds of declarations are simply ignored if seen here.)  */
1854
1855 void
1856 expand_decl (tree decl)
1857 {
1858   tree type;
1859
1860   type = TREE_TYPE (decl);
1861
1862   /* For a CONST_DECL, set mode, alignment, and sizes from those of the
1863      type in case this node is used in a reference.  */
1864   if (TREE_CODE (decl) == CONST_DECL)
1865     {
1866       DECL_MODE (decl) = TYPE_MODE (type);
1867       DECL_ALIGN (decl) = TYPE_ALIGN (type);
1868       DECL_SIZE (decl) = TYPE_SIZE (type);
1869       DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
1870       return;
1871     }
1872
1873   /* Otherwise, only automatic variables need any expansion done.  Static and
1874      external variables, and external functions, will be handled by
1875      `assemble_variable' (called from finish_decl).  TYPE_DECL requires
1876      nothing.  PARM_DECLs are handled in `assign_parms'.  */
1877   if (TREE_CODE (decl) != VAR_DECL)
1878     return;
1879
1880   if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
1881     return;
1882
1883   /* Create the RTL representation for the variable.  */
1884
1885   if (type == error_mark_node)
1886     SET_DECL_RTL (decl, gen_rtx_MEM (BLKmode, const0_rtx));
1887
1888   else if (DECL_SIZE (decl) == 0)
1889     /* Variable with incomplete type.  */
1890     {
1891       rtx x;
1892       if (DECL_INITIAL (decl) == 0)
1893         /* Error message was already done; now avoid a crash.  */
1894         x = gen_rtx_MEM (BLKmode, const0_rtx);
1895       else
1896         /* An initializer is going to decide the size of this array.
1897            Until we know the size, represent its address with a reg.  */
1898         x = gen_rtx_MEM (BLKmode, gen_reg_rtx (Pmode));
1899
1900       set_mem_attributes (x, decl, 1);
1901       SET_DECL_RTL (decl, x);
1902     }
1903   else if (use_register_for_decl (decl))
1904     {
1905       /* Automatic variable that can go in a register.  */
1906       int unsignedp = TYPE_UNSIGNED (type);
1907       enum machine_mode reg_mode
1908         = promote_mode (type, DECL_MODE (decl), &unsignedp, 0);
1909
1910       SET_DECL_RTL (decl, gen_reg_rtx (reg_mode));
1911
1912       /* Note if the object is a user variable.  */
1913       if (!DECL_ARTIFICIAL (decl))
1914         {
1915           mark_user_reg (DECL_RTL (decl));
1916
1917           /* Trust user variables which have a pointer type to really
1918              be pointers.  Do not trust compiler generated temporaries
1919              as our type system is totally busted as it relates to
1920              pointer arithmetic which translates into lots of compiler
1921              generated objects with pointer types, but which are not really
1922              pointers.  */
1923           if (POINTER_TYPE_P (type))
1924             mark_reg_pointer (DECL_RTL (decl),
1925                               TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1926         }
1927     }
1928
1929   else if (TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
1930            && ! (flag_stack_check && ! STACK_CHECK_BUILTIN
1931                  && 0 < compare_tree_int (DECL_SIZE_UNIT (decl),
1932                                           STACK_CHECK_MAX_VAR_SIZE)))
1933     {
1934       /* Variable of fixed size that goes on the stack.  */
1935       rtx oldaddr = 0;
1936       rtx addr;
1937       rtx x;
1938
1939       /* If we previously made RTL for this decl, it must be an array
1940          whose size was determined by the initializer.
1941          The old address was a register; set that register now
1942          to the proper address.  */
1943       if (DECL_RTL_SET_P (decl))
1944         {
1945           gcc_assert (MEM_P (DECL_RTL (decl)));
1946           gcc_assert (REG_P (XEXP (DECL_RTL (decl), 0)));
1947           oldaddr = XEXP (DECL_RTL (decl), 0);
1948         }
1949
1950       /* Set alignment we actually gave this decl.  */
1951       DECL_ALIGN (decl) = (DECL_MODE (decl) == BLKmode ? BIGGEST_ALIGNMENT
1952                            : GET_MODE_BITSIZE (DECL_MODE (decl)));
1953       DECL_USER_ALIGN (decl) = 0;
1954
1955       x = assign_temp (decl, 1, 1, 1);
1956       set_mem_attributes (x, decl, 1);
1957       SET_DECL_RTL (decl, x);
1958
1959       if (oldaddr)
1960         {
1961           addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
1962           if (addr != oldaddr)
1963             emit_move_insn (oldaddr, addr);
1964         }
1965     }
1966   else
1967     /* Dynamic-size object: must push space on the stack.  */
1968     {
1969       rtx address, size, x;
1970
1971       /* Record the stack pointer on entry to block, if have
1972          not already done so.  */
1973       do_pending_stack_adjust ();
1974
1975       /* Compute the variable's size, in bytes.  This will expand any
1976          needed SAVE_EXPRs for the first time.  */
1977       size = expand_expr (DECL_SIZE_UNIT (decl), NULL_RTX, VOIDmode, 0);
1978       free_temp_slots ();
1979
1980       /* Allocate space on the stack for the variable.  Note that
1981          DECL_ALIGN says how the variable is to be aligned and we
1982          cannot use it to conclude anything about the alignment of
1983          the size.  */
1984       address = allocate_dynamic_stack_space (size, NULL_RTX,
1985                                               TYPE_ALIGN (TREE_TYPE (decl)));
1986
1987       /* Reference the variable indirect through that rtx.  */
1988       x = gen_rtx_MEM (DECL_MODE (decl), address);
1989       set_mem_attributes (x, decl, 1);
1990       SET_DECL_RTL (decl, x);
1991
1992
1993       /* Indicate the alignment we actually gave this variable.  */
1994 #ifdef STACK_BOUNDARY
1995       DECL_ALIGN (decl) = STACK_BOUNDARY;
1996 #else
1997       DECL_ALIGN (decl) = BIGGEST_ALIGNMENT;
1998 #endif
1999       DECL_USER_ALIGN (decl) = 0;
2000     }
2001 }
2002 \f
2003 /* Emit code to save the current value of stack.  */
2004 rtx
2005 expand_stack_save (void)
2006 {
2007   rtx ret = NULL_RTX;
2008
2009   do_pending_stack_adjust ();
2010   emit_stack_save (SAVE_BLOCK, &ret, NULL_RTX);
2011   return ret;
2012 }
2013
2014 /* Emit code to restore the current value of stack.  */
2015 void
2016 expand_stack_restore (tree var)
2017 {
2018   rtx sa = DECL_RTL (var);
2019
2020   emit_stack_restore (SAVE_BLOCK, sa, NULL_RTX);
2021 }
2022 \f
2023 /* DECL is an anonymous union.  CLEANUP is a cleanup for DECL.
2024    DECL_ELTS is the list of elements that belong to DECL's type.
2025    In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup.  */
2026
2027 void
2028 expand_anon_union_decl (tree decl, tree cleanup ATTRIBUTE_UNUSED,
2029                         tree decl_elts)
2030 {
2031   rtx x;
2032   tree t;
2033
2034   /* If any of the elements are addressable, so is the entire union.  */
2035   for (t = decl_elts; t; t = TREE_CHAIN (t))
2036     if (TREE_ADDRESSABLE (TREE_VALUE (t)))
2037       {
2038         TREE_ADDRESSABLE (decl) = 1;
2039         break;
2040       }
2041
2042   expand_decl (decl);
2043   x = DECL_RTL (decl);
2044
2045   /* Go through the elements, assigning RTL to each.  */
2046   for (t = decl_elts; t; t = TREE_CHAIN (t))
2047     {
2048       tree decl_elt = TREE_VALUE (t);
2049       enum machine_mode mode = TYPE_MODE (TREE_TYPE (decl_elt));
2050       rtx decl_rtl;
2051
2052       /* If any of the elements are addressable, so is the entire
2053          union.  */
2054       if (TREE_USED (decl_elt))
2055         TREE_USED (decl) = 1;
2056
2057       /* Propagate the union's alignment to the elements.  */
2058       DECL_ALIGN (decl_elt) = DECL_ALIGN (decl);
2059       DECL_USER_ALIGN (decl_elt) = DECL_USER_ALIGN (decl);
2060
2061       /* If the element has BLKmode and the union doesn't, the union is
2062          aligned such that the element doesn't need to have BLKmode, so
2063          change the element's mode to the appropriate one for its size.  */
2064       if (mode == BLKmode && DECL_MODE (decl) != BLKmode)
2065         DECL_MODE (decl_elt) = mode
2066           = mode_for_size_tree (DECL_SIZE (decl_elt), MODE_INT, 1);
2067
2068       if (mode == GET_MODE (x))
2069         decl_rtl = x;
2070       else if (MEM_P (x))
2071         /* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
2072            instead create a new MEM rtx with the proper mode.  */
2073         decl_rtl = adjust_address_nv (x, mode, 0);
2074       else
2075         {
2076           gcc_assert (REG_P (x));
2077           decl_rtl = gen_lowpart_SUBREG (mode, x);
2078         }
2079       SET_DECL_RTL (decl_elt, decl_rtl);
2080     }
2081 }
2082 \f
2083 /* Do the insertion of a case label into case_list.  The labels are
2084    fed to us in descending order from the sorted vector of case labels used
2085    in the tree part of the middle end.  So the list we construct is
2086    sorted in ascending order.  The bounds on the case range, LOW and HIGH,
2087    are converted to case's index type TYPE.  */
2088
2089 static struct case_node *
2090 add_case_node (struct case_node *head, tree type, tree low, tree high,
2091                tree label)
2092 {
2093   tree min_value, max_value;
2094   struct case_node *r;
2095
2096   gcc_assert (TREE_CODE (low) == INTEGER_CST);
2097   gcc_assert (!high || TREE_CODE (high) == INTEGER_CST);
2098
2099   min_value = TYPE_MIN_VALUE (type);
2100   max_value = TYPE_MAX_VALUE (type);
2101
2102   /* If there's no HIGH value, then this is not a case range; it's
2103      just a simple case label.  But that's just a degenerate case
2104      range.
2105      If the bounds are equal, turn this into the one-value case.  */
2106   if (!high || tree_int_cst_equal (low, high))
2107     {
2108       /* If the simple case value is unreachable, ignore it.  */
2109       if ((TREE_CODE (min_value) == INTEGER_CST
2110             && tree_int_cst_compare (low, min_value) < 0)
2111           || (TREE_CODE (max_value) == INTEGER_CST
2112               && tree_int_cst_compare (low, max_value) > 0))
2113         return head;
2114       low = fold_convert (type, low);
2115       high = low;
2116     }
2117   else
2118     {
2119       /* If the entire case range is unreachable, ignore it.  */
2120       if ((TREE_CODE (min_value) == INTEGER_CST
2121             && tree_int_cst_compare (high, min_value) < 0)
2122           || (TREE_CODE (max_value) == INTEGER_CST
2123               && tree_int_cst_compare (low, max_value) > 0))
2124         return head;
2125
2126       /* If the lower bound is less than the index type's minimum
2127          value, truncate the range bounds.  */
2128       if (TREE_CODE (min_value) == INTEGER_CST
2129             && tree_int_cst_compare (low, min_value) < 0)
2130         low = min_value;
2131       low = fold_convert (type, low);
2132
2133       /* If the upper bound is greater than the index type's maximum
2134          value, truncate the range bounds.  */
2135       if (TREE_CODE (max_value) == INTEGER_CST
2136           && tree_int_cst_compare (high, max_value) > 0)
2137         high = max_value;
2138       high = fold_convert (type, high);
2139     }
2140
2141
2142   /* Add this label to the chain.  */
2143   r = ggc_alloc (sizeof (struct case_node));
2144   r->low = low;
2145   r->high = high;
2146   r->code_label = label;
2147   r->parent = r->left = NULL;
2148   r->right = head;
2149   return r;
2150 }
2151 \f
2152 /* Maximum number of case bit tests.  */
2153 #define MAX_CASE_BIT_TESTS  3
2154
2155 /* By default, enable case bit tests on targets with ashlsi3.  */
2156 #ifndef CASE_USE_BIT_TESTS
2157 #define CASE_USE_BIT_TESTS  (ashl_optab->handlers[word_mode].insn_code \
2158                              != CODE_FOR_nothing)
2159 #endif
2160
2161
2162 /* A case_bit_test represents a set of case nodes that may be
2163    selected from using a bit-wise comparison.  HI and LO hold
2164    the integer to be tested against, LABEL contains the label
2165    to jump to upon success and BITS counts the number of case
2166    nodes handled by this test, typically the number of bits
2167    set in HI:LO.  */
2168
2169 struct case_bit_test
2170 {
2171   HOST_WIDE_INT hi;
2172   HOST_WIDE_INT lo;
2173   rtx label;
2174   int bits;
2175 };
2176
2177 /* Determine whether "1 << x" is relatively cheap in word_mode.  */
2178
2179 static
2180 bool lshift_cheap_p (void)
2181 {
2182   static bool init = false;
2183   static bool cheap = true;
2184
2185   if (!init)
2186     {
2187       rtx reg = gen_rtx_REG (word_mode, 10000);
2188       int cost = rtx_cost (gen_rtx_ASHIFT (word_mode, const1_rtx, reg), SET);
2189       cheap = cost < COSTS_N_INSNS (3);
2190       init = true;
2191     }
2192
2193   return cheap;
2194 }
2195
2196 /* Comparison function for qsort to order bit tests by decreasing
2197    number of case nodes, i.e. the node with the most cases gets
2198    tested first.  */
2199
2200 static int
2201 case_bit_test_cmp (const void *p1, const void *p2)
2202 {
2203   const struct case_bit_test *d1 = p1;
2204   const struct case_bit_test *d2 = p2;
2205
2206   return d2->bits - d1->bits;
2207 }
2208
2209 /*  Expand a switch statement by a short sequence of bit-wise
2210     comparisons.  "switch(x)" is effectively converted into
2211     "if ((1 << (x-MINVAL)) & CST)" where CST and MINVAL are
2212     integer constants.
2213
2214     INDEX_EXPR is the value being switched on, which is of
2215     type INDEX_TYPE.  MINVAL is the lowest case value of in
2216     the case nodes, of INDEX_TYPE type, and RANGE is highest
2217     value minus MINVAL, also of type INDEX_TYPE.  NODES is
2218     the set of case nodes, and DEFAULT_LABEL is the label to
2219     branch to should none of the cases match.
2220
2221     There *MUST* be MAX_CASE_BIT_TESTS or less unique case
2222     node targets.  */
2223
2224 static void
2225 emit_case_bit_tests (tree index_type, tree index_expr, tree minval,
2226                      tree range, case_node_ptr nodes, rtx default_label)
2227 {
2228   struct case_bit_test test[MAX_CASE_BIT_TESTS];
2229   enum machine_mode mode;
2230   rtx expr, index, label;
2231   unsigned int i,j,lo,hi;
2232   struct case_node *n;
2233   unsigned int count;
2234
2235   count = 0;
2236   for (n = nodes; n; n = n->right)
2237     {
2238       label = label_rtx (n->code_label);
2239       for (i = 0; i < count; i++)
2240         if (label == test[i].label)
2241           break;
2242
2243       if (i == count)
2244         {
2245           gcc_assert (count < MAX_CASE_BIT_TESTS);
2246           test[i].hi = 0;
2247           test[i].lo = 0;
2248           test[i].label = label;
2249           test[i].bits = 1;
2250           count++;
2251         }
2252       else
2253         test[i].bits++;
2254
2255       lo = tree_low_cst (fold (build2 (MINUS_EXPR, index_type,
2256                                        n->low, minval)), 1);
2257       hi = tree_low_cst (fold (build2 (MINUS_EXPR, index_type,
2258                                        n->high, minval)), 1);
2259       for (j = lo; j <= hi; j++)
2260         if (j >= HOST_BITS_PER_WIDE_INT)
2261           test[i].hi |= (HOST_WIDE_INT) 1 << (j - HOST_BITS_PER_INT);
2262         else
2263           test[i].lo |= (HOST_WIDE_INT) 1 << j;
2264     }
2265
2266   qsort (test, count, sizeof(*test), case_bit_test_cmp);
2267
2268   index_expr = fold (build2 (MINUS_EXPR, index_type,
2269                              convert (index_type, index_expr),
2270                              convert (index_type, minval)));
2271   index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
2272   do_pending_stack_adjust ();
2273
2274   mode = TYPE_MODE (index_type);
2275   expr = expand_expr (range, NULL_RTX, VOIDmode, 0);
2276   emit_cmp_and_jump_insns (index, expr, GTU, NULL_RTX, mode, 1,
2277                            default_label);
2278
2279   index = convert_to_mode (word_mode, index, 0);
2280   index = expand_binop (word_mode, ashl_optab, const1_rtx,
2281                         index, NULL_RTX, 1, OPTAB_WIDEN);
2282
2283   for (i = 0; i < count; i++)
2284     {
2285       expr = immed_double_const (test[i].lo, test[i].hi, word_mode);
2286       expr = expand_binop (word_mode, and_optab, index, expr,
2287                            NULL_RTX, 1, OPTAB_WIDEN);
2288       emit_cmp_and_jump_insns (expr, const0_rtx, NE, NULL_RTX,
2289                                word_mode, 1, test[i].label);
2290     }
2291
2292   emit_jump (default_label);
2293 }
2294
2295 #ifndef HAVE_casesi
2296 #define HAVE_casesi 0
2297 #endif
2298
2299 #ifndef HAVE_tablejump
2300 #define HAVE_tablejump 0
2301 #endif
2302
2303 /* Terminate a case (Pascal) or switch (C) statement
2304    in which ORIG_INDEX is the expression to be tested.
2305    If ORIG_TYPE is not NULL, it is the original ORIG_INDEX
2306    type as given in the source before any compiler conversions.
2307    Generate the code to test it and jump to the right place.  */
2308
2309 void
2310 expand_case (tree exp)
2311 {
2312   tree minval = NULL_TREE, maxval = NULL_TREE, range = NULL_TREE;
2313   rtx default_label = 0;
2314   struct case_node *n;
2315   unsigned int count, uniq;
2316   rtx index;
2317   rtx table_label;
2318   int ncases;
2319   rtx *labelvec;
2320   int i, fail;
2321   rtx before_case, end, lab;
2322
2323   tree vec = SWITCH_LABELS (exp);
2324   tree orig_type = TREE_TYPE (exp);
2325   tree index_expr = SWITCH_COND (exp);
2326   tree index_type = TREE_TYPE (index_expr);
2327   int unsignedp = TYPE_UNSIGNED (index_type);
2328
2329   /* The insn after which the case dispatch should finally
2330      be emitted.  Zero for a dummy.  */
2331   rtx start;
2332
2333   /* A list of case labels; it is first built as a list and it may then
2334      be rearranged into a nearly balanced binary tree.  */
2335   struct case_node *case_list = 0;
2336
2337   /* Label to jump to if no case matches.  */
2338   tree default_label_decl;
2339
2340   /* The switch body is lowered in gimplify.c, we should never have
2341      switches with a non-NULL SWITCH_BODY here.  */
2342   gcc_assert (!SWITCH_BODY (exp));
2343   gcc_assert (SWITCH_LABELS (exp));
2344
2345   do_pending_stack_adjust ();
2346
2347   /* An ERROR_MARK occurs for various reasons including invalid data type.  */
2348   if (index_type != error_mark_node)
2349     {
2350       tree elt;
2351       bitmap label_bitmap;
2352
2353       /* cleanup_tree_cfg removes all SWITCH_EXPR with their index
2354          expressions being INTEGER_CST.  */
2355       gcc_assert (TREE_CODE (index_expr) != INTEGER_CST);
2356
2357       /* The default case is at the end of TREE_VEC.  */
2358       elt = TREE_VEC_ELT (vec, TREE_VEC_LENGTH (vec) - 1);
2359       gcc_assert (!CASE_HIGH (elt));
2360       gcc_assert (!CASE_LOW (elt));
2361       default_label_decl = CASE_LABEL (elt);
2362
2363       for (i = TREE_VEC_LENGTH (vec) - 1; --i >= 0; )
2364         {
2365           elt = TREE_VEC_ELT (vec, i);
2366           gcc_assert (CASE_LOW (elt));
2367           case_list = add_case_node (case_list, index_type,
2368                                      CASE_LOW (elt), CASE_HIGH (elt),
2369                                      CASE_LABEL (elt));
2370         }
2371
2372
2373       /* Make sure start points to something that won't need any
2374          transformation before the end of this function.  */
2375       start = get_last_insn ();
2376       if (! NOTE_P (start))
2377         {
2378           emit_note (NOTE_INSN_DELETED);
2379           start = get_last_insn ();
2380         }
2381
2382       default_label = label_rtx (default_label_decl);
2383
2384       before_case = get_last_insn ();
2385
2386       /* Get upper and lower bounds of case values.  */
2387
2388       uniq = 0;
2389       count = 0;
2390       label_bitmap = BITMAP_XMALLOC ();
2391       for (n = case_list; n; n = n->right)
2392         {
2393           /* Count the elements and track the largest and smallest
2394              of them (treating them as signed even if they are not).  */
2395           if (count++ == 0)
2396             {
2397               minval = n->low;
2398               maxval = n->high;
2399             }
2400           else
2401             {
2402               if (INT_CST_LT (n->low, minval))
2403                 minval = n->low;
2404               if (INT_CST_LT (maxval, n->high))
2405                 maxval = n->high;
2406             }
2407           /* A range counts double, since it requires two compares.  */
2408           if (! tree_int_cst_equal (n->low, n->high))
2409             count++;
2410
2411           /* If we have not seen this label yet, then increase the
2412              number of unique case node targets seen.  */
2413           lab = label_rtx (n->code_label);
2414           if (!bitmap_bit_p (label_bitmap, CODE_LABEL_NUMBER (lab)))
2415             {
2416               bitmap_set_bit (label_bitmap, CODE_LABEL_NUMBER (lab));
2417               uniq++;
2418             }
2419         }
2420
2421       BITMAP_XFREE (label_bitmap);
2422
2423       /* cleanup_tree_cfg removes all SWITCH_EXPR with a single
2424          destination, such as one with a default case only.  */
2425       gcc_assert (count != 0);
2426
2427       /* Compute span of values.  */
2428       range = fold (build2 (MINUS_EXPR, index_type, maxval, minval));
2429
2430       /* Try implementing this switch statement by a short sequence of
2431          bit-wise comparisons.  However, we let the binary-tree case
2432          below handle constant index expressions.  */
2433       if (CASE_USE_BIT_TESTS
2434           && ! TREE_CONSTANT (index_expr)
2435           && compare_tree_int (range, GET_MODE_BITSIZE (word_mode)) < 0
2436           && compare_tree_int (range, 0) > 0
2437           && lshift_cheap_p ()
2438           && ((uniq == 1 && count >= 3)
2439               || (uniq == 2 && count >= 5)
2440               || (uniq == 3 && count >= 6)))
2441         {
2442           /* Optimize the case where all the case values fit in a
2443              word without having to subtract MINVAL.  In this case,
2444              we can optimize away the subtraction.  */
2445           if (compare_tree_int (minval, 0) > 0
2446               && compare_tree_int (maxval, GET_MODE_BITSIZE (word_mode)) < 0)
2447             {
2448               minval = integer_zero_node;
2449               range = maxval;
2450             }
2451           emit_case_bit_tests (index_type, index_expr, minval, range,
2452                                case_list, default_label);
2453         }
2454
2455       /* If range of values is much bigger than number of values,
2456          make a sequence of conditional branches instead of a dispatch.
2457          If the switch-index is a constant, do it this way
2458          because we can optimize it.  */
2459
2460       else if (count < case_values_threshold ()
2461                || compare_tree_int (range,
2462                                     (optimize_size ? 3 : 10) * count) > 0
2463                /* RANGE may be signed, and really large ranges will show up
2464                   as negative numbers.  */
2465                || compare_tree_int (range, 0) < 0
2466 #ifndef ASM_OUTPUT_ADDR_DIFF_ELT
2467                || flag_pic
2468 #endif
2469                || TREE_CONSTANT (index_expr)
2470                /* If neither casesi or tablejump is available, we can
2471                   only go this way.  */
2472                || (!HAVE_casesi && !HAVE_tablejump))
2473         {
2474           index = expand_expr (index_expr, NULL_RTX, VOIDmode, 0);
2475
2476           /* If the index is a short or char that we do not have
2477              an insn to handle comparisons directly, convert it to
2478              a full integer now, rather than letting each comparison
2479              generate the conversion.  */
2480
2481           if (GET_MODE_CLASS (GET_MODE (index)) == MODE_INT
2482               && ! have_insn_for (COMPARE, GET_MODE (index)))
2483             {
2484               enum machine_mode wider_mode;
2485               for (wider_mode = GET_MODE (index); wider_mode != VOIDmode;
2486                    wider_mode = GET_MODE_WIDER_MODE (wider_mode))
2487                 if (have_insn_for (COMPARE, wider_mode))
2488                   {
2489                     index = convert_to_mode (wider_mode, index, unsignedp);
2490                     break;
2491                   }
2492             }
2493
2494           do_pending_stack_adjust ();
2495
2496           if (MEM_P (index))
2497             index = copy_to_reg (index);
2498
2499           /* We generate a binary decision tree to select the
2500              appropriate target code.  This is done as follows:
2501
2502              The list of cases is rearranged into a binary tree,
2503              nearly optimal assuming equal probability for each case.
2504
2505              The tree is transformed into RTL, eliminating
2506              redundant test conditions at the same time.
2507
2508              If program flow could reach the end of the
2509              decision tree an unconditional jump to the
2510              default code is emitted.  */
2511
2512           use_cost_table
2513             = (TREE_CODE (orig_type) != ENUMERAL_TYPE
2514                && estimate_case_costs (case_list));
2515           balance_case_nodes (&case_list, NULL);
2516           emit_case_nodes (index, case_list, default_label, index_type);
2517           emit_jump (default_label);
2518         }
2519       else
2520         {
2521           table_label = gen_label_rtx ();
2522           if (! try_casesi (index_type, index_expr, minval, range,
2523                             table_label, default_label))
2524             {
2525               bool ok;
2526               index_type = integer_type_node;
2527
2528               /* Index jumptables from zero for suitable values of
2529                  minval to avoid a subtraction.  */
2530               if (! optimize_size
2531                   && compare_tree_int (minval, 0) > 0
2532                   && compare_tree_int (minval, 3) < 0)
2533                 {
2534                   minval = integer_zero_node;
2535                   range = maxval;
2536                 }
2537
2538               ok = try_tablejump (index_type, index_expr, minval, range,
2539                                   table_label, default_label);
2540               gcc_assert (ok);
2541             }
2542
2543           /* Get table of labels to jump to, in order of case index.  */
2544
2545           ncases = tree_low_cst (range, 0) + 1;
2546           labelvec = alloca (ncases * sizeof (rtx));
2547           memset (labelvec, 0, ncases * sizeof (rtx));
2548
2549           for (n = case_list; n; n = n->right)
2550             {
2551               /* Compute the low and high bounds relative to the minimum
2552                  value since that should fit in a HOST_WIDE_INT while the
2553                  actual values may not.  */
2554               HOST_WIDE_INT i_low
2555                 = tree_low_cst (fold (build2 (MINUS_EXPR, index_type,
2556                                               n->low, minval)), 1);
2557               HOST_WIDE_INT i_high
2558                 = tree_low_cst (fold (build2 (MINUS_EXPR, index_type,
2559                                               n->high, minval)), 1);
2560               HOST_WIDE_INT i;
2561
2562               for (i = i_low; i <= i_high; i ++)
2563                 labelvec[i]
2564                   = gen_rtx_LABEL_REF (Pmode, label_rtx (n->code_label));
2565             }
2566
2567           /* Fill in the gaps with the default.  */
2568           for (i = 0; i < ncases; i++)
2569             if (labelvec[i] == 0)
2570               labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
2571
2572           /* Output the table.  */
2573           emit_label (table_label);
2574
2575           if (CASE_VECTOR_PC_RELATIVE || flag_pic)
2576             emit_jump_insn (gen_rtx_ADDR_DIFF_VEC (CASE_VECTOR_MODE,
2577                                                    gen_rtx_LABEL_REF (Pmode, table_label),
2578                                                    gen_rtvec_v (ncases, labelvec),
2579                                                    const0_rtx, const0_rtx));
2580           else
2581             emit_jump_insn (gen_rtx_ADDR_VEC (CASE_VECTOR_MODE,
2582                                               gen_rtvec_v (ncases, labelvec)));
2583
2584           /* If the case insn drops through the table,
2585              after the table we must jump to the default-label.
2586              Otherwise record no drop-through after the table.  */
2587 #ifdef CASE_DROPS_THROUGH
2588           emit_jump (default_label);
2589 #else
2590           emit_barrier ();
2591 #endif
2592         }
2593
2594       before_case = NEXT_INSN (before_case);
2595       end = get_last_insn ();
2596       fail = squeeze_notes (&before_case, &end);
2597       gcc_assert (!fail);
2598       reorder_insns (before_case, end, start);
2599     }
2600
2601   free_temp_slots ();
2602 }
2603
2604 /* Generate code to jump to LABEL if OP1 and OP2 are equal.  */
2605
2606 static void
2607 do_jump_if_equal (rtx op1, rtx op2, rtx label, int unsignedp)
2608 {
2609   if (GET_CODE (op1) == CONST_INT && GET_CODE (op2) == CONST_INT)
2610     {
2611       if (op1 == op2)
2612         emit_jump (label);
2613     }
2614   else
2615     emit_cmp_and_jump_insns (op1, op2, EQ, NULL_RTX,
2616                              (GET_MODE (op1) == VOIDmode
2617                              ? GET_MODE (op2) : GET_MODE (op1)),
2618                              unsignedp, label);
2619 }
2620 \f
2621 /* Not all case values are encountered equally.  This function
2622    uses a heuristic to weight case labels, in cases where that
2623    looks like a reasonable thing to do.
2624
2625    Right now, all we try to guess is text, and we establish the
2626    following weights:
2627
2628         chars above space:      16
2629         digits:                 16
2630         default:                12
2631         space, punct:           8
2632         tab:                    4
2633         newline:                2
2634         other "\" chars:        1
2635         remaining chars:        0
2636
2637    If we find any cases in the switch that are not either -1 or in the range
2638    of valid ASCII characters, or are control characters other than those
2639    commonly used with "\", don't treat this switch scanning text.
2640
2641    Return 1 if these nodes are suitable for cost estimation, otherwise
2642    return 0.  */
2643
2644 static int
2645 estimate_case_costs (case_node_ptr node)
2646 {
2647   tree min_ascii = integer_minus_one_node;
2648   tree max_ascii = convert (TREE_TYPE (node->high),
2649                             build_int_cst (NULL_TREE, 127));
2650   case_node_ptr n;
2651   int i;
2652
2653   /* If we haven't already made the cost table, make it now.  Note that the
2654      lower bound of the table is -1, not zero.  */
2655
2656   if (! cost_table_initialized)
2657     {
2658       cost_table_initialized = 1;
2659
2660       for (i = 0; i < 128; i++)
2661         {
2662           if (ISALNUM (i))
2663             COST_TABLE (i) = 16;
2664           else if (ISPUNCT (i))
2665             COST_TABLE (i) = 8;
2666           else if (ISCNTRL (i))
2667             COST_TABLE (i) = -1;
2668         }
2669
2670       COST_TABLE (' ') = 8;
2671       COST_TABLE ('\t') = 4;
2672       COST_TABLE ('\0') = 4;
2673       COST_TABLE ('\n') = 2;
2674       COST_TABLE ('\f') = 1;
2675       COST_TABLE ('\v') = 1;
2676       COST_TABLE ('\b') = 1;
2677     }
2678
2679   /* See if all the case expressions look like text.  It is text if the
2680      constant is >= -1 and the highest constant is <= 127.  Do all comparisons
2681      as signed arithmetic since we don't want to ever access cost_table with a
2682      value less than -1.  Also check that none of the constants in a range
2683      are strange control characters.  */
2684
2685   for (n = node; n; n = n->right)
2686     {
2687       if ((INT_CST_LT (n->low, min_ascii)) || INT_CST_LT (max_ascii, n->high))
2688         return 0;
2689
2690       for (i = (HOST_WIDE_INT) TREE_INT_CST_LOW (n->low);
2691            i <= (HOST_WIDE_INT) TREE_INT_CST_LOW (n->high); i++)
2692         if (COST_TABLE (i) < 0)
2693           return 0;
2694     }
2695
2696   /* All interesting values are within the range of interesting
2697      ASCII characters.  */
2698   return 1;
2699 }
2700
2701 /* Take an ordered list of case nodes
2702    and transform them into a near optimal binary tree,
2703    on the assumption that any target code selection value is as
2704    likely as any other.
2705
2706    The transformation is performed by splitting the ordered
2707    list into two equal sections plus a pivot.  The parts are
2708    then attached to the pivot as left and right branches.  Each
2709    branch is then transformed recursively.  */
2710
2711 static void
2712 balance_case_nodes (case_node_ptr *head, case_node_ptr parent)
2713 {
2714   case_node_ptr np;
2715
2716   np = *head;
2717   if (np)
2718     {
2719       int cost = 0;
2720       int i = 0;
2721       int ranges = 0;
2722       case_node_ptr *npp;
2723       case_node_ptr left;
2724
2725       /* Count the number of entries on branch.  Also count the ranges.  */
2726
2727       while (np)
2728         {
2729           if (!tree_int_cst_equal (np->low, np->high))
2730             {
2731               ranges++;
2732               if (use_cost_table)
2733                 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
2734             }
2735
2736           if (use_cost_table)
2737             cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
2738
2739           i++;
2740           np = np->right;
2741         }
2742
2743       if (i > 2)
2744         {
2745           /* Split this list if it is long enough for that to help.  */
2746           npp = head;
2747           left = *npp;
2748           if (use_cost_table)
2749             {
2750               /* Find the place in the list that bisects the list's total cost,
2751                  Here I gets half the total cost.  */
2752               int n_moved = 0;
2753               i = (cost + 1) / 2;
2754               while (1)
2755                 {
2756                   /* Skip nodes while their cost does not reach that amount.  */
2757                   if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2758                     i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
2759                   i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
2760                   if (i <= 0)
2761                     break;
2762                   npp = &(*npp)->right;
2763                   n_moved += 1;
2764                 }
2765               if (n_moved == 0)
2766                 {
2767                   /* Leave this branch lopsided, but optimize left-hand
2768                      side and fill in `parent' fields for right-hand side.  */
2769                   np = *head;
2770                   np->parent = parent;
2771                   balance_case_nodes (&np->left, np);
2772                   for (; np->right; np = np->right)
2773                     np->right->parent = np;
2774                   return;
2775                 }
2776             }
2777           /* If there are just three nodes, split at the middle one.  */
2778           else if (i == 3)
2779             npp = &(*npp)->right;
2780           else
2781             {
2782               /* Find the place in the list that bisects the list's total cost,
2783                  where ranges count as 2.
2784                  Here I gets half the total cost.  */
2785               i = (i + ranges + 1) / 2;
2786               while (1)
2787                 {
2788                   /* Skip nodes while their cost does not reach that amount.  */
2789                   if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2790                     i--;
2791                   i--;
2792                   if (i <= 0)
2793                     break;
2794                   npp = &(*npp)->right;
2795                 }
2796             }
2797           *head = np = *npp;
2798           *npp = 0;
2799           np->parent = parent;
2800           np->left = left;
2801
2802           /* Optimize each of the two split parts.  */
2803           balance_case_nodes (&np->left, np);
2804           balance_case_nodes (&np->right, np);
2805         }
2806       else
2807         {
2808           /* Else leave this branch as one level,
2809              but fill in `parent' fields.  */
2810           np = *head;
2811           np->parent = parent;
2812           for (; np->right; np = np->right)
2813             np->right->parent = np;
2814         }
2815     }
2816 }
2817 \f
2818 /* Search the parent sections of the case node tree
2819    to see if a test for the lower bound of NODE would be redundant.
2820    INDEX_TYPE is the type of the index expression.
2821
2822    The instructions to generate the case decision tree are
2823    output in the same order as nodes are processed so it is
2824    known that if a parent node checks the range of the current
2825    node minus one that the current node is bounded at its lower
2826    span.  Thus the test would be redundant.  */
2827
2828 static int
2829 node_has_low_bound (case_node_ptr node, tree index_type)
2830 {
2831   tree low_minus_one;
2832   case_node_ptr pnode;
2833
2834   /* If the lower bound of this node is the lowest value in the index type,
2835      we need not test it.  */
2836
2837   if (tree_int_cst_equal (node->low, TYPE_MIN_VALUE (index_type)))
2838     return 1;
2839
2840   /* If this node has a left branch, the value at the left must be less
2841      than that at this node, so it cannot be bounded at the bottom and
2842      we need not bother testing any further.  */
2843
2844   if (node->left)
2845     return 0;
2846
2847   low_minus_one = fold (build2 (MINUS_EXPR, TREE_TYPE (node->low),
2848                                 node->low, integer_one_node));
2849
2850   /* If the subtraction above overflowed, we can't verify anything.
2851      Otherwise, look for a parent that tests our value - 1.  */
2852
2853   if (! tree_int_cst_lt (low_minus_one, node->low))
2854     return 0;
2855
2856   for (pnode = node->parent; pnode; pnode = pnode->parent)
2857     if (tree_int_cst_equal (low_minus_one, pnode->high))
2858       return 1;
2859
2860   return 0;
2861 }
2862
2863 /* Search the parent sections of the case node tree
2864    to see if a test for the upper bound of NODE would be redundant.
2865    INDEX_TYPE is the type of the index expression.
2866
2867    The instructions to generate the case decision tree are
2868    output in the same order as nodes are processed so it is
2869    known that if a parent node checks the range of the current
2870    node plus one that the current node is bounded at its upper
2871    span.  Thus the test would be redundant.  */
2872
2873 static int
2874 node_has_high_bound (case_node_ptr node, tree index_type)
2875 {
2876   tree high_plus_one;
2877   case_node_ptr pnode;
2878
2879   /* If there is no upper bound, obviously no test is needed.  */
2880
2881   if (TYPE_MAX_VALUE (index_type) == NULL)
2882     return 1;
2883
2884   /* If the upper bound of this node is the highest value in the type
2885      of the index expression, we need not test against it.  */
2886
2887   if (tree_int_cst_equal (node->high, TYPE_MAX_VALUE (index_type)))
2888     return 1;
2889
2890   /* If this node has a right branch, the value at the right must be greater
2891      than that at this node, so it cannot be bounded at the top and
2892      we need not bother testing any further.  */
2893
2894   if (node->right)
2895     return 0;
2896
2897   high_plus_one = fold (build2 (PLUS_EXPR, TREE_TYPE (node->high),
2898                                 node->high, integer_one_node));
2899
2900   /* If the addition above overflowed, we can't verify anything.
2901      Otherwise, look for a parent that tests our value + 1.  */
2902
2903   if (! tree_int_cst_lt (node->high, high_plus_one))
2904     return 0;
2905
2906   for (pnode = node->parent; pnode; pnode = pnode->parent)
2907     if (tree_int_cst_equal (high_plus_one, pnode->low))
2908       return 1;
2909
2910   return 0;
2911 }
2912
2913 /* Search the parent sections of the
2914    case node tree to see if both tests for the upper and lower
2915    bounds of NODE would be redundant.  */
2916
2917 static int
2918 node_is_bounded (case_node_ptr node, tree index_type)
2919 {
2920   return (node_has_low_bound (node, index_type)
2921           && node_has_high_bound (node, index_type));
2922 }
2923 \f
2924 /* Emit step-by-step code to select a case for the value of INDEX.
2925    The thus generated decision tree follows the form of the
2926    case-node binary tree NODE, whose nodes represent test conditions.
2927    INDEX_TYPE is the type of the index of the switch.
2928
2929    Care is taken to prune redundant tests from the decision tree
2930    by detecting any boundary conditions already checked by
2931    emitted rtx.  (See node_has_high_bound, node_has_low_bound
2932    and node_is_bounded, above.)
2933
2934    Where the test conditions can be shown to be redundant we emit
2935    an unconditional jump to the target code.  As a further
2936    optimization, the subordinates of a tree node are examined to
2937    check for bounded nodes.  In this case conditional and/or
2938    unconditional jumps as a result of the boundary check for the
2939    current node are arranged to target the subordinates associated
2940    code for out of bound conditions on the current node.
2941
2942    We can assume that when control reaches the code generated here,
2943    the index value has already been compared with the parents
2944    of this node, and determined to be on the same side of each parent
2945    as this node is.  Thus, if this node tests for the value 51,
2946    and a parent tested for 52, we don't need to consider
2947    the possibility of a value greater than 51.  If another parent
2948    tests for the value 50, then this node need not test anything.  */
2949
2950 static void
2951 emit_case_nodes (rtx index, case_node_ptr node, rtx default_label,
2952                  tree index_type)
2953 {
2954   /* If INDEX has an unsigned type, we must make unsigned branches.  */
2955   int unsignedp = TYPE_UNSIGNED (index_type);
2956   enum machine_mode mode = GET_MODE (index);
2957   enum machine_mode imode = TYPE_MODE (index_type);
2958
2959   /* See if our parents have already tested everything for us.
2960      If they have, emit an unconditional jump for this node.  */
2961   if (node_is_bounded (node, index_type))
2962     emit_jump (label_rtx (node->code_label));
2963
2964   else if (tree_int_cst_equal (node->low, node->high))
2965     {
2966       /* Node is single valued.  First see if the index expression matches
2967          this node and then check our children, if any.  */
2968
2969       do_jump_if_equal (index,
2970                         convert_modes (mode, imode,
2971                                        expand_expr (node->low, NULL_RTX,
2972                                                     VOIDmode, 0),
2973                                        unsignedp),
2974                         label_rtx (node->code_label), unsignedp);
2975
2976       if (node->right != 0 && node->left != 0)
2977         {
2978           /* This node has children on both sides.
2979              Dispatch to one side or the other
2980              by comparing the index value with this node's value.
2981              If one subtree is bounded, check that one first,
2982              so we can avoid real branches in the tree.  */
2983
2984           if (node_is_bounded (node->right, index_type))
2985             {
2986               emit_cmp_and_jump_insns (index,
2987                                        convert_modes
2988                                        (mode, imode,
2989                                         expand_expr (node->high, NULL_RTX,
2990                                                      VOIDmode, 0),
2991                                         unsignedp),
2992                                        GT, NULL_RTX, mode, unsignedp,
2993                                        label_rtx (node->right->code_label));
2994               emit_case_nodes (index, node->left, default_label, index_type);
2995             }
2996
2997           else if (node_is_bounded (node->left, index_type))
2998             {
2999               emit_cmp_and_jump_insns (index,
3000                                        convert_modes
3001                                        (mode, imode,
3002                                         expand_expr (node->high, NULL_RTX,
3003                                                      VOIDmode, 0),
3004                                         unsignedp),
3005                                        LT, NULL_RTX, mode, unsignedp,
3006                                        label_rtx (node->left->code_label));
3007               emit_case_nodes (index, node->right, default_label, index_type);
3008             }
3009
3010           /* If both children are single-valued cases with no
3011              children, finish up all the work.  This way, we can save
3012              one ordered comparison.  */
3013           else if (tree_int_cst_equal (node->right->low, node->right->high)
3014                    && node->right->left == 0
3015                    && node->right->right == 0
3016                    && tree_int_cst_equal (node->left->low, node->left->high)
3017                    && node->left->left == 0
3018                    && node->left->right == 0)
3019             {
3020               /* Neither node is bounded.  First distinguish the two sides;
3021                  then emit the code for one side at a time.  */
3022
3023               /* See if the value matches what the right hand side
3024                  wants.  */
3025               do_jump_if_equal (index,
3026                                 convert_modes (mode, imode,
3027                                                expand_expr (node->right->low,
3028                                                             NULL_RTX,
3029                                                             VOIDmode, 0),
3030                                                unsignedp),
3031                                 label_rtx (node->right->code_label),
3032                                 unsignedp);
3033
3034               /* See if the value matches what the left hand side
3035                  wants.  */
3036               do_jump_if_equal (index,
3037                                 convert_modes (mode, imode,
3038                                                expand_expr (node->left->low,
3039                                                             NULL_RTX,
3040                                                             VOIDmode, 0),
3041                                                unsignedp),
3042                                 label_rtx (node->left->code_label),
3043                                 unsignedp);
3044             }
3045
3046           else
3047             {
3048               /* Neither node is bounded.  First distinguish the two sides;
3049                  then emit the code for one side at a time.  */
3050
3051               tree test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3052
3053               /* See if the value is on the right.  */
3054               emit_cmp_and_jump_insns (index,
3055                                        convert_modes
3056                                        (mode, imode,
3057                                         expand_expr (node->high, NULL_RTX,
3058                                                      VOIDmode, 0),
3059                                         unsignedp),
3060                                        GT, NULL_RTX, mode, unsignedp,
3061                                        label_rtx (test_label));
3062
3063               /* Value must be on the left.
3064                  Handle the left-hand subtree.  */
3065               emit_case_nodes (index, node->left, default_label, index_type);
3066               /* If left-hand subtree does nothing,
3067                  go to default.  */
3068               emit_jump (default_label);
3069
3070               /* Code branches here for the right-hand subtree.  */
3071               expand_label (test_label);
3072               emit_case_nodes (index, node->right, default_label, index_type);
3073             }
3074         }
3075
3076       else if (node->right != 0 && node->left == 0)
3077         {
3078           /* Here we have a right child but no left so we issue conditional
3079              branch to default and process the right child.
3080
3081              Omit the conditional branch to default if we it avoid only one
3082              right child; it costs too much space to save so little time.  */
3083
3084           if (node->right->right || node->right->left
3085               || !tree_int_cst_equal (node->right->low, node->right->high))
3086             {
3087               if (!node_has_low_bound (node, index_type))
3088                 {
3089                   emit_cmp_and_jump_insns (index,
3090                                            convert_modes
3091                                            (mode, imode,
3092                                             expand_expr (node->high, NULL_RTX,
3093                                                          VOIDmode, 0),
3094                                             unsignedp),
3095                                            LT, NULL_RTX, mode, unsignedp,
3096                                            default_label);
3097                 }
3098
3099               emit_case_nodes (index, node->right, default_label, index_type);
3100             }
3101           else
3102             /* We cannot process node->right normally
3103                since we haven't ruled out the numbers less than
3104                this node's value.  So handle node->right explicitly.  */
3105             do_jump_if_equal (index,
3106                               convert_modes
3107                               (mode, imode,
3108                                expand_expr (node->right->low, NULL_RTX,
3109                                             VOIDmode, 0),
3110                                unsignedp),
3111                               label_rtx (node->right->code_label), unsignedp);
3112         }
3113
3114       else if (node->right == 0 && node->left != 0)
3115         {
3116           /* Just one subtree, on the left.  */
3117           if (node->left->left || node->left->right
3118               || !tree_int_cst_equal (node->left->low, node->left->high))
3119             {
3120               if (!node_has_high_bound (node, index_type))
3121                 {
3122                   emit_cmp_and_jump_insns (index,
3123                                            convert_modes
3124                                            (mode, imode,
3125                                             expand_expr (node->high, NULL_RTX,
3126                                                          VOIDmode, 0),
3127                                             unsignedp),
3128                                            GT, NULL_RTX, mode, unsignedp,
3129                                            default_label);
3130                 }
3131
3132               emit_case_nodes (index, node->left, default_label, index_type);
3133             }
3134           else
3135             /* We cannot process node->left normally
3136                since we haven't ruled out the numbers less than
3137                this node's value.  So handle node->left explicitly.  */
3138             do_jump_if_equal (index,
3139                               convert_modes
3140                               (mode, imode,
3141                                expand_expr (node->left->low, NULL_RTX,
3142                                             VOIDmode, 0),
3143                                unsignedp),
3144                               label_rtx (node->left->code_label), unsignedp);
3145         }
3146     }
3147   else
3148     {
3149       /* Node is a range.  These cases are very similar to those for a single
3150          value, except that we do not start by testing whether this node
3151          is the one to branch to.  */
3152
3153       if (node->right != 0 && node->left != 0)
3154         {
3155           /* Node has subtrees on both sides.
3156              If the right-hand subtree is bounded,
3157              test for it first, since we can go straight there.
3158              Otherwise, we need to make a branch in the control structure,
3159              then handle the two subtrees.  */
3160           tree test_label = 0;
3161
3162           if (node_is_bounded (node->right, index_type))
3163             /* Right hand node is fully bounded so we can eliminate any
3164                testing and branch directly to the target code.  */
3165             emit_cmp_and_jump_insns (index,
3166                                      convert_modes
3167                                      (mode, imode,
3168                                       expand_expr (node->high, NULL_RTX,
3169                                                    VOIDmode, 0),
3170                                       unsignedp),
3171                                      GT, NULL_RTX, mode, unsignedp,
3172                                      label_rtx (node->right->code_label));
3173           else
3174             {
3175               /* Right hand node requires testing.
3176                  Branch to a label where we will handle it later.  */
3177
3178               test_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3179               emit_cmp_and_jump_insns (index,
3180                                        convert_modes
3181                                        (mode, imode,
3182                                         expand_expr (node->high, NULL_RTX,
3183                                                      VOIDmode, 0),
3184                                         unsignedp),
3185                                        GT, NULL_RTX, mode, unsignedp,
3186                                        label_rtx (test_label));
3187             }
3188
3189           /* Value belongs to this node or to the left-hand subtree.  */
3190
3191           emit_cmp_and_jump_insns (index,
3192                                    convert_modes
3193                                    (mode, imode,
3194                                     expand_expr (node->low, NULL_RTX,
3195                                                  VOIDmode, 0),
3196                                     unsignedp),
3197                                    GE, NULL_RTX, mode, unsignedp,
3198                                    label_rtx (node->code_label));
3199
3200           /* Handle the left-hand subtree.  */
3201           emit_case_nodes (index, node->left, default_label, index_type);
3202
3203           /* If right node had to be handled later, do that now.  */
3204
3205           if (test_label)
3206             {
3207               /* If the left-hand subtree fell through,
3208                  don't let it fall into the right-hand subtree.  */
3209               emit_jump (default_label);
3210
3211               expand_label (test_label);
3212               emit_case_nodes (index, node->right, default_label, index_type);
3213             }
3214         }
3215
3216       else if (node->right != 0 && node->left == 0)
3217         {
3218           /* Deal with values to the left of this node,
3219              if they are possible.  */
3220           if (!node_has_low_bound (node, index_type))
3221             {
3222               emit_cmp_and_jump_insns (index,
3223                                        convert_modes
3224                                        (mode, imode,
3225                                         expand_expr (node->low, NULL_RTX,
3226                                                      VOIDmode, 0),
3227                                         unsignedp),
3228                                        LT, NULL_RTX, mode, unsignedp,
3229                                        default_label);
3230             }
3231
3232           /* Value belongs to this node or to the right-hand subtree.  */
3233
3234           emit_cmp_and_jump_insns (index,
3235                                    convert_modes
3236                                    (mode, imode,
3237                                     expand_expr (node->high, NULL_RTX,
3238                                                  VOIDmode, 0),
3239                                     unsignedp),
3240                                    LE, NULL_RTX, mode, unsignedp,
3241                                    label_rtx (node->code_label));
3242
3243           emit_case_nodes (index, node->right, default_label, index_type);
3244         }
3245
3246       else if (node->right == 0 && node->left != 0)
3247         {
3248           /* Deal with values to the right of this node,
3249              if they are possible.  */
3250           if (!node_has_high_bound (node, index_type))
3251             {
3252               emit_cmp_and_jump_insns (index,
3253                                        convert_modes
3254                                        (mode, imode,
3255                                         expand_expr (node->high, NULL_RTX,
3256                                                      VOIDmode, 0),
3257                                         unsignedp),
3258                                        GT, NULL_RTX, mode, unsignedp,
3259                                        default_label);
3260             }
3261
3262           /* Value belongs to this node or to the left-hand subtree.  */
3263
3264           emit_cmp_and_jump_insns (index,
3265                                    convert_modes
3266                                    (mode, imode,
3267                                     expand_expr (node->low, NULL_RTX,
3268                                                  VOIDmode, 0),
3269                                     unsignedp),
3270                                    GE, NULL_RTX, mode, unsignedp,
3271                                    label_rtx (node->code_label));
3272
3273           emit_case_nodes (index, node->left, default_label, index_type);
3274         }
3275
3276       else
3277         {
3278           /* Node has no children so we check low and high bounds to remove
3279              redundant tests.  Only one of the bounds can exist,
3280              since otherwise this node is bounded--a case tested already.  */
3281           int high_bound = node_has_high_bound (node, index_type);
3282           int low_bound = node_has_low_bound (node, index_type);
3283
3284           if (!high_bound && low_bound)
3285             {
3286               emit_cmp_and_jump_insns (index,
3287                                        convert_modes
3288                                        (mode, imode,
3289                                         expand_expr (node->high, NULL_RTX,
3290                                                      VOIDmode, 0),
3291                                         unsignedp),
3292                                        GT, NULL_RTX, mode, unsignedp,
3293                                        default_label);
3294             }
3295
3296           else if (!low_bound && high_bound)
3297             {
3298               emit_cmp_and_jump_insns (index,
3299                                        convert_modes
3300                                        (mode, imode,
3301                                         expand_expr (node->low, NULL_RTX,
3302                                                      VOIDmode, 0),
3303                                         unsignedp),
3304                                        LT, NULL_RTX, mode, unsignedp,
3305                                        default_label);
3306             }
3307           else if (!low_bound && !high_bound)
3308             {
3309               /* Widen LOW and HIGH to the same width as INDEX.  */
3310               tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
3311               tree low = build1 (CONVERT_EXPR, type, node->low);
3312               tree high = build1 (CONVERT_EXPR, type, node->high);
3313               rtx low_rtx, new_index, new_bound;
3314
3315               /* Instead of doing two branches, emit one unsigned branch for
3316                  (index-low) > (high-low).  */
3317               low_rtx = expand_expr (low, NULL_RTX, mode, 0);
3318               new_index = expand_simple_binop (mode, MINUS, index, low_rtx,
3319                                                NULL_RTX, unsignedp,
3320                                                OPTAB_WIDEN);
3321               new_bound = expand_expr (fold (build2 (MINUS_EXPR, type,
3322                                                      high, low)),
3323                                        NULL_RTX, mode, 0);
3324
3325               emit_cmp_and_jump_insns (new_index, new_bound, GT, NULL_RTX,
3326                                        mode, 1, default_label);
3327             }
3328
3329           emit_jump (label_rtx (node->code_label));
3330         }
3331     }
3332 }