Daily bump.
[official-gcc.git] / gcc / gensupport.c
blob415df01775a9099d891039c1bde6d05919292e93
1 /* Support routines for the various generation passes.
2 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
4 This file is part of GCC.
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.
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.
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. */
21 #include "hconfig.h"
22 #include "system.h"
23 #include "rtl.h"
24 #include "obstack.h"
25 #include "errors.h"
26 #include "gensupport.h"
29 /* In case some macros used by files we include need it, define this here. */
30 int target_flags;
32 static struct obstack obstack;
33 struct obstack *rtl_obstack = &obstack;
35 #define obstack_chunk_alloc xmalloc
36 #define obstack_chunk_free free
38 static int sequence_num;
39 static int errors;
41 static int predicable_default;
42 static const char *predicable_true;
43 static const char *predicable_false;
45 static char *base_dir = NULL;
47 /* We initially queue all patterns, process the define_insn and
48 define_cond_exec patterns, then return them one at a time. */
50 struct queue_elem
52 rtx data;
53 int lineno;
54 struct queue_elem *next;
57 static struct queue_elem *define_attr_queue;
58 static struct queue_elem **define_attr_tail = &define_attr_queue;
59 static struct queue_elem *define_insn_queue;
60 static struct queue_elem **define_insn_tail = &define_insn_queue;
61 static struct queue_elem *define_cond_exec_queue;
62 static struct queue_elem **define_cond_exec_tail = &define_cond_exec_queue;
63 static struct queue_elem *other_queue;
64 static struct queue_elem **other_tail = &other_queue;
66 static void queue_pattern PARAMS ((rtx, struct queue_elem ***, int));
68 /* Current maximum length of directory names in the search path
69 for include files. (Altered as we get more of them.) */
71 size_t max_include_len;
73 struct file_name_list
75 struct file_name_list *next;
76 const char *fname;
79 struct file_name_list *include = 0; /* First dir to search */
80 /* First dir to search for <file> */
81 struct file_name_list *first_bracket_include = 0;
82 struct file_name_list *last_include = 0; /* Last in chain */
84 static void remove_constraints PARAMS ((rtx));
85 static void process_rtx PARAMS ((rtx, int));
87 static int is_predicable PARAMS ((struct queue_elem *));
88 static void identify_predicable_attribute PARAMS ((void));
89 static int n_alternatives PARAMS ((const char *));
90 static void collect_insn_data PARAMS ((rtx, int *, int *));
91 static rtx alter_predicate_for_insn PARAMS ((rtx, int, int, int));
92 static const char *alter_test_for_insn PARAMS ((struct queue_elem *,
93 struct queue_elem *));
94 static char *shift_output_template PARAMS ((char *, const char *, int));
95 static const char *alter_output_for_insn PARAMS ((struct queue_elem *,
96 struct queue_elem *,
97 int, int));
98 static void process_one_cond_exec PARAMS ((struct queue_elem *));
99 static void process_define_cond_exec PARAMS ((void));
100 static int process_include PARAMS ((rtx, int));
101 static char *save_string PARAMS ((const char *, int));
102 static int init_include_reader PARAMS ((FILE *));
104 void
105 message_with_line VPARAMS ((int lineno, const char *msg, ...))
107 VA_OPEN (ap, msg);
108 VA_FIXEDARG (ap, int, lineno);
109 VA_FIXEDARG (ap, const char *, msg);
111 fprintf (stderr, "%s:%d: ", read_rtx_filename, lineno);
112 vfprintf (stderr, msg, ap);
113 fputc ('\n', stderr);
115 VA_CLOSE (ap);
118 /* Make a version of gen_rtx_CONST_INT so that GEN_INT can be used in
119 the gensupport programs. */
122 gen_rtx_CONST_INT (mode, arg)
123 enum machine_mode mode ATTRIBUTE_UNUSED;
124 HOST_WIDE_INT arg;
126 rtx rt = rtx_alloc (CONST_INT);
128 XWINT (rt, 0) = arg;
129 return rt;
132 /* Queue PATTERN on LIST_TAIL. */
134 static void
135 queue_pattern (pattern, list_tail, lineno)
136 rtx pattern;
137 struct queue_elem ***list_tail;
138 int lineno;
140 struct queue_elem *e = (struct queue_elem *) xmalloc (sizeof (*e));
141 e->data = pattern;
142 e->lineno = lineno;
143 e->next = NULL;
144 **list_tail = e;
145 *list_tail = &e->next;
148 /* Recursively remove constraints from an rtx. */
150 static void
151 remove_constraints (part)
152 rtx part;
154 int i, j;
155 const char *format_ptr;
157 if (part == 0)
158 return;
160 if (GET_CODE (part) == MATCH_OPERAND)
161 XSTR (part, 2) = "";
162 else if (GET_CODE (part) == MATCH_SCRATCH)
163 XSTR (part, 1) = "";
165 format_ptr = GET_RTX_FORMAT (GET_CODE (part));
167 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
168 switch (*format_ptr++)
170 case 'e':
171 case 'u':
172 remove_constraints (XEXP (part, i));
173 break;
174 case 'E':
175 if (XVEC (part, i) != NULL)
176 for (j = 0; j < XVECLEN (part, i); j++)
177 remove_constraints (XVECEXP (part, i, j));
178 break;
182 /* The entry point for initializing the reader. */
184 static int
185 init_include_reader (inf)
186 FILE *inf;
188 int c;
190 errors = 0;
192 /* Read the entire file. */
193 while (1)
195 rtx desc;
196 int lineno;
198 c = read_skip_spaces (inf);
199 if (c == EOF)
200 break;
202 ungetc (c, inf);
203 lineno = read_rtx_lineno;
204 desc = read_rtx (inf);
205 process_rtx (desc, lineno);
207 fclose (inf);
209 /* Process define_cond_exec patterns. */
210 if (define_cond_exec_queue != NULL)
211 process_define_cond_exec ();
213 return errors ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE;
216 /* Process an include file assuming that it lives in gcc/config/{target}/
217 if the include looks line (include "file" ) */
218 static int
219 process_include (desc, lineno)
220 rtx desc;
221 int lineno;
223 const char *filename = XSTR (desc, 0);
224 char *pathname = NULL;
225 FILE *input_file;
226 char *fname = NULL;
227 struct file_name_list *stackp;
228 int flen;
230 stackp = include;
232 /* If specified file name is absolute, just open it. */
233 if (IS_ABSOLUTE_PATHNAME (filename) || !stackp)
235 if (base_dir)
237 pathname = xmalloc (strlen (base_dir) + strlen (filename) + 1);
238 pathname = strcpy (pathname, base_dir);
239 strcat (pathname, filename);
240 strcat (pathname, "\0");
242 else
244 pathname = xstrdup (filename);
246 read_rtx_filename = pathname;
247 input_file = fopen (pathname, "r");
249 if (input_file == 0)
251 perror (pathname);
252 return FATAL_EXIT_CODE;
255 else if (stackp)
258 flen = strlen (filename);
260 fname = (char *) xmalloc (max_include_len + flen + 2);
262 /* + 2 above for slash and terminating null. */
264 /* Search directory path, trying to open the file.
265 Copy each filename tried into FNAME. */
267 for (; stackp; stackp = stackp->next)
269 if (stackp->fname)
271 strcpy (fname, stackp->fname);
272 strcat (fname, "/");
273 fname[strlen (fname) + flen] = 0;
275 else
277 fname[0] = 0;
279 strncat (fname, (const char *) filename, flen);
280 read_rtx_filename = fname;
281 input_file = fopen (fname, "r");
282 if (input_file != NULL)
283 break;
285 if (stackp == NULL)
287 if (strchr (fname, '/') == NULL || strchr (fname, '\\' ) || base_dir)
289 if (base_dir)
291 pathname =
292 xmalloc (strlen (base_dir) + strlen (filename) + 1);
293 pathname = strcpy (pathname, base_dir);
294 strcat (pathname, filename);
295 strcat (pathname, "\0");
297 else
298 pathname = xstrdup (filename);
300 read_rtx_filename = pathname;
301 input_file = fopen (pathname, "r");
303 if (input_file == 0)
305 perror (filename);
306 return FATAL_EXIT_CODE;
312 if (init_include_reader (input_file) == FATAL_EXIT_CODE)
313 message_with_line (lineno, "read errors found in include file %s\n", pathname);
315 if (fname)
316 free (fname);
317 return SUCCESS_EXIT_CODE;
320 /* Process a top level rtx in some way, queueing as appropriate. */
322 static void
323 process_rtx (desc, lineno)
324 rtx desc;
325 int lineno;
327 switch (GET_CODE (desc))
329 case DEFINE_INSN:
330 queue_pattern (desc, &define_insn_tail, lineno);
331 break;
333 case DEFINE_COND_EXEC:
334 queue_pattern (desc, &define_cond_exec_tail, lineno);
335 break;
337 case DEFINE_ATTR:
338 queue_pattern (desc, &define_attr_tail, lineno);
339 break;
341 case INCLUDE:
342 if (process_include (desc, lineno) == FATAL_EXIT_CODE)
344 const char *filename = XSTR (desc, 0);
345 message_with_line (lineno, "include file at %s not found\n",
346 filename);
348 break;
350 case DEFINE_INSN_AND_SPLIT:
352 const char *split_cond;
353 rtx split;
354 rtvec attr;
355 int i;
357 /* Create a split with values from the insn_and_split. */
358 split = rtx_alloc (DEFINE_SPLIT);
360 i = XVECLEN (desc, 1);
361 XVEC (split, 0) = rtvec_alloc (i);
362 while (--i >= 0)
364 XVECEXP (split, 0, i) = copy_rtx (XVECEXP (desc, 1, i));
365 remove_constraints (XVECEXP (split, 0, i));
368 /* If the split condition starts with "&&", append it to the
369 insn condition to create the new split condition. */
370 split_cond = XSTR (desc, 4);
371 if (split_cond[0] == '&' && split_cond[1] == '&')
373 const char *insn_cond = XSTR (desc, 2);
374 size_t insn_cond_len = strlen (insn_cond);
375 size_t split_cond_len = strlen (split_cond);
376 char *combined;
378 combined = (char *) xmalloc (insn_cond_len + split_cond_len + 1);
379 memcpy (combined, insn_cond, insn_cond_len);
380 memcpy (combined + insn_cond_len, split_cond, split_cond_len + 1);
382 split_cond = combined;
384 XSTR (split, 1) = split_cond;
385 XVEC (split, 2) = XVEC (desc, 5);
386 XSTR (split, 3) = XSTR (desc, 6);
388 /* Fix up the DEFINE_INSN. */
389 attr = XVEC (desc, 7);
390 PUT_CODE (desc, DEFINE_INSN);
391 XVEC (desc, 4) = attr;
393 /* Queue them. */
394 queue_pattern (desc, &define_insn_tail, lineno);
395 queue_pattern (split, &other_tail, lineno);
396 break;
399 default:
400 queue_pattern (desc, &other_tail, lineno);
401 break;
405 /* Return true if attribute PREDICABLE is true for ELEM, which holds
406 a DEFINE_INSN. */
408 static int
409 is_predicable (elem)
410 struct queue_elem *elem;
412 rtvec vec = XVEC (elem->data, 4);
413 const char *value;
414 int i;
416 if (! vec)
417 return predicable_default;
419 for (i = GET_NUM_ELEM (vec) - 1; i >= 0; --i)
421 rtx sub = RTVEC_ELT (vec, i);
422 switch (GET_CODE (sub))
424 case SET_ATTR:
425 if (strcmp (XSTR (sub, 0), "predicable") == 0)
427 value = XSTR (sub, 1);
428 goto found;
430 break;
432 case SET_ATTR_ALTERNATIVE:
433 if (strcmp (XSTR (sub, 0), "predicable") == 0)
435 message_with_line (elem->lineno,
436 "multiple alternatives for `predicable'");
437 errors = 1;
438 return 0;
440 break;
442 case SET:
443 if (GET_CODE (SET_DEST (sub)) != ATTR
444 || strcmp (XSTR (SET_DEST (sub), 0), "predicable") != 0)
445 break;
446 sub = SET_SRC (sub);
447 if (GET_CODE (sub) == CONST_STRING)
449 value = XSTR (sub, 0);
450 goto found;
453 /* ??? It would be possible to handle this if we really tried.
454 It's not easy though, and I'm not going to bother until it
455 really proves necessary. */
456 message_with_line (elem->lineno,
457 "non-constant value for `predicable'");
458 errors = 1;
459 return 0;
461 default:
462 abort ();
466 return predicable_default;
468 found:
469 /* Verify that predicability does not vary on the alternative. */
470 /* ??? It should be possible to handle this by simply eliminating
471 the non-predicable alternatives from the insn. FRV would like
472 to do this. Delay this until we've got the basics solid. */
473 if (strchr (value, ',') != NULL)
475 message_with_line (elem->lineno,
476 "multiple alternatives for `predicable'");
477 errors = 1;
478 return 0;
481 /* Find out which value we're looking at. */
482 if (strcmp (value, predicable_true) == 0)
483 return 1;
484 if (strcmp (value, predicable_false) == 0)
485 return 0;
487 message_with_line (elem->lineno,
488 "unknown value `%s' for `predicable' attribute",
489 value);
490 errors = 1;
491 return 0;
494 /* Examine the attribute "predicable"; discover its boolean values
495 and its default. */
497 static void
498 identify_predicable_attribute ()
500 struct queue_elem *elem;
501 char *p_true, *p_false;
502 const char *value;
503 size_t len;
505 /* Look for the DEFINE_ATTR for `predicable', which must exist. */
506 for (elem = define_attr_queue; elem ; elem = elem->next)
507 if (strcmp (XSTR (elem->data, 0), "predicable") == 0)
508 goto found;
510 message_with_line (define_cond_exec_queue->lineno,
511 "attribute `predicable' not defined");
512 errors = 1;
513 return;
515 found:
516 value = XSTR (elem->data, 1);
517 len = strlen (value);
518 p_false = (char *) xmalloc (len + 1);
519 memcpy (p_false, value, len + 1);
521 p_true = strchr (p_false, ',');
522 if (p_true == NULL || strchr (++p_true, ',') != NULL)
524 message_with_line (elem->lineno,
525 "attribute `predicable' is not a boolean");
526 errors = 1;
527 return;
529 p_true[-1] = '\0';
531 predicable_true = p_true;
532 predicable_false = p_false;
534 switch (GET_CODE (XEXP (elem->data, 2)))
536 case CONST_STRING:
537 value = XSTR (XEXP (elem->data, 2), 0);
538 break;
540 case CONST:
541 message_with_line (elem->lineno,
542 "attribute `predicable' cannot be const");
543 errors = 1;
544 return;
546 default:
547 message_with_line (elem->lineno,
548 "attribute `predicable' must have a constant default");
549 errors = 1;
550 return;
553 if (strcmp (value, p_true) == 0)
554 predicable_default = 1;
555 else if (strcmp (value, p_false) == 0)
556 predicable_default = 0;
557 else
559 message_with_line (elem->lineno,
560 "unknown value `%s' for `predicable' attribute",
561 value);
562 errors = 1;
566 /* Return the number of alternatives in constraint S. */
568 static int
569 n_alternatives (s)
570 const char *s;
572 int n = 1;
574 if (s)
575 while (*s)
576 n += (*s++ == ',');
578 return n;
581 /* Determine how many alternatives there are in INSN, and how many
582 operands. */
584 static void
585 collect_insn_data (pattern, palt, pmax)
586 rtx pattern;
587 int *palt, *pmax;
589 const char *fmt;
590 enum rtx_code code;
591 int i, j, len;
593 code = GET_CODE (pattern);
594 switch (code)
596 case MATCH_OPERAND:
597 i = n_alternatives (XSTR (pattern, 2));
598 *palt = (i > *palt ? i : *palt);
599 /* FALLTHRU */
601 case MATCH_OPERATOR:
602 case MATCH_SCRATCH:
603 case MATCH_PARALLEL:
604 case MATCH_INSN:
605 i = XINT (pattern, 0);
606 if (i > *pmax)
607 *pmax = i;
608 break;
610 default:
611 break;
614 fmt = GET_RTX_FORMAT (code);
615 len = GET_RTX_LENGTH (code);
616 for (i = 0; i < len; i++)
618 switch (fmt[i])
620 case 'e': case 'u':
621 collect_insn_data (XEXP (pattern, i), palt, pmax);
622 break;
624 case 'V':
625 if (XVEC (pattern, i) == NULL)
626 break;
627 /* FALLTHRU */
628 case 'E':
629 for (j = XVECLEN (pattern, i) - 1; j >= 0; --j)
630 collect_insn_data (XVECEXP (pattern, i, j), palt, pmax);
631 break;
633 case 'i': case 'w': case '0': case 's': case 'S': case 'T':
634 break;
636 default:
637 abort ();
642 static rtx
643 alter_predicate_for_insn (pattern, alt, max_op, lineno)
644 rtx pattern;
645 int alt, max_op, lineno;
647 const char *fmt;
648 enum rtx_code code;
649 int i, j, len;
651 code = GET_CODE (pattern);
652 switch (code)
654 case MATCH_OPERAND:
656 const char *c = XSTR (pattern, 2);
658 if (n_alternatives (c) != 1)
660 message_with_line (lineno,
661 "too many alternatives for operand %d",
662 XINT (pattern, 0));
663 errors = 1;
664 return NULL;
667 /* Replicate C as needed to fill out ALT alternatives. */
668 if (c && *c && alt > 1)
670 size_t c_len = strlen (c);
671 size_t len = alt * (c_len + 1);
672 char *new_c = (char *) xmalloc (len);
674 memcpy (new_c, c, c_len);
675 for (i = 1; i < alt; ++i)
677 new_c[i * (c_len + 1) - 1] = ',';
678 memcpy (&new_c[i * (c_len + 1)], c, c_len);
680 new_c[len - 1] = '\0';
681 XSTR (pattern, 2) = new_c;
684 /* FALLTHRU */
686 case MATCH_OPERATOR:
687 case MATCH_SCRATCH:
688 case MATCH_PARALLEL:
689 case MATCH_INSN:
690 XINT (pattern, 0) += max_op;
691 break;
693 default:
694 break;
697 fmt = GET_RTX_FORMAT (code);
698 len = GET_RTX_LENGTH (code);
699 for (i = 0; i < len; i++)
701 rtx r;
703 switch (fmt[i])
705 case 'e': case 'u':
706 r = alter_predicate_for_insn (XEXP (pattern, i), alt,
707 max_op, lineno);
708 if (r == NULL)
709 return r;
710 break;
712 case 'E':
713 for (j = XVECLEN (pattern, i) - 1; j >= 0; --j)
715 r = alter_predicate_for_insn (XVECEXP (pattern, i, j),
716 alt, max_op, lineno);
717 if (r == NULL)
718 return r;
720 break;
722 case 'i': case 'w': case '0': case 's':
723 break;
725 default:
726 abort ();
730 return pattern;
733 static const char *
734 alter_test_for_insn (ce_elem, insn_elem)
735 struct queue_elem *ce_elem, *insn_elem;
737 const char *ce_test, *insn_test;
738 char *new_test;
739 size_t len, ce_len, insn_len;
741 ce_test = XSTR (ce_elem->data, 1);
742 insn_test = XSTR (insn_elem->data, 2);
743 if (!ce_test || *ce_test == '\0')
744 return insn_test;
745 if (!insn_test || *insn_test == '\0')
746 return ce_test;
748 ce_len = strlen (ce_test);
749 insn_len = strlen (insn_test);
750 len = 1 + ce_len + 1 + 4 + 1 + insn_len + 1 + 1;
751 new_test = (char *) xmalloc (len);
753 sprintf (new_test, "(%s) && (%s)", ce_test, insn_test);
755 return new_test;
758 /* Adjust all of the operand numbers in OLD to match the shift they'll
759 get from an operand displacement of DISP. Return a pointer after the
760 adjusted string. */
762 static char *
763 shift_output_template (new, old, disp)
764 char *new;
765 const char *old;
766 int disp;
768 while (*old)
770 char c = *old++;
771 *new++ = c;
772 if (c == '%')
774 c = *old++;
775 if (ISDIGIT ((unsigned char) c))
776 c += disp;
777 else if (ISALPHA (c))
779 *new++ = c;
780 c = *old++ + disp;
782 *new++ = c;
786 return new;
789 static const char *
790 alter_output_for_insn (ce_elem, insn_elem, alt, max_op)
791 struct queue_elem *ce_elem, *insn_elem;
792 int alt, max_op;
794 const char *ce_out, *insn_out;
795 char *new, *p;
796 size_t len, ce_len, insn_len;
798 /* ??? Could coordinate with genoutput to not duplicate code here. */
800 ce_out = XSTR (ce_elem->data, 2);
801 insn_out = XTMPL (insn_elem->data, 3);
802 if (!ce_out || *ce_out == '\0')
803 return insn_out;
805 ce_len = strlen (ce_out);
806 insn_len = strlen (insn_out);
808 if (*insn_out == '*')
809 /* You must take care of the predicate yourself. */
810 return insn_out;
812 if (*insn_out == '@')
814 len = (ce_len + 1) * alt + insn_len + 1;
815 p = new = xmalloc (len);
820 *p++ = *insn_out++;
821 while (ISSPACE ((unsigned char) *insn_out));
823 if (*insn_out != '#')
825 p = shift_output_template (p, ce_out, max_op);
826 *p++ = ' ';
830 *p++ = *insn_out++;
831 while (*insn_out && *insn_out != '\n');
833 while (*insn_out);
834 *p = '\0';
836 else
838 len = ce_len + 1 + insn_len + 1;
839 new = xmalloc (len);
841 p = shift_output_template (new, ce_out, max_op);
842 *p++ = ' ';
843 memcpy (p, insn_out, insn_len + 1);
846 return new;
849 /* Replicate insns as appropriate for the given DEFINE_COND_EXEC. */
851 static void
852 process_one_cond_exec (ce_elem)
853 struct queue_elem *ce_elem;
855 struct queue_elem *insn_elem;
856 for (insn_elem = define_insn_queue; insn_elem ; insn_elem = insn_elem->next)
858 int alternatives, max_operand;
859 rtx pred, insn, pattern;
861 if (! is_predicable (insn_elem))
862 continue;
864 alternatives = 1;
865 max_operand = -1;
866 collect_insn_data (insn_elem->data, &alternatives, &max_operand);
867 max_operand += 1;
869 if (XVECLEN (ce_elem->data, 0) != 1)
871 message_with_line (ce_elem->lineno,
872 "too many patterns in predicate");
873 errors = 1;
874 return;
877 pred = copy_rtx (XVECEXP (ce_elem->data, 0, 0));
878 pred = alter_predicate_for_insn (pred, alternatives, max_operand,
879 ce_elem->lineno);
880 if (pred == NULL)
881 return;
883 /* Construct a new pattern for the new insn. */
884 insn = copy_rtx (insn_elem->data);
885 XSTR (insn, 0) = "";
886 pattern = rtx_alloc (COND_EXEC);
887 XEXP (pattern, 0) = pred;
888 if (XVECLEN (insn, 1) == 1)
890 XEXP (pattern, 1) = XVECEXP (insn, 1, 0);
891 XVECEXP (insn, 1, 0) = pattern;
892 PUT_NUM_ELEM (XVEC (insn, 1), 1);
894 else
896 XEXP (pattern, 1) = rtx_alloc (PARALLEL);
897 XVEC (XEXP (pattern, 1), 0) = XVEC (insn, 1);
898 XVEC (insn, 1) = rtvec_alloc (1);
899 XVECEXP (insn, 1, 0) = pattern;
902 XSTR (insn, 2) = alter_test_for_insn (ce_elem, insn_elem);
903 XTMPL (insn, 3) = alter_output_for_insn (ce_elem, insn_elem,
904 alternatives, max_operand);
906 /* ??? Set `predicable' to false. Not crucial since it's really
907 only used here, and we won't reprocess this new pattern. */
909 /* Put the new pattern on the `other' list so that it
910 (a) is not reprocessed by other define_cond_exec patterns
911 (b) appears after all normal define_insn patterns.
913 ??? B is debatable. If one has normal insns that match
914 cond_exec patterns, they will be preferred over these
915 generated patterns. Whether this matters in practice, or if
916 it's a good thing, or whether we should thread these new
917 patterns into the define_insn chain just after their generator
918 is something we'll have to experiment with. */
920 queue_pattern (insn, &other_tail, insn_elem->lineno);
924 /* If we have any DEFINE_COND_EXEC patterns, expand the DEFINE_INSN
925 patterns appropriately. */
927 static void
928 process_define_cond_exec ()
930 struct queue_elem *elem;
932 identify_predicable_attribute ();
933 if (errors)
934 return;
936 for (elem = define_cond_exec_queue; elem ; elem = elem->next)
937 process_one_cond_exec (elem);
940 static char *
941 save_string (s, len)
942 const char *s;
943 int len;
945 register char *result = xmalloc (len + 1);
947 memcpy (result, s, len);
948 result[len] = 0;
949 return result;
953 /* The entry point for initializing the reader. */
956 init_md_reader_args (argc, argv)
957 int argc;
958 char **argv;
960 int i;
961 const char *in_fname;
963 max_include_len = 0;
964 in_fname = NULL;
965 for (i = 1; i < argc; i++)
967 if (argv[i][0] != '-')
969 if (in_fname == NULL)
970 in_fname = argv[i];
972 else
974 int c = argv[i][1];
975 switch (c)
977 case 'I': /* Add directory to path for includes. */
979 struct file_name_list *dirtmp;
981 dirtmp = (struct file_name_list *)
982 xmalloc (sizeof (struct file_name_list));
983 dirtmp->next = 0; /* New one goes on the end */
984 if (include == 0)
985 include = dirtmp;
986 else
987 last_include->next = dirtmp;
988 last_include = dirtmp; /* Tail follows the last one */
989 if (argv[i][1] == 'I' && argv[i][2] != 0)
990 dirtmp->fname = argv[i] + 2;
991 else if (i + 1 == argc)
992 fatal ("directory name missing after -I option");
993 else
994 dirtmp->fname = argv[++i];
995 if (strlen (dirtmp->fname) > max_include_len)
996 max_include_len = strlen (dirtmp->fname);
998 break;
999 default:
1000 fatal ("invalid option `%s'", argv[i]);
1005 return init_md_reader (in_fname);
1008 /* The entry point for initializing the reader. */
1011 init_md_reader (filename)
1012 const char *filename;
1014 FILE *input_file;
1015 int c;
1016 char *lastsl;
1018 if (!IS_ABSOLUTE_PATHNAME (filename))
1020 lastsl = strrchr (filename, '/');
1021 if (lastsl != NULL)
1022 base_dir = save_string (filename, lastsl - filename + 1 );
1025 read_rtx_filename = filename;
1026 input_file = fopen (filename, "r");
1027 if (input_file == 0)
1029 perror (filename);
1030 return FATAL_EXIT_CODE;
1033 obstack_init (rtl_obstack);
1034 errors = 0;
1035 sequence_num = 0;
1037 /* Read the entire file. */
1038 while (1)
1040 rtx desc;
1041 int lineno;
1043 c = read_skip_spaces (input_file);
1044 if (c == EOF)
1045 break;
1047 ungetc (c, input_file);
1048 lineno = read_rtx_lineno;
1049 desc = read_rtx (input_file);
1050 process_rtx (desc, lineno);
1052 fclose (input_file);
1054 /* Process define_cond_exec patterns. */
1055 if (define_cond_exec_queue != NULL)
1056 process_define_cond_exec ();
1058 return errors ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE;
1061 /* The entry point for reading a single rtx from an md file. */
1064 read_md_rtx (lineno, seqnr)
1065 int *lineno;
1066 int *seqnr;
1068 struct queue_elem **queue, *elem;
1069 rtx desc;
1071 /* Read all patterns from a given queue before moving on to the next. */
1072 if (define_attr_queue != NULL)
1073 queue = &define_attr_queue;
1074 else if (define_insn_queue != NULL)
1075 queue = &define_insn_queue;
1076 else if (other_queue != NULL)
1077 queue = &other_queue;
1078 else
1079 return NULL_RTX;
1081 elem = *queue;
1082 *queue = elem->next;
1083 desc = elem->data;
1084 *lineno = elem->lineno;
1085 *seqnr = sequence_num;
1087 free (elem);
1089 switch (GET_CODE (desc))
1091 case DEFINE_INSN:
1092 case DEFINE_EXPAND:
1093 case DEFINE_SPLIT:
1094 case DEFINE_PEEPHOLE:
1095 case DEFINE_PEEPHOLE2:
1096 sequence_num++;
1097 break;
1099 default:
1100 break;
1103 return desc;