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