* gennltvals.sh: Add fr30 support.
[deliverable/binutils-gdb.git] / sim / ppc / ld-cache.h
1 /* This file is part of the program psim.
2
3 Copyright (C) 1994,1995,1996, Andrew Cagney <cagney@highland.com.au>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 */
20
21 /* Instruction unpacking:
22
23 Once the instruction has been decoded, the register (and other)
24 fields within the instruction need to be extracted.
25
26 The table that follows determines how each field should be treated.
27 Importantly it considers the case where the extracted field is to
28 be used immediatly or stored in an instruction cache.
29
30 <valid>
31
32 Zero marks the end of the table. More importantly 1. indicates
33 that the entry is valid and can be cached. 2. indicates that that
34 the entry is valid but can not be cached.
35
36 <old_name>
37
38 The field name as given in the instruction spec.
39
40 <new_name>
41
42 A name for <old_name> once it has been extracted from the
43 instructioin (and possibly stored in the instruction cache).
44
45 <type>
46
47 String specifying the storage type for <new_name> (the extracted
48 field>.
49
50 <expression>
51
52 Specifies how to get <new_name> from <old_name>. If null, old and
53 new name had better be the same. */
54
55
56 typedef enum {
57 cache_value,
58 compute_value,
59 } cache_rule_type;
60
61 typedef struct _cache_table cache_table;
62 struct _cache_table {
63 cache_rule_type type;
64 char *old_name;
65 char *new_name;
66 char *type_def;
67 char *expression;
68 table_entry *file_entry;
69 cache_table *next;
70 };
71
72
73 extern cache_table *load_cache_table
74 (char *file_name,
75 int hi_bit_nr);
This page took 0.030008 seconds and 4 git commands to generate.