1 /* This file is part of the program psim.
3 Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au>
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.
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, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32 #include "ld-decode.h"
38 #include "gen-model.h"
39 #include "gen-icache.h"
40 #include "gen-itable.h"
41 #include "gen-idecode.h"
42 #include "gen-semantics.h"
43 #include "gen-support.h"
46 int insn_bit_size
= max_insn_bit_size
;
48 igen_code code
= generate_calls
;
50 int generate_expanded_instructions
;
51 int icache_size
= 1024;
54 /****************************************************************/
57 print_insn_bits(lf
*file
, insn_bits
*bits
)
62 nr
+= print_insn_bits(file
, bits
->last
);
63 nr
+= lf_putchr(file
, '_');
64 nr
+= lf_putstr(file
, bits
->field
->val_string
);
65 if (bits
->opcode
->is_boolean
&& bits
->value
== 0)
66 nr
+= lf_putint(file
, bits
->opcode
->boolean_constant
);
67 else if (!bits
->opcode
->is_boolean
) {
68 if (bits
->opcode
->last
< bits
->field
->last
)
69 nr
+= lf_putint(file
, bits
->value
<< (bits
->field
->last
- bits
->opcode
->last
));
71 nr
+= lf_putint(file
, bits
->value
);
77 print_function_name(lf
*file
,
79 insn_bits
*expanded_bits
,
80 lf_function_name_prefixes prefix
)
85 case function_name_prefix_semantics
:
86 nr
+= lf_putstr(file
, "semantic_");
88 case function_name_prefix_idecode
:
89 nr
+= lf_printf(file
, "idecode_");
91 case function_name_prefix_itable
:
92 nr
+= lf_putstr(file
, "itable_");
94 case function_name_prefix_icache
:
95 nr
+= lf_putstr(file
, "icache_");
101 /* the function name */
112 nr
+= lf_putchr(file
, '_');
115 nr
+= lf_putchr(file
, *pos
);
122 if (generate_expanded_instructions
)
123 nr
+= print_insn_bits(file
, expanded_bits
);
130 print_my_defines(lf
*file
,
131 insn_bits
*expanded_bits
,
132 table_entry
*file_entry
)
134 /* #define MY_INDEX xxxxx */
135 lf_indent_suppress(file
);
136 lf_printf(file
, "#undef MY_INDEX\n");
137 lf_indent_suppress(file
);
138 lf_printf(file
, "#define MY_INDEX ");
139 print_function_name(file
,
140 file_entry
->fields
[insn_name
],
142 function_name_prefix_itable
);
143 lf_printf(file
, "\n");
144 /* #define MY_PREFIX xxxxxx */
145 lf_indent_suppress(file
);
146 lf_printf(file
, "#undef MY_PREFIX\n");
147 lf_indent_suppress(file
);
148 lf_printf(file
, "#define MY_PREFIX ");
149 print_function_name(file
,
150 file_entry
->fields
[insn_name
],
152 function_name_prefix_none
);
153 lf_printf(file
, "\n");
158 print_itrace(lf
*file
,
159 table_entry
*file_entry
,
162 lf_print__external_reference(file
, file_entry
->line_nr
, file_entry
->file_name
);
163 lf_printf(file
, "ITRACE(trace_%s, (\"%s %s\\n\"));\n",
164 (idecode
? "idecode" : "semantics"),
165 (idecode
? "idecode" : "semantics"),
166 file_entry
->fields
[insn_name
]);
167 lf_print__internal_reference(file
);
171 /****************************************************************/
175 gen_semantics_h(insn_table
*table
,
179 lf_printf(file
, "typedef %s idecode_semantic\n(%s);\n",
180 SEMANTIC_FUNCTION_TYPE
,
181 SEMANTIC_FUNCTION_FORMAL
);
182 lf_printf(file
, "\n");
183 if ((code
& generate_calls
)) {
184 lf_printf(file
, "extern int option_mpc860c0;\n");
185 lf_printf(file
, "#define PAGE_SIZE 0x1000\n");
186 lf_printf(file
, "\n");
187 lf_printf(file
, "EXTERN_SEMANTICS(void)\n");
188 lf_printf(file
, "semantic_init(device* root);\n");
189 lf_printf(file
, "\n");
190 if (generate_expanded_instructions
)
191 insn_table_traverse_tree(table
,
195 print_semantic_declaration
, /* leaf */
199 insn_table_traverse_insn(table
,
201 print_semantic_declaration
);
205 lf_print__this_file_is_empty(file
);
211 gen_semantics_c(insn_table
*table
,
212 cache_table
*cache_rules
,
216 if ((code
& generate_calls
)) {
217 lf_printf(file
, "\n");
218 lf_printf(file
, "#include \"cpu.h\"\n");
219 lf_printf(file
, "#include \"idecode.h\"\n");
220 lf_printf(file
, "#include \"semantics.h\"\n");
221 lf_printf(file
, "#include \"support.h\"\n");
222 lf_printf(file
, "\n");
223 lf_printf(file
, "int option_mpc860c0 = 0;\n");
224 lf_printf(file
, "\n");
225 lf_printf(file
, "EXTERN_SEMANTICS(void)\n");
226 lf_printf(file
, "semantic_init(device* root)\n");
227 lf_printf(file
, "{\n");
228 lf_printf(file
, " option_mpc860c0 = 0;\n");
229 lf_printf(file
, " if (tree_find_property(root, \"/options/mpc860c0\"))\n");
230 lf_printf(file
, " option_mpc860c0 = tree_find_integer_property(root, \"/options/mpc860c0\");\n");
231 lf_printf(file
, " option_mpc860c0 *= 4; /* convert word count to byte count */\n");
232 lf_printf(file
, "}\n");
233 lf_printf(file
, "\n");
234 if (generate_expanded_instructions
)
235 insn_table_traverse_tree(table
,
239 print_semantic_definition
, /* leaf */
243 insn_table_traverse_insn(table
,
245 print_semantic_definition
);
249 lf_print__this_file_is_empty(file
);
254 /****************************************************************/
258 gen_icache_h(insn_table
*table
,
262 lf_printf(file
, "typedef %s idecode_icache\n(%s);\n",
263 ICACHE_FUNCTION_TYPE
,
264 ICACHE_FUNCTION_FORMAL
);
265 lf_printf(file
, "\n");
266 if ((code
& generate_calls
)
267 && (code
& generate_with_icache
)) {
268 insn_table_traverse_function(table
,
270 print_icache_internal_function_declaration
);
271 if (generate_expanded_instructions
)
272 insn_table_traverse_tree(table
,
276 print_icache_declaration
, /* leaf */
280 insn_table_traverse_insn(table
,
282 print_icache_declaration
);
286 lf_print__this_file_is_empty(file
);
291 gen_icache_c(insn_table
*table
,
292 cache_table
*cache_rules
,
296 /* output `internal' invalid/floating-point unavailable functions
298 if ((code
& generate_calls
)
299 && (code
& generate_with_icache
)) {
300 lf_printf(file
, "\n");
301 lf_printf(file
, "#include \"cpu.h\"\n");
302 lf_printf(file
, "#include \"idecode.h\"\n");
303 lf_printf(file
, "#include \"semantics.h\"\n");
304 lf_printf(file
, "#include \"icache.h\"\n");
305 lf_printf(file
, "#include \"support.h\"\n");
306 lf_printf(file
, "\n");
307 insn_table_traverse_function(table
,
309 print_icache_internal_function_definition
);
310 lf_printf(file
, "\n");
311 if (generate_expanded_instructions
)
312 insn_table_traverse_tree(table
,
316 print_icache_definition
, /* leaf */
320 insn_table_traverse_insn(table
,
322 print_icache_definition
);
326 lf_print__this_file_is_empty(file
);
331 /****************************************************************/
339 cache_table
*cache_rules
= NULL
;
340 lf_file_references file_references
= lf_include_references
;
341 decode_table
*decode_rules
= NULL
;
342 filter
*filters
= NULL
;
343 insn_table
*instructions
= NULL
;
344 char *real_file_name
= NULL
;
350 printf(" igen <config-opts> ... <input-opts>... <output-opts>...\n");
351 printf("Config options:\n");
352 printf(" -F <filter-out-flag> eg -F 64 to skip 64bit instructions\n");
353 printf(" -E Expand (duplicate) semantic functions\n");
354 printf(" -I <icache-size> Generate cracking cache version\n");
355 printf(" -C Include semantics in cache functions\n");
356 printf(" -S Include insn (instruction) in icache\n");
357 printf(" -R Use defines to reference cache vars\n");
358 printf(" -L Supress line numbering in output files\n");
359 printf(" -B <bit-size> Set the number of bits in an instruction\n");
360 printf(" -H <high-bit> Set the nr of the high (msb bit)\n");
361 printf(" -N <nr-cpus> Specify the max number of cpus the simulation will support\n");
362 printf(" -J Use jumps instead of function calls\n");
363 printf(" -T <mechanism> Override the mechanism used to decode an instruction\n");
364 printf(" using <mechanism> instead of what was specified in the\n");
365 printf(" decode-rules input file\n");
367 printf("Input options (ucase version also dumps loaded table):\n");
368 printf(" -o <decode-rules>\n");
369 printf(" -k <cache-rules>\n");
370 printf(" -i <instruction-table>\n");
372 printf("Output options:\n");
373 printf(" -n <real-name> Specify the real name of for the next output file\n");
374 printf(" -h Generate header file\n");
375 printf(" -c <output-file> output icache\n");
376 printf(" -d <output-file> output idecode\n");
377 printf(" -m <output-file> output model\n");
378 printf(" -s <output-file> output schematic\n");
379 printf(" -t <output-file> output itable\n");
380 printf(" -f <output-file> output support functions\n");
383 while ((ch
= getopt(argc
, argv
,
384 "F:EI:RSLJT:CB:H:N:o:k:i:n:hc:d:m:s:t:f:"))
386 fprintf(stderr
, "\t-%c %s\n", ch
, (optarg
? optarg
: ""));
389 code
|= generate_with_icache
;
390 code
|= generate_with_semantic_icache
;
393 code
|= generate_with_icache
;
394 code
|= generate_with_insn_in_icache
;
397 file_references
= lf_omit_references
;
400 generate_expanded_instructions
= 1;
403 icache_size
= a2i(optarg
);
404 code
|= generate_with_icache
;
407 generate_smp
= a2i(optarg
);
410 code
|= generate_with_direct_access
;
413 insn_bit_size
= a2i(optarg
);
414 ASSERT(insn_bit_size
> 0 && insn_bit_size
<= max_insn_bit_size
415 && (hi_bit_nr
== insn_bit_size
-1 || hi_bit_nr
== 0));
418 hi_bit_nr
= a2i(optarg
);
419 ASSERT(hi_bit_nr
== insn_bit_size
-1 || hi_bit_nr
== 0);
422 filters
= new_filter(optarg
, filters
);
425 code
&= ~generate_calls
;
426 code
|= generate_jumps
;
429 force_decode_gen_type(optarg
);
432 if (decode_rules
== NULL
|| cache_rules
== NULL
) {
433 fprintf(stderr
, "Must specify decode and cache tables\n");
436 instructions
= load_insn_table(optarg
, decode_rules
, filters
);
437 fprintf(stderr
, "\texpanding ...\n");
438 insn_table_expand_insns(instructions
);
441 decode_rules
= load_decode_table(optarg
, hi_bit_nr
);
444 cache_rules
= load_cache_table(optarg
, hi_bit_nr
);
447 real_file_name
= strdup(optarg
);
459 lf
*file
= lf_open(optarg
, real_file_name
, file_references
,
460 (is_header
? lf_is_h
: lf_is_c
),
462 lf_print__file_start(file
);
463 ASSERT(instructions
!= NULL
);
467 gen_semantics_h(instructions
, file
, code
);
469 gen_semantics_c(instructions
, cache_rules
, file
, code
);
473 gen_idecode_h(file
, instructions
, cache_rules
);
475 gen_idecode_c(file
, instructions
, cache_rules
);
479 gen_model_h(instructions
, file
);
481 gen_model_c(instructions
, file
);
485 gen_itable_h(instructions
, file
);
487 gen_itable_c(instructions
, file
);
491 gen_support_h(instructions
, file
);
493 gen_support_c(instructions
, file
);
497 gen_icache_h(instructions
, file
, code
);
499 gen_icache_c(instructions
, cache_rules
, file
, code
);
502 lf_print__file_finish(file
);
506 real_file_name
= NULL
;
509 error("unknown option\n");