sim/erc32: Switched emulated memory to host endian order.
[deliverable/binutils-gdb.git] / sim / erc32 / ChangeLog
1 2015-04-19 Jiri Gaisler <jiri@gaisler.se>
2
3 * erc32.c (current_target_byte_order): Delete.
4 (fetch_bytes): Remove.
5 (store_bytes): Remove byte twisting.
6 (memory_read, memory_write): Access memory directly.
7 (extract_short, extract_short_signed, extract_byte,
8 extract_byte_signed): New function for for sub-word LD instructions.
9 * exec.c (extract_short, extract_short_signed, extract_byte,
10 extract_byte_signed): New functions.
11 (dispatch_instruction): Update memory reads.
12 * func.c (current_target_byte_order): Delete.
13 (get_regi): Delete little endian handling.
14 (disp_ctrl, dis_mem): Adjust print-out to new data endian.
15 (bfd_load): Delete little endian handling.
16 * interf.c (current_target_byte_order): Delete.
17 (sim_open): Set dinfo to host endian to get correct disassembly.
18 (sim_write, sim_read): Convert endian when gdb reads or writes
19 memory.
20 * sis.c (main): Set endian.
21 * sis.h (EBT): Define.
22
23 2015-04-13 Mike Frysinger <vapier@gentoo.org>
24
25 * configure: Regenerate.
26
27 2015-03-31 Mike Frysinger <vapier@gentoo.org>
28
29 * config.in, configure: Regenerate.
30
31 2015-03-28 Jiri Gaisler <jiri@gaisler.se>
32
33 * func.c (exec_cmd): Fix old style prototype. Mark cmd const. Save
34 the command in a new cmdsave2 to avoid modifying.
35 (bfd_load): Fix old style prototype. Mark fname const.
36 * sis.h (exec_cmd): Mark cmd const.
37 (bfd_load): Mark fname const.
38
39 2015-03-28 Jiri Gaisler <jiri@gaisler.se>
40
41 * erc32.c (memory_iread): New function to fetch instructions.
42 (memory_read): Print message in verbose mode.
43 * interf.c (run_sim): Use memory_iread.
44 * sis.c (run_sim): As above.
45 * sis.h (memory_iread): New prototype.
46 (sregs): Declare.
47
48 2015-03-28 Mike Frysinger <vapier@gentoo.org>
49
50 * erc32.c (mec_read): Delete parenthesis around return statement.
51 (mec_write, read_uart, rtc_counter_read, gpt_counter_read, memory_read,
52 memory_write, get_mem_ptr, sis_memory_write, sis_memory_read): Likewise.
53 * exec.c (sub_cc, add_cc, add32, dispatch_instruction, fpexec, chk_asi,
54 execute_trap, check_interrupts): Likewise.
55 * float.c (get_accex): Likewise.
56 * func.c (batch, limcalc, exec_cmd, disp_fpu, now, wait_for_irq,
57 check_bpt, bfd_load, get_time): Likewise.
58 * interf.c (run_sim, sim_write, sim_read): Likewise.
59 * sis.c (run_sim): Likewise.
60
61 2015-03-24 Mike Frysinger <vapier@gentoo.org>
62
63 * interf.c (sim_set_callbacks, sim_size, sim_trace): Delete.
64
65 2015-03-17 Jiri Gaisler <jiri@gaisler.se>
66
67 * func.c (exec_cmd): Silence compiler warnings when calling system().
68 (batch): Replace fgets() with getline().
69
70 2015-03-17 Jiri Gaisler <jiri@gaisler.se>
71
72 * func.c (show_stat): Print simulation time in portable long long
73 format.
74 * help.c (usage): Update usage help print-out.
75 * sis.c (run_sim): Increase debug level with -v. Also print
76 simulation time in portable long long format.
77 * sis.h: Use stdint.h for portable 32- and 64-bit ints.
78
79 2015-03-16 Mike Frysinger <vapier@gentoo.org>
80
81 * config.in, configure: Regenerate.
82
83 2015-03-16 Jiri Gaisler <jiri@gaisler.se>
84
85 * Makefile.in (end, end.h): Remove target rules.
86 (clean): Remove end and end.h.
87 (erc32.o, exec.o, float.o, func.o, help.o, interf.o, sis.o): Delete
88 rules.
89 * configure, config.in: Regenerate.
90 * configure.ac: Use SIM_AC_OPTION_HOSTENDIAN
91 * end.c: Delete.
92 * erc32.c: Remove end.h include.
93 * exec.c: Remove end.h include. Use HOST_LITTLE_ENDIAN.
94 * func.c, sis.c: Likewise.
95
96 2015-03-14 Mike Frysinger <vapier@gentoo.org>
97
98 * Makefile.in (SIM_RUN_OBJS): Set to sis.o.
99
100 2015-03-14 Mike Frysinger <vapier@gentoo.org>
101
102 * configure.ac (AC_CHECK_HEADERS): Delete.
103 * aclocal.m4, configure: Regenerate.
104
105 2015-02-22 Jiri Gaisler <jiri@gaisler.se>
106
107 * Makefile.in: Add include path to readline.h.
108 sis.c: Remove locally define readline types.
109
110 2015-02-21 Jiri Gaisler <jiri@gaisler.se>
111
112 * func.c (reset_stat, show_stat): Switch to double in time keeping.
113 (get_time): New function to get system time.
114 * interf.c (run_sim): Use get_time() for system time.
115 * sis.c (run_sim): Likewise.
116 * sis.h: Likewise.
117
118 2015-02-21 Jiri Gaisler <jiri@gaisler.se>
119
120 * Makefile.in: Remove unused defines
121
122 2015-02-21 Jiri Gaisler <jiri@gaisler.se>
123
124 * float.c (get_accex, clear_accex, set_fsr): Use functions from fenv.h
125 instead of custom assembly.
126
127 2015-02-21 Jiri Gaisler <jiri@gaisler.se>
128
129 * erc32.c (mec_read): Allow simulator memory size to be read
130 by application.
131 (boot_init): initialize memory and timers if start address is
132 not 0.
133 * func.c (exe_cmd): Call boot_init if start address not 0.
134 * interf.c (run_sim): Likewise.
135
136 2015-02-21 Jiri Gaisler <jiri@gaisler.se>
137
138 * exec.c (init_regs): erc32 has vendor ID 1 and version ID 1 in %psr.
139
140 2015-02-21 Jiri Gaisler <jiri@gaisler.se>
141
142 * func.c (print_insn_sparc_sis): Add helper function for disassembly.
143 (disp_ctrl): Use helper function.
144
145 2014-08-19 Alan Modra <amodra@gmail.com>
146
147 * configure: Regenerate.
148
149 2014-08-15 Roland McGrath <mcgrathr@google.com>
150
151 * configure: Regenerate.
152 * config.in: Regenerate.
153
154 2014-03-10 Mike Frysinger <vapier@gentoo.org>
155
156 * interf.c (sim_do_command): Add const to cmd.
157
158 2014-03-05 Mike Frysinger <vapier@gentoo.org>
159
160 * interf.c (sim_load): Add const to prog.
161
162 2013-10-09 Sergio Durigan Junior <sergiodj@redhat.com>
163
164 PR sim/16018:
165 * float.c (set_fsr): Add missing "break" statements. Reindent
166 code.
167
168 2013-09-23 Alan Modra <amodra@gmail.com>
169
170 * configure: Regenerate.
171
172 2013-06-03 Mike Frysinger <vapier@gentoo.org>
173
174 * aclocal.m4, configure: Regenerate.
175
176 2013-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>
177
178 * Makefile.in: Include build directory in search path to find
179 config.h
180
181 2012-08-16 Nick Clifton <nickc@redhat.com>
182
183 * end.c: Include config.h before system header files.
184 * erc32.c: Likewise.
185 * exec.c: Likewise.
186 * float.c: Likewise.
187 * func.c: Likewise.
188 * help.c: Likewise.
189 * interf.c: Likewise.
190
191 2012-06-15 Joel Brobecker <brobecker@adacore.com>
192
193 * sys.h: Include "config.h".
194
195 2012-06-15 Joel Brobecker <brobecker@adacore.com>
196
197 * config.in, configure: Regenerate.
198
199 2012-05-24 Pedro Alves <palves@redhat.com>
200
201 PR gdb/7205
202
203 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
204
205 2012-03-24 Mike Frysinger <vapier@gentoo.org>
206
207 * aclocal.m4, config.in, configure: Regenerate.
208
209 2011-12-31 Mike Frysinger <vapier@gentoo.org>
210
211 PR sim/9971:
212 * configure.ac: Change AC_CHECK_LIB to AC_SEARCH_LIBS to match
213 the code in gdb's configure.ac with $TERMCAP.
214 * configure: Regenerated.
215
216 2011-12-03 Mike Frysinger <vapier@gentoo.org>
217
218 * aclocal.m4: New file.
219 * configure: Regenerate.
220
221 2011-10-17 Mike Frysinger <vapier@gentoo.org>
222
223 * configure.ac: Change include to common/acinclude.m4.
224
225 2011-10-17 Mike Frysinger <vapier@gentoo.org>
226
227 * configure.ac: Change AC_PREREQ to 2.64. Delete AC_CONFIG_HEADER
228 call. Replace common.m4 include with SIM_AC_COMMON.
229 * configure: Regenerate.
230
231 2011-06-09 Mike Frysinger <vapier@gentoo.org>
232
233 * interf.c (sim_open): Accept and ignore `--sysroot=...'.
234
235 2011-06-01 Joel Brobecker <brobecker@adacore.com>
236
237 * interf.c (sim_complete_command): New stub function.
238
239 2011-01-11 Andrew Burgess <aburgess@broadcom.com>
240
241 * interf.c (sim_store_register): Update return value to
242 match new API.
243
244 2010-05-20 Joel Brobecker <brobecker@adacore.com>
245
246 * sis.h: Remove #include <stdint.h>.
247 (uint64, int64): Redefine without using stdint.h.
248 (UINT64_MAX): Define.
249
250 2010-04-20 Tiemen Schut <T.Schut@sron.nl>
251
252 * erc32.c (sis_memory_write): Change prototype to const unsigned char *.
253 * func.c (exec_cmd, event, advance_time, wait_for_irq): Use uint64
254 for counts.
255 * interf.c (run_sim): Change icount to uint64_t. Use strtol directly.
256 (sim_resume): Specify maximum run time as uint64.
257 * sis.c (run_sim): Change icount to uint64_t.
258 * sis.h: Define uint64 as uint64_t. Change various fields and
259 prototypes to uint64 to support longer simulations.
260
261 2010-04-14 Mike Frysinger <vapier@gentoo.org>
262
263 * interp.c (sim_write): Add const to buf arg.
264
265 2010-01-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
266
267 * configure: Regenerate.
268
269 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
270
271 * config.in: Regenerate.
272 * configure: Likewise.
273
274 * configure: Regenerate.
275
276 2008-11-10 Joel Sherrill <joel.sherrill@oarcorp.com>
277
278 * erc32.c, exec.c: Fix warnings.
279
280 2008-07-11 Hans-Peter Nilsson <hp@axis.com>
281
282 * configure: Regenerate to track ../common/common.m4 changes.
283 * config.in: Ditto.
284
285 2008-06-09 Joel Sherrill <joel.sherrill@oarcorp.com>
286
287 * sis.c: Correct spelling error.
288
289 2008-06-06 Vladimir Prus <vladimir@codesourcery.com>
290 Daniel Jacobowitz <dan@codesourcery.com>
291 Joseph Myers <joseph@codesourcery.com>
292
293 * configure: Regenerate.
294
295 2006-12-21 Hans-Peter Nilsson <hp@axis.com>
296
297 * acconfig.h: Remove.
298 * config.in: Regenerate.
299
300 2006-12-20 Hans-Peter Nilsson <hp@axis.com>
301
302 * configure.ac: Add test for readline, substitute READLINE.
303 * Makefile.in (READLINE_LIB): New substituted-contents variable.
304 (SIM_EXTRA_LIBDEPS): Don't set.
305 (SIM_EXTRA_LIBS): Use $(READLINE_LIB) instead of
306 ../../readline/libreadline.a.
307 * configure: Regenerate.
308
309 2006-08-08 Daniel Jacobowitz <dan@codesourcery.com>
310
311 * Makefile.in (func.o, help.o): Correct dependencies.
312
313 2006-08-08 Joel Sherrill <joel.sherrill@oarcorp.com>
314
315 * Makefile.in (install-sis): Honor DESTDIR.
316
317 2006-06-13 Richard Earnshaw <rearnsha@arm.com>
318
319 * configure: Regenerated.
320
321 2006-06-05 Daniel Jacobowitz <dan@codesourcery.com>
322
323 * configure: Regenerated.
324
325 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
326
327 * configure: Regenerated.
328
329 2005-11-28 Mark Mitchell <mark@codesourcery.com>
330
331 * interf.c: (gdb/signals.h): Include it.
332 (sim_stop_reason): Use TARGET_SIGNAL_*.
333
334 2005-07-08 Ben Elliston <bje@au.ibm.com>
335
336 * func.c: Remove ANSI_PROTOTYPES conditional code.
337
338 2005-03-23 Mark Kettenis <kettenis@gnu.org>
339
340 * configure: Regenerate.
341
342 2005-03-07 Jerome Guitton <guitton@gnat.com>
343
344 * sim/erc32/float.c (set_fsr): Do not use deprecated multi-line
345 strings.
346 (clear_accex): Ditto.
347 * sim/erc32/interf.c: Remove the redeclaration of fprintf.
348 * sim/erc32/sis.c: Ditto.
349 * sim/erc32/exec.c: Add missing semicolon.
350 * sim/erc32/func.c: Remove definitions of generic_print_address,
351 generic_symbol_at_address, buffer_read_memory and perror_memory, as
352 they are already defined in opcodes/dis-buf.c.
353
354 2005-01-14 Andrew Cagney <cagney@gnu.org>
355
356 * configure.ac: Sinclude aclocal.m4 before common.m4. Add
357 explicit call to AC_CONFIG_HEADER.
358 * configure: Regenerate.
359
360 2005-01-12 Andrew Cagney <cagney@gnu.org>
361
362 * configure.ac: Update to use ../common/common.m4.
363 * configure: Re-generate.
364
365 2005-01-11 Andrew Cagney <cagney@localhost.localdomain>
366
367 * configure: Regenerated to track ../common/aclocal.m4 changes.
368
369 2005-01-07 Andrew Cagney <cagney@gnu.org>
370
371 * configure.ac: Rename configure.in, require autoconf 2.59.
372 * configure: Re-generate.
373
374 2004-12-08 Hans-Peter Nilsson <hp@axis.com>
375
376 * configure: Regenerate for ../common/aclocal.m4 update.
377
378 2004-11-11 Andreas Schwab <schwab@suse.de>
379
380 * interf.c: Include "libiberty.h" instead of declaring buildargv
381 ourselves.
382
383 2003-02-27 Andrew Cagney <cagney@redhat.com>
384
385 * interf.c (sim_open, sim_create_inferior): Rename _bfd to bfd.
386
387 2002-06-16 Andrew Cagney <ac131313@redhat.com>
388
389 * configure: Regenerated to track ../common/aclocal.m4 changes.
390
391 2002-06-08 Andrew Cagney <cagney@redhat.com>
392
393 * sis.h: Include "gdb/remote-sim.h" and "gdb/callback.h".
394 * interf.c: Include "gdb/remote-sim.h".
395
396 Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
397
398 * configure: Regenerated to track ../common/aclocal.m4 changes.
399
400 2000-03-07 Frank Ch. Eigler <fche@redhat.com>
401
402 From John Dallaway <jld@redhat.co.uk>:
403 * Makefile.in (install-sis): Add $(EXEEXT) for Windows host.
404
405 2000-03-03 Jonathan Larmour <jlarmour@redhat.co.uk>
406
407 * func.c (buffer_read_memory): Change type of size to unsigned to
408 match prototype
409
410 Thu Sep 2 18:15:53 1999 Andrew Cagney <cagney@b1.cygnus.com>
411
412 * configure: Regenerated to track ../common/aclocal.m4 changes.
413
414 1999-05-08 Felix Lee <flee@cygnus.com>
415
416 * configure: Regenerated to track ../common/aclocal.m4 changes.
417
418 1999-03-03 DJ Delorie <dj@cygnus.com>
419
420 * configure.in: add termcap and -luser32 for host=cygwin
421 * configure: regenerate
422
423 1999-02-11 Hugo Tyson <hmt@cygnus.co.uk>
424
425 * exec.c (dispatch_instruction):
426 Correct the sense of the
427 if (!sparclite) {
428 sregs->trap = TRAP_UNIMP;
429 break;
430 }
431 clause that has been pasted around: it's correct in the SCAN and
432 DIVScc (divide step) cases (where it was probably originally
433 written?), but reversed in the SDIV, SDIVcc, UDIV, UDIVcc cases
434 ie. instructions only in the SPARC V8 or SPARClite 86x
435 architectures. It was also present when not required for SMUL,
436 SMULcc, UMUL, UMULcc instructions that are present in all
437 architectures.
438
439 1999-01-25 Hugo Tyson <hmt@cygnus.co.uk>
440
441 * interf.c (run_sim): Fix a bug in the main loop's handling of
442 annulled delay slot instructions. There is precedent for this
443 change; the _other_ main loop in sis.c gets it right according to
444 my reading of the code.
445
446 The bug is: if an interrupt happens when the next instruction
447 (at sregs->pc) is annulled, the trap is taken (by execute_trap())
448 with the current values of PC and NPC, so when the trap returns,
449 the annulled instruction is indeed executed. Another giveaway is
450 that the annul flag is cleared in execute_trap(): the information
451 is demonstrably discarded.
452
453 The solution is: perform annulling before looking for traps, in
454 fact it's neater to do annulling, see if there's an interrupt and
455 if not, do the instruction, then handle traps be they generated by
456 interrupts pending or by the instruction we might just have done.
457 That's what the sis.c one does.
458
459 1999-01-20 Hugo Tyson <hmt@cygnus.co.uk>
460
461 * sis.h: Add asr17 register for support of SparcLITE (at least the
462 Hitachi ones I find before me)
463
464 * exec.c (dispatch_instruction): Case WRY: Allow write of asr17 if
465 sparclite. Other ASR numbers than 17 or 0 (Y) trap out.
466 Case RDY: Allow read of asr17 if sparclite. Other ASRs ditto.
467 (execute_trap): Do single-vector-trapping if asr17 bit 0 is set.
468 (init_regs): Initialize y and asr17.
469 NB: In instruction-set space, the Y register is asr0; the
470 instructions have different names for human reasons only.
471
472 * sis.c:
473 * interf.c: Set boolean mode variable dumbio if invoked with
474 argument "-dumbio" and mention it of verbose.
475 * erc32.c: if "dumbio" is set, do not assume that there is a
476 terminal type device attached to stdin/stdout. Do not set
477 buffering or mess with tcsetattr or do any read operations in
478 order to make UART interrupts; not input data is supported.
479 This is necessary to allow the sim to be used within the eCos
480 testing infrastructure where stdin/stdout are pipes to a TCL
481 program; the sim hangs otherwise.
482
483 Thu Jul 23 07:17:03 1998 Mark Alexander <marka@cygnus.com>
484
485 * exec.c (dispatch_instruction): Add SPARClite 'scan' instruction.
486
487 Tue Jul 7 21:12:41 1998 Mark Alexander <marka@cygnus.com>
488
489 * func.c (bfd_load): Add special handling of a.out executables.
490
491 Sat Jun 13 08:33:25 1998 Mark Alexander <marka@cygnus.com>
492
493 * func.c (bfd_load): Print correct endianness.
494 * interf.c (run_sim): Print debugging information if verbosity level
495 is greater than 2.
496 (sim_open): Repeated -v options now increment verbosity level.
497 (sim_store_register): Handle little-endian case.
498 (flush_window): Print debugging information if verbosity level
499 is greater then 2.
500
501 Tue Jun 2 15:20:35 1998 Mark Alexander <marka@cygnus.com>
502
503 * interf.c (sim_open): Use revamped memory_read, which makes
504 byte-swapping unnecessary. Add -sparclite-board option for
505 emulating RAM found on typical SPARClite boards. Print
506 error message for unrecognized option.
507 * erc32.c: Change RAM address and size from constants to variables,
508 to allow emulation of SPARClite board RAM.
509 (fetch_bytes, store_bytes): New helper functions for revamped
510 mememory_read and memory_write.
511 (memory_read, memory_write): Rewrite to store bytes in target
512 byte order instead of storing words in host byte order; this
513 greatly simplifies support of little-endian programs.
514 (get_mem_ptr): Remove unnecessary byte parameter.
515 (sis_memory_write, sis_memory_read): Store words in target
516 byte order instead of host byte order.
517 (byte_swap_words): Remove, no longer needed.
518 * sis.h ((byte_swap_words): Remove declaration, no longer needed.
519 (memory_read): Add new sz parameter.
520 * sis.c (run_sim): Use revamped memory_read, which makes
521 byte-swapping unnecessary.
522 * exec.c (dispatch_instruction): Use revamped memory_read, which
523 makes byte-swapping and double-word fetching unnecessary.
524 * func.c (sparclite_board): Declare new variable.
525 (get_regi): Handle little-endian data.
526 (bfd_load): Recognize little-endian SPARClite as having
527 little-endian data.
528
529 Fri May 22 14:23:16 1998 Mark Alexander <marka@cygnus.com>
530
531 * erc32.c (port_init): Print messages only if sis_verbose is true.
532 * func.c (bfd_load): Ditto.
533 * interf.c (sim_open): Ditto.
534
535 Thu May 14 23:10:48 1998 Mark Alexander <marka@cygnus.com>
536
537 * sis.h (uint64, int64): Define.
538 * exec.c (SDIV, SDIVCC, UDIV, UDIVCC): Define new opcodes.
539 * (mul64): Simplify calculation of negative result.
540 * (div64): New helper function for 64-bit division.
541 * (dispatch_instruction): Add emulation of SDIV, SDIVCC, UDIV,
542 and UDIVCC.
543
544 Wed May 13 14:59:54 1998 Mark Alexander <marka@cygnus.com>
545
546 * erc32.c (close_port): Don't close stdin; it kills GDB.
547 (byte_swap_words): New function.
548 * sis.h: (byte_swap_words): Declare.
549 * interf.c (run_sim): Always fetch instructions as big-endian.
550 * sis.c (run_sim): Ditto.
551
552 Tue Apr 28 18:33:31 1998 Geoffrey Noer <noer@cygnus.com>
553
554 * configure: Regenerated to track ../common/aclocal.m4 changes.
555
556 Sun Apr 26 15:31:55 1998 Tom Tromey <tromey@creche>
557
558 * configure: Regenerated to track ../common/aclocal.m4 changes.
559 * config.in: Ditto.
560
561 Sun Apr 26 15:20:17 1998 Tom Tromey <tromey@cygnus.com>
562
563 * acconfig.h: New file.
564 * configure.in: Reverted change of Apr 24; use sinclude again.
565
566 Fri Apr 24 14:16:40 1998 Tom Tromey <tromey@creche>
567
568 * configure: Regenerated to track ../common/aclocal.m4 changes.
569 * config.in: Ditto.
570
571 Fri Apr 24 11:19:52 1998 Tom Tromey <tromey@cygnus.com>
572
573 * configure.in: Don't call sinclude.
574
575 Sat Apr 18 12:00:16 1998 Mark Alexander <marka@cygnus.com>
576
577 * func.c (disp_fpu): Fix build problem on big-endian hosts.
578
579 Wed Apr 8 19:33:34 1998 Mark Alexander <marka@cygnus.com>
580
581 * erc32.c (sim_stop): Handle SIGINT gracefully.
582 * interf.c (sim_open): Don't catch SIGINT; GDB will do that for us.
583
584 Wed Apr 8 18:29:40 1998 Mark Alexander <marka@cygnus.com>
585
586 * exec.c (dispatch_instruction): Change how carry out is calculated
587 in DIVSCC. Add emulation of SMULCC, UMUL, and UMULCC.
588
589 Sat Apr 4 20:36:25 1998 Andrew Cagney <cagney@b1.cygnus.com>
590
591 * configure: Regenerated to track ../common/aclocal.m4 changes.
592
593 Wed Apr 1 21:19:18 1998 Mark Alexander <marka@cygnus.com>
594
595 * end.c: Update to version 2.7.5, fix compiler warnings and bugs.
596 * erc32.c: Ditto.
597 * exec.c: Ditto.
598 * float.c: Ditto.
599 * func.c: Ditto.
600 * help.c: Ditto.
601 * interf.c: Ditto.
602 * sis.c: Ditto.
603 * sis.h: Ditto.
604
605 Fri Mar 27 16:15:52 1998 Andrew Cagney <cagney@b1.cygnus.com>
606
607 * configure: Regenerated to track ../common/aclocal.m4 changes.
608
609 Wed Mar 25 12:35:29 1998 Andrew Cagney <cagney@b1.cygnus.com>
610
611 * configure: Regenerated to track ../common/aclocal.m4 changes.
612
613 Wed Mar 18 12:38:12 1998 Andrew Cagney <cagney@b1.cygnus.com>
614
615 * configure: Regenerated to track ../common/aclocal.m4 changes.
616
617 Tue Feb 17 12:41:11 1998 Andrew Cagney <cagney@b1.cygnus.com>
618
619 * interf.c (sim_store_register, sim_fetch_register): Pass in
620 length parameter. Return -1.
621
622 Sun Feb 1 16:47:51 1998 Andrew Cagney <cagney@b1.cygnus.com>
623
624 * configure: Regenerated to track ../common/aclocal.m4 changes.
625
626 Sat Jan 31 18:15:41 1998 Andrew Cagney <cagney@b1.cygnus.com>
627
628 * configure: Regenerated to track ../common/aclocal.m4 changes.
629
630 Mon Jan 19 22:26:29 1998 Doug Evans <devans@seba>
631
632 * configure: Regenerated to track ../common/aclocal.m4 changes.
633
634 Mon Dec 15 23:17:11 1997 Andrew Cagney <cagney@b1.cygnus.com>
635
636 * configure: Regenerated to track ../common/aclocal.m4 changes.
637 * config.in: Ditto.
638
639 Thu Dec 4 09:21:05 1997 Doug Evans <devans@canuck.cygnus.com>
640
641 * configure: Regenerated to track ../common/aclocal.m4 changes.
642
643 Fri Oct 3 09:28:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
644
645 * configure: Regenerated to track ../common/aclocal.m4 changes.
646
647 Wed Sep 24 17:38:57 1997 Andrew Cagney <cagney@b1.cygnus.com>
648
649 * configure: Regenerated to track ../common/aclocal.m4 changes.
650
651 Tue Sep 23 11:04:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
652
653 * configure: Regenerated to track ../common/aclocal.m4 changes.
654
655 Mon Sep 22 11:46:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
656
657 * configure: Regenerated to track ../common/aclocal.m4 changes.
658
659 Fri Sep 19 17:45:25 1997 Andrew Cagney <cagney@b1.cygnus.com>
660
661 * configure: Regenerated to track ../common/aclocal.m4 changes.
662
663 Mon Sep 15 17:36:15 1997 Andrew Cagney <cagney@b1.cygnus.com>
664
665 * configure: Regenerated to track ../common/aclocal.m4 changes.
666
667 Wed Aug 27 18:13:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
668
669 * configure: Regenerated to track ../common/aclocal.m4 changes.
670 * config.in: Ditto.
671
672 Tue Aug 26 10:38:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
673
674 * float.c (__setfpucw): Compile on any i386 target. Not just NT.
675
676 * interf.c (sim_kill): Delete.
677 (sim_create_inferior): Add ABFD argument. Initialize PC from ABFD
678 argument.
679 (sim_load): Don't save start address.
680 (start_address): Delete variable.
681
682 Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
683
684 * configure: Regenerated to track ../common/aclocal.m4 changes.
685 * config.in: Ditto.
686
687 Mon Aug 25 16:19:49 1997 Andrew Cagney <cagney@b1.cygnus.com>
688
689 * interf.c (sim_open): Add ABFD argument. Change ARGV to PARGV.
690
691 Mon Jun 30 11:45:25 1997 Doug Evans <dje@canuck.cygnus.com>
692
693 * Makefile.in (install-sis): Change $(srcdir)/sis to sis.
694
695 Wed May 28 09:46:13 1997 Andrew Cagney <cagney@b1.cygnus.com>
696
697 * interf.c (sim_set_callbacks): Drop SD argument - not applicable.
698 (sim_open): Add callback arg, save it.
699
700 Thu Apr 24 00:39:51 1997 Doug Evans <dje@canuck.cygnus.com>
701
702 * configure: Regenerated to track ../common/aclocal.m4 changes.
703
704 Tue Apr 22 11:05:01 1997 Doug Evans <dje@canuck.cygnus.com>
705
706 * interf.c (sim_open): Undo patch to add -E support.
707
708 Thu Apr 17 03:03:56 1997 Doug Evans <dje@canuck.cygnus.com>
709
710 * interf.c (sim_open): Ignore -E arg.
711 (start_address): New static local.
712 (sim_load): Return SIM_RC. New arg abfd. Set start_address from bfd.
713 (sim_create_inferior): Return SIM_RC. Delete arg start_address.
714
715 Tue Apr 15 15:16:11 1997 Ian Lance Taylor <ian@cygnus.com>
716
717 * Makefile.in (install-sis): Depend upon installdirs. Use
718 $(program_transform_name) directly, rather than using
719 $(INSTALL_XFORM).
720
721 Mon Apr 7 15:45:02 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
722
723 * configure: Regenerated to track ../common/aclocal.m4 changes.
724 * config.in: Ditto.
725
726 Wed Apr 2 15:06:28 1997 Doug Evans <dje@canuck.cygnus.com>
727
728 * interf.c (sim_open): New arg `kind'.
729
730 * configure: Regenerated to track ../common/aclocal.m4 changes.
731
732 Wed Apr 2 14:34:19 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
733
734 * configure: Regenerated to track ../common/aclocal.m4 changes.
735
736 Mon Mar 17 15:10:07 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
737
738 * configure: Re-generate.
739
740 Thu Mar 13 12:46:04 1997 Doug Evans <dje@canuck.cygnus.com>
741
742 * interf.c (sim_open): New SIM_DESC result. Argument is now in
743 argv form.
744 (other sim_*): New SIM_DESC argument.
745
746 Tue Feb 4 13:35:20 1997 Doug Evans <dje@canuck.cygnus.com>
747
748 * Makefile.in (@COMMON_MAKEFILE_FRAG): Use
749 COMMON_{PRE,POST}_CONFIG_FRAG instead.
750 * configure.in: sinclude ../common/aclocal.m4.
751 * configure: Regenerated.
752
753 Thu Jan 23 11:46:23 1997 Stu Grossman (grossman@critters.cygnus.com)
754
755 * configure configure.in Makefile.in: Update to new configure
756 scheme which is more compatible with WinGDB builds.
757 * configure.in: Improve comment on how to run autoconf.
758 * configure: Re-run autoconf to get new ../common/aclocal.m4.
759 * Makefile.in: Use autoconf substitution to install common
760 makefile fragment.
761
762 Wed Dec 4 18:25:04 1996 Rob Savoye <rob@chinadoll.cygnus.com>
763
764 * interf.c (run_sim): Stop the simulator and reset the stdio after
765 breakpoints.
766
767 Tue Dec 3 11:54:37 1996 Rob Savoye <rob@chinadoll.cygnus.com>
768
769 * configure.in: Look for libtermcap.a.
770 * Makefile.in: Only link in -ltermcap if it exists.
771 * erc32.c: Update to version 2.6a. Fix uart handling.
772 * exec.c: Update to version 2.6a. Add sparclite support.
773 * float.c: Update to version 2.6a. Convert comments to
774 preprocessor warnings. Add __setfpucw() for i385 hosts so floating
775 point exceptions work on win32.
776 * func.c: Update to version 2.6a. Fix uart handling, add support
777 for user error traps.
778 * help.c: Update to version 2.6a. Add help note on user error
779 traps.
780 * interf.c: Update to version 2.6a. Fix uart handling, and add
781 sparclite support.
782 * examples/gccx: Use sparclite cross compiler, not native gcc.
783 * examples/srt0.S: Use "mov" rather than "wr" for manipulating
784 the psr register.
785
786 Mon Nov 25 08:28:10 1996 Fred Fish <fnf@cygnus.com>
787
788 * Makefile.in (run.o): Remove this rule, it hides the one in
789 ../common/Make-common.in that correctly references the source
790 in the sibling ../common directory.
791
792 Wed Nov 20 01:30:12 1996 Doug Evans <dje@canuck.cygnus.com>
793
794 * Makefile.in: Delete stuff moved to ../common/Make-common.in.
795 (SIM_{OBJS,EXTRA_LIBS,EXTRA_LIBDEPS,EXTRA_ALL,EXTRA_INSTALL}): Define.
796 (SIM_{EXTRA_CLEAN,EXTRA_CFLAGS}): Define.
797 * configure.in: Simplify using macros in ../common/aclocal.m4.
798 Call AC_CHECK_HEADERS(stdlib.h).
799 * configure: Regenerated.
800 * config.in: New file.
801 * func.c (sim_set_callbacks): Delete, moved to
802 * interf.c (sim_set_callbacks): here.
803 (sim_callback): New global.
804 Rewrite all calls to printf_filtered to go through callback.
805 (sim_size,sim_trace): New functions.
806 (sim_{insert,remove}_breakpoint): #if 0 out.
807 * sis.c: #include "config.h". #include <stdlib.h> if present.
808 (main): Coerce fprintf arg to INIT_DISASSEMBLE_INFO to fprintf_ftype.
809 * sis.h: #include "callback.h".
810 * run.c: Deleted, using one in ../common now.
811
812 Thu Oct 3 16:12:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
813
814 * Makefile.in (clean): Move config.log to distclean.
815
816 Wed Oct 2 16:57:57 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
817
818 * Makefile.in (clean): Also remove config.log.
819
820 Sat Sep 14 00:00:46 1996 Ian Lance Taylor <ian@cygnus.com>
821
822 * Makefile.in (CC_FOR_BUILD): New variable.
823 (AR, AR_FLAGS, BISON, MAKEINFO): Remove duplicate variables.
824 (RANLIB, CC): Likewise.
825 (end): Use $(CC_FOR_BUILD), not $(CC).
826 * configure.in: Set CC_FOR_BUILD.
827 * configure: Rebuild.
828
829 Sun Sep 8 14:04:37 1996 Stu Grossman (grossman@critters.cygnus.com)
830
831 * erc32.c (port_init): Disable this for __GO32__ (got no pty's
832 there either...).
833
834 Mon Aug 12 17:04:58 1996 Stu Grossman (grossman@critters.cygnus.com)
835
836 * erc32.c: Don't include sys/ioctl.h or sys/file.h. They aren't
837 necessary.
838 * (port_init): Don't even *try* to open pty's under _WIN32.
839 * Use SIM_ADDR, not caddr_t for declaring vars that hold addresses.
840 * float.c: Get rid of #warning. Makes Microsoft C barf.
841 * interf.c (sim_open): Cast fprintf to (fprintf_ftype) to fix
842 compiler warning.
843 * (sim_load sim_create_inferior sim_read): Use prototypes only in
844 decls, not defs.
845 * Get rid of enum sim_stop. It's defined in remote-sim.h.
846 * (sim_stop_reason): Define SIGTRAP if _WIN32.
847 * sis.h: Include ansidecl.h and remote-sim.h.
848
849 Wed Jul 3 16:05:23 1996 Stu Grossman (grossman@critters.cygnus.com)
850
851 * erc32.c (mec_reset mec_read mec_write memory_read memory_write),
852 sis.h: Get rid of all uses of long long's.
853 * (close_port read_uart write_uart uarta_tx): Don't seg fault
854 when can't open pty's.
855 * exec.c: Add two new instructions: smul, and divscc.
856 * interf.c (flush_windows): New routine to flush the register
857 windows out to the stack just before returning to GDB. Makes
858 backtraces work much better.
859
860 Wed Jun 26 12:19:11 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
861
862 * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
863 INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
864 (docdir, oldincludedir): Removed.
865 * configure.in (AC_PREREQ): autoconf 2.5 or higher.
866 (AC_PROG_INSTALL): Added.
867 * configure: Rebuilt.
868
869 Mon Jun 24 14:19:07 1996 Ian Lance Taylor <ian@cygnus.com>
870
871 * configure.in: Call AC_PROG_CC before running configure.host.
872 * configure: Rebuild with autoconf 2.10.
873
874 Tue Jun 4 10:37:12 1996 Tom Tromey <tromey@csk3.cygnus.com>
875
876 * Makefile.in (install): Don't check to see if tooldir exists.
877 Make $(tooldir) and $(tooldir)/bin.
878
879 Mon Jun 3 12:33:38 1996 Ian Lance Taylor <ian@cygnus.com>
880
881 * Makefile.in (end.h): Use explicit ./ when running end.
882
883 Sun May 19 21:05:31 1996 Rob Savoye <rob@chinadoll.cygnus.com>
884
885 * func.c(bfd_load): Don't try to print the filename if the pfbd is
886 NULL.
887 * interf.c(sim_load): Pass the whole string, not just the first
888 byte.
889
890 Version 2.1 26-02-96
891 --------------------
892
893 * Fixed bug in "go" command.
894
895 version 2.0 05-02-96
896 --------------------
897
898 * Fixed bug in interrupt force register (erc32.c).
899
900 * Change file load function to use bfd_openr.
901
902 * SIS should now be endian independent.
903
904 version 1.8 24-11-95
905 --------------------
906
907 * Fixed FPU timing - some sequences of FPU instructions did not calculate
908 the resource dependencies right.
909
910 * Corrected STDFQ when qne = 0 (again!). The ftt is set to sequence_error
911 but no FPU trap is generated.
912
913 version 1.7.1 31-10-95
914 --------------------
915
916 * Corrected STDFQ when qne = 0. Now, a trap is immidiately generated but
917 the FPU stays in execute mode.
918
919 * Corrected JMPL and RETT timing (these instructions takes two cycles).
920
921
922 version 1.7 25-10-95
923 --------------------
924
925 * Interrupt during annuled instruction corrupted return address - fixed.
926
927
928 version 1.6.2 25-10-95
929 --------------------
930
931 * Added -DFAST_UART to Makefile
932
933
934 version 1.6.1 24-10-95
935 --------------------
936
937 * Fixed bug in STDFQ which caused bus error
938
939
940 version 1.6 02-10-95
941 --------------------
942
943 * Modified srt0.s to include code that initiates registers in IU and FPU
944 and initializes the data segment. The simulator 'load' command does not
945 longer initialize the data segment!
946
947 * Corrected MEC timer operation; scalers now divide the frequency by
948 (scaler_value + 1).
949
950 * MEC breakpoints are not checked during store operation
951
952
953 version 1.5 14-09-95
954 --------------------
955
956 * Fixed some bugs in the cycle counting for IU & FPU instructions.
957
958 * Fixed bug that allowed an annuled instruction to cause memory exception.
959
960 * The *ws parameter in mem.c should now contain the number of waitstates
961 required by the memory access (was total number of cycles).
962
963 * The supplied srt0.s now clears the BSS (thanks Joel).
964
965 version 1.4 22-08-95
966 --------------------
967
968 * Added a '-g' switch to enable/disable the GNU readline(), which cause
969 some problems on solaris 2.x machines.
970
971 * Enabled MEC watchpoint and breakpoint function to mem.c. Performance
972 may suffer a bit ...
973
974 NOTE: The UARTs are now connected to /dev/ttypc and /dev/ttypd.
975
976 version 1.3 26-07-95
977 --------------------
978
979 * Fixed bug in mulscc instruction (how could that ever have worked?)
980
981 * Fixed bug in UART B (flushed characters on UART A), thanks Paul.
982
983 version 1.2 13-07-95
984 --------------------
985
986 * Fixed bug in interrupt handling (wrong interrupt selected when more that
987 one interrupt pending)
988
989 * Fixed updating of condition codes during logical instructions (carry and
990 overflow were not reset)
991
992 * Fixed bug in WRTBR (tt field was wrongly over-written)
993
994 version 1.1 07-07-95
995 --------------------
996
997 * Fixed several bugs in the interrupt handler and callback routines.
998 (reported by Paul Warren, Alsys)
This page took 0.049841 seconds and 5 git commands to generate.