1 /* This file is part of the program psim.
3 Copyright (C) 1994-1995, 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.
29 #include "ld-decode.h"
32 #include "gen-model.h"
40 model_c_or_h_data(insn_table
*table
,
45 table_entry_print_cpp_line_nr(file
, data
);
46 lf_print__c_code(file
, data
->annex
);
47 lf_print__internal_reference(file
);
48 lf_printf(file
, "\n");
53 model_c_or_h_function(insn_table
*entry
,
55 table_entry
*function
,
58 if (function
->fields
[function_type
] == NULL
59 || function
->fields
[function_type
][0] == '\0') {
60 error("Model function type not specified for %s", function
->fields
[function_name
]);
62 lf_printf(file
, "\n");
63 lf_print_function_type(file
, function
->fields
[function_type
], prefix
, " ");
64 lf_printf(file
, "%s\n(%s);\n",
65 function
->fields
[function_name
],
66 function
->fields
[function_param
]);
67 lf_printf(file
, "\n");
71 gen_model_h(insn_table
*table
, lf
*file
)
77 int model_create_p
= 0;
80 int model_mon_info_p
= 0;
81 int model_mon_info_free_p
= 0;
83 for(macro
= model_macros
; macro
; macro
= macro
->next
) {
84 model_c_or_h_data(table
, file
, macro
->file_entry
);
87 lf_printf(file
, "typedef enum _model_enum {\n");
88 lf_printf(file
, " MODEL_NONE,\n");
89 for (model_ptr
= models
; model_ptr
; model_ptr
= model_ptr
->next
) {
90 lf_printf(file
, " MODEL_%s,\n", model_ptr
->name
);
92 lf_printf(file
, " nr_models\n");
93 lf_printf(file
, "} model_enum;\n");
94 lf_printf(file
, "\n");
96 lf_printf(file
, "#define DEFAULT_MODEL MODEL_%s\n", (models
) ? models
->name
: "NONE");
97 lf_printf(file
, "\n");
99 lf_printf(file
, "typedef struct _model_data model_data;\n");
100 lf_printf(file
, "typedef struct _model_time model_time;\n");
101 lf_printf(file
, "\n");
103 lf_printf(file
, "extern model_enum current_model;\n");
104 lf_printf(file
, "extern const char *model_name[ (int)nr_models ];\n");
105 lf_printf(file
, "extern const char *const *const model_func_unit_name[ (int)nr_models ];\n");
106 lf_printf(file
, "extern const model_time *const model_time_mapping[ (int)nr_models ];\n");
107 lf_printf(file
, "\n");
109 for(insn_ptr
= model_functions
; insn_ptr
; insn_ptr
= insn_ptr
->next
) {
110 model_c_or_h_function(table
, file
, insn_ptr
->file_entry
, "INLINE_MODEL");
111 name
= insn_ptr
->file_entry
->fields
[function_name
];
112 if (strcmp (name
, "model_create") == 0)
114 else if (strcmp (name
, "model_init") == 0)
116 else if (strcmp (name
, "model_halt") == 0)
118 else if (strcmp (name
, "model_mon_info") == 0)
119 model_mon_info_p
= 1;
120 else if (strcmp (name
, "model_mon_info_free") == 0)
121 model_mon_info_free_p
= 1;
124 if (!model_create_p
) {
125 lf_print_function_type(file
, "model_data *", "INLINE_MODEL", " ");
126 lf_printf(file
, "model_create\n");
127 lf_printf(file
, "(cpu *processor);\n");
128 lf_printf(file
, "\n");
132 lf_print_function_type(file
, "void", "INLINE_MODEL", " ");
133 lf_printf(file
, "model_init\n");
134 lf_printf(file
, "(model_data *model_ptr);\n");
135 lf_printf(file
, "\n");
139 lf_print_function_type(file
, "void", "INLINE_MODEL", " ");
140 lf_printf(file
, "model_halt\n");
141 lf_printf(file
, "(model_data *model_ptr);\n");
142 lf_printf(file
, "\n");
145 if (!model_mon_info_p
) {
146 lf_print_function_type(file
, "model_print *", "INLINE_MODEL", " ");
147 lf_printf(file
, "model_mon_info\n");
148 lf_printf(file
, "(model_data *model_ptr);\n");
149 lf_printf(file
, "\n");
152 if (!model_mon_info_free_p
) {
153 lf_print_function_type(file
, "void", "INLINE_MODEL", " ");
154 lf_printf(file
, "model_mon_info_free\n");
155 lf_printf(file
, "(model_data *model_ptr,\n");
156 lf_printf(file
, " model_print *info_ptr);\n");
157 lf_printf(file
, "\n");
160 lf_print_function_type(file
, "void", "INLINE_MODEL", " ");
161 lf_printf(file
, "model_set\n");
162 lf_printf(file
, "(const char *name);\n");
165 /****************************************************************/
167 typedef struct _model_c_passed_data model_c_passed_data
;
168 struct _model_c_passed_data
{
174 model_c_insn(insn_table
*entry
,
180 model_c_passed_data
*data_ptr
= (model_c_passed_data
*)data
;
181 lf
*file
= data_ptr
->file
;
182 char *current_name
= data_ptr
->model_ptr
->printable_name
;
183 table_model_entry
*model_ptr
= instruction
->file_entry
->model_first
;
186 if (model_ptr
->fields
[insn_model_name
] == current_name
) {
187 lf_printf(file
, " { %-*s }, /* %s */\n",
188 max_model_fields_len
,
189 model_ptr
->fields
[insn_model_fields
],
190 instruction
->file_entry
->fields
[insn_name
]);
194 model_ptr
= model_ptr
->next
;
197 lf_printf(file
, " { %-*s }, /* %s */\n",
198 max_model_fields_len
,
199 data_ptr
->model_ptr
->insn_default
,
200 instruction
->file_entry
->fields
[insn_name
]);
204 model_c_function(insn_table
*table
,
206 table_entry
*function
,
209 if (function
->fields
[function_type
] == NULL
210 || function
->fields
[function_type
][0] == '\0') {
211 error("Model function return type not specified for %s", function
->fields
[function_name
]);
214 lf_printf(file
, "\n");
215 lf_print_function_type(file
, function
->fields
[function_type
], prefix
, "\n");
216 lf_printf(file
, "%s(%s)\n",
217 function
->fields
[function_name
],
218 function
->fields
[function_param
]);
220 table_entry_print_cpp_line_nr(file
, function
);
221 lf_printf(file
, "{\n");
222 if (function
->annex
) {
224 lf_print__c_code(file
, function
->annex
);
227 lf_printf(file
, "}\n");
228 lf_print__internal_reference(file
);
229 lf_printf(file
, "\n");
233 gen_model_c(insn_table
*table
, lf
*file
)
238 int model_create_p
= 0;
239 int model_init_p
= 0;
240 int model_halt_p
= 0;
241 int model_mon_info_p
= 0;
242 int model_mon_info_free_p
= 0;
244 lf_printf(file
, "\n");
245 lf_printf(file
, "#include \"cpu.h\"\n");
246 lf_printf(file
, "#include \"mon.h\"\n");
247 lf_printf(file
, "\n");
248 lf_printf(file
, "#ifdef HAVE_STDLIB_H\n");
249 lf_printf(file
, "#include <stdlib.h>\n");
250 lf_printf(file
, "#endif\n");
251 lf_printf(file
, "\n");
253 for(insn_ptr
= model_data
; insn_ptr
; insn_ptr
= insn_ptr
->next
) {
254 model_c_or_h_data(table
, file
, insn_ptr
->file_entry
);
257 for(insn_ptr
= model_static
; insn_ptr
; insn_ptr
= insn_ptr
->next
) {
258 model_c_or_h_function(table
, file
, insn_ptr
->file_entry
, "/*h*/STATIC");
261 for(insn_ptr
= model_internal
; insn_ptr
; insn_ptr
= insn_ptr
->next
) {
262 model_c_or_h_function(table
, file
, insn_ptr
->file_entry
, "STATIC_INLINE_MODEL");
265 for(insn_ptr
= model_static
; insn_ptr
; insn_ptr
= insn_ptr
->next
) {
266 model_c_function(table
, file
, insn_ptr
->file_entry
, "/*c*/STATIC");
269 for(insn_ptr
= model_internal
; insn_ptr
; insn_ptr
= insn_ptr
->next
) {
270 model_c_function(table
, file
, insn_ptr
->file_entry
, "STATIC_INLINE_MODEL");
273 for(insn_ptr
= model_functions
; insn_ptr
; insn_ptr
= insn_ptr
->next
) {
274 model_c_function(table
, file
, insn_ptr
->file_entry
, "INLINE_MODEL");
275 name
= insn_ptr
->file_entry
->fields
[function_name
];
276 if (strcmp (name
, "model_create") == 0)
278 else if (strcmp (name
, "model_init") == 0)
280 else if (strcmp (name
, "model_halt") == 0)
282 else if (strcmp (name
, "model_mon_info") == 0)
283 model_mon_info_p
= 1;
284 else if (strcmp (name
, "model_mon_info_free") == 0)
285 model_mon_info_free_p
= 1;
288 if (!model_create_p
) {
289 lf_print_function_type(file
, "model_data *", "INLINE_MODEL", "\n");
290 lf_printf(file
, "model_create(cpu *processor)\n");
291 lf_printf(file
, "{\n");
292 lf_printf(file
, " return (model_data *)0;\n");
293 lf_printf(file
, "}\n");
294 lf_printf(file
, "\n");
298 lf_print_function_type(file
, "void", "INLINE_MODEL", "\n");
299 lf_printf(file
, "model_init(model_data *model_ptr)\n");
300 lf_printf(file
, "{\n");
301 lf_printf(file
, "}\n");
302 lf_printf(file
, "\n");
306 lf_print_function_type(file
, "void", "INLINE_MODEL", "\n");
307 lf_printf(file
, "model_halt(model_data *model_ptr)\n");
308 lf_printf(file
, "{\n");
309 lf_printf(file
, "}\n");
310 lf_printf(file
, "\n");
313 if (!model_mon_info_p
) {
314 lf_print_function_type(file
, "model_print *", "INLINE_MODEL", "\n");
315 lf_printf(file
, "model_mon_info(model_data *model_ptr)\n");
316 lf_printf(file
, "{\n");
317 lf_printf(file
, " return (model_print *)0;\n");
318 lf_printf(file
, "}\n");
319 lf_printf(file
, "\n");
322 if (!model_mon_info_free_p
) {
323 lf_print_function_type(file
, "void", "INLINE_MODEL", "\n");
324 lf_printf(file
, "model_mon_info_free(model_data *model_ptr,\n");
325 lf_printf(file
, " model_print *info_ptr)\n");
326 lf_printf(file
, "{\n");
327 lf_printf(file
, "}\n");
328 lf_printf(file
, "\n");
331 lf_printf(file
, "/* Insn functional unit info */\n");
332 for(model_ptr
= models
; model_ptr
; model_ptr
= model_ptr
->next
) {
333 model_c_passed_data data
;
335 lf_printf(file
, "static const model_time model_time_%s[] = {\n", model_ptr
->name
);
337 data
.model_ptr
= model_ptr
;
338 insn_table_traverse_insn(table
,
342 lf_printf(file
, "};\n");
343 lf_printf(file
, "\n");
344 lf_printf(file
, "\f\n");
347 lf_printf(file
, "#ifndef _INLINE_C_\n");
348 lf_printf(file
, "const model_time *const model_time_mapping[ (int)nr_models ] = {\n");
349 lf_printf(file
, " (const model_time *const)0,\n");
350 for(model_ptr
= models
; model_ptr
; model_ptr
= model_ptr
->next
) {
351 lf_printf(file
, " model_time_%s,\n", model_ptr
->name
);
353 lf_printf(file
, "};\n");
354 lf_printf(file
, "#endif\n");
355 lf_printf(file
, "\n");
357 lf_printf(file
, "\f\n");
358 lf_printf(file
, "/* map model enumeration into printable string */\n");
359 lf_printf(file
, "#ifndef _INLINE_C_\n");
360 lf_printf(file
, "const char *model_name[ (int)nr_models ] = {\n");
361 lf_printf(file
, " \"NONE\",\n");
362 for (model_ptr
= models
; model_ptr
; model_ptr
= model_ptr
->next
) {
363 lf_printf(file
, " \"%s\",\n", model_ptr
->printable_name
);
365 lf_printf(file
, "};\n");
366 lf_printf(file
, "#endif\n");
367 lf_printf(file
, "\n");
369 lf_print_function_type(file
, "void", "INLINE_MODEL", "\n");
370 lf_printf(file
, "model_set(const char *name)\n");
371 lf_printf(file
, "{\n");
373 lf_printf(file
, " model_enum model;\n");
374 lf_printf(file
, " for(model = MODEL_%s; model < nr_models; model++) {\n", models
->name
);
375 lf_printf(file
, " if(strcmp(name, model_name[model]) == 0) {\n");
376 lf_printf(file
, " current_model = model;\n");
377 lf_printf(file
, " return;\n");
378 lf_printf(file
, " }\n");
379 lf_printf(file
, " }\n");
380 lf_printf(file
, "\n");
381 lf_printf(file
, " error(\"Unknown model '%%s', Models which are known are:%%s\\n\",\n");
382 lf_printf(file
, " name,\n");
383 lf_printf(file
, " \"");
384 for(model_ptr
= models
; model_ptr
; model_ptr
= model_ptr
->next
) {
385 lf_printf(file
, "\\n\\t%s", model_ptr
->printable_name
);
387 lf_printf(file
, "\");\n");
389 lf_printf(file
, " error(\"No models are currently known about\");\n");
392 lf_printf(file
, "}\n");