sim/erc32: Switched emulated memory to host endian order.
[deliverable/binutils-gdb.git] / sim / erc32 / ChangeLog
CommitLineData
d3e9b40a
JG
12015-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
bf12d44e
MF
232015-04-13 Mike Frysinger <vapier@gentoo.org>
24
25 * configure: Regenerate.
26
aadc9410
MF
272015-03-31 Mike Frysinger <vapier@gentoo.org>
28
29 * config.in, configure: Regenerate.
30
510d2751
JG
312015-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
102b920e
JG
392015-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
5831e29b
MF
482015-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
523ba8f9
MF
612015-03-24 Mike Frysinger <vapier@gentoo.org>
62
63 * interf.c (sim_set_callbacks, sim_size, sim_trace): Delete.
64
b9f9ea2f
JG
652015-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
638fcdad
JG
702015-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
ae7d0cac
MF
792015-03-16 Mike Frysinger <vapier@gentoo.org>
80
81 * config.in, configure: Regenerate.
82
9c5f41df
JG
832015-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
465fb143
MF
962015-03-14 Mike Frysinger <vapier@gentoo.org>
97
98 * Makefile.in (SIM_RUN_OBJS): Set to sis.o.
99
5cddc23a
MF
1002015-03-14 Mike Frysinger <vapier@gentoo.org>
101
102 * configure.ac (AC_CHECK_HEADERS): Delete.
103 * aclocal.m4, configure: Regenerate.
104
5634e839
JG
1052015-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
96d67095
JG
1102015-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
bb6ead91
JG
1182015-02-21 Jiri Gaisler <jiri@gaisler.se>
119
120 * Makefile.in: Remove unused defines
121
0172ee3a
JG
1222015-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
20a0ffe3
JG
1272015-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
df9bc416
JG
1362015-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
53b5af48
JG
1402015-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
2974be62
AM
1452014-08-19 Alan Modra <amodra@gmail.com>
146
147 * configure: Regenerate.
148
faa743bb
RM
1492014-08-15 Roland McGrath <mcgrathr@google.com>
150
151 * configure: Regenerate.
152 * config.in: Regenerate.
153
60d847df
MF
1542014-03-10 Mike Frysinger <vapier@gentoo.org>
155
156 * interf.c (sim_do_command): Add const to cmd.
157
b2b255bd
MF
1582014-03-05 Mike Frysinger <vapier@gentoo.org>
159
160 * interf.c (sim_load): Add const to prog.
161
40776d19
SDJ
1622013-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
bf3d9781
AM
1682013-09-23 Alan Modra <amodra@gmail.com>
169
170 * configure: Regenerate.
171
31e6ad7d
MF
1722013-06-03 Mike Frysinger <vapier@gentoo.org>
173
174 * aclocal.m4, configure: Regenerate.
175
7b7f7f41
JB
1762013-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>
177
178 * Makefile.in: Include build directory in search path to find
179 config.h
180
4232dbd1
NC
1812012-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
9a210f30
JB
1912012-06-15 Joel Brobecker <brobecker@adacore.com>
192
193 * sys.h: Include "config.h".
194
5f3ef9d0
JB
1952012-06-15 Joel Brobecker <brobecker@adacore.com>
196
197 * config.in, configure: Regenerate.
198
a493e3e2
PA
1992012-05-24 Pedro Alves <palves@redhat.com>
200
201 PR gdb/7205
202
203 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
204
2232061b
MF
2052012-03-24 Mike Frysinger <vapier@gentoo.org>
206
207 * aclocal.m4, config.in, configure: Regenerate.
208
b909d38d
MF
2092011-12-31 Mike Frysinger <vapier@gentoo.org>
210
e6ab98cd 211 PR sim/9971:
b909d38d
MF
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
db2e4d67
MF
2162011-12-03 Mike Frysinger <vapier@gentoo.org>
217
218 * aclocal.m4: New file.
219 * configure: Regenerate.
220
9c082ca8
MF
2212011-10-17 Mike Frysinger <vapier@gentoo.org>
222
223 * configure.ac: Change include to common/acinclude.m4.
224
6ffe910a
MF
2252011-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
ce6f492f
MF
2312011-06-09 Mike Frysinger <vapier@gentoo.org>
232
233 * interf.c (sim_open): Accept and ignore `--sysroot=...'.
234
248d2a8f
JB
2352011-06-01 Joel Brobecker <brobecker@adacore.com>
236
237 * interf.c (sim_complete_command): New stub function.
238
dae477fe
AB
2392011-01-11 Andrew Burgess <aburgess@broadcom.com>
240
241 * interf.c (sim_store_register): Update return value to
242 match new API.
243
2464c810
JB
2442010-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
94110024
JS
2502010-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
5558e7e6
MF
2612010-04-14 Mike Frysinger <vapier@gentoo.org>
262
263 * interp.c (sim_write): Add const to buf arg.
264
3725885a
RW
2652010-01-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
266
267 * configure: Regenerate.
268
d6416cdc
RW
2692009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
270
81ecdfbb
RW
271 * config.in: Regenerate.
272 * configure: Likewise.
273
d6416cdc
RW
274 * configure: Regenerate.
275
d68c23cd
JS
2762008-11-10 Joel Sherrill <joel.sherrill@oarcorp.com>
277
278 * erc32.c, exec.c: Fix warnings.
279
b5bd9624
HPN
2802008-07-11 Hans-Peter Nilsson <hp@axis.com>
281
282 * configure: Regenerate to track ../common/common.m4 changes.
283 * config.in: Ditto.
284
14e1f957
MS
2852008-06-09 Joel Sherrill <joel.sherrill@oarcorp.com>
286
287 * sis.c: Correct spelling error.
288
6efef468
JM
2892008-06-06 Vladimir Prus <vladimir@codesourcery.com>
290 Daniel Jacobowitz <dan@codesourcery.com>
291 Joseph Myers <joseph@codesourcery.com>
292
293 * configure: Regenerate.
294
edc5d9ec
HPN
2952006-12-21 Hans-Peter Nilsson <hp@axis.com>
296
297 * acconfig.h: Remove.
298 * config.in: Regenerate.
299
70a9be63
HPN
3002006-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
ce928021
DJ
3092006-08-08 Daniel Jacobowitz <dan@codesourcery.com>
310
311 * Makefile.in (func.o, help.o): Correct dependencies.
312
3132006-08-08 Joel Sherrill <joel.sherrill@oarcorp.com>
314
315 * Makefile.in (install-sis): Honor DESTDIR.
316
e85e3205
RE
3172006-06-13 Richard Earnshaw <rearnsha@arm.com>
318
319 * configure: Regenerated.
320
2f0122dc
DJ
3212006-06-05 Daniel Jacobowitz <dan@codesourcery.com>
322
323 * configure: Regenerated.
324
20e95c23
DJ
3252006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
326
327 * configure: Regenerated.
328
aba6488e
MM
3292005-11-28 Mark Mitchell <mark@codesourcery.com>
330
331 * interf.c: (gdb/signals.h): Include it.
332 (sim_stop_reason): Use TARGET_SIGNAL_*.
333
4eeb4f8d
BE
3342005-07-08 Ben Elliston <bje@au.ibm.com>
335
336 * func.c: Remove ANSI_PROTOTYPES conditional code.
337
2b193c4a
MK
3382005-03-23 Mark Kettenis <kettenis@gnu.org>
339
340 * configure: Regenerate.
341
187d3d28
JG
3422005-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
35695fd6
AC
3542005-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
f0569246
AC
3602005-01-12 Andrew Cagney <cagney@gnu.org>
361
362 * configure.ac: Update to use ../common/common.m4.
363 * configure: Re-generate.
364
38f48d72
AC
3652005-01-11 Andrew Cagney <cagney@localhost.localdomain>
366
367 * configure: Regenerated to track ../common/aclocal.m4 changes.
368
b7026657
AC
3692005-01-07 Andrew Cagney <cagney@gnu.org>
370
371 * configure.ac: Rename configure.in, require autoconf 2.59.
372 * configure: Re-generate.
373
379832de
HPN
3742004-12-08 Hans-Peter Nilsson <hp@axis.com>
375
376 * configure: Regenerate for ../common/aclocal.m4 update.
377
2b3cc94f
AS
3782004-11-11 Andreas Schwab <schwab@suse.de>
379
380 * interf.c: Include "libiberty.h" instead of declaring buildargv
381 ourselves.
382
6b4a8935
AC
3832003-02-27 Andrew Cagney <cagney@redhat.com>
384
385 * interf.c (sim_open, sim_create_inferior): Rename _bfd to bfd.
386
c8cca39f
AC
3872002-06-16 Andrew Cagney <ac131313@redhat.com>
388
389 * configure: Regenerated to track ../common/aclocal.m4 changes.
390
3c25f8c7
AC
3912002-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
eb2d80b4
AC
396Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
397
398 * configure: Regenerated to track ../common/aclocal.m4 changes.
399
a0539197
FCE
4002000-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
0ef33cd0
FCE
4052000-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
d4f3574e
SS
410Thu Sep 2 18:15:53 1999 Andrew Cagney <cagney@b1.cygnus.com>
411
412 * configure: Regenerated to track ../common/aclocal.m4 changes.
413
cd0fc7c3
SS
4141999-05-08 Felix Lee <flee@cygnus.com>
415
416 * configure: Regenerated to track ../common/aclocal.m4 changes.
417
7a292a7a
SS
4181999-03-03 DJ Delorie <dj@cygnus.com>
419
420 * configure.in: add termcap and -luser32 for host=cygwin
421 * configure: regenerate
422
c906108c
SS
4231999-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
4391999-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
4591999-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
483Thu Jul 23 07:17:03 1998 Mark Alexander <marka@cygnus.com>
484
485 * exec.c (dispatch_instruction): Add SPARClite 'scan' instruction.
486
487Tue 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
491Sat 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
501Tue 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
529Fri 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
535Thu 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
544Wed 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
552Tue Apr 28 18:33:31 1998 Geoffrey Noer <noer@cygnus.com>
553
554 * configure: Regenerated to track ../common/aclocal.m4 changes.
555
556Sun 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
561Sun 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
566Fri 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
571Fri Apr 24 11:19:52 1998 Tom Tromey <tromey@cygnus.com>
572
573 * configure.in: Don't call sinclude.
574
575Sat 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
579Wed 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
584Wed 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
589Sat Apr 4 20:36:25 1998 Andrew Cagney <cagney@b1.cygnus.com>
590
591 * configure: Regenerated to track ../common/aclocal.m4 changes.
592
593Wed 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
605Fri Mar 27 16:15:52 1998 Andrew Cagney <cagney@b1.cygnus.com>
606
607 * configure: Regenerated to track ../common/aclocal.m4 changes.
608
609Wed Mar 25 12:35:29 1998 Andrew Cagney <cagney@b1.cygnus.com>
610
611 * configure: Regenerated to track ../common/aclocal.m4 changes.
612
613Wed Mar 18 12:38:12 1998 Andrew Cagney <cagney@b1.cygnus.com>
614
615 * configure: Regenerated to track ../common/aclocal.m4 changes.
616
617Tue 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
622Sun Feb 1 16:47:51 1998 Andrew Cagney <cagney@b1.cygnus.com>
623
624 * configure: Regenerated to track ../common/aclocal.m4 changes.
625
626Sat Jan 31 18:15:41 1998 Andrew Cagney <cagney@b1.cygnus.com>
627
628 * configure: Regenerated to track ../common/aclocal.m4 changes.
629
630Mon Jan 19 22:26:29 1998 Doug Evans <devans@seba>
631
632 * configure: Regenerated to track ../common/aclocal.m4 changes.
633
634Mon 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
639Thu Dec 4 09:21:05 1997 Doug Evans <devans@canuck.cygnus.com>
640
641 * configure: Regenerated to track ../common/aclocal.m4 changes.
642
643Fri Oct 3 09:28:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
644
645 * configure: Regenerated to track ../common/aclocal.m4 changes.
646
647Wed Sep 24 17:38:57 1997 Andrew Cagney <cagney@b1.cygnus.com>
648
649 * configure: Regenerated to track ../common/aclocal.m4 changes.
650
651Tue Sep 23 11:04:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
652
653 * configure: Regenerated to track ../common/aclocal.m4 changes.
654
655Mon Sep 22 11:46:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
656
657 * configure: Regenerated to track ../common/aclocal.m4 changes.
658
659Fri Sep 19 17:45:25 1997 Andrew Cagney <cagney@b1.cygnus.com>
660
661 * configure: Regenerated to track ../common/aclocal.m4 changes.
662
663Mon Sep 15 17:36:15 1997 Andrew Cagney <cagney@b1.cygnus.com>
664
665 * configure: Regenerated to track ../common/aclocal.m4 changes.
666
667Wed 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
672Tue 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
682Mon 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
687Mon 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
691Mon Jun 30 11:45:25 1997 Doug Evans <dje@canuck.cygnus.com>
692
693 * Makefile.in (install-sis): Change $(srcdir)/sis to sis.
694
695Wed 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
700Thu Apr 24 00:39:51 1997 Doug Evans <dje@canuck.cygnus.com>
701
702 * configure: Regenerated to track ../common/aclocal.m4 changes.
703
704Tue 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
708Thu 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
715Tue 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
721Mon 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
726Wed 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
732Wed Apr 2 14:34:19 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
733
734 * configure: Regenerated to track ../common/aclocal.m4 changes.
735
736Mon Mar 17 15:10:07 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
737
738 * configure: Re-generate.
739
740Thu 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
746Tue 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
753Thu 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
762Wed 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
767Tue 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
786Mon 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
792Wed 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
812Thu Oct 3 16:12:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
813
814 * Makefile.in (clean): Move config.log to distclean.
815
816Wed Oct 2 16:57:57 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
817
818 * Makefile.in (clean): Also remove config.log.
819
820Sat 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
829Sun 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
834Mon 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
849Wed 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
860Wed 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
869Mon 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
874Tue 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
879Mon Jun 3 12:33:38 1996 Ian Lance Taylor <ian@cygnus.com>
880
881 * Makefile.in (end.h): Use explicit ./ when running end.
882
883Sun 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
890Version 2.1 26-02-96
891--------------------
892
893* Fixed bug in "go" command.
894
895version 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
904version 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
913version 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
922version 1.7 25-10-95
923--------------------
924
925* Interrupt during annuled instruction corrupted return address - fixed.
926
927
928version 1.6.2 25-10-95
929--------------------
930
931* Added -DFAST_UART to Makefile
932
933
934version 1.6.1 24-10-95
935--------------------
936
937* Fixed bug in STDFQ which caused bus error
938
939
940version 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
953version 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
965version 1.4 22-08-95
966--------------------
967
968* Added a '-g' switch to enable/disable the GNU readline(), which cause
969some problems on solaris 2.x machines.
970
971* Enabled MEC watchpoint and breakpoint function to mem.c. Performance
972may suffer a bit ...
973
974NOTE: The UARTs are now connected to /dev/ttypc and /dev/ttypd.
975
976version 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
983version 1.2 13-07-95
984--------------------
985
986* Fixed bug in interrupt handling (wrong interrupt selected when more that
987one interrupt pending)
988
989* Fixed updating of condition codes during logical instructions (carry and
990overflow were not reset)
991
992* Fixed bug in WRTBR (tt field was wrongly over-written)
993
994version 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.878306 seconds and 4 git commands to generate.