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.
29 #include "ld-decode.h"
33 #include "gen-semantics.h"
34 #include "gen-support.h"
37 print_support_function_name (lf
*file
,
38 function_entry
*function
,
39 int is_function_definition
)
41 if (function
->is_internal
)
43 lf_print__function_type_function (file
, print_semantic_function_type
,
45 (is_function_definition
? "\n" : " "));
46 print_function_name (file
,
51 function_name_prefix_semantics
);
52 lf_printf (file
, "\n(");
54 print_semantic_function_formal (file
, 0);
56 lf_printf (file
, ")");
57 if (!is_function_definition
)
58 lf_printf (file
, ";");
59 lf_printf (file
, "\n");
63 /* map the name onto a globally valid name */
64 if (!is_function_definition
65 && strcmp (options
.prefix
.global
.name
, "") != 0)
67 lf_indent_suppress (file
);
68 lf_printf (file
, "#define %s %s%s\n",
70 options
.prefix
.global
.name
,
73 lf_print__function_type (file
,
76 (is_function_definition
? "\n" : " "));
77 lf_printf (file
, "%s%s\n(",
78 options
.prefix
.global
.name
,
82 "sim_cpu *cpu, %sinstruction_address cia, int MY_INDEX",
83 options
.prefix
.global
.name
);
86 "SIM_DESC sd, %sinstruction_address cia, int MY_INDEX",
87 options
.prefix
.global
.name
);
88 if (function
->param
!= NULL
89 && strlen (function
->param
) > 0)
90 lf_printf (file
, ", %s", function
->param
);
91 lf_printf (file
, ")%s", (is_function_definition
? "\n" : ";\n"));
97 support_h_function (lf
*file
,
98 function_entry
*function
,
101 ASSERT (function
->type
!= NULL
);
102 print_support_function_name (file
,
104 0/*!is_definition*/);
105 lf_printf(file
, "\n");
110 gen_support_h (lf
*file
,
113 /* output the definition of `SD_'*/
116 lf_printf(file
, "#define _SD cpu, cia, MY_INDEX /* depreciated */\n");
117 lf_printf(file
, "#define SD_ cpu, cia, MY_INDEX\n");
118 lf_printf(file
, "#define SD CPU_STATE (cpu)\n");
119 lf_printf(file
, "#define CPU cpu\n");
123 lf_printf(file
, "#define _SD sd, cia, MY_INDEX /* depreciated */\n");
124 lf_printf(file
, "#define SD_ sd, cia, MY_INDEX\n");
125 lf_printf(file
, "#define SD sd\n");
126 lf_printf(file
, "#define CPU (STATE_CPU (sd, 0))\n");
128 if (options
.gen
.delayed_branch
)
130 lf_printf(file
, "#define CIA cia.ip\n");
131 lf_printf(file
, "/* #define NIA nia.dp -- do not define, ambigious */\n");
135 lf_printf(file
, "#define CIA cia\n");
136 lf_printf(file
, "#define NIA nia\n");
138 lf_printf(file
, "\n");
139 /* output a declaration for all functions */
140 function_entry_traverse (file
, table
->functions
,
143 lf_printf(file
, "\n");
144 lf_printf(file
, "#if defined(SUPPORT_INLINE)\n");
145 lf_printf(file
, "# if ((SUPPORT_INLINE & INCLUDE_MODULE)\\\n");
146 lf_printf(file
, " && (SUPPORT_INLINE & INCLUDED_BY_MODULE))\n");
147 lf_printf(file
, "# include \"%ssupport.c\"\n", options
.prefix
.global
.name
);
148 lf_printf(file
, "# endif\n");
149 lf_printf(file
, "#endif\n");
153 support_c_function (lf
*file
,
154 function_entry
*function
,
157 ASSERT (function
->type
!= NULL
);
158 print_support_function_name (file
,
160 1/*!is_definition*/);
161 lf_printf (file
, "{\n");
162 lf_indent (file
, +2);
163 if (function
->code
== NULL
)
164 error (function
->line
,
165 "Function without body (or null statement)");
166 lf_print__line_ref (file
, function
->code
->line
);
167 table_print_code (file
, function
->code
);
168 if (function
->is_internal
)
170 lf_printf (file
, "sim_engine_abort (SD, CPU, cia, \"Internal function must longjump\\n\");\n");
171 lf_printf (file
, "return cia;\n");
173 lf_indent (file
, -2);
174 lf_printf (file
, "}\n");
175 lf_print__internal_ref (file
);
176 lf_printf (file
, "\n");
181 gen_support_c (lf
*file
,
184 lf_printf(file
, "#include \"sim-main.h\"\n");
185 lf_printf(file
, "#include \"%sidecode.h\"\n", options
.prefix
.idecode
.name
);
186 lf_printf(file
, "#include \"%sitable.h\"\n", options
.prefix
.itable
.name
);
187 lf_printf(file
, "#include \"%ssupport.h\"\n", options
.prefix
.support
.name
);
188 lf_printf(file
, "\n");
190 /* output a definition (c-code) for all functions */
191 function_entry_traverse (file
, table
->functions
,