Add GNU Free Documentation License
[deliverable/binutils-gdb.git] / sim / arm / ChangeLog
CommitLineData
3943c96b
NC
12000-09-15 Nick Clifton <nickc@redhat.com>
2
3 * armdefs.h: Rename StrongARM property to v4_ARM and add v5 ARM
4 property. Delete unnecessary processor names.
5 (ARM_Strong_Prop): Delete.
6 (STRONGARM): Delete.
7 (ARM_v4_Prop): Add.
8 (ARM_v5_Prop): Add
9 (State): Delete is_StrongARM boolean. Add is_v4 and is_v5
10 booleans.
11
12 * armemu.h (BUSUSEDINCPCS): Use is_v4 boolean.
13 (BUSUSEDINCPCN): Use is_v4 boolean.
14
15 * arminit.c (ARMul_NewState): Initialise is_v4 and is_v5 fields.
16 (ARMul_SelectProcessor): Change second parameter from 'processor'
17 to 'properties'. Set is_v4 and is_v5 booleans in State.
18
19 * armrdi.c: Remove use of ARM processor names. Replace with ARM
20 processor properties.
21
22 * wrapper.c (sim_create_inferior): Choose properties passed to
23 ARMul_SelectProcessor based on machine number.
24
4bc1de7b
NC
252000-08-14 Nick Clifton <nickc@redhat.com>
26
27 * armemu.c (LHPOSTDOWN): Compute write back value before
28 performing load in case the offset register is overwritten.
29 (LHPOSTUP): Ditto.
30
0a4321b9
FN
312000-07-14 Fernando Nasser <fnasser@cygnus.com>
32
33 * wrapper.c (sim_create_inferior): Fix typo in the previous patch.
34
64a10675
FN
352000-07-14 Fernando Nasser <fnasser@cygnus.com>
36
37 * wrapper.c (sim_create_inferior): Reset mode to ARM when creating a
38 new inferior.
39
b0eae074
AO
402000-07-04 Alexandre Oliva <aoliva@redhat.com>
41
ae3c7619
AO
42 * armvirt.c (ABORTS): Do not define.
43
1e6b544a
AO
44 * armdefs.h (struct ARMul_State): Add is_StrongARM.
45 (ARM_Strong_Prop, STRONGARM): Define.
46 * arminit.c (ARMul_NewState): Reset is_StrongARM.
47 (ARMul_SelectProcessor): Set is_StrongARM.
48 * wrapper.c (sim_create_inferior): Use bfd machine type to
49 determine processor type to emulate.
50 * armemu.h (BUSUSEDINCPCS, BUSUSEDINCPCN): Don't increment PC
51 when emulating StrongARM.
52
66210567
AO
53 * armemu.c (ARMul_Emulate, t_undefined): Proceed to next insn.
54
e063aa3b
AO
55 * armemu.h (INSN_SIZE): New macro.
56 (SET_ABORT): Save CPSR in SPSR and set LR.
57 * armemu.c (ARMul_Emulate, isize): Set to INSN_SIZE.
58 (WriteR15, WriteSR15): Do not discard bit 1 in Thumb mode.
59 * arminit.c (ARMul_Abort): Use new SETABORT and INSN_SIZE.
60
13b6dd6f
AO
61 * armemu.c (LoadSMult): Use WriteR15() to discard the least
62 significant bits of PC.
63
892c6b9d
AO
64 * armemu.h (WRITEDESTB): New macro.
65 * armemu.c (ARMul_Emulate26, bl): Use WriteR15Branch() to
66 modify PC. Moved the existing logic...
67 (WriteR15Branch): ... here. New function.
68 (WriteR15, WriteSR15): Drop the two least significant bits.
69 (LoadSMult): Use WriteR15Branch() to modify PC.
70 (LoadMult): Use WRITEDESTB() instead of WRITEDEST().
71
cf52c765
AO
72 * armemu.h (GETSPSR): Call ARMul_GetSPSR().
73 * armsupp.c (ARMul_CPSRAltered): Zero out bits as they're
74 extracted from state->Cpsr, but preserve the unused bits.
75 (ARMul_GetCPSR): Get bits preserved in state->Cpsr.
76 (ARMul_GetSPSR, ARMul_FixCPSR): Use ARMul_GetCPSR() to
77 get the full CPSR word.
78
4ef2594f
AO
79 * armemu.h (PSR_FBITS, PSR_SBITS, PSR_XBITS, PSR_CBITS): New.
80 (SETPSR_F, SETPSR_S, SETPSR_X, SETPSR_C): New macros.
81 (SETPSR, SET_INTMODE, SETCC): Removed.
82 * armsupp.c (ARMul_FixCPSR, ARMul_FixSPSR): Do not test bit
83 mask. Use SETPSR_* to modify PSR.
84 (ARMul_SetCPSR): Load all bits from value.
85 * armemu.c (ARMul_Emulate, msr): Do not test bit mask.
86
e62263b8
AO
87 * armemu.c (ARMul_Emulate): Compute writeback value before
88 loading, since the offset register may be the destination
89 register.
90
b0eae074
AO
91 * armdefs.h (SYSTEMBANK): Define as USERBANK.
92 * armsupp.c (ARMul_SwitchMode): Remove SYSTEMBANK cases.
93
ee9a7772
AO
942000-06-22 Alexandre Oliva <aoliva@cygnus.com>
95
f9c22bc3
AO
96 * armemu.c (Multiply64): Fix computation of flag N.
97
ee9a7772
AO
98 * armemu.c (MultiplyAdd64): Fix computation of flag N.
99
fe47e8df
AO
1002000-06-20 Alexandre Oliva <aoliva@cygnus.com>
101
102 * armemu.h (NEGBRANCH): Do not overwrite the two most significant
103 bits of the offset.
104
c1a72ffd
NC
1052000-05-25 Nick Clifton <nickc@cygnus.com>
106
107 * armcopro.c (MMUMCR): Only indicate mode change if a singal has
108 really changed.
109 (MMUWrite): Only indicate mode change if a singal has really
110 changed.
111
112 * armdefs.h (SYSTEMMODE): Define.
113 (BANK_CAN_ACEESS_SPSR): Define.
114
115 * armemu.c (ARM_Emulate26): If the mode has changed allow the PC
116 to advance before stopping the emulation.
117
118 * arminit.c (ARMul_Reset): Ensure Mode field of State is set
119 correctly.
120
121 * armos.c (ARMul_OSInit): Create a initial stack pointer for
122 System mode.
123
124 * armsupp.c (ModeToBank): Remove unused first parameter.
125 Add support for System Mode.
126 (ARMul_GetSPSR): Use BANK_CAN_ACCESS_SPSR macro.
127 (ARMul_SetSPSR): Use BANK_CAN_ACCESS_SPSR macro.
128 (ARMul_FixSPSR): Use BANK_CAN_ACCESS_SPSR macro.
129 (ARMulSwitchMode): Add support for System Mode.
130
131Wed May 24 14:40:34 2000 Andrew Cagney <cagney@b1.cygnus.com>
eb2d80b4
AC
132
133 * configure: Regenerated to track ../common/aclocal.m4 changes.
134
3463c3fb
NC
1352000-05-23 Nick Clifton <nickc@cygnus.com>
136
137 * wrapper.c (sim_store_register): Special handling for CPSR
138 register.
139
5d0d395e
FCE
1402000-03-11 Philip Blundell <philb@gnu.org>
141
142 * armemu.c (LoadSMult, LoadMult): Correct handling of aborts.
143 Patch from Allan Skillman <Allan.Skillman@arm.com>.
144
6c9e0292
FCE
145Wed Mar 22 15:24:21 2000 glen mccready <gkm@pobox.com>
146
147 * wrapper.c (sim_open,sim_close): Copy into myname, free myname.
148
6d358e86
NC
1492000-02-08 Nick Clifton <nickc@cygnus.com>
150
151 * wrapper.c: Fix compile time warning messages.
152 * armcopro.c: Fix compile time warning messages.
153 * armdefs.h: Fix compile time warning messages.
154 * armemu.c: Fix compile time warning messages.
155 * armemu.h: Fix compile time warning messages.
156 * armos.c: Fix compile time warning messages.
157 * armsupp.c: Fix compile time warning messages.
158 * armvirt.c: Fix compile time warning messages.
d0187574 159 * bag.c: Fix compile time warning messages.
6d358e86 160
dfcd3bfb
JM
1612000-02-02 Bernd Schmidt <bernds@cygnus.co.uk>
162
163 * *.[ch]: Use indent to make readable.
164
c2d11a7d
JM
1651999-11-22 Nick Clifton <nickc@cygnus.com>
166
167 * armos.c (SWIread): Generate an error message if a huge read is
168 performed.
169 (SWIwrite): Generate an error message if a huge write is
170 performed.
171
5c44784c
JM
1721999-10-27 Nick Clifton <nickc@cygnus.com>
173
174 * thumbemu.c (ARMul_ThumbDecode): Accept 0xbebe as a thumb
175 breakpoint.
176
2df3850c
JM
1771999-10-08 Ulrich Drepper <drepper@cygnus.com>
178
179 * armos.c (SWIopen): Always pass third parameter with 0666 since
180 otherwise uninitialized memory gets access if the O_CREAT bit is
181 set and so we possibly cannot access the file afterwards.
182
2acceee2
JM
1831999-09-29 Doug Evans <devans@casey.cygnus.com>
184
185 * armos.c (SWIWrite0): Send output to stdout instead of stderr.
186 (ARMul_OSHandleSWI, case SWI_WriteC,AngelSWI_Reason_WriteC): Ditto.
187
d4f3574e
SS
188Thu Sep 2 18:15:53 1999 Andrew Cagney <cagney@b1.cygnus.com>
189
190 * configure: Regenerated to track ../common/aclocal.m4 changes.
191
43e526b9 192
cd0fc7c3
SS
1931999-05-08 Felix Lee <flee@cygnus.com>
194
195 * configure: Regenerated to track ../common/aclocal.m4 changes.
196
7a292a7a
SS
1971999-04-06 Keith Seitz <keiths@cygnus.com>
198
199 * wrapper.c (stop_simulator): New global.
200 (sim_stop): Set sim state to STOP and set
201 stop_simulator.
202 (sim_resume): Reset stop_simulator.
203 (sim_stop_reason): If stop_simulator is set, tell gdb
204 that the we took SIGINT.
205 * armemu.c (ARMul_Emulate26): Don't loop forever. Stop if
206 stop_simulator is set.
207
2081999-04-02 Keith Seitz <keiths@cygnus.com>
209
210 * armemu.c (ARMul_Emulate26): If NEED_UI_LOOP_HOOK, call ui_loop_hook
211 whenever the counter expires.
212 * Makefile.in (SIM_EXTRA_CFLAGS): Include define NEED_UI_LOOP_HOOK.
213
2141999-03-24 Nick Clifton <nickc@cygnus.com>
215
216 * armemu.c (ARMul_Emulate26): Handle new breakpoint value.
217 * thumbemu.c (ARMul_ThumbDecode): Handle new breakpoint value.
218
c906108c
SS
219Mon Sep 14 09:00:05 1998 Nick Clifton <nickc@cygnus.com>
220
221 * wrapper.c (sim_open): Set endianness according to BFD or command
222 line switch.
223
224 * tconfig.in: Define SIM_HAVE_BIENDIAN.
225
226Thu Aug 27 11:00:05 1998 Nick Clifton <nickc@cygnus.com>
227
228 * armemu.c (Multiply64): Test for Rm (rather than Rs) not being
229 the same as either RdHi or RdLo.
230
231Thu Jul 2 10:24:35 1998 Nick Clifton <nickc@cygnus.com>
232
233 * armos.c (ARMul_OSHandleSWI: AngelSWI_Reason_ReportException):
234 Set Reg[0] based on reason for for the exception.
235
236Thu Jun 4 15:22:03 1998 Jason Molenda (crash@bugshack.cygnus.com)
237
238 * armos.c (SWIwrite0): New function.
239 (WriteCommandLineTo): New function.
240 (SWIopen): New function.
241 (SWIread): New function.
242 (SWIwrite): New function.
243 (SWIflen): New function.
244 (ARMul_OSHandleSWI): Call new functions instead of handling
245 these here.
246 (ARMul_OSHandleSWI): Handle Angel SWIs correctly.
247 (*): Reformat spacing to be a bit more GNUly.
248 Most code taken from a patch by Anthony Thompson
249 (athompso@cambridge.arm.com)
250
251Tue Jun 2 15:22:22 1998 Nick Clifton <nickc@cygnus.com>
252
253 * armos.h: Add Angel SWI and its reason codes.
254 * armos.c (ARMul_OSHandleSWI): Ignore Angel SWIs (for now).
255
256Mon Jun 1 17:14:19 1998 Anthony Thompson (athompso@cambridge.arm.com)
257
258 * armos.c (ARMul_OSHandleSWI::SWI_Open): Handle special case
259 of ":tt" to catch stdin in addition to stdout.
260 (ARMul_OSHandleSWI::SWI_Seek): Return 0 or 1 to indicate failure
261 or success of lseek().
262
263Wed May 20 17:36:25 1998 Nick Clifton <nickc@cygnus.com>
264
265 * armos.c (ARMul_OSHandleSWI): Special case code to catch attempts
266 to open stdout.
267
268Wed Apr 29 15:29:55 1998 Jeff Johnston <jjohnstn@cygnus.com>
269
270 * armos.c (ARMul_OSHandleSWI): Added code for SWI_Clock,
271 SWI_Flen, and SWI_Time. Also fixed SWI_Seek code to only
272 seek from offset 0 and not to use R2 for whence since it is
273 not passed as part of the SWI call.
274
275Tue Apr 28 18:33:31 1998 Geoffrey Noer <noer@cygnus.com>
276
277 * configure: Regenerated to track ../common/aclocal.m4 changes.
278
279Sun Apr 26 15:31:55 1998 Tom Tromey <tromey@creche>
280
281 * configure: Regenerated to track ../common/aclocal.m4 changes.
282 * config.in: Ditto.
283
284Sun Apr 26 15:20:26 1998 Tom Tromey <tromey@cygnus.com>
285
286 * acconfig.h: New file.
287 * configure.in: Reverted change of Apr 24; use sinclude again.
288
289Fri Apr 24 14:16:40 1998 Tom Tromey <tromey@creche>
290
291 * configure: Regenerated to track ../common/aclocal.m4 changes.
292 * config.in: Ditto.
293
294Fri Apr 24 11:20:19 1998 Tom Tromey <tromey@cygnus.com>
295
296 * configure.in: Don't call sinclude.
297
298Sat Apr 4 20:36:25 1998 Andrew Cagney <cagney@b1.cygnus.com>
299
300 * configure: Regenerated to track ../common/aclocal.m4 changes.
301
302Fri Mar 27 16:15:52 1998 Andrew Cagney <cagney@b1.cygnus.com>
303
304 * configure: Regenerated to track ../common/aclocal.m4 changes.
305
306Wed Mar 25 12:35:29 1998 Andrew Cagney <cagney@b1.cygnus.com>
307
308 * configure: Regenerated to track ../common/aclocal.m4 changes.
309
310Wed Mar 18 12:38:12 1998 Andrew Cagney <cagney@b1.cygnus.com>
311
312 * configure: Regenerated to track ../common/aclocal.m4 changes.
313
314Tue Mar 10 09:26:38 1998 Nick Clifton <nickc@cygnus.com>
315
316 * armopts.h: Remove definition of LITTLEND - it is not used.
317
318Tue Feb 17 12:35:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
319
320 * wrapper.c (sim_store_register, sim_fetch_register): Pass in
321 length parameter. Return -1.
322
323Sun Feb 1 16:47:51 1998 Andrew Cagney <cagney@b1.cygnus.com>
324
325 * configure: Regenerated to track ../common/aclocal.m4 changes.
326
327Sat Jan 31 18:15:41 1998 Andrew Cagney <cagney@b1.cygnus.com>
328
329 * configure: Regenerated to track ../common/aclocal.m4 changes.
330
331Mon Jan 19 22:26:29 1998 Doug Evans <devans@seba>
332
333 * configure: Regenerated to track ../common/aclocal.m4 changes.
334
335Mon Dec 15 23:17:11 1997 Andrew Cagney <cagney@b1.cygnus.com>
336
337 * configure: Regenerated to track ../common/aclocal.m4 changes.
338 * config.in: Ditto.
339
340Tue Dec 9 11:30:48 1997 Nick Clifton <nickc@cygnus.com>
341
342 * Makefile.in: Updated with changes from branch.
343 * armdefs.h: ditto
344 * armemu.c: ditto these changes
345 * armemu.h: ditto add support for
346 * armos.c: ditto the Thumb instruction
347 * armsupp.c: ditto set and the new v4
348 * armvirt.c: ditto architecture.
349 * wrapper.c: ditto
350 * thumbemu.c: New file from branch.
351
352
353Thu Dec 4 09:21:05 1997 Doug Evans <devans@canuck.cygnus.com>
354
355 * configure: Regenerated to track ../common/aclocal.m4 changes.
356
357Thu Oct 30 13:54:06 1997 Nick Clifton <nickc@cygnus.com>
358
359 * armos.c (ARMul_OSHandleSWI): Add support for GetEnv SWI. Patch
360 from Tony Thompson at ARM: athompso@arm.com
361
362 * wrapper.c (sim_create_inferior): Add code to create an execution
363 environment. Patch from Tony Thompson at ARM: athompso@arm.com
364
365Wed Oct 22 14:43:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
366
367 * wrapper.c (sim_load): Pass lma_p and sim_write args to
368 sim_load_file.
369
370Fri Oct 3 09:28:00 1997 Andrew Cagney <cagney@b1.cygnus.com>
371
372 * configure: Regenerated to track ../common/aclocal.m4 changes.
373
374Wed Sep 24 17:38:57 1997 Andrew Cagney <cagney@b1.cygnus.com>
375
376 * configure: Regenerated to track ../common/aclocal.m4 changes.
377
378Tue Sep 23 11:04:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
379
380 * configure: Regenerated to track ../common/aclocal.m4 changes.
381
382Mon Sep 22 11:46:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
383
384 * configure: Regenerated to track ../common/aclocal.m4 changes.
385
386Fri Sep 19 17:45:25 1997 Andrew Cagney <cagney@b1.cygnus.com>
387
388 * configure: Regenerated to track ../common/aclocal.m4 changes.
389
390Mon Sep 15 17:36:15 1997 Andrew Cagney <cagney@b1.cygnus.com>
391
392 * configure: Regenerated to track ../common/aclocal.m4 changes.
393
394Thu Sep 4 17:21:23 1997 Doug Evans <dje@seba>
395
396 * configure: Regenerated to track ../common/aclocal.m4 changes.
397
398Wed Aug 27 18:13:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
399
400 * configure: Regenerated to track ../common/aclocal.m4 changes.
401 * config.in: Ditto.
402
403Tue Aug 26 10:37:27 1997 Andrew Cagney <cagney@b1.cygnus.com>
404
405 * wrapper.c (sim_kill): Delete.
406 (sim_create_inferior): Add ABFD argument.
407 (sim_load): Move setting of PC from here.
408 (sim_create_inferior): To here.
409
410Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
411
412 * configure: Regenerated to track ../common/aclocal.m4 changes.
413 * config.in: Ditto.
414
415Mon Aug 25 15:35:45 1997 Andrew Cagney <cagney@b1.cygnus.com>
416
417 * wrapper.c (sim_open): Add ABFD argument.
418
419Tue May 20 10:13:26 1997 Andrew Cagney <cagney@b1.cygnus.com>
420
421 * wrapper.c (sim_open): Add callback argument.
422 (sim_set_callbacks): Drop SIM_DESC argument.
423
424Thu Apr 24 00:39:51 1997 Doug Evans <dje@canuck.cygnus.com>
425
426 * configure: Regenerated to track ../common/aclocal.m4 changes.
427
428Fri Apr 18 13:32:23 1997 Andrew Cagney <cagney@b1.cygnus.com>
429
430 * wrapper.c (sim_stop): Stub sim_stop function.
431
432Thu Apr 17 18:33:01 1997 Fred Fish <fnf@cygnus.com>
433
434 * arminit.c (ARMul_NewState): Preinitialize the state to
435 all zero/NULL.
436
437Thu Apr 17 02:39:02 1997 Doug Evans <dje@canuck.cygnus.com>
438
439 * Makefile.in (SIM_OBJS): Add sim-load.o.
440 * wrapper.c (sim_kind,myname): New static locals.
441 (sim_open): Set sim_kind, myname.
442 (sim_load): Call sim_load_file to do work. Set start address from bfd.
443 (sim_create_inferior): Return SIM_RC. Delete start_address arg.
444
445Thu Apr 17 11:48:25 1997 Andrew Cagney <cagney@b1.cygnus.com>
446
447 * wrapper.c (sim_trace): Update so that it matches prototype.
448
449Mon Apr 7 15:45:02 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
450
451 * configure: Regenerated to track ../common/aclocal.m4 changes.
452 * config.in: Ditto.
453
454Mon Apr 7 12:01:17 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
455
456 * Makefile.in (armemu32.o): Replace $< with autoconf recommended
457 $(srcdir)/....
458 (armemu26.o): Ditto.
459
460Wed Apr 2 15:06:28 1997 Doug Evans <dje@canuck.cygnus.com>
461
462 * wrapper.c (sim_open): New arg `kind'.
463
464 * configure: Regenerated to track ../common/aclocal.m4 changes.
465
466Wed Apr 2 14:50:44 1997 Ian Lance Taylor <ian@cygnus.com>
467
468 * COPYING: Update FSF address.
469
470Wed Apr 2 14:34:19 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
471
472 * configure: Regenerated to track ../common/aclocal.m4 changes.
473
474Wed Mar 19 01:14:00 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
475
476 * configure: Regenerated to track ../common/aclocal.m4 changes.
477
478Mon Mar 17 15:10:07 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
479
480 * configure: Re-generate.
481
482Fri Mar 14 10:34:11 1997 Michael Meissner <meissner@cygnus.com>
483
484 * configure: Regenerate to track ../common/aclocal.m4 changes.
485
486Thu Mar 13 12:38:56 1997 Doug Evans <dje@canuck.cygnus.com>
487
488 * wrapper.c (sim_open): Has result now.
489 (sim_*): New SIM_DESC argument.
490
491Tue Feb 4 13:22:21 1997 Doug Evans <dje@canuck.cygnus.com>
492
493 * Makefile.in (@COMMON_MAKEFILE_FRAG@): Use
494 COMMON_{PRE,POST}_CONFIG_FRAG instead.
495 * configure.in: sinclude ../common/aclocal.m4.
496 * configure: Regenerated.
497
498Thu Jan 23 11:46:23 1997 Stu Grossman (grossman@critters.cygnus.com)
499
500 * configure configure.in Makefile.in: Update to new configure
501 scheme which is more compatible with WinGDB builds.
502 * configure.in: Improve comment on how to run autoconf.
503 * configure: Re-run autoconf to get new ../common/aclocal.m4.
504 * Makefile.in: Use autoconf substitution to install common
505 makefile fragment.
506
507Wed Nov 20 01:05:10 1996 Doug Evans <dje@canuck.cygnus.com>
508
509 * run.c: Deleted, use one in ../common now.
510 * Makefile.in: Delete everything that's been moved to
511 ../common/Make-common.in.
512 (SIM_OBJS): Define.
513 * configure.in: Simplify using macros in ../common/aclocal.m4.
514 * configure: Regenerated.
515 * config.in: New file.
516 * armos.c: #include config.h.
517 * wrapper.c (mem_size): Value is in bytes now.
518 (sim_callback): New global.
519 (arm_sim_set_profile{,_size}): Delete.
520 (arm_sim_set_mem_size): Rename to sim_size.
521 (sim_do_command): Call printf_filtered via callback.
522 (sim_set_callbacks): Record callback.
523
524Thu Oct 3 16:10:27 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
525
526 * Makefile.in (mostlyclean): Remove config.log.
527
528Wed Jun 26 12:17:24 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
529
530 * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
531 INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
532 (docdir): Removed.
533 * configure.in (AC_PREREQ): autoconf 2.5 or higher.
534 (AC_PROG_INSTALL): Added.
535 * configure: Rebuilt.
536
537Wed Feb 21 12:14:31 1996 Ian Lance Taylor <ian@cygnus.com>
538
539 * configure: Regenerate with autoconf 2.7.
540
541Fri Dec 15 16:27:30 1995 Ian Lance Taylor <ian@cygnus.com>
542
543 * run.c (main): Use new bfd_big_endian macro.
544
545Mon Nov 20 17:40:38 1995 Doug Evans <dje@canuck.cygnus.com>
546
547 * run.c: Include "getopt.h".
548 (verbose): Delete.
549 (usage): Make static.
550 (main): Call arm_sim_set_verbosity.
551 Only load sections marked SEC_LOAD.
552 * wrapper.c (mem_size, verbosity): New static global.
553 (arm_sim_set_mem_size): Renamed from sim_size. Callers updated.
554 (arm_sim_set_profile{,_size}): Renamed from sim_foo. Callers updated.
555
556Fri Nov 17 19:35:11 1995 Doug Evans <dje@canuck.cygnus.com>
557
558 * armdefs.h (ARMul_State): New member `verbose'.
559 * armrdi.c (ARMul_ConsolePrint): Add missing va_end.
560 * run.c (verbose): Make global.
561 * wrapper.c (init): Set state->verbose.
562 (ARMul_ConsolePrint): Don't print anything if !verbose.
563
564Fri Oct 13 15:30:30 1995 Doug Evans <dje@canuck.cygnus.com>
565
566 * armos.c: #include dbg_rdi.h.
567 (ARMul_OSHandleSWI): Handle SWI_Breakpoint.
568 * armos.h (SWI_Breakpoint): Define.
569 * wrapper.c: #include armemu.h, dbg_rdi.h.
570 (rc): Delete.
571 (sim_resume): Use state->EndCondition to record stop state.
572 Call FLUSHPIPE before returning.
573 (sim_stop_reason): Determine reason from state->EndCondition.
574
575Fri Oct 13 15:04:05 1995 steve chamberlain <sac@slash.cygnus.com>
576
577 * wrapper.c (sim_set_callbacks): New.
578
579Thu Sep 28 19:45:56 1995 Doug Evans <dje@deneb.cygnus.com>
580
581 * armos.c (ARMul_OSHandleSWI): Result of read/write calls is
582 number of bytes not read/written (or -1).
583
584Wed Sep 20 13:35:54 1995 Ian Lance Taylor <ian@cygnus.com>
585
586 * Makefile.in (maintainer-clean): New synonym for realclean.
587
588Fri Sep 8 14:27:20 1995 Ian Lance Taylor <ian@cygnus.com>
589
590 * configure.in: Remove AC_PROG_INSTALL.
591 * configure: Rebuild.
592 * Makefile.in (INSTALL): Revert to using install.sh.
593 (INSTALL_PROGRAM, INSTALL_DATA): Set to $(INSTALL).
594 (INSTALL_XFORM, INSTALL_XFORM1): Restore.
595 (mostlyclean): Make the same as clean, not distclean.
596 (clean): Remove config.log.
597 (install): Don't install in $(tooldir).
598
599Thu Sep 7 12:00:17 1995 Doug Evans <dje@canuck.cygnus.com>
600
601 (Try to) Update to new bfd autoconf scheme.
602 * run.c: Don't include sysdep.h.
603 * Makefile.in (INSTALL{,_PROGRAM,_DATA}): Use autoconf computed value.
604 (CC, CFLAGS, AR, RANLIB): Likewise.
605 (HDEFINES, TDEFINES): Define.
606 (CC_FOR_BUILD): Delete.
607 (host_makefile_frag): Delete.
608 (Makefile): Don't depend on frags.
609 * configure.in (sysdep.h): Don't create symlink.
610 (host_makefile_frag, frags): Deleted.
611 (CC, CFLAGS, AR, RANLIB, INSTALL): Compute values.
612 * configure: Regenerated.
613
614Thu Aug 3 10:45:37 1995 Fred Fish <fnf@cygnus.com>
615
616 * Update all FSF addresses except those in COPYING* files.
617
618Wed Jul 5 16:15:54 1995 J.T. Conklin <jtc@rtl.cygnus.com>
619
620 * Makefile.in (clean): Remove run, libsim.a.
621
622 * Makefile.in, configure.in: converted to autoconf.
623 * configure: New file, generated with autconf 2.4.
624
625 * arm.mt: Removed.
626
627Fri Jun 30 16:49:47 1995 Stan Shebs <shebs@andros.cygnus.com>
628
629 * wrapper.c (sim_do_command): New function.
630
631Tue Jun 13 10:57:32 1995 Steve Chamberlain <sac@slash.cygnus.com>
632
633 * armos.c (ARMul_OSHandleSWI): New version to work with
634 newlib simply.
635
636Thu Jun 8 14:37:14 1995 Steve Chamberlain <sac@slash.cygnus.com>
637
638 * run.c (main): Grab return value from right register.
639
640Wed May 24 14:37:31 1995 Steve Chamberlain <sac@slash.cygnus.com>
641
642 * New.
643
644
This page took 0.088036 seconds and 4 git commands to generate.