]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/igen/table.h
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / sim / igen / table.h
CommitLineData
feaee4bd
AC
1/* The IGEN simulator generator for GDB, the GNU Debugger.
2
6aba47ca 3 Copyright 2002, 2007 Free Software Foundation, Inc.
feaee4bd
AC
4
5 Contributed by Andrew Cagney.
6
7 This file is part of GDB.
8
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 2 of the License, or
12 (at your option) any later version.
13
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.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24
25/* Read a table, line by line, from a file.
26
27 A table line has several forms:
28
29 Field line:
30
31 <text> { ":" <text> }
32 type == table_colon_entry
33
34 Fields points to a NULL terminated list of pointers.
35
36 Tab indented block:
37
38 <tab> <text> <nl> { <tab> <text> <nl> }
39 type == table_code_entry
40
41 The leading tab at the start of each line is discarded.
42 fields[i] is the i'th line with the <nl> discarded.
43
44
45 Code block:
46
47 "{" <ignore-text> <nl> { <text> <nl> } "}" <ignore-text> <nl>
48 type == table_code_entry
49
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.
53
54 In addition, the table parser reconises and handles internally the
55 following (when not in a code block):
56
57 "#" <line-nr> '"' <file> '"'
58
59 As per CPP/CC, treat following lines as if they were taken from
60 <file> starting at <line-nr>
61
62 No support for CPP's "#if/#else/#endif" style conditions are
63 planned. */
64
65typedef struct _table table;
66
4e0bf4c4
AC
67typedef enum
68{
c906108c
SS
69 table_colon_entry,
70 table_code_entry,
4e0bf4c4
AC
71}
72table_entry_type;
c906108c
SS
73
74
75typedef struct _table_entry table_entry;
4e0bf4c4
AC
76struct _table_entry
77{
c906108c
SS
78 table *file;
79 line_ref *line;
80 table_entry_type type;
81 int nr_fields;
82 char **field;
83};
84
85/* List of directories to search when opening a pushed file. Current
86 directory is always searched first */
87typedef struct _table_include table_include;
4e0bf4c4
AC
88struct _table_include
89{
c906108c
SS
90 char *dir;
91 table_include *next;
92};
93
94
95/* Open/read a table file. Since the file is read once during open
96 (and then closed immediatly) there is no close method. */
97
4e0bf4c4 98extern table *table_open (const char *file_name);
c906108c 99
4e0bf4c4 100extern table_entry *table_read (table *file);
c906108c
SS
101
102
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 */
105
106extern void table_push
4e0bf4c4 107 (table *file, line_ref *line, table_include *search, const char *file_name);
c906108c
SS
108
109
110/* Expand the specified field_nr using the internal expansion table.
111 A field is only expanded when explicitly specified. */
112
4e0bf4c4 113extern void table_expand_field (table_entry *entry, int field_nr);
c906108c
SS
114
115
116/* Given a code entry, write the code to FILE. Since any
117 leading/trailing braces were striped as part of the read, they are
118 not written. */
119
4e0bf4c4 120extern void table_print_code (lf *file, table_entry *entry);
c906108c
SS
121
122
123/* Debugging */
124
125extern void dump_line_ref
4e0bf4c4 126 (lf *file, char *prefix, const line_ref *line, char *suffix);
c906108c
SS
127
128extern void dump_table_entry
4e0bf4c4 129 (lf *file, char *prefix, const table_entry *entry, char *suffix);
c906108c
SS
130
131
132
133/* Utilities for skipping around text */
134
4e0bf4c4 135extern char *skip_digits (char *chp);
c906108c 136
4e0bf4c4 137extern char *skip_spaces (char *chp);
c906108c 138
4e0bf4c4 139extern char *skip_to_separator (char *chp, char *separators);
c906108c 140
4e0bf4c4 141extern char *back_spaces (char *start, char *chp);