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