]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/read-md.h
md.texi (define_c_enum, [...]): Document.
[thirdparty/gcc.git] / gcc / read-md.h
CommitLineData
10692477
RS
1/* MD reader definitions.
2 Copyright (C) 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010
4 Free Software Foundation, Inc.
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 3, or (at your option) any later
11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
21
22#include "obstack.h"
9f418533
RS
23#include "hashtab.h"
24
25/* Holds one symbol or number in the .md file. */
26struct md_name {
27 /* The name as it appeared in the .md file. Names are syntactically
28 limited to the length of this buffer. */
29 char buffer[256];
30
31 /* The name that should actually be used by the generator programs.
32 This is an expansion of NAME, after things like constant substitution. */
33 char *string;
34};
35
24609606
RS
36/* This structure represents a constant defined by define_constant,
37 define_enum, or such-like. */
9f418533 38struct md_constant {
24609606 39 /* The name of the constant. */
9f418533 40 char *name;
24609606
RS
41
42 /* The string to which the constants expands. */
9f418533 43 char *value;
24609606
RS
44
45 /* If the constant is associated with a enumeration, this field
46 points to that enumeration, otherwise it is null. */
47 struct enum_type *parent_enum;
48};
49
50/* This structure represents one value in an enum_type. */
51struct enum_value {
52 /* The next value in the enum, or null if this is the last. */
53 struct enum_value *next;
54
55 /* The name of the value as it appears in the .md file. */
56 char *name;
57
58 /* The definition of the related C value. */
59 struct md_constant *def;
60};
61
62/* This structure represents an enum defined by define_enum or the like. */
63struct enum_type {
64 /* The C name of the enumeration. */
65 char *name;
66
67 /* True if this is an md-style enum (DEFINE_ENUM) rather than
68 a C-style enum (DEFINE_C_ENUM). */
69 bool md_p;
70
71 /* The values of the enumeration. There is always at least one. */
72 struct enum_value *values;
73
74 /* A pointer to the null terminator in VALUES. */
75 struct enum_value **tail_ptr;
76
77 /* The number of enumeration values. */
78 unsigned int num_values;
9f418533 79};
10692477 80
600ab3fc
RS
81/* A callback that handles a single .md-file directive, up to but not
82 including the closing ')'. It takes two arguments: the line number on
83 which the directive started, and the name of the directive. The next
84 unread character is the optional space after the directive name. */
85typedef void (*directive_handler_t) (int, const char *);
86
87extern const char *in_fname;
c5e88b39 88extern FILE *read_md_file;
d2a3ce4e
RS
89extern int read_md_lineno;
90extern const char *read_md_filename;
10692477 91extern struct obstack string_obstack;
600ab3fc 92extern void (*include_callback) (const char *);
10692477 93
c5e88b39
RS
94/* Read the next character from the MD file. */
95
96static inline int
97read_char (void)
98{
7f7c467f
RS
99 int ch;
100
101 ch = getc (read_md_file);
102 if (ch == '\n')
103 read_md_lineno++;
104 return ch;
c5e88b39
RS
105}
106
107/* Put back CH, which was the last character read from the MD file. */
108
109static inline void
110unread_char (int ch)
111{
7f7c467f
RS
112 if (ch == '\n')
113 read_md_lineno--;
c5e88b39
RS
114 ungetc (ch, read_md_file);
115}
116
9f418533
RS
117extern hashval_t leading_string_hash (const void *);
118extern int leading_string_eq_p (const void *, const void *);
d2a3ce4e
RS
119extern void copy_md_ptr_loc (const void *, const void *);
120extern void print_md_ptr_loc (const void *);
10692477
RS
121extern const char *join_c_conditions (const char *, const char *);
122extern void print_c_condition (const char *);
123extern void message_with_line (int, const char *, ...) ATTRIBUTE_PRINTF_2;
bb933490 124extern void error_with_line (int, const char *, ...) ATTRIBUTE_PRINTF_2;
c5e88b39
RS
125extern void fatal_with_file_and_line (const char *, ...)
126 ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
127extern void fatal_expected_char (int, int) ATTRIBUTE_NORETURN;
128extern int read_skip_spaces (void);
9f418533 129extern void read_name (struct md_name *);
c5e88b39
RS
130extern char *read_quoted_string (void);
131extern char *read_string (int);
9b68b6ea 132extern void read_skip_construct (int, int);
10692477
RS
133extern int n_comma_elts (const char *);
134extern const char *scan_comma_elt (const char **);
24609606 135extern void upcase_string (char *);
9f418533 136extern void traverse_md_constants (htab_trav, void *);
24609606 137extern void traverse_enum_types (htab_trav, void *);
600ab3fc
RS
138extern bool read_md_files (int, char **, bool (*) (const char *),
139 directive_handler_t);