1 /* Generate from machine description:
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.
7 This file is part of GNU CC.
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)
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.
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. */
30 static struct obstack obstack
;
31 struct obstack
*rtl_obstack
= &obstack
;
33 #define obstack_chunk_alloc xmalloc
34 #define obstack_chunk_free free
37 extern rtx
read_rtx ();
43 static int insn_code_number
;
49 /* Don't mention instructions whose names are the null string
50 or begin with '*'. They are in the machine description just
52 if (XSTR (insn
, 0)[0] != 0 && XSTR (insn
, 0)[0] != '*')
53 printf (" CODE_FOR_%s = %d,\n", XSTR (insn
, 0),
61 register char *val
= (char *) malloc (size
);
64 fatal ("virtual memory exhausted");
73 char *result
= (char *) realloc (ptr
, size
);
75 fatal ("virtual memory exhausted");
83 fprintf (stderr
, "gencodes: ");
84 fprintf (stderr
, s
, a1
, a2
);
85 fprintf (stderr
, "\n");
86 exit (FATAL_EXIT_CODE
);
89 /* More 'friendly' abort that prints the line and file.
90 config.h can #define abort fancy_abort if you like that sort of thing. */
95 fatal ("Internal gcc abort.");
107 obstack_init (rtl_obstack
);
110 fatal ("No input file name.");
112 infile
= fopen (argv
[1], "r");
116 exit (FATAL_EXIT_CODE
);
121 printf ("/* Generated automatically by the program `gencodes'\n\
122 from the machine description file `md'. */\n\n");
124 printf ("#ifndef MAX_INSN_CODE\n\n");
126 /* Read the machine description. */
128 insn_code_number
= 0;
129 printf ("enum insn_code {\n");
133 c
= read_skip_spaces (infile
);
138 desc
= read_rtx (infile
);
139 if (GET_CODE (desc
) == DEFINE_INSN
|| GET_CODE (desc
) == DEFINE_EXPAND
)
144 if (GET_CODE (desc
) == DEFINE_PEEPHOLE
145 || GET_CODE (desc
) == DEFINE_SPLIT
)
151 printf (" CODE_FOR_nothing };\n");
153 printf ("\n#define MAX_INSN_CODE ((int) CODE_FOR_nothing)\n");
155 printf ("#endif /* MAX_INSN_CODE */\n");
158 exit (ferror (stdout
) != 0 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);