1f978f5f7e
* c-decl.c (duplicate_decls, push_parm_decl): Remove leading capital from diagnostics. * c-lex.c (cb_file_change): Similarly. * c-parse.in : Similarly. * cfgrtl.c (verify_flow_info): Similarly. * collect2.c: Similarly. * cppfiles.c (find_include_file): Similarly. * cppinit.c (cpp_handle_option): Similarly. * cpplex.c (cpp_spell_token): Similarly. * cppmain.c (do_preprocessing): Similarly. * gcc.c (translate_options, process_command, do_spec1, main, pfatal_execute): Similarly. * genattr.c (main): Similarly. * genattrtab.c (check_attr_test, operate_exp, simplify_test_exp, write_test_expr, main): Similarly. * gencodes.c (main): Similarly. * genconfig.c (main): Similarly. * genconstants.c (main): Similarly. * genemit.c (main): Similarly. * genextract.c (main): Similarly. * genflags.c (main): Similarly. * genopinit.c (main): Similarly. * genoutput.c (process_template, main): Similarly. * genpeep.c (main): Similarly. * genrecog.c (main): Similarly. * gensupport.c (is_predicable, identify_predicable_attribute, alter_predicate_for_insn, init_md_reader_args, main): Similarly. * ggc-page.c (alloc_anon): Similarly. * mips-tfile.c (add_string, add_procedure, add_file, read_line, parse_begin, parse_bend, parse_def, parse_end, parse_file, parse_stabs_common, parse_stabs, write_varray, write_object, read_seek, copy_object, main, error): Similarly. * profile.c (compute_branch_probabilities): Similarly. * reg-stack.c (check_asm_stack_operands): Similarly. * reload.c (find_reloads): Similarly. * reload1.c (spill_failure, failed_reload): Similarly. * rtl-error.c (_fatal_insn_not_found): Similarly. * toplev.c (read_integral_parameter, crash_signal, decode_f_option, set_target_switch, parse_options_and_default_flags) : Similarly. * tradcif.y (parse_number, yylex): Similarly. * tradcpp.c (main, fancy_abort): Similarly. * tree.c (tree_check_failed): Similarly. * varray.c (varray_check_failed): Similarly. * xcoffout.c (xcoff_output_standard_types): Similarly. cp: * call.c (build_java_interface_fn_ref): Similarly. * except.c (is_admissible_throw_operand): Similarly. * init.c (build_java_class_ref): Similarly. * xref.c (open_xref_file): Similarly. objc: * objc-act.c (get_object_ref, lookup_and_install_protocols, build_objc_string_object, objc_declare_alias, build_ivar_chain, finish_message_expr, build_protocol_expr, is_public, start_class): Similarly. testsuite: * objc.dg/alias.m: Update. * objc.dg/class-1.m: Update. * objc.dg/const-str-1.m: Update. * objc.dg/fwd-proto-1.m: Update. * objc.dg/id-1.m: Update. * objc.dg/super-class-1.m: Update. From-SVN: r47518
278 lines
6.3 KiB
C
278 lines
6.3 KiB
C
/* Generate from machine description:
|
|
- some flags HAVE_... saying which simple standard instructions are
|
|
available for this machine.
|
|
Copyright (C) 1987, 1991, 1995, 1998,
|
|
1999, 2000 Free Software Foundation, Inc.
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC 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.
|
|
|
|
GCC 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 GCC; 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"
|
|
#include "gensupport.h"
|
|
|
|
|
|
#define obstack_chunk_alloc xmalloc
|
|
#define obstack_chunk_free free
|
|
|
|
/* Obstack to remember insns with. */
|
|
static struct obstack obstack;
|
|
|
|
/* Max size of names encountered. */
|
|
static int max_id_len;
|
|
|
|
/* Max operand encountered in a scan over some insn. */
|
|
static int max_opno;
|
|
|
|
static void max_operand_1 PARAMS ((rtx));
|
|
static int num_operands PARAMS ((rtx));
|
|
static void gen_proto PARAMS ((rtx));
|
|
static void gen_macro PARAMS ((const char *, int, int));
|
|
static void gen_insn PARAMS ((rtx));
|
|
|
|
/* Count the number of match_operand's found. */
|
|
|
|
static void
|
|
max_operand_1 (x)
|
|
rtx x;
|
|
{
|
|
RTX_CODE code;
|
|
int i;
|
|
int len;
|
|
const char *fmt;
|
|
|
|
if (x == 0)
|
|
return;
|
|
|
|
code = GET_CODE (x);
|
|
|
|
if (code == MATCH_OPERAND || code == MATCH_OPERATOR
|
|
|| code == MATCH_PARALLEL)
|
|
max_opno = MAX (max_opno, XINT (x, 0));
|
|
|
|
fmt = GET_RTX_FORMAT (code);
|
|
len = GET_RTX_LENGTH (code);
|
|
for (i = 0; i < len; i++)
|
|
{
|
|
if (fmt[i] == 'e' || fmt[i] == 'u')
|
|
max_operand_1 (XEXP (x, i));
|
|
else if (fmt[i] == 'E')
|
|
{
|
|
int j;
|
|
for (j = 0; j < XVECLEN (x, i); j++)
|
|
max_operand_1 (XVECEXP (x, i, j));
|
|
}
|
|
}
|
|
}
|
|
|
|
static int
|
|
num_operands (insn)
|
|
rtx insn;
|
|
{
|
|
int len = XVECLEN (insn, 1);
|
|
int i;
|
|
|
|
max_opno = -1;
|
|
|
|
for (i = 0; i < len; i++)
|
|
max_operand_1 (XVECEXP (insn, 1, i));
|
|
|
|
return max_opno + 1;
|
|
}
|
|
|
|
/* Print out a wrapper macro for a function which corrects the number
|
|
of arguments it takes. Any missing arguments are assumed to be at
|
|
the end. */
|
|
static void
|
|
gen_macro (name, real, expect)
|
|
const char *name;
|
|
int real, expect;
|
|
{
|
|
int i;
|
|
|
|
if (real > expect)
|
|
abort ();
|
|
if (real == 0)
|
|
abort ();
|
|
|
|
/* #define GEN_CALL(A, B, C, D) gen_call((A), (B)) */
|
|
fputs ("#define GEN_", stdout);
|
|
for (i = 0; name[i]; i++)
|
|
putchar (TOUPPER (name[i]));
|
|
|
|
putchar('(');
|
|
for (i = 0; i < expect - 1; i++)
|
|
printf ("%c, ", i + 'A');
|
|
printf ("%c) gen_%s (", i + 'A', name);
|
|
|
|
for (i = 0; i < real - 1; i++)
|
|
printf ("(%c), ", i + 'A');
|
|
printf ("(%c))\n", i + 'A');
|
|
}
|
|
|
|
/* Print out prototype information for a function. */
|
|
|
|
static void
|
|
gen_proto (insn)
|
|
rtx insn;
|
|
{
|
|
int num = num_operands (insn);
|
|
const char *name = XSTR (insn, 0);
|
|
|
|
/* Many md files don't refer to the last two operands passed to the
|
|
call patterns. This means their generator functions will be two
|
|
arguments too short. Instead of changing every md file to touch
|
|
those operands, we wrap the prototypes in macros that take the
|
|
correct number of arguments. */
|
|
if (name[0] == 'c' || name[0] == 's')
|
|
{
|
|
if (!strcmp (name, "call")
|
|
|| !strcmp (name, "call_pop")
|
|
|| !strcmp (name, "sibcall")
|
|
|| !strcmp (name, "sibcall_pop"))
|
|
gen_macro (name, num, 4);
|
|
else if (!strcmp (name, "call_value")
|
|
|| !strcmp (name, "call_value_pop")
|
|
|| !strcmp (name, "sibcall_value")
|
|
|| !strcmp (name, "sibcall_value_pop"))
|
|
gen_macro (name, num, 5);
|
|
}
|
|
|
|
printf ("extern struct rtx_def *gen_%-*s PARAMS ((", max_id_len, name);
|
|
|
|
if (num == 0)
|
|
printf ("void");
|
|
else
|
|
{
|
|
while (num-- > 1)
|
|
printf ("struct rtx_def *, ");
|
|
|
|
printf ("struct rtx_def *");
|
|
}
|
|
|
|
printf ("));\n");
|
|
|
|
}
|
|
|
|
static void
|
|
gen_insn (insn)
|
|
rtx insn;
|
|
{
|
|
const char *name = XSTR (insn, 0);
|
|
const char *p;
|
|
int len;
|
|
|
|
/* Don't mention instructions whose names are the null string
|
|
or begin with '*'. They are in the machine description just
|
|
to be recognized. */
|
|
if (name[0] == 0 || name[0] == '*')
|
|
return;
|
|
|
|
len = strlen (name);
|
|
|
|
if (len > max_id_len)
|
|
max_id_len = len;
|
|
|
|
printf ("#define HAVE_%s ", name);
|
|
if (strlen (XSTR (insn, 2)) == 0)
|
|
printf ("1\n");
|
|
else
|
|
{
|
|
/* Write the macro definition, putting \'s at the end of each line,
|
|
if more than one. */
|
|
printf ("(");
|
|
for (p = XSTR (insn, 2); *p; p++)
|
|
{
|
|
if (*p == '\n')
|
|
printf (" \\\n");
|
|
else
|
|
printf ("%c", *p);
|
|
}
|
|
printf (")\n");
|
|
}
|
|
|
|
obstack_grow (&obstack, &insn, sizeof (rtx));
|
|
}
|
|
|
|
extern int main PARAMS ((int, char **));
|
|
|
|
int
|
|
main (argc, argv)
|
|
int argc;
|
|
char **argv;
|
|
{
|
|
rtx desc;
|
|
rtx dummy;
|
|
rtx *insns;
|
|
rtx *insn_ptr;
|
|
|
|
progname = "genflags";
|
|
obstack_init (&obstack);
|
|
|
|
if (argc <= 1)
|
|
fatal ("no input file name");
|
|
|
|
if (init_md_reader_args (argc, argv) != SUCCESS_EXIT_CODE)
|
|
return (FATAL_EXIT_CODE);
|
|
|
|
puts ("/* Generated automatically by the program `genflags'");
|
|
puts (" from the machine description file `md'. */\n");
|
|
puts ("#ifndef GCC_INSN_FLAGS_H");
|
|
puts ("#define GCC_INSN_FLAGS_H\n");
|
|
|
|
/* Read the machine description. */
|
|
|
|
while (1)
|
|
{
|
|
int line_no, insn_code_number = 0;
|
|
|
|
desc = read_md_rtx (&line_no, &insn_code_number);
|
|
if (desc == NULL)
|
|
break;
|
|
if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
|
|
gen_insn (desc);
|
|
}
|
|
|
|
/* Print out the prototypes now. */
|
|
dummy = (rtx) 0;
|
|
obstack_grow (&obstack, &dummy, sizeof (rtx));
|
|
insns = (rtx *) obstack_finish (&obstack);
|
|
|
|
printf ("struct rtx_def;\n");
|
|
for (insn_ptr = insns; *insn_ptr; insn_ptr++)
|
|
gen_proto (*insn_ptr);
|
|
|
|
puts("\n#endif /* GCC_INSN_FLAGS_H */");
|
|
|
|
if (ferror (stdout) || fflush (stdout) || fclose (stdout))
|
|
return FATAL_EXIT_CODE;
|
|
|
|
return 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;
|
|
}
|