1 /* The IGEN simulator generator for GDB, the GNU Debugger.
3 Copyright 2002-2019 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/>. */
23 /* Read a table, line by line, from a file.
25 A table line has several forms:
30 type == table_colon_entry
32 Fields points to a NULL terminated list of pointers.
36 <tab> <text> <nl> { <tab> <text> <nl> }
37 type == table_code_entry
39 The leading tab at the start of each line is discarded.
40 fields[i] is the i'th line with the <nl> discarded.
45 "{" <ignore-text> <nl> { <text> <nl> } "}" <ignore-text> <nl>
46 type == table_code_entry
48 The leading/trailing {/} lines are discarded.
49 Lines containing two leading spaces have those spaces striped.
50 fields[i] is the i'th line with the <nl> discarded.
52 In addition, the table parser reconises and handles internally the
53 following (when not in a code block):
55 "#" <line-nr> '"' <file> '"'
57 As per CPP/CC, treat following lines as if they were taken from
58 <file> starting at <line-nr>
60 No support for CPP's "#if/#else/#endif" style conditions are
63 typedef struct _table table
;
73 typedef struct _table_entry table_entry
;
78 table_entry_type type
;
83 /* List of directories to search when opening a pushed file. Current
84 directory is always searched first */
85 typedef struct _table_include table_include
;
93 /* Open/read a table file. Since the file is read once during open
94 (and then closed immediately) there is no close method. */
96 extern table
*table_open (const char *file_name
);
98 extern table_entry
*table_read (table
*file
);
101 /* Push the the state of the current file and open FILE_NAME. When
102 the end of FILE_NAME is reached, return to the pushed file */
104 extern void table_push
105 (table
*file
, line_ref
*line
, table_include
*search
, const char *file_name
);
108 /* Expand the specified field_nr using the internal expansion table.
109 A field is only expanded when explicitly specified. */
111 extern void table_expand_field (table_entry
*entry
, int field_nr
);
114 /* Given a code entry, write the code to FILE. Since any
115 leading/trailing braces were striped as part of the read, they are
118 extern void table_print_code (lf
*file
, table_entry
*entry
);
123 extern void dump_line_ref
124 (lf
*file
, char *prefix
, const line_ref
*line
, char *suffix
);
126 extern void dump_table_entry
127 (lf
*file
, char *prefix
, const table_entry
*entry
, char *suffix
);
131 /* Utilities for skipping around text */
133 extern char *skip_digits (char *chp
);
135 extern char *skip_spaces (char *chp
);
137 extern char *skip_to_separator (char *chp
, char *separators
);
139 extern char *back_spaces (char *start
, char *chp
);