OSDN Git Service

* config/linux.h (ASM_COMMENT_START): Remove from here,
[pf3gnuchains/gcc-fork.git] / gcc / gencodes.c
1 /* Generate from machine description:
2
3    - some macros CODE_FOR_... giving the insn_code_number value
4    for each of the defined standard insn names.
5    Copyright (C) 1987, 1991, 1995 Free Software Foundation, Inc.
6
7 This file is part of GNU CC.
8
9 GNU CC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 GNU CC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING.  If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.  */
23
24
25 #include "hconfig.h"
26 #include "system.h"
27 #include "rtl.h"
28 #include "obstack.h"
29
30 static struct obstack obstack;
31 struct obstack *rtl_obstack = &obstack;
32
33 #define obstack_chunk_alloc xmalloc
34 #define obstack_chunk_free free
35
36 char *xmalloc PROTO((unsigned));
37 static void fatal ();
38 void fancy_abort PROTO((void));
39
40 /* Define this so we can link with print-rtl.o to get debug_rtx function.  */
41 char **insn_name_ptr = 0;
42
43 static int insn_code_number;
44
45 static void gen_insn PROTO((rtx));
46
47 static void
48 gen_insn (insn)
49      rtx insn;
50 {
51   /* Don't mention instructions whose names are the null string
52      or begin with '*'.  They are in the machine description just
53      to be recognized.  */
54   if (XSTR (insn, 0)[0] != 0 && XSTR (insn, 0)[0] != '*')
55     printf ("  CODE_FOR_%s = %d,\n", XSTR (insn, 0),
56             insn_code_number);
57 }
58
59 char *
60 xmalloc (size)
61      unsigned size;
62 {
63   register char *val = (char *) malloc (size);
64
65   if (val == 0)
66     fatal ("virtual memory exhausted");
67   return val;
68 }
69
70 char *
71 xrealloc (ptr, size)
72      char *ptr;
73      unsigned size;
74 {
75   char *result = (char *) realloc (ptr, size);
76   if (!result)
77     fatal ("virtual memory exhausted");
78   return result;
79 }
80
81 static void
82 fatal (s, a1, a2)
83      char *s;
84 {
85   fprintf (stderr, "gencodes: ");
86   fprintf (stderr, s, a1, a2);
87   fprintf (stderr, "\n");
88   exit (FATAL_EXIT_CODE);
89 }
90
91 /* More 'friendly' abort that prints the line and file.
92    config.h can #define abort fancy_abort if you like that sort of thing.  */
93
94 void
95 fancy_abort ()
96 {
97   fatal ("Internal gcc abort.");
98 }
99 \f
100 int
101 main (argc, argv)
102      int argc;
103      char **argv;
104 {
105   rtx desc;
106   FILE *infile;
107   register int c;
108
109   obstack_init (rtl_obstack);
110
111   if (argc <= 1)
112     fatal ("No input file name.");
113
114   infile = fopen (argv[1], "r");
115   if (infile == 0)
116     {
117       perror (argv[1]);
118       exit (FATAL_EXIT_CODE);
119     }
120
121   init_rtl ();
122
123   printf ("/* Generated automatically by the program `gencodes'\n\
124 from the machine description file `md'.  */\n\n");
125
126   printf ("#ifndef MAX_INSN_CODE\n\n");
127
128   /* Read the machine description.  */
129
130   insn_code_number = 0;
131   printf ("enum insn_code {\n");
132
133   while (1)
134     {
135       c = read_skip_spaces (infile);
136       if (c == EOF)
137         break;
138       ungetc (c, infile);
139
140       desc = read_rtx (infile);
141       if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
142         {
143           gen_insn (desc);
144           insn_code_number++;
145         }
146       if (GET_CODE (desc) == DEFINE_PEEPHOLE
147           || GET_CODE (desc) == DEFINE_SPLIT)
148         {
149           insn_code_number++;
150         }
151     }
152
153   printf ("  CODE_FOR_nothing };\n");
154
155   printf ("\n#define MAX_INSN_CODE ((int) CODE_FOR_nothing)\n");
156
157   printf ("#endif /* MAX_INSN_CODE */\n");
158
159   fflush (stdout);
160   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
161   /* NOTREACHED */
162   return 0;
163 }