1 /* This file is part of the program psim.
3 Copyright 1994, 1995, 1996, 1997, 2003 Andrew Cagney
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 3 of the License, or
8 (at your option) any later version.
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.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, see <http://www.gnu.org/licenses/>.
30 #include "ld-decode.h"
35 #include "gen-model.h"
36 #include "gen-icache.h"
37 #include "gen-itable.h"
38 #include "gen-idecode.h"
39 #include "gen-semantics.h"
40 #include "gen-support.h"
43 int insn_bit_size
= ppc_max_insn_bit_size
;
45 igen_code code
= generate_calls
;
47 int generate_expanded_instructions
;
48 int icache_size
= 1024;
51 /****************************************************************/
54 print_insn_bits(lf
*file
, insn_bits
*bits
)
59 nr
+= print_insn_bits(file
, bits
->last
);
60 nr
+= lf_putchr(file
, '_');
61 nr
+= lf_putstr(file
, bits
->field
->val_string
);
62 if (bits
->opcode
->is_boolean
&& bits
->value
== 0)
63 nr
+= lf_putint(file
, bits
->opcode
->boolean_constant
);
64 else if (!bits
->opcode
->is_boolean
) {
65 if (bits
->opcode
->last
< bits
->field
->last
)
66 nr
+= lf_putint(file
, bits
->value
<< (bits
->field
->last
- bits
->opcode
->last
));
68 nr
+= lf_putint(file
, bits
->value
);
74 print_function_name(lf
*file
,
76 insn_bits
*expanded_bits
,
77 lf_function_name_prefixes prefix
)
82 case function_name_prefix_semantics
:
83 nr
+= lf_putstr(file
, "semantic_");
85 case function_name_prefix_idecode
:
86 nr
+= lf_printf(file
, "idecode_");
88 case function_name_prefix_itable
:
89 nr
+= lf_putstr(file
, "itable_");
91 case function_name_prefix_icache
:
92 nr
+= lf_putstr(file
, "icache_");
98 /* the function name */
111 nr
+= lf_putchr(file
, '_');
114 nr
+= lf_putchr(file
, *pos
);
121 if (generate_expanded_instructions
)
122 nr
+= print_insn_bits(file
, expanded_bits
);
129 print_my_defines(lf
*file
,
130 insn_bits
*expanded_bits
,
131 table_entry
*file_entry
)
133 /* #define MY_INDEX xxxxx */
134 lf_indent_suppress(file
);
135 lf_printf(file
, "#undef MY_INDEX\n");
136 lf_indent_suppress(file
);
137 lf_printf(file
, "#define MY_INDEX ");
138 print_function_name(file
,
139 file_entry
->fields
[insn_name
],
141 function_name_prefix_itable
);
142 lf_printf(file
, "\n");
143 /* #define MY_PREFIX xxxxxx */
144 lf_indent_suppress(file
);
145 lf_printf(file
, "#undef MY_PREFIX\n");
146 lf_indent_suppress(file
);
147 lf_printf(file
, "#define MY_PREFIX ");
148 print_function_name(file
,
149 file_entry
->fields
[insn_name
],
151 function_name_prefix_none
);
152 lf_printf(file
, "\n");
157 print_itrace(lf
*file
,
158 table_entry
*file_entry
,
161 lf_print__external_ref(file
, file_entry
->line_nr
, file_entry
->file_name
);
162 lf_printf(file
, "ITRACE(trace_%s, (\"%s %s\\n\"));\n",
163 (idecode
? "idecode" : "semantics"),
164 (idecode
? "idecode" : "semantics"),
165 file_entry
->fields
[insn_name
]);
166 lf_print__internal_ref(file
);
170 /****************************************************************/
174 gen_semantics_h(insn_table
*table
,
178 lf_printf(file
, "typedef %s idecode_semantic\n(%s);\n",
179 SEMANTIC_FUNCTION_TYPE
,
180 SEMANTIC_FUNCTION_FORMAL
);
181 lf_printf(file
, "\n");
182 if ((code
& generate_calls
)) {
183 lf_printf(file
, "extern int option_mpc860c0;\n");
184 lf_printf(file
, "#define MPC860C0_PAGE_SIZE 0x1000\n");
185 lf_printf(file
, "\n");
186 lf_printf(file
, "PSIM_EXTERN_SEMANTICS(void)\n");
187 lf_printf(file
, "semantic_init(device* root);\n");
188 lf_printf(file
, "\n");
189 if (generate_expanded_instructions
)
190 insn_table_traverse_tree(table
,
194 print_semantic_declaration
, /* leaf */
198 insn_table_traverse_insn(table
,
200 print_semantic_declaration
);
204 lf_print__this_file_is_empty(file
, "generating jumps");
210 gen_semantics_c(insn_table
*table
,
211 cache_table
*cache_rules
,
215 if ((code
& generate_calls
)) {
216 lf_printf(file
, "\n");
217 lf_printf(file
, "#include \"cpu.h\"\n");
218 lf_printf(file
, "#include \"idecode.h\"\n");
219 lf_printf(file
, "#include \"semantics.h\"\n");
220 lf_printf(file
, "#include \"tree.h\"\n");
221 lf_printf(file
, "#ifdef HAVE_COMMON_FPU\n");
222 lf_printf(file
, "#include \"sim-inline.h\"\n");
223 lf_printf(file
, "#include \"sim-fpu.h\"\n");
224 lf_printf(file
, "#endif\n");
225 lf_printf(file
, "#include \"support.h\"\n");
226 lf_printf(file
, "\n");
227 lf_printf(file
, "int option_mpc860c0 = 0;\n");
228 lf_printf(file
, "\n");
229 lf_printf(file
, "PSIM_EXTERN_SEMANTICS(void)\n");
230 lf_printf(file
, "semantic_init(device* root)\n");
231 lf_printf(file
, "{\n");
232 lf_printf(file
, " option_mpc860c0 = 0;\n");
233 lf_printf(file
, " if (tree_find_property(root, \"/options/mpc860c0\"))\n");
234 lf_printf(file
, " option_mpc860c0 = tree_find_integer_property(root, \"/options/mpc860c0\");\n");
235 lf_printf(file
, " option_mpc860c0 *= 4; /* convert word count to byte count */\n");
236 lf_printf(file
, "}\n");
237 lf_printf(file
, "\n");
238 if (generate_expanded_instructions
)
239 insn_table_traverse_tree(table
,
243 print_semantic_definition
, /* leaf */
247 insn_table_traverse_insn(table
,
249 print_semantic_definition
);
253 lf_print__this_file_is_empty(file
, "generating jump engine");
258 /****************************************************************/
262 gen_icache_h(insn_table
*table
,
266 lf_printf(file
, "typedef %s idecode_icache\n(%s);\n",
267 ICACHE_FUNCTION_TYPE
,
268 ICACHE_FUNCTION_FORMAL
);
269 lf_printf(file
, "\n");
270 if ((code
& generate_calls
)
271 && (code
& generate_with_icache
)) {
272 insn_table_traverse_function(table
,
274 print_icache_internal_function_declaration
);
275 if (generate_expanded_instructions
)
276 insn_table_traverse_tree(table
,
280 print_icache_declaration
, /* leaf */
284 insn_table_traverse_insn(table
,
286 print_icache_declaration
);
290 lf_print__this_file_is_empty(file
, "generating jump engine");
295 gen_icache_c(insn_table
*table
,
296 cache_table
*cache_rules
,
300 /* output `internal' invalid/floating-point unavailable functions
302 if ((code
& generate_calls
)
303 && (code
& generate_with_icache
)) {
304 lf_printf(file
, "\n");
305 lf_printf(file
, "#include \"cpu.h\"\n");
306 lf_printf(file
, "#include \"idecode.h\"\n");
307 lf_printf(file
, "#include \"semantics.h\"\n");
308 lf_printf(file
, "#include \"icache.h\"\n");
309 lf_printf(file
, "#ifdef HAVE_COMMON_FPU\n");
310 lf_printf(file
, "#include \"sim-inline.h\"\n");
311 lf_printf(file
, "#include \"sim-fpu.h\"\n");
312 lf_printf(file
, "#endif\n");
313 lf_printf(file
, "#include \"support.h\"\n");
314 lf_printf(file
, "\n");
315 insn_table_traverse_function(table
,
317 print_icache_internal_function_definition
);
318 lf_printf(file
, "\n");
319 if (generate_expanded_instructions
)
320 insn_table_traverse_tree(table
,
324 print_icache_definition
, /* leaf */
328 insn_table_traverse_insn(table
,
330 print_icache_definition
);
334 lf_print__this_file_is_empty(file
, "generating jump engine");
339 /****************************************************************/
347 cache_table
*cache_rules
= NULL
;
348 lf_file_references file_references
= lf_include_references
;
349 decode_table
*decode_rules
= NULL
;
350 filter
*filters
= NULL
;
351 insn_table
*instructions
= NULL
;
352 table_include
*includes
= NULL
;
353 static const struct option longopts
[] = { { 0 } };
354 char *real_file_name
= NULL
;
360 printf(" igen <config-opts> ... <input-opts>... <output-opts>...\n");
361 printf("Config options:\n");
362 printf(" -F <filter-out-flag> eg -F 64 to skip 64bit instructions\n");
363 printf(" -E Expand (duplicate) semantic functions\n");
364 printf(" -I <icache-size> Generate cracking cache version\n");
365 printf(" -C Include semantics in cache functions\n");
366 printf(" -S Include insn (instruction) in icache\n");
367 printf(" -R Use defines to reference cache vars\n");
368 printf(" -L Supress line numbering in output files\n");
369 printf(" -B <bit-size> Set the number of bits in an instruction\n");
370 printf(" -H <high-bit> Set the nr of the high (msb bit)\n");
371 printf(" -N <nr-cpus> Specify the max number of cpus the simulation will support\n");
372 printf(" -J Use jumps instead of function calls\n");
373 printf(" -T <mechanism> Override the mechanism used to decode an instruction\n");
374 printf(" using <mechanism> instead of what was specified in the\n");
375 printf(" decode-rules input file\n");
377 printf("Input options (ucase version also dumps loaded table):\n");
378 printf(" -o <decode-rules>\n");
379 printf(" -k <cache-rules>\n");
380 printf(" -i <instruction-table>\n");
382 printf("Output options:\n");
383 printf(" -n <real-name> Specify the real name of for the next output file\n");
384 printf(" -h Generate header file\n");
385 printf(" -c <output-file> output icache\n");
386 printf(" -d <output-file> output idecode\n");
387 printf(" -m <output-file> output model\n");
388 printf(" -s <output-file> output schematic\n");
389 printf(" -t <output-file> output itable\n");
390 printf(" -f <output-file> output support functions\n");
394 (ch
= getopt_long (argc
, argv
, "F:EI:RSLJT:CB:H:N:o:k:i:n:hc:d:m:s:t:f:",
398 #if 0 /* For debugging. */
399 fprintf(stderr
, "\t-%c %s\n", ch
, (optarg
? optarg
: ""));
403 code
|= generate_with_icache
;
404 code
|= generate_with_semantic_icache
;
407 code
|= generate_with_icache
;
408 code
|= generate_with_insn_in_icache
;
411 file_references
= lf_omit_references
;
414 generate_expanded_instructions
= 1;
420 if (strncmp (optarg
, "no-", strlen ("no-")) == 0)
422 argp
= optarg
+ strlen ("no-");
425 else if (strncmp (optarg
, "!", strlen ("!")) == 0)
427 argp
= optarg
+ strlen ("no-");
435 if (strncmp (argp
, "gen-icache", strlen ("gen-icache")) == 0)
437 switch (argp
[strlen ("gen-icache")])
440 icache_size
= atoi (argp
+ strlen ("gen-icache") + 1);
442 code
|= generate_with_icache
;
444 code
&= ~generate_with_icache
;
448 code
|= generate_with_icache
;
450 code
&= ~generate_with_icache
;
453 ERROR ("Expecting -Ggen-icache or -Ggen-icache=<N>\n");
460 table_include
**dir
= &includes
;
461 while ((*dir
) != NULL
)
463 (*dir
) = ZALLOC (table_include
);
464 (*dir
)->dir
= strdup (optarg
);
468 generate_smp
= a2i(optarg
);
471 code
|= generate_with_direct_access
;
474 insn_bit_size
= a2i(optarg
);
475 ASSERT(insn_bit_size
> 0 && insn_bit_size
<= ppc_max_insn_bit_size
476 && (hi_bit_nr
== insn_bit_size
-1 || hi_bit_nr
== 0));
479 hi_bit_nr
= a2i(optarg
);
480 ASSERT(hi_bit_nr
== insn_bit_size
-1 || hi_bit_nr
== 0);
483 filter_parse(&filters
, optarg
);
486 code
&= ~generate_calls
;
487 code
|= generate_jumps
;
490 force_decode_gen_type(optarg
);
493 if (decode_rules
== NULL
) {
494 fprintf(stderr
, "Must specify decode tables\n");
497 instructions
= load_insn_table(optarg
, decode_rules
, filters
, includes
,
499 fprintf(stderr
, "\texpanding ...\n");
500 insn_table_expand_insns(instructions
);
503 decode_rules
= load_decode_table(optarg
, hi_bit_nr
);
506 cache_rules
= load_cache_table(optarg
, hi_bit_nr
);
509 real_file_name
= strdup(optarg
);
521 lf
*file
= lf_open(optarg
, real_file_name
, file_references
,
522 (is_header
? lf_is_h
: lf_is_c
),
524 lf_print__file_start(file
);
525 ASSERT(instructions
!= NULL
);
529 gen_semantics_h(instructions
, file
, code
);
531 gen_semantics_c(instructions
, cache_rules
, file
, code
);
535 gen_idecode_h(file
, instructions
, cache_rules
);
537 gen_idecode_c(file
, instructions
, cache_rules
);
541 gen_model_h(instructions
, file
);
543 gen_model_c(instructions
, file
);
547 gen_itable_h(instructions
, file
);
549 gen_itable_c(instructions
, file
);
553 gen_support_h(instructions
, file
);
555 gen_support_c(instructions
, file
);
559 gen_icache_h(instructions
, file
, code
);
561 gen_icache_c(instructions
, cache_rules
, file
, code
);
564 lf_print__file_finish(file
);
568 real_file_name
= NULL
;
571 ERROR("unknown option\n");