]> Git Repo - binutils.git/blob - sim/mcore/ChangeLog
sim: unify SIM_CPU definition
[binutils.git] / sim / mcore / ChangeLog
1 2015-04-18  Mike Frysinger  <[email protected]>
2
3         * sim-main.h (SIM_CPU): Delete.
4
5 2015-04-18  Mike Frysinger  <[email protected]>
6
7         * sim-main.h (sim_cia): Delete.
8
9 2015-04-17  Mike Frysinger  <[email protected]>
10
11         * interp.c (set_initial_gprs): Change CIA_SET to CPU_PC_SET.
12         (sim_resume): Change CIA_GET to CPU_PC_GET and CIA_SET to
13         CPU_PC_SET.
14         (sim_create_inferior): Change CIA_SET to CPU_PC_SET.
15         * sim-main.h (CIA_GET, CIA_SET): Delete.
16
17 2015-04-16  Mike Frysinger  <[email protected]>
18
19         * interp.c (mcore_pc_get, mcore_pc_set): New functions.
20         (sim_open): Call CPU_PC_FETCH & CPU_PC_STORE for all cpus.
21
22 2015-04-15  Mike Frysinger  <[email protected]>
23
24         * Makefile.in (SIM_OBJS): Delete sim-cpu.o.
25         * sim-main.h (STATE_CPU): Delete.
26
27 2015-04-13  Mike Frysinger  <[email protected]>
28
29         * configure: Regenerate.
30
31 2015-04-06  Mike Frysinger  <[email protected]>
32
33         * Makefile.in (SIM_OBJS): Delete sim-engine.o.
34
35 2015-03-31  Mike Frysinger  <[email protected]>
36
37         * config.in, configure: Regenerate.
38
39 2015-03-29  Mike Frysinger  <[email protected]>
40
41         * interp.c (struct aout, LONG, SHORT): Delete.
42
43 2015-03-29  Mike Frysinger  <[email protected]>
44
45         * Makefile.in (SIM_RUN_OBJS, SIM_EXTRA_CFLAGS, SIM_EXTRA_LIBS): Delete.
46         (SIM_OBJS): Change to $(SIM_NEW_COMMON_OBJS).
47         * interp.c: Include sim-main.h, sim-base.h, and sim-options.h.
48         (word, uword): Move to sim-main.h.
49         (callback, sim_kind, myname): Delete.
50         (struct mcore_regset): Move pc to sim_cpu.
51         (memcycles, sim_size): Mark static.
52         (set_initial_gprs): Take a sim_cpu arg.  Set pc via CIA_SET.
53         (handle_trap1): Take a SIM_DESC arg.  Get callback from it.
54         (process_stub): Take a SIM_DESC arg.  Pass it to handle_trap1
55         (util): Take a SIM_DESC arg.  Pass it to process_stub.
56         (sim_resume): Get/set pc via CIA_GET/CIA_SET.  Pass sd to handle_trap1
57         and util.
58         (sim_trace, sim_stop, sim_load, sim_set_callbacks): Delete.
59         (sim_info): Get callback from SIM_DESC.
60         (free_state): New cleanup function.
61         (sim_open): Rewrite to use new common logic.
62         (sim_create_inferior): Get sim_cpu from sd.  Pass to set_initial_gprs
63         and set pc via CIA_SET.
64         * sim-main.h: New file.
65
66 2015-03-29  Mike Frysinger  <[email protected]>
67
68         * configure.ac: Call SIM_AC_OPTION_ENDIAN, SIM_AC_OPTION_ALIGNMENT,
69         SIM_AC_OPTION_HOSTENDIAN, SIM_AC_OPTION_ENVIRONMENT, and
70         SIM_AC_OPTION_INLINE.
71         * config.in, configure: Regenerate.
72
73 2015-03-29  Mike Frysinger  <[email protected]>
74
75         * interp.c (heap_ptr, int_sbrk): Delete.
76         (handle_trap1): Change case 69 (sbrk) to always return -1.
77         (sim_load): Delete bss checks and heap_ptr setup.
78
79 2015-03-16  Mike Frysinger  <[email protected]>
80
81         * interp.c: Strip trailing whitespace.
82
83 2015-03-16  Mike Frysinger  <[email protected]>
84
85         * configure.ac: Call SIM_AC_OPTION_WARNINGS.
86         * confingure: Regenerate.
87         * interp.c (mcore_extract_unsigned_integer): Make static and update
88         prototype.  Fix up printf string.
89         (mcore_store_unsigned_integer): Make static and update prototype.
90         (int_sbrk): Likewise.
91         (wbat, wlat, what, rbat, rlat, rhat): Delete INLINE and update
92         prototype.
93         (SEXTB, SEXTW, IOMEM): Delete.
94         (sim_size): Update prototype.  Fix up printf string.
95         (init_pointers): Update prototype.
96         (set_initial_gprs): Update prototype.  Fix up printf string.
97         (log_open, log_close, is_opened, handle_trap1, process_stub, util,
98         iu_carry): Update prototype.
99         (sim_resume): Update prototype.  Change addr to a word.
100         (sim_write, sim_read, sim_store_register, sim_fetch_register,
101         sim_trace, sim_stop_reason, sim_stop, sim_info, sim_open,
102         sim_close, sim_load, sim_create_inferior, sim_do_command,
103         sim_set_callbacks): Update prototype.
104
105 2015-03-16  Mike Frysinger  <[email protected]>
106
107         * config.in, configure: Regenerate.
108
109 2015-03-14  Mike Frysinger  <[email protected]>
110
111         * Makefile.in (SIM_EXTRA_CLEAN): Delete.
112         (interp.o, mcore-clean): Delete rules.
113
114 2015-03-14  Mike Frysinger  <[email protected]>
115
116         * Makefile.in (SIM_EXTRA_CFLAGS): Set to
117         -DSIM_USE_DEPRECATED_RUN_FRONTEND.
118         (SIM_RUN_OBJS): Set to run.o.
119
120 2015-03-14  Mike Frysinger  <[email protected]>
121
122         * configure.ac (AC_CHECK_HEADERS): Delete.
123         * aclocal.m4, configure: Regenerate.
124
125 2015-02-20  Mike Frysinger  <[email protected]>
126
127         * interp.c: Delete sysdep.h and netinet/in.h includes.
128         Include stdlib.h and string.h.
129         * sysdep.h: Delete.
130
131 2015-02-19  Mike Frysinger  <[email protected]>
132
133         * interp.c (sim_kill): Delete unused func.
134
135 2015-02-11  Chen Gang <[email protected]>
136
137         * interp.c: Include "unistd.h".
138
139 2015-02-02  Chen Gang  <[email protected]>
140
141         * interp.c (sim_do_command): Call freeargv() before return.
142
143 2014-08-19  Alan Modra  <[email protected]>
144
145         * configure: Regenerate.
146
147 2014-08-15  Roland McGrath  <[email protected]>
148
149         * configure: Regenerate.
150         * config.in: Regenerate.
151
152 2014-03-10  Mike Frysinger  <[email protected]>
153
154         * interp.c (sim_do_command): Add const to cmd.
155
156 2014-03-05  Mike Frysinger  <[email protected]>
157
158         * interp.c (sim_load): Add const to prog.
159
160 2014-02-17  Mike Frysinger  <[email protected]>
161
162         PR gdb/16450
163         * interp.c (interrupt): Delete.
164         (sim_resume): Delete signal(SIGINT) handling.
165
166 2013-09-23  Alan Modra  <[email protected]>
167
168         * configure: Regenerate.
169
170 2013-06-03  Mike Frysinger  <[email protected]>
171
172         * aclocal.m4, configure: Regenerate.
173
174 2012-06-15  Joel Brobecker  <[email protected]>
175
176         * config.in, configure: Regenerate.
177
178 2012-05-20  Hans-Peter Nilsson  <[email protected]>
179
180         PR 14072
181         * interp.c: Include config.h before system header files.
182
183 2012-03-24  Mike Frysinger  <[email protected]>
184
185         * aclocal.m4, config.in, configure: Regenerate.
186
187 2011-12-03  Mike Frysinger  <[email protected]>
188
189         * aclocal.m4: New file.
190         * configure: Regenerate.
191
192 2011-10-17  Mike Frysinger  <[email protected]>
193
194         * configure.ac: Change include to common/acinclude.m4.
195
196 2011-10-17  Mike Frysinger  <[email protected]>
197
198         * configure.ac: Change AC_PREREQ to 2.64.  Delete AC_CONFIG_HEADER
199         call.  Replace common.m4 include with SIM_AC_COMMON.
200         * configure: Regenerate.
201
202 2010-04-14  Mike Frysinger  <[email protected]>
203
204         * interp.c (sim_write): Add const to buffer arg.
205
206 2010-01-09  Ralf Wildenhues  <[email protected]>
207
208         * configure: Regenerate.
209
210 2009-08-22  Ralf Wildenhues  <[email protected]>
211
212         * config.in: Regenerate.
213         * configure: Likewise.
214
215         * configure: Regenerate.
216
217 2008-07-11  Hans-Peter Nilsson  <[email protected]>
218
219         * configure: Regenerate to track ../common/common.m4 changes.
220         * config.in: Ditto.
221
222 2008-06-06  Vladimir Prus  <[email protected]>
223             Daniel Jacobowitz  <[email protected]>
224             Joseph Myers  <[email protected]>
225
226         * configure: Regenerate.
227
228 2006-12-21  Hans-Peter Nilsson  <[email protected]>
229
230         * config.in: Regenerate.
231
232 2006-06-13  Richard Earnshaw  <[email protected]>
233
234         * configure: Regenerated.
235
236 2006-06-05  Daniel Jacobowitz  <[email protected]>
237
238         * configure: Regenerated.
239
240 2006-05-31  Daniel Jacobowitz  <[email protected]>
241
242         * configure: Regenerated.
243
244 2005-03-23  Mark Kettenis  <[email protected]>
245
246         * configure: Regenerate.
247
248 2005-01-14  Andrew Cagney  <[email protected]>
249
250         * configure.ac: Sinclude aclocal.m4 before common.m4.  Add
251         explicit call to AC_CONFIG_HEADER.
252         * configure: Regenerate.
253
254 2005-01-12  Andrew Cagney  <[email protected]>
255
256         * configure.ac: Update to use ../common/common.m4.
257         * configure: Re-generate.
258
259 2005-01-11  Andrew Cagney  <[email protected]>
260
261         * configure: Regenerated to track ../common/aclocal.m4 changes.
262
263 2005-01-07  Andrew Cagney  <[email protected]>
264
265         * configure.ac: Rename configure.in, require autoconf 2.59.
266         * configure: Re-generate.
267
268 2004-12-08  Hans-Peter Nilsson  <[email protected]>
269
270         * configure: Regenerate for ../common/aclocal.m4 update.
271
272 2003-10-11  Alan Modra  <[email protected]>
273
274         * interp.c (sim_load): Don't refer directly to _cooked_size and vma;
275         Use bfd_section_size and bfd_get_section_vma.
276
277 2003-02-27  Andrew Cagney  <[email protected]>
278
279         * interp.c (sim_open, sim_create_inferior): Rename _bfd to bfd.
280
281 2002-06-16  Andrew Cagney  <[email protected]>
282
283         * configure: Regenerated to track ../common/aclocal.m4 changes.
284
285 2002-06-08  Andrew Cagney  <[email protected]>
286
287         * interp.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
288
289 Tue May 23 21:39:23 2000  Andrew Cagney  <[email protected]>
290
291         * configure: Regenerated to track ../common/aclocal.m4 changes.
292
293 2000-02-14  Nick Clifton  <[email protected]>
294
295         * interp.c (handle_trap1): Fix handling of fclose system call.
296         Patch submitted by <[email protected]>.
297
298 2000-02-10  Nick Clifton  <[email protected]>
299
300         * interp.c (target_big_endian): New variable.
301         (mcore_extract_unsigned_integer, mcore_store_unsigned_integer,
302         wlat, rlat, sim_resume, sim_load): Add supprot for little
303         endian targets. 
304
305 2000-01-13  Nick Clifton  <[email protected]>
306
307         * interp.c (sim_resume): Do not rely upon host semantics of shift
308         operators to implement M*Core semantics.
309
310 Thu Sep  2 18:15:53 1999  Andrew Cagney  <[email protected]>
311
312         * configure: Regenerated to track ../common/aclocal.m4 changes.
313
314 1999-06-23  Nick Clifton  <[email protected]>
315
316         * sysdep.h: Do not define prototypes for memcpy and strchr if they
317         are macros.
318
319 1999-05-21  Nick Clifton  <[email protected]>
320
321         * interp.c (sim_resume): Add more tracing output.
322
323 1999-05-17  Keith Seitz  <[email protected]>
324
325         * interp.c (NUM_MCORE_REGS): Increase by one to allow access to PC.
326         (sim_resume): Correct off by one instruction error when a breakpoint
327         is hit.
328
329 1999-05-08  Felix Lee  <[email protected]>
330
331         * configure: Regenerated to track ../common/aclocal.m4 changes.
332         
333 1999-05-10  Nick Clifton  <[email protected]>
334
335         * interp.c (sim_resume): Record PC in case it is needed for error
336         messages and the original has been corrupted.
337
338 1999-05-07  Nick Clifton  <[email protected]>
339
340         * interp.c (sim_resume): Fix typo 'oze' -> 'doze'.
341         (util): Handle 0x50FF stubs properly.
342
343
344 1999-04-29  Nick Clifton  <[email protected]>
345
346         * interp.c (set_initial_gprs): Only display memory range if
347         verbose option has been set.
348
349 1999-04-22  Nick Clifton  <[email protected]>
350
351         * interp.c: Add tracing and verbose options.
352         Fixed trap and syscall emulations.
353
354 1999-04-08  Nick Clifton  <[email protected]>
355
356         * interp.c: New file: Simulator for MCore.
357         * sysdep.h: New file: Systems definitions for MCore simulator.
358         * configure.in: New file: Configure script for MCore simulator.
359         * configure: New file: Genreated.
360         * config,in: New file: Config support.
361         * Makefile.in: New file: Meta makefile for MCore simulator.
362
This page took 0.046063 seconds and 4 git commands to generate.