Fix GDB crash problem when object file of different H8 cpu is loaded
[external/binutils.git] / sim / h8300 / ChangeLog
1 2003-12-11  Dhananjay Deshpande  <dhananjayd@kpitcummins.com>
2
3         * compile.c (set_h8300h): Initialize globals to zero.
4
5 2003-10-17  Shrinivas Atre  <shrinivasa@KPITCummins.com>
6
7         * compile.c (h8300_normal_mode): New.
8         (SP): Handle normal mode.
9         (bitfrom): Use normal mode flag to return suitable value.
10         (lvalue): Use normal mode flag to return command line location.
11         (decode): Decode instruction correctly for normal mode.
12         (init_pointers): Initialise memory correctly for normal mode.
13         (sim_resume): Handle cases for normal mode using h8300_normal_mode
14         flag.
15         (sim_store_register): Handle 2 byte PC for normal mode.
16         (sim_fetch_register): Handle 2 byte PC for normal mode.
17         (set_h8300h): Set normal mode flag as per architechture.
18         (sim_load): Allocate 64K for normal mode instead of bigger memory.
19
20 2003-07-18  Michael Snyder  <msnyder@redhat.com>
21
22         * compile.c (decode): Enhancements for mova.
23         Initialize cst, reg, and rdisp inside the loop, for each
24         new instruction.  Defer correction of the disp2 values until
25         later, and then adjust them by the size of the first operand,
26         rather than the size of the instruction.
27         (sim_resume): For mova, adjust the size of the second operand
28         according to the type of the first operand (INDEXB vs. INDEXW).
29         In cases where there is only one operand, the other two must
30         both be composed on the fly.
31
32 2003-07-22  Michael Snyder  <msnyder@redhat.com>
33
34         * compile.c (sim_resume): Revert 6-24 change, it does not
35         work with gdb breakpoints.
36
37 2003-07-17  Michael Snyder  <msnyder@redhat.com>
38
39         * compile.c (sim_resume): Handle shll reg, reg and shlr reg, reg.
40         (decode): IMM16 is always zero-extended.
41
42 2003-06-24  Michael Snyder  <msnyder@redhat.com>
43
44         * sim-main.h (SIM_WIFSTOPPED, SIM_WSTOPSIG): Define.
45         * compile.c (sim_resume): Use the above to return stop signal.
46
47 2003-06-18  Michael Snyder  <msnyder@redhat.com>
48
49         * compile.c: Replace "Hitachi" with "Renesas".
50         (decode): Distinguish AV_H8S from AV_H8H.
51         (sim_resume): H8SX can use any register for TAS.
52         (decode): Add support for VECIND.
53         (sim_resume): Implement rte/l and rts/l.
54         (GETSR): New macro (actually old macro reincarnated).
55         (decode): Add handling for IMM2.
56         (sim_resume): Drop extra block around jmp, jsr, rts.
57         Add handling for trapa and rte.
58         For divxu.b, change 0xffff mask to 0xff.
59         (set_h8300h): Add bfd_mach_h8300sxn machine.
60
61 2003-06-18  Corinna Vinschen  <vinschen@redhat.com>
62
63         * sim-main.h (enum h8_regnum): Turn around order of MACH, MACL
64         and SBR, VBR.
65
66 2003-06-05  Michael Snyder  <msnyder@redhat.com>
67
68         * compile.c (sim_fetch_register): Handle SBR, VBR, MACH, MACL.
69         (sim_store_register): Ditto.
70
71 2003-06-04  Michael Snyder  <msnyder@redhat.com>
72
73         * compile.c (sim_info): Fix typo in output.
74
75         * compile.c (set_h8300h): Replace 'flag' arguments
76         with a bfd_machine argument, and decode it inline.
77         Check for bfd_mach_h8300hn and bfd_mach_h8300sn.
78
79 2003-06-03  Michael Snyder  <msnyder@redhat.com>
80
81         * compile.c: Add h8300sx insns and addressing modes.
82         * sim-main.h: Replaces h8300/inst.h.
83         * Makefile.in: Tweak to bring in some sim/common stuff.
84
85 2003-04-13  Michael Snyder  <msnyder@redhat.com>
86
87         * compile.c (sim_resume): Implement 'daa' and 'das' instructions.
88
89 2003-03-20  D.Venkatasubramanian  <dvenkat@noida.hcltech.com>
90
91         * compile.c (cmdline_location): Added function to 
92         return the location of 8-bit (256 locations) where the
93         Command Line arguments would be stored.
94         (decode): Added a TRAP to 0xcc for Commandline 
95         processing using pseudo opcode O_SYS_CMDLINE.
96         (sim_resume): Added handling of O_SYS_CMDLINE Trap.
97         (sim_create_inferior): Setting a pointer to 
98         Commandline Args array.
99         * inst.h: Added a new variable ptr_command_line for
100         storing pointer to Commandline array.
101
102 2003-03-14  D.Venkatasubramanian <dvenkat@noida.hcltech.com>
103
104         * compile.c (decode): Added code for some more magic traps.
105         * compile.c (sim_resume): Added support for File I/O system
106         calls through callback to host_system.
107         System calls provided support for :
108         open, read, write, lseek, close, stat, fstat
109         Only basic support for stat and fstat.
110
111 2003-02-27  Andrew Cagney  <cagney@redhat.com>
112
113         * compile.c (sim_open, sim_create_inferior): Rename _bfd to bfd.
114
115 2003-02-05  Kazu Hirata  <kazu@cs.umass.edu>
116
117         * compile.c (init_pointers): Abort if wreg never gets initialized.
118         (sim_resume): Fix the handling of exts.w and extu.w.
119
120 2003-01-31  Kazu Hirata  <kazu@cs.umass.edu>
121
122         * compile.c (sim_resume): Fix the handling of bxor.
123
124 2003-01-16  Michael Snyder  <msnyder@redhat.com>
125
126         * compile.c: Change K&R function definitions to ISO.
127         (fetch): Make static, and eliminate unused parameter 'n'.
128
129 2002-12-26  Kazu Hirata  <kazu@cs.umass.edu>
130
131         * compile.c: Fix formatting.
132         * inst.h: Likewise.
133
134 2002-07-29  Andrey Volkov  <avolkov@transas.com>
135
136         * compile.c: Include "gdb/sim-h8300.h"
137         * Makefile.in: Add dependences on "inst.h",
138         "gdb/callback.h", "gdb/remote-sim.h" and "gdb/sim-h8300.h".
139
140 2002-06-16  Andrew Cagney  <ac131313@redhat.com>
141
142         * configure: Regenerated to track ../common/aclocal.m4 changes.
143
144 2002-06-08  Andrew Cagney  <cagney@redhat.com>
145
146         * compile.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
147
148 2002-05-19  Kazu Hirata  <kazu@cs.umass.edu>
149
150         * compile.c: Fix formatting.
151
152 2002-05-18  Kazu Hirata  <kazu@cs.umass.edu>
153
154         * compile.c: Fix formatting.
155
156 2002-05-17  Andrey Volkov  (avolkov@transas.com)
157
158         * compile.c: Add absented opcodes: LDC, STC, EEPMOV, TAS.
159         
160 2002-05-17  Andrey Volkov  (avolkov@transas.com)
161
162         * compile.c: Add support of EXR register
163         * inst.h: Ditto.
164         
165 2002-05-17  Andrey Volkov  (avolkov@transas.com)
166
167         * compile.c: Made h8300s as new target, not h8300h alias.
168         * inst.h: Ditto.
169                 
170 2002-05-17  Andrey Volkov  (avolkov@transas.com)
171
172         * compile.c: Add additional CCR flags (I,UI,H,U) 
173
174 2002-05-17  Andrey Volkov  (avolkov@transas.com)
175
176         * compile.c: Change literal regnumbers to REGNUMS. 
177         Fix instruction and cycles counting
178
179 2001-12-20  Kazu Hirata  <kazu@hxi.com>
180
181         * compile.c: Fix formatting.
182
183 2001-12-20  Kazu Hirata  <kazu@hxi.com>
184
185         * compile.c: Fix comment typos.
186
187 2000-08-10  Kazu Hirata  <kazu@hxi.com>
188
189         * compile.c (decode): Clean up the code.
190
191 2000-06-15  Kazu Hirata  <kazu@hxi.com>
192
193         * compile.c (decode): Distinguish inc/dec.[wl] and adds/subs
194         correctly.
195
196 2000-06-20  Frank Ch. Eigler  <fche@redhat.com>
197
198         * compile.c: Don't include "wait.h".
199         (sim_resume): Use local SIM_WIFEXITED and SIM_WIFSIGNALED macros
200         instead of WIF* from host.
201
202 2000-06-13  Frank Ch. Eigler  <fche@redhat.com>
203
204         * compile.c, writecode.c: Correct typo.
205
206 2000-06-13  Kazu Hirata  <kazu@hxi.com>
207
208         * compile.c: Fix formatting.
209
210 Tue May 23 21:39:23 2000  Andrew Cagney  <cagney@b1.cygnus.com>
211
212         * configure: Regenerated to track ../common/aclocal.m4 changes.
213
214 Thu Sep  2 18:15:53 1999  Andrew Cagney  <cagney@b1.cygnus.com>
215
216         * configure: Regenerated to track ../common/aclocal.m4 changes.
217
218 1999-05-08  Felix Lee  <flee@cygnus.com>
219
220         * configure: Regenerated to track ../common/aclocal.m4 changes.
221         
222 1999-04-02  Keith Seitz  <keiths@cygnus.com>
223
224         * compile.c (POLL_QUIT_INTERVAL): Define. Used to tweak the
225         frequency at which the poll_quit callback is used.
226         (sim_resume): Use POLL_QUIT_INTERVAL instead of hard-coded value.
227
228 Tue Apr 28 18:33:31 1998  Geoffrey Noer  <noer@cygnus.com>
229
230         * configure: Regenerated to track ../common/aclocal.m4 changes.
231
232 Sun Apr 26 15:31:55 1998  Tom Tromey  <tromey@creche>
233
234         * configure: Regenerated to track ../common/aclocal.m4 changes.
235         * config.in: Ditto.
236
237 Sun Apr 26 15:20:14 1998  Tom Tromey  <tromey@cygnus.com>
238
239         * acconfig.h: New file.
240         * configure.in: Reverted change of Apr 24; use sinclude again.
241
242 Fri Apr 24 14:16:40 1998  Tom Tromey  <tromey@creche>
243
244         * configure: Regenerated to track ../common/aclocal.m4 changes.
245         * config.in: Ditto.
246
247 Fri Apr 24 11:19:46 1998  Tom Tromey  <tromey@cygnus.com>
248
249         * configure.in: Don't call sinclude.
250
251 Sat Apr  4 20:36:25 1998  Andrew Cagney  <cagney@b1.cygnus.com>
252
253         * configure: Regenerated to track ../common/aclocal.m4 changes.
254
255 Fri Mar 27 16:15:52 1998  Andrew Cagney  <cagney@b1.cygnus.com>
256
257         * configure: Regenerated to track ../common/aclocal.m4 changes.
258
259 Wed Mar 25 12:35:29 1998  Andrew Cagney  <cagney@b1.cygnus.com>
260
261         * configure: Regenerated to track ../common/aclocal.m4 changes.
262
263 Wed Mar 18 12:38:12 1998  Andrew Cagney  <cagney@b1.cygnus.com>
264
265         * configure: Regenerated to track ../common/aclocal.m4 changes.
266
267 Tue Feb 17 12:42:18 1998  Andrew Cagney  <cagney@b1.cygnus.com>
268
269         * compile.c (sim_store_register, sim_fetch_register): Pass in
270         length parameter.  Return -1.
271
272 Sun Feb  1 16:47:51 1998  Andrew Cagney  <cagney@b1.cygnus.com>
273
274         * configure: Regenerated to track ../common/aclocal.m4 changes.
275
276 Sat Jan 31 18:15:41 1998  Andrew Cagney  <cagney@b1.cygnus.com>
277
278         * configure: Regenerated to track ../common/aclocal.m4 changes.
279
280 Mon Jan 19 22:26:29 1998  Doug Evans  <devans@seba>
281
282         * configure: Regenerated to track ../common/aclocal.m4 changes.
283
284 Mon Dec 15 23:17:11 1997  Andrew Cagney  <cagney@b1.cygnus.com>
285
286         * configure: Regenerated to track ../common/aclocal.m4 changes.
287         * config.in: Ditto.
288
289 Thu Dec  4 09:21:05 1997  Doug Evans  <devans@canuck.cygnus.com>
290
291         * configure: Regenerated to track ../common/aclocal.m4 changes.
292
293 Tue Nov 11 16:52:07 1997  Angela Marie Thomas (angela@cygnus.com)
294
295         * compile.c: #include stdio.h for definition of NULL on
296         some platforms.
297
298 Wed Oct 22 14:43:00 1997  Andrew Cagney  <cagney@b1.cygnus.com>
299
300         * compile.c (sim_load): Pass lma_p and sim_write args to
301         sim_load_file.
302
303 Fri Oct  3 09:28:00 1997  Andrew Cagney  <cagney@b1.cygnus.com>
304
305         * configure: Regenerated to track ../common/aclocal.m4 changes.
306
307 Wed Sep 24 17:38:57 1997  Andrew Cagney  <cagney@b1.cygnus.com>
308
309         * configure: Regenerated to track ../common/aclocal.m4 changes.
310
311 Tue Sep 23 11:04:38 1997  Andrew Cagney  <cagney@b1.cygnus.com>
312
313         * configure: Regenerated to track ../common/aclocal.m4 changes.
314
315 Mon Sep 22 11:46:20 1997  Andrew Cagney  <cagney@b1.cygnus.com>
316
317         * configure: Regenerated to track ../common/aclocal.m4 changes.
318
319 Fri Sep 19 17:45:25 1997  Andrew Cagney  <cagney@b1.cygnus.com>
320
321         * configure: Regenerated to track ../common/aclocal.m4 changes.
322
323 Wed Sep 17 12:00:57 1997  Andrew Cagney  <cagney@b1.cygnus.com>
324
325         * Makefile.in (compile.o): Depend on config.h in local directory.
326
327 Mon Sep 15 17:36:15 1997  Andrew Cagney  <cagney@b1.cygnus.com>
328
329         * configure: Regenerated to track ../common/aclocal.m4 changes.
330
331 Tue Sep  9 22:17:26 1997  Felix Lee  <flee@cygnus.com>
332
333         * inst.h (sim_state): rename to h8300_sim_state, to avoid conflict
334         with sim/common.
335         * configure.in: check for sys/param.h
336         * compile.c: #ifdef HAVE_SYS_PARAM_H.
337         #define SIGTRAP for wingdb.
338         (sim_resume): poll keyboard at least once per call.
339         (sim_resume): use host_callback instead of printf for syscall
340         output.
341
342 Thu Sep  4 17:21:23 1997  Doug Evans  <dje@seba>
343
344         * configure: Regenerated to track ../common/aclocal.m4 changes.
345
346 Wed Aug 27 18:13:22 1997  Andrew Cagney  <cagney@b1.cygnus.com>
347
348         * configure: Regenerated to track ../common/aclocal.m4 changes.
349         * config.in: Ditto.
350
351 Tue Aug 26 10:38:43 1997  Andrew Cagney  <cagney@b1.cygnus.com>
352
353         * compile.c (sim_kill): Delete.
354         (sim_create_inferior): Add ABFD argument.
355         (sim_load): Move setting of PC from here.
356         (sim_create_inferior): To here.
357         (sim_open, sim_load, set_h8300h): Add fixme explaining why much of
358         the sim_load code should be moved to sim_open.
359
360 Mon Aug 25 17:50:22 1997  Andrew Cagney  <cagney@b1.cygnus.com>
361
362         * configure: Regenerated to track ../common/aclocal.m4 changes.
363         * config.in: Ditto.
364
365 Mon Aug 25 15:47:41 1997  Andrew Cagney  <cagney@b1.cygnus.com>
366
367         * compile.c (sim_open): Add ABFD argument.
368
369 Tue May 20 10:16:48 1997  Andrew Cagney  <cagney@b1.cygnus.com>
370
371         * compile.c (sim_open): Add callback argument.
372         (sim_set_callbacks): Delete SIM_DESC argument.
373
374 Wed Apr 30 10:22:29 1997  Doug Evans  <dje@canuck.cygnus.com>
375
376         * compile.c (sim_load): Call bfd_get_mach instead of examining
377         bfd fields directly.
378         * tconfig.in (SIM_PRE_LOAD): Delete, no longer used.
379
380 Thu Apr 24 00:39:51 1997  Doug Evans  <dje@canuck.cygnus.com>
381
382         * configure: Regenerated to track ../common/aclocal.m4 changes.
383
384 Fri Apr 18 14:30:09 1997  Andrew Cagney  <cagney@b1.cygnus.com>
385
386         * compile.c (sim_resume): Use poll_quit callback.
387         (sim_stop): New function.
388
389 Thu Apr 17 03:06:39 1997  Doug Evans  <dje@canuck.cygnus.com>
390
391         * Makefile.in (SIM_OBJS): Add sim-load.o.
392         * compile.c (sim_kind, myname): New static locals.
393         (sim_open): Set sim_kind, myname.
394         (sim_load): Return SIM_RC.  New arg abfd.  Update test for h8300h.
395         Call sim_load_file to load file into simulator.  Set start address
396         from bfd.
397         (sim_create_inferior): Return SIM_RC.  Delete arg start_address.
398
399 Mon Apr  7 15:45:02 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
400
401         * configure: Regenerated to track ../common/aclocal.m4 changes.
402         * config.in: Ditto.
403
404 Wed Apr  2 15:06:28 1997  Doug Evans  <dje@canuck.cygnus.com>
405
406         * compile.c (sim_open): New arg `kind'.
407
408         * configure: Regenerated to track ../common/aclocal.m4 changes.
409
410 Wed Apr  2 14:34:19 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
411
412         * configure: Regenerated to track ../common/aclocal.m4 changes.
413
414 Wed Mar 19 01:14:00 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
415
416         * configure: Regenerated to track ../common/aclocal.m4 changes.
417
418 Mon Mar 17 15:10:07 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
419
420         * configure: Re-generate.
421
422 Fri Mar 14 10:34:11 1997  Michael Meissner  <meissner@cygnus.com>
423
424         * configure: Regenerate to track ../common/aclocal.m4 changes.
425
426 Thu Mar 13 12:48:05 1997  Doug Evans  <dje@canuck.cygnus.com>
427
428         * compile.c (sim_open): New SIM_DESC result.  Argument is now in
429         argv form.
430         (other sim_*): New SIM_DESC argument.
431
432 Tue Feb  4 13:36:29 1997  Doug Evans  <dje@canuck.cygnus.com>
433
434         * Makefile.in (@COMMON_MAKEFILE_FRAG): Use
435         COMMON_{PRE,POST}_CONFIG_FRAG instead.
436         * configure.in: sinclude ../common/aclocal.m4.
437         * configure: Regenerated.
438
439 Thu Jan 23 11:46:23 1997  Stu Grossman  (grossman@critters.cygnus.com)
440
441         * configure configure.in Makefile.in:  Update to new configure
442         scheme which is more compatible with WinGDB builds.
443         * configure.in:  Improve comment on how to run autoconf.
444         * configure:  Re-run autoconf to get new ../common/aclocal.m4.
445         * Makefile.in:  Use autoconf substitution to install common
446         makefile fragment.
447
448 Wed Nov 20 01:39:12 1996  Doug Evans  <dje@canuck.cygnus.com>
449
450         * Makefile.in: Delete stuff moved to ../common/Make-common.in.
451         (SIM_OBJS): Define.
452         * configure.in: Simplify using macros in ../common/aclocal.m4.
453         * configure: Regenerated.
454         * inst.h (enum sim_state): Define.
455         (cpu_state_type): New member `state'.  Set it whenever `exception'
456         is set.
457         * compile.c (sim_callback): New global.
458         (sim_set_simcache_size): Renamed from sim_csize.
459         (sim_resume, case O_SLEEP): Add right way to decode r0 but #if 0 out
460         'cus it can't work.  Change main loop exit test to use cpu.state.
461         (sim_trace): New function.
462         (sim_stop_reason): Add right way to set results, but #if 0 out.
463         (sim_size): New function.
464         (sim_info): Redirect calls to printf_filtered through callback.
465         (sim_set_callbacks): Record callback.
466         * run.c: Deleted, using one in ../common now.
467         * tconfig.in: New file.
468
469 Thu Oct  3 16:13:18 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
470
471         * Makefile.in (mostlyclean): Don't remove config.log here.
472
473 Fri Aug  9 22:59:11 1996  Jeffrey A Law  (law@cygnus.com)
474
475         * compile.c (sim_resume): rts, sleep, bpt and nop have
476         no associated "size".
477
478 Tue Jul  9 22:15:39 1996  Jeffrey A Law  (law@cygnus.com)
479
480         * compile.c (sim_resume): Fix all rotate-by-2-bits insns.
481
482 Tue Jul  2 23:08:45 1996  Jeffrey A Law  (law@cygnus.com)
483
484         * run.c (main): Don't "load" sections which don't have
485         SEC_LOAD set.
486         * compile.c (sim_resume, case "O_NOT"): Use ONOT instead
487         of OSHIFTS.
488         (ONOT): Define.
489         (sim_resume, shift/rotate cases): Add support for shift/rotate
490         by two bits.
491         (OSHIFTS): Corresponding changes.
492
493 Tue Jul  2 01:37:27 1996  Jeffrey A Law  (law@cygnus.com)
494
495         * compile.c (sim_resume): Handle "ldm.l" and "stm.l".
496
497 Wed Jun 26 08:58:53 1996  Jeffrey A Law  (law@cygnus.com)
498
499         * compile.c (h8300smode): Declare.
500
501 Wed Jun 26 12:20:56 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
502
503         * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
504         INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
505         (docdir): Removed.
506         * configure.in (AC_PREREQ): autoconf 2.5 or higher.
507         (AC_PROG_INSTALL): Added.
508         * configure: Rebuilt.
509
510 Tue Jun 18 16:31:10 1996  Jeffrey A. Law  <law@rtl.cygnus.com>
511
512         * compile.c (sim_load): Treat the H8/S like the H8/300H for now.
513         * run.c (main): Treat the H8/S like the H8/300H for now.
514         
515 Fri May 24 10:35:25 1996  Jeffrey A Law  (law@cygnus.com)
516
517         * compile.c (SEXTCHAR): Clear upper bits when sign
518         bit is clear.
519
520 Wed May 22 22:23:37 1996  Jeffrey A Law  (law@cygnus.com)
521
522         * compile.c (sim_resume): Correctly handle divu.
523
524 Tue May  7 02:13:05 1996  Jeffrey A Law  (law@cygnus.com)
525
526         * compile.c (sim_resume): Never allow the PC to have an
527         odd value.
528
529 Fri Apr 12 16:50:37 1996  Jeffrey A Law  (law@cygnus.com)
530
531         * inst.h: Expand on comments regarding H8300H_MSIZE.  Note
532         separate memory is allocate for the 8-bit area.
533         (struct cpu_state_type): Add new "eightbit' field.
534         * compile.c (GET_MEMORY_L): Handle access into the 8-bit
535         area.
536         (GET_MEMORY_W, GET_MEMORY_B): Likewise.
537         (SET_MEMORY_L, SET_MEMORY_W, SET_MEMORY_B): Likewise.
538         (init_pointers): Initialize space for the 8-bit area.
539         (sim_write): Handle writing into the 8-bit area.
540         (sim_read): Handle reading from the 8-bit area.
541         (sim_load): Reallocate space for the 8-bit area.
542
543         * compile.c (sim_load): Re-allocate memory for the simulator
544         here.
545
546 Fri Apr 12 09:39:56 1996  Jeffrey A Law  (law@cygnus.com)
547
548         * compile.c (sim_resume): Fix and simplify overflow and carry
549         handling for 32bit ALU insns.
550
551 Mon Apr  8 23:58:49 1996  Jeffrey A Law  (law@cygnus.com)
552
553         * compile.c (sim_resume): Fix overflow checks for ALU insns.
554
555 Fri Apr  5 17:20:59 1996  Jeffrey A Law  (law@cygnus.com)
556
557         * compile.c (decode): Use "bit" to hold L_3 immediates instead
558         of holding them in "abs".  Handle ABS8MEM memory references aka
559         8-bit area.  Replace ABSMOV references with ABS8MEM.
560
561 Wed Mar 13 17:43:56 1996  Jeffrey A Law  (law@cygnus.com)
562
563         * compile.c (fetch): Handle accesses to the exception/function
564         vectors.
565
566 Mon Mar 11 09:53:25 1996  Doug Evans  <dje@charmed.cygnus.com>
567
568         * compile.c: #include "wait.h".
569         (sim_resume, sleep insn): Check program exit status in r0.
570         (sim_resume, shift insns): Fix setting of overflow flag for shal.
571         * run.c: #include <signal.h>.
572         (main): Abort if program got SIGILL.
573         Print error message if argument is invalid.
574         (usage): Improve text.
575
576 Wed Feb 21 12:15:00 1996  Ian Lance Taylor  <ian@cygnus.com>
577
578         * configure: Regenerate with autoconf 2.7.
579
580 Thu Jan  4 11:52:53 1996  Doug Evans  <dje@canuck.cygnus.com>
581
582         * inst.h (MPOWER,MSIZE): Deleted.
583         (H8300{,H}_MSIZE): Define.
584         * compile.c (memory_size): New static global.
585         (init_pointers): Set memory size from one of H8300{,H}_MSIZE.
586         (sim_write,sim_read): Use memory_size.
587
588 Fri Oct 13 15:03:19 1995  steve chamberlain  <sac@slash.cygnus.com>
589
590         * compile.c (sim_set_callbacks): New.
591
592 Tue Oct 10 11:11:26 1995  Fred Fish  <fnf@cygnus.com>
593
594         * Makefile.in (BISON): Remove macro.
595
596 Wed Sep 20 13:35:02 1995  Ian Lance Taylor  <ian@cygnus.com>
597
598         * Makefile.in (maintainer-clean): New synonym for realclean.
599
600 Fri Sep  8 12:18:53 1995  Ian Lance Taylor  <ian@cygnus.com>
601
602         * Makefile.in (install): Don't install in $(tooldir).
603
604         * configure.in: Call AC_CONFIG_HEADER.  Don't try to use
605         bfd/hosts/*.h file or bfd/config/*.mh file.  Call AC_PROG_CC and
606         AC_PROG_RANLIB.  Substitute in values for CFLAGS, HDEFINES and AR.
607         Call AC_CHECK_HEADERS for stdlib.h and time.h.  Touch stamp.h if
608         creating config.h.
609         * configure: Rebuild.
610         * config.in: New file, created by autoheader.
611         * Makefile.in (AR): Define as @AR@.
612         (CC): New variable, defined as @CC@.
613         (CFLAGS): Define as @CFLAGS@.
614         (RANLIB): Define as @RANLIB@.
615         (HDEFINES, TDEFINES): New variables.
616         (@host_makefile_frag@): Remove.
617         (compile.o, run.o): Depend upon config.h.
618         (mostlyclean): Make the same as clean, not distclean.
619         (clean): Remove config.log.
620         (distclean): Remove config.h and stamp-h.
621         (Makefile): Don't depend upon @frags@.  Just rebuild Makefile when
622         invoking config.status.
623         (config.h, stamp-h): New targets.
624         * compile.c: Include "config.h".  Don't include <sys/times.h>.
625         Include <time.h> and <stdlib.h> if they exist.  Don't include
626         "sysdep.h".
627         (get_now): Remove unused local b.
628         * run.c: Include "config.h".  Include <stdlib.h> if it exists.
629         Don't include "sysdep.h".
630         * writecode.c: Don't include "bfd.h" or "sysdep.h".  Include
631         <stdio.h>.
632
633 Thu Aug  3 10:45:37 1995  Fred Fish  <fnf@cygnus.com>
634
635         * Update all FSF addresses except those in COPYING* files.
636
637 Wed Jul  5 14:32:54 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
638
639         * Makefile.in (clean): Remove run.
640         (distclean): Remove Makefile.
641
642         * h8300.mt: Removed.
643
644         * Makefile.in, configure.in: converted to autoconf.
645         * configure: New file, generated with autconf 2.4.
646
647 Fri Jun 30 16:50:24 1995  Stan Shebs  <shebs@andros.cygnus.com>
648
649         * compile.c (sim_do_command): New function.
650
651 Tue Jun 20 16:18:13 1995  Steve Chamberlain  <sac@slash.cygnus.com>
652
653         * compile.c (get_now): Don't do if win32.
654         (sim_resume): Poll in win32 too.
655
656 Wed May 24 16:31:38 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
657
658         * configure.in: Fix typo in last change.
659
660 Mon Mar 27 10:32:34 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
661
662         * run.c: parse arguments with getopt().
663
664 Tue Feb 28 17:30:08 1995  Ian Lance Taylor  <ian@cygnus.com>
665
666         * configure.in: Use ../../bfd/hosts/std-host.h if specific
667         host unavailable.
668
669 Sun Jan 22 12:35:43 1995  Steve Chamberlain  <sac@splat>
670
671         * compile.c (sim_resume): Initialize cpu.mask.
672
673 Thu Sep  8 16:53:00 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
674
675         * inst.h (MPOWER): Bump simulated memory size to 2^18 bytes.
676
677 Wed May 18 13:47:58 1994  Doug Evans  (dje@canuck.cygnus.com)
678
679         * compile.c: #include "bfd.h".
680         (sim_*): Set result type to void where there isn't one.
681         (sim_resume, default case): Set cpu.exception to SIGILL.
682         (sim_trace): Delete.
683         (sim_set_pc): Delete.
684         (sim_info): Delete printf_fn arg, all callers changed.
685         Call printf_filtered.
686         (set_h8300h): New arg `flag', all callers changed.
687         (sim_close): New function.
688         (sim_load): New function.
689         (sim_create_inferior): Renamed from sim_set_args, all callers changed.
690         * run.c: #include <varargs.h>, "remote-sim.h".
691         (printf_filtered): New function.
692
693 Fri May 13 18:32:27 1994  Doug Evans  (dje@canuck.cygnus.com)
694
695         * compile.c (decode): Fix typo (16 bit branches).
696         (*): Some white space clean up.
697
698 Fri May  6 13:44:01 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
699
700         * compile.c (decode): Compile 16bit branches properly.
701
702 Sat Dec 11 16:32:36 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
703
704         * compile.c: Tidy up formatting. (sim_resume): Add orc, xorc,
705         andc.  Poll for interrupts.
706
707 Thu Oct 28 19:29:34 1993  Doug Evans  (dje@canuck.cygnus.com)
708
709         * compile.c: #include "ansidecl.h" for remote-sim.h.
710
711 Tue Oct 26 09:43:36 1993  Doug Evans  (dje@canuck.cygnus.com)
712
713         * Makefile.in (CSEARCH): Add -I$(srcdir)/../../gdb
714         * compile.c: #include "remote-sim.h".
715         (sim_resume): New arg siggnal.
716         (sim_write): Use SIM_ADDR for type of arg addr.
717         Always return a value.
718         (sim_read): Ditto.
719         (sim_store_register): Result is type int.
720         (sim_fetch_register): Ditto.
721         (sim_stop_reason): Renamed from sim_stop_signal.
722         (sim_set_pc): Use SIM_ADDR for type of arg pc.
723         (sim_info): int result, new arg printf_fn.
724         (sim_kill): int result.
725         (sim_open): int result, new arg name.
726         * run.c (main): Use sim_set_pc to set pc.
727         Update call to sim_info.
728
729 Sat Oct 23 15:01:18 1993  Doug Evans  (dje@canuck.cygnus.com)
730
731         * compile.c (sim_stop_signal): Result is now enum sim_stop.
732
733 Fri Oct 15 23:49:27 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
734
735         * compile.c (sim_kill, sim_open, sim_set_args): New functions.
736
737 Thu Oct  7 16:24:10 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
738
739         * compile.c (sim_set_pc): Write to the pc direcly.
740         (sim_store_register): Now value is passed by reference. (sim_read,
741         sim_write): Return number of bytes copied.
742
743 Tue Aug 17 07:16:15 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
744
745         * compile.c (mop): New function to do multiplies.
746
747 Fri Jul 16 13:53:53 1993  Doug Evans  (dje@canuck.cygnus.com)
748
749         * compile.c (sim_resume): Add support for nop insn.
750
751 Thu Jul 15 09:59:01 1993  Doug Evans  (dje@canuck.cygnus.com)
752
753         * compile.c: Reset HMODE back to zero (accidently set it to 1).
754
755         * run.c (main): If h8/300h binary detected, call set_h8300h.
756         * compile.c (sim_resume): Fix O_NEG insn.
757
758 Fri Jul  9 14:36:48 1993  Doug Evans  (dje@canuck.cygnus.com)
759
760         * run.c (main): Add -h flag to enable h8/300h emulation.
761         * compile.c: Rename Hmode to HMODE (consistency with gdb).
762         (set_h8300h): New function.
763         (sim_resume): Add support for extu,exts insns.
764         (sim_resume): Fix logical right shifting.
765         (sim_resume, label alu32): Fix setting of carry flag.
766         
767 Sun Jul  4 00:35:41 1993  Doug Evans  (dje@canuck.cygnus.com)
768
769         * compile.c (sim_csize): Initialize cpu.cache.
770
771 Fri Jul  2 17:42:59 1993  Doug Evans  (dje@canuck.cygnus.com)
772
773         * Makefile.in: Add -I../../bfd to pick up bfd.h.
774
775 Thu Jun 24 13:40:12 1993  Doug Evans  (dje@canuck.cygnus.com)
776
777         * run.c (main): Fix parsing of args.
778
779         * compile.c (sim_resume): Fix shll insn.
780
781 Tue Jun  8 14:16:46 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
782
783         * compile.c: New file, supports H8/300H.
784         * p1,p3, gencode.c, state.h, writecode.c All dead and obsolete.
785
786 Tue Jun  1 11:14:59 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
787
788         * run.c (main): Add -v to print info.
789         * p3.c (sim_info):  New function.
790
791 Mon Mar 15 15:48:31 1993  Ian Lance Taylor  (ian@cygnus.com)
792
793         * h8300.mt (DO_INSTALL): Renamed from INSTALL.
794
795 Wed Mar  3 15:06:53 1993  Steve Chamberlain  (sac@poseidon.cygnus.com)
796
797         * Makefile.in: Don't use cb or indent
798         * p1.c, state.h, writecode.c: lint
799
800 Mon Feb  1 16:44:58 1993  John Gilmore  (gnu@cygnus.com)
801
802         * Makefile.in:  Make SunOS halfdone VPATH work.
803         * p1.c:  Lint picked up by HP native compiler.
804
805 Mon Jan  4 12:32:35 1993  Steve Chamberlain  (sac@wahini.cygnus.com)
806
807         * p1.c (sim_resume): when running on dos, any character typed to
808         the keyboard will cause a simulated exception.
809
810 Sun Jan  3 14:15:07 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
811
812         * p1.c, p3.c, run.c, writecode.c: all used h8/300 opcodes in and
813         running
814
815 Tue Dec 22 13:56:48 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
816
817         * new 
818