]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/genattrtab.h
Fix ada enabled "make html".
[thirdparty/gcc.git] / gcc / genattrtab.h
CommitLineData
fae15c93 1/* External definitions of source files of genattrtab.
fdd9b6ba 2 Copyright (C) 2001, 2003 Free Software Foundation, Inc.
fae15c93 3
63b025a5 4This file is part of GCC.
fae15c93 5
63b025a5 6GCC is free software; you can redistribute it and/or modify
fae15c93
VM
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
63b025a5 11GCC is distributed in the hope that it will be useful,
fae15c93
VM
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
63b025a5 17along with GCC; see the file COPYING. If not, write to
fae15c93
VM
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
d530b07f
VM
21/* Name of function (attribute) to translate insn into number of insn
22 alternatives reservation. */
23#define INSN_ALTS_FUNC_NAME "insn_alts"
24
fae15c93 25/* Defined in genattrtab.c: */
fdd9b6ba
AJ
26extern rtx check_attr_test (rtx, int, int);
27extern rtx make_numeric_value (int);
28extern void make_internal_attr (const char *, rtx, int);
29extern char *attr_printf (unsigned int, const char *, ...)
fae15c93
VM
30 ATTRIBUTE_PRINTF_2;
31
32extern int num_dfa_decls;
33
34/* Defined in genautomata.c: */
fdd9b6ba
AJ
35extern void gen_cpu_unit (rtx);
36extern void gen_query_cpu_unit (rtx);
37extern void gen_bypass (rtx);
38extern void gen_excl_set (rtx);
39extern void gen_presence_set (rtx);
40extern void gen_final_presence_set (rtx);
41extern void gen_absence_set (rtx);
42extern void gen_final_absence_set (rtx);
43extern void gen_automaton (rtx);
44extern void gen_automata_option (rtx);
45extern void gen_reserv (rtx);
46extern void gen_insn_reserv (rtx);
47extern void initiate_automaton_gen (int, char **);
48extern void expand_automata (void);
49extern void write_automata (void);
11597bc9
KG
50
51/* Flags for make_internal_attr's `special' parameter. */
52#define ATTR_NONE 0
53#define ATTR_SPECIAL (1 << 0)
db77171d 54#define ATTR_STATIC (1 << 1)