OSDN Git Service

* c-format.c (maybe_read_dollar_number): Use safe-ctype macros
[pf3gnuchains/gcc-fork.git] / gcc / gensupport.c
1 /* Support routines for the various generation passes.
2    Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3
4    This file is part of GCC.
5
6    GCC is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    GCC is distributed in the hope that it will be useful, but WITHOUT
12    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14    License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with GCC; see the file COPYING.  If not, write to the Free
18    Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19    02111-1307, USA.  */
20
21 #include "hconfig.h"
22 #include "system.h"
23 #include "rtl.h"
24 #include "obstack.h"
25 #include "errors.h"
26 #include "gensupport.h"
27
28
29 static struct obstack obstack;
30 struct obstack *rtl_obstack = &obstack;
31
32 #define obstack_chunk_alloc xmalloc
33 #define obstack_chunk_free free
34
35 static int sequence_num;
36 static int errors;
37
38 static int predicable_default;
39 static const char *predicable_true;
40 static const char *predicable_false;
41
42 /* We initially queue all patterns, process the define_insn and
43    define_cond_exec patterns, then return them one at a time.  */
44
45 struct queue_elem
46 {
47   rtx data;
48   int lineno;
49   struct queue_elem *next;
50 };
51
52 static struct queue_elem *define_attr_queue;
53 static struct queue_elem **define_attr_tail = &define_attr_queue;
54 static struct queue_elem *define_insn_queue;
55 static struct queue_elem **define_insn_tail = &define_insn_queue;
56 static struct queue_elem *define_cond_exec_queue;
57 static struct queue_elem **define_cond_exec_tail = &define_cond_exec_queue;
58 static struct queue_elem *other_queue;
59 static struct queue_elem **other_tail = &other_queue;
60
61 static void queue_pattern PARAMS ((rtx, struct queue_elem ***, int));
62 static void remove_constraints PARAMS ((rtx));
63 static void process_rtx PARAMS ((rtx, int));
64
65 static int is_predicable PARAMS ((struct queue_elem *));
66 static void identify_predicable_attribute PARAMS ((void));
67 static int n_alternatives PARAMS ((const char *));
68 static void collect_insn_data PARAMS ((rtx, int *, int *));
69 static rtx alter_predicate_for_insn PARAMS ((rtx, int, int, int));
70 static const char *alter_test_for_insn PARAMS ((struct queue_elem *,
71                                                 struct queue_elem *));
72 static char *shift_output_template PARAMS ((char *, const char *, int));
73 static const char *alter_output_for_insn PARAMS ((struct queue_elem *,
74                                                   struct queue_elem *,
75                                                   int, int));
76 static void process_one_cond_exec PARAMS ((struct queue_elem *));
77 static void process_define_cond_exec PARAMS ((void));
78 \f
79 void
80 message_with_line VPARAMS ((int lineno, const char *msg, ...))
81 {
82   VA_OPEN (ap, msg);
83   VA_FIXEDARG (ap, int, lineno);
84   VA_FIXEDARG (ap, const char *, msg);
85
86   fprintf (stderr, "%s:%d: ", read_rtx_filename, lineno);
87   vfprintf (stderr, msg, ap);
88   fputc ('\n', stderr);
89
90   VA_CLOSE (ap);
91 }
92 \f
93 /* Queue PATTERN on LIST_TAIL.  */
94
95 static void
96 queue_pattern (pattern, list_tail, lineno)
97      rtx pattern;
98      struct queue_elem ***list_tail;
99      int lineno;
100 {
101   struct queue_elem *e = (struct queue_elem *) xmalloc (sizeof (*e));
102   e->data = pattern;
103   e->lineno = lineno;
104   e->next = NULL;
105   **list_tail = e;
106   *list_tail = &e->next;
107 }
108
109 /* Recursively remove constraints from an rtx.  */
110
111 static void
112 remove_constraints (part)
113      rtx part;
114 {
115   int i, j;
116   const char *format_ptr;
117
118   if (part == 0)
119     return;
120
121   if (GET_CODE (part) == MATCH_OPERAND)
122     XSTR (part, 2) = "";
123   else if (GET_CODE (part) == MATCH_SCRATCH)
124     XSTR (part, 1) = "";
125
126   format_ptr = GET_RTX_FORMAT (GET_CODE (part));
127
128   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
129     switch (*format_ptr++)
130       {
131       case 'e':
132       case 'u':
133         remove_constraints (XEXP (part, i));
134         break;
135       case 'E':
136         if (XVEC (part, i) != NULL)
137           for (j = 0; j < XVECLEN (part, i); j++)
138             remove_constraints (XVECEXP (part, i, j));
139         break;
140       }
141 }
142
143 /* Process a top level rtx in some way, queueing as appropriate.  */
144
145 static void
146 process_rtx (desc, lineno)
147      rtx desc;
148      int lineno;
149 {
150   switch (GET_CODE (desc))
151     {
152     case DEFINE_INSN:
153       queue_pattern (desc, &define_insn_tail, lineno);
154       break;
155
156     case DEFINE_COND_EXEC:
157       queue_pattern (desc, &define_cond_exec_tail, lineno);
158       break;
159
160     case DEFINE_ATTR:
161       queue_pattern (desc, &define_attr_tail, lineno);
162       break;
163
164     case DEFINE_INSN_AND_SPLIT:
165       {
166         const char *split_cond;
167         rtx split;
168         rtvec attr;
169         int i;
170
171         /* Create a split with values from the insn_and_split.  */
172         split = rtx_alloc (DEFINE_SPLIT);
173
174         i = XVECLEN (desc, 1);
175         XVEC (split, 0) = rtvec_alloc (i);
176         while (--i >= 0)
177           {
178             XVECEXP (split, 0, i) = copy_rtx (XVECEXP (desc, 1, i));
179             remove_constraints (XVECEXP (split, 0, i));
180           }
181
182         /* If the split condition starts with "&&", append it to the
183            insn condition to create the new split condition.  */
184         split_cond = XSTR (desc, 4);
185         if (split_cond[0] == '&' && split_cond[1] == '&')
186           {
187             const char *insn_cond = XSTR (desc, 2);
188             size_t insn_cond_len = strlen (insn_cond);
189             size_t split_cond_len = strlen (split_cond);
190             char *combined;
191
192             combined = (char *) xmalloc (insn_cond_len + split_cond_len + 1);
193             memcpy (combined, insn_cond, insn_cond_len);
194             memcpy (combined + insn_cond_len, split_cond, split_cond_len + 1);
195
196             split_cond = combined;
197           }
198         XSTR (split, 1) = split_cond;
199         XVEC (split, 2) = XVEC (desc, 5);
200         XSTR (split, 3) = XSTR (desc, 6);
201
202         /* Fix up the DEFINE_INSN.  */
203         attr = XVEC (desc, 7);
204         PUT_CODE (desc, DEFINE_INSN);
205         XVEC (desc, 4) = attr;
206
207         /* Queue them.  */
208         queue_pattern (desc, &define_insn_tail, lineno);
209         queue_pattern (split, &other_tail, lineno);
210         break;
211       }
212
213     default:
214       queue_pattern (desc, &other_tail, lineno);
215       break;
216     }
217 }
218 \f
219 /* Return true if attribute PREDICABLE is true for ELEM, which holds
220    a DEFINE_INSN.  */
221
222 static int
223 is_predicable (elem)
224      struct queue_elem *elem;
225 {
226   rtvec vec = XVEC (elem->data, 4);
227   const char *value;
228   int i;
229
230   if (! vec)
231     return predicable_default;
232
233   for (i = GET_NUM_ELEM (vec) - 1; i >= 0; --i)
234     {
235       rtx sub = RTVEC_ELT (vec, i);
236       switch (GET_CODE (sub))
237         {
238         case SET_ATTR:
239           if (strcmp (XSTR (sub, 0), "predicable") == 0)
240             {
241               value = XSTR (sub, 1);
242               goto found;
243             }
244           break;
245
246         case SET_ATTR_ALTERNATIVE:
247           if (strcmp (XSTR (sub, 0), "predicable") == 0)
248             {
249               message_with_line (elem->lineno,
250                                  "multiple alternatives for `predicable'");
251               errors = 1;
252               return 0;
253             }
254           break;
255
256         case SET:
257           if (GET_CODE (SET_DEST (sub)) != ATTR
258               || strcmp (XSTR (SET_DEST (sub), 0), "predicable") != 0)
259             break;
260           sub = SET_SRC (sub);
261           if (GET_CODE (sub) == CONST_STRING)
262             {
263               value = XSTR (sub, 0);
264               goto found;
265             }
266
267           /* ??? It would be possible to handle this if we really tried.
268              It's not easy though, and I'm not going to bother until it
269              really proves necessary.  */
270           message_with_line (elem->lineno,
271                              "non-constant value for `predicable'");
272           errors = 1;
273           return 0;
274
275         default:
276           abort ();
277         }
278     }
279
280   return predicable_default;
281
282  found:
283   /* Verify that predicability does not vary on the alternative.  */
284   /* ??? It should be possible to handle this by simply eliminating
285      the non-predicable alternatives from the insn.  FRV would like
286      to do this.  Delay this until we've got the basics solid.  */
287   if (strchr (value, ',') != NULL)
288     {
289       message_with_line (elem->lineno,
290                          "multiple alternatives for `predicable'");
291       errors = 1;
292       return 0;
293     }
294
295   /* Find out which value we're looking at.  */
296   if (strcmp (value, predicable_true) == 0)
297     return 1;
298   if (strcmp (value, predicable_false) == 0)
299     return 0;
300
301   message_with_line (elem->lineno,
302                      "Unknown value `%s' for `predicable' attribute",
303                      value);
304   errors = 1;
305   return 0;
306 }
307
308 /* Examine the attribute "predicable"; discover its boolean values
309    and its default.  */
310
311 static void
312 identify_predicable_attribute ()
313 {
314   struct queue_elem *elem;
315   char *p_true, *p_false;
316   const char *value;
317   size_t len;
318
319   /* Look for the DEFINE_ATTR for `predicable', which must exist.  */
320   for (elem = define_attr_queue; elem ; elem = elem->next)
321     if (strcmp (XSTR (elem->data, 0), "predicable") == 0)
322       goto found;
323
324   message_with_line (define_cond_exec_queue->lineno,
325                      "Attribute `predicable' not defined");
326   errors = 1;
327   return;
328
329  found:
330   value = XSTR (elem->data, 1);
331   len = strlen (value);
332   p_false = (char *) xmalloc (len + 1);
333   memcpy (p_false, value, len + 1);
334
335   p_true = strchr (p_false, ',');
336   if (p_true == NULL || strchr (++p_true, ',') != NULL)
337     {
338       message_with_line (elem->lineno,
339                          "Attribute `predicable' is not a boolean");
340       errors = 1;
341       return;
342     }
343   p_true[-1] = '\0';
344
345   predicable_true = p_true;
346   predicable_false = p_false;
347
348   switch (GET_CODE (XEXP (elem->data, 2)))
349     {
350     case CONST_STRING:
351       value = XSTR (XEXP (elem->data, 2), 0);
352       break;
353
354     case CONST:
355       message_with_line (elem->lineno,
356                          "Attribute `predicable' cannot be const");
357       errors = 1;
358       return;
359
360     default:
361       message_with_line (elem->lineno,
362                          "Attribute `predicable' must have a constant default");
363       errors = 1;
364       return;
365     }
366
367   if (strcmp (value, p_true) == 0)
368     predicable_default = 1;
369   else if (strcmp (value, p_false) == 0)
370     predicable_default = 0;
371   else
372     {
373       message_with_line (elem->lineno,
374                          "Unknown value `%s' for `predicable' attribute",
375                          value);
376       errors = 1;
377     }
378 }
379
380 /* Return the number of alternatives in constraint S.  */
381
382 static int
383 n_alternatives (s)
384      const char *s;
385 {
386   int n = 1;
387
388   if (s)
389     while (*s)
390       n += (*s++ == ',');
391
392   return n;
393 }
394
395 /* Determine how many alternatives there are in INSN, and how many
396    operands.  */
397
398 static void
399 collect_insn_data (pattern, palt, pmax)
400      rtx pattern;
401      int *palt, *pmax;
402 {
403   const char *fmt;
404   enum rtx_code code;
405   int i, j, len;
406
407   code = GET_CODE (pattern);
408   switch (code)
409     {
410     case MATCH_OPERAND:
411       i = n_alternatives (XSTR (pattern, 2));
412       *palt = (i > *palt ? i : *palt);
413       /* FALLTHRU */
414
415     case MATCH_OPERATOR:
416     case MATCH_SCRATCH:
417     case MATCH_PARALLEL:
418     case MATCH_INSN:
419       i = XINT (pattern, 0);
420       if (i > *pmax)
421         *pmax = i;
422       break;
423
424     default:
425       break;
426     }
427
428   fmt = GET_RTX_FORMAT (code);
429   len = GET_RTX_LENGTH (code);
430   for (i = 0; i < len; i++)
431     {
432       switch (fmt[i])
433         {
434         case 'e': case 'u':
435           collect_insn_data (XEXP (pattern, i), palt, pmax);
436           break;
437
438         case 'V':
439           if (XVEC (pattern, i) == NULL)
440             break;
441           /* FALLTHRU */
442         case 'E':
443           for (j = XVECLEN (pattern, i) - 1; j >= 0; --j)
444             collect_insn_data (XVECEXP (pattern, i, j), palt, pmax);
445           break;
446
447         case 'i': case 'w': case '0': case 's': case 'S': case 'T':
448           break;
449
450         default:
451           abort ();
452         }
453     }
454 }
455
456 static rtx
457 alter_predicate_for_insn (pattern, alt, max_op, lineno)
458      rtx pattern;
459      int alt, max_op, lineno;
460 {
461   const char *fmt;
462   enum rtx_code code;
463   int i, j, len;
464
465   code = GET_CODE (pattern);
466   switch (code)
467     {
468     case MATCH_OPERAND:
469       {
470         const char *c = XSTR (pattern, 2);
471
472         if (n_alternatives (c) != 1)
473           {
474             message_with_line (lineno,
475                                "Too many alternatives for operand %d",
476                                XINT (pattern, 0));
477             errors = 1;
478             return NULL;
479           }
480
481         /* Replicate C as needed to fill out ALT alternatives.  */
482         if (c && *c && alt > 1)
483           {
484             size_t c_len = strlen (c);
485             size_t len = alt * (c_len + 1);
486             char *new_c = (char *) xmalloc (len);
487
488             memcpy (new_c, c, c_len);
489             for (i = 1; i < alt; ++i)
490               {
491                 new_c[i * (c_len + 1) - 1] = ',';
492                 memcpy (&new_c[i * (c_len + 1)], c, c_len);
493               }
494             new_c[len - 1] = '\0';
495             XSTR (pattern, 2) = new_c;
496           }
497       }
498       /* FALLTHRU */
499
500     case MATCH_OPERATOR:
501     case MATCH_SCRATCH:
502     case MATCH_PARALLEL:
503     case MATCH_INSN:
504       XINT (pattern, 0) += max_op;
505       break;
506
507     default:
508       break;
509     }
510
511   fmt = GET_RTX_FORMAT (code);
512   len = GET_RTX_LENGTH (code);
513   for (i = 0; i < len; i++)
514     {
515       rtx r;
516
517       switch (fmt[i])
518         {
519         case 'e': case 'u':
520           r = alter_predicate_for_insn (XEXP (pattern, i), alt,
521                                         max_op, lineno);
522           if (r == NULL)
523             return r;
524           break;
525
526         case 'E':
527           for (j = XVECLEN (pattern, i) - 1; j >= 0; --j)
528             {
529               r = alter_predicate_for_insn (XVECEXP (pattern, i, j),
530                                             alt, max_op, lineno);
531               if (r == NULL)
532                 return r;
533             }
534           break;
535
536         case 'i': case 'w': case '0': case 's':
537           break;
538
539         default:
540           abort ();
541         }
542     }
543
544   return pattern;
545 }
546
547 static const char *
548 alter_test_for_insn (ce_elem, insn_elem)
549      struct queue_elem *ce_elem, *insn_elem;
550 {
551   const char *ce_test, *insn_test;
552   char *new_test;
553   size_t len, ce_len, insn_len;
554
555   ce_test = XSTR (ce_elem->data, 1);
556   insn_test = XSTR (insn_elem->data, 2);
557   if (!ce_test || *ce_test == '\0')
558     return insn_test;
559   if (!insn_test || *insn_test == '\0')
560     return ce_test;
561
562   ce_len = strlen (ce_test);
563   insn_len = strlen (insn_test);
564   len = 1 + ce_len + 1 + 4 + 1 + insn_len + 1 + 1;
565   new_test = (char *) xmalloc (len);
566
567   sprintf (new_test, "(%s) && (%s)", ce_test, insn_test);
568
569   return new_test;
570 }
571
572 /* Adjust all of the operand numbers in OLD to match the shift they'll
573    get from an operand displacement of DISP.  Return a pointer after the
574    adjusted string.  */
575
576 static char *
577 shift_output_template (new, old, disp)
578      char *new;
579      const char *old;
580      int disp;
581 {
582   while (*old)
583     {
584       char c = *old++;
585       *new++ = c;
586       if (c == '%')
587         {
588           c = *old++;
589           if (ISDIGIT ((unsigned char) c))
590             c += disp;
591           else if (ISALPHA (c))
592             {
593               *new++ = c;
594               c = *old++ + disp;
595             }
596           *new++ = c;
597         }
598     }
599
600   return new;
601 }
602
603 static const char *
604 alter_output_for_insn (ce_elem, insn_elem, alt, max_op)
605      struct queue_elem *ce_elem, *insn_elem;
606      int alt, max_op;
607 {
608   const char *ce_out, *insn_out;
609   char *new, *p;
610   size_t len, ce_len, insn_len;
611
612   /* ??? Could coordinate with genoutput to not duplicate code here.  */
613
614   ce_out = XSTR (ce_elem->data, 2);
615   insn_out = XTMPL (insn_elem->data, 3);
616   if (!ce_out || *ce_out == '\0')
617     return insn_out;
618
619   ce_len = strlen (ce_out);
620   insn_len = strlen (insn_out);
621
622   if (*insn_out == '*')
623     /* You must take care of the predicate yourself.  */
624     return insn_out;
625
626   if (*insn_out == '@')
627     {
628       len = (ce_len + 1) * alt + insn_len + 1;
629       p = new = xmalloc (len);
630
631       do
632         {
633           do
634             *p++ = *insn_out++;
635           while (ISSPACE ((unsigned char) *insn_out));
636
637           if (*insn_out != '#')
638             {
639               p = shift_output_template (p, ce_out, max_op);
640               *p++ = ' ';
641             }
642
643           do
644             *p++ = *insn_out++;
645           while (*insn_out && *insn_out != '\n');
646         }
647       while (*insn_out);
648       *p = '\0';
649     }
650   else
651     {
652       len = ce_len + 1 + insn_len + 1;
653       new = xmalloc (len);
654
655       p = shift_output_template (new, ce_out, max_op);
656       *p++ = ' ';
657       memcpy (p, insn_out, insn_len + 1);
658     }
659
660   return new;
661 }
662
663 /* Replicate insns as appropriate for the given DEFINE_COND_EXEC.  */
664
665 static void
666 process_one_cond_exec (ce_elem)
667      struct queue_elem *ce_elem;
668 {
669   struct queue_elem *insn_elem;
670   for (insn_elem = define_insn_queue; insn_elem ; insn_elem = insn_elem->next)
671     {
672       int alternatives, max_operand;
673       rtx pred, insn, pattern;
674
675       if (! is_predicable (insn_elem))
676         continue;
677
678       alternatives = 1;
679       max_operand = -1;
680       collect_insn_data (insn_elem->data, &alternatives, &max_operand);
681       max_operand += 1;
682
683       if (XVECLEN (ce_elem->data, 0) != 1)
684         {
685           message_with_line (ce_elem->lineno,
686                              "too many patterns in predicate");
687           errors = 1;
688           return;
689         }
690
691       pred = copy_rtx (XVECEXP (ce_elem->data, 0, 0));
692       pred = alter_predicate_for_insn (pred, alternatives, max_operand,
693                                        ce_elem->lineno);
694       if (pred == NULL)
695         return;
696
697       /* Construct a new pattern for the new insn.  */
698       insn = copy_rtx (insn_elem->data);
699       XSTR (insn, 0) = "";
700       pattern = rtx_alloc (COND_EXEC);
701       XEXP (pattern, 0) = pred;
702       if (XVECLEN (insn, 1) == 1)
703         {
704           XEXP (pattern, 1) = XVECEXP (insn, 1, 0);
705           XVECEXP (insn, 1, 0) = pattern;
706           PUT_NUM_ELEM (XVEC (insn, 1), 1);
707         }
708       else
709         {
710           XEXP (pattern, 1) = rtx_alloc (PARALLEL);
711           XVEC (XEXP (pattern, 1), 0) = XVEC (insn, 1);
712           XVEC (insn, 1) = rtvec_alloc (1);
713           XVECEXP (insn, 1, 0) = pattern;
714         }
715
716       XSTR (insn, 2) = alter_test_for_insn (ce_elem, insn_elem);
717       XTMPL (insn, 3) = alter_output_for_insn (ce_elem, insn_elem,
718                                               alternatives, max_operand);
719
720       /* ??? Set `predicable' to false.  Not crucial since it's really
721          only used here, and we won't reprocess this new pattern.  */
722
723       /* Put the new pattern on the `other' list so that it
724          (a) is not reprocessed by other define_cond_exec patterns
725          (b) appears after all normal define_insn patterns.
726
727          ??? B is debatable.  If one has normal insns that match
728          cond_exec patterns, they will be preferred over these
729          generated patterns.  Whether this matters in practice, or if
730          it's a good thing, or whether we should thread these new
731          patterns into the define_insn chain just after their generator
732          is something we'll have to experiment with.  */
733
734       queue_pattern (insn, &other_tail, insn_elem->lineno);
735     }
736 }
737
738 /* If we have any DEFINE_COND_EXEC patterns, expand the DEFINE_INSN
739    patterns appropriately.  */
740
741 static void
742 process_define_cond_exec ()
743 {
744   struct queue_elem *elem;
745
746   identify_predicable_attribute ();
747   if (errors)
748     return;
749
750   for (elem = define_cond_exec_queue; elem ; elem = elem->next)
751     process_one_cond_exec (elem);
752 }
753 \f
754 /* The entry point for initializing the reader.  */
755
756 int
757 init_md_reader (filename)
758      const char *filename;
759 {
760   FILE *input_file;
761   int c;
762
763   read_rtx_filename = filename;
764   input_file = fopen (filename, "r");
765   if (input_file == 0)
766     {
767       perror (filename);
768       return FATAL_EXIT_CODE;
769     }
770
771   obstack_init (rtl_obstack);
772   errors = 0;
773   sequence_num = 0;
774
775   /* Read the entire file.  */
776   while (1)
777     {
778       rtx desc;
779       int lineno;
780
781       c = read_skip_spaces (input_file);
782       if (c == EOF)
783         break;
784
785       ungetc (c, input_file);
786       lineno = read_rtx_lineno;
787       desc = read_rtx (input_file);
788       process_rtx (desc, lineno);
789     }
790   fclose (input_file);
791
792   /* Process define_cond_exec patterns.  */
793   if (define_cond_exec_queue != NULL)
794     process_define_cond_exec ();
795
796   return errors ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE;
797 }
798
799 /* The entry point for reading a single rtx from an md file.  */
800
801 rtx
802 read_md_rtx (lineno, seqnr)
803      int *lineno;
804      int *seqnr;
805 {
806   struct queue_elem **queue, *elem;
807   rtx desc;
808
809   /* Read all patterns from a given queue before moving on to the next.  */
810   if (define_attr_queue != NULL)
811     queue = &define_attr_queue;
812   else if (define_insn_queue != NULL)
813     queue = &define_insn_queue;
814   else if (other_queue != NULL)
815     queue = &other_queue;
816   else
817     return NULL_RTX;
818
819   elem = *queue;
820   *queue = elem->next;
821   desc = elem->data;
822   *lineno = elem->lineno;
823   *seqnr = sequence_num;
824
825   free (elem);
826
827   switch (GET_CODE (desc))
828     {
829     case DEFINE_INSN:
830     case DEFINE_EXPAND:
831     case DEFINE_SPLIT:
832     case DEFINE_PEEPHOLE:
833     case DEFINE_PEEPHOLE2:
834       sequence_num++;
835       break;
836
837     default:
838       break;
839     }
840
841   return desc;
842 }
843
844 /* Until we can use the versions in libiberty.  */
845 char *
846 xstrdup (input)
847   const char *input;
848 {
849   size_t len = strlen (input) + 1;
850   char *output = xmalloc (len);
851   memcpy (output, input, len);
852   return output;
853 }
854
855 PTR
856 xcalloc (nelem, elsize)
857   size_t nelem, elsize;
858 {
859   PTR newmem;
860
861   if (nelem == 0 || elsize == 0)
862     nelem = elsize = 1;
863
864   newmem = really_call_calloc (nelem, elsize);
865   if (!newmem)
866     fatal ("virtual memory exhausted");
867   return (newmem);
868 }
869
870 PTR
871 xrealloc (old, size)
872   PTR old;
873   size_t size;
874 {
875   PTR ptr;
876   if (old)
877     ptr = (PTR) really_call_realloc (old, size);
878   else
879     ptr = (PTR) really_call_malloc (size);
880   if (!ptr)
881     fatal ("virtual memory exhausted");
882   return ptr;
883 }
884
885 PTR
886 xmalloc (size)
887   size_t size;
888 {
889   PTR val = (PTR) really_call_malloc (size);
890
891   if (val == 0)
892     fatal ("virtual memory exhausted");
893   return val;
894 }