]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/ChangeLog
sim: add noreturn markings to more hw abort/halt funcs
[thirdparty/binutils-gdb.git] / sim / common / ChangeLog
CommitLineData
5f78776a
MF
12010-01-10 Mike Frysinger <vapier@gentoo.org>
2
3 * hw-device.h (hw_abort, hw_vabort, hw_halt): Add noreturn attribute.
4 * sim-hw.h (sim_hw_abort): Likewise.
5
cc25892b
MF
62011-01-05 Mike Frysinger <vapier@gentoo.org>
7
8 * sim-load.c (sim_load_file): Change buffer type to unsigned char *.
9
44944448
JB
102011-01-05 Joel Brobecker <brobecker@adacore.com>
11
12 * run.1: Copyright year update.
13
e61ddca7
MF
142010-12-28 Mike Frysinger <vapier@gentoo.org>
15
e71b81d8
MF
16 * hw-alloc.h (HW_NALLOC): Define.
17
18010-12-28 Mike Frysinger <vapier@gentoo.org>
19
e61ddca7
MF
20 * hw-alloc.h (HW_NZALLOC): Change ME,TYPE,N to me,type,n.
21
bef6be3d
MF
222010-12-15 Mike Frysinger <vapier@gentoo.org>
23
24 * sim-memopt.c (OPTION_MAP_INFO): Define.
25 (memory_options): Handle --map-info.
26 (memory_option_handler): Handle OPTION_MAP_INFO.
27
5be229c0
MF
282010-11-22 Mike Frysinger <vapier@gentoo.org>
29
30 * sim-profile.c (PROFILE_PC_FREQ, PROFILE_PC_NR_BUCKETS,
31 PROFILE_PC_SHIFT, PROFILE_PC_START, PROFILE_PC_END,
32 PROFILE_INSN_COUNT): Add stubs when profile is disabled.
33
81c641e7
MF
342010-11-22 Mike Frysinger <vapier@gentoo.org>
35
36 * sim-core.c (WITH_HW): Add device casts to device_error,
37 device_io_read_buffer, and device_io_write_buffer.
38
6ab5626b
MF
392010-11-16 Mike Frysinger <vapier@gentoo.org>
40
41 * dv-sockser.c (dv_sockser_write_buffer): New function.
42 (dv_sockser_write): Rewrite to use dv_sockser_write_buffer.
43 * dv-sockser.h (dv_sockser_write_buffer): New prototype.
44
0bd15c7f
HPN
452010-10-07 Hans-Peter Nilsson <hp@axis.com>
46
47 * callback.c (os_lseek): Call wrap on lseek result.
48
363a6e9f
OS
492010-05-26 Ozkan Sezer <sezeroz@gmail.com>
50
51 * dv-sockser.c (dv_sockser_init): Check error return from socket()
52 call by its equality to -1 not by it being negative.
53 (connected_p): Likewise for accept() call.
54
c8551de3
MF
552010-04-23 Mike Frysinger <vapier@gentoo.org>
56
57 * sim-fpu.c (sim_fpu_zero, sim_fpu_qnan): Add 0 initializers.
58
ef93a840
MF
592010-04-21 Mike Frysinger <vapier@gentoo.org>
60
61 * profile.c (sim_profile_print_bar): Add cpu argument.
62
f093db8c
MF
632010-04-21 Mike Frysinger <vapier@gentoo.org>
64
65 * sim-profile.h (sim_profile_print_bar): Use sim_cpu, not SIM_CPU.
66
0d3d2c71
MF
672010-04-21 Mike Frysinger <vapier@gentoo.org>
68
69 * sim-profile.c (profile_vprintf, profile_printf): New functions.
70 (profile_print_pc): Convert sim_io_printf to profile_printf.
71 (profile_print_insn): Likewise.
72 (profile_print_memory): Likewise.
73 (profile_print_core): Likewise.
74 (profile_print_model): Likewise.
75 (sim_profile_print_bar): Likewise.
76 (profile_print_speed): Likewise.
77 (profile_print_addr_ranges): Likewise.
78 (profile_info): Likewise.
79 * sim-profile.h (sim_profile_print_bar): Add cpu argument.
80
bd0bd508
MF
812010-04-19 Mike Frysinger <vapier@gentoo.org>
82
83 * sim-model.c (OPTION_MODEL): Convert to enum.
84 (OPTION_MODEL_INFO): New enum.
85 (model_options): Add model-info/info-model entries.
86 (model_option_handler): Handle OPTION_MODEL_INFO.
87
e8a76151
MF
882010-04-13 Mike Frysinger <vapier@gentoo.org>
89
90 * dv-sockser.h (DV_SOCKSER_DISCONNECTED): Define.
91 * dv-sockser.c (dv_sockser_status): Set DV_SOCKSER_DISCONNECTED
92 initially.
93
cb1cc9c6
MF
942010-04-13 Mike Frysinger <vapier@gentoo.org>
95
96 * sim-hrw.c (sim_write): Add const to buf arg.
97 * sim-utils.h (sim_write_fn): Likewise.
98
58f03a40
MF
992010-04-12 Mike Frysinger <vapier@gentoo.org>
100
101 * sim-profile.h (PROFILE_BRANCH_TAKEN, PROFILE_BRANCH_UNTAKEN): New
102 defines.
103
21cf617c
MF
1042010-04-12 Mike Frysinger <vapier@gentoo.org>
105
106 * dv-core.c (dv_core_descriptor): Add NULL initializer.
107 * dv-glue.c (hw_glue_ports, dv_glue_descriptor): Likewise.
108 * dv-pal.c (hw_pal_ports, dv_pal_descriptor): Likewise.
109 * dv-sockser.c (sockser_options): Likewise.
110 * hw-ports.c (empty_hw_ports): Likewise.
111 * sim-hw.c (hw_options): Likewise.
112 * sim-model.c (model_options): Likewise.
113 * sim-options.c (standard_options): Likewise.
114 * sim-profile.c (profile_options): Likewise.
115 * sim-trace.c (trace_options): Likewise.
116 * sim-watch.c (watchpoint_options): Likewise.
117
e377ca52
MF
1182010-04-12 Mike Frysinger <vapier@gentoo.org>
119
120 * sim-options.c (dup_arg_p): Add "const" to the "arg" argument,
121 the local "arg_table" variable, and the xmalloc cast.
122
adaaf009
MF
1232010-04-10 Mike Frysinger <vapier@gentoo.org>
124
125 * sim-fpu.c (sim_fpu_print_status): Add const markings to local
126 "prefix" var.
092d8476 127 (sim_fpu_print_func): Add const markings to format buffer.
adaaf009 128
9ec7269f
MF
1292010-04-10 Mike Frysinger <vapier@gentoo.org>
130
131 * sim-fpu.c (sim_fpu_print_status): Remove duplicate break statements.
132
709b3bb3
MF
1332010-04-10 Mike Frysinger <vapier@gentoo.org>
134
135 * sim-trace.c (save_data): Add const markings to "buf" argument.
136
3dd68605
MF
1372010-04-10 Mike Frysinger <vapier@gentoo.org>
138
139 * sim-options.c (standard_option_handler): Add const markings to
140 local "type" var.
141
0ad22a74
MF
1422010-04-02 Mike Frysinger <vapier@gentoo.org>
143
144 * hw-ports.h: Fix spelling typos.
145
75005b3a
MF
1462010-03-30 Mike Frysinger <vapier@gentoo.org>
147
148 * configure.ac: Check for socklen_t.
149 * configure, config.in: Regenerated.
150 * dv-sockser.c (connected_p): Change addrlen type to socklen_t.
151
d946c288
MF
1522010-03-30 Mike Frysinger <vapier@gentoo.org>
153
154 * sim-utils.c (sim_io_eprintf_cpu): Use %s with printf string.
155 * sim-hw.c (hw_option_handler): Likewise.
156
ff398ee4
MF
1572010-03-30 Mike Frysinger <vapier@gentoo.org>
158
159 * sim-watch.c (watchpoint_type_to_str): Add const to return.
160 (interrupt_nr_to_str): Likewise.
161 (default_interrupt_names): Add const to pointer type.
162 (sim_watchpoint_install): Add const to prefix.
163 * sim-watch.h (struct _sim_watchpoints): Add const to interrupt_names.
164
6bf91687
MF
1652010-03-30 Mike Frysinger <vapier@gentoo.org>
166
167 * sim-core.c (sim_core_read_buffer): Change raddr to address_word.
168 (sim_core_write_buffer): Likewise.
169
15f3c2de
MF
1702010-03-30 Mike Frysinger <vapier@gentoo.org>
171
172 * sim-trace.c (trace_option_handler): Move cpu_nr decl behind
173 the SIM_HAVE_ADDR_RANGE define.
174
fb0cc53e
MF
1752010-03-30 Mike Frysinger <vapier@gentoo.org>
176
177 * sim-core.h (device_error): Add const to message, and add printf
178 format attribute.
179
739dfd28
MF
1802010-03-30 Mike Frysinger <vapier@gentoo.org>
181
182 * sim-profile.c (profile_print_addr_ranges): Wrap with the
183 SIM_HAVE_ADDR_RANGE define.
184
59db87ad
MF
1852010-03-30 Mike Frysinger <vapier@gentoo.org>
186
187 * dv-glue.c (hw_glue_ports): Swap static and const.
188
dc416615
MF
1892010-03-30 Mike Frysinger <vapier@gentoo.org>
190
191 * nrun.c (usage): Use void in definition.
192 * sim-options.c (dup_arg_p): Convert old-style function definition.
193 (sim_parse_args): Likewise.
194 (sim_print_help): Likewise.
195 * sim-trace.c (set_trace_option_mask): Likewise.
196 (set_trace_option): Likewise.
197 * sim-utils.c (sim_analyze_program): Likewise.
198 (sim_elapsed_time_get): Likewise.
199 (sim_elapsed_time_since): Likewise.
200
11409fac
MF
2012010-03-22 Mike Frysinger <vapier@gentoo.org>
202
203 * sim/common/sim-options.c (enum): Remove SIM_HAVE_BIENDIAN ifdef.
204 (standard_options): Likewise.
205 (standard_option_handler): Likewise.
206
6d519a46
MF
2072010-03-16 Mike Frysinger <vapier@gentoo.org>
208
209 * hw-ports.c (TRACE): Delete.
210 * hw-properties.c (TRACE): Delete.
211 (hw_find_ihandle_runtime_property): Change TRACE to HW_TRACE.
212 (hw_find_integer_property): Likewise.
213 (hw_find_integer_array_property): Likewise.
214 (hw_add_duplicate_property): Likewise.
215
799026a7
MF
2162010-03-15 Mike Frysinger <vapier@gentoo.org>
217
218 * hw-properties.h (hw_add_boolean_property): Rename "bool" to
219 "boolean".
220
fd87baa9
MF
2212010-02-04 Mike Frysinger <vapier@gentoo.org>
222
223 * sim-model.c: Include sim-model.h
224
294bcb78
MF
2252010-02-04 Mike Frysinger <vapier@gentoo.org>
226
227 * sim-base.h: Declare sim_state.cpu as a pointer in the comment. Drop
228 & from the STATE_CPU() examples.
229
80532737
DE
2302010-01-24 Doug Evans <dje@sebabeach.org>
231
d2c7a1a6
DE
232 * cgen-accfp.c (fextsfdf): New arg how. All callers updated.
233 (ftruncdfsf, floatsisf, flostsidf, ufloatsisf, fixsfsi, fixdfsi,
234 ufixsfsi): Ditto.
235 * cgen-fpu.h (CGEN_FPCONV_KIND): New enum.
236 (struct cgen_fp_ops): Update signatures of floating point conversion
237 operations.
238
80532737
DE
239 * Make-common.in (CGEN_SIM_DEPS): Define.
240 (CGEN_INCLUDE_DEPS): Use it.
241 (CGEN_MAIN_CPU_DEPS): Simplify.
242
1377e154
DE
2432010-01-22 Doug Evans <dje@sebabeach.org>
244
245 * cgen-ops.h (SUBWORDXFSI): Fix word ordering.
246 (SUBWORDTFSI, JOINSIDI): Ditto.
247
ec11f055
DE
2482010-01-05 Doug Evans <dje@sebabeach.org>
249
250 * cgen-types.h (SETDI): Delete, unused.
251
a09a0bfd
DE
2522009-12-02 Doug Evans <dje@sebabeach.org>
253
254 * cgen-engine.h: Remove duplicated comment.
255
62836bf4
DE
2562009-11-23 Doug Evans <dje@sebabeach.org>
257
258 * cgen-engine.h (EXTRACT_MSB0_SINT): Renamed from EXTRACT_MSB0_INT.
259 (EXTRACT_LSB0_SINT): Renamed from EXTRACT_LSB0_INT.
260
e94d449d
DE
2612009-11-22 Doug Evans <dje@sebabeach.org>
262
197fa1aa
DE
263 * cgen-engine.h (EXTRACT_MSB0_LGSINT, EXTRACT_MSB0_LGUINT): Define.
264 (EXTRACT_LSB0_LGSINT, EXTRACT_LSB0_LGUINT): Define.
265 (EXTRACT_FN, SEMANTIC_FN): Use CGEN_INSN_WORD in prototype
266 instead of CGEN_INSN_INT.
267
e94d449d
DE
268 * cgen-trace.h (trace_extract): Add cast to fix warning.
269
ca25db52
DE
2702009-11-05 Doug Evans <dje@sebabeach.org>
271
272 * cgen-mem.h (DECLARE_GETT): Don't inline.
273 (DECLARE_SETT): Ditto.
274
c272cb46
JS
2752009-10-15 Joel Sherrill <joel.sherrill@oarcorp.com>
276
277 * sim-inline.h: Fix spelling error.
278
1428dced
TT
2792009-10-02 Ralf Corsepius <ralf.corsepius@rtems.org>
280
281 * Make-common.in: Add datarootdir.
282
44330079
RW
2832009-08-29 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
284
0aec8eb1
RW
285 * aclocal.m4 (SIM_CHECK_MEMBER, SIM_CHECK_MEMBERS)
286 (SIM_CHECK_MEMBERS_1): Remove.
287 * configure.ac: Replace SIM_CHECK_MEMBERS call with equivalent
288 AC_CHECK_MEMBERS one.
289 * configure: Regenerate.
290
44330079
RW
291 * aclocal.m4 (SIM_CHECK_MEMBER): Use AU_ALIAS to define, not defn.
292 * configure: Regenerate.
293
d6416cdc
RW
2942009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
295
81ecdfbb
RW
296 * config.in: Regenerate.
297 * configure: Likewise.
298
c462b41b
RW
299 * aclocal.m4 (SIM_CHECK_MEMBER): Replace definition with
300 definition of AC_CHECK_MEMBER.
301
d6416cdc
RW
302 * aclocal.m4: m4_include toplevel config/override.m4.
303 * configure: Regenerate.
304
96e946ca
RW
3052009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
306
307 * Makefile.in (datarootdir): New variable.
308
6a8b8615
DE
3092009-07-07 Doug Evans <dje@sebabeach.org>
310
311 * Make-common.in (CPU_DIR): Define.
312
2c2a86d7
DE
3132009-07-06 Doug Evans <dje@sebabeach.org>
314
315 * Make-common.in (CGEN_CPU_EXTR,CGEN_CPU_READ): Pass canonical
316 identifiers for file types rather than encoding internal
317 implementation details of cgen.sh.
318 (CGEN_CPU_WRITE,CGEN_CPU_SEM,CGEN_CPU_SEMSW): Ditto.
319 * cgen.sh: Add support for parallel makes.
320 Rewrite cpu/decode handling to avoid generating "extrafiles" twice.
321
c28c63d8
JB
3222009-05-18 Jon Beniston <jon@beniston.com>
323
324 * gennltvals.sh: Add lm32 target.
325 * nltvals.def: Add lm32 syscall definitions.
326
982807ce
JB
3272009-03-19 J"orn Rennecke <joern.rennecke@arc.com> (tiny change)
328
329 Speed up simulator startup:
330 * sim-utils.c (zalloc): Use xcalloc.
331
2a8922a9
HPN
3322009-01-07 Hans-Peter Nilsson <hp@axis.com>
333
2225d5bd
HPN
334 * cgen-ops.h (ADDQI, SUBQI, MULQI, NEGQI, ABSQI, ADDHI, SUBHI)
335 (MULHI, NEGHI, ABSHI, ADDSI, SUBSI, MULSI, NEGSI, ABSSI, ADDDI)
336 (SUBDI, MULDI, NEGDI, ABSDI): Cast arguments to the unsigned type
337 variant; UQI, UHI, USI, UDI, and cast the result to the signed
338 type, QI, HI, SI, DI.
339
2a8922a9
HPN
340 * callback.c (os_error): Mark as being a noreturn function.
341 * sim-io.h (sim_io_error): Similar for sim_io_error.
342
6878aceb
JS
3432008-11-12 Joel Sherrill <joel.sherrill@oarcorp.com>
344
345 * aclocal.m4: Fix underquoting of function names.
346
be091327
DJ
3472008-10-21 Julian Brown <julian@codesourcery.com>
348
349 * Make-common.in (run$(EXEEXT)): Add LDFLAGS.
350
79e1e459
HPN
3512008-07-11 Hans-Peter Nilsson <hp@axis.com>
352
353 * common.m4: Add test for libz and zlib.h.
354 * configure: Regenerate to track ../common/common.m4 changes.
355 * config.in: Ditto.
356
6efef468
JM
3572008-06-06 Vladimir Prus <vladimir@codesourcery.com>
358 Daniel Jacobowitz <dan@codesourcery.com>
359 Joseph Myers <joseph@codesourcery.com>
360
361 * aclocal.m4: Include ../../config/acx.m4.
362 * common.m4: Use ACX_PKGVERSION and ACX_BUGURL.
363 * configure, config.in: Regenerate.
364 * Make-common.in (LIB_OBJS): Add version.o.
365 (version.c, version.o): New rules.
366 * run.c: Include version.h.
367 (usage): Add help parameter. Print output either to stdout or
368 stderr depending on that parameter.
369 (print_version): New.
370 (main): Check for --help and --version.
371 * run-sim.h (sim_target_display_usage): Add help parameter.
372 * version.h: New.
373
a4e64307
DJ
3742008-04-14 Hans Kester <kester.hans@gmail.com>
375
376 * sim-signal.c: Define missing signals for _WIN32.
377
2a3591b0
SR
3782008-02-12 M Ranga Swami Reddy <MR.Swami.Reddy@nsc.com>
379
380 * gennltvals.sh: Add cr16.
381 * nltvals.def: Rebuild.
382
b981d709
DJ
3832007-10-11 Jesper Nilsson <jesper.nilsson@axis.com>
384
eb639c50
DJ
385 * callback.c (cb_is_stdin, cb_is_stdout, cb_is_stderr): Add functions.
386 * syscall.c (cb_syscall): Test for stdin/out/err, not just fd 0/1/2.
b981d709 387
f40f1a01
NC
3882007-08-10 Nick Clifton <nickc@redhat.com>
389
390 * sim-memopt.c (memory_options): Mention that the
391 --memory-size switch accepts suffixes.
392 (parse_size): Handle a suffix on the size value.
393 * sim-options.c (standard_options): Mention that the mem-size
394 switch accepts suffixes.
395 (standard_option_handler): Handle a suffix on the size value.
396
edc5d9ec
HPN
3972006-12-21 Hans-Peter Nilsson <hp@axis.com>
398
399 * acconfig.h: Remove.
400 * config.in: Regenerate.
401
09d96939
TS
4022006-11-07 Thiemo Seufer <ths@mips.com>
403
404 * gentmap.c: Fix compile time warning.
405
7e129781
TS
4062006-11-07 Thiemo Seufer <ths@mips.com>
407
408 * sim-base.h (text_start, text_end, start_addr): Use bfd_vma type
409 for bfd text addresses.
410
3ae2e9a3
TS
4112006-08-29 Thiemo Seufer <ths@mips.com>
412 Nigel Stephens <nigel@mips.com>
413
414 * sim-fpu.c (pack_fpu): Handle QUIET_NAN correctly for
415 SIM_QUIET_NAN_NEGATED.
416
41ec9f20
TS
4172006-08-29 Nigel Stephens <nigel@mips.com>
418
419 * sim-profile.c (profile_pc_init): Initialise default profiling
420 frequency to a prime number.
421 (profile_print_pc): Convert gmon.out sample data into target
422 byte order.
423
e85e3205
RE
4242006-06-13 Richard Earnshaw <rearnsha@arm.com>
425
426 * aclocal.m4: Pass ../../intl to ZW_GNU_GETTEXT_SISTER_DIR.
427 * common.m4: Likewise.
428 * configure: Regenerated.
429
2f0122dc
DJ
4302006-06-05 Daniel Jacobowitz <dan@codesourcery.com>
431
432 * aclocal.m4: Use ZW_GNU_GETTEXT_SISTER_DIR.
433 * configure: Regenerated.
434
20e95c23
DJ
4352006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
436
437 * Make-common.in: Replace INTLLIBS and INTLDEPS with LIBINTL
438 and LIBINTL_DEP everywhere.
439 (CSEARCH): Use INCINTL.
440 * aclocal.m4: Use ZW_GNU_GETTEXT_SISTER_DIR. Include new
441 gettext macros.
442 * configure: Regenerated.
443
ea696909
HPN
4442006-03-29 Hans-Peter Nilsson <hp@axis.com>
445
446 * aclocal.m4 (SIM_AC_OPTION_HARDWARE): Correct duplicate-
447 option-contents test.
448
aba6488e
MM
4492005-11-28 Mark Mitchell <mark@codesourcery.com>
450
25520859
MM
451 * sim-signal.c (sim_signal_to_target): Fix typos.
452
aba6488e
MM
453 * sim-reason.c (sim_stop_reason): Use
454 sim_signal_to_target, not sim_signal_to_host.
455 * sim-signal.c (sim_signal_to_host): Fix typo.
456 (sim_signal_to_target): New function.
457
f010abaa
HPN
4582005-07-10 Hans-Peter Nilsson <hp@bitrange.com>
459
460 * sim-load.c (xprintf, eprintf): Remove fallout from ANSI_PROTOTYPES
461 change.
462
09b96ea0
ILT
4632005-07-08 Ian Lance Taylor <ian@airs.com>
464
efd36314
ILT
465 * sim-fpu.c (sim_fpu_abs): Always clear the sign bit.
466
09b96ea0
ILT
467 * sim-fpu.c (pack_fpu): If SIM_QUIET_NAN_NEGATED is defined, use a
468 different fraction for a quiet NaN.
469 (unpack_fpu): Likewise.
470
3b02a06b
BE
4712005-07-08 Ben Elliston <bje@au.ibm.com>
472
473 * callback.c: Remove ANSI_PROTOTYPES conditional code.
474 * sim-load.c: Likewise.
475 * syscall.c: Likewise.
476
18d59ab9
CV
4772005-05-24 Corinna Vinschen <vinschen@redhat.com>
478
479 * Make-common.in (LIBDEPS): Correctly use INTLDEPS for dependency
480 check.
481
149cfe5b
DJ
4822005-05-17 Daniel Jacobowitz <dan@codesourcery.com>
483
484 * Make-common.in (install-common, installdirs): Honor $DESTDIR.
485
3f6da722 4862005-04-20 Manoj Iyer <manjo@austin.ibm.com>
15254e9d 487
3f6da722
MI
488 * sim-types.h: Changed unsigned32 and unsigned64 to signed32
489 and signed64 for __ALPHA__.
490
2b193c4a
MK
4912005-03-23 Mark Kettenis <kettenis@gnu.org>
492
493 * aclocal.m4 Include ../../gettext.m4.
494 (CY_WITH_NLS, CY_GNU_GETTEXT, AM_PATH_PROG_WITH_TEST)
495 (AM_LC_MESSAGES): Remove.
496 * configure: Regenerate.
497
51216631
JB
4982005-02-28 Jim Blandy <jimb@redhat.com>
499
500 * aclocal.m4 (SIM_AC_OPTION_WARNINGS): Don't include
501 -Wuninitialized in the default list of build warnings if CFLAGS is
502 set, and doesn't include -O. (Using -Wuninitialized without
503 optimization produces a warning, which interferes with compilation
504 with -Werror.)
505
0c4507fd
JB
5062005-02-21 Jim Blandy <jimb@redhat.com>
507
508 * callback.c (os_fstat): Don't declare 't' unless it's used.
509
9ab46d53
JB
5102005-02-09 Jim Blandy <jimb@redhat.com>
511
512 * Make-common.in (CGEN): Load guile.scm, and include a trailing
513 '-s' argument.
514 (CGEN_FLAGS_TO_PASS): Include single quotes around the reference
515 to $(CGEN), to ensure that the command substitution happens where
516 the variable is referenced in the submake, not when the submake's
517 arguments are expanded.
518 (cgen.sh): Be prepared for the 'cgen' argument to contain spaces.
519 (arch, cpu, decode, cpu-decode, defs, desc): Place the name of the
520 application Scheme script directly after ${cgen}; don't precede it
521 with a -s.
522
f4f8cce4
HPN
5232005-01-28 Hans-Peter Nilsson <hp@axis.com>
524
97f669ed
HPN
525 * syscall.c (cb_syscall) <case CB_SYS_pipe>: New case.
526 * callback.c [HAVE_LIMITS_H]: Include limits.h.
527 Include libiberty.h.
528 (os_close, os_read, os_write, os_fstat, os_ftruncate): Support fd
529 being either end of a pipe.
530 (os_pipe, os_pipe_empty, os_pipe_nonempty): New functions.
531 (os_shutdown): Clear pipe state.
532 (default_callback): Initialize new members.
533
f4f8cce4
HPN
534 * callback.c (default_callback): Initialize target_endian.
535 (cb_store_target_endian): Renamed from store, new first parameter
536 host_callback *cb, drop last parameter big_p. Take endianness
537 from cb.
538 (cb_host_to_target_stat): Change to use cb_store_target_endian.
539 Remove variable big_p.
540 * nrun.c (main): Initialize default_callback.target_endian.
541
35695fd6
AC
5422005-01-14 Andrew Cagney <cagney@gnu.org>
543
544 * configure.ac: Replace SIM_AC_COMMON with sinclude of common.m4.
545 Add explicit call to AC_CONFIG_HEADER.
546 * common.m4: Delete call to AC_CONFIG_HEADER, update usage.
547 * configure: Re-generate.
548
f0569246
AC
5492005-01-12 Andrew Cagney <cagney@gnu.org>
550
551 * common.m4: New file, based on of aclocal.m4.
552
38f48d72
AC
5532005-01-11 Andrew Cagney <cagney@localhost.localdomain>
554
555 * aclocal.m4 (SIM_AC_OUTPUT): Rewrite to use 2.59 macros.
556 * configure: Regenerated to track ../common/aclocal.m4 changes.
557
b7026657
AC
5582005-01-07 Andrew Cagney <cagney@gnu.org>
559
560 * configure.ac: Rename configure.in, require autoconf 2.59.
561 * aclocal.m4 (SIM_AC_COMMON): Delete call to AC_CONFIG_AUX_DIR.
562 * configure: Re-generate.
563
5d945fec
HPN
5642004-12-15 Hans-Peter Nilsson <hp@axis.com>
565
566 * syscall.c (cb_syscall) <case CB_SYS_truncate>
567 <case CB_SYS_ftruncate>: New cases.
568
0d3cd463
HPN
5692004-12-13 Hans-Peter Nilsson <hp@axis.com>
570
571 * syscall.c (cb_syscall) <case CB_SYS_lstat>: New case.
82571856 572 (cb_syscall) <case CB_SYS_rename>: New case.
af596d08 573 * callback.c (os_lstat): New function.
0d3cd463 574
119860e5
HPN
5752004-12-08 Hans-Peter Nilsson <hp@axis.com>
576
027e2a04
HPN
577 * run.1: Document --sysroot=filepath.
578 * sim-options.c (STANDARD_OPTIONS): New member OPTION_SYSROOT.
579 (standard_options): Support --sysroot=<path>.
580 (standard_option_handler): Handle OPTION_SYSROOT.
581 * syscall.c (simulator_sysroot): Define, initialized empty.
582 (get_path): Prepend simulator_sysroot to absolute file path.
583 [HAVE_STRING_H]: Include string.h.
584 [!HAVE_STRING_H && HAVE_STRINGS_H]: Include strings.h.
585 * nrun.c [HAVE_UNISTD_H]: Include unistd.h.
586 (main): If simulator_sysroot is not empty, chdir there.
587 * sim-config.h (simulator_sysroot): Declare.
588
119860e5
HPN
589 * aclocal.m4 (SIM_AC_OUTPUT): Substitute @cgen_breaks@ for "break
590 cgen_rtx_error" in a CGEN-generated simulator.
591 * gdbinit.in: Break on sim_core_signal too. Have autoconf
592 replacement for CGEN-related breakpoints.
593
70ae6611
HPN
5942004-12-07 Hans-Peter Nilsson <hp@axis.com>
595
596 * Make-common.in (sim-basics_h): Add $(callback_h).
597
697afb65
HPN
5982004-12-03 Hans-Peter Nilsson <hp@axis.com>
599
600 * configure.in (SIM_CHECK_MEMBERS): Call for struct stat members
601 st_dev, st_ino, st_mode, st_nlink, st_uid, st_gid, st_rdev,
602 st_size, st_blksize, st_blocks, st_atime, st_mtime and st_ctime.
603 * aclocal.m4 (SIM_CHECK_MEMBER, SIM_CHECK_MEMBERS_1)
604 (SIM_CHECK_MEMBERS): New macros.
605 * callback.c (cb_host_to_target_stat): Use temporary macro ST_x
606 for struct stat member test and write. Add ST_x calls for each
607 struct stat member tested in configure.in. Wrap each ST_x call in
608 #ifdef of configure macro for that member.
609 * configure, config.in: Regenerate.
610
6e56eb07
HPN
6112004-12-01 Hans-Peter Nilsson <hp@axis.com>
612
613 * cgen.sh: New thirteenth parameter opcfile, defaulting to
614 /dev/null.
615 <case desc>: Pass -OPC opcfile.
616 * Make-common.in (cgen-desc): Pass $(opcfile) as thirteenth
617 parameter to cgen.sh.
618
c87368ac
RE
6192004-11-30 Richard Earnshaw <rearnsha@arm.com>
620
621 * Make-common.in (sim-basics_h): Correct dependencies on
622 cconfig.h and tconfig.h
623 (sim-load.o): Correct typo in sim-basics_h dependency.
624
08cd3760
RE
6252004-11-18 Richard Earnshaw <rearnsha@arm.com>
626
15f5e61f
RE
627 * Make-common.in (sim-*_h): Add macros for all sim headers listing
628 sub-dependencies for other sim files that they include.
629 (sim_main_headers): Use sim-*_h macros.
08cd3760
RE
630 (sim-load.o): Depend on sim-basics_h, not sim_main_headers.
631
1afbf186
HPN
6322004-11-16 Hans-Peter Nilsson <hp@axis.com>
633
1d72487d
HPN
634 * sim-config.c (sim_config): Recognize when a bfd has unspecified
635 endian information.
636
1afbf186
HPN
637 * Make-common.in (sim-load.o): Depend on $(sim_main_headers) and
638 $(remote_sim_h) too.
639 (sim_main_headers): Add sim-utils.h.
640
a3bb1089
FCE
6412004-10-07 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
642
643 * cgen-defs.h (ENDSWITCH): Changed to compile with gcc-3.4.2.
644
5a645dc5
AC
6452004-07-26 Andrew Cagney <cagney@gnu.org>
646
647 Problem from Olaf Hering <olh@suse.de>.
648 * Makefile.in (install-man, installdirs): Add DESTDIR prefix.
649
109d3db3
BE
6502004-07-10 Ben Elliston <bje@au.ibm.com>
651
652 * hw-tree.c (parse_integer_property): Typo fix in comments.
653 * sim-options.c (sim_args_command): Likewise.
654
0aaa4a81
AC
6552004-06-28 Andrew Cagney <cagney@gnu.org>
656
657 * run.c: Rename ui_loop_hook to deprecated_ui_loop_hook.
658
0242f9ea
JR
6592004-06-27 J"orn Rennecke <joern.rennecke@superh.com>
660
661 * callback.c (os_shutdown): Fix bug in last change: actually
662 mark file descriptors as available on startup.
663
594ee3a7
JR
6642004-06-25 J"orn Rennecke <joern.rennecke@superh.com>
665
666 [ include/gdb: * callback.h (host_callback_struct): Replace
667 members fdopen and alwaysopen with fd_buddy. ]
668 * callback.c: Changed all users.
669
5f510f9c
AM
6702004-06-15 Alan Modra <amodra@bigpond.net.au>
671
672 * sim-load.c (sim_load_file): Use bfd_get_section_size
673 instead of bfd_get_section_size_before_reloc.
674
7659f80a
DJ
6752004-05-18 Daniel Jacobowitz <dan@debian.org>
676
677 * dv-glue.c (hw_glue_finish): Cast result of sizeof to long before
678 passing it to printf.
679
41ee5402
DJ
6802004-05-10 Daniel Jacobowitz <dan@debian.org>
681
682 * callback.c: Update copyright dates.
683 * run.c: Likewise.
684 * sim-basics.h: Likewise.
685 * sim-load.c: Likewise.
686 * syscall.c: Likewise.
687
6882004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
689
690 * callback.c: Include cconfig.h instead of config.h.
691 * run.c: Likewise.
692 * sim-basics.h: Likewise.
693 * sim-load.c: Likewise.
694 * syscall.c: Likewise.
695
6d0c993e
BE
6962004-01-16 Ben Elliston <bje@wasabisystems.com>
697
698 * Makefile.in (clean): Remove rm -f $(ALL), as $(ALL) is empty.
699
6edf0760
NC
7002003-12-19 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
701
702 * sim-core.c (sim_core_trans_addr): Added for m32r-linux-run.
703
a69146da
KH
7042003-11-22 Kazu Hirata <kazu@cs.umass.edu>
705
706 * sim-options.c (standard_options): Fix the names of H8
707 variants.
708
fc0a2244
AC
7092003-10-30 Andrew Cagney <cagney@redhat.com>
710
711 * sim-trace.c, sim-base.h: Replace "struct symbol_cache_entry"
712 with "struct bfd_symbol".
713
ee3073b5
AC
7142003-10-21 Andrew Cagney <cagney@redhat.com>
715
716 * callback.c (os_truncate): Call "truncate", and not "stat".
717
198beae2
AC
7182003-10-20 Andrew Cagney <cagney@redhat.com>
719
720 * sim-base.h: Replace "struct sec" with "struct bfd_section".
721
8822d001
JR
7222003-10-15 J"orn Rennecke <joern.rennecke@superh.com>
723
724 * callback.c (os_ftruncate, os_truncate): New functions.
725 (default_callback): Initialize ftruncate and truncate members.
726
ea52ff81
DB
7272003-09-08 Dave Brolley <brolley@redhat.com>
728
729 On behalf of Doug Evans <dje@sebabeach.org>
730 * cgen.sh: New arg archfile.
731 * Make-common.in (cgen-arch,cgen-cpu,cgen-defs,cgen-decode,
732 cgen-cpu-decode,cgen-desc): Update call to cgen.sh.
733
e158f0a0
AC
7342003-08-28 Andrew Cagney <cagney@redhat.com>
735
736 * dv-glue.c (hw_glue_finish): Change %d to %ld to match sizeof.
737 * sim-options.c (print_help): Cast the format with specifier to
738 "int".
739
33319edb
DB
7402003-08-20 Michael Snyder <msnyder@redhat.com>
741 Dave Brolley <brolley@redhat.com>
742
743 * cgen-par.h (flags, word1): New target-specific
744 fields of CGEN_WRITE_QUEUE_ELEMENT.
745 (CGEN_WRITE_QUEUE_ELEMENT_FLAGS): New accessor macro.
746 (CGEN_WRITE_QUEUE_ELEMENT_WORD1): New accessor macro.
747 * gennltvals.sh: Add frv target.
748 * nltvals.def: Add frv target.
749
72f536bd
MS
7502003-06-23 Michael Snyder <msnyder@redhat.com>
751
ac59bf8d 752 * nrun.c (main): Delete h8/300 ifdef (sim now handles signals).
72f536bd
MS
753 * sim-reg.c: Fix cut-and-paste bug in comment.
754
1f1b2817
AC
7552003-06-22 Andrew Cagney <cagney@redhat.com>
756
757 From matthew green <mrg@redhat.com>:
758 * sim-fpu.h: Update copyright.
759 (sim_fpu_fraction, sim_fpu_guard): New prototypes.
760 * sim-fpu.c: Update copyright.
761 (sim_fpu_fraction, sim_fpu_guard): New inline functions.
762
89c0d7dd 7632003-06-17 Frank Ch. Eigler <fche@redhat.com>
6ec8fa7a 764
89c0d7dd 765 From Doug Evans <dje@sebabeach.org>:
6ec8fa7a
FCE
766 * cgen-trace.h (sim_disasm_read_memory): Update args to be compatible
767 with disassemble_info:read_memory_func.
768 * cgen-trace.c (sim_disasm_read_memory): Ditto.
769
828c9ae6
MS
7702003-06-04 Michael Snyder <msnyder@redhat.com>
771
772 * common/run.c (main): Remove SIM_H8300 ifdef.
773 (usage): Ditto.
774 * common/sim-options.c (STANDARD_OPTIONS): Add SIM_H8300SX.
775 (standard_options): Add '-x' for h8/300sx.
776 (standard_option_handler): Add case for SIM_H8300SX.
777
80d35d90
MS
7782003-04-13 Michael Snyder <msnyder@redhat.com>
779
780 * Make-common.in (sim-events.o, sim-config.o): Depend on sim-main.h.
781
876fec02
AC
7822003-03-01 Andrew Cagney <cagney@redhat.com>
783
784 * sim-engine.c (sim_engine_halt): If jmpbuf is invalid, abort.
785 (sim_engine_vabort): Ditto.
786
6b4a8935
AC
7872003-02-27 Andrew Cagney <cagney@redhat.com>
788
789 * sim-utils.h (sim_analyze_program, sim_load_file): Rename _bfd to bfd.
790 * sim-hload.c (sim_load), sim-base.h (sim_state_base): Ditto.
791 * nrun.c (main): Ditto.
792
dbd7cd63
AC
7932003-02-26 Andrew Cagney <cagney@redhat.com>
794
795 * sim-engine.h (sim_engine_abort): Add noreturn attribute.
796 (sim_engine_vabort): Ditto.
797 (sim_engine_halt, sim_engine_restart): Ditto.
798
836cc9f4
AC
7992003-02-20 Andrew Cagney <ac131313@redhat.com>
800
801 * Make-common.in (SIM_NEW_COMMON_OBJS): Remove sim-break.o
802 (sim-break_h): Delete macro.
803 (sim-break.o): Delete rule.
804 * sim-break.c: Delete file.
805 * sim-break.h: Delete file.
806 * sim-base.h [SIM_HAVE_BREAKPOINTS]: Don't include "sim-break.h".
807 (STATE_BREAKPOINTS): Delete macro.
808 (sim_state_base): Delete field breakpoints.
809 * sim-module.c (modules) [SIM_HAVE_BREAKPOINTS]: Don't add
810 sim_break_install to array.
811
45a15d6f
KH
8122003-01-08 Kazu Hirata <kazu@cs.umass.edu>
813
814 * run.c (usage): Fix typos.
815
127a77fe
CD
8162002-11-27 Richard Sandiford <rsandifo@redhat.com>
817
818 * sim-fpu.c (sim_fpu_inv): Use sim_fpu_div.
819
b85e4829
AC
8202002-11-22 Andrew Cagney <ac131313@redhat.com>
821
822 * dv-core.c: Update copyright. sim/common contributed to the FSF.
823 * dv-glue.c, dv-pal.c, hw-base.c, hw-base.h, hw-device.c: Ditto.
824 * hw-device.h, hw-handles.c, hw-handles.h: Ditto.
825 * hw-instances.c, hw-instances.h, hw-properties.c: Ditto.
826 * hw-properties.h, hw-tree.c, hw-tree.h, sim-alu.h: Ditto.
827 * sim-basics.h, sim-bits.c, sim-bits.h, sim-config.c: Ditto.
828 * sim-config.h, sim-core.c, sim-core.h, sim-endian.c: Ditto.
829 * sim-endian.h, sim-events.c, sim-events.h, sim-inline.c: Ditto.
830 * sim-inline.h, sim-io.c, sim-io.h, sim-n-bits.h: Ditto.
831 * sim-n-core.h, sim-n-endian.h, sim-types.h: Ditto.
832
d25b1553
AC
8332002-11-13 Andrew Cagney <cagney@redhat.com>
834
835 * run.c (main): Remove SIM_HAVE_ENVIRONMENT from #endif.
836
d690312f
CD
8372002-11-06 Richard Sandiford <rsandifo@redhat.com>
838
839 * Make-common.in (SIM_EXTRA_DISTCLEAN): New macro.
840 (distclean): Depend on it.
841
7c3e3b33
AM
8422002-10-14 Alan Modra <amodra@bigpond.net.au>
843
844 * cgen-trace.h: Test __BFD_H_SEEN__ rather than BFD_VERSION.
845
7ede505a
DB
8462002-08-29 Dave Brolley <brolley@redhat.com>
847
848 * Make-common.in (CGEN_READ_SCM): Remove ../../cgen/stamp-cgen.
849
75c4388a
AC
8502002-07-17 Andrew Cagney <cagney@redhat.com>
851
852 * run-sim.h: Add #ifdef RUN_SIM_H wrapper.
853 (sim_set_callbacks, sim_size, sim_trace)
854 (sim_set_trace, sim_set_profile_size, sim_kill): Declare. Moved
855 to here from "gdb/remote-sim.h".
856
7a3085c1 8572002-07-16 Andrew Cagney <ac131313@redhat.com>
39248af8
AC
858
859 * sim-resume.c (sim_resume): Add local variable sig_to_deliver to
860 avoid possible longjmp problems with automatic variable siggnal.
861
076043f2
AC
8622002-07-14 Andrew Cagney <ac131313@redhat.com>
863
864 From 2002-07-11 Momchil Velikov <velco@fadata.bg>:
865 * Make-common.in (installdirs): Make $(libdir) too, needed when
866 installing libsim.a.
867
3fbeef0b
AC
8682002-07-13 Andrew Cagney <ac131313@redhat.com>
869
870 * gennltvals.sh (dir): Mark d30v as obsolete.
871 * nltvals.def: Remove d30v.
872
bf962092
AC
8732002-06-17 Andrew Cagney <cagney@redhat.com>
874
27961795
AC
875 * hw-events.c (hw_event_queue_schedule): Initialize `dummy'.
876
bf962092
AC
877 * sim-memopt.c: Include <unistd.h>.
878 (do_memopt_add): Fix printf format.
879 * sim-events.c (sim_events_schedule): Initialize ``dummy''.
880
c8cca39f
AC
8812002-06-16 Andrew Cagney <ac131313@redhat.com>
882
883 * aclocal.m4 (SIM_AC_OPTION_WARNINGS): Update to match GDB's
884 --enable-gdb-build-warnings.
885 * configure: Regenerated to track ../common/aclocal.m4 changes.
886
307041b7 8872002-06-09 Aldy Hernandez <aldyh@redhat.com>
7d7d930f
AH
888
889 * sim-fpu.c (unpack_fpu): Initialize exponent for
890 sim_fpu_class_zero.
891 (i2fpu): Same.
892 (sim_fpu_sqrt): Same.
893
3c25f8c7
AC
8942002-06-08 Andrew Cagney <cagney@redhat.com>
895
896 * gentmap.c (gen_targ_map_c): Generate "gdb/callback.h".
897 * sim-basics.h: Include "gdb/callback.h" and "gdb/remote-sim.h".
898 * run.c: Ditto.
899 * sim-load.c: Ditto.
900 * callback.c: Ditto.
901 * syscall.c: Ditto.
902 * Make-common.in (callback_h): Define.
903 (remote_sim_h): Define.
904 (run.o): Update.
905 (callback.o): Update.
906 (syscall.o): Update.
907 (sim-load.o):
908 (nrun.o): Update.
909 (sim-hload.o): Update.
910 (sim-io.o): Update.
911 (sim-reason.o): Update.
912 (sim-reg.o): Update.
913 (sim-resume.o): Update.
914
dbec3bef
KH
9152002-05-30 Kazu Hirata <kazu@cs.umass.edu>
916
917 * run.c: Fix formatting.
918
de4112fa
NC
9192002-05-20 Nick Clifton <nickc@cambridge.redhat.com>
920
921 * run-sim.h: New header. Provide prototypes for functions used
922 between run() and libsim.a which are not used by GDB.
923 * run.c: Include run-sim.h.
924 (main): If SIM_TARGET_SWITCHES is defined call
925 sim_target_parse_command_line.
926 (usage): If SIM_TARGET_SWITCHES is defined call
927 sim_target_display_usage.
928
a8cdafbd
AV
9292002-05-17 Andrey Volkov <avolkov@transas.com>
930
931 * run.c: Made h8300s as new target, not h8300h alias.
932 Added new option -S (h8300s target)
933 * sim-options.c: Ditto.
934
5accf1ff
CD
9352002-05-01 Chris Demetriou <cgd@broadcom.com>
936
937 * callback.c: Use 'deprecated' rather than 'depreciated.'
938
080fe24b
AC
9392002-02-24 Andrew Cagney <ac131313@redhat.com>
940
941 From wiz at danbala:
942 * sim-fpu.h: Fix grammar and typos.
943 Fix PR gdb/287.
944
6439295f
CD
9452002-02-10 Chris Demetriou <cgd@broadcom.com>
946
947 * callback.c: Fix some spelling errors.
948 * hw-device.h: Likewise.
949 * hw-tree.c: Likewise.
950 * sim-abort.c: Likewise.
951 * sim-alu.h: Likewise.
952 * sim-core.h: Likewise.
953 * sim-events.c: Likewise.
954 * sim-events.h: Likewise.
955 * sim-fpu.h: Likewise.
956 * sim-profile.h: Likewise.
957 * sim-utils.c: Likewise.
958
dea03d4e
HPN
9592002-01-31 Hans-Peter Nilsson <hp@axis.com>
960
961 * cgen-ops.h (ADDCQI, ADDCFQI, ADDOFQI, SUBCQI, SUBCFQI, SUBOFQI):
962 New functions.
963
1636f0bb
BE
9642002-01-20 Ben Elliston <bje@redhat.com>
965
966 * sim-fpu.h (SIM_FPU_IS_QNAN): Replace "Quite" with "Quiet" in
967 the comment for this enumerator.
968
b59d44de
BE
9692002-01-14 Ben Elliston <bje@redhat.com>
970
971 * sim-fpu.h: Fix comment about sim_fpu_* constants.
972
280b26c0
KH
9732001-12-20 Kazu Hirata <kazu@hxi.com>
974
975 * run.c (usage): Fix a typo.
976
e3e473da
BE
9772001-07-05 Ben Elliston <bje@redhat.com>
978
979 * Make-common.in (srccgen): Remove.
980 (CGEN_CPU_DIR): Define.
981 (CGEN_READ_SCM): Redefine without $(srccgen).
982 (CGEN_ARCH_SCM): Ditto.
983 (CGEN_CPU_SCM): Ditto.
984 (CGEN_DECODE_SCM): Ditto.
985 (CGEN_DESC_SCM): Ditto.
986
2836ee25
FCE
9872001-04-25 Frank Ch. Eigler <fche@redhat.com>
988
989 * sim-load.c (sim_load_file): Put it back: external now.
990 * sim-utils.c (sim_analyze_program): Ditto. Nyuk nyuk nyuk.
991
5b778125
AC
9922001-04-21 Andrew Cagney <ac131313@redhat.com>
993
994 * sim-load.c (sim_load_file): Delete call bfd_cache_close. BFD
995 internal interface.
996 * sim-utils.c (sim_analyze_program): Ditto.
997
6ec9f4a9
FCE
9982001-04-19 Frank Ch. Eigler <fche@redhat.com>
999
1000 * sim-utils.c (sim_analyze_program): Call bfd_cache_close after
1001 we're finished with its immediate use.
1002 * sim-load.c (sim_load_file): Ditto.
1003
764f1408
FCE
10042001-03-16 Frank Ch. Eigler <fche@redhat.com>
1005
1006 Add support for mmap-based memory regions.
1007 * sim-memopt.c (mmap_next_fd): New global.
1008 (sim_memory_init): Reinitialize it.
1009 (OPTION_MEMORY_MAPFILE, memory_option_handler): Support new
1010 "--memory-mapfile FILE" option. Check for some errors.
1011 (do_memopt_add): Conditionally do mmap instead of malloc for
1012 backing store of simulated memory. Check for more errors.
1013 (do_simopt_delete, sim_memory_uninstall): Corresponding cleanup.
1014 * sim-memopt.h (munmap_length): New member of _sim_memopt.
1015 * configure.in: Look for mmap/fstat related functions and headers.
1016 * config.in, configure: Regenerated.
1017
35c20992
FCE
10182001-03-15 Frank Ch. Eigler <fche@redhat.com>
1019
1020 * sim-core.c (sim_core_map_attach): Correct overlap-related
1021 error messages.
1022
f6bb7a3b
MM
10232001-03-07 Michael Meissner <meissner@redhat.com>
1024
1025 * run.c (alloca-conf.h): Delete, no longer provided.
1026
01816cd8
BE
10272001-02-22 Ben Elliston <bje@redhat.com>
1028
1029 * sim-trace.h (TRACE_VPU_IDX): Add.
1030 (TRACE_vpu): Define.
1031 (WITH_TRACE_VPU_P): Likewise.
1032 (TRACE_VPU_P): Likewise.
1033 * sim-trace.c (OPTION_TRACE_VPU): Define.
1034 (trace_options): Add --trace-vpu.
1035 (trace_option_handler): Handle OPTION_TRACE_VPU.
1036 (trace_option_handler): Include VPU tracing in --trace-semantics.
1037 (trace_idx_to_str): Handle TRACE_VPU_IDX.
1038
44a9331c
BE
10392001-02-21 Ben Elliston <bje@redhat.com>
1040
1041 * sim-trace.h (TRACE_BRANCH_INPUT1): New macro.
1042 (TRACE_BRANCH_INPUT2): Likewise.
1043
c43ad8eb
BE
10442001-02-09 Ben Elliston <bje@redhat.com>
1045
1046 * (profile_print_pc): Write header out in target byte order.
1047
10482001-02-09 Ben Elliston <bje@redhat.com>
1049
1050 * sim-profile.c (profile_pc_init): Correct bug in loop logic when
1051 adjusting the pc shift value.
1052
9397fcbf
FCE
10532001-01-12 Chris Demetriou <cgd@sibyte.com>
1054
badd2b1e
BE
1055 * aclocal.m4 (SIM_AC_OPTION_SCACHE): Properly handle the case
1056 where a numeric value is supplied.
9397fcbf 1057
63fe1038
BE
10582001-01-06 Ben Elliston <bje@redhat.com>
1059
1060 * cgen.sh: Allow extrafiles to include the semantics files when
1061 generating an ISA-specific decoder.
1062
b6f6b44d
AO
10632000-12-27 Alexandre Oliva <aoliva@redhat.com>
1064
1065 * Make-common.in (sim-io.o): Depend on targ-vals.h.
1066
ad8707b5
BE
10672000-12-23 Ben Elliston <bje@redhat.com>
1068
1069 * cgen-trace.c (trace_result): Handle 'f' type operands; output
1070 them to the trace stream using sim_fpu_printn_fpu. Include
1071 "sim-fpu.h".
1072
b94c0966
BE
10732000-12-15 Ben Elliston <bje@redhat.com>
1074
1075 * sim-fpu.h (sim_fpu_printn_fpu): Declare.
1076 * sim-fpu.c (print_bits): Add digits parameter. Print only as many
1077 trailing digits as specified (-1 to print all digits).
1078 (sim_fpu_print_fpu): New wrapper around sim_fpu_printn_fpu.
1079 (sim_fpu_printn_fpu): Rename from sim_fpu_print_fpu; update calls
1080 to print_bits ().
1081
fd5d712e
BE
10822000-12-13 Ben Elliston <bje@redhat.com>
1083
1084 * cgen.sh: Set prefix/PREFIX (append ISA if applicable). Factor
1085 sed expressions into $sedscript, substituting @prefix@/@PREFIX@.
1086 (defs): New action.
1087
4c15ccf7
GK
10882000-12-12 Geoffrey Keating <geoffk@redhat.com>
1089
1090 * sim-endian.h: Don't have parameters on macro definitions which
1091 are simply renaming functions, to permit use of XCONCAT2 in both
1092 the macro name and the arguments in a use of such a definition.
1093
0d277f51
BE
10942000-12-11 Ben Elliston <bje@redhat.com>
1095
1096 * cgen-ops.h (SUBWORDDFDI): New function.
1097
bb4e03e5
BE
10982000-12-05 Ben Elliston <bje@redhat.com>
1099
c79688eb
BE
1100 * Make-common.in (cgen-defs): New target.
1101 (cgen-decode): Pass $(EXTRAFILES).
1102
bb4e03e5
BE
1103 * genmloop.sh: Use @prefix@, not @cpu@ throughout. Add -prefix and
1104 -outfile-suffix options.
1105
76440e4b
BE
11062000-12-04 Ben Elliston <bje@redhat.com>
1107
6227bc85
BE
1108 * cgen-ops.h (SUBWORDSIQI): Mask off top bits.
1109 (SUBWORDSIUQI): Likewise.
1110 (SUBWORDDIHI): Likewise.
1111 (SUBWORDDIQI): New function.
1112
76440e4b
BE
1113 * cgen-trace.c (disassemble_insn): Remove unused declaration.
1114 * cgen-scache.c (scache_option_handler): Remove unused local var.
1115
cdc2a5c3
BE
11162000-12-03 Ben Elliston <bje@redhat.com>
1117
1118 * sim-profile.c (profile_option_handler): Remove unused prof_nr.
1119
4e73b9c1
SC
11202000-11-26 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1121
1122 * hw-events.c (delete_hw_event_data): Remove the scheduled events.
1123
ce9bc8d1
SC
11242000-11-26 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1125
1126 * dv-core.c (dv_core_attach_address_callback): Don't abort if
1127 space is not zero.
1128
ce13044d
SC
11292000-11-24 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1130
1131 * hw-base.c (hw_delete): Don't free base_of_hw since it's freed.
1132 (set_hw_delete): Moved the macro as a function.
1133 * hw-base.h (set_hw_delete): Declare as external function.
1134 * hw-alloc.c (delete_hw_alloc_data): Allow to free the memory
1135 allocated using hw_malloc.
1136
7c070881
SC
11372000-11-24 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1138
1139 * sim-options.c (sim_parse_args): Free the memory used for
1140 long_options, short_options, handlers, opt_cpu, orig_val.
1141
4f49fa1b
BE
11422000-11-20 Ben Elliston <bje@redhat.com>
1143
1144 * cgen-ops.h (SUBBI): New macro.
1145 (SUBWORDSIQI, SUBWORDSIHI, SUBWORDSIUQI): New functions.
1146 (SUBWORDDIHI, SUBWORDDIUQI, SUBWORDDIDF): Likewise.
1147
2d84da1b
BE
11482000-11-16 Ben Elliston <bje@redhat.com>
1149
1150 * cgen-types.h (VOID): New type.
1151
dbc168af
BE
11522000-11-09 Ben Elliston <bje@redhat.com>
1153
1154 * sim-fpu.c (sim_fpu_one): Set exponent to 0.
1155 (sim_fpu_two): Set exponent to 1.
1156
e4f5c43e
EZ
11572000-10-26 Ben Elliston <bje@redhat.com>
1158
1159 * cgen.sh: Handle an isa argument between cpu and mach. Default to
1160 `all'. Pass `-i' options to cgen applications.
1161 * Make-common.in (cgen-arch, cgen-cpu, cgen-decode, cgen-cpu-decode,
1162 cgen-desc): Pass $(isa) to cgen.sh.
1163
a8d894af
BE
11642000-10-08 Ben Elliston <bje@redhat.com>
1165
1166 * cgen-utils.c (cgen_rtx_error): New function.
1167
11682000-10-07 Ben Elliston <bje@redhat.com>
1169
1170 * cgen-trace.c (sim_cgen_disassemble_insn): Handle failure
1171 conditions for sim_core_read_buffer().
1172
6d4c43bf
DB
11732000-09-26 Dave Brolley <brolley@redhat.com>
1174
1175 * cgen-utils.c (RORQI): New function.
1176 (ROLQI): New function.
1177 (RORHI): New function.
1178 (ROLHI): New function.
1179
0e266e5c
DB
11802000-08-28 Dave Brolley <brolley@redhat.com>
1181
1182 * cgen-trace.c (sim_cgen_disassemble_insn): Make sure entire insn is
1183 in insn_value if it will fit.
1184
604259a0
FCE
11852000-08-21 Frank Ch. Eigler <fche@redhat.com>
1186
1187 * Make-common.in, cgen.sh: Contribute CGEN-related build targets/rules.
1188
4193618c
DB
11892000-08-15 Dave Brolley <brolley@redhat.com>
1190
1191 * sim-profile.c (profile_print_speed): Print cpu frequency if not zero.
1192
11932000-08-15 Dave Brolley <brolley@redhat.com>
1194
1195 * sim-profile.h (PROFILE_DATA): Add cpu_freq.
1196 (PROFILE_CPU_FREQ): New macro.
1197 * sim-profile.c (OPTION_PROFILE_CPU_FREQUENCY): New enumerator.
1198 (profile-options): Add profile-cpu-frequency.
1199 (parse_frequency): New function.
1200 (profile_option_handler): Handle OPTION_PROFILE_CPU_FREQUENCY.
1201 (profile_print_speed): Print cpu frequency and simulated execution time.
1202 Re-indent other items to match.
1203
548a3e15
AC
12042000-08-09 Andrew Cagney <cagney@lulu.cygnus.com>
1205
1206 * dv-sockser.c (dv_sockser_init): Eliminate MIN macro.
1207
fab307a2
FCE
12082000-07-27 Frank Ch. Eigler <fche@redhat.com>
1209
1210 From Maciej W. Rozycki <macro@ds2.pg.gda.pl>
1211 * Makefile.in (install): Install run.1 man page.
1212
46a19b74
AC
1213Thu Jul 27 21:56:08 2000 Andrew Cagney <cagney@b1.cygnus.com>
1214
1215 From 2000-06-23 Doug Evans <dje@casey.transmeta.com>:
1216 * Makefile.in (headers,nltvals.def): Merge.
1217
3c765a54
AC
1218Thu Jul 27 20:37:47 2000 Andrew Cagney <cagney@b1.cygnus.com>
1219
f9cbceb6
AC
1220 From 2000-06-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
1221 * nrun.c (main): Print the simulator statistics only in
1222 verbose mode.
1223 * hw-properties.h (hw_find_integer_array_property): Fix
1224 prototype (use signed_cell).
1225
38e64f35
AC
1226 From 2000-06-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
1227 * sim-events.c (sim_events_remain_time): New function returning
1228 the time that remains before the event is raised.
1229 * hw-events.c (hw_event_remain_time): Likewise.
1230 * sim-events.h (sim_events_remain_time): Declare.
1231 * hw-events.h (hw_event_remain_time): Declare.
1232
0802cc40
AC
1233 From 2000-06-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
1234 * sim-hw.c: Use <errno.h> instead of <sys/errno.h>
1235 (OPTION_HW_LIST): New option --hw-list to list the devices.
1236 (hw_option_handler): List the device tree with 'sim_hw_print'.
1237
3c765a54
AC
1238 From 2000-06-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
1239 * sim-bits.h (_MSB_16, _LSB_16): Define for 16-bit targets.
1240 (MASK, LSBIT, MSBIT): Likewise and use _MSB_16 and _LSB_16.
1241 (EXTENDED): Define for 16-bit word size.
1242 * sim-bits.c (LSEXTRACTED, MSEXTRACTED, LSINSERTED,
1243 MSINSERTED, LSSEXT, MSSEXT): Implement for 16-bit word size.
1244 * sim-types.h: Added support for 16-bit targets.
1245
7fb283bc
FCE
12462000-06-23 Frank Ch. Eigler <fche@redhat.com>
1247
1248 * cgen-trace.h (TRACE_USEFUL_MASK): Remove TRACE_EVENTS_IDX.
1249
ab42ee12
FCE
12502000-06-24 Frank Ch. Eigler <fche@redhat.com>
1251
1252 From Maciej W. Rozycki <macro@ds2.pg.gda.pl>:
1253 * Makefile.in (distclean): Clean cconfig.h also.
1254
eb2d80b4
AC
1255Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
1256
1257 * configure: Regenerated to track ../common/aclocal.m4 changes.
1258
1259Tue May 23 21:35:53 2000 Andrew Cagney <cagney@b1.cygnus.com>
1260
1261 * aclocal.m4 (sim-profile): Enable the profiler by default.
1262
781c552e
AC
1263Tue May 23 20:30:12 2000 Andrew Cagney <cagney@amy.cygnus.com>
1264
1265 * run.c (main): Initialize sigrc.
1266
5eb1a8fa
AC
1267Wed Apr 26 16:18:44 2000 Andrew Cagney <cagney@b1.cygnus.com>
1268
1269 * sim-events.c (update_time_from_event): Add more detailed event
1270 tracing.
1271
b2ac51e4
DB
12722000-03-30 Dave Brolley <brolley@redhat.com>
1273
1274 * aclocal.m4 (cgen): Use guile to run cgen.
1275
f8603f2f
DB
12762000-03-23 Dave Brolley <brolley@redhat.com>
1277
1278 * cgen-fpu.h: Rename extsfdf to fextsfdf. Rename truncdfsf to
1279 ftruncdfsf.
1280 * cgen-accfp.c (fextsfdf): New function.
1281 (ftruncdfsf): New function.
1282 (cgen_init_accurate_fpu): Initialize fextsfdf and ftruncdfsf.
1283
0f831eb3
JJ
12842000-03-13 Jeff Johnston <jjohnstn@cygnus.com>
1285
1286 * cgen-ops.h: Added TRUNCSISI.
1287
e88acae7
FCE
12882000-03-08 Dave Brolley <brolley@redhat.com>
1289
1290 * cgen-par.h (cgen_write_queue_kind): Add CGEN_FN_SF_WRITE.
1291 (CGEN_WRITE_QUEUE_ELEMENT): Add fn_sf_write.
1292 (sim_queue_fn_si_write): Last argument is has type USI.
1293 (sim_queue_fn_sf_write): New function.
1294 * cgen-par.c (sim_queue_fn_si_write): Declare 'value' as USI.
1295 (sim_queue_fn_sf_write): New function.
1296 (cgen_write_queue_element_execute): Handle CGEN_FN_SF_WRITE.
1297
baa7ae6f
AC
1298Tue Feb 22 16:45:09 2000 Andrew Cagney <cagney@b1.cygnus.com>
1299
1300 * run.c (main): When SIM_HAVE_ENVIRONMENT enable tracing with
1301 sim_set_trace and run simulator using sim_resume.
1302 (main): Add option ``-o'' - operating environment. Only continue
1303 after a signal when operating environment.
1304 (main): Always set REASON and SIGRC using sim_stop_reason.
1305 (sim_trace): Delete extern declaration.
1306
6d358e86
NC
13072000-02-08 Nick Clifton <nickc@cygnus.com>
1308
1309 * callback.c: Fix compile time warning messages.
1310 * run.c: Fix compile time warning messages.
1311
ed9a39eb
JM
13121999-12-17 Dave Brolley <brolley@cygnus.com>
1313
1314 * sim-profile.h: (set_profile_option_mask): Add prototype.
1315 * sim-profile.c (set_profile_option_mask): No longer static.
1316
c4093a6a
JM
1317Wed Dec 8 21:47:13 1999 Andrew Cagney <cagney@b1.cygnus.com>
1318
1319 * sim-arange.c: Include <string.h>
1320
de57eccd
JM
13211999-12-07 Dave Brolley <brolley@cygnus.com>
1322
c4093a6a 1323 * sim-options.c (print_help): '=' required before optional argument.
de57eccd
JM
1324 * cgen-par.h (CGEN_FN_MEM_QI_WRITE): New enumerator.
1325 (CGEN_FN_MEM_HI_WRITE): New enumerator.
1326 (CGEN_FN_MEM_SI_WRITE): New enumerator.
1327 (CGEN_FN_MEM_DI_WRITE): New enumerator.
1328 (CGEN_FN_MEM_DF_WRITE): New enumerator.
1329 (CGEN_FN_MEM_XI_WRITE): New enumerator.
1330 (fn_mem_qi_write): New union members.
1331 (fn_mem_hi_write): New union members.
1332 (fn_mem_si_write): New union members.
1333 (fn_mem_di_write): New union members.
1334 (fn_mem_df_write): New union members.
1335 (fn_mem_xi_write): New union members.
1336 (sim_queue_fn_mem_qi_write): New function.
1337 (sim_queue_fn_mem_hi_write): New function.
1338 (sim_queue_fn_mem_si_write): New function.
1339 (sim_queue_fn_mem_di_write): New function.
1340 (sim_queue_fn_mem_df_write): New function.
1341 (sim_queue_fn_mem_xi_write): New function.
1342 * cgen-par.c (sim_queue_fn_mem_qi_write): New function.
1343 (sim_queue_fn_mem_hi_write): New function.
1344 (sim_queue_fn_mem_si_write): New function.
1345 (sim_queue_fn_mem_di_write): New function.
1346 (sim_queue_fn_mem_df_write): New function.
1347 (sim_queue_fn_mem_xi_write): New function.
1348 (cgen_write_queue_element_execute): Handle CGEN_FN_MEM_QI_WRITE,
1349 CGEN_FN_MEM_HI_WRITE, CGEN_FN_MEM_SI_WRITE, CGEN_FN_MEM_DI_WRITE,
1350 CGEN_FN_MEM_DF_WRITE, CGEN_FN_MEM_XI_WRITE.
1351
c2d11a7d
JM
13521999-12-01 Dave Brolley <brolley@cygnus.com>
1353
1354 * cgen-accfp.c (subsf): Check status code.
1355 (mulsf): Ditto.
1356 (negsf): Ditto.
1357 (abssf): Ditto.
1358 (sqrtsf): Ditto.
1359 (invsf): Ditto.
1360 (minsf): Ditto.
1361 (maxsf): Ditto.
1362 (subdf): Ditto.
1363 (muldf): Ditto.
1364 (divdf): Ditto.
1365 (negdf): Ditto.
1366 (absdf): Ditto.
1367 (sqrtdf): Ditto.
1368 (invdf): Ditto.
1369 (mindf): Ditto.
1370 (maxdf): Ditto.
1371
13721999-11-26 Dave Brolley <brolley@cygnus.com>
1373
1374 * cgen-par.h (fn_df_write): Mode of data is DF.
1375 (sim_queue_fn_df_write): Mode of data is DF.
1376 * cgen-par.c (sim_queue_fn_df_write): Mode of data is DF.
1377
13781999-11-22 Dave Brolley <brolley@cygnus.com>
1379
1380 * cgen-trace.c (SIZE_TRACE_BUF): Inxrease size of trace buffer.
1381 * cgen-par.h (CGEN_WRITE_QUEUE_SIZE): Increase size of queue.
1382
11cf8741
JM
13831999-11-04 Dave Brolley <brolley@cygnus.com>
1384
1385 * cgen-par.h (cgen_write_queue_kind): Add CGEN_FN_XI_WRITE and
1386 CGEN_MEM_XI_WRITE members.
1387 (CGEN_WRITE_QUEUE_ELEMENT): Add fn_xi_write and mem_xi_write members.
1388 (sim_queue_fn_xi_write): New function.
1389 (sim_queue_mem_xi_write): New function.
1390
1391 * cgen-par.c (sim_queue_fn_xi_write): New function.
1392 (sim_queue_mem_xi_write): New function.
1393 (cgen_write_queue_element_execute): Handle CGEN_FN_XI_WRITE and
1394 CGEN_MEM_XI_WRITE.
1395
e514a9d6
JM
13961999-10-22 Dave Brolley <brolley@cygnus.com>
1397
1398 * cgen-par.h (insn_address): New field in CGEN_WRITE_QUEUE_ELEMENT.
1399 (CGEN_WRITE_QUEUE_ELEMENT_IADDR): New macro.
1400 * cgen-par.c: Set insn_address for each queued write. Get pc from
1401 cpu when executing queued writes.
1402
14031999-10-19 Dave Brolley <brolley@cygnus.com>
1404
1405 * cgen-par.h (sim_queue_fn_pc_write): New function.
1406 (CGEN_FN_PC_WRITE): New enumerator.
1407 (fn_pc_write): New union member.
1408 * cgen-par.c (sim_queue_fn_pc_write): New function.
1409 (cgen_write_queue_element_execute): Handle CGEN_FN_PC_WRITE.
1410
917317f4
JM
14111999-10-18 Dave Brolley <brolley@cygnus.com>
1412
1413 * cgen-par.h (CGEN_MEM_DI_WRITE): New enumerator.
1414 (CGEN_MEM_DF_WRITE): New enumerator.
1415 (mem_di_write): New union member.
1416 (mem_df_write): New union member.
1417 * cgen-par.c (sim_queue_mem_di_write): New function.
1418 (sim_queue_mem_df_write): New function.
1419 (cgen_write_queue_element_execute): Handle CGEN_MEM_DI_WRITE and
1420 CGEN_MEM_DF_WRITE.
1421 * cgen-accfp.c (divsf): Check for division errors.
1422
14231999-10-14 Doug Evans <devans@casey.cygnus.com>
1424
1425 * cgen-engine.h (EXTRACT_INT,EXTRACT_UINT): Delete.
1426
2df3850c
JM
14271999-10-07 Dave Brolley <brolley@cygnus.com>
1428
1429 * cgen-par.h (CGEN_FN_HI_WRITE): New enumerator.
1430 (fn_hi_write): New union member.
1431 (sim_queue_fn_hi_write): New function.
1432 * cgen-par.c (sim_queue_fn_hi_write): New function.
1433 (cgen_write_queue_element_execute): Handle CGEN_FN_HI_WRITE.
1434
2acceee2
JM
14351999-09-29 Doug Evans <devans@casey.cygnus.com>
1436
1437 * cgen-defs.h (sim_engine_invalid_insn): New arg `vpc'.
1438 Change type of result to SEM_PC.
1439
1440Wed Sep 29 14:43:57 1999 Dave Brolley <brolley@cygnus.com>
1441
1442 * cgen-defs.h (sim_engine_invalid_insn): Now returns PC.
1443
6426a772
JM
14441999-09-25 Doug Evans <devans@casey.cygnus.com>
1445
1446 * cgen-ops.h (SUBWORD*): Delete cpu arg.
1447 (JOIN*): Delete cpu arg.
1448
1449Tue Sep 21 17:14:16 1999 Dave Brolley <brolley@cygnus.com>
1450
1451 * genmloop.sh (@cpu@_scache_lookup): No longer takes last_insn_p
1452 parameter.
1453 (SET_LAST_INSN_P): Set last_insn_p flag in the scache element.
1454
c2c6d25f
JM
1455Mon Sep 20 21:44:06 1999 Geoffrey Keating <geoffk@cygnus.com>
1456
1457 * sim-fpu.c (i2fpu): Keep the guard bits sticky when converting
1458 large values.
1459
7fc5b5ad
AC
1460Tue Feb 8 16:33:48 2000 Andrew Cagney <cagney@b1.cygnus.com>
1461
1462 * run.c (main): Check the sim_stop_reason and only halt simulation
1463 when a valid stop condition is identified.
1464
c2c6d25f
JM
1465Wed Sep 15 14:12:37 1999 Andrew Cagney <cagney@b1.cygnus.com>
1466
1467 * hw-tree.c, hw-properties.c, hw-instances.c: Include "sim-io.h".
1468
1469Tue Sep 14 14:15:47 1999 Dave Brolley <brolley@cygnus.com>
1470
1471 * cgen-par.h (CGEN_BI_WRITE): New enumerator.
1472 (bi_write): New union element.
1473 (sim_queue_bi_write): New function.
1474 * cgen-par.c (sim_queue_bi_write): New function.
1475 (cgen_write_queue_element_execute): Handle CGEN_BI_WRITE.
1476
d4f3574e
SS
1477Thu Sep 2 18:15:53 1999 Andrew Cagney <cagney@b1.cygnus.com>
1478
1479 * configure: Regenerated to track ../common/aclocal.m4 changes.
1480
1481 * aclocal.m4 (WERROR_CFLAGS, WARN_CFLAGS): Merge from
1482 ../gdb/configure.in.
1483 * Make-common.in (WERROR_CFLAGS, WARN_CFLAGS): Define.
1484 (SIM_WERROR_CFLAGS, SIM_WARN_CFLAGS): Define.
1485 (SIM_WARNINGS): Delete
1486 (CONFIG_CFLAGS): Update.
1487
1488Tue Aug 31 16:01:42 1999 Dave Brolley <brolley@cygnus.com>
1489
1490 * cgen-par.c: New file.
1491 * cgen-par.h: New file.
1492 * cgen-sim.h (cgen-par.h): #include it.
1493 * cgen-cpu.h (write_queue): New field.
1494 (CPU_WRITE_QUEUE): New access macro.
1495 * Make-common.in (CGEN_MAIN_CPU_DEPS): Add cgen-par.h.
1496 (cgen-par.o): New target.
1497
104c1213
JM
14981999-08-28 Doug Evans <devans@casey.cygnus.com>
1499
1500 * cgen-types.h (mode_type,MODE_VOID): Renamed from MODE_VM.
1501 * cgen-utils.c (mode_names): Update.
1502
53a5351d
JM
15031999-08-20 Doug Evans <devans@casey.cygnus.com>
1504
1505 * genmloop.sh: New args -parallel-generic-write, -parallel-only.
1506 * cgen-engine.h (SEMANTIC_FN): Don't use version with PAREXEC
1507 buffer arg if WITH_PARALLEL_GENWRITE.
1508 (struct insn_sem): Handle WITH_PARALLEL_GENWRITE.
1509 (struct idesc): Ditto.
1510
1511Wed Aug 18 18:17:28 1999 Doug Evans <devans@canuck.cygnus.com>
1512
1513 * sim-model.c (model_option_handler): Add \n to error message.
1514
96baa820
JM
15151999-08-08 Doug Evans <devans@casey.cygnus.com>
1516
1517 * cgen-engine.h (SEM_FN_NAME,SEMF_FN_NAME): Delete.
1518 (insn_sem): Rewrite.
1519 (sem_fn_desc): New struct.
1520 (idesc): Rewrite.
1521 * genmloop.sh (scache case,@cpu@_scache_lookup): Profile scache hit,
1522 misses if ! FAST_P.
1523 (scache case): Split into non-parallel/parallel versions.
1524 (@cpu@_engine_run_{full,fast}): Call @cpu@_{sem,semf}_init_idesc_table
1525 if not use semantic switch version.
1526
15271999-08-04 Doug Evans <devans@casey.cygnus.com>
1528
1529 * cgen-defs.h (SEM_BRANCH_TYPE): New enum.
1530 * cgen-engine.h (SEM_BRANCH_UNTAKEN,SEM_BRANCH_UNCACHEABLE): Delete.
1531 (SEM_BRANCH_INIT_EXTRACT): Delete.
1532 (SEM_BRANCH_INIT): Replace npc_ptr with br_type.
1533 (SEM_BRANCH_FINI): Ditto.
1534 (SEM_BRANCH_VIA_ADDR): Ditto.
1535 (SEM_BRANCH_VIA_CACHE): Ditto. Delete cachvarptr arg.
1536 (SEM_BRANCH_ADDR_CACHE): Delete.
1537 (SEM_SKIP_COMPILE,SEM_SKIP_INSN): New macros.
1538 * cgen-scache.h (cpu_scache): Replace member pbb_pr_npc_ptr with
1539 pbb_br_type.
1540 * genmloop.sh (eng.hin): Update prototype of ${cpu}_pbb_cti_chain.
1541 (@cpu@_pbb_begin): Initialize branch_target.
1542 (@cpu@_pbb_cti_chain): Replace arg new_vpc_ptr with br_type.
1543 (@cpu@_engine_run_full): Replace local pbb_br_npc_ptr with
1544 pbb_br_type.
1545 (@cpu@_engine_run_fast): Ditto.
1546
adf40b2e
JM
1547Fri Jul 16 14:47:53 1999 Dave Brolley <brolley@cygnus.com>
1548
1549 * cgen-utils.c (RORSI): New function.
1550 (ROLSI): New function.
1551
15521999-07-14 Doug Evans <devans@casey.cygnus.com>
1553
1554 * Makefile.in (TAGS): Tweak TAGS regex.
1555 * cgen-mem.h (*): Add TAGS markers.
1556
43e526b9
JM
1557Sun Jul 11 23:47:20 1999 Andrew Cagney <cagney@b1.cygnus.com>
1558
1559 * sim-resume.c (sim_resume): Ensure that the siggnal [sic] is only
1560 passed in when sim_resume is first entered - don't re-pass it
1561 after a restart.
1562
1563Sun Jul 11 23:34:44 1999 Andrew Cagney <cagney@b1.cygnus.com>
1564
1565 * sim-options.c (standard_option_handler): Add OPTION_LOAD_VMA and
1566 OPTION_LOAD_LMA but only when is defined.
1567 (standard_options): When SIM_HANDLES_LMA is defined include
1568 options --load-lma and --load-vma.
1569 (standard_install): Initialize STATE_LOAD_AT_LMA_P.
1570
1571 * sim-base.h (STATE_LOAD_AT_LMA_P): Define.
1572 (struct sim_state_base): Add load_at_lma_p.
1573 * sim-hload.c (sim_load): Replace SIM_HANDLES_LMA with
1574 STATE_LOAD_AT_LMA_P.
1575
1576Sun Jul 11 12:03:36 1999 Andrew Cagney <cagney@b1.cygnus.com>
1577
1578 * nrun.c (main): Re-format loop gnu style.
1579
9846de1b
JM
1580Wed Jul 7 19:56:03 1999 Andrew Cagney <cagney@b1.cygnus.com>
1581
1582 * dv-sockser.c (connected_p): Initialize addrlen.
1583
15841999-07-06 Dave Brolley <brolley@cygnus.com>
1585
1586 * cgen-accfp.c (floatsidf): New function.
1587 (fixdfsi): New function.
1588
15891999-07-06 Doug Evans <devans@casey.cygnus.com>
1590
1591 * sim-model.c (sim_model_init): Issue error if machine is unsupported.
1592
43ff13b4
JM
15931999-07-05 Doug Evans <devans@casey.cygnus.com>
1594
1595 * Make-common.in (CGEN_MAIN_CPU_DEPS): Add cgen-fpu.h.
1596 (cgen-fpu.o,cgen-accfp.o): Add rules for.
1597 * cgen-fpu.c: New file.
1598 * cgen-fpu.h: New file.
1599 * cgen-accfp.c: New file.
1600 * cgen-cpu.h (CGEN_CPU): New member fpu.
1601 * cgen-mem.h: Redo fp support.
1602 * cgen-ops.h: Delete k&r support. Redo fp support.
1603 * cgen-sim.h: Include cgen-fpu.h.
1604 * cgen-types.h (SF,DF,XF,TF): Moved to cgen-fpu.h.
1605
085dd6e6
JM
16061999-06-23 Doug Evans <devans@casey.cygnus.com>
1607
1608 * cgen-engine.h (TARGET_SEM_BRANCH_FINI): Remove cruft at end of
1609 ifndef.
1610 * genmloop.sh (@cpu@_scache_lookup): Delete unused local var.
1611 (@cpu@_pbb_cti_chain): Minor clean up.
1612
cd0fc7c3
SS
16131999-05-08 Felix Lee <flee@cygnus.com>
1614
1615 * aclocal.m4: Use AC_EXEEXT instead of AM_EXEEXT. Delete defn of
1616 AM_CYGWIN32 and AM_EXEEXT.
1617 * configure: Regenerate.
1618
7a292a7a
SS
1619Fri Apr 16 16:43:22 1999 Doug Evans <devans@charmed.cygnus.com>
1620
1621 * sim-core.c (device_error,device_io_read_buffer,
1622 device_io_write_buffer): Delete decls.
1623 * sim-core.h: Put them here.
1624
1625 * sim-core.c (sim_core_read_buffer): Pass sd to device_io_read_buffer.
1626 (sim_core_write_buffer): Pass sd to device_io_write_buffer.
1627 * sim-n-core.h (sim_core_read_aligned_N): Ditto.
1628 (sim_core_write_aligned_N): Ditto.
1629
16301999-04-14 Stephane Carrez <stcarrez@worldnet.fr>
1631
1632 * sim-memopt.c (sim_memory_uninstall): Don't look into
1633 free()d memory.
1634
16351999-04-14 Doug Evans <devans@casey.cygnus.com>
1636
1637 * cgen-utils.scm (virtual_insn_entries): Update attribute definition.
1638
16391999-04-13 Doug Evans <devans@casey.cygnus.com>
1640
1641 * sim-core.c (sim_core_read_buffer): Handle NULL cpu when WITH_DEVICES.
1642 (sim_core_write_buffer): Ditto.
1643
16441999-04-02 Keith Seitz <keiths@cygnus.com>
1645
1646 * sim-io.c (sim_io_poll_quit): Only call the poll_quit callback
1647 after the interval counter has expired.
1648 (POLL_QUIT_INTERVAL): Define. Used to tweak the frequency of
1649 poll_quit callbacks. May be overridden by Makefile.
1650 (poll_quit_counter): New global.
1651 * sim-events.c: Remove all mentions of ui_loop_hook. The
1652 host callback "poll_quit" will serve the purpose.
1653 * run.c: Add definition of ui_loop_hook when NEED_UI_LOOP_HOOK
1654 is defined.
1655 * nrun.c: Remove declaration of ui_loop_hook.
1656
1657Wed Mar 31 18:55:41 1999 Doug Evans <devans@canuck.cygnus.com>
1658
1659 * cgen-run.c (sim_resume): Don't tell main loop to run "forever"
1660 if being used by gdb.
1661
16621999-03-22 Doug Evans <devans@casey.cygnus.com>
1663
1664 * cgen-types.h (XF,TF): Tweak.
1665 * cgen-ops.h: Redo inline support. Delete DI_FN_SUPPORT,
1666 in cgen-types.h.
1667 (SUBWORD*,JOIN*): Define.
1668 * cgen-trace.c (sim_cgen_disassemble_insn): Update, base_insn_bitsize
1669 moved into cpu descriptor.
1670 * sim-model.h (MACH): New member `num'.
1671
c906108c
SS
16721999-02-09 Doug Evans <devans@casey.cygnus.com>
1673
c906108c
SS
1674 * cgen-cpu.h (CGEN_DISASSEMBLER): New type.
1675 (CGEN_CPU): Member opcode renamed to cpu_desc.
1676 New members get_idata,disassembler.
1677 * cgen-defs.h (CGEN_INSN_VIRTUAL_P): CGEN_INSN_ATTR renamed to
1678 CGEN_INSN_ATTR_VALUE.
1679 (CGEN_STATE): Delete member opcode_table.
1680 (sim_disassemble_insn): Delete decl.
1681 * cgen-engine.h (struct insn_sem): Moved to here from <cpu>-decode.c.
1682 (struct idesc): Moved to here from <cpu>-decode.h.
1683 * cgen-run.c (prime_cpu): Call prepare_run callback.
1684 * cgen-trace.h (SFILE): New type.
1685 (sim_disasm_sprintf): Declare.
1686 (sim_disasm_read_memory,sim_disasm_perror_memory): Declare.
1687 (sim_cgen_disassemble_insn): Declare.
1688 * cgen-trace.c: Include errno.h,dis-asm.h. Don't include cpu-opc.h.
1689 (insn_fields): Delete.
1690 (trace_insn_fini): STATE_OPCODE_TABLE (sd) replaced with
1691 CPU_CPU_DESC (cpu).
1692 (trace_insn): Call CPU_DISASSEMBLER hook.
1693 (sim_disasm_sprintf): New function.
1694 (sim_disasm_read_memory): New function.
1695 (sim_disasm_perror_memory): New function.
1696 (sim_cgen_disassemble_insn): New function.
1697 * cgen-utils.c: Don't include cpu-opc.h.
1698 (virtual_insn_entries): New static local.
1699 (cgen_virtual_insn_table): Renamed from cgen_virtual_opcode_table.
1700 (cgen_insn_name): Rewrite.
1701 (disasm_sprintf,sim_disassemble_insn): Moved to cgen-trace.c.
1702 * cgen.sh (desc): New file generator handler.
1703 * genmloop.sh: -parallel changed to -parallel-read/-parallel-write.
1704 Define WITH_PARALLEL_READ/WITH_PARALLEL_WRITE appropriately.
1705 Don't include cpu-opc.h,cpu-sim.h.
1706 * sim-model.c (model_set): Delete SIM_DESC arg.
1707 (sim_model_set): Update.
1708 * sim-model.h (MACH): New member prepare_run.
1709
17101999-01-28 Frank Ch. Eigler <fche@cygnus.com>
1711
1712 * sim-memopt.c (memory_option_handler): Avoid memset() calls
1713 if redundant with allocator functions.
1714
1715Wed Jan 27 17:19:09 1999 Doug Evans <devans@canuck.cygnus.com>
1716
1717 * cgen-engine.h (EXTRACT_LSB0_{INT,UINT}): Fix.
1718
1719 * sim-profile.h: Make like sim-trace.h.
1720 (PROFILE_USEFUL_MASK): New macro.
1721 * sim-profile.c (profile_options): Make like trace_options, allow
1722 optional on|off arg where applicable.
1723 (set_profile_option_mask): New function.
1724 (sim_profile_set_option): New function.
1725 (profile_option_handler): Simplify.
1726 Have -p only enable selected things, not everything.
1727 Add missing break to OPTION_PROFILE_PC_RANGE.
1728 * cgen-scache.c (scache_options): Allow optional on|off arg to
1729 --profile-scache.
1730 (scache_option_handler): Use sim_profile_set_option.
1731
17321999-01-26 Frank Ch. Eigler <fche@cygnus.com>
1733
1734 * sim-memopt.c (memory_options): Add MEMORY_FILL option.
1735 (memory_option_handler): Implement MEMORY_FILL option. Make
1736 MEMORY_CLEAR an alias for MEMORY_FILL=0.
1737 (parse_ulong_value): New function.
1738 (do_memopt_add): Allocate all buffers. Optionally fill them.
1739
17401999-01-15 Richard Henderson <rth@cygnus.com>
1741
1742 * hw-events.c (hw_event_queue_schedule): _vtracef takes a
1743 va_list, not an integer.
1744 * sim-events.c (sim_events_schedule): Likewise.
1745
1746 * sim-types.h (UNSIGNED32, UNSIGNED64): Properly cast to
1747 the appropriate type.
1748
17491999-01-14 Doug Evans <devans@casey.cygnus.com>
1750
1751 * cgen-defs.h (PCADDR,CIA): Define in terms of IADDR.
1752 (sim_disassemble_insn): Update prototype.
1753 (sim_engine_invalid_insn): Ditto.
1754 * cgen-engine.h (SEMANTIC_FN): Add !WITH_SCACHE version.
1755 (SEM_BRANCH_INIT): PCADDR->IADDR.
1756 (SEM_NBRANCH_FINI): New macro for !WITH_SCACHE case.
1757 * cgen-scache.c (scache_lookup,scache_lookup_or_alloc): PCADDR->IADDR.
1758 * cgen-scache.h (*): Ditto.
1759 * cgen-trace.c (*): Ditto.
1760 * cgen-trace.h (*): Ditto.
1761 * cgen-utils.c (*): Ditto.
1762 * cgen-types.h (integer modes): Use signedNN/unsignedNN types.
1763 (insn_t): Delete.
1764 * genmloop.sh (@cpu@_fill_argbuf): Add !WITH_SCACHE support.
1765 (simple engine framework): Rewrite.
1766 * sim-module.c (modules): Install model module sooner (and in
1767 particular before the profile module).
1768
17691999-01-12 Doug Evans <devans@casey.cygnus.com>
1770
1771 * sim-model.h (sim_mach_lookup_bfd_name): Add prototype.
1772 * sim-model.c (sim_mach_lookup_bfd_name): New function.
1773 (sim_model_init): Call it.
1774
1775 * cgen-trace.c (trace_insn): Pass pc to trace_prefix for virtual insns.
1776
17771999-01-05 Doug Evans <devans@casey.cygnus.com>
1778
1779 * Make-common.in (CGEN_INCLUDE_DEPS): Add cgen-defs.h, cgen-engine.h.
c906108c
SS
1780 * cgen-engine.h (SEM_BRANCH_FINI): New arg pcvar, all uses updated.
1781 (SEM_BRANCH_INIT_EXTRACT): New macro.
1782 (SEM_BRANCH_INIT): Add taken_p.
1783 (TARGET_SEM_BRANCH_FINI): Provide default definition.
1784 (SEM_BRANCH_FINI): Use it.
1785 (SEM_INSN): Update.
1786 * cgen-run.c (sim_resume): Handle tracing of last insn.
1787 * cgen-scache.h (WITH_SCACHE): Define as 0 if not defined.
1788 * cgen-trace.c (current_abuf): New static global.
1789 (trace_insn_init): Initialize it.
1790 (trace_insn_fini): Use it.
1791 (trace_insn): Set it.
1792 * cgen.sh (arch case): Pass -m ${mach} to cgen.
1793 * genmloop.sh (@cpu@_emit_before): Only define if WITH_SCACHE_PBB.
1794 (@cpu@_emit_after): Ditto.
1795 (simple @cpu@_engine_run_full): New local `pc'. Initialize semantic
1796 labels if WITH_SEM_SWITCH_FULL.
1797 * sim-model.c: Include bfd.h.
1798 (sim_model_init): New function.
1799 (sim_model_install): Record init fn.
1800 * sim-model.h (MACH): New member bfd_name.
1801 * sim-module.c (modules): Initialize model before scache.
1802
18031998-12-24 Frank Ch. Eigler <fche@cygnus.com>
1804
1805 * dv-sockser.c (DEFAULT_TIMEOUT): Increase to 1 ms.
1806
1807 * nrun.c (main): Remain in simulation loop for traps and
1808 exceptions when in operating environment mode.
1809 (ui_loop_hook): New stub hook for standalone use.
1810 * sim-events.c (sim_events_process): Call ui_loop_hook
1811 periodically on CYGWIN host.
1812
1813 * sim-reason.c (sim_stop_reason): Return host signal numbers
1814 to gdb on sim_stopped and sim_signalled cases.
1815 * sim-engine.c (sim_engine_halt): Call SIM_CPU_EXCEPTION_SUSPEND
1816 hook just before longjmp.
1817 * sim-resume.c (sim_resume): Call SIM_CPU_EXCEPTION_RESUME
1818 hook just before sim_engine_run.
1819
1820 * sim-n-core.h (sim_core_trace_M): Allay const warning.
1821 * sim-trace.h (trace_generic): Ditto.
1822 * sim-trace.c (trace_generic): Ditto.
1823
18241998-12-14 Doug Evans <devans@casey.cygnus.com>
1825
1826 * Make-common.in (SIM_MAIN_DEPS): New var.
1827 (CGEN_MAIN_CPU_DEPS): New var.
1828 * aclocal.m4: Add --enable-cgen-maint option.
1829 * cgen-mem.h (GETMEM*): New arg `pc'. Pass to sim_core routine.
1830 (SETMEM*): Ditto.
1831 (GETIMEM*): Pass pc value to sim_core routine.
1832
1833Fri Dec 11 16:58:36 1998 Andrew Cagney <cagney@b1.cygnus.com>
1834
1835 * hw-handles.c (hw_handle_add_ihandle, hw_handle_add_phandle):
1836 Compare with ZERO not NULL.
1837
1838Thu Dec 10 14:14:39 1998 Andrew Cagney <cagney@b1.cygnus.com>
1839
1840 * hw-properties.c, hw-instances.c, hw-tree.c: Include
1841 "sim-assert.h".
1842
18431998-12-09 Doug Evans <devans@casey.cygnus.com>
1844
1845 * sim-arange.c: Include libiberty.h, and stdlib.h if present.
1846 * sim-trace.c: Include stdlib.h if present.
1847 * dv-sockser.c: Include unistd.h if present.
1848 (dv_sockser_init): Add missing arg to call to sim_io_eprintf.
1849 * cgen-scache.c (scache_flush): Delete unused locals i,sc.
1850
18511998-12-08 James E Wilson <wilson@wilson-pc.cygnus.com>
1852
1853 * gennltvals.sh: Add i960.
1854 * nltvals.def: Rebuild.
1855
18561998-12-04 Doug Evans <devans@casey.cygnus.com>
1857
1858 * cgen-defs.h: New file, old cgen-sim.h.
1859 * cgen-sim.h: Simple header that includes others.
1860 * sim-arange.c: New file.
1861 * sim-arange.h: New file.
1862 * sim-basics.h: Include it.
1863 * Make-common.in (SIM_NEW_COMMON_OBJS): Add sim-arange.o.
1864 (sim-arange.o): Add rule for.
1865 * sim-cpu.h (sim_cpu_msg_prefix): Add prototype.
1866 (sim_io_eprintf_cpu): Add prototype.
1867 * sim-inline.h (HAVE_INLINE): Define if GNUC.
1868 (INLINE2): New macro.
1869 (EXTERN_INLINE): New macro.
1870 * sim-module.c (sim_post_argv_init): Initialize cpu backlink
1871 before calling module init fns.
1872 * sim-profile.c (OPTION_PROFILE_*): Move into enum.
1873 (profile_init): New function.
1874 (profile_options): New option --profile-range.
1875 (profile_option_handler): Handle --profile-range.
1876 (profile_print_insn): Qualify address range specific section titles.
1877 (profile_print_addr_ranges): New function.
1878 (profile_info): Print address ranges if specified.
1879 (profile_install): Set profile_init init fn.
1880 * sim-profile.h (PROFILE_DATA): New member `range'.
1881 * sim-trace.c (trace_init): New function.
1882 (trace_options): New option --trace-range.
1883 (trace_option_handler): Handle --trace-range.
1884 (trace_install): Set trace_init init fn.
1885 * sim-trace.h (TRACE_DATA): New member `range'.
1886 * sim-utils.c (sim_cpu_msg_prefix): New function.
1887 (sim_io_eprintf_cpu): New function.
1888 * cgen-engine.h (PC_IN_TRACE_RANGE_P): New macro.
1889 (PC_IN_PROFILE_RANGE_P): New macro.
1890 * cgen-trace.c (trace_insn_init): Set current_insn to NULL.
1891 (trace_insn_fini): New arg abuf. All callers updated.
1892 Exit early if trace_insn not called. Check ARGBUF_PROFILE_P before
1893 printing cycle counts.
1894 * cgen-trace.h (trace_insn_fini): Update prototype.
1895 (TRACE_RESULT_P): New macro.
1896 (TRACE_INSN_INIT,TRACE_INSN_FINI): New arg abuf. All callers updated.
1897 (TRACE_INSN): Check ARGBUF_TRACE_P.
1898 (TRACE_EXTRACT,TRACE_RESULT): New arg abuf. All callers updated.
1899 * cgen-types.h (SIM_INLINE): Delete.
1900 (SIM_HAVE_MODEL,SIM_HAVE_ADDR_RANGE): Define.
1901 * cgen-utils.c: Don't include cgen-engine.h
1902 * genmloop.sh (@cpu@_fill_argbuf): New function.
1903 (@cpu@_fill_argbuf_tp): New function.
1904 (@cpu@_emit_before,@cpu@_emit_after): New functions.
1905 (@cpu@_pbb_begin): Prefix cti_sc,insn_count with '_'.
1906 (SET_CTI_VPC,SET_INSN_COUNT): Update.
1907 (@cpu@_pbb_before): Check ARGBUF_PROFILE_P before calling
1908 doing profiling. Update call to TRACE_INSN_INIT,TRACE_INSN_FINI.
1909 (@cpu@_pbb_after): Check ARGBUF_PROFILE_P before calling
1910 doing profiling. Update call to TRACE_INSN_FINI.
1911
1912 * sim-memopt.c (sim_memory_uninstall): Result type is `void'.
1913
19141998-12-03 Frank Ch. Eigler <fche@cygnus.com>
1915
1916 * sim-memopt.c (sim_memory_uninstall): Deallocate all memory
1917 regions.
1918
19191998-12-01 Doug Evans <devans@casey.cygnus.com>
1920
1921 * sim-inline.c (SIM_INLINE_P): Fix typo.
1922
19231998-11-30 Doug Evans <devans@casey.cygnus.com>
1924
1925 * cgen-utils.c (cgen_virtual_opcode_table): Update.
1926
1927Tue Nov 24 18:40:03 1998 Andrew Cagney <cagney@b1.cygnus.com>
1928
1929 * gennltvals.sh: Add v850 and d10v. Sort alphabetically.
1930 * nltvals.def: Re-generate.
1931
1932Mon Nov 23 13:28:38 1998 Andrew Cagney <cagney@b1.cygnus.com>
1933
1934 * sim-core.c (reverse_n, sim_core_uninstall, sim_core_init,
1935 sim_core_map_attach, sim_core_map_detach, next_event_queue,
1936 new_sim_core_mapping): Only define when EXTERN_SIM_CORE_P, pacify
1937 GCC.
1938 * sim-events.c (sim_events_uninstall, sim_events_suspend,
1939 sim_events_resume, sim_events_zalloc, insert_sim_event): Ditto.
1940
19411998-11-22 Doug Evans <devans@tobor.to.cygnus.com>
1942
1943 * genmloop.sh (${cpu}_pbb_chain): Watch for Ctrl-C's.
1944 (${cpu}_pbb_cti_chain): Ditto.
1945
19461998-11-18 Doug Evans <devans@casey.cygnus.com>
1947
1948 * Make-common.in (cgen-utils.o): Depend on cgen-engine.h.
c906108c
SS
1949 * cgen-engine.h (EXTRACT_[ML]SB0_{INT,UINT}): New macros.
1950 (EXTRACT_INT,EXTRACT_UINT): New macros.
1951 (SEM_SEM_ARG): New macro.
1952 (SEM_NEXT_VPC): New arg `pc'.
1953 * cgen-sim.h (EXTRACT_SIGNED,EXTRACT_UNSIGNED): Delete.
1954 (sim_disassemble_insn): Update prototype.
1955 * cgen-trace.c (current_insn,insn_fields): New static locals.
1956 (trace_insn): Set them.
b83266a0 1957 * cgen-utils.c: #include cgen-engine.h.
c906108c
SS
1958 (sim_disassemble_insn): New arg insn_fields.
1959 Handle variable length insns.
1960 * genmloop.sh: Only emit pbb decls if -pbb.
1961 (${cpu}_scache_lookup): New arg `vpc'.
1962 (scache support): Fetch pc before entering loop.
1963
1964 * gennltvals.sh: Add fr30 support.
1965 * nltvals.def: Rebuild.
1966
1967Wed Nov 18 10:22:22 1998 Andrew Cagney <cagney@b1.cygnus.com>
1968
1969 * sim-types.h: Re-do type system so that GCC's attribute and mode
1970 are used to specify types. Handle case of ALPHA.
1971
19721998-11-13 Frank Ch. Eigler <fche@elastic.org>
1973
1974 * aclocal.m4: Add tests for dlopen family.
1975 * config.in: Regenerated.
1976
1977Wed Nov 11 14:02:25 1998 Doug Evans <devans@canuck.cygnus.com>
1978
1979 * sim-hload.c (sim_load): Pass `prog_name' to sim_load_file, not NULL.
1980
1981Wed Nov 4 23:51:19 1998 Doug Evans <devans@seba.cygnus.com>
1982
1983 * genmloop.sh (eng.hin): Rename HAVE_PARALLEL_EXEC to
1984 HAVE_PARALLEL_INSNS, define as 0 or 1. Emit decls of fns in mloop.cin.
1985 * cgen-engine.h: Typedefs of IADDR,CIA,SEM_ARG,SEM_PC moved ...
1986 * cgen-sim.h: ... to here.
1987
1988Wed Oct 28 12:00:57 1998 Andrew Cagney <cagney@b1.cygnus.com>
1989
1990 * aclocal.m4 (enable-build-warnings): Replace
1991 enable-sim-warnings. Extend =LIST syntax so that prepend and
1992 append of options is possible. Drop -Werror, add
1993 -Wstrict-prototypes for GDB compatibility.
1994 * Make-common.in (SIM_WARNINGS): Update.
1995
1996Mon Oct 19 13:56:32 1998 Doug Evans <devans@seba.cygnus.com>
1997
1998 * Make-common.in (CGEN_INCLUDE_DEPS): Define.
1999 (sim-core.o): Delete duplicate dependence on $(SIM_EXTRA_DEPS).
2000 (sim-cpu.o,sim-endian.o,sim-hw.o): Ditto.
2001 (cgen-run.o,cgen-scache.o,cgen-trace.o,cgen-utils.o): Delete
2002 explicit cgen header dependencies, require SIM_EXTRA_DEPS to include
2003 CGEN_INCLUDE_DEPS.
2004 * cgen-cpu.h: New file.
2005 * cgen-engine.h: New file.
2006 * cgen-scache.h: New file.
2007 * cgen-sim.h: Delete portions moved to new files.
2008 * genmloop.sh: Generate two files eng.hin,mloop.cin explicitly,
2009 rather than sending result to stdout.
2010
2011Fri Oct 9 14:20:22 1998 Doug Evans <devans@seba.cygnus.com>
2012
2013 * Make-common.in (sim-reg.o): New rule.
2014 (cgen-run.o): New rule.
2015 * cgen-ops.h: Delete many BI macros. Change all UBI -> BI.
2016 * cgen-run.c (prime_cpu): New function.
2017 * cgen-scache.c: Add pseudo-basic-block (pbb) scaching support.
2018 (scache_option_handler, case OPTION_PROFILE_SCACHE): Handle explicitly
2019 mentioned cpu.
2020 (scache_flush_cpu,scache_lookup,scache_lookup_or_alloc): New fns.
2021 * cgen-sim.h (CGEN_INSN_VIRTUAL_TYPE): New enum.
2022 (CGEN_INSN_VIRTUAL_P): New macro.
2023 (SEM_PC): New typedef.
2024 (SEMANTIC_FN): Change type of result to SEM_PC.
2025 (SEM_SET_FULL_CODE,SEM_SET_FAST_CODE,SEM_SET_CODE): New macros.
2026 (IDESC_CTI_P,IDESC_SKIP_P): New macros.
2027 (SCACHE_MAP): New typedef.
2028 (CPU_SCACHE): Add pbb support.
2029 (scace_lookup,scache_lookup_or_alloc,scache_flush_cpu): Declare.
2030 (SEM_BRANCH_INIT_EXTRACT,SEM_BRANCH_INIT,SEM_BRANCH_FINI): New macros.
2031 (CGEN_CPU): New members running_p,insn_count,{fast,full}_engine_fn,
2032 max_slice_insns.
2033 (INSN_NAME): Delete.
2034 (cgen_insn_name): Declare.
2035 (sim_engine_invalid_insn): Renamed from sim_engine_illegal_insn.
2036 * cgen-trace.c (trace_buf): Shrink from 1024 to 256 bytes.
2037 (first_insn_p): Make static.
2038 (trace_insn): Handle virtual insns specially.
2039 (cgen_trace_printf): Ensure we haven't overflowed the buffer.
2040 * cgen-types.h (UBI): Delete.
2041 (MODE_TYPE): New enum.
2042 (HOSTINT,HOSTUINT,HOSTPTR): Delete.
2043 * cgen-utils.c (mode_names): Delete UBI. Add INT,UINT,PTR.
2044 (cgen_virtual_opcode_table): New global.
2045 (cgen_insn_name): New function.
2046 (sim_disassemble_insn): Ignore virtual insns.
2047 * genmloop.sh: Delete top level loop generation. Add pbb support.
2048 * sim-cpu.h (CPU_INSN_NAME_FN): New typedef.
2049 (sim_cpu_base): New members max_insns,insn_name,model_data.
2050 (CPU_PC_GET,CPU_PC_SET): New macros.
2051 (sim_pc_get,sim_pc_set): Declare.
2052 * sim-model.c (model_set): Call model init fn.
2053 * sim-model.h (MODEL_FN): New typedef.
2054 (INSN_TIMING): New member model_fn.
2055 (MODEL): New members num,init.
2056 * sim-profile.c (sim_profile_print_bar): Renamed from print_bar.
2057 All callers updated.
2058 (profile_insn_init): New fn.
2059 (profile_print_insn): Update, INSN_NAME -> CPU_INSN_NAME.
2060 Exit early if insn profiling not supported.
2061 (profile_print_memory): Update, MAX_MODES -> MODE_TARGET_MAX.
2062 (profile_install): Record profile_insn_init as init fn.
2063 (profile_uninstall): Free PROFILE_INSN_COUNT if non-null.
2064 * sim-profile.h: Update, MAX_MODES -> MODE_TARGET_MAX.
2065 (PROFILE_DATA): Delete member exec_time.
2066 Change insn_count to pointer to array, rather than the array.
2067 (sim_profile_print_bar): Declare.
2068
2069Wed Oct 7 16:56:42 1998 Doug Evans <devans@seba.cygnus.com>
2070
2071 * cgen-run.c: New file.
2072 * sim-reg.c: New file.
2073
2074Mon Sep 14 10:58:19 1998 Frank Ch. Eigler <fche@cygnus.com>
2075
2076 * aclocal.m4: Add checks for -lsocket and -lnsl.
2077
2078 * dv-sockser.c (dv_sockser_init): Use SO_REUSEADDR to
2079 allow local port reuse on listening socket.
2080
2081Tue Sep 1 15:36:52 1998 Frank Ch. Eigler <fche@cygnus.com>
2082
2083 * sim-config.h: Remove reference to linux kernel header.
2084
2085Tue Aug 25 12:45:27 1998 Frank Ch. Eigler <fche@cygnus.com>
2086
2087 * dv-sockser.c (sockser_addr): Make variable non-static.
2088
2089Mon Aug 24 11:47:37 1998 Joyce Janczyn <janczyn@cygnus.com>
2090
2091 * sim-hw.{c,h} (sim_hw_parse): Return struct hw pointer.
2092
2093Tue Aug 11 18:12:19 1998 Doug Evans <devans@canuck.cygnus.com>
2094
2095 * sim-events.c (sim_events_elapsed_time): Fix calculation.
2096
2097Tue Aug 4 20:36:46 1998 Jeff Holcomb <jeffh@cygnus.com>
2098
2099 * Make-common.in (install-common): Add $(EXEEXT) when installing
2100 run.
2101
2102Mon Aug 3 11:46:01 1998 Doug Evans <devans@seba.cygnus.com>
2103
2104 * cgen-sim.h (cgen_state): New member opcode_table.
2105 * cgen-utils.c (sim_disassemble_insn): Use it.
2106
2107Fri Jul 24 10:14:18 1998 Doug Evans <devans@canuck.cygnus.com>
2108
2109 * cgen-mem.h (DECLARE_SETT): Fix return type.
2110 * cgen-sim.h (sim_engine_illegal_insn): Declare.
2111 * cgen-scache.c: Include stdlib.h.
2112 * cgen-trace.c (trace_extract): Use %lx for PCADDR.
2113 * sim-model.c (model_option_handler): Remove unused variable `n'.
2114
2115Tue Jul 21 16:27:43 1998 Doug Evans <devans@seba.cygnus.com>
2116
2117 * cgen-utils.c: Include bfd.h.
2118 (sim_disassemble_insn): Update call to CGEN_EXTRACT_FN.
2119
2120Wed Jul 8 18:24:10 1998 Jeffrey A Law (law@cygnus.com)
2121
2122 * sim-bits.h (EXTEND24): Fix typo.
2123
2124Wed Jul 8 17:41:47 1998 Andrew Cagney <cagney@b1.cygnus.com>
2125
2126 * sim-events.c (ETRACE_P): New macro.
2127 (struct _sim_event): Add member trace.
2128 (sim_events_free): Reclaim trace message.
2129
2130 * sim-events.c, sim-events.h (sim_events_schedule_vtracef,
2131 sim_events_schedule_tracef): New functions, include printf trace
2132 information in argument list. If tracing, store asprintf'd trace
2133 message in sim_event.
2134
2135 * hw-events.c, hw-events.h (hw_event_queue_schedule_tracef,
2136 hw_event_queue_schedule_vtracef): New functions, mimic
2137 sim_event_tracef.
2138
2139Mon Jul 6 15:51:14 1998 Jeffrey A Law (law@cygnus.com)
2140
2141 * sim-bits.h (EXTEND24): Define.
2142
2143Thu Jul 2 17:13:25 1998 Doug Evans <devans@seba.cygnus.com>
2144
2145 * cgen-sim.h (CPU_SCACHE): Make size unsigned.
2146 (CPU_SCACHE_HASH_MASK): New macro.
2147 (SCACHE_HASH_PC): Rewrite.
2148 * genmloop.sh (engine_resume_{full,fast}): Move some of hash
2149 computation out of main loop.
2150
2151Wed Jul 1 16:44:12 1998 Doug Evans <devans@seba.cygnus.com>
2152
c906108c
SS
2153 * cgen-sim.h (RECORD_IADDR): Delete.
2154 * cgen-types.h (HOSTINT,HOSTUINT,HOSTPTR): New types.
2155 * genmloop.sh (engine_resume_{full,fast}): Delete icount.
2156
2157Wed Jun 17 12:25:08 1998 Mark Alexander <marka@cygnus.com>
2158
2159 * gennltvals.def (mn10200): Add entry.
2160 * nltvals.def: Regenerate with MN10200 additions.
2161
2162Wed Jun 17 13:18:28 1998 Andrew Cagney <cagney@b1.cygnus.com>
2163
2164 * sim-inline.h (EXTERN_*): Replace with EXTERN_*_P. Correct
2165 documentation on how it works.
2166
2167 * sim-core.h, sim-core.c (sim_core_install, sim_core_attach,
2168 sim_core_detach, sim_core_read_buffer, sim_core_write_buffer,
2169 sim_core_set_xor, sim_core_xor_read_buffer,
2170 sim_core_xor_write_buffer): Update.
2171
2172 * sim-events.h, sim-events.c (sim_events_install,
2173 sim_events_watch_clock, sim_events_schedule_after_signal,
2174 sim_events_schedule, sim_events_watch_sim, sim_events_watch_core,
2175 sim_events_deschedule): Update.
2176
2177 * sim-fpu.h, sim-fpu.c (sim_fpu_zero, sim_fpu_one, sim_fpu_two,
2178 sim_fpu_max32, sim_fpu_max64): Update.
2179
2180Sat Jun 13 07:45:38 1998 Doug Evans <devans@fallis.cygnus.com>
2181
2182 * cgen-trace.c (trace_insn_fini): Redo cycle handling.
2183 * sim-profile.h (PROFILE_DATA): Rename cycle handling members.
2184 * sim-profile.c (profile_print_model): Update.
2185
2186Fri Jun 12 18:35:07 1998 Doug Evans <devans@seba.cygnus.com>
2187
2188 * gennltvals.def (m32r): Use common syscall.h now.
2189 (mn10300): Add entry.
2190 * nltvals.def: Regenerate.
2191
2192 * sim-engine.c (sim_engine_get_run_state): New function.
2193 * sim-engine.h (sim_engine_get_run_state): Declare it.
2194
2195Thu Jun 11 00:50:03 1998 Doug Evans <devans@seba.cygnus.com>
2196
2197 * sim-core.h (SIM_CORE_SIGNAL_FN): New typedef.
2198 * sim-core.c (sim_core_signal): Make extern, always define.
2199
2200Wed Jun 10 16:02:29 1998 Doug Evans <devans@seba.cygnus.com>
2201
2202 * Make-common.in (CGEN_FLAGS_TO_PASS): New variable.
2203 * cgen-ops.h (ANDIF): New macro.
2204 (ANDIF[BQHSD]I): Delete.
2205
2206Thu Jun 4 13:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
2207
2208 * hw-events.c (create_hw_event, delete_hw_event): Delete.
2209 (hw_event_queue_schedule, hw_event_queue_deschedule,
2210 bounce_hw_event): Fix hw-event memory corruptions found by Joyce
2211 Janczyn.
2212
2213 * hw-alloc.h (HW_NZALLOC): Define.
2214
2215 * Make-common.in (test-hw-events): Add target for testing the
2216 hw-event code.
2217
2218Mon May 25 21:11:26 1998 Andrew Cagney <cagney@b1.cygnus.com>
2219
2220 * Make-common.in (SIM_COMMON_HW_OBJS): Add hw-handles.o and
2221 hw-instances.o.
2222 hw-handles.c, hw-instances.c, hw-handles.h, hw-instances.h: New
2223 files.
2224 * hw-main.h: Include hw-handles.h, hw-instances.h.
2225 * hw-base.h ({create,delete}_hw_{handles,instances}_data): Declare
2226 * hw-base.c (hw_create, hw_delete): Call same.
2227
2228Mon May 25 18:55:35 1998 Andrew Cagney <cagney@b1.cygnus.com>
2229
2230 * dv-core.c: Include hw-main.h and sim-main.h.
2231 * dv-pal.c: Include hw-main.h and sim-io.h.
2232 * dv-glue.c: Include hw-main.h.
2233
2234 * hw-main.h: New file. Move list of includes to here.
2235 * hw-base.h: From here.
2236 * Make-common.in (hw_base_headers): Rename to hw_main_headers.
2237 (hw-*.o, dv-*.o): Update.
2238 * hw-tree.c, hw-base.c, hw-properties.c, hw-ports.c, hw-device.c,
2239 hw-events.c, hw-alloc.c, sim-hw.c: Include hw-main.h instead of
2240 sim-main.h.
2241
2242 * hw-base.h (do_hw_attach_regs, do_hw_poll_read_method,
2243 do_hw_poll_read): Move declarations from here.
2244 * hw-main.h: To here.
2245
2246 * hw-base.h (struct hw_device_descriptor, hw_finish_callback):
2247 Move from here.
2248 * hw-main.h (struct hw_descriptor, hw_finish_method): To here,
2249 rename.
2250 * Make-common.in (hw-config.h): Update
2251 * hw-base.c, dv-pal.c, dv-glue.c: Update
2252
2253 * dv-glue.c, hw-device.h, hw-base.h, hw-ports.c: Rename
2254 `*_callback' to `*_method.
2255
2256Mon May 25 18:41:18 1998 Andrew Cagney <cagney@b1.cygnus.com>
2257
2258 * hw-base.h (set_*): Move set method macros from here.
2259 * hw-device.h: To here.
2260
2261Mon May 25 18:21:38 1998 Andrew Cagney <cagney@b1.cygnus.com>
2262
2263 * hw-base.h (create_hw_property_data, delete_hw_property_data):
2264 Declare.
2265
2266 * hw-base.c (hw_create, hw_delete): Call
2267 * hw-properties.c (create_hw_property_data,
2268 delete_hw_property_data): Define.
2269
2270Mon May 25 17:40:46 1998 Andrew Cagney <cagney@b1.cygnus.com>
2271
2272 * hw-device.c, hw-properties.c: Include hw-base.h
2273
2274 * hw-alloc.h, hw-alloc.c: New files. Move alloc code to here.
2275 * hw-device.c: From here.
2276 * hw-base.h: Include "hw-events.h".
2277
2278 * hw-base.h (create_hw_alloc_data, delete_hw_alloc_data): Declare.
2279 * hw-base.c (hw_create, hw_delete): Call.
2280 * hw-alloc.c (create_hw_alloc_data, delete_hw_alloc_data): Define.
2281
2282 * Make-common.in (SIM_NEW_COMMON_OBJS): Add hw-alloc.o.
2283 (hw-alloc.o): New target.
2284
2285Mon May 25 17:14:27 1998 Andrew Cagney <cagney@b1.cygnus.com>
2286
2287 * hw-events.h, hw-events.c: New files. Move event code to here.
2288 * sim-hw.c: From here.
2289 * hw-base.h: Include "hw-events.h".
2290 * Make-common.in (SIM_NEW_COMMON_OBJS): Add hw-events.o.
2291 (hw-events.o): New target.
2292
2293 * hw-device.h (struct hw): Add struct hw_event_data events_of_hw.
2294 * hw-events.h (struct hw_event): Replace typedef hw_event.
2295
2296 * hw-base.h (create_hw_event_data, delete_hw_event_data): Declare.
2297 * hw-base.c (hw_create, hw_delete): Call.
2298 * hw-events.c (create_hw_event_data, delete_hw_event_data): Define.
2299
2300 * dv-pal.c: Update.
2301
2302Mon May 25 16:55:16 1998 Andrew Cagney <cagney@b1.cygnus.com>
2303
2304 * hw-base.c (panic_hw_port_event, empty_hw_ports): Move from here.
2305 * hw-ports.c: To here.
2306
2307 * hw-base.h, hw-ports.c (create_hw_port_data,
2308 delete_hw_port_data): New functions.
2309 * hw-base.c (hw_delete, hw_create): Call same.
2310
2311 * hw-base.h (set_hw_ports, set_hw_port_event): Move set functions
2312 from here.
2313 * hw-ports.h: To here.
2314
2315Mon May 25 16:42:48 1998 Andrew Cagney <cagney@b1.cygnus.com>
2316
2317 * hw-device.c (hw_ioctl), hw-device.h (hw_ioctl_callback): Drop
2318 PROCESSOR and CIA arguments.
2319
2320Fri May 22 12:16:27 1998 Andrew Cagney <cagney@b1.cygnus.com>
2321
2322 * aclocal.m4 (SIM_AC_OPTION_HW): Add enable / disable argument.
2323 Move common object files from here.
2324 * Make-common.in (SIM_COMMON_HW_OBJS): To here.
2325
2326Thu May 21 17:57:16 1998 Andrew Cagney <cagney@b1.cygnus.com>
2327
2328 * sim-hw.c: Include ctype.h.
2329 (do_hw_poll_read): Do not assume EAGAIN.
2330
2331Wed May 20 04:37:57 1998 Doug Evans <devans@seba.cygnus.com>
2332
2333 * cgen-trace.c (first_insn_p): New static local.
2334 (trace_insn_init): Set it.
2335 (trace_insn_fini): Use TRACE_PREFIX.
2336 (trace_insn): Rewrite to use trace_prefix.
2337 * sim-trace.c (trace_prefix): Don't print filename arg if NULL.
2338 Adjust width accordingly.
2339
2340 * sim-profile.h (PROFILE_DATA): New member profile_any_p.
2341 (PROFILE_ANY_P,PROFILE_INSN_P,PROFILE_MEMORY): New macros.
2342 (PROFILE_SCACHE_P,PROFILE_PC_P,PROFILE_CORE_P): New macros.
2343 (PROFILE_COUNT_INSN,PROFILE_COUNT_READ,PROFILE_COUNT_WRITE): Simplify.
2344 (PROFILE_COUNT_CORE): Simplify.
2345 * sim-profile.c (profile_option_handler): Compute profile_any_p.
2346
2347Tue May 19 23:55:30 1998 Doug Evans <devans@seba.cygnus.com>
2348
2349 * cgen-ops.h (ADDCFSI): Fix typo.
2350
2351Sat May 16 12:44:52 1998 Doug Evans <devans@seba.cygnus.com>
2352
2353 * cgen-sim.h (CGEN_CPU): New members idesc_{read,sem}_init_p.
2354 * genmloop.sh: Use them rather than static locals.
2355
2356 * sim-engine.c (sim_engine_set_run_state): New function.
2357 * sim-engine.h (sim_engine_set_run_state): Declare.
2358 * genmloop.sh (pending_reason,pending_sigrc): New static locals.
2359 (@cpu@_engine_stop): New args reason,sigrc. All callers updated.
2360 (engine_resume): Reorganize. Allow synchronous exit from main loop.
2361
2362Fri May 15 16:06:05 1998 Doug Evans <devans@seba.cygnus.com>
2363
2364 * cgen-trace.c (trace_insn_init): New arg first_p.
2365 All callers updated.
2366 (trace_insn_fini): New arg last_p. All callers updated.
2367 * cgen-trace.h (trace_insn_init,trace_insn_fini): Update.
2368 (TRACE_INSN_INIT,TRACE_INSN_FINI): Update.
2369 * genmloop.sh (engine_resume): Update.
2370
2371Fri May 15 15:59:00 1998 Joyce Janczyn <janczyn@cygnus.com>
2372
2373 * Make-common.in (install-common): Run ranlib on installed copy of
2374 libsim.a.
2375
2376Fri May 15 15:03:00 1998 Joyce Janczyn <janczyn@cygnus.com>
2377
2378 * Make-common.in (install-common): Rename and install libsim.a.
2379
2380Tue May 12 15:23:57 1998 Andrew Cagney <cagney@b1.cygnus.com>
2381
2382 * sim-io.c (unistd.h): Include.
2383
2384Wed May 6 16:04:18 1998 Doug Evans <devans@seba.cygnus.com>
2385
2386 * Make-common (sim_main_headers): Sort.
2387 (cgen-*.o): Add cgen-sim.h dependency.
2388
2389 * cgen-scache.c (scache_init): Only allocate space if scache element
2390 size is non-zero.
2391 (scache_flush,scache_print_profile): Check if scache in use first.
2392
2393 * cgen-sim.h (IDESC): Provide forward declaration.
2394 (DECODE): Delete.
2395 (CGEN_CPU): Always define scache member. New members idesc,opcode.
2396 (cgen_cpu_max_extra_bytes): Declare.
2397 * cgen-utils.c (cgen_cpu_max_extra_bytes): New function.
2398
c906108c
SS
2399 * sim-cpu.h: New file. sim_cpu_base moved here.
2400 Move sim_cpu_lookup decl here.
2401 * sim-base.h: #include "sim-cpu.h".
2402 * sim-cpu.c: New file.
2403 * Make-common (sim_main_headers): Add sim-cpu.h.
2404 (sim-cpu.o): Add rule for.
2405
2406 * sim-model.c (set_model): Delete.
2407 (sim_model_set,model_set): New functions.
2408 (sim_model_install): Renamed from model_install.
2409 Don't set default model here.
2410 (model_option_handler): Rewrite --model processing.
2411 (sim_model_lookup,sim_mach_lookup): New functions.
2412 * sim-model.h (MAX_MODELS,MAX_INSNS): Delete.
2413 (insn_timing): Delete.
2414 (INSN_TIMING): New member `num'.
2415 (IMP_PROPERTIES): Always define scache_elm_size member.
2416 (MACH): New member init_cpu.
2417 (sim_machs): Renamed from machs.
2418 (sim_model_install): Renamed from model_install.
2419 (sim_model_set,sim_model_lookup,sim_mach_lookup): Declare.
2420 * sim-module.c (modules): Update.
2421
2422 * sim-profile.c (profile_print_insn): Add cpu arg to INSN_NAME macro.
2423
2424 * sim-io.c: #include <errno.h>.
2425
2426Wed May 6 12:39:15 1998 Andrew Cagney <cagney@b1.cygnus.com>
2427
2428 * dv-pal.c (struct hw_pal_device): Add reader.
2429 (hw_pal_finish): Initialize reader.
2430 (scan_hw_pal): Use reader.
2431
2432 * hw-base.h, sim-hw.c (do_hw_poll_read): New function.
2433 (HW_IO_EOF, HW_IO_NOT_READY): Define.
2434 * dv-pal.c: Use.
2435
2436 * sim-io.h, sim-io.c (sim_io_poll_read): New function. Copy from
2437 ../ppc/main.c sim_io_read_stdin.
2438
2439Fri May 1 12:11:02 1998 Andrew Cagney <cagney@b1.cygnus.com>
2440
2441 * hw-tree.h (hw_tree_print): Paramaterize with print and file
2442 arguments.
2443 * hw-tree.c: Update.
2444
2445 * hw-base.h (hw_port_event_callback): Delete CPU/CIA args.
2446 * hw-device.h (hw_io_read_buffer, hw_io_write_buffer): Delete
2447 CPU/CIA args.
2448 * hw-ports.h (hw_port_event): Ditto.
2449 * hw-ports.c (hw_port_event): Update.
2450 * hw-base.c (panic_hw_io_read_buffer, panic_hw_io_write_buffer):
2451 Update.
2452 * dv-pal.c (hw_pal_io_read_buffer, hw_pal_io_write_buffer):
2453 Update.
2454 (hw_pal_io_write_buffer): Call hw_halt not sim_engine_halt.
2455 (do_counter_event): Update.
2456 * dv-glue.c (hw_glue_io_read_buffer): Update.
2457 (hw_glue_port_event): Update.
2458
2459 * hw-device.h (SIM_DESC): Replace with struct sim_state.
2460 * hw-base.h (hw_create): Ditto.
2461 * hw-base.c (hw_create): Ditto.
2462
2463 * hw-device.c (hw_abort, hw_trace, hw_hw_event_queue_schedule,
2464 hw_event_queue_deschedule, hw_event_queue_time): Delete, moved
2465 from here to.
2466 * sim-hw.c: Here.
2467 * hw-device.h (hw_system_cpu): Declare.
2468 * sim-hw.c (hw_system_cpu): New function.
2469
2470 * sim-core.c (sim_core_map_attach, sim_core_attach): Call
2471 sim_hw_abort not hw_abort.
2472 (sim-hw.h): Include.
2473 (sim_core_read_buffer, sim_core_write_buffer): Call
2474 sim_hw_io_read_buffer and sim_hw_io_write_buffer. Do not pass CPU
2475 argument.
2476 (sim_core_set_xor): Do not pass CPU when aborting.
2477
2478 * sim-n-core.h (sim_core_read_aligned_N,
2479 sim_core_write_aligned_N): Call sim_hw_abort not hw_abort.
2480 (sim_core_read_aligned_N, sim_core_write_aligned_N): Call
2481 sim_cpu_hw_io_read_buffer and sim_cpu_hw_io_write_buffer. Does not
2482 return length.
2483
2484 * sim-hw.h: Declare sim_hw_io_{read,write}_buffer. Declare
2485 sim_hw_print.
2486 * sim-hw.c (sim_hw_io_read_buffer, sim_hw_io_write_buffer,
2487 sim_cpu_hw_io_read_buffer, sim_cpu_hw_io_write_buffer): New
2488 functions.
2489 (sim_hw_print): New function.
2490
2491 * sim-engine.h (sim_engine_vabort): Declare.
2492 * sim-engine.c (sim_engine_vabort): New function.
2493
2494Wed Apr 29 23:58:52 1998 Andrew Cagney <cagney@b1.cygnus.com>
2495
2496 * sim-trace.c (print_data): For floating-point numbers trace raw
2497 hex value.
2498 (trace_result_fp2): New function.
2499 * sim-trace.h (trace_result_fp2): New declaration.
2500 (TRACE_FP_RESULT2): New macro.
2501
2502Tue Apr 28 18:28:58 1998 Geoffrey Noer <noer@cygnus.com>
2503
2504 * common/aclocal.m4: call AM_EXEEXT in SIM_AC_COMMON, define
2505 AM_CYGWIN32 and AM_EXEEXT.
2506 * common/Make-common.in: set EXEEXT, add missing EXEEXTs
2507 to run and install-common rules.
2508 * common/configure: regenerate
2509
2510Sat Apr 25 17:45:01 1998 Andrew Cagney <cagney@b1.cygnus.com>
2511
2512 * sim-types.h (cell_word): New type.
2513 (natural_cell): Delete type.
2514
2515Sun Apr 26 15:31:55 1998 Tom Tromey <tromey@creche>
2516
2517 * configure: Regenerated to track ../common/aclocal.m4 changes.
2518 * config.in: Ditto.
2519
2520Sun Apr 26 15:25:07 1998 Tom Tromey <tromey@cygnus.com>
2521
2522 * acconfig.h (NEED_DECLARATION_PRINTF): Removed.
2523
2524Fri Apr 24 14:16:40 1998 Tom Tromey <tromey@creche>
2525
2526 * configure: Regenerated to track ../common/aclocal.m4 changes.
2527 * config.in: Ditto.
2528
2529Fri Apr 24 11:38:08 1998 Tom Tromey <tromey@cygnus.com>
2530
2531 * acconfig.h: New file.
2532 * Make-common.in (top_builddir): New macro.
2533 (INTL_LIB): Removed.
2534 (INTLLIBS): New macro.
2535 (INTLDEPS): Likewise.
2536 (LIBDEPS): Use INTLDEPS.
2537 (EXTRA_LIBS): Use INTLLIBS.
2538 * aclocal.m4 (SIM_AC_COMMON): Call CY_GNU_GETTEXT.
2539 (CY_WITH_NLS, CY_GNU_GETTEXT, AM_PATH_PROG_WITH_TEST,
2540 AM_LC_MESSAGES): New macros from GNU gettext.
2541
2542Fri Apr 24 19:57:59 1998 Andrew Cagney <cagney@b1.cygnus.com>
2543
2544 * sim-config.h: Discard leading _ from macros.
2545 * sim-types.h: Ditto.
2546
2547Wed Apr 22 14:14:19 1998 Michael Meissner <meissner@cygnus.com>
2548
2549 * Make-common.in (CSEARCH): Add -I to intl directories.
2550 (INTL_LIB): Point to libintl.a.
2551 (LIBDEPS): Add $(INTL_LIB).
2552 (EXTRA_LIBS): Ditto.
2553
2554Tue Apr 21 12:44:27 1998 Doug Evans <devans@canuck.cygnus.com>
2555
2556 * cgen-types.h (GETHIDI,MAKEDI): Tweak.
2557
2558 * cgen-ops.h (ADDCFSI): Fix.
2559 (SUBCFSI): Tweak.
2560
2561Tue Apr 21 13:18:41 1998 Andrew Cagney <cagney@b1.cygnus.com>
2562
2563 * sim-types.h (signed_address, unsigned_address): Define.
2564
2565Mon Apr 20 21:47:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
2566
2567 * sim-fpu.c (sim_fpu_2d): Don't return an SNaN, convert it into a
2568 QNaN.
2569
2570Thu Apr 16 10:30:14 1998 Andrew Cagney <cagney@b1.cygnus.com>
2571
2572 * sim-fpu.c, sim-fpu.h (sim_fpu_fractionto, sim_fpu_tofraction):
2573 New functions, pack / unpack sim_fpu struct using raw values.
2574 (sim_fpu_is): Differentiate between negative and positive
2575 infinity.
2576
2577Tue Apr 14 18:49:31 1998 Andrew Cagney <cagney@b1.cygnus.com>
2578
2579 * sim-bits.h (EXTEND4): Define.
2580 (EXTEND4, EXTEND15, EXTEND11): Ditto.
2581
2582Tue Apr 14 16:31:35 1998 John Metzler <jmetzler@cygnus.com>
2583
2584 * sim-memopt.c (parse_addr): Sunos 4.5 does not have strtol
2585 declared so we need this cast to prevent long long addresses
2586 from being misconfigures. Results in access to unmapped memory.
2587
2588Tue Apr 14 13:19:14 1998 Doug Evans <devans@canuck.cygnus.com>
2589
2590 * Make-common.in (RUNTESTFLAGS): Define.
2591 (check): Pass RUNTESTFLAGS to recursive make.
2592
2593Tue Apr 14 15:09:19 1998 Andrew Cagney <cagney@b1.cygnus.com>
2594
2595 * sim-info.c (sim_info): Be verbose when either VERBOSE or
2596 STATE_VERBOSE_P.
2597
2598Sat Apr 4 23:24:17 1998 Andrew Cagney <cagney@b1.cygnus.com>
2599
2600 * aclocal.m4 (sim-inline): By default, disable sim-inline when
2601 cross compiling.
2602
2603Sat Apr 4 20:36:25 1998 Andrew Cagney <cagney@b1.cygnus.com>
2604
2605 * aclocal.m4 (sim-cflags): Add -fomit-frame-pointer to defaults.
2606 (sim-inline): Update to match sim-inline.[hc]
2607 * configure: Regenerated to track ../common/aclocal.m4 changes.
2608
2609 * Make-common.in (sim_main_headers): Add sim-inline.h
2610
2611 * sim-bits.h (sim-bits.c): Include when H_REVEALS_MODULE_P.
2612 selected.
2613 * sim-endian.h (sim-endian.c): Ditto.
2614
2615 * sim-events.h (_SIM_EVENTS_H_): Replace with SIM_EVENTS_H.
2616 (sim_events_set_trace): Delete unused prototype.
2617
2618 * sim-core.h (_SIM_CORE_H_): Replace with SIM_CORE_H.
2619 * sim-core.c (_SIM_CORE_C_): Ditto for SIM_CORE_C.
2620
2621 * sim-fpu.h (sim-fpu.c): Include when H_REVEALS_MODULE_P.
2622 (sim_fpu_to232i, sim_fpu_to232u, sim_fpu_i232to, sim_fpu_u232to):
2623 Comment out, not yet implemented in sim-fpu.c.
2624 (sim_fpu_zero, sim_fpu_one, sim_fpu_two, sim_fpu_qnan,
2625 sim_fpu_max32, sim_fpu_max64): Mark as EXTERN_SIM_FPU.
2626
2627 * sim-inline.h: Rewrite description.
2628 (H_REVEALS_MODULE_P, C_REVEALS_MODULE_P): Define.
2629 (SIM_MAIN_INLINE): Add inline option.
2630
2631 * sim-inline.c (semantics.c, idecode.c, engine.c, ...): Do not
2632 include generated files. Handled by generator directly.
2633
2634Sat Apr 4 01:07:06 1998 Andrew Cagney <cagney@b1.cygnus.com>
2635
2636 * sim-trace.c (set_trace_option_mask): Keep TRACE_ANY_P
2637 up-to-date.
2638
2639 * sim-trace.h (TRACE_ANY_P): Define.
2640 (struct _trace_data): Add trace_any_p.
2641
2642Mon Mar 30 17:11:55 1998 Andrew Cagney <cagney@b1.cygnus.com>
2643
2644 * run.c (main): Handle all alternatives of enum sim_stop.
2645 (main): Delete unused `asection *s'.
2646
2647Fri Mar 27 16:15:52 1998 Andrew Cagney <cagney@b1.cygnus.com>
2648
2649 * hw-tree.h, hw-tree.c (hw_tree_vparse): New function
2650
2651 * configure: Regenerated to track ../common/aclocal.m4 changes.
2652
2653 * sim-hw.c: New file.
2654 * sim-hw.h (sim_hw_parse): Declare function.
2655 (hw-tree.h): Do not include.
2656
2657 * sim-base.h (STATE_HW): Define.
2658 (struct sim_state_base): Add member struct *hw.
2659
2660 * sim-module.c (sim-hw.h): Include.
2661 (modules): Add sim_hw_install.
2662
2663 * aclocal.m4 (sim_hw_obj): Add sim-hw.o
2664
2665Fri Mar 27 14:55:06 1998 Andrew Cagney <cagney@b1.cygnus.com>
2666
2667 * sim-base.h (CPU_INDEX): Define.
2668
2669 * sim-utils.c (sim_state_alloc): Initialize.
2670 * sim-module.c (sim_post_argv_init): Ditto.
2671
2672Thu Mar 26 10:07:57 1998 Stu Grossman <grossman@bhuna.cygnus.co.uk>
2673
2674 * aclocal.m4 (sim_hw_obj): Fix sed expression to generate
2675 properly formatted lists.
2676
2677Thu Mar 26 10:37:22 1998 Andrew Cagney <cagney@b1.cygnus.com>
2678
2679 * dv-pal.c (enum hw_pal_address_mask): From Stu Grossman, was
2680 0x2f needs to be 0x3f.
2681
2682Thu Mar 26 09:10:56 1998 Andrew Cagney <cagney@b1.cygnus.com>
2683
2684 * hw-tree.c (hw_tree_find_property): Return NULL when device is
2685 not found.
2686 (hw_tree_find_*_property): Clean up error message when property is
2687 not found.
2688
2689 * dv-pal.c (hw_pal_io_read_buffer): Check the smp property is
2690 present before looking for it.
2691
2692Wed Mar 25 16:17:38 1998 Ian Carmichael <iancarm@cygnus.com>
2693
2694 * aclocal.m4 (AC_CHECK_HEADERS): Add check for fpu_control.h.
2695 (AC_CHECK_FUNCS): Add check for __setfpucw.
2696 * configure: Regenerated.
2697
2698Wed Mar 25 09:18:34 1998 Andrew Cagney <cagney@b1.cygnus.com>
2699
2700 * dv-pal.c (hw_pal_countdown, hw_pal_countdown_value,
2701 hw_pal_timer, hw_pal_timer_value): Define.
2702 (hw_pal_io_read_buffer, hw_pal_io_write_buffer): Add timer support
2703 (do_counter_event, do_counter_read, do_counter_value,
2704 do_counter_write): new functions.
2705
2706Tue Mar 24 12:24:24 1998 Andrew Cagney <cagney@b1.cygnus.com>
2707
2708 * hw-tree.c (hw_printf): Send tree dump to stderr, same as other
2709 trace output.
2710
2711 * hw-base.c (hw_create): Stop searching for a device when one is
2712 found.
2713
2714Wed Mar 25 12:35:29 1998 Andrew Cagney <cagney@b1.cygnus.com>
2715
2716 * configure: Regenerated to track ../common/aclocal.m4 changes.
2717
2718Mon Mar 23 10:25:08 1998 Andrew Cagney <cagney@b1.cygnus.com>
2719
2720 * aclocal.m4 (SIM_AC_OPTION_HARDWARE): Add second argument,
2721 appends extra devices.
2722 (SIM_AC_OPTION_HARDWARE): Substute sim_hw, a non-duplicate list of
2723 the device names.
2724
2725 * Make-common.in (hw-config.h): New target, create hw-config.h
2726 file.
2727 (SIM_HW): Definition from @sim_hw@.
2728 (hw-base.o): Depend on hw-config.h
2729
2730Tue Mar 24 17:41:35 1998 Stu Grossman <grossman@bhuna.cygnus.co.uk>
2731
2732 * Make-common.in: Get SHELL from configure.
2733 * (stamp-tvals sim-inline.c): Use $(SHELL) when invoking
2734 move-if-change. Fixes NT native build problem.
2735 * Makefile.in (nltvals.def): Use $(SHELL) when invoking
2736 move-if-change. Fixes NT native build problem.
2737 * configure: Regenerate with autoconf 2.12.1 to fix shell issues for
2738 NT native builds.
2739
2740Sun Mar 22 16:54:40 1998 Andrew Cagney <cagney@b1.cygnus.com>
2741
2742 * hw-device.h, hw-device.c (hw_strdup): New function.
2743
2744 * hw-base.c (hw_create): Use hw_strdup when saving a copy of the
2745 strings name, family and args.
2746 (full_name_of_hw): Use hw_strdup when returning the full path.
2747
2748 * hw-properties.c: Clean up property not found / wrong type error
2749 messages.
2750
2751 * hw-tree.c (hw_tree_parse): Finish a devices initialization
2752 before attaching any ports.
2753
2754 * hw-base.c (hw-config.): Include. Replace hardwired table.
2755
2756 * dv-glue.c: Copy over ../ppc/hw_glue.c. Update to new framework.
2757
2758 * Make-common.in: Add rule for dv-glue.o.
2759
2760Sun Mar 22 16:45:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
2761
2762 * hw-base.c (hw_finish): Move setting of trace level to here.
2763 (hw_create): From here.
2764
2765 * hw-base.h, hw-base.c (do_hw_attach_regs): Copy function from
2766 ../ppc/device_table.c.
2767
2768 * dv-pal.c (hw_pal_finish): Attach PAL device to parent bus.
2769
2770 * hw-tree.c (print_properties): Supress path when printing
2771 properties of root node.
2772
2773Sun Mar 22 16:21:15 1998 Andrew Cagney <cagney@b1.cygnus.com>
2774
2775 * hw-device.h (HW_TRACE): Define.
2776 (hw_trace): Declare.
2777 * hw-device.c (hw_trace): Implement function.
2778
2779 * hw-base.c (hw_create): Set hw trace level from "trace?"
2780 property.
2781
2782 * dv-core.c (dv_core_attach_address_callback): Add trace.
2783
2784 * dv-pal.c: Replace DTRACE with HW_TRACE.
2785
2786Sun Mar 22 15:23:35 1998 Andrew Cagney <cagney@b1.cygnus.com>
2787
2788 * hw-device.h (HW_ZALLOC, HW_MALLOC): New macros.
2789 (hw_alloc_data): Delcare.
2790 (struct hw): Add member alloc_of_hw.
2791
2792 * hw-device.c (hw_zalloc, hw_malloc, hw_free, hw_free_all): New
2793 functions. Assocate memory with a device.
2794 (stdlib.h): Include.
2795
2796 * hw-base.h (set_hw_delete): Define.
2797 (hw_delete_callback): Declare.
2798 (hw_delete): Declare.
2799
2800 * hw-base.c (hw_delete): Implement function.
2801 (struct hw_base_data): Add member to_delete.
2802 (ignore_hw_delete): New function, does nothing.
2803 (hw_create): Set the hw_delete method.
2804 (hw_create): Allocate the base type using HW_ZALLOC before setting
2805 any methods.
2806
2807 * hw-tree.h, hw-tree.c (hw_tree_delete): New function.
2808
2809 * hw-properties.c: Replace zalloc/zfree with hw_zalloc/hw_free.
2810
2811 * hw-ports.c: Replace zalloc/zfree with hw_zalloc/hw_free.
2812 (attach_hw_port_edge): Add struct hw argument
2813
2814 * dv-pal.c (hw_pal_finish): Replace zalloc/zfree with
2815 hw_zalloc/hw_free.
2816
2817Sun Mar 22 15:09:52 1998 Andrew Cagney <cagney@b1.cygnus.com>
2818
2819 * hw-device.h (hw_attach_address_callback,
2820 hw_detach_address_callback): Attach to a single space not a space
2821 mask. Clarify interpretation of SPACE:ADDR parameters.
2822
2823 * hw-base.c (passthrough_hw_attach_address,
2824 passthrough_hw_detach_address): Update.
2825 * dv-core.c (dv_core_attach_address_callback): Ditto.
2826 * dv-pal.c (hw_pal_attach_address): Ditto.
2827
2828Thu Mar 19 00:41:00 1998 Andrew Cagney <cagney@b1.cygnus.com>
2829
2830 * sim-options.h: Document additional CPU arg to OPTION_HANDLER.
2831
2832Wed Mar 18 14:13:02 1998 Andrew Cagney <cagney@b1.cygnus.com>
2833
2834 * Make-common.in (SIM_HW_OBJS, SIM_HW_SRC, SIM_DV_OBJS): Define.
2835 (hw-base_h, hw-device_h, hw-handles_h, hw-instances_h, hw_ports_h,
2836 hw-properties_h, hw-tree_h): Define, point at corresponding
2837 header.
2838 (hw_base_headers): Define list of headers included by hw-base.h
2839 (hw-base.o, hw-device.o, hw-instances.o, hw-handles.o, hw-ports.o,
2840 hw-properties.o, hw-tree.o): Specify dependencies.
2841 (dv-core.o, dv-pal.o): Ditto.
2842
2843 * sim-hw.h: New file.
2844
2845 * hw-device.h, hw-device.c, hw-properties.h, hw-properties.c,
2846 hw-ports.h, hw-ports.c: New files. Copied from ../ppc/device.[ch].
2847
2848 * hw-tree.h, hw-tree.c: New files. Copied from ../ppc/tree.[hc].
2849
2850 * hw-base.h, hw-base.c: new files. Copied from
2851 ../ppc/device_table.[hc].
2852
2853 * dv-core.c, dv-pal.c: New files. Copied from
2854 ../ppc/hw_{core,pal}.c
2855
2856 * sim-basics.h (struct hw): Declare.
2857 (enum port_direction, enum object_disposition): Declare.
2858
2859Wed Mar 18 12:38:12 1998 Andrew Cagney <cagney@b1.cygnus.com>
2860
2861 * aclocal.m4 (SIM_AC_OPTION_HARDWARE): Set sim_hw_obj, sim_dv_obj,
2862 sim_dv_src in Makefile. Take list of devices as parameter to m4
2863 macro..
2864
2865 * configure: Regenerated to track ../common/aclocal.m4 changes.
2866
2867Mon Mar 16 12:37:33 1998 Andrew Cagney <cagney@b1.cygnus.com>
2868
2869 * sim-trace.h, sim-trace.c (trace_prefix): Pass in sim_cia so that
2870 trace_prefix can abort cleanly.
2871
2872Sat Mar 14 18:36:12 1998 Doug Evans <devans@seba.cygnus.com>
2873
2874 * dv-sockser.c, dv-sockser.h: New files.
2875 * Make-common.in (dv-sockser.o): Add rule for.
2876 * aclocal.m4: Check for fcntl.h.
2877 * config.h: Add HAVE_FCNTL_H.
2878
2879 * sim-break.c (remove_breakpoint): Fix thinko.
2880
2881 * sim-hload.c (sim_load): Provide default value of SIM_HANDLES_LMA.
2882 Use SIM_HANDLES_LMA for lma_p arg to sim_load_file.
2883
28841998-03-13 Fred Fish <fnf@cygnus.com>
2885
2886 * sim-base.h (struct sim_state_base): Add prog_syms and
2887 define macro STATE_PROG_SYMS.
2888 * sim-trace.c (trace_prefix): Add variables abfd, symsize,
2889 symbol_count, and asymbols. Call bfd_get_symtab_upper_bound
2890 and bfd_canonicalize_symtab, to get symbol table on first use
2891 and preserve it via STATE_PROG_SYMS for future calls to
2892 bfd_find_nearest_line.
2893
2894Wed Mar 11 14:02:47 1998 Andrew Cagney <cagney@b1.cygnus.com>
2895
2896 * sim-core.h, sim-core.c (sim_core_map_to_str): Delete.
2897
2898 * sim-core.c (sim_core_attach): Handle a generic number of maps -
2899 up to nr_maps, not just access_* maps.
2900
2901 * sim-profile.h (struct PROFILE_DATA): Track nr_maps different
2902 maps.
2903
2904 * sim-profile.c (profile_print_core): Make map unsigned. Iterate
2905 over nr_maps not sim_core_nr_maps.
2906
2907 * sim-events.h, sim-events.c (sim_events_watch_core): Change
2908 core_map argument to unsigned.
2909 (struct _sim_core): Ditto for struct member core_map.
2910
2911 * sim-core.h (nr_sim_core_maps, sim_core_*_map): Delete
2912
2913 * sim-basics.h (access_io, access_*_io): Define.
2914 (map_read, map_write, map_exec, map_io): Define.
2915
2916 * sim-core.c, sim-core.h (sim_core_attach): Replace argument
2917 attach with more generic mapmask.
2918 (sim_core_{read,write}_*): Change map argument to unsigned.
2919
2920 * sim-core.c (sim_core_uninstall, sim_core_attach,
2921 sim_core_detach): Iterate over nr_maps instead of
2922 sim_core_nr_maps.
2923
2924 * sim-break.c (insert_breakpoint): Write breakpoints to exec_map
2925 instead of the write_map.
2926 (remove_breakpoint): Ditto.
2927
2928 * genmloop.sh (engine_resume_full): Replace sim_core_*_map
2929 with read_map, write_map, exec_map resp.
2930
2931 * cgen-mem.h (DECLARE_GETMEM, DECLARE_SETMEM, DECLARE_GETIMEM):
2932 Ditto.
2933
2934 * cgen-utils.c (sim_disassemble_insn): Ditto.
2935
2936 * sim-hrw.c (sim_write, sim_write): Ditto.
2937
2938 * sim-utils.h, sim-utils.c (access_to_str, map_to_str,
2939 transfer_to_str): New functions.
2940
2941Mon Mar 9 12:50:59 1998 Doug Evans <devans@seba.cygnus.com>
2942
2943 * sim-base.h (sim_state_base): New member environment.
2944 (STATE_ENVIRONMENT): New macro.
2945 * sim-config.c (current_environment): Delete.
2946 (sim_config_default): New function.
2947 (sim_config): Set STATE_ENVIRONMENT, not current_environment.
2948 * sim-config.h (current_environment,CURRENT_ENVIRONMENT): Delete.
2949 (sim_config_default): Add prototype.
2950 * sim-module.c (sim_pre_argv_init): Call sim_config_default.
2951 * sim-options.c (standard_option_handler, case OPTION_ENVIRONMENT):
2952 Set STATE_ENVIRONMENT, not current_environment.
2953
2954Mon Mar 9 11:59:03 1998 Jim Wilson <wilson@cygnus.com>
2955
2956 * sim-fpu.c (NR_GUARDS64): Change NR_PAD32 to NR_PAD64.
2957
2958Tue Mar 3 10:53:05 1998 Andrew Cagney <cagney@b1.cygnus.com>
2959
2960 * sim-types.h (SIGNED32, SIGNED64): Pacify GCC.
2961
2962 * sim-alu.h (ALU64_BEGIN): Make alu64_r unsigned.
2963
2964Mon Mar 2 10:20:06 1998 Doug Evans <devans@seba.cygnus.com>
2965
2966 * Make-common.in (TAGS): Make smarter.
2967 * Makefile.in (TAGS): Ditto.
2968
2969Fri Feb 27 19:09:57 1998 Doug Evans <devans@canuck.cygnus.com>
2970
2971 * sim-module.c (*): Fix typos in assertion tests.
2972
2973Sat Feb 28 13:54:10 1998 Andrew Cagney <cagney@b1.cygnus.com>
2974
2975 * sim-module.c (sim_pre_argv_init): String passed to asprintf
2976 can't be constant.
2977
2978 * sim-options.c (sim_parse_args): Ditto.
2979 (sim_args_command): Return OK, instead of nothing, for an empty
2980 command.
2981
2982Fri Feb 27 13:29:13 1998 Andrew Cagney <cagney@b1.cygnus.com>
2983
2984 * sim-profile.c (profile_info): Rename from profile_print. Drop
2985 misc and misc_cpu callback arguments. Use
2986 PROFILE_INFO_CPU_CALLBACK and STATE_PROFILE_INFO_CALLBACK instead.
2987 (profile_install): Install profile_info function.
2988
2989 * sim-profile.h (PROFILE_INFO_CPU_CALLBACK,
2990 STATE_PROFILE_INFO_CALLBACK): Define.
2991 (struct PROFILE_DATA): Add field info_cpu_callback.
2992 (profile_print): Delete function.
2993
2994 * sim-base.h (STATE_MODULES): Define. Replace individual
2995 STATE_*_LIST with single struct module_list.
2996
2997 * sim-module.h (MODULE_INFO_FN, MODULE_INFO_LIST): Declare.
2998 (struct module_list): Declare.
2999
3000 * sim-module.h, sim-module.c (sim_module_add_info_fn,
3001 sim_module_info): New functions.
3002 (sim_module_install): Clean up module data structures.
3003
3004 * sim-info.c (sim_info): New file. New function. Call
3005 sim_module_info.
3006
3007 * Make-common.in (sim-info.o): Define rule.
3008 (SIM_NEW_COMMON_OBJS): Add sim-info.o.
3009
3010
3011Fri Feb 27 18:26:16 1998 Doug Evans <devans@canuck.cygnus.com>
3012
3013 * sim-base.h (sim_cpu_base): New members name, options.
3014 (sim_cpu_lookup): Add prototype.
3015 * sim-module.c (sim_pre_argv_init): Provide default names for cpus.
3016 * sim-options.h (DECLARE_OPTION_HANDLER): New argument `cpu'.
3017 (sim_add_option_table): Update prototype.
3018 * sim-options.c (sim_add_option_table): New argument `cpu'.
3019 (standard_option_handler,standard_install): Update.
3020 (sim_parse_args): Handle cpu specific options.
3021 (print_help): New static function.
3022 (sim_print_help): Call it. Print cpu specific options.
3023 (find_match): New static function.
3024 (sim_args_command): Call it. Handle cpu specific options.
3025 * sim-utils.c (sim_cpu_lookup): New function.
3026 * sim-memopt.c (memory_option_handler): Update.
3027 (sim_memopt_install): Update.
3028 * sim-model.c (model_option_handler): Update.
3029 (model_install): Update.
3030 * sim-profile.c (profile_option_handler): Update.
3031 (profile_install): Update.
3032 * sim-trace.c (trace_option_handler): Update.
3033 (trace_install): Update.
3034 * sim-watch.c (watchpoint_option_handler): Update.
3035 (sim_watchpoint_install): Update.
3036 * cgen-scache.c (scache_option_handler): Update.
3037 (scache_install): Update.
3038
3039Wed Feb 25 11:00:26 1998 Doug Evans <devans@canuck.cygnus.com>
3040
3041 * Make-common.in (check): Run `make check' in testsuite dir.
3042
3043Wed Feb 25 14:40:24 1998 Andrew Cagney <cagney@b1.cygnus.com>
3044
3045 * sim-trace.c (trace_result0): New function.
3046
3047 * sim-trace.h (TRACE_FP_*, TRACE_FPU_*): Rename TRACE_FPU_*
3048 macro's to TRACE_FP_*. TRACE_FPU_* should be defined and used when
3049 tracing sim_fpu variables.
3050 (TRACE_ALU_RESULT0): Define.
3051 (TRACE_FP_RESULT_WORD): Define.
3052 (TRACE_FP_INPUT_WORD1): Define.
3053
3054 * sim-fpu.c, sim-fpu.h (sim_fpu_max32, sim_fpu_max64, sim_fpu_one,
3055 sim_fpu_two): New constants.
3056 (sim_fpu_op1, sim_fpu_op2): New types.
3057 (struct _sim_fpu): Delete member result. Re-order other members.
3058 (sim_fpu_sign, sim_fpu_exp): New functions.
3059 (sim_fpu_max, sim_fpu_min): new functions.
3060 (EXPMAX32, EXPMAX64, NR_PAD32, NR_PAD64, NR_GUARDS32, NR_GUARDS64,
3061 NORMAL_EXPMAX32, NORMAL_EXPMAX64): Define.
3062
3063Tue Feb 24 22:45:39 1998 Doug Evans <devans@seba.cygnus.com>
3064
3065 * sim-profile.c (profile_print): Delete duplicate test of
3066 PROFILE_INSN_IDX.
3067 (profile_print_pc): Exit early if data collection not set up.
3068 (profile_print_core): Simplify by calling sim_core_map_to_str.
3069 * sim-core.h (sim_core_map_to_str): Declare.
3070 * sim-core.c (sim_core_map_to_str): Make non-static.
3071
3072 * genmloop.sh (engine_resume): Update insn_count before exiting.
3073 (engine_resume_full): Keep accurate core profile data.
3074
3075 * cgen-utils.c (sim_disassemble_insn): Don't use
3076 sim_core_read_aligned_N, it messes up profiling results.
3077
3078Mon Feb 23 20:45:57 1998 Mark Alexander <marka@cygnus.com>
3079
3080 * nltvals.def: Regenerate with MN10300 additions.
3081
3082Tue Feb 24 13:18:42 1998 Andrew Cagney <cagney@b1.cygnus.com>
3083
3084 * sim-trace.h (TRACE_ALU_RESULT2): Define.
3085
3086 * sim-trace.h, sim-trace.c (trace_result_word2,
3087 trace_input_word4, trace_result_word4): New function.
3088
3089Mon Feb 23 13:08:35 1998 Doug Evans <devans@canuck.cygnus.com>
3090
3091 * cgen-sim.h (SEM_NEXT_PC): New arg `len'.
3092
3093 * sim-xcat.h: Delete.
3094 * cgen-mem.h: Delete inclusion of sim-xcat.h.
3095 * cgen-sim.h: Ditto.
3096 * sim-alu.h: Replace sim-xcat.h with symcat.h.
3097 * sim-n-bits.h: Ditto.
3098 * sim-n-core.h: Ditto.
3099 * sim-n-endian.h: Ditto.
3100
3101Mon Feb 23 13:19:58 1998 Michael Meissner <meissner@cygnus.com>
3102
3103 * syscall.c (cb_syscall): Handle short reads, and EOF.
3104
3105Tue Feb 24 00:29:57 1998 Andrew Cagney <cagney@b1.cygnus.com>
3106
3107 * sim-trace.c (print_data): case trace_fmt_fp missing break. Use
3108 sim_fpu to safely print fp_word values.
3109 (print_data): Add trace_fmt_bool and trace_fmt_addr.
3110 (trace_result_bool1, trace_result_addr1): New functions.
3111 (trace_input_bool1, trace_input_addr1): New functions.
3112
3113 * sim-trace.h (TRACE_FPU_*): Define.
3114
3115Mon Feb 23 13:24:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
3116
3117 * sim-fpu.h (enum sim_fpu_class): Add sim_fpu_class_denorm.
3118 (sim_fpu_fpto, sim_fpu_tofp): Define.
3119
3120Fri Feb 20 18:08:51 1998 Andrew Cagney <cagney@b1.cygnus.com>
3121
3122 * sim-fpu.c (sim_fpu_cmp): New function.
3123
3124Wed Feb 18 16:29:21 1998 Doug Evans <devans@canuck.cygnus.com>
3125
3126 * cgen-utils.h (sim_disassemble_insn): Use CGEN_INSN_BITSIZE
3127 instead of abuf->length.
3128 * sim-trace.c (trace_options): Have -t only trace a few useful things.
3129 (set_trace_option_mask): Renamed from set_trace_options.
3130 (set_trace_option): New function.
3131 (trace_option_handler): Update calls to set_trace_option{,_mask}.
3132 * sim-trace.h (TRACE_USEFUL_MASK): New macro.
3133
3134Wed Feb 18 12:42:15 1998 Andrew Cagney <cagney@b1.cygnus.com>
3135
3136 * sim-basics.h: Declare struct _sim_fpu.
3137
3138Tue Feb 17 16:27:46 1998 Andrew Cagney <cagney@b1.cygnus.com>
3139
3140 * sim-trace.h (TRACE_ALU_INPUT*, TRACE_ALU_RESULT): Define.
3141 (trace_prefix, trace_input*, trace_result*): Declare.
3142 (trace_one_insn): Change declaration, assume trace_prefix called.
3143 (trace_generic): Like trace_one_insn.
3144 (TRACE_ALU_IDX, TRACE_*_IDX): Change #define's to enum.
3145 (TRACE_alu, TRACE_[a-z]*): Update.
3146
3147 * sim-trace.c (trace_prefix, trace_input*, trace_result*,
3148 trace_insn, save_data, trace_idx_to_str, print_data): New
3149 functions.
3150 (trace_one_insn): Rewrite.
3151 (trace_generic): New function.
3152
3153Tue Feb 17 17:27:30 1998 Doug Evans <devans@seba.cygnus.com>
3154
c906108c
SS
3155 * aclocal.m4 (USE_MAINTAINER_MODE): New variable.
3156
3157 * cgen-sim.h (SEMANTIC_CACHE_FN): Delete.
3158 (SEMANTIC_FN): Rewrite declaration.
3159 (DECODE): Update type of semantic_fast member.
3160 ({EX,SEM}_FN_NAME): Have only one version.
c906108c
SS
3161 * sim-base.h (sim_state_base): Delete conditionals surrounding
3162 member scache_size.
3163
3164Tue Feb 10 18:31:49 1998 Andrew Cagney <cagney@b1.cygnus.com>
3165
3166 * sim-load.c (sim_load_file): Print LMA/VMA according to value
3167 used.
3168
3169Tue Feb 10 14:56:23 1998 Ian Carmichael <iancarm@cygnus.com>
3170
3171 * sim-core.c: Add missing prototypes for WITH_DEVICES.
3172 Add missing parameters to device_io calls.
3173 * sim-core.h: Add missing parameters to device_io calls.
3174
3175Mon Feb 9 14:48:37 1998 Doug Evans <devans@canuck.cygnus.com>
3176
3177 * cgen-sim.h (DECODE): Always use switch for `read' for now.
3178 (PAREXEC): Renamed from PARALLEL_EXEC. All uses updated.
3179 (SEMANTIC{,_CACHE}_FN): Fix return type.
c906108c
SS
3180 * genmloop.sh (@cpu@_engine_run): Delete `current_state'.
3181 (engine_resume): Likewise. Make `engine' volatile. Save copy
3182 of cpu pointer in volatile object. Initialize read switch if
3183 -parallel.
3184
3185Thu Feb 5 13:27:04 1998 Doug Evans <devans@seba.cygnus.com>
3186
3187 * cgen-sim.h (EX_FN_NAME): _exc_ -> _ex_.
3188 (SEM_INSN): New macro.
3189
3190Tue Feb 3 16:31:56 1998 Andrew Cagney <cagney@b1.cygnus.com>
3191
3192 * sim-run.c (sim_engine_run): Assume IMEM is 32 bit.
3193
3194Sun Feb 1 16:47:51 1998 Andrew Cagney <cagney@b1.cygnus.com>
3195
3196 * configure: Regenerated to track ../common/aclocal.m4 changes.
3197
3198Sun Feb 1 16:16:57 1998 Andrew Cagney <cagney@b1.cygnus.com>
3199
3200 * sim-types.h (fp_word): New type, define according to
3201 WITH_TARGET_FLOATING_POINT_BITSIZE.
3202
3203 * aclocal.m4 (default_sim_floating_point_bitsize): Add
3204 configuration of size of floating point registers.
3205
3206Sun Feb 1 14:02:31 1998 Andrew Cagney <cagney@b1.cygnus.com>
3207
3208 * sim-profile.c (profile_print): Only print CPU <N> if other
3209 output is going to appear.
3210
3211Sat Jan 31 18:15:41 1998 Andrew Cagney <cagney@b1.cygnus.com>
3212
3213 * configure: Regenerated to track ../common/aclocal.m4 changes.
3214
3215Sat Jan 31 18:03:55 1998 Andrew Cagney <cagney@b1.cygnus.com>
3216
3217 * sim-types.h (address_word): Typedef according to
3218 WITH_TARGET_ADDRESS_BITSIZE.
3219 (signed_cell, unsigned_cell, natural_cell): Ditto using
3220 WITH_TARGET_CELL_BITSIZE.
3221
3222 * sim-config.h (WITH_TARGET_ADDRESS_BITSIZE): Define.
3223 (WITH_TARGET_CELL_BITSIZE): Define.
3224 (WITH_HOST_WORD_BITSIZE): Delete.
3225
3226 * sim-config.c (print_sim_config): Update.
3227
3228 * aclocal.m4 (SIM_AC_OPTION_BITSIZE): Add support for
3229 configuration of address and OpenFirmware cell sizes.
3230
3231Fri Jan 30 09:36:33 1998 Andrew Cagney <cagney@b1.cygnus.com>
3232
3233 * sim-engine.h (sim_engine_run): Add argument nr_cpus.
3234 * sim-run.c (sim_engine_run): Update.
3235
3236 * sim-engine.h (SIM_ENGINE_HALT_HOOK): Use SET_CPU_CIA instead of
3237 CPU_CIA.
3238 * sim-run.c (sim_engine_run): Ditto.
3239
3240 * sim-resume.c (sim_resume): Obtain nr_cpus from sim_engine.
3241 (sim_resume): Pass nr_cpus to sim_engine_run.
3242
3243 * sim-engine.h (struct _sim_engine): Add member nr_cpus.
3244
3245 * sim-engine.c (sim_engine_init): Hardwire nr_cpus to
3246 MAX_NR_PROCESSORS.
3247 (sim_engine_nr_cpus) sim-engine.c, sim-engine.h: New function
3248
c906108c
SS
3249Fri Jan 23 14:20:54 1998 Doug Evans <devans@seba.cygnus.com>
3250
3251 * Make-common.in (stamp-tvals): New rule.
3252 (targ-vals.h,targ-map.c): Depend on it.
3253 (clean): Remove stamp-tvals.
3254
3255Tue Jan 20 21:35:13 1998 Michael Meissner <meissner@cygnus.com>
3256
3257 * sim-utils.c (sim_state_alloc): #if 0 variable that is only used
3258 in code also #if 0'ed.
3259
3260Mon Jan 19 22:26:29 1998 Doug Evans <devans@seba>
3261
3262 * configure: Regenerated to track ../common/aclocal.m4 changes.
3263 * aclocal.m4: Recognize --enable-maintainer-mode.
3264
3265Mon Jan 19 12:45:45 1998 Doug Evans <devans@seba.cygnus.com>
3266
3267 * cgen-scache.h: Deleted.
3268 * Make-common.in (cgen-run.o,cgen-scache.o): Delete cgen-scache.h dep.
c906108c
SS
3269 * cgen-scache.c: Only compile contents if WITH_SCACHE.
3270 (scache_init): Use runtime computed size of SCACHE.
3271 (scache_flush): Likewise.
3272 * cgen-mem.h (GETIMEMU[QHSD]I): Declare.
3273 ([GS]ETT{QI,UQI,HI,UHI,SI,USI,DI,UDI}): Declare.
3274 * cgen-sim.h: Scache support moved here.
3275 (PC): Redo definition.
3276 (ARGBUF,SCACHE,PARALLEL_EXEC): Provide forward decls.
3277 (DECODE): Add parallel execution support.
3278 Only include semantic label members if using switch.
3279 (SWITCH,CASE,BREAK,DEFAULT,ENDSWITCH): Portable computed goto support.
3280 (CGEN_CPU): Delete members exec_state, halt_sigrc, halt_jmp_buf.
3281 (IADDR,CIA,SEM_ARG,EX_FN_NAME,SEM_FN_NAME,RECORD_IADDR,SEM_ARGBUF,
3282 SEM_NEXT_PC,SEM_BRANCH_VIA_{CACHE,ADDR},SEM_NEW_PC_ADDR): Moved here
3283 from cgen-types.h.
3284 (engine_{stop,run,resume,halt,signal}): Delete decls.
3285 * cgen-types.h (CGEN_{XCAT3,CAT3}): Delete.
3286 (argbuf,scache): Delete forward decls.
3287 (STATE): Delete decl.
3288 * cgen-utils.c: Don't include decode.h, mem-ops.h, sem-ops.h.
3289 Include cgen-mem.h, cgen-ops.h.
3290 (engine_halt,engine_signal): Delete.
3291 ({ex,exc,sem,semc}_illegal): Delete.
3292 (sim_disassemble_insn): Result of extract fn is in bits.
3293 * genmloop.sh: Rewrite.
3294
3295 * cgen-trace.c (trace_insn): Set printed_result_p=0 if not tracing
3296 line numbers.
3297
3298 * sim-base.h (sim_state_base): Delete member `model'.
3299 (sim_cpu_base): Add member `model'.
3300 * sim-model.h (IMP_PROPERTIES): New type.
3301 (MACH): New members imp_props, models.
3302 (models): Delete decl.
3303 * sim-model.c (set_model): Update.
3304 * sim-profile.c (profile_print_model): Update.
3305
3306 * sim-utils.c (sim_state_alloc): Delete setting of cpu backlink here.
3307
3308Fri Jan 16 12:33:09 1998 Nick Clifton <nickc@cygnus.com>
3309
3310 * cgen-trace.c (trace_insn): Call CGEN_INSN_MNEMONIC() rather than
3311 CGEN_INSN_SYNTAX().
3312
3313Mon Dec 15 23:17:11 1997 Andrew Cagney <cagney@b1.cygnus.com>
3314
3315 * configure: Regenerated to track ../common/aclocal.m4 changes.
3316 * config.in: Ditto.
3317
3318Mon Dec 15 23:16:03 1997 Andrew Cagney <cagney@b1.cygnus.com>
3319
3320 * aclocal.m4 (AR): Check for sigaction.
3321
3322Thu Dec 4 09:21:05 1997 Doug Evans <devans@canuck.cygnus.com>
3323
3324 * Make-common.in (sim-core.o): Depend on $(sim_main_headers).
3325
3326 * sim-config.h (WITH_TREE_PROPERTIES): Define as 0.
3327 * sim-config.c (sim_config): Replace WITH_DEVICES with
3328 WITH_TREE_PROPERTIES.
3329
3330 * configure: Regenerated to track ../common/aclocal.m4 changes.
3331
3332Wed Dec 3 17:56:02 1997 Doug Evans <devans@canuck.cygnus.com>
3333
3334 * Make-common.in (SIM_ENVIRONMENT): New variable.
3335 (CONFIG_CFLAGS): Add it.
3336 * aclocal.m4 (SIM_AC_OPTION_ENVIRONMENT): Handle
3337 --enable-sim-environment option.
3338 * configure: Regenerated.
3339 * sim-config.h (environment support): Rewrite.
3340 * sim-config.c (current_environment): Define as enum, unconditionally.
3341 (current_alignment): Define unconditionally.
3342 (config_environment_to_a): Update.
3343 (config_alignment_to_a): Fix type of argument. Define unconditionally.
3344 (sim_config): Handle environment and alignment determination
3345 unconditionally. Delete sanity checks of current_environment,
3346 unnecessary.
3347 (print_sim_config): Update.
3348 * sim-options.c (STANDARD_OPTIONS enum): Add OPTION_ENVIRONMENT.
3349 (standard_options): Add --environment.
3350 (standard_option_handler): Likewise.
3351
3352Fri Nov 28 12:21:25 1997 Andrew Cagney <cagney@b1.cygnus.com>
3353
3354 * sim-alu.h: Add notes on carry vs borrow for subtraction.
3355 (ALU{,8,16,32,64}ADD): Redefine ADD macro as add overflowing.
3356 (ALU{,8,16,32,64}ADDC): Define - add carrying.
3357 (ALU{,8,16,32,64}SUB): Redefine SUB macro as subtract overflowing.
3358 (ALU{,8,16,32,64}SUBB): Define - subtract borrowing.
3359 (ALU{,8,16,32,64}SUBC): Define - tract carrying.
3360 (ALU{,8,16,32,64}ADD_CA, ALU{,8,16,32,64}ADDC_C): Replace single
3361 argument ADD_CA macro with two argument ADDC_C - add carrying with
3362 carry in.
3363 (ALU{,8,16,32,64}SUB_CA, ALU{,8,16,32,64}SUBC_X): Replace single
3364 argument SUB_CA macro with two argument SUBC_X - subtract
3365 carrying, extended.
3366 (ALU{,8,16,32,64}SUBB_B): Define - subtract borrowing with
3367 borrow-in.
3368 (ALU{,8,16,32,64}NEGC, ALU{,8,16,32,64}NEGB): Define.
3369
3370Sun Nov 30 17:40:57 1997 Michael Meissner <meissner@cygnus.com>
3371
3372 * sim-io.c (sim_io_{syscalls,getstring}): Delete. No longer used.
3373 * sim-io.h (sim_io_syscalls): Delete.
3374
3375Fri Nov 28 20:10:09 1997 Michael Meissner <meissner@cygnus.com>
3376
3377 * syscall.c (cb_syscall): Add missing else, so write to stdout
3378 isn't doubled.
3379
3380 * sim-alu.h (ALU{,8,16,32,64}_SET_CARRY): Provide macros to import
3381 the carry bit from the CPU's psw.
3382
3383Fri Nov 28 11:15:05 1997 Doug Evans <devans@canuck.cygnus.com>
3384
3385 * gennltvals.sh: Redo syscall support.
3386 * nltvals.def: Regenerated.
3387
3388Wed Nov 26 16:49:38 1997 Michael Meissner <meissner@cygnus.com>
3389
3390 * syscall.c (cb_syscall): If writing to stdout or stderr, flush
3391 the stream immediately.
3392
3393Wed Nov 26 12:32:11 1997 Andrew Cagney <cagney@b1.cygnus.com>
3394
3395 * sim-io.c (sim_io_getstring): Delete unused len2.
3396 (sim_io_syscalls): Ditto for sys_errno.
3397
3398Wed Nov 26 11:18:40 1997 Doug Evans <devans@canuck.cygnus.com>
3399
3400 * syscall.c (cb_syscall): Test CB_SYSCALL struct magic number.
3401
3402 * Make-common.in (run.o): Depend on remote-sim.h.
3403 (nrun.o,sim-hload.o,sim-hrw.o): Likewise.
3404 (sim-io.o,sim-reason.o,sim-resume.o): Likewise.
3405
3406Tue Nov 25 20:12:46 1997 Michael Meissner <meissner@cygnus.com>
3407
3408 * sim-io.c (sim_io_syscalls): Disable lseek.
3409
3410Tue Nov 25 00:12:38 1997 Doug Evans <devans@seba.cygnus.com>
3411
3412 * gennltvals.sh: Generate syscall values for d30v.
3413
3414 * gennltvals.sh: Use libgloss/syscall.h for sparc.
3415 * nltvals.def: Regenerate.
3416
3417 * callback.c (os_stat): Make 3rd arg a host struct stat ptr.
3418 (os_fstat): Likewise. Validate fd argument.
3419 (cb_host_to_target_stat): Delete big_p arg. If HS arg is NULL,
3420 just compute target stat struct length.
3421 * syscall.c: #include "libiberty.h", <sys/types.h>, <sys/stat.h>.
3422 (ENOSYS,ENAMETOOLONG): Provide definitions if missing.
3423 (get_string): Return host errno values so they can be properly
3424 translated later.
3425 (cb_syscall): Likewise.
3426 (cb_syscall, cases open,unlink): Use get_path instead of get_string.
3427 (cb_syscall, case read): Use read_stdin for file descriptor 0.
3428 (cb_syscall, case write): Use write_stderr for file descriptor 2.
3429 (cb_syscall): Add cases for lseek, unlink, stat, fstat, time.
3430 (get_path): New function.
3431
3432Mon Nov 24 18:56:07 1997 Michael Meissner <meissner@cygnus.com>
3433
3434 * sim-io.c (sim_io_syscalls): New function to provide system call
3435 emulation. Provide exit, open, close, read, write, lseek, and
3436 unlink.
3437 (sim_io_getstring): New function to return a string from a
3438 simulated memory location.
3439
3440 * sim-io.h (sim_io_syscalls): Add declaration.
3441
3442Mon Nov 24 12:09:59 1997 Doug Evans <devans@seba.cygnus.com>
3443
3444 * sim-core.c (sim_core_signal): Fix spelling error in message.
3445
3446 * sim-hrw.c (sim_read): Use read map, not write map.
3447
3448 * Make-common.in (all): Add .gdbinit.
3449 * gdbinit.in: Add dump command.
3450
3451 * sim-model.c (model_options): Use '\0' for `shortopt'.
3452
3453 * sim-trace.c (trace_option_handler): Set state trace file
3454 for --trace-file in addition to cpu's values.
3455 (trace_vprintf): If cpu == NULL, try state's trace file.
3456 (trace_options): Reorganize table, reword some descriptions.
3457
3458Sun Nov 23 10:57:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
3459
3460 * sim-fpu.c (sim_fpu_abs, sim_fpu_neg, sim_fpu_inv), sim-fpu.h:
3461 New functions.
3462
3463Sat Nov 22 19:16:54 1997 Andrew Cagney <cagney@b1.cygnus.com>
3464
3465 * sim-reason.c (sim_stop_reason): For sim_signalled, return the
3466 signal untranslated, document problem with this.
3467
3468 * nrun.c (main): Check for a prog name of `*step'. If present,
3469 step the simulator instead of allowing it to run free.
3470
3471 * sim-signal.c (SIGQUIT): Define on _MSC_VER hosts.
3472
3473 * Make-common.in (sim_main_headers): Add sim-signal.h.
3474
3475Fri Nov 21 09:32:32 1997 Andrew Cagney <cagney@b1.cygnus.com>
3476
3477 * sim-signal.c (sim_signal_to_host): Return 0 for SIM_SIGNONE.
3478
3479Thu Nov 20 20:35:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
3480
3481 * sim-signal.h: Start simulator signals at 64 so that host signal
3482 numbers can be detected and reported.
3483
3484 * sim-signal.h (SIM_SIGFPE), sim-signal.h: Add signal.
3485
3486Wed Nov 19 12:02:41 1997 Doug Evans <devans@seba.cygnus.com>
3487
3488 * callback.c (cb_host_to_target_stat): Fix return values.
3489
3490 * cgen-sim.h (enum_signal_type): Delete.
3491 (engine_signal): Update prototype.
3492 * cgen-utils.c: Don't include <signal.h>.
3493 (sim_signal_to_host): Delete, lives in sim-signal.c now.
3494 (engine_signal): Update.
3495
3496 * sim-utils.c (sim_state_alloc): Call SIM_STATE_ALLOC if defined.
3497 (sim_state_free): Call SIM_STATE_FREE if defined.
3498
3499 * sim-module.c (sim_module_install): Don't leave any modules
3500 installed if one fails to install.
3501
3502Wed Nov 19 13:25:48 1997 Michael Meissner <meissner@cygnus.com>
3503
3504 * sim-options.c: Don't include ../libiberty/alloca-conf.h any
3505 more, since alloca is not used in this file.
3506
3507 * sim-alu.h (ALU{32,64}_*): Rewrite 32 and 64 bit ALU support to
3508 correctly set the carry and overflow bits for those types.
3509 (ALU{8,16,32,64}_{ADD,SUB}_CA): Take VAL argument to add along
3510 with carry, so carry is correct after doing both adds.
3511 (ALU*): Space out '\' to make it easier to read.
3512
3513Tue Nov 18 15:53:45 1997 Doug Evans <devans@canuck.cygnus.com>
3514
3515 * sim-core.c (sim_core_signal): Use sim_stopped instead of
3516 sim_signalled.
3517
3518 * sim-signal.c, sim-signal.h: New files.
3519 * Make-common.in (sim-signal.o): Add rule for.
3520 (SIM_NEW_COMMON_OBJS): Add sim-signal.o.
3521 * sim-abort.c: Don't include <signal.h>.
3522 * sim-basics.h: #include "sim-signal.h".
3523 * sim-break.c: Don't include <signal.h>.
3524 (sim_handle_breakpoint): Replace SIGTRAP with SIM_SIGTRAP.
3525 * sim-core.c: Don't include <signal.h>.
3526 (SIGBUS): Delete definition.
3527 (sim_core_signal): Replace SIGSEGV,SIGBUS with SIM_SIGSEGV,SIM_SIGBUS.
3528 * sim-engine.c: Don't include <signal.h>.
3529 (sim_engine_abort): Replace SIGABRT with SIM_SIGABRT.
3530 * sim-reason.c (sim_stop_reason): Call sim_signal_to_host.
3531 * sim-resume.c: Don't include <signal.h>.
3532 (SIGTRAP): Delete definition.
3533 (has_stepped): Replace SIGTRAP with SIM_SIGTRAP.
3534 * sim-stop.c: Don't include <signal.h>.
3535 (control_c_simulation): Replace SIGINT with SIM_SIGINT.
3536 * sim-watch.c: Don't include <signal.h>.
3537 (handle_watchpoint): Replace SIGINT with SIM_SIGINT.
3538
3539 * Make-common.in (SIM_NEW_COMMON_OBJS): New variable.
3540
3541 * sim-base.h (CIA_ADDR): Provide default definition.
3542 * sim-core.c (sim_core_signal): Use CIA_ADDR to fetch value.
3543 * sim-break.c (sim_handle_breakpoint): Likewise.
3544
3545Mon Nov 17 14:15:31 1997 Doug Evans <devans@seba.cygnus.com>
3546
3547 * Make-common.in (srccom): New variable.
3548
3549 * Make-common.in (DEP, COMMON_DEP_CFLAGS): Define.
3550 (LIB_OBJS): Add syscall.o.
3551 (gentmap): Pass $(NL_TARGET) to $(CC).
3552 (syscall.o): Add rule for.
3553 (sim_main_headers): Add $(SIM_EXTRA_DEPS).
3554 (sim-bits.o): Depend on $(sim-n-bits_h).
3555 (sim-load.o): Depend on callback.h.
3556
3557 * Make-common.in (cgen-*.o): Update dependencies, mem-ops.h renamed to
3558 cgen-mem.h, sem-ops.h renamed to cgen-ops.h.
3559 * cgen-mem.h, cgen-ops.h: New files.
3560
3561 * aclocal.m4 (--enable-sim-scache): Pass -DWITH_SCACHE=0 for "=no".
3562
3563 * Makefile.in (nltvals.def): Depend on gennltvals.sh.
3564 Rewrite build rule.
3565 * callback.c: #include string.h or strings.h.
3566 #include sys/types.h and sys/stat.h.
3567 (cb_init_syscall_map,cb_init_errno_map,cb_init_open_map): Declare.
3568 (os_get_errno,os_open): Update.
3569 (os_stat,os_fstat): New functions.
3570 (os_init): Initialize syscall_map, errno_map, open_map.
3571 (default_callback): Add entries for os_stat, os_fstat, syscall_map,
3572 errno_map, open_map, signal_map, stat_map.
3573 (cb_read_target_syscall_maps): New function.
3574 (cb_target_to_host_syscall): New function.
3575 (cb_host_to_target_errno): Renamed from host_to_target_errno.
3576 (cb_target_to_host_open): Renamed from target_to_host_open.
3577 (store): New function.
3578 (cb_host_to_target_stat): New function.
3579 * syscall.c: New file.
3580 * gentmap.c (sys_tdefs): New global.
3581 (gen_targ_vals_h): Output target syscall numbers.
3582 (gen_targ_map_c): Update. Output target syscall translation map.
3583 * gentvals.sh: New first argument `target'. Preface table with
3584 #ifdef NL_TARGET_$target if non-null target passed.
3585 * gennltvals.sh: New file.
3586 * nltvals.def: Regenerated.
3587
3588Fri Nov 14 11:33:34 1997 Andrew Cagney <cagney@b1.cygnus.com>
3589
3590 * sim-n-core.h (sim_core_read_unaligned_N): Return static
3591 sim_core_dummy_M.
3592 (sim_core_dummy_M): Declare.
3593
3594Wed Nov 12 18:16:15 1997 Andrew Cagney <cagney@b1.cygnus.com>
3595
3596 * sim-core.c (sim_core_signal): Print the address of the
3597 instruction.
3598
3599Thu Nov 13 11:49:41 1997 Doug Evans <devans@seba.cygnus.com>
3600
3601 * sim-base.h (sim_state_base): Move `magic' to end of struct.
3602
3603 * sim-base.h (sim_state_base): Add member trace_data.
3604 (STATE_TRACE_DATA): New macro.
3605 * sim-trace.h (TRACE_DEBUG_IDX,TRACE_debug): New macros.
3606 ({WITH_,}TRACE_DEBUG_P): New macros.
3607 (STATE_TRACE_FLAGS,STRACE_P,STRACE_DEBUG_P): New macros.
3608 (_sim_cpu): Delete forward reference.
3609 (debug_printf): Update.
3610 * sim-trace.c (OPTION_TRACE_DEBUG): Define.
3611 (trace_options): Add --trace-debug.
3612 (set_trace_options): Handle it.
3613 (trace_option_handler): Likewise.
3614 (trace_install): Init state trace_data struct.
3615 (trace_uninstall): Close state trace file.
3616 * sim-events.c (ETRACE): Only print source file and line number if
3617 --trace-debug.
3618 * sim-n-core.h (sim_core_trace_M): Likewise.
3619
3620 * sim-core.c (sim_core_signal): Add missing "\n" in message.
3621
36221997-11-13 Felix Lee <flee@cygnus.com>
3623
3624 * sim-n-core.h (sim_core_read_unaligned_N): illegal empty
3625 initializer.
3626 * sim-types.h (unsigned128,signed128): fix typo for MSVC.
3627
3628Wed Nov 12 12:18:08 1997 Doug Evans <devans@canuck.cygnus.com>
3629
3630 * aclocal.m4 (SIM_AC_OPTION_SCACHE): Fix typo.
3631
3632 * Make-common.in (BUILT_SRC_FROM_COMMON): Remove files no longer
3633 built this way.
3634 (sim-config.o): Remove non-existent $(sim-nconfig_h) dependency.
3635 (clean): Don't delete $(BUILT_SRC_FROM_COMMON) if building in
3636 source tree.
3637
3638Tue Nov 11 13:28:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
3639
3640 * sim-events.c (sim_events_process): Re-compute the time -
3641 update_time_from_event - as each event is processed. Reverses
3642 previous change.
3643
3644Fri Nov 7 00:37:36 1997 Andrew Cagney <cagney@b1.cygnus.com>
3645
3646 * callback.c (os_poll_quit): Replace _WIN32 with _MSC_VER.
3647
3648Fri Nov 7 00:37:36 1997 Andrew Cagney <cagney@b1.cygnus.com>
3649
3650 * sim-events.c (sim_events_process): Delete redundant call to
3651 update_time_from_event.
3652 (sim_events_slip): Always decrement time_from_event.
3653 (sim_events_tick, sim_events_deschedule, update_time_from_event):
3654 Delete assertion that time_from_event >=0 when work in queue, no
3655 longer applicable.
3656
3657Thu Nov 6 12:06:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
3658
3659 * sim-options.c (STANDARD_OPTIONS): Change OPTION_* to an enum.
3660 (standard_option_handler): Update.
3661
3662 * sim-options.h: Clarify documentation.
3663 (OPTION_LONG_ONLY_P): Delete definition.
3664 (OPTION_VALID_P): Define.
3665
3666 * sim-options.c (sim_print_help): Allow short only options.
3667 (sim_parse_args): Ditto.
3668 (sim_args_command): Skip short only options.
3669 (sim_parse_args): Allocate space for NUM_OPTS not just 256. Make
3670 separate entries for short and long options in the HANDLERS and
3671 ORIG_VAL tables.
3672 (sim_parse_args): Disable argument permutation.
3673
3674Wed Nov 5 13:40:31 1997 Andrew Cagney <cagney@b1.cygnus.com>
3675
3676 * sim-core.h (DECLARE_SIM_CORE_WRITE_N. DECLARE_SIM_CORE_READ_N):
3677 Add argument M, size of data type.
3678 (sim_core_read_misaligned_3, sim_core_write_misaligned_3):
3679 Declare, ditto for 5, 6 & 7 byte transfers.
3680 (sim_core_write_unaligned_1, sim_core_write_unaligned_1): Define
3681 as aligned variant.
3682
3683 * sim-n-core.h (sim_core_trace_M): Rename from
3684 sim_core_trace_N. Add nr_bytes argument. Replace transfer argument
3685 with transfer type. Print transfer direction. Handle 1 and 2 byte
3686 transfers.
3687 (sim_core_read_unaligned_N, sim_core_write_unaligned_N): Trace
3688 unaligned accesses.
3689 (unsigned_M, T2H_M, H2T_M): Rename from unsigned_N, T2H_N, H2T_N.
3690 Update all functions.
3691
3692 * sim-core.c: Generate functions starting with 16 not 1.
3693 (sim_core_read_unaligned_3): Generate. Ditto for 3 byte write and
3694 all 5, 6 & 7 byte transfers.
3695
3696 * sim-n-core.h (sim_core_read_misaligned_N,
3697 sim_core_write_misaligned_N): Implement.
3698
3699Mon Nov 3 15:03:04 1997 Andrew Cagney <cagney@b1.cygnus.com>
3700
3701 * sim-endian.h (U16_8): Implement
3702
3703 * sim-endian.c (sim_endian_split_16, sim_endian_join_16): New functions
3704
3705 * sim-endian.h (VL8_16, VH8_16): Implement.
3706
3707 * sim-memopt.c (memory_option_handler): Typecast 64bit value to
3708 long in printf.
3709 (memory_option_handler): Only zalloc modulo bytes when non-zero.
3710 (memory_option_handler): Skip comma in alias address list
3711
3712Fri Oct 31 13:03:33 1997 Andrew Cagney <cagney@b1.cygnus.com>
3713
3714 * sim-memopt.c (do_memopt_add, do_memopt_delete): Add level and
3715 space params.
3716 (parse_size, parse_addr): New functions
3717 (memory_option_handler, memory_options): Parse address & size
3718 using new functions. Pass level, space, modulo to do_memopt_add &
3719 do_memopt_del.
3720
3721 * sim-memopt.h (struct _sim_memopt): Add level & space fields.
3722
3723 * sim-core.h (sim_core_arrach, sim_core_detach): Replace
3724 `attach_type attach' argument with `unsigned level' argument.
3725 Document.
3726
3727 * sim-core.c (new_sim_core_mapping, sim_core_map_attach,
3728 sim_core_attach): Replace argument attach with level. Update
3729 verification of arguments.
3730 (sim_core_map_detach, sim_core_detach): Replace argument attach
3731 with level.
3732
3733 * sim-basics.h (enum _attach_type): Delete.
3734
3735Thu Oct 30 13:45:00 1997 Doug Evans <devans@seba.cygnus.com>
3736
3737 * sim-core.h (sim_core_write_8): Define.
3738
3739Tue Oct 28 12:29:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
3740
3741 * sim-bits.h: Document ROTn macro.
3742
3743 * sim-endian.h (H2T): Handle 16 byte variables.
3744
3745 * sim-n-core.h (sim_core_read_unaligned_N): Return a dummy when an
3746 error.
3747
3748 * sim-core.c: Do not generate sim_core_*_word.
3749
3750 * sim-n-core.h (sim_core_trace_N): Add line_nr argument.
3751 (sim_core_write_aligned_N, sim_core_read_aligned_N): Update.
3752
3753 * sim-core.h (sim_core_read_unaligned_word,
3754 sim_core_read_aligned_word, sim_core_read_word,
3755 sim_core_write_unaligned_word, sim_core_write_aligned_word,
3756 sim_core_write_word): Change to macros that map onto sim_core_*_N.
3757
3758Mon Oct 27 11:25:10 1997 Doug Evans <devans@canuck.cygnus.com>
3759
3760 * sim-n-endian.h: Add TAGS entrys for 16 byte versions.
3761
3762 * sim-endian.h: Disable 16 byte support.
3763
3764Mon Oct 27 12:00:48 1997 Andrew Cagney <cagney@b1.cygnus.com>
3765
3766 * sim-endian.c (_SWAP_16): Define. Generate 126 bit swap code.
3767
3768 * sim-n-core.h (sim_core_trace_N): New function.
3769 (sim_core_read_aligned_N, sim_core_write_aligned_N): Use,
3770 (sim_core_read_unaligned_N): Do not retyrn bogus value wden error.
3771
3772 * sim-endian.h: Add 128 bit variant.
3773
3774 * sim-core.h, sim-core.c: Add 128 bit variant.
3775
3776 * sim-types.h: Add signed128 and unsigned128 types using a struct.
3777
3778Fri Oct 24 11:33:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
3779
3780 * sim-events.c (sim_events_process): Clear events->work_pending.
3781 (sim_events_tickn, sim_events_tick): Accumulate, instead of
3782 setting, nr_ticks_to_process.
3783 (sim_events_preprocess): Allow nr_ticks_to_process to be non-zero
3784 when the event queue isn't next.
3785
3786 * sim-events.h, sim-events.c (sim_events_slip): New function.
3787
3788Wed Oct 22 14:18:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
3789
3790 * sim-hload.c (sim_load): Pass lma_p==0 and do_load=sim_load.
3791
3792 * sim-utils.h, sim-load.c (sim_load_file): Add lma_p and do_load
3793 arguments.
3794
3795Tue Oct 21 18:37:57 1997 Doug Evans <devans@canuck.cygnus.com>
3796
3797 * nrun.c (main): Remove useless test of name != NULL.
3798 Exit if bfd_openr fails. Call bfd_check_format after bfd_openr.
3799
3800Tue Oct 21 10:42:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
3801
3802 * sim-fpu.c (EXPMAX): Type is unsigned.
3803 (MIN_INT, MAX_INT): Type is signed64.
3804 (i2fpu): Type of val is signed64.
3805
3806Tue Oct 21 10:42:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
3807
3808 * sim-profile.h (PROFILE_PC_BUCKET_SIZE): Treat a shift of zero as
3809 a bucket size of zero.
3810
3811 * sim-profile.c (OPTION_PROFILE_PC_GRANULARITY,
3812 OPTION_PROFILE_PC): Define.
3813 (profile_option_handler): Add support for --profile-pc and
3814 --profile-pc-granularity options.
3815 (profile_pc_init): When possible, compute nr buckets from bucket
3816 size.
3817
3818 * sim-profile.c (profile_pc_init): Align the profile-pc end
3819 address with the profile-pc bucket size.
3820
3821 * sim-profile.h (PROFILE_PC_NR_BUCKETS): Rename PROFILE_PC_SIZE to
3822 something less ambiguous.
3823 (PROFILE_PC_BUCKET_SIZE): Ditto for PROFILE_PC_SAMPLE_SIZE.
3824
3825 * sim-profile.c (profile_pc_cleanup): New function. Move
3826 profile_pc_uninstall code to here.
3827 (profile_pc_uninstall): Call.
3828 (profile_pc_init): Call.
3829
3830Mon Oct 20 17:23:58 1997 Andrew Cagney <cagney@b1.cygnus.com>
3831
3832 * sim-profile.c (profile_print_pc): Dump pc profile to dmon.out
3833 file using BSD gprof format.
3834
3835 * sim-bits.h (LSBIT, MSBIT, BIT): Force result to type
3836 unsigned_word.
3837 (LSBIT8, LSBIT16, LSBIT32, LSBIT64, MSBIT8, MSBIT16, MSBIT32,
3838 MSBIT64): Force result to unsignedN.
3839
3840Thu Oct 16 11:38:56 1997 Andrew Cagney <cagney@b1.cygnus.com>
3841
3842 * sim-alu.h (ALU16_BEGIN, ALU32_BEGIN, ALU64_BEGIN): Drop opening
3843 brace from macro.
3844 (ALU8_BEGIN, ALU8_SET, ALU8_ADD, ALU8_SUB, ALU8_NEGATE): Define.
3845 (ALU16_ADD, ALU16_SUB, ALU16_NEGATE): Simplify arrithmetic.
3846 (ALU32_ADD, ALU32_SUB, ALU32_NEGATE): Simplify arrithmetic.
3847 (ALU64_ADD, ALU64_SUB, ALU64_NEGATE): Simplify arrithmetic.
3848
3849Wed Oct 15 09:24:19 1997 Andrew Cagney <cagney@b1.cygnus.com>
3850
3851 * sim-core.h (struct _sim_core_mapping): Change free_buffer to
3852 type void*.
3853
3854 * sim-core.c (sim_core_uninstall, new_sim_core_mapping,
3855 sim_core_map_attach, sim_core_map_detach): Change free_buffer to
3856 type void*.
3857 (sim_core_attach): Rename buffer_freed to free_buffer, type
3858 void*. Ensure that allocated buffer is alligned according to
3859 region's address.
3860
3861Mon Oct 13 11:34:50 1997 Andrew Cagney <cagney@b1.cygnus.com>
3862
3863 * sim-alu.h (ALU64_HAD_OVERFLOW): Define.
3864 (ALU64_SUB): Define.
3865
3866 * Make-common.in (all): Build SIM_EXTRA_ALL first.
3867 (.gdbinit): Remove dependencies, generate once per build.
3868
3869Tue Oct 14 19:20:09 1997 Andrew Cagney <cagney@b1.cygnus.com>
3870
3871 * sim-n-core.h (sim_core_read_aligned_N,
3872 sim_core_write_aligned_N): Make xaddr param type address_word not
3873 unsigned_word.
3874
3875Fri Oct 3 09:49:18 1997 Andrew Cagney <cagney@b1.cygnus.com>
3876
3877 * sim-fpu.h, sim-fpu.c: Rewrite. Change sim_fpu object to an
3878 unpacked floating point struct. Pass sim_fpu object by reference.
3879 Add preliminary support for rounding modes.
3880
3881Fri Oct 3 09:28:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
3882
3883 * configure: Regenerated to track ../common/aclocal.m4 changes.
3884
3885Thu Oct 2 19:43:52 1997 Andrew Cagney <cagney@b1.cygnus.com>
3886
3887 * aclocal.m4 (sim-bitsize): Fix typo, WITH_TARGET_WORD_BITSIZE not
3888 WITH_TARGET_BITSIZE.
3889
3890Thu Sep 25 23:20:20 1997 Felix Lee <flee@yin.cygnus.com>
3891
3892 * sim-profile.c (profile_print_core): label needs empty statement.
3893
3894Thu Sep 25 11:20:47 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
3895
3896 * sim-break.c (sim_set_breakpoint sim_clear_breakpoint): Use ZALLOC
3897 and zfree instead of xmalloc and free. Prevents warnings.
3898
3899Wed Sep 24 17:38:57 1997 Andrew Cagney <cagney@b1.cygnus.com>
3900
3901 * configure: Regenerated to track ../common/aclocal.m4 changes.
3902
3903Wed Sep 24 17:23:31 1997 Andrew Cagney <cagney@b1.cygnus.com>
3904
3905 * Make-common.in (SIM_BITSIZE): Assign from configured value.
3906 (CONFIG_CFLAGS): Add SIM_BITSIZE.
3907
3908 * aclocal.m4 (--enable-sim-bitsize): Developer option for
3909 controling the bitsize/msb of the target.
3910
3911Wed Sep 24 17:41:40 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
3912
3913 * Make-common.in: New files sim-break.c, sim-break.h.
3914 * sim-base.h: Add point to breakpoint list to sim_state_base.
3915 * sim-break.c sim-break.h: New modules that implement intrinsic
3916 breakpoint support.
3917 * sim-module.c: Add breakpoint module.
3918
3919Tue Sep 23 00:26:39 1997 Felix Lee <flee@yin.cygnus.com>
3920
3921 * sim-events.c (SIM_EVENTS_POLL_RATE): poll more often than once
3922 an hour.
3923 * sim-n-core.h (WITH_XOR_ENDIAN): MSVC barfs on
3924 if (0) { 1 % 0; }
3925 * sim-core.c (sim_core_xor_write_buffer): WITH_XOR_ENDIAN + 1.
3926 (SIGBUS) define for Windows.
3927 * sim-trace.c (trace_printf,debug_printf): added ALMOST_STDC.
3928 * sim-resume.c: define SIGTRAP for windows.
3929 * sim-xcat.h: use token pasting if ALMOST_STDC.
3930
3931Tue Sep 23 11:04:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
3932
3933 * Make-common.in (SIM_SCACHE, SIM_DEFAULT_MODEL): Assign
3934 configured values.
3935 (CONFIG_CFLAGS): Add same.
3936
3937Mon Sep 22 17:20:27 1997 Felix Lee <flee@cygnus.com>
3938
3939 * sim-types.h (SIGNED64): ##i64 when _MSC_VER, not _WIN32.
3940 (SIGNED32): use ##i32.
3941
3942Tue Sep 23 11:04:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
3943
3944 * configure: Regenerated to track ../common/aclocal.m4 changes.
3945
3946Tue Sep 23 10:07:47 1997 Andrew Cagney <cagney@b1.cygnus.com>
3947
3948 * aclocal.m4 (sim-endian): Simplify logic determining [default]
3949 endian of target.
3950
3951 * Make-common.in (SIM_WARNINGS, SIM_ALIGNMENT, SIM_ENDIAN,
3952 SIM_HOSTENDIAN, SIM_RESERVED_BITS, SIM_ASSERT, SIM_FLOAT,
3953 SIM_HARDWARE, SIM_INLINE, SIM_PACKAGES, SIM_REGPARM, SIM_SMP,
3954 SIM_STDCALL, SIM_XOR_ENDIAN): Assign configured values.
3955 (CONFIG_CFLAGS): Add same.
3956
3957 * aclocal.m4: Perform AC_SUBST on optional options.
3958
3959Mon Sep 22 11:46:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
3960
3961 * sim-config.h (WITH_DEFAULT_ALIGNMENT): Don't hardwire any alignment.
3962
3963 * sim-options.c (standard_option_handler): Typo in warning message.
3964
3965 * sim-base.h (STATE_MODEL): Make conditional on SIM_HAVE_MODEL.
3966
3967 * sim-profile.c (profile_print_insn): Check 0 .. MAX_INSN for any
3968 insn count. Make count conditional on there being a valid
3969 INSN_NAME.
3970 (profile_pc_init): Make default PC profile frequency an arbitrary
3971 256.
3972
3973 * sim-base.h: Ditto.
3974
3975 * sim-profile.h (WITH_PROFILE_MODEL_P): Only enable modeling when
3976 SIM_HAVE_MODEL.
3977
3978 * sim-model.h (struct MACH): Depreciate, to be replaced by bfd
3979 archure struct.
3980
3981Mon Sep 22 11:46:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
3982
3983 * configure: Regenerated to track ../common/aclocal.m4 changes.
3984
3985Mon Sep 22 11:45:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
3986
3987 * aclocal.m4 (sim_alignment): Simplify logic for selecting the
3988 configured alignment.
3989
3990Fri Sep 19 17:45:25 1997 Andrew Cagney <cagney@b1.cygnus.com>
3991
3992 * configure: Regenerated to track ../common/aclocal.m4 changes.
3993
3994Fri Sep 19 17:26:14 1997 Andrew Cagney <cagney@b1.cygnus.com>
3995
3996 * sim-config.c (sim_config): Check for default alignment.
3997
3998 * sim-options.c (standard_option_handler): Add alignment option.
3999
4000 * aclocal.m4 (sim_alignment): Allow configuration of hardwired and
4001 default alignment requirements on memory accesses.
4002
4003Fri Sep 19 11:51:35 1997 Jeffrey A Law (law@cygnus.com)
4004
4005 * sim-load.c (sim_load_file): Return failure if the executable
4006 had no loadable sections.
4007
4008Wed Sep 17 13:33:28 1997 Andrew Cagney <cagney@b1.cygnus.com>
4009
4010 * sim-events.c (ETRACE): Use trace_printf not sim_io_printf for
4011 trace output.
4012
4013 * sim-core.c (sim_core_signal): When bad access halt simulator
4014 SIGSEGV / SIGBUS instead of aborting.
4015 (signal.h): Include.
4016
4017 * sim-watch.c (sim_watchpoint_install): Handler for watchpoint
4018 options was missing.
4019
4020 * sim-bits.h (MOVED): Define
4021
4022Wed Sep 17 10:33:28 1997 Andrew Cagney <cagney@b1.cygnus.com>
4023
4024 * sim-alu.h (ALU32_HAD_OVERFLOW): Pacify GCC, Use MSBIT instead of
4025 BIT.
4026
4027 * sim-bits.h (LSBIT, MSBIT): Check for overflow of shift value.
4028
4029 * sim-bits.c: Add 8 bit versions of bit macros.
4030
4031 * sim-bits.h: Ditto.
4032
4033Tue Sep 16 16:15:16 1997 Andrew Cagney <cagney@b1.cygnus.com>
4034
4035 * sim-bits.c (LSSEXT, MSSEXT): Replace SEXT.
4036 (LSINSERTED, MSINSERTED): Ditto for INSERTED.
4037
4038 * sim-n-bits.h (MSSEXTn, LSSEXTn): Replace SEXTn.
4039 (LSINSERTDn, MSINSERTEDN): Ditto for INSERTEDn.
4040
4041 * sim-bits.h (SEXT*): Define as MSEXT/LSEXT.
4042 (INSERTED*): Ditto for LSINSERTED/MSINSERTED.
4043
4044Mon Sep 15 17:36:15 1997 Andrew Cagney <cagney@b1.cygnus.com>
4045
4046 * aclocal.m4 (SIM_AC_COMMON): Add optional config.h file argument.
4047 configure.in: Output to cconfig.h instead of config.h.
4048
4049 * configure: Regenerated to track ../common/aclocal.m4 changes.
4050
4051Mon Sep 15 15:39:28 1997 Andrew Cagney <cagney@b1.cygnus.com>
4052
4053 * sim-utils.c (sim_analyze_program): Set STATE_ARCHITECTURE from
4054 BFD if known.
4055
4056Tue Sep 9 21:46:46 1997 Felix Lee <flee@cygnus.com>
4057
4058 * callback.c (os_write): divert stdout and stderr to their
4059 respective hooks.
4060
4061Thu Sep 11 10:08:48 1997 Andrew Cagney <cagney@b1.cygnus.com>
4062
4063 * sim-profile.c (profile_print_speed): Call
4064 sim_events_elapsed_time instead of PROFILE_EXEC_TIME for moment.
4065
4066 * sim-events.c (sim_events_elapsed_time): New function return nr
4067 host MS consumed by the simulator.
4068 (sim_watch_valid): Use.
4069
4070 * sim-module.c (modules): Install sim_events very very early.
4071
4072 * sim-profile.c (profile_print): Call profile_print_pc.
4073 (print_bar):
4074 (profile_pc_init): New function, set up processor for PC
4075 profiling.
4076 (profile_print_pc): New function, print a PC profile.
4077 (profile_pc_event): New function, sample PC.
4078
4079 * sim-profile.h (PROFILE_PC_COUNT, PROFILE_PC_START,
4080 PROFILE_PC_END, PROFILE_PC_SHIFT, PROFILE_PC_SAMPLE_SIZE): Add to
4081 profile struct.
4082
4083 * sim-options.c (sim_print_help): Pacify GCC.
4084
4085 * sim-n-core.h (sim_core_read_aligned_N,
4086 sim_core_write_aligned_N): Add un-conditional profile call.
4087 (sim_core_read_unaligned_N, sim_core_write_unaligned_N): Add
4088 profile call when aligned read/write isn't used.
4089
4090 * sim-base.h: Include sim-profile, sim-model after sim-core &
4091 sim-events allow sim-core to define useful values.
4092
4093 * sim-profile.c (OPTION_PROFILE_CORE): Define.
4094 (profile_option_handler, profile_options): Add support for
4095 --profile-core option.
4096 (print_bar): Include when core profiling.
4097 (profile_print_core): New function, print core profile.
4098
4099 * sim-config.c (print_sim_config): Print profile status.
4100
4101 * sim-profile.h (PROFILE_NEXT_IDX, PROFILE_core,
4102 WITH_PROFILE_PC_P): Define.
4103 (PROFILE_CORE_COUNT): Count each core-map/size separatly.
4104 (PROFILE_COUNT_CORE): Define.
4105
4106Thu Sep 11 08:44:52 1997 Andrew Cagney <cagney@b1.cygnus.com>
4107
4108 * sim-watch.c (handle_watchpoint): Pass a char** index into the
4109 interrupt_names array as the data.
4110 (sim-watch.h): Document.
4111
4112Wed Sep 10 16:15:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
4113
4114 * sim-options.c (sim_print_help): When the doc string is to long
4115 word wrap it.
4116
4117 * sim-watch.c (sim_watchpoint_install): Use option.doc_name so
4118 that only the first few the watch options are listed. Generate
4119 meanginful usage messages.
4120
4121 * sim-options.h (struct OPTION): Clarify use of doc_name field
4122
4123Wed Sep 10 13:23:24 1997 Andrew Cagney <cagney@b1.cygnus.com>
4124
4125 * sim-options.c (OPTION_ARCHITECTURE_INFO): New option.
4126 (standard_option_handler): Handle --architecture-info.
4127
4128Tue Sep 9 21:46:46 1997 Felix Lee <flee@cygnus.com>
4129
4130 * sim-core.h (sim_cpu_core): [WITH_XOR_ENDIAN + 1], to avoid
4131 illegal zero-sized array.
4132 * sim-core.c (sim_core_xor_read_buffer): same.
4133
4134Tue Sep 9 11:20:35 1997 Doug Evans <dje@canuck.cygnus.com>
4135
4136 * nltvals.def: Regenerate.
4137
4138Tue Sep 9 02:10:36 1997 Andrew Cagney <cagney@b1.cygnus.com>
4139
4140 * sim-fpu.c (DP_FRACHIGH2): Define LL using SIGNED64.
4141
4142Mon Sep 8 12:22:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
4143
4144 * sim-bits.c (MASKED): Delete.
4145 (EXTRACTED): Delete.
4146 (LSEXTRACTED, MSEXTRACTED): New functions.
4147
4148 * sim-n-bits.h (MASKEDn): Delete, define as MSMASKED or LSMASKED.
4149 (MSMASKEDn, LSMASKEDn): Add last argument.
4150 (MSMASK*): Ditto.
4151
4152 * sim-bits.h (EXTEND8, EXTEND16): Define.
4153 (EXTRACTED64): Define as 64 bit extract, not 32 bit.
4154
4155 * sim-run.c (sim_engine_run): Use CPU_CIA macro.
4156
4157 * sim-engine.h (SIM_ENGINE_HALT_HOOK): Use CPU_CIA to get at
4158 current instruction address.
4159
4160 * sim-inline.h (*_ENGINE): Define.
4161
4162Fri Sep 5 08:39:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
4163
4164 * sim-core.c (sim_core_attach): Fix checks of modulo/mask.
4165
4166 * sim-watch.c (delete_watchpoint): Delete by ident and type.
4167 (watch_option_handler): Call delete_watchpoint with ident or type.
4168 (sim_watchpoint_install): Create interrupt specific watchpoint
4169 commands on the fly.
4170 (do_watchpoint_create): New function, create a watch point using
4171 type/int-nr info encoded in the option nr.
4172 (do_watchpoint_info): New function. List active watchpoints.
4173
4174 * sim-watch.h: Change data structure to a list.
4175
4176 * sim-memopt.c (memory_option_handler): Require explicit "all"
4177 before deleting all memory regions.
4178
4179 * sim-utils.c (sim_do_commandf): New function, printf version of
4180 sim_do_command.
4181
4182 * sim-basics.h (asprintf, vasprintf): Hack, define for CYGWIN32.
4183
4184 * sim-alu.h (ALU64_ADD): Use explicit MSEXTRACTED64, do not assume
4185 bit endianness.
4186 (SIGNED64, UNSIGNED64): Delete.
4187 (ALU64_ADD): Don't rely on bit endianness.
4188 (ALU64_BEGIN): Define.
4189
4190 * sim-n-bits.h (MSEXTRACTEDn, LSEXTRACTED): New functions.
4191 (EXTRACTEDn): Delete, define as either LSEXTRACTED or MSEXTRACTED.
4192
4193 * sim-types.h (SIGNED64, UNSIGNED64): New macros, attach relevant
4194 suffix - u64, LL - to 64 bit constants.
4195
4196Thu Sep 4 09:27:54 1997 Andrew Cagney <cagney@b1.cygnus.com>
4197
4198 * sim-config.c (sim_config): Add assert for SIM_MAGIC_NUMBER.
4199
4200 * sim-utils.h (NZALLOC): Define - zalloc * N.
4201
4202 * sim-hrw.c (sim_read, sim_write): New file. Provide generic
4203 implementation of read/write functions.
4204
4205 * Make-common.in (sim-hrw.o): New target.
4206
4207 * sim-base.h (STATE_MEMOPT_P): Delete, simulators _always_ add
4208 memory.
4209
4210 * sim-memopt.c (memory_option_handler): Implement memory-size
4211 command. Implement memory-alias command. Let memory-delete delete
4212 all memory regions.
4213 (add_memopt): New function. Add a memory region.
4214 (do_memopt_delete): New function. Delete a memory region.
4215
4216 * sim-utils.c (sim_elapsed_time_get): Never return zero.
4217
4218 * sim-core.c (sim_core_detach): New function.
4219 (sim_core_map_detach): New function. Perform the actual detach.
4220 (sim_core_init): Move initialization code from here.
4221 (sim_core_install): To here.
4222 (sim_core_uninstall): And here.
4223
4224 * sim-module.c: Add memopt module.
4225
4226 * sim-base.h (STATE_MEMOPT, STATE_MEMOPT_P): Add memopt to
4227 simulator base type.
4228
4229 * Make-common.in (sim_main_headers): Add sim-memopt.h
4230 (sim-memopt.o): New target.
4231
4232 * sim-core.c (sim_core_install): Add core_options to the option
4233 table.
4234
4235 * sim-watch.c (watch_options): Make --delete-watch a synonym for
4236 --watch-delete.
4237
4238 * sim-config.h (WITH_MODULO_MEMORY): Define as 0. Update
4239 comments.
4240
4241 * sim-core.h (struct _sim_core_mapping): Change nr_bytes to type
4242 address_word, add mask member.
4243
4244 * sim-core.h, sim-core.c (sim_core_attach): Make nr_bytes of type
4245 address_word, allow for 64bit targets in 32bit host. Add modulo
4246 argument.
4247 (sim_core_map_attach): Ditto.
4248 (new_sim_core_mapping): Ditto.
4249 (sim_core_translate): Mask address when modulo memory.
4250
4251Wed Sep 3 17:32:54 1997 Doug Evans <dje@seba.cygnus.com>
4252
4253 * sim-hload.c (sim_load): Add assert for SIM_MAGIC_NUMBER.
4254
4255 * gdbinit.in: New file.
4256 * aclocal.m4 (SIM_AC_OUTPUT): Build .gdbinit.
4257 * Make-common.in (distclean): Delete .gdbinit.
4258 (.gdbinit): Add rule for.
4259 * configure: Regenerated to track ../common/aclocal.m4 changes.
4260
4261 * Make-common.in (cgen-run.o): Add rule for.
4262
4263Wed Sep 3 10:08:21 1997 Andrew Cagney <cagney@b1.cygnus.com>
4264
4265 * sim-resume.c (sim_resume): Suspend/resume the simulator.
4266
4267 * sim-events.c (sim_watch_valid): Compute total elapsed time from
4268 both resumed and previous elapsed time.
4269 (sim_events_init): Set initial_wallclock and current_wallclock to
4270 zero.
4271 (sim_events_install): Install sim_events_suspend and
4272 sim_events_resume.
4273 (sim_events_watch_clock): Allow for suspended simulator when
4274 computing the time of the clock event.
4275
4276 * sim-events.h (struct _sim_event): Add resume_wallclock, rename
4277 initial_wallclock to elapsed_wallclock, set both to zero.
4278 (sim_events_init, sim_events_uninstall): Delete prototypes.
4279
4280 * sim-module.h (MODULE_SUSPEND_FN, MODULE_RESUME_FN): Define types.
4281
4282 * sim-module.c(sim_module_resume, sim_module_suspend): New
4283 functions.
4284
4285Wed Sep 3 10:08:21 1997 Andrew Cagney <cagney@b1.cygnus.com>
4286
4287 * sim-core.c (sim_core_map_attach): Clarify memory overlap error
4288 message.
4289
4290Tue Sep 2 14:57:06 1997 Doug Evans <dje@canuck.cygnus.com>
4291
4292 * Makefile.in (TAGS): Add support for "/* TAGS: foo */" marker.
4293 * Make-common.in (TAGS): Likewise.
4294 * sim-n-bits.h: Add TAGS comments for all functions.
4295 * sim-n-core.h: Likewise.
4296 * sim-n-endian.h: Likewise.
4297
4298Mon Sep 1 10:50:11 1997 Andrew Cagney <cagney@b1.cygnus.com>
4299
4300 * sim-utils.c (sim_state_alloc): Set CPU backlinks, callback and
4301 kind.
4302
4303 * sim-base.h (sim_state_alloc): Add callback and kind arguments.
4304
4305 * sim-base.h (INVALID_INSTRUCTION_ADDRESS): Add default
4306 definition.
4307
4308Sat Aug 30 09:47:21 1997 Andrew Cagney <cagney@b1.cygnus.com>
4309
4310 * sim-fpu.c (DP_GARDMSB, ...): Make unsigned.
4311 (DP_FRACHIGH, DP_FRACHIGH2, ..): Use MSMASK to avoid LL.
4312
4313Fri Aug 29 13:37:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
4314
4315 * sim-core.c (sim_core_map_attach): Cast attach enum to int.
4316 (sim_core_xor_read_buffer, sim_core_xor_write_buffer): Make
4317 nr_transfered and nr_this_transfer unsigned.
4318
4319 * sim-events.c (sim_events_tickn): N is signed, as limited to
4320 MAXINT.
4321
4322 * sim-n-endian.h (offset_N): Change size to unsigned.
4323
4324 * callback.c (os_poll_quit): Add prototypes for kbhit and getkey.
4325
4326Fri Aug 29 10:10:53 1997 Andrew Cagney <cagney@b1.cygnus.com>
4327
4328 * sim-utils.c (sim_copy_argv): Delete, replaced by dupargv.
4329
4330 * sim-options.c (sim_parse_args): Use dupargv.
4331
4332Thu Aug 28 10:36:34 1997 Doug Evans <dje@canuck.cygnus.com>
4333
4334 * sim-options.c (standard_option_handler): Use xstrdup, not strdup.
4335
4336Thu Aug 28 12:09:15 1997 Andrew Cagney <cagney@b1.cygnus.com>
4337
4338 * sim-base.h (STATE_ARCHITECTURE, STATE_TARGET): Add to simulator
4339 base type.
4340
4341 * sim-options.c (standard_options): Add --architecture=MACHINE and
4342 --target=TARGET options.
4343 (OPTION_ARCHITECTURE, OPTION_TARGET): Define.
4344 (standard_option_handler): Handle architecture and target options.
4345 (bfd.h): Include.
4346
4347 * sim-utils.c (sim_analyze_program): Pass STATE_TARGET to
4348 bfd_openr.
4349 (sim_analyze_program): Set prog_bfd architecture from
4350 STATE_ARCHITECTURE if known.
4351
4352Wed Aug 27 18:13:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
4353
4354 * configure: Regenerated to track ../common/aclocal.m4 changes.
4355 * config.in: Ditto.
4356
4357Wed Aug 27 18:11:30 1997 Andrew Cagney <cagney@b1.cygnus.com>
4358
4359 * aclocal.m4 (enable-sim-warnings): Remove comment stating
4360 that option does not apply to certain files.
4361
4362Wed Aug 27 15:13:04 1997 Andrew Cagney <cagney@b1.cygnus.com>
4363
4364 * sim-bits.h (LSBIT8, LSBIT16, LSBIT32, LSBIT64, LSBIT, MSBIT8,
4365 MSBIT16, MSBIT32, MSBIT64, MSBIT): New macros - single bit as
4366 offset from MSB/LSB.
4367
4368 * sim-endian.h (A1_8, A2_8, A4_8, A1_4, A2_4, A1_2): New macro,
4369 access address of sub word quantity of a hosts 16, 32, 64 bit word
4370 type.
4371 (V1_2, V1_4, V2_4, V1_8, V2_8, V4_8): Ditto for values.
4372 (U8_1, U8_2, U8_4, U4_1, U4_2, U2_1): Ditto for set of values.
4373 (V2_H1, V2_L1, V4_H2, V4_L2, V8_L4, V8_H4): Given N byte argument,
4374 return N*2 byte value with argument in Hi/Lo word. Renamed from
4375 V1_H2, V1_L2, V2_H4, V2_L4, V4_H8, V4_L8.
4376
4377 * sim-alu.h (ALU32_HAD_OVERFLOW): Use 64 bit mask not 32bit.
4378 (ALU16_HAD_CARRY, ALU32_HAD_CARRY, ALU16_HAD_OVERFLOW): Use MSBIT
4379 so that bit offset is explicit.
4380
4381Wed Aug 27 11:55:35 1997 Andrew Cagney <cagney@b1.cygnus.com>
4382
4383 * sim-utils.c (sim_analyze_program): Add prog_name argument.
4384 Update STATE_PROG_BFD when needed with a dup'd copy of the
4385 program.
4386
4387 * sim-config.c (sim_config): Delete ABFD argument, use
4388 STATE_PROG_BFD directly.
4389
4390Tue Aug 26 12:55:26 1997 Andrew Cagney <cagney@b1.cygnus.com>
4391
4392 * run.c (main): Pass the open ABFD to sim_create_inferior.
4393
4394 * nrun.c (main): Determine prog_bfd. Pass to sim_create_inferior
4395 and sim_load.
4396 (bfd.h): Include.
4397
4398 * sim-hload.c (sim_load): New file. Implement generic sim_load for
4399 hardware only simulator targets.
4400
4401 * Make-common.in (sim-hload.o): Add rule.
4402
4403Wed Aug 27 09:51:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
4404
4405 * sim-utils.c (sim_copy_argv): Rewrite to match malloc strategy
4406 used by copyargv and freeargv.
4407
4408 * sim-options.c (sim_parse_args): Save a copy of PROG-ARGS in
4409 STATE_PROG_ARGV, not just a pointer.
4410
4411Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
4412
4413 * configure: Regenerated to track ../common/aclocal.m4 changes.
4414 * config.in: Ditto.
4415
4416Mon Aug 25 12:11:06 1997 Andrew Cagney <cagney@b1.cygnus.com>
4417
4418 * aclocal.m4 (sim-endian): Add second argument to
4419 SIM_AC_OPTION_ENDIAN. First is hardwired endian, second is
4420 default endian when not hardwired.
4421
4422 * sim-config.h (WITH_DEFAULT_TARGET_BYTE_ORDER): New macro, if all
4423 else failes value for target byte order.
4424
4425 * sim-config.c (sim_config): Add abfd arguments. Set
4426 STATE_PROG_BFD accordingly. Determine prefered_target_byte_order
4427 from same.
4428 (sim_config): Return SIM_RC, don't abort.
4429 (bfd.h): Include.
4430
4431 * run.c (main): Update call to sim_open - add ABFD argument.
4432 * nrun.c (main): Add NULL ABFD argument.
4433
4434Thu Aug 14 12:48:57 1997 Doug Evans <dje@canuck.cygnus.com>
4435
4436 * callback.c (os_poll_quit): Make static.
4437 Call sim_cb_eprintf, not p->eprintf.
4438 (sim_cb_printf, sim_cb_eprintf): New functions.
4439 * sim-utils.h (sim_cb_printf, sim_cb_eprintf): Declare.
4440
4441 * sim-basics.h (zalloc,zfree,sim_add_commas,SIM_ELAPSED_TIME,
4442 sim_elapsed_time_get,sim_elapsed_time_since): Move decls to
4443 sim-utils.h. #include sim-utils.h.
4444 * sim-utils.h: Above decls moved here.
4445 (sim_analyze_program,sim_load_file): Use `struct _bfd', not `bfd'.
4446
4447 * sim-watch.c (action_watchpoint): Fix thinkos.
4448
4449Thu Jul 24 08:48:05 1997 Stu Grossman (grossman@critters.cygnus.com)
4450
4451 * sim-types.h: Fix defs of 64 bit data types for MSVC.
4452
4453Tue Jul 22 10:35:37 1997 Doug Evans <dje@canuck.cygnus.com>
4454
4455 * sim-n-core.h (sim_core_write_unaligned_N): Add missing break
4456 to FORCED_ALIGNMENT case.
4457
4458Thu Jun 5 13:48:37 1997 Andrew Cagney <cagney@b1.cygnus.com>
4459
4460 * callback.c (target_to_host_open): Handle hosts with O_BINARY.
4461
4462Thu Jun 5 08:47:10 1997 Jeffrey A Law (law@cygnus.com)
4463
4464 * Make-common.in (libsim.a): Fix typo.
4465
4466Thu Jun 5 13:48:37 1997 Andrew Cagney <cagney@b1.cygnus.com>
4467
4468 * nrun.c (main): Verify the structure returned before using it.
4469
4470Wed Jun 4 11:44:06 1997 Andrew Cagney <cagney@b1.cygnus.com>
4471
4472 * sim-config.h (WITH_ENGINE): Enable the sim-engine module by
4473 default.
4474
4475 * sim-engine.c (sim_engine_install): New function. Install the
4476 engine init functions.
4477 (sim_engine_init): [Re]initialize the simulator engine.
4478
4479 * sim-module.c: Add sim_engine to list of modules that always
4480 install.
4481
4482Tue Jun 3 04:52:04 1997 Andrew Cagney <cagney@b1.cygnus.com>
4483
4484 * sim-watch.c (schedule_watchpoint): Use sim_unschedule_watchpoint
4485 to remove the old watchpoint, not delete_watchpoint.
4486 (watch_option_handler): Action the correct watchpoint, not just
4487 cycles.
4488
4489Wed May 28 14:47:41 1997 Andrew Cagney <cagney@b1.cygnus.com>
4490
4491 * sim-n-core.h (sim_core_write_aligned_N): For 8byte reads, output
4492 both low and high word.
4493 (sim_core_write_aligned_N): Ditto.
4494
4495 * sim-trace.c (set_trace_options): Delete code explicitly setting
4496 core->trace.
4497
4498 * sim-options.c (sim_print_help): Call the list commands if not a
4499 standalone simulator.
4500 (sim_print_help): Advise that some options may not be applicable.
4501
4502 * sim-trace.c (set_trace_options): Assume core present.
4503
4504 * sim-events.c (sim_events_schedule_after_signal): Overflow signal
4505 buffer when full not almost full.
4506
4507Tue May 27 14:32:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
4508
4509 * sim-events.c (sim_events_process): Don't blat the event queue
4510 when processing watchpoints.
4511
4512 * sim-watch.h: Make arg unsigned long - stop sign extension.
4513
4514 * sim-events.c (sim_watch_valid): rewrite so debugable.
4515
4516 * sim-config.h (WITH_XOR_ENDIAN): Default to zero.
4517
4518 * sim-watch.c (schedule_watchpoint): Add is_within option so that
4519 inequality test is possible.
4520 (handle_watchpoint): Re-pass is_within arg.
4521 (watch_option_handler): When `!' prefix to pc-watchpoint arg pass
4522 0 to schedule_watchpoint's is_within arg.
4523 (sim_watchpoint_init): Re-pass is_within arg.
4524
4525 * sim-options.c (sim_print_help): Add is_command argument. Don't
4526 include -- prefix when called from the command line interpreter.
4527
4528 * sim-watch.c (schedule_watchpoint): Pass true is_within argument.
4529
4530 * sim-events.c (sim_events_watch_sim): Add is_within argument,
4531 zero indicates that the test should be reversed.
4532 (sim_events_watch_core): Ditto.
4533 (WATCH_CORE): Compare range against is_within.
4534 (WATCH_SIM): Ditto.
4535
4536Tue May 27 12:48:03 1997 Andrew Cagney <cagney@b2.cygnus.com>
4537
4538 * sim-events.c (WATCH_CORE): Pass NULL cpu argument to
4539 sim_core_read_buffer. Check nr-bytes transfered.
4540
4541 * sim-core.h (sim_core_common): Define a new struct that contains
4542 the common data. to sd and cpu structures.
4543 * sim-core.c (sim_core_attach): Update.
4544 (sim_core_init): Update. Remember to copy initialized data to each
4545 cpu.
4546 (sim_core_find_mapping): Ditto.
4547
4548 * sim-core.c (sim_core_read_buffer): Add cpu argument.
4549 (sim_core_write_buffer): Ditto.
4550
4551 * sim-n-core.h (sim_core_read_unaligned_N): When mis-aligned
4552 transfer use xor version of read buffer.
4553 (sim_core_write_unaligned_N): Ditto for write.
4554
4555 * sim-core.c (sim_core_xor_read_buffer): New function implement
4556 xor-endian data read breaking transfer up into xor-endian sized
4557 blocks.
4558 (sim_core_xor_write_buffer): Ditto for write.
4559 (reverse_n): Reverse order of arbitrary number of bytes in buffer
4560 - needed for xor-endian transfers.
4561
4562Fri May 23 14:24:31 1997 Andrew Cagney <cagney@b1.cygnus.com>
4563
4564 * sim-inline.h: Review description.
4565
4566 * sim-core.h, sim-core.c: Reduce number of functions being inlined
4567 to just those involved in data transfers and configuration.
4568
4569 * sim-xcat.h (XSTRING): New macro, map macro definition onto
4570 string.
4571 * sim-n-core.h (sim_core_read_aligned_N): Use.
4572 (sim_core_read_unaligned_N): Ditto.
4573 (sim_core_read_unaligned_N): Ditto..
4574 (sim_core_write_unaligned_N): Ditto.
4575
4576 * sim-core.h: Add xor endian bitmap to main structure. *
4577
4578 sim-n-core.h (sim_core_write_aligned_N): Add suport for xor
4579 endian.
4580 (sim_core_read_aligned_N): Ditto.
4581
4582 * sim-core.c (sim_core_set_xor_endian): New function.
4583 (sim_core_attach): Don't overwrite the per-cpu xor map when
4584 cloning the global core.
4585
4586Fri May 23 10:53:13 1997 Andrew Cagney <cagney@b1.cygnus.com>
4587
4588 * sim-engine.h: Update below so that it is using an enumerated
4589 type.
4590
4591Thu May 22 09:12:16 1997 Gavin Koch <gavin@cygnus.com>
4592
4593 * sim-engine.c (sim_engine_restart):
4594 * sim-resume.c (sim_resume): Change longjmp param/setjmp
4595 return value used for simulator restart from 0 to 2.
4596
4597Wed May 21 08:47:30 1997 Andrew Cagney <cagney@b1.cygnus.com>
4598
4599 * cgen-scache.c (scache_option_handler): Add is_command arg.
4600
4601 * sim-model.c (model_option_handler): Add is_command argument.
4602
4603 * sim-profile.c (profile_option_handler): Add is_command arg.
4604
4605 * sim-events.c (sim_watch_valid): Use ub64, lb64 when 64bit value
4606 involved.
4607
4608 * sim-module.c (sim_module_add_init_fn): Call init fn in the same
4609 order that they are registered.
4610
4611 * sim-options.h (OPTION_HANDLER): Add argument to differentiate
4612 between option and command line processing.
4613
4614 * sim-options.c: Include stdlib.h, ctype.h.
4615
4616 * Make-common.in (sim-watch.o): Add rule.
4617 (sim_main_headers): Assume sim-assert.h included.
4618 (sim-*.o): Simplify make rule.
4619
4620 * sim-module.c: Add sim_watch_install to module list.
4621
4622Tue May 20 14:15:23 1997 Andrew Cagney <cagney@b1.cygnus.com>
4623
4624 * sim-base.h (STATE_LOADED_P): New predicate. Set once everything
4625 has been loaded.
4626
4627 * sim-trace.c (trace_install): Check magic. Include sim-assert.h.
4628 * sim-events.c (sim_events_install): Ditto.
4629 * sim-core.c (sim_core_install): Ditto.
4630 * sim-model.c (model_install): Ditto.
4631 * sim-options.c (standard_install): Ditto.
4632 * sim-profile.c (profile_install): Ditto.
4633 * sim-reason.c (sim_stop_reason): Ditto.
4634 * sim-run.c (sim_engine_run): Ditto.
4635 * sim-utils.c (sim_analyze_program): Ditto.
4636
4637 * sim-module.c (modules): Make profile_install and trace_install
4638 optional.
4639
4640 * sim-base.h (STATE_MEM_BASE): Define for flat memory systems.
4641
4642 * sim-options.c (standard_option_handler): Set the byte order.
4643
4644 * sim-events.c (sim_events_process): Allow multi tick processing.
4645 (sim_events_tickn): New function - multi cycle tick.
4646
4647 * sim-events.h (sim_events_tickn, sim_events_timewarp): Add
4648 prototypes. Under development.
4649 (sim_events): Replace processing with nr_ticks_to_process.
4650
4651Tue May 20 09:39:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
4652
4653 * nrun.c (main): Pass callbacks to sim_open instead of using
4654 sim_set_callbacks.
4655
4656 * run.c (main): Ditto.
4657
4658Mon May 19 12:07:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
4659
4660 * sim-events.c (sim_events_zalloc): Signal save memory allocator -
4661 stop tk interrupting malloc calls.
4662 (sim_events_zalloc): Converse.
4663
4664 * Make-common.in (sim_main_headers): Add sim-events.h.
4665
4666 * sim-events.c (sim_events_schedule_after_signal): Change return
4667 type to void - signal events are strictly internal.
4668 (sim_events_init): Allocate a finite buffer for signal events.
4669 (sim_events_schedule_after_signal): Enter signal events into the
4670 signal buffer.
4671
4672 * sim-engine.c (sim_engine_halt): Check SIM_DESC magic.
4673 (sim_engine_restart): Ditto.
4674 (sim_engine_abort): Ditto.
4675 * sim-stop.c (sim_stop): Ditto.
4676 (control_c_simulation): Ditto.
4677 * sim-resume.c (sim_resume): Ditto.
4678 (has_stepped): Ditto.
4679 * sim-abort.c (sim_engine_abort): Ditto.
4680
4681 * sim-basics.h (transfer_type): New type.
4682
4683 * sim-core.c (sim_core_signal): New function. Print core signal
4684 information.
4685 (sim_core_find_mapping): Add transfer argument.
4686
4687 * sim-n-core.h (sim_core_{write,write}_unaligned_N): Call
4688 SIM_CORE_SIGNAL if a recoverable abort.
4689 * sim-core.c (sim_core_find_mapping): Ditto.
4690
4691Fri May 16 15:13:21 1997 Andrew Cagney <cagney@b1.cygnus.com>
4692
4693 * sim-core.c (sim_core_find_mapping): Replace calls to
4694 sim_io_error to more resiliant sim_engine_abort.
4695
4696 * sim-n-core.h (sim_core_read_unaligned_N): Ditto.
4697 (sim_core_write_unaligned_N): Ditto.
4698
4699Tue May 13 13:50:06 1997 Andrew Cagney <cagney@b1.cygnus.com>
4700
4701 * sim-module.c: Add sim_events_install to list.
4702
4703 * sim-events.c (sim_events_install, sim_events_uninstall): Clonse
4704 from sim_core_*.
4705 (sim_events_init): Now returns SIG_RC.
4706
4707 * sim-run.c: New file. Generic sim_engine_run.
4708 * sim-reason.c: New file. Generic sim_stop_reason.
4709 * sim-stop.c: New file. Generic sim_stop.
4710 * sim-resume.c: New file. Generic sim_resume.
4711
4712 * Make-common.in (sim-engine.o): Add rule.
4713 (sim-run.o, sim-reason.o, sim-stop.o, sim-resume.o): Ditto.
4714
4715 * sim-engine.h, sim-engine.c: New file. Provide generic
4716 implementation of sim_engine_halt, sim_engine_error. et.al.
4717
4718 * sim-base.h (sim_state_base): Add member halt.
4719 (sim-engine.h): Include.
4720
4721 * sim-events.h (sim_event_handler): Always pass SIM_DESC to event
4722 handlers.
4723 * sim-events.c (sim_events_poll): Update event handler.
4724
4725Tue May 13 09:57:49 1997 Andrew Cagney <cagney@b2.cygnus.com>
4726
4727 * sim-events.h, sim-events.c (sim_events_watch_clock): New
4728 function.
4729 (sim_events_watch_sim): New function.
4730 (sim_events_watch_core): New function.
4731 (sim_watch_valid): New function.
4732 (sim_events_preprocess): New function.
4733 (sim_events_process): Process the watchpoints as well as the timer
4734 queue.
4735 (sim_events_tick): Check WORK_PENDING instead of the hold queue.
4736 (sim_events_deschedule): Check all the queues when removing an
4737 event.
4738 (sim_events_init): Ditto for cleaning.
4739
4740Mon May 19 12:07:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
4741
4742 * sim-fpu.c (is_ufpu_number): Comment out - currently unused.
4743
4744Mon May 19 11:23:03 1997 Andrew Cagney <cagney@b1.cygnus.com>
4745
4746 * callback.c (os_open): Type of arg flags is int.
4747
4748Fri May 16 22:26:43 1997 Michael Meissner <meissner@cygnus.com>
4749
4750 * sim-fpu.c (sim_fpu_is_{eq,ne,lt,le,gt,ge}): Compare Infinities
4751 just like normal numbers as per IEEE rules.
4752
4753Wed May 14 21:20:38 1997 Bob Manson <manson@charmed.cygnus.com>
4754
4755 * callback.c (os_close): Mark the descriptor as being
4756 available if the close succeeded.
4757 (os_open): Pass 0644 as the mode of the file being created.
4758
4759Thu May 15 10:58:52 1997 Andrew Cagney <cagney@b1.cygnus.com>
4760
4761 * sim-fpu.c (pack_fpu, unpack_fpu): New functions - decode a
4762 float.
4763
4764 * sim-inline.c (SIM_INLINE_C): Rename from _SIM_INLINE_C_.
4765 * sim-lnline.h: Update.
4766
4767 * sim-fpu.h, sim-fpu.c (sim_fpu_[iu]{32,64}to): New int2fp
4768 conversion functions.
4769 (sim_fpu_to{32,64}[iu]): New fp2int functions.
4770
4771 * sim-fpu.h, sim-fpu.c (sim_fpu_is_{lt,le,eq,ne,ge,gt}): New fp
4772 compare functions. Replacing.
4773 (sim_fpu_cmp): This. Delete.
4774
4775Mon May 12 14:49:05 1997 Andrew Cagney <cagney@b1.cygnus.com>
4776
4777 * sim-core.c (sim_core_find_mapping): Call engine_error not
4778 sim_io_error when possible.
4779
4780Mon May 12 08:55:07 1997 Andrew Cagney <cagney@b2.cygnus.com>
4781
4782 * sim-endian.h (V1_H2): Add macro's to insert a word into a
4783 high/low double word.
4784
4785 * sim-trace.h: Remove definition of attribute - defined in
4786 sim_basics.h.
4787
4788Mon May 12 08:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
4789
4790 * sim-options.h (struct OPTION): Add doc_opt as the documenting
4791 name of the option - or family of options.
4792
4793 * sim-options.c (sim_args_command): Match command `a-b c' with
4794 option `--a-b-c' from option table.
4795
4796Thu May 8 12:40:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
4797
4798 * sim-options.c (sim_print_help): For optional arguments, wrap
4799 them in [].
4800
4801 * sim-trace.c (set_trace_options): New function, handle optional
4802 argument and multiple assignment.
4803 (trace_option_handler): Update.
4804
4805 * sim-trace.c (trace_option_handler): Trace branch and not fpu
4806 when branch tracing selected.
4807
4808Wed May 7 15:19:58 1997 Andrew Cagney <cagney@b1.cygnus.com>
4809
4810 * sim-trace.c (trace_one_insn): Make a va-args function.
4811
4812 * sim-trace.c (trace_vprintf): New function, va-arg version of
4813 trace_printf.
4814
4815Tue May 6 16:38:16 1997 Doug Evans <dje@canuck.cygnus.com>
4816
4817 * sim-trace.c (trace_uninstall): Don't close a file twice.
4818 * sim-profile.c (profile_uninstall): Likewise.
4819
4820Tue May 6 06:14:01 1997 Mike Meissner <meissner@cygnus.com>
4821
4822 * sim-trace.c (toplevel): Include bfd.h.
4823 (trace_options): Note that --trace-linenum also turns on
4824 --trace-insn. Add --trace-{branch,semantics}.
4825 (trace_option_handler): If --trace-linenum, also turn on
4826 --trace-insn. Add --trace-branch support. If --trace-semantics,
4827 turn on ALU, FPU, branch, and memory tracing.
4828 (trace_one_insn): New function to trace an instruction. Support
4829 --trace-linenum.
4830 (OPTION_TRACE_*): Use an enum, rather than lots of defines.
4831
4832 * sim-trace.h (TRACE_{SEMANTICS,BRANCH}_IDX): Add new macros.
4833 (MAX_TRACE_VALUES): Use 32, not 12 by default.
4834 (TRACE_branch): Add new mask.
4835 (TRACE_*_P): Define all possible trace_p macros.
4836 (trace_one_insn): Declare function.
4837
4838Mon May 5 14:08:34 1997 Mike Meissner <meissner@cygnus.com>
4839
4840 * sim-trace.h (__attribute__): Define as nothing if not GNU C or
4841 GNU C doesn't support __attributes__.
4842 ({trace,debug}_printf): Add attribute's so -Wformat can check the
4843 format strings.
4844
4845Mon May 5 11:16:12 1997 Andrew Cagney <cagney@b1.cygnus.com>
4846
4847 * sim-config.h (FORCED_ALIGNMENT): New alignment option -
4848 addresses are masked forcing them to be correctly aligned.
4849 (WITH_ALIGNMENT): Make NONSTRICT_ALIGNMENT the default.
4850 * sim-config.c (config_alignment_to_a): Update.
4851
4852 * sim-core.h (sim_cpu_core): New data type contains cpu specific
4853 core data.
4854 * sim-base.h (CPU_CORE): Add cpu specific core data to cpu base
4855 type.
4856 * sim-core.c (sim_core_attach): Add CPU argument. Ready for
4857 processor specific core maps.
4858 (sim_core_map_attach): Copy the core map data to each of the
4859 processor specific core data structures.
4860 * sim-core.c (sim_core_find_mapping): Update.
4861
4862 * sim-n-core.h (sim_core_read_N, sim_core_write_N): Rename.
4863 (sim_core_write_aligned_N, sim_core_write_aligned_N): New names.
4864 (sim_core_write_unaligned_N, sim_core_write_unaligned_N): New
4865 alternatives that handle unaligned addresses.
4866 (sim_core_{read,write}_{,un}aligned_N): Drop SIM_DESC arg, replace
4867 with just CPU arg.
4868 * cgen-utils.c (sim_disassemble_insn): Update.
4869
4870Mon May 5 13:19:16 1997 Andrew Cagney <cagney@b1.cygnus.com>
4871
4872 * sim-trace.h (TRACE_FPU_IDX): Add Floating-point specific
4873 tracing.
4874
4875 * sim-fpu.h, sim-fpu.c: New files - prototype for generic target
4876 fpu support.
4877
4878 * sim-inline.h, sim-inline.c: Add support for SIM_FPU.
4879
4880Fri May 2 17:59:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
4881
4882 * sim-core.c (sim_core_map_to_str): New function ascii equivalent
4883 to map type.
4884
4885 * sim-n-core.h (sim_core_read_N, sim_core_write_N): Use in trace
4886 statement.
4887
4888Fri May 2 17:28:02 1997 Andrew Cagney <cagney@b2.cygnus.com>
4889
4890 * cgen-trace.c: Prepend additional trace_printf argument.
4891
4892 * cgen-utils.c (sim_disassemble_insn): Add additional core
4893 arguments.
4894
4895Fri May 2 11:40:23 1997 Andrew Cagney <cagney@b1.cygnus.com>
4896
4897 * nrun.c (main): Catch/report errorenous simulator states.
4898
4899 * sim-module.c: #include "libiberty.h" so that xmalloc is defined.
4900 * sim-trace.c: #include string.h/strings.h so that memset is
4901 defined.
4902 * sim-utils.c: Ditto.
4903 * sim-profile.c: Ditto. And stdlib.h.
4904 (print_bar): Only define when used by instruction or memory profiler.
4905
4906 * sim-options.c (standard_option_handler): Make ul more local.
4907
4908 * sim-load.c (sim_load_file): Make the name constant.
4909 (sim_load_file): Passify gcc.
4910
4911 * sim-utils.h: New file, pre-declare utilites in corresponding .c
4912 file.
4913 * sim-utils.c, sim-load.c: Include sim-utils.h.
4914
4915 * sim-base.h (sim_cpu): Pre define here so available to all.
4916
4917 * sim-core.h (DECLARE_SIM_CORE_WRITE_N, DECLARE_SIM_CORE_READ_N):
4918 Restore the sim_cpu and instruction_address arguments so that full
4919 information is available to the abort function.
4920 * sim-core.c (sim_core_find_mapping, sim_core_write_buffer): Ditto.
4921 * sim-n-core.h (sim_core_write_N, sim_core_read_N): Update.
4922
4923 * sim-trace.h, sim-trace.c (trace_option_handler): Add interim
4924 tracing support for sim-events and sim-core.
4925 (trace_option_handler): Convert #if to if where possible so always
4926 compiled/checked by C compiler.
4927 * sim-n-core.h (sim_core_write_N, sim_core_read_N): Update.
4928
4929 * sim-base.h: Adjust comment documenting how to define the cpu
4930 structure.
4931 (sim_state_base): Add sim_core and sim_events to simulator base
4932 object.
4933
4934 * sim-trace.h, sim-trace.c (trace_printf): Add SIM_DESC argument.
4935 * sim-core.c (sim_core_init, sim_core_attach,
4936 sim_core_find_mapping): Update.
4937 * sim-events.c (ETRACE, sim_events_init, sim_events_time,
4938 update_time_from_event, insert_sim_event,
4939 sim_events_schedule_after_signal, sim_events_deschedule,
4940 sim_events_tick): Ditto.
4941
4942 * sim-basics.h (sim-module.h, sim-trace.h, sim-profile.h,
4943 sim-model.h): Move #includes from here.
4944 * sim-base.h: To here.
4945 (sim-core.h, sim-events.h, sim-io.h): Include also
4946
4947Wed Apr 30 15:37:54 1997 Andrew Cagney <cagney@b1.cygnus.com>
4948
4949 * callback.c (default_callback): Missing initialisers.
4950
4951Thu May 1 10:40:47 1997 Doug Evans <dje@canuck.cygnus.com>
4952
4953 * sim-utils.c (sim_add_commas): New function.
4954 * sim-basics.h (sim_add_commas): Add prototype.
4955 * cgen-scache.c (scache_print_profile): Print commas in numbers.
4956 * sim-profile.c (COMMAS): New macro.
4957 (print_*): Use it to print commas in numbers.
4958
4959 * configure: Regenerated.
4960
4961 * cgen-sim.h (sim_signal_type): Add SIM_SIGINT.
4962 (cgen_state): New member run_fast_p.
4963 (cgen_init): Add prototype.
4964 (sim_disassemble_insn): New arg `cpu'.
4965 * cgen-trace.c (trace_insn): Update call to sim_disassemble_insn.
4966 * cgen-utils.c (cgen_init): New function.
4967 (sim_disassemble_insn): New arg `cpu'. Rewrite fetching of insn.
4968 * genmloop.sh: Call engine_halt if loop exits.
4969
4970 * Makefile.in (sim-options_h): Define.
4971 (sim-{module,options,trace,profile,utils}.o): Clean up dependencies.
4972 (sim-model.o): Add new rule.
4973 (cgen-{scache,trace,utils}.o): Add new rules.
4974 * aclocal.m4 (SIM_AC_OPTION_{SCACHE,DEFAULT_MODEL}): Add.
4975 * cgen-scache.c (scache_print_profile): Change `sd' arg to `cpu'.
4976 Indent output by 2 spaces.
4977 * cgen-scache.h (scache_print_profile): Update.
4978 * cgen-trace.c (trace_insn_fini): Indent output by 2 spaces.
4979 Use trace_printf, not fprintf.
4980 (trace_extract): Use trace_printf, not cgen_trace_printf.
4981 * genmloop.sh (!FAST case): Increment `insn_count'.
4982 * sim-base.h (sim_state_base): Only include scache_size if WITH_SCACHE.
4983 (sim_cpu_base): Rename member `sd' to `state' to be consistent with
4984 access macro's name.
4985 * sim-core.c (sim_core_init): Use EXTERN_SIM_CORE to define it.
4986 Change return type to SIM_RC.
4987 (sim_core_{install,uninstall}): New functions.
4988 * sim-core.h (sim_core_{install,uninstall}): Declare.
4989 (sim_core_init): Use EXTERN_SIM_CORE to define it.
4990 Change return type to SIM_RC.
4991 * sim-model.h (models,machs,model_install): Declare.
4992 * sim-module.c (modules): Add scache_install, model_install.
4993 (sim_post_argv_init): Set cpu->state backlinks.
4994 * sim-options.c (standard_options): Delete --simcache-size,--max-insns.
4995 (standard_option_handler): Likewise.
4996 * sim-profile.c (PROFILE_{HISTOGRAM,LABEL}_WIDTH): Move to
4997 sim-profile.h.
4998 (*): Assume ANSI C.
4999 (profile_options): Delete --profile-simcache.
5000 (profile_option_handler): Likewise.
5001 (profile_print_insn): Change `sd' arg to `cpu'. Indent output 2
5002 spaces.
5003 (profile_print_{memory,model}): Likewise.
5004 (profile_print_simcache): Delete.
5005 (profile_print_speed): New function.
5006 (profile_print): Rewrite.
5007 * sim-profile.h (PROFILE_scache): Renamed from PROFILE_simcache.
5008 (WITH_PROFILE_SCACHE_P): Renamed from WITH_PROFILE_SIMCACHE_P.
5009 (PROFILE_DATA): Delete members simcache_{hits,misses}.
5010 (PROFILE_COUNT_SIMCACHE_{HIT,MISS}): Delete.
5011 (PROFILE_{CALLBACK,CPU_CALLBACK}): New types.
5012 (profile_print): Update prototype.
5013
5014Wed Apr 30 11:34:14 1997 Doug Evans <dje@canuck.cygnus.com>
5015
5016 * cgen-scache.[ch], cgen-sim.h: New files.
5017 * cgen-trace.[ch], cgen-types.h, cgen-utils.c, genmloop.sh: New files.
5018 * sim-model.c: New file.
5019
5020 * Make-common.in (clean targets): Undo patch of Apr. 22.
5021
5022Fri Apr 25 15:28:32 1997 Mike Meissner <meissner@cygnus.com>
5023
5024 * sim-n-bits.h (signed): If we have a standard compiler, undef
5025 signed, so that signedN is defined correctly.
5026
5027Thu Apr 24 00:00:07 1997 Doug Evans <dje@canuck.cygnus.com>
5028
5029 * sim-module.h, sim-model.h, sim-profile.h: New files.
5030 * sim-module.c, sim-profile.c: New files.
5031 * Make-common.in (SIM_PROFILE): Define
5032 (CONFIG_CFLAGS): Add $(SIM_PROFILE).
5033 (sim_main_headers): Add sim-module.h, sim-model.h, sim-profile.h.
5034 (sim_module.o,sim-profile.o): Add rules for.
5035 * aclocal.m4 (--enable-sim-trace): Allow symbolic arguments.
5036 (--enable-sim-profile): Add.
5037 * configure: Regenerated.
5038 * sim-base.h (sim_state_base): New members init_list, uninstall_list,
5039 model. Move trace and profile support to sim-{trace,profile}.h.
5040 New members trace_data, profile_data.
5041 * sim-basics.h: #include sim-module.h, sim-model.h, sim-profile.h.
5042 * sim-config.h: Provide default definition of WITH_PROFILE.
5043 (WITH_TRACE): Change default to -1.
5044 (MAX_NR_PROCESSORS): Always define.
5045 * sim-options.c: Move trace and profile support to
5046 sim-{trace,profile}.h.
5047 (sim_pre_argv_init): Moved to sim-model.c.
5048 (standard_install): New function.
5049 * sim-options.h (sim_pre_argv_init): Move decl to sim-model.c.
5050 (standard_install): Declare.
5051 * sim-trace.c: Tracing option handling moved here from sim-options.c.
5052 (trace_install, trace_uninstall): New functions.
5053 (trace_printf): Update reference to TRACE_FILE.
5054 * sim-trace.h (TRACE_FOO_IDX): Moved here from sim-base.h.
5055 (TRACE_foo): Bit masks for symbolic arguments to --enable-sim-trace.
5056 (WITH_TRACE_FOO_P): Define.
5057 (trace_install): Declare.
5058 (TRACE_DATA): New struct.
5059
5060Wed Apr 23 17:23:15 1997 Doug Evans <dje@canuck.cygnus.com>
5061
5062 * run.c: Undo last exec_bfd patch.
5063 (main): Only pass -E ifdef SIM_HAVE_BIENDIAN.
5064
5065Wed Apr 23 17:54:27 1997 Mike Meissner <meissner@cygnus.com>
5066
5067 * run.c (exec_bfd): Add back in.
5068 (main): Set exec_bfd.
5069
5070Tue Apr 22 14:43:46 1997 Doug Evans <dje@canuck.cygnus.com>
5071
5072 * sim-load.c (sim_load_file): #include <stdio.h> for NULL.
5073
5074Wed Apr 23 02:55:54 1997 Andrew Cagney <cagney@b1.cygnus.com>
5075
5076 * sim-events.c (insert_sim_event): Call sim_io_error instead of
5077 less well defined engine_error.
5078 * sim-core.c: Ditto.
5079
5080Tue Apr 22 08:48:16 1997 Stu Grossman (grossman@critters.cygnus.com)
5081
5082 * Make-common.in: Change clean targets to use :: so that other
5083 Makefiles can have their own clean targets.
5084 * sim-load.c (xprintf eprintf): Use ANSI_PROTOTYPES instead of
5085 __STDC__ to control use of stdarg vs. varargs syntax. Some
5086 systems can't use __STDC__, but require stdarg.
5087
5088Fri Apr 18 11:14:43 1997 Doug Evans <dje@canuck.cygnus.com>
5089
5090 * sim-options.c (standard_options): Add --endian.
5091 (standard_option_handler): Likewise.
5092
5093 * nrun.c: #include <signal.h>.
5094 (main, cntrl_c): Wrap calls to sim_resume in a SIGINT
5095 handler that calls sim_stop ().
5096
5097Fri Apr 18 13:11:36 1997 Andrew Cagney <cagney@b1.cygnus.com>
5098
5099 * run.c (main, cntrl_c): Wrap calls to sim_resume in a SIGINT
5100 handler that calls sim_stop (). Simulators may still be
5101 establishing their own handler.
5102
5103 * sim-events.c (sim_events_poll): Rename from
5104 sim_events_at_large_int. Poll IO.
5105
5106 * sim-io.c (sim_io_poll_quit): New function - pass on a polling
5107 request.
5108
5109 * callback.c (os_poll_quit): New function poll for quit signal
5110 where needed.
5111 (default_callback): Include magic number.
5112
5113Thu Apr 17 02:25:11 1997 Doug Evans <dje@canuck.cygnus.com>
5114
5115 * aclocal.m4: Check for headers time.h, sys/time.h, sys/resource.h.
5116 Check for functions getrusage, time.
5117 * sim-basics.h (SIM_ELAPSED_TIME): New typedef.
5118 (sim_elapsed_time_get, sim_elapsed_time_since): Add prototypes.
5119 * sim-utils.c: #include time.h, sys/time.h, sys/resource.h if able.
5120 (sim_elapsed_time_get, sim_elapsed_time_since): New functions.
5121
5122 * sim-utils.c (sim_copy_argv, sim_analyze_program): New functions.
5123
5124 * sim-options.c, sim-options.h: New files.
5125 * sim-config.h (WITH_DEBUG): Provide default value of zero.
5126 * Make-common.in (nrun.o): Add rules for.
5127 * nrun.c: New file.
5128
5129 * run.c (main): Check return value of sim_open.
5130
5131 * Make-common.in (sim-options.o, sim-load.o, sim-trace.o): Add rules.
5132 (sim_main_headers): Add sim-trace.h.
5133 * run.c (exec_bfd, target_byte_order): Delete.
5134 (main): Pass -E <endian> to sim_open. Delete code to load sections,
5135 call sim_load instead. Check return code of sim_create_inferior.
5136 * sim-base.h (CURRENT_STATE): Define.
5137 (sim_state_base): Make typedef. New members options, prog_argv,
5138 prog_bfd, text_{section,start,end}, start_addr, simcache_size,
5139 mem_size, memory [+ corresponding access macros].
5140 (sim_cpu_base): New typedef.
5141 * sim-trace.h: New file.
5142 * sim-trace.c: New file.
5143 * sim-basics.h: #include it.
5144 * sim-load.c: New file.
5145
5146Tue Apr 15 15:10:13 1997 Ian Lance Taylor <ian@cygnus.com>
5147
5148 * Make-common.in (INSTALL): Set to @INSTALL@.
5149 (INSTALL_XFORM, INSTALL_XFORM1): Remove.
5150 (install-common): Depend upon installdirs. Use
5151 $(program_transform_name) directly, rather than using
5152 $(INSTALL_XFORM).
5153 (installdirs): New target.
5154 * Makefile.in (INSTALL): Set to @INSTALL@.
5155 (INSTALL_XFORM, INSTALL_XFORM1): Remove.
5156 (install-man): Depend upon installdirs. Use
5157 $(program_transform_name) directly, rather than using
5158 $(INSTALL_XFORM).
5159 (installdirs): New target.
5160
5161Tue Apr 15 15:08:12 1997 Andrew Cagney <cagney@b1.cygnus.com>
5162
5163 * sim-assert.h (SIM_ASSERT, ASSERT): Allow these macros to
5164 be overriden.
5165
5166Wed Apr 9 16:06:44 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5167
5168 * sim-basics.h: Only bring in config.h and tconfig.h if
5169 HAVE_CONFIG_H.
5170
5171Mon Apr 7 11:39:45 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5172
5173 * sim-config.h (WITH_TARGET_WORD_MSB): New Macro. Define the bit
5174 numbering convention of the target.
5175 * sim-config.c (print_sim_config): Print WITH_TARGET_WORD_BITSIZE
5176 and WITH_TARGET_WORD_MSB.
5177 (sim_config): When possible, check for consistency with bitsize
5178 and msb.
5179
5180 * sim-bits.h: Allow MSB to be other than zero.
5181 * sim-bits.c: Ditto.
5182 * sim-n-bits.h: Ditto.
5183
5184 * sim-bits.h (MSMASK*): New macros - converce to LSMASK*.
5185 * sim-n-bits.h (MSMASKEDn): Ditto.
5186
5187Mon Apr 14 16:29:21 1997 Ian Lance Taylor <ian@cygnus.com>
5188
5189 * Makefile.in (INSTALL): Change install.sh to install-sh.
5190
5191Mon Apr 7 10:46:38 1997 Doug Evans <dje@canuck.cygnus.com>
5192
5193 * sim-base.h (sim_state_base): Move `magic' to end of struct.
5194
5195Mon Apr 7 15:53:21 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5196
5197 * run.c (main): Check that a program to run was specified.
5198
5199Mon Apr 7 15:45:02 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5200
5201 * aclocal.m4 (AC_TYPE_SIGNAL): Add check.
5202
5203 * configure: Regenerated to track ../common/aclocal.m4 changes.
5204 * config.in: Ditto.
5205
5206Wed Apr 2 15:06:28 1997 Doug Evans <dje@canuck.cygnus.com>
5207
5208 * sim-endian.h: Move host {LITTLE,BIG}_ENDIAN support from here,
5209 * sim-config.h: To here.
5210
5211 * Make-common.in (SIM_EXTRA_DEPS): New config var.
5212 (sim_main_headers): Define.
5213 (sim-*.o): Depend on $(SIM_EXTRA_DEPS).
5214 (BUILT_SRC_FROM_COMMON): Move here from ../d30v/Makefile.in.
5215 (clean): Use it.
5216 (sim-utils.o): Add rule for.
5217 * sim-utils.o: New file.
5218 * sim-basics.h: #include sim-base.h.
5219 (zalloc): Make argument unsigned long.
5220 * sim-base.h: New file.
5221 * sim-inline.h (SIM_IO support): Delete.
5222 * sim-io.h: Delete inline support.
5223 * sim-io.c: Likewise. sim-state.h renamed to sim-main.h.
5224 * sim-config.c: sim-state.h renamed to sim-main.h.
5225 * sim-core.c: Likewise.
5226 * sim-events.c: Likewise.
5227
5228 * run.c (main): Pass SIM_OPEN_STANDALONE to sim_open.
5229
5230 * aclocal.m4: Check for stdlib.h, string.h, strings.h, unistd.h.
5231 (sim-debug): Allow arguments. Define WITH_DEBUG in addition to
5232 -DDEBUG.
5233 * configure: Regenerated to track ../common/aclocal.m4 changes.
5234
5235Wed Apr 2 14:34:19 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5236
5237 * configure: Regenerated to track ../common/aclocal.m4 changes.
5238
5239Wed Apr 2 11:08:11 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5240
5241 * sim-config.h (WITH_ALIGNMENT, WITH_FLOATING_POINT,
5242 WITH_XOR_ENDIAN, WITH_SMP, WITH_RESERVED_BITS): Assume that these
5243 are defined by the configure.
5244
5245 * aclocal.m4 (sim-stdio): Add option stdio from ../ppc configure.
5246
5247 * aclocal.m4 (floating-point, xor-endian, alignment, smp,
5248 reserved-bits): Always define.
5249
5250 * sim-config.h, sim-config.c (sim_config): New function - and new
5251 file - co-ordinate the setting/checking of the common simulator
5252 configuration options.
5253
5254 * Make-common.in (sim-config.o): Add rule.
5255
5256Fri Mar 28 15:32:00 1997 Mike Meissner <meissner@cygnus.com>
5257
5258 * callback.c (os_{,e}vprintf_filtered): Change stdarg type to
5259 va_list from void *, since va_list might not be a pointer type.
5260
5261Mon Mar 24 15:27:12 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5262
5263 * sim-n-endian.h (offset_N): Correct assertion - word and sub word
5264 in wrong order.
5265 (offset_N): Correct computation of LE offset.
5266
5267 * sim-io.c (sim_io_error): Include a new line when reporting
5268 errors.
5269
5270 * sim-assert.h (SIM_FILTER_PATH): Out by one when locating last
5271 `/'.
5272
5273Thu Mar 20 22:31:06 1997 Jeffrey A Law (law@cygnus.com)
5274
5275 * run.c: Include alloca-conf.h.
5276
5277 * callback.c (os_evprintf_filtered): Fix typo.
5278
5279Fri Mar 21 13:36:20 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5280
5281 * run.c (string.h, strings.h, stdlib.h): Include.
5282
5283 * sim-events.c (sim_events_tick): Recent cleanup failed to return
5284 0 when nothing pending.
5285
5286 * run.c (sim_size, sim_trace): Plicate GCC - these two functions
5287 will soon be going away.
5288 (getopt): Plicate GCC.
5289
5290 * sim-endian.c (sim-io.h): Plicate GCC.
5291 * sim-bits.c (sim-io.h): Ditto.
5292 * sim-n-bits.h (ROTn): Ditto.
5293
5294 * sim-io.c (sim_io_error): Correct check for NULL.
5295
5296 * sim-assert.h (SIM_FILTER_PATH): Separate out the code filtering
5297 the __FILE__.
5298 * sim-events.c: Use SIM_FILTER_PATH to filter out the filename
5299 path.
5300
5301Wed Mar 19 01:12:06 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5302
5303 * aclocal.m4 (SIM_AC_OPTION_*: Move so that they are outside of
5304 SIM_AC_COMMON - SIM_AC_COMMON was gobling arguments.
5305
5306Tue Mar 18 20:48:12 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5307
5308 * sim-alu.h: Include sim-xcat.h.
5309
5310Tue Mar 18 13:58:18 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5311
5312 * Make-common.in (sim-bits.c, sim-core.c, sim-endian.c,
5313 sim-events.c, sim-inline.c, sim-io.c): Define rules for building
5314 these.
5315
5316 * sim-events.c (sim_events_at_large_int): New function. Just
5317 schedules an event every large-int ticks.
5318 (sim_events_init): Call.
5319 (sim_events_tick, sim_events_process): Move async handing to
5320 sim_events_process. Move timer decrement so that it occures after
5321 events have been processed.
5322
5323 * sim-basics.h (struct _engine): Remove declaration.
5324
5325 * sim-events.h, sim-events.c: Rename type to sim_events. Prefix
5326 everything with same. Rename global struct to SIM_DESC.
5327 * sim-core.h, sim-core.c, sim-n-core.c: Ditto for sim_core.
5328 * sim-io.h, sim-io.c: Ditto.
5329
5330 * sim-assert.h: New file. Optional assertion checking macros.
5331 * sim-io.c (sim_io_error): Make just this function tolerant to
5332 null pointers.
5333
5334 * sim-xcat.h: New file. Define concatenate macros.
5335 * sim-basics.h (XCONCAT*): Move to sim-xcat.h.
5336 * sim-n-core.h, sim-n-bits.h, sim-n-endian.h: Explicitly include
5337 concat macros.
5338
5339
5340Tue Mar 18 12:44:55 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5341
5342 * sim-bits.h (LSMASK): New macro. Create mask of LS bits.
5343
5344Mon Mar 17 18:10:05 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5345
5346 * sim-inline.h: Add definitions for sim-types.
5347 (ALL_BY_MODULE): New macro, encapsulate full inlining by the
5348 module.
5349
5350Mon Mar 17 15:38:27 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5351
5352 * sim-events.h: Remove defunct reference to callback struct.
5353
5354Mon Mar 17 15:10:07 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5355
5356 * configure: Re-generate.
5357
5358Mon Mar 17 15:04:47 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5359
5360 * Make-common.in (CSEARCH): Do not include the gdb directory in
5361 the search path.
5362
5363Mon Mar 17 13:16:26 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5364
5365 * Make-common.in (SIM_ENDIAN, SIM_HOSTENDIAN, SIM_INLINE,
5366 SIM_WARNING): Drop, requiring the simulator specific Makefile.in
5367 to explicitly incorporate these.
5368
5369 * aclocal.m4 (--enable-sim-alignment); New option. Strongly
5370 specify the alignment restrictions of the target architecture -
5371 without this option all alignment restrictions are accomodated.
5372 (--enable-sim-assert): New option. Conditionally compile in
5373 assertion statements.
5374 (--enable-sim-float): New option. Strongly specify the target's
5375 floating point support.
5376 (--enable-sim-hardware): New option. Specify the hardware devices
5377 included in the simulation.
5378 (--enable-sim-packages): New option. Specify the hardware
5379 packages included in the simulation.
5380 (--enable-sim-regparm): New option. Specify that parameters be
5381 passed in registers instead of on the stack.
5382 (--enable-sim-reserved-bits): New option. Specify that reserved
5383 bits within an instruction are are correctly set.
5384 (--enable-sim-smp): New option. Specify the level of SMP support
5385 to be included in the simulator.
5386 (--enable-sim-stdcall): New option. Specify an alternative
5387 function call convention.
5388 (--enable-sim-xor-endian): New option. Configure xor-endian
5389 support used by some targets to implement bi-endian support.
5390
5391Fri Mar 14 19:51:21 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5392
5393 * aclocal.m4 (--enable-sim-hostendian): New option. Allow the
5394 host endianness to be overridden.
5395 (--enable-sim-endian): Allow the target platform's byte order
5396 to be overridden.
5397 (--enable-sim-inline): Control the inlining of common components.
5398 (--enable-sim-bswap): For compatibility, also define WITH_BSWAP.
5399 (--enable-sim-warnings): Enable additional GCC compiler checks.
5400 * Make-common.in (SIM_ENDIAN, SIM_HOSTENDIAN, SIM_INLINE,
5401 SIM_WARNINGS): Add.
5402
5403 * sim-n-core.h, sim-n-bits.h, sim-n-endian.h: Rename from
5404 sim-*-n.h so that the names are uniq on dos machines
5405 * sim-core.c, sim-bits.c, sim-endian.c: Update.
5406
5407Thu Mar 13 12:32:42 1997 Doug Evans <dje@canuck.cygnus.com>
5408
5409 * run.c: #include "libiberty.h".
5410 (main): New locals sd,no_args,sim_argv.
5411 Run buildargv on -a option. Pass argv to sim_open, argv[0]
5412 is program name. Update call to sim_set_callbacks.
5413 Record result of sim_open, pass to other sim_foo routines.
5414
5415Thu Mar 13 10:24:05 1997 Michael Meissner <meissner@cygnus.com>
5416
5417 * callback.c (os_printf_filtered): Do not call exit(1) or print a
5418 final newline.
5419
5420Thu Mar 6 15:50:28 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5421
5422 * callback.c: Add os_flush_stdout and vprintf_filtered callbacks.
5423 Route stdout through buffered IO.
5424
5425 * callback.c: Add os_flush_stderr, os_write_stderr,
5426 os_evprintf_filtered functions to route error output through
5427 stderr.
5428
5429 * sim-io.h, sim-io.c (sim_io_flush_stderr, sim_io_flush_stdout):
5430 Correct return type - should be void.
5431
5432Fri Mar 7 20:14:37 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5433
5434 * sim-basics.h: Clean up. Many macro's moved to sim-inline.h.
5435
5436 * sim-config.h: Ditto. For some options - eg WITH_DEVICES - do
5437 not provide a default value as undefined indicates disable code.
5438
5439Thu Mar 6 15:50:28 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5440
5441 * sim-core.h, sim-core-n.h, sim-core.c: Borrow code from ppc
5442 directory.
5443 * sim-events.h, sim-events.c: Ditto.
5444 * sim-io.h, sim-io.c: Ditto.
5445
5446Tue Mar 4 09:35:56 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5447
5448 * sim-alu.h (ALU_SUB_CA, ALU*_SUB_CA): New alu operation.
5449
5450 * sim-bits.h, sim-bits-n.h, sim-bits.c (LSMASKED*): New macro's
5451 extract the tail or least signifiant bits from an integer of the
5452 specified size.
5453
5454 * sim-bits.h, sim-bits.c: Clean up conditionally compiled #if
5455 WITH_TARGET_BITSIZE so that the compilation will fail when an
5456 unsupported bitsize value is defined.
5457
5458 (INSERTED*): Convert to functions.
5459 (EXTRACTED*): Ditto.
5460
5461 (SIGN_EXTEND, SEXT): Change to more terse name.
5462
5463Tue Mar 4 09:35:56 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5464
5465 * sim-inline.h: Allow explicit control over which .c files will be
5466 included by their header.
5467
5468 * sim-inline.h: Allow explicit control over which .c files use the
5469 alternative - REGPARM - parameter passing mechanism.
5470
5471 * sim-inline.h, sim-inline.c: Don't attempt to include any of
5472 icache.c, idecode.c, semantics.c or support.c. Those names are
5473 not generally applicable.
5474
5475Thu Feb 27 10:17:23 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5476
5477 * sim-bits.c, sim-bits-n.h (new): Split sim-bits.c into two parts
5478 in a fashion similar to sim-endian-n.
5479
5480 * sim-endian.h: (H_word, L_word, AL_*, VL_*): Extend to include
5481 both value and address macro's.
5482
5483Tue Feb 25 18:51:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
5484
5485 * sim-alu.h (ALU16_BEGIN, ALU16_SET, ...): Fill in.
5486
5487 * sim-endian.h (L_word, H_word): Replace MS2W_4, LS2W_4 with more
5488 generic L_word, H_word macro's.
5489
5490Thu Feb 20 18:36:55 1997 Andrew Cagney <cagney@critters.cygnus.com>
5491
5492 * sim-basics.h: Borrow code from ppc directory.
5493 * sim-bits.c: Ditto.
5494 * sim-bits.h: Ditto.
5495 * sim-config.h: Ditto.
5496 * sim-endian-n.h: Ditto.
5497 * sim-endian.c: Ditto.
5498 * sim-endian.h: Ditto.
5499 * sim-inline.c: Ditto.
5500 * sim-inline.h: Ditto.
5501 * sim-types.h: Ditto.
5502
5503Wed Feb 19 12:40:50 1997 Andrew Cagney <cagney@critters.cygnus.com>
5504
5505 * sim-alu.h (ALU_SET16, ALU_SET32, ALU_SET64, etc): Make available
5506 all the ALU size alternatives and then auto-configure a default.
5507
5508 * sim-alu.h: Copy ppc/idecode_expression.h.
5509
5510Mon Feb 17 10:44:18 1997 Andrew Cagney <cagney@critters.cygnus.com>
5511
5512 * bits.h, bits.c (SIGN_EXTEND32, SIGN_EXTEND64): New functions,
5513 sign extend a bit within a value.
5514
5515 * sim-endian.h, sim-endian-n.h (offset_N): New functions - return
5516 a pointer into the middle of a host word.
5517 * sim-endian.h (MS2W_4, LS2W_4): Use this function.
5518
5519Tue Feb 11 13:46:49 1997 Michael Meissner <meissner@tiktok.cygnus.com>
5520
5521 * callback.c: If HAVE_CONFIG_H is defined, include config.h from
5522 autoconf. If HAVE_UNISTD_H is defined, include unistd.h to get
5523 appropriate definitions of read, write, etc. Add prototype for
5524 system.
5525
5526Tue Feb 4 13:24:44 1997 Doug Evans <dje@canuck.cygnus.com>
5527
5528 * Makefile.in (libcommon.a): Delete.
5529 (callback.o,targ-map.o): Delete, moved to Make-common.in.
5530 (gentmap,targ-vals.h,targ-map.c): Likewise.
5531 (run-autoconf): Delete.
5532 * aclocal.m4 (SIM_AC_OUTPUT): Redo creation of Makefile.
5533 (common makefile fragment): Moved back into ...
5534 * Make-common.in: Resurrect.
5535 * configure.in (AC_LINK_FILES): Delete, unnecessary now.
5536 * configure: Regenerated.
5537
5538Fri Jan 31 07:16:49 1997 Doug Evans <dje@canuck.cygnus.com>
5539
5540 * aclocal.m4 (SIM_AC_COMMON): Move COMMON_MAKEFILE_FRAG from here.
5541 (SIM_AC_OUTPUT): To here.
5542
5543Fri Jan 24 10:37:17 1997 Stu Grossman (grossman@critters.cygnus.com)
5544
5545 * aclocal.m4 (COMMON_MAKEFILE_FRAG): Quote a couple of $'s in
5546 comments and single quotes. Fixes a problem found on hpux.
5547
5548Thu Jan 23 13:35:03 1997 Stu Grossman (grossman@critters.cygnus.com)
5549
5550 * aclocal.m4: Remove Make-common.in from dependencies.
5551 * (distclean): Remove targ-vals.def.
5552
5553 * aclocal.m4 (SIM_AC_COMMON): Move contents of Make-common.in
5554 into here. Makes insertion into makefiles easier. Also, change
5555 the way that callback.o, gentmap, targ-vals.h, targ-map.c,
5556 targ-map.o, and run are built. They are now built in the
5557 individual simulator directories, taking sources from ../common as
5558 necessary. This replaces the merging of libcommon.a into
5559 linsim.a, which was problematic for the WinGDB build process.
5560 * run.c: Include config.h from . instead of ../common.
5561 * Make-common.in: Remove. It's no longer necessary.
5562
5563Mon Dec 16 15:02:33 1996 Ian Lance Taylor <ian@cygnus.com>
5564
5565 * Make-common.in (ALL_CLAGS): Put CFLAGS at the end.
5566 (.c.o): Put $(ALL_CFLAGS) before the file being compiled.
5567
5568Wed Dec 11 11:30:58 1996 Jim Wilson <wilson@cygnus.com>
5569
5570 * run.c (main): Set target_byte_order before call to sim_open.
5571
5572Sun Dec 8 18:22:06 1996 Doug Evans <dje@canuck.cygnus.com>
5573
5574 * callback.c: #include <stdlib.h>
5575 (os_error): New function.
5576 (default_callback): Add os_error.
5577
5578Mon Nov 25 19:44:35 1996 Doug Evans <dje@canuck.cygnus.com>
5579
5580 * Make-common.in (Makefile): Set CONFIG_HEADERS="".
5581 * aclocal.m4: Mark the fact that --enable-sim-bswap isn't host
5582 specific.
5583 (SIM_AC_OUTPUT): Don't build Makefile if CONFIG_FILES="".
5584
5585Wed Nov 20 01:11:04 1996 Doug Evans <dje@canuck.cygnus.com>
5586
5587 * run.c: #include ../common/config.h, tconfig.h.
5588 (myname): New static global.
5589 (main): Recognize new options -a, -c. Also recognize -h if h8/300.
5590 Only process -c ifdef SIM_HAVE_SIMCACHE.
5591 Only process -p/-s ifdef SIM_HAVE_PROFILE.
5592 Parse program name from argv[0] and use in error messages.
5593 Pass sim_args to sim_open. Pass prog_args to sim_create_inferior.
5594 Add support for incomplete h8/300 termination indicators.
5595 (usage): Make more verbose.
5596 * aclocal.m4,config.in,tconfig.in,configure.in,configure: New files.
5597 * Makefile.in,Make-common.in,callback.c: New files.
5598 * nltvals.def,gentmap.c,gentvals.sh: New files.
5599
5600Tue Nov 12 13:34:00 1996 Dawn Perchik <dawn@cygnus.com>
5601
5602 * run.c: Include stdarg.h if __STDC__.
5603
5604Tue Oct 15 11:16:31 1996 Jeffrey A Law (law@cygnus.com)
5605
5606 * run.c (main): Don't print out anything if the signal
5607 number is zero (ie no signal).
5608
5609Tue Oct 15 11:20:44 1996 Michael Meissner <meissner@tiktok.cygnus.com>
5610
5611 * run.c (main): Print out if the program raised a signal.
5612
5613Wed Sep 18 09:52:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
5614
5615 * run.c (exec_bfd): Rename from sim_bfd, to use the gdb name.
5616 (main): Ditto.
5617
5618Tue Sep 17 11:04:50 1996 James G. Smith <jsmith@cygnus.co.uk>
5619
5620 * run.c (main): Explicitly cast malloc() parameter.
5621
5622Thu Sep 12 11:27:21 1996 Michael Meissner <meissner@tiktok.cygnus.com>
5623
5624 * run.c (sim_bfd): New global to hold the bfd pointer for the
5625 executable.
5626 (main): Initialize sim_bfd.
5627
5628Fri Dec 15 16:27:49 1995 Ian Lance Taylor <ian@cygnus.com>
5629
5630 * run.c (main): Use new bfd_big_endian macro.
5631
5632Wed Nov 8 15:49:49 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk>
5633
5634 * run.c (main): Removed SH specific comments, so source is
5635 generic. Also updated to only load relevant sections. Moved
5636 sim_open() to after callback attach (to match GDB).
5637
5638 * run.1: Removed SH specific comments.
5639
5640Sat Oct 21 12:31:01 1995 Jim Wilson <wilson@chestnut.cygnus.com>
5641
5642 * run.c (main): Always return sigrc at end.
5643
5644Tue Oct 10 12:03:13 1995 J.T. Conklin <jtc@rtl.cygnus.com>
5645
5646 * run.c (main): Print error diagnostic and exit if bfd_openr() or
5647 bfd_check_format() fails.
5648
5649Thu Sep 28 15:40:36 1995 steve chamberlain <sac@slash.cygnus.com>
5650
5651 * run.c, run.1: From sh directory.