bcdaba58ff
* rtl.c (dump_and_abort): Remove. (fatal_with_file_and_line): New. (fatal_expected_char): New. (read_rtx_lineno, read_rtx_filename): New. (read_skip_spaces): Track line number. (read_name): Use fatal_with_file_and_line. (read_rtx): Use fatal_expected_char. Track line number. * rtl.h (read_rtx_filename, read_rtx_lineno): Declare. * print-rtl.c (print_rtx): Don't special case LABEL_REF argument if it isn't a CODE_LABEL. * genattr.c (main): Set read_rtx_filename. * genattrtab.c (main): Likewise. * gencodes.c (main): Likewise. * genconfig.c (main): Likewise. * genemit.c (main): Likewise. * genextract.c (main): Likewise. * genflags.c (main): Likewise. * genopinit.c (main): Likewise. * genoutput.c (main): Likewise. * genpeep.c (main): Likewise. * genrecog.c (decision_test.u.insn): Add `lineno'. (pattern_lineno, error_count): New variables. (message_with_line): New. (add_to_sequence): Break out checking code to ... (validate_pattern): ... here. Detect SET_DEST matching CONST_INT. (merge_insn): Use message_with_line. (make_insn_sequence): Use validate_pattern. Record insn lineno. (main): Set read_rtx_filename, pattern_lineno. Exit early on error. From-SVN: r29957
151 lines
3.4 KiB
C
151 lines
3.4 KiB
C
/* Generate from machine description:
|
|
- some macros CODE_FOR_... giving the insn_code_number value
|
|
for each of the defined standard insn names.
|
|
Copyright (C) 1987, 1991, 1995, 1998, 1999 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU CC.
|
|
|
|
GNU CC is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
GNU CC is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GNU CC; see the file COPYING. If not, write to
|
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
#include "hconfig.h"
|
|
#include "system.h"
|
|
#include "rtl.h"
|
|
#include "obstack.h"
|
|
#include "errors.h"
|
|
|
|
static struct obstack obstack;
|
|
struct obstack *rtl_obstack = &obstack;
|
|
|
|
#define obstack_chunk_alloc xmalloc
|
|
#define obstack_chunk_free free
|
|
|
|
static int insn_code_number;
|
|
|
|
static void gen_insn PROTO((rtx));
|
|
|
|
static void
|
|
gen_insn (insn)
|
|
rtx insn;
|
|
{
|
|
/* Don't mention instructions whose names are the null string
|
|
or begin with '*'. They are in the machine description just
|
|
to be recognized. */
|
|
if (XSTR (insn, 0)[0] != 0 && XSTR (insn, 0)[0] != '*')
|
|
printf (" CODE_FOR_%s = %d,\n", XSTR (insn, 0),
|
|
insn_code_number);
|
|
}
|
|
|
|
PTR
|
|
xmalloc (size)
|
|
size_t size;
|
|
{
|
|
register PTR val = (PTR) malloc (size);
|
|
|
|
if (val == 0)
|
|
fatal ("virtual memory exhausted");
|
|
return val;
|
|
}
|
|
|
|
PTR
|
|
xrealloc (old, size)
|
|
PTR old;
|
|
size_t size;
|
|
{
|
|
register PTR ptr;
|
|
if (old)
|
|
ptr = (PTR) realloc (old, size);
|
|
else
|
|
ptr = (PTR) malloc (size);
|
|
if (!ptr)
|
|
fatal ("virtual memory exhausted");
|
|
return ptr;
|
|
}
|
|
|
|
extern int main PROTO ((int, char **));
|
|
|
|
int
|
|
main (argc, argv)
|
|
int argc;
|
|
char **argv;
|
|
{
|
|
rtx desc;
|
|
FILE *infile;
|
|
register int c;
|
|
|
|
progname = "gencodes";
|
|
obstack_init (rtl_obstack);
|
|
|
|
if (argc <= 1)
|
|
fatal ("No input file name.");
|
|
|
|
infile = fopen (argv[1], "r");
|
|
if (infile == 0)
|
|
{
|
|
perror (argv[1]);
|
|
return (FATAL_EXIT_CODE);
|
|
}
|
|
read_rtx_filename = argv[1];
|
|
|
|
printf ("/* Generated automatically by the program `gencodes'\n\
|
|
from the machine description file `md'. */\n\n");
|
|
|
|
printf ("#ifndef MAX_INSN_CODE\n\n");
|
|
|
|
/* Read the machine description. */
|
|
|
|
insn_code_number = 0;
|
|
printf ("enum insn_code {\n");
|
|
|
|
while (1)
|
|
{
|
|
c = read_skip_spaces (infile);
|
|
if (c == EOF)
|
|
break;
|
|
ungetc (c, infile);
|
|
|
|
desc = read_rtx (infile);
|
|
if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
|
|
{
|
|
gen_insn (desc);
|
|
insn_code_number++;
|
|
}
|
|
if (GET_CODE (desc) == DEFINE_PEEPHOLE
|
|
|| GET_CODE (desc) == DEFINE_PEEPHOLE2
|
|
|| GET_CODE (desc) == DEFINE_SPLIT)
|
|
{
|
|
insn_code_number++;
|
|
}
|
|
}
|
|
|
|
printf (" CODE_FOR_nothing };\n");
|
|
|
|
printf ("\n#define MAX_INSN_CODE ((int) CODE_FOR_nothing)\n");
|
|
|
|
printf ("#endif /* MAX_INSN_CODE */\n");
|
|
|
|
fflush (stdout);
|
|
return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
|
|
}
|
|
|
|
/* Define this so we can link with print-rtl.o to get debug_rtx function. */
|
|
const char *
|
|
get_insn_name (code)
|
|
int code ATTRIBUTE_UNUSED;
|
|
{
|
|
return NULL;
|
|
}
|