* linker.c (default_fill_link_order): Handle four byte fill value.
[deliverable/binutils-gdb.git] / sim / igen / table.h
index 6b3f6e7889af7fed8c4b62d903fe616f960356b2..e0bc81bf38eda99a18721e56cea29fcee0dd8f75 100644 (file)
     */
 
 
-/* load a table into memory */
+/* Read a table, line by line, from a file.
+
+   A table line has several forms:
+
+   Field line:
+
+       <text> { ":" <text> }
+       type == table_colon_entry
+
+       Fields points to a NULL terminated list of pointers.
+
+   Tab indented block:
+
+     <tab> <text> <nl> { <tab> <text> <nl> }
+     type == table_code_entry
+
+     The leading tab at the start of each line is discarded.
+     fields[i] is the i'th line with the <nl> discarded.
+     
+
+   Code block:
+
+     "{" <ignore-text> <nl> { <text> <nl> } "}" <ignore-text> <nl>
+     type == table_code_entry
+
+     The leading/trailing {/} lines are discarded.
+     Lines containing two leading spaces have those spaces striped.
+     fields[i] is the i'th line with the <nl> discarded.
+
+   In addition, the table parser reconises and handles internally the
+   following (when not in a code block):
+
+     "#" <line-nr> '"' <file> '"'
+
+     As per CPP/CC, treat following lines as if they were taken from
+     <file> starting at <line-nr>
+
+   No support for CPP's "#if/#else/#endif" style conditions are
+   planned. */
 
 typedef struct _table table;
 
-typedef struct _table_model_entry table_model_entry;
-struct _table_model_entry {
-  table_model_entry *next;
-  int line_nr;
-  int nr_fields;
-  char *fields[0];     /* User defined */
-};
+typedef enum {
+  table_colon_entry,
+  table_code_entry,
+} table_entry_type;
 
-typedef struct _table_assembler_entry table_assembler_entry;
-struct _table_assembler_entry {
-  const char *format;
-  const char *condition;
-  const char *file_name;
-  int line_nr;
-  table_assembler_entry *next;
-};
 
 typedef struct _table_entry table_entry;
 struct _table_entry {
-  int line_nr;
+  table *file;
+  line_ref *line;
+  table_entry_type type;
   int nr_fields;
-  char *file_name;
-  table_assembler_entry *assembler;
-  table_model_entry *model_first;
-  table_model_entry *model_last;
-  char *annex;
-  char *fields[0];      /* User defined */
+  char **field;
+};
+
+/* List of directories to search when opening a pushed file.  Current
+   directory is always searched first */
+typedef struct _table_include table_include;
+struct _table_include {
+  char *dir;
+  table_include *next;
 };
 
 
+/* Open/read a table file.  Since the file is read once during open
+   (and then closed immediatly) there is no close method. */
+
 extern table *table_open
-(const char *file_name,
- int max_nr_fields,
- int max_nr_model_fields);
+(const char *file_name);
 
-extern table_entry *table_entry_read
+extern table_entry *table_read
 (table *file);
 
-extern void dump_table_entry
+
+/* Push the the state of the current file and open FILE_NAME.  When
+   the end of FILE_NAME is reached, return to the pushed file */
+
+extern void table_push
+(table *file,
+ line_ref *line,
+ table_include *search,
+ const char *file_name);
+
+
+/* Expand the specified field_nr using the internal expansion table.
+   A field is only expanded when explicitly specified.  */
+
+extern void table_expand_field
 (table_entry *entry,
- int indent);
+ int field_nr);
+
 
-extern void table_entry_print_cpp_line_nr
+/* Given a code entry, write the code to FILE.  Since any
+   leading/trailing braces were striped as part of the read, they are
+   not written. */
+
+extern void table_print_code
 (lf *file,
  table_entry *entry);
+
+
+/* Debugging */
+
+extern void dump_line_ref
+(lf *file,
+ char *prefix,
+ const line_ref *line,
+ char *suffix);
+
+extern void dump_table_entry
+(lf *file,
+ char *prefix,
+ const table_entry *entry,
+ char *suffix);
+
+
+
+/* Utilities for skipping around text */
+
+extern char *skip_digits
+(char *chp);
+
+extern char *skip_spaces
+(char *chp);
+
+extern char *skip_to_separator
+(char *chp,
+ char *separators);
+
+extern char *back_spaces
+(char *start,
+ char *chp);
This page took 0.028552 seconds and 4 git commands to generate.