Updated French translations for GOLD and LD
[binutils-gdb.git] / sim / igen / table.h
blob7239412faf21e7f27cf0c0f35b43bc2ef9a66eee
1 /* The IGEN simulator generator for GDB, the GNU Debugger.
3 Copyright 2002-2024 Free Software Foundation, Inc.
5 Contributed by Andrew Cagney.
7 This file is part of GDB.
9 This program 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 3 of the License, or
12 (at your option) any later version.
14 This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */
22 #ifndef IGEN_TABLE_H
23 #define IGEN_TABLE_H
25 /* Read a table, line by line, from a file.
27 A table line has several forms:
29 Field line:
31 <text> { ":" <text> }
32 type == table_colon_entry
34 Fields points to a NULL terminated list of pointers.
36 Tab indented block:
38 <tab> <text> <nl> { <tab> <text> <nl> }
39 type == table_code_entry
41 The leading tab at the start of each line is discarded.
42 fields[i] is the i'th line with the <nl> discarded.
45 Code block:
47 "{" <ignore-text> <nl> { <text> <nl> } "}" <ignore-text> <nl>
48 type == table_code_entry
50 The leading/trailing {/} lines are discarded.
51 Lines containing two leading spaces have those spaces striped.
52 fields[i] is the i'th line with the <nl> discarded.
54 In addition, the table parser reconises and handles internally the
55 following (when not in a code block):
57 "#" <line-nr> '"' <file> '"'
59 As per CPP/CC, treat following lines as if they were taken from
60 <file> starting at <line-nr>
62 No support for CPP's "#if/#else/#endif" style conditions are
63 planned. */
65 typedef struct _table table;
67 typedef enum
69 table_colon_entry,
70 table_code_entry,
72 table_entry_type;
75 typedef struct _table_entry table_entry;
76 struct _table_entry
78 table *file;
79 line_ref *line;
80 table_entry_type type;
81 int nr_fields;
82 char **field;
85 /* List of directories to search when opening a pushed file. Current
86 directory is always searched first */
87 typedef struct _table_include table_include;
88 struct _table_include
90 char *dir;
91 table_include *next;
95 /* Open/read a table file. Since the file is read once during open
96 (and then closed immediately) there is no close method. */
98 extern table *table_open (const char *file_name);
100 extern table_entry *table_read (table *file);
103 /* Push the the state of the current file and open FILE_NAME. When
104 the end of FILE_NAME is reached, return to the pushed file */
106 extern void table_push
107 (table *file, const line_ref *line, table_include *search,
108 const char *file_name);
111 /* Expand the specified field_nr using the internal expansion table.
112 A field is only expanded when explicitly specified. */
114 extern void table_expand_field (table_entry *entry, int field_nr);
117 /* Given a code entry, write the code to FILE. Since any
118 leading/trailing braces were striped as part of the read, they are
119 not written. */
121 extern void table_print_code (lf *file, const table_entry *entry);
124 /* Debugging */
126 extern void dump_line_ref
127 (lf *file, const char *prefix, const line_ref *line, const char *suffix);
129 extern void dump_table_entry
130 (lf *file, const char *prefix, const table_entry *entry, const char *suffix);
134 /* Utilities for skipping around text */
136 extern char *skip_digits (char *chp);
138 extern char *skip_spaces (char *chp);
140 extern char *skip_to_separator (char *chp, char *separators);
142 extern char *back_spaces (char *start, char *chp);
144 #endif /* IGEN_TABLE_H */