1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/* The IGEN simulator generator for GDB, the GNU Debugger.
Copyright 2002-2014 Free Software Foundation, Inc.
Contributed by Andrew Cagney.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* Instruction decode table:
<decode-rule> ::=
{ <option> }
":" [ <first> ]
":" [ <last> ]
":" [ <force-first> ]
":" [ <force-last> ]
":" [ <constant-field-names> ]
":" [ <word-nr> ]
":" [ <format-names> ]
":" [ <model-names> ]
":" [ <constant> ]
":" [ <path> { "," <path> } ]
{ ":" <special-mask>
":" [ "!" ] <special-value>
":" <word-nr> }
<nl>
;
<path> ::= <int> "," <int> ;;
<option> ::=
<reserved-options>
| <code-options>
| <optimize-options>
| <decode-options>
| <constant>
| <search-options>
;
<reserved-options> ::= "zero-reserved" ;
<gen-options> ::= "array" | "switch" | "padded-switch" | "goto-switch" ;
<optimize-options> ::= "duplicate" | "combine"
<decode-options> ::= "normal" | "boolean" ;
<search-options> ::= "constants" | "variables" | "mixed"
Ignore the below:
The instruction decode table contains rules that dictate how igen
is going to firstly break down the opcode table and secondly
The table that follows is used by gen to construct a decision tree
that can identify each possible instruction. Gen then outputs this
decision tree as (according to config) a table or switch statement
as the function idecode.
In parallel to this, as mentioned above, WITH_EXPANDED_SEMANTICS
determines of the semantic functions themselves should be expanded
in a similar way.
<first>
<last>
Range of bits (within the instruction) that should be searched for
an instruction field. Within such ranges, gen looks for opcodes
(constants), registers (strings) and reserved bits (slash) and
according to the rules that follows includes or excludes them from
a possible instruction field.
<force_first>
<force_last>
If an instruction field was found, enlarge the field size so that
it is forced to at least include bits starting from <force_first>
(<force_last>). To stop this occuring, use <force_first> = <last>
+ 1 and <force_last> = <first> - 1.
<force_reserved>
Treat `/' (reserved) fields as a constant (zero) instead of
variable when looking for an instruction field.
<force_expansion>
Treat any contained register (string) fields as constant when
determining the instruction field. For the instruction decode (and
controled by IDECODE_EXPAND_SEMANTICS) this forces the expansion of
what would otherwize be non constant bits of an instruction.
<use_switch>
Should this table be expanded using a switch statement (val 1) and
if so, should it be padded with entries so as to force the compiler
to generate a jump table (val 2). Or a branch table (val 3).
<special_mask>
<special_value>
<special_rule>
<special_constant>
Special rule to fine tune how specific (or groups) of instructions
are expanded. The applicability of the rule is determined by
<special_mask> != 0 && (instruction> & <special_mask>) == <special_value>
Where <instruction> is obtained by looking only at constant fields
with in an instructions spec. When determining an expansion, the
rule is only considered when a node contains a single instruction.
<special_rule> can be any of:
0: for this instruction, expand by earlier rules
1: expand bits <force_low> .. <force_hi> only
2: boolean expansion of only zero/non-zero cases
3: boolean expansion of equality of special constant
*/
typedef enum
{
normal_decode_rule,
boolean_rule,
}
decode_special_type;
typedef enum
{
invalid_gen,
array_gen,
switch_gen,
padded_switch_gen,
goto_switch_gen,
}
decode_gen_type;
enum
{
decode_cond_mask_field,
decode_cond_value_field,
decode_cond_word_nr_field,
nr_decode_cond_fields,
};
typedef struct _decode_path decode_path;
struct _decode_path
{
int opcode_nr;
decode_path *parent;
};
typedef struct _decode_path_list decode_path_list;
struct _decode_path_list
{
decode_path *path;
decode_path_list *next;
};
typedef struct _decode_cond decode_cond;
struct _decode_cond
{
int word_nr;
int mask[max_insn_bit_size];
int value[max_insn_bit_size];
int is_equal;
decode_cond *next;
};
typedef enum
{
decode_find_mixed,
decode_find_constants,
decode_find_strings,
}
decode_search_type;
enum
{
decode_options_field,
decode_first_field,
decode_last_field,
decode_force_first_field,
decode_force_last_field,
decode_constant_field_names_field,
decode_word_nr_field,
decode_format_names_field,
decode_model_names_field,
decode_paths_field,
nr_decode_fields,
min_nr_decode_fields = decode_last_field + 1,
};
typedef struct _decode_table decode_table;
struct _decode_table
{
line_ref *line;
decode_special_type type;
decode_gen_type gen;
decode_search_type search;
int first;
int last;
int force_first;
int force_last;
filter *constant_field_names;
int word_nr;
/* if a boolean */
unsigned constant;
/* options */
int with_zero_reserved;
int with_duplicates;
int with_combine;
/* conditions on the rule being applied */
decode_path_list *paths;
filter *format_names;
filter *model_names;
decode_cond *conditions;
decode_table *next;
};
extern decode_table *load_decode_table (char *file_name);
extern int decode_table_max_word_nr (decode_table *rule);
extern void dump_decode_rule
(lf *file, char *prefix, decode_table *rule, char *suffix);
|