3 * wrapper.c (mem_size): Increase the default target memory to 8MB.
7 * armos.c (SWIWrite0): Use generic host_callback mechanism
8 for supported OS functions "open", "close", "write", etc.
13 (ARMul_OSHandleSWI): Likewise.
17 * wrapper.c (sim_create_inferior): Modify previous patch so that
18 it is only triggered for COFF format executables.
22 * wrapper.c (sin_create_inferior): If a v5 architecture is
23 detected, assume it might be an XScale binary, since there is no
24 way to distinguish between the two in the COFF file format.
28 * arminit.c (ARMul_Abort): Fix parameters passed to CPRead[13].
29 * armemu.c (ARMul_Emulate32): Fix parameters passed to CPRead[13]
31 Fix formatting. Improve layout.
32 * armemu.h: Fix formatting. Improve layout.
36 * wrapper.c (sim_fetch_register): If fetching more than 4 bytes
37 return zeroes in the other words.
38 General formatting tidy ups.
42 * Makefile.in (armemu32.o): Replace $< with autoconf recommended
48 * armemu.h (CP_ACCESS_ALLOWED): New macro.
50 * armcopro.c (read_cp14_reg): Make static.
51 (write_cp14_reg): Make static.
52 (check_cp13_access): Use CP_ACCESS_ALLOWED macro.
54 * armsupp.c (ARMul_LDC): Check CP_ACCESS_ALLOWED.
55 (ARMul_STC): Check CP_ACCESS_ALLOWED.
56 (ARMul_MCR): Check CP_ACCESS_ALLOWED.
57 (ARMul_MRC): Check CP_ACCESS_ALLOWED.
58 (ARMul_CDP): Check CP_ACCESS_ALLOWED.
60 * armemu.c (MCRR): Check CP_ACCESS_ALLOWED. Test Rd and Rn not
62 (MRRC): Check CP_ACCESS_ALLOWED. Test Rd and Rn not equal to 15.
67 * armemu.c (ARMul_Emulate32): Fix handling of XScale LDRD and STRD
68 instructions with post indexed addressing modes.
72 * armsupp.c (ARMul_FixCPSR): Check Mode not Bank in order to
73 determine rocesor mode.
77 * armcopro.c (write_cp15_reg): Set CHANGEMODE if endianness changes.
78 (read_cp15_reg): Make non-static.
79 (XScale_cp15_LDC): Update for write_cp15_reg() change.
80 (XScale_cp15_MCR): Likewise.
81 (XScale_cp15_write_reg): Likewise.
82 (XScale_check_memacc): New function. Check for breakpoints being
83 activated by memory accesses. Does not support the Branch Target
85 (XScale_set_fsr_far): New function. Set FSR and FAR for XScale.
86 (XScale_debug_moe): New function. Set the debug Method Of Entry,
88 (write_cp14_reg): Reset count counter if requested.
89 * armdefs.h (struct ARMul_State): New members `LastTime' and
90 `CP14R0_CCD' used for the timer/counters.
91 (ARMul_CP13_R0_FIQ, ARMul_CP13_R0_IRQ, ARMul_CP13_R8_PMUS,
92 ARMul_CP14_R0_ENABLE, ARMul_CP14_R0_CLKRST, ARMul_CP14_R0_CCD,
93 ARMul_CP14_R0_INTEN0, ARMul_CP14_R0_INTEN1, ARMul_CP14_R0_INTEN2,
94 ARMul_CP14_R0_FLAG0, ARMul_CP14_R0_FLAG1, ARMul_CP14_R0_FLAG2,
95 ARMul_CP14_R10_MOE_IB, ARMul_CP14_R10_MOE_DB, ARMul_CP14_R10_MOE_BT,
96 ARMul_CP15_R1_ENDIAN, ARMul_CP15_R1_ALIGN, ARMul_CP15_R5_X,
97 ARMul_CP15_R5_ST_ALIGN, ARMul_CP15_R5_IMPRE, ARMul_CP15_R5_MMU_EXCPT,
98 ARMul_CP15_DBCON_M, ARMul_CP15_DBCON_E1, ARMul_CP15_DBCON_E0): New
99 defines for XScale registers.
100 (XScale_check_memacc, XScale_set_fsr_far, XScale_debug_moe): Prototype.
101 (ARMul_Emulate32, ARMul_Emulate26): Clean up function definition.
102 (ARMul_Emulate32): Handle the clock counter and hardware instruction
103 breakpoints. Call XScale_set_fsr_far() for software breakpoints and
105 (LoadMult): Call XScale_set_fsr_far() for data aborts.
106 (LoadSMult): Likewise.
107 (StoreMult): Likewise.
108 (StoreSMult): Likewise.
109 * armemu.h (write_cp15_reg): Update prototype.
110 * arminit.c (ARMul_NewState): Initialise CP14R0_CCD and LastTime.
111 (ARMul_Abort): If XScale, check for FIQ and IRQ being enabled in CP13
113 * armvirt.c (GetWord): Call XScale_check_memacc().
118 * armvirt.c (ARMul_ReLoadInstr): Do not enable alignment checking
119 when loading unaligned thumb instructions.
123 * thumbemu.c (ARMul_ThumbDecode): Delete label bo_blx2.
124 Compute destination address of BLX(1) instruction by
125 taking bit 1 from PC and not from bit 0 of the offset.
129 * armvirt.c (GetWord): Add new parameter - check - to enable or
130 disable the alignment checking.
131 (PutWord): Add new parameter - check - to enable or disable the
133 (ARMul_ReLoadInstr): Pass extra parameter to GetWord.
134 (ARMul_ReadWord): Pass extra parameter to GetWord.
135 (ARMul_WriteWord): Pass extra parameter to PutWord.
136 (ARMul_StoreHalfWord): Pass extra parameter to PutWord.
137 (ARMul_WriteByte): Pass extra parameter to GetWord.
138 (ARMul_SwapWord): Pass extra parameter to PutWord.
139 (ARMul_SafeReadByte): New Function: Read a byte but do not abort.
140 (ARMul_SafeWriteByte): New Function: Write a byte but do not abort.
142 * armdefs.h: Add prototypes for ARMul_SafeReadByte and
145 * wrapper.c (sim_write): Use ARMul_SafeWriteByte.
146 (sim_read): Use ARMul_SafeReadByte.
148 * armos.c (in_SWI_handler): Remove.
149 (SWIWrite0): Use ARMul_SafeReadByte.
150 (WriteCommandLineTo): Use ARMul_SafeWriteByte.
151 (SWIopen): Use ARMul_SafeReadByte.
152 (SWIread): Use ARMul_SafeWriteByte.
153 (SWIwrite): Use ARMul_SafeReadByte.
154 (ARMul_OSHandleSWI): Remove use of is_SWI_handler.
155 (ARMul_OSException): Remove use of is_SWI_handler.
159 * armemu.c: Remove Prefetch abort for breakpoints. Instead set
164 * armemu.c: Add code to preserve processor mode when a prefetch
165 abort is signalled after processing a breakpoint.
167 * wrapper.c (sim_create_inferior): Reset processor into ARM mode
168 for any machine type except the early ARMs.
172 * armos.c (in_SWI_handler): New static variable.
173 (ARMul_OSHandleSWI): Set in_SWI_handler whilst emulating a SWI.
174 (ARMul_OSException): Ignore exceptions generated whilst emulating
179 * armemu.h (NEGBRANCH): Fix defintion.
183 * armemu.c (LoadSMult): Update base address register after
184 restoring register bank.
185 (StoreMult): Update base address register after restoring register
190 * armvirt.c (PutWord): Detect installation of SWI vector.
191 (SWI_vector_installed): Define.
192 * armos.c (ARMul_OsInit): Reset SWI_vector_installed.
193 * armos.h (SWI_vector_installed): Declare.
194 * wrapper.c (SWI_vector_installed): Remove definition.
195 (sim_write): Remove check of SWI vector installation
199 * armemu.c (ARMul_Emulate26): Fix test for StoreDouble
204 * armos.c (ARMul_OSHandleSWI): Add 0x91 as an FPE SWI.
208 * armemu.c (ARMul_Emulate26): Detect double word load and
209 store instructions and call emulation routines.
210 (Handle_Load_Double): Emulate a double word load instruction.
211 (Handle_Store_Double): Emulate a double word store
216 * armos.c: Fix formatting.
217 (ARMul_OSHandleSWI): Suppress support of DEMON SWIs when in xscale
222 * armdefs.h (State): Add 'v5e' and 'xscale' fields.
223 (ARM_v5e_Prop): Define.
224 (ARM_XScale_Prop): Define.
226 * wrapper.c (sim_create_inferior): Select processor based on
228 (SWI_vector_installed): New boolean. Set to true if the SWI
229 vector address is written to by the executable.
231 * arminit.c (ARMul_NewState): Switch default to 32 bit mode.
232 (ARMul_SelectProcessor): Initialise v5e and xscale signals.
233 (ARMul_Abort): Fix calculation of LR address.
235 * armos.c (ARMul_OSHandleSWI): If a SWI vector has been installed
236 and a SWI is not handled by the simulator, pass the SWI off to the
237 vector, otherwise issue a warning message and continue.
239 * armsupp.c (ARMul_CPSRAltered): Set S bit aswell.
241 * thumbemu.c: Add v5 instruction simulation.
242 * armemu.c: Add v5, XScale and El Segundo instruction simulation.
244 * armcopro.c: Add XScale co-processor emulation.
245 * armemu.h: Add exported XScale co-processor functions.
249 * armdefs.h: Rename StrongARM property to v4_ARM and add v5 ARM
250 property. Delete unnecessary processor names.
251 (ARM_Strong_Prop): Delete.
255 (State): Delete is_StrongARM boolean. Add is_v4 and is_v5
258 * armemu.h (BUSUSEDINCPCS): Use is_v4 boolean.
259 (BUSUSEDINCPCN): Use is_v4 boolean.
261 * arminit.c (ARMul_NewState): Initialise is_v4 and is_v5 fields.
262 (ARMul_SelectProcessor): Change second parameter from 'processor'
263 to 'properties'. Set is_v4 and is_v5 booleans in State.
265 * armrdi.c: Remove use of ARM processor names. Replace with ARM
266 processor properties.
268 * wrapper.c (sim_create_inferior): Choose properties passed to
269 ARMul_SelectProcessor based on machine number.
273 * armemu.c (LHPOSTDOWN): Compute write back value before
274 performing load in case the offset register is overwritten.
279 * wrapper.c (sim_create_inferior): Fix typo in the previous patch.
283 * wrapper.c (sim_create_inferior): Reset mode to ARM when creating a
288 * armvirt.c (ABORTS): Do not define.
290 * armdefs.h (struct ARMul_State): Add is_StrongARM.
291 (ARM_Strong_Prop, STRONGARM): Define.
292 * arminit.c (ARMul_NewState): Reset is_StrongARM.
293 (ARMul_SelectProcessor): Set is_StrongARM.
294 * wrapper.c (sim_create_inferior): Use bfd machine type to
295 determine processor type to emulate.
296 * armemu.h (BUSUSEDINCPCS, BUSUSEDINCPCN): Don't increment PC
297 when emulating StrongARM.
299 * armemu.c (ARMul_Emulate, t_undefined): Proceed to next insn.
301 * armemu.h (INSN_SIZE): New macro.
302 (SET_ABORT): Save CPSR in SPSR and set LR.
303 * armemu.c (ARMul_Emulate, isize): Set to INSN_SIZE.
304 (WriteR15, WriteSR15): Do not discard bit 1 in Thumb mode.
305 * arminit.c (ARMul_Abort): Use new SETABORT and INSN_SIZE.
307 * armemu.c (LoadSMult): Use WriteR15() to discard the least
308 significant bits of PC.
310 * armemu.h (WRITEDESTB): New macro.
311 * armemu.c (ARMul_Emulate26, bl): Use WriteR15Branch() to
312 modify PC. Moved the existing logic...
313 (WriteR15Branch): ... here. New function.
314 (WriteR15, WriteSR15): Drop the two least significant bits.
315 (LoadSMult): Use WriteR15Branch() to modify PC.
316 (LoadMult): Use WRITEDESTB() instead of WRITEDEST().
318 * armemu.h (GETSPSR): Call ARMul_GetSPSR().
319 * armsupp.c (ARMul_CPSRAltered): Zero out bits as they're
320 extracted from state->Cpsr, but preserve the unused bits.
321 (ARMul_GetCPSR): Get bits preserved in state->Cpsr.
322 (ARMul_GetSPSR, ARMul_FixCPSR): Use ARMul_GetCPSR() to
323 get the full CPSR word.
325 * armemu.h (PSR_FBITS, PSR_SBITS, PSR_XBITS, PSR_CBITS): New.
326 (SETPSR_F, SETPSR_S, SETPSR_X, SETPSR_C): New macros.
327 (SETPSR, SET_INTMODE, SETCC): Removed.
328 * armsupp.c (ARMul_FixCPSR, ARMul_FixSPSR): Do not test bit
329 mask. Use SETPSR_* to modify PSR.
330 (ARMul_SetCPSR): Load all bits from value.
331 * armemu.c (ARMul_Emulate, msr): Do not test bit mask.
333 * armemu.c (ARMul_Emulate): Compute writeback value before
334 loading, since the offset register may be the destination
337 * armdefs.h (SYSTEMBANK): Define as USERBANK.
338 * armsupp.c (ARMul_SwitchMode): Remove SYSTEMBANK cases.
342 * armemu.c (Multiply64): Fix computation of flag N.
344 * armemu.c (MultiplyAdd64): Fix computation of flag N.
348 * armemu.h (NEGBRANCH): Do not overwrite the two most significant
353 * armcopro.c (MMUMCR): Only indicate mode change if a singal has
355 (MMUWrite): Only indicate mode change if a singal has really
358 * armdefs.h (SYSTEMMODE): Define.
359 (BANK_CAN_ACEESS_SPSR): Define.
361 * armemu.c (ARM_Emulate26): If the mode has changed allow the PC
362 to advance before stopping the emulation.
364 * arminit.c (ARMul_Reset): Ensure Mode field of State is set
367 * armos.c (ARMul_OSInit): Create a initial stack pointer for
370 * armsupp.c (ModeToBank): Remove unused first parameter.
371 Add support for System Mode.
372 (ARMul_GetSPSR): Use BANK_CAN_ACCESS_SPSR macro.
373 (ARMul_SetSPSR): Use BANK_CAN_ACCESS_SPSR macro.
374 (ARMul_FixSPSR): Use BANK_CAN_ACCESS_SPSR macro.
375 (ARMulSwitchMode): Add support for System Mode.
379 * configure: Regenerated to track ../common/aclocal.m4 changes.
383 * wrapper.c (sim_store_register): Special handling for CPSR
388 * armemu.c (LoadSMult, LoadMult): Correct handling of aborts.
393 * wrapper.c (sim_open,sim_close): Copy into myname, free myname.
397 * wrapper.c: Fix compile time warning messages.
398 * armcopro.c: Fix compile time warning messages.
399 * armdefs.h: Fix compile time warning messages.
400 * armemu.c: Fix compile time warning messages.
401 * armemu.h: Fix compile time warning messages.
402 * armos.c: Fix compile time warning messages.
403 * armsupp.c: Fix compile time warning messages.
404 * armvirt.c: Fix compile time warning messages.
405 * bag.c: Fix compile time warning messages.
409 * *.[ch]: Use indent to make readable.
413 * armos.c (SWIread): Generate an error message if a huge read is
415 (SWIwrite): Generate an error message if a huge write is
420 * thumbemu.c (ARMul_ThumbDecode): Accept 0xbebe as a thumb
425 * armos.c (SWIopen): Always pass third parameter with 0666 since
426 otherwise uninitialized memory gets access if the O_CREAT bit is
427 set and so we possibly cannot access the file afterwards.
431 * armos.c (SWIWrite0): Send output to stdout instead of stderr.
432 (ARMul_OSHandleSWI, case SWI_WriteC,AngelSWI_Reason_WriteC): Ditto.
436 * configure: Regenerated to track ../common/aclocal.m4 changes.
440 * configure: Regenerated to track ../common/aclocal.m4 changes.
444 * wrapper.c (stop_simulator): New global.
445 (sim_stop): Set sim state to STOP and set
447 (sim_resume): Reset stop_simulator.
448 (sim_stop_reason): If stop_simulator is set, tell gdb
449 that the we took SIGINT.
450 * armemu.c (ARMul_Emulate26): Don't loop forever. Stop if
451 stop_simulator is set.
455 * armemu.c (ARMul_Emulate26): If NEED_UI_LOOP_HOOK, call ui_loop_hook
456 whenever the counter expires.
457 * Makefile.in (SIM_EXTRA_CFLAGS): Include define NEED_UI_LOOP_HOOK.
461 * armemu.c (ARMul_Emulate26): Handle new breakpoint value.
462 * thumbemu.c (ARMul_ThumbDecode): Handle new breakpoint value.
466 * wrapper.c (sim_open): Set endianness according to BFD or command
469 * tconfig.in: Define SIM_HAVE_BIENDIAN.
473 * armemu.c (Multiply64): Test for Rm (rather than Rs) not being
474 the same as either RdHi or RdLo.
478 * armos.c (ARMul_OSHandleSWI: AngelSWI_Reason_ReportException):
479 Set Reg[0] based on reason for for the exception.
483 * armos.c (SWIwrite0): New function.
484 (WriteCommandLineTo): New function.
485 (SWIopen): New function.
486 (SWIread): New function.
487 (SWIwrite): New function.
488 (SWIflen): New function.
489 (ARMul_OSHandleSWI): Call new functions instead of handling
491 (ARMul_OSHandleSWI): Handle Angel SWIs correctly.
492 (*): Reformat spacing to be a bit more GNUly.
493 Most code taken from a patch by Anthony Thompson
498 * armos.h: Add Angel SWI and its reason codes.
499 * armos.c (ARMul_OSHandleSWI): Ignore Angel SWIs (for now).
503 * armos.c (ARMul_OSHandleSWI::SWI_Open): Handle special case
504 of ":tt" to catch stdin in addition to stdout.
505 (ARMul_OSHandleSWI::SWI_Seek): Return 0 or 1 to indicate failure
506 or success of lseek().
510 * armos.c (ARMul_OSHandleSWI): Special case code to catch attempts
515 * armos.c (ARMul_OSHandleSWI): Added code for SWI_Clock,
516 SWI_Flen, and SWI_Time. Also fixed SWI_Seek code to only
517 seek from offset 0 and not to use R2 for whence since it is
518 not passed as part of the SWI call.
522 * configure: Regenerated to track ../common/aclocal.m4 changes.
524 Sun Apr 26 15:31:55 1998 Tom Tromey <tromey@creche>
526 * configure: Regenerated to track ../common/aclocal.m4 changes.
531 * acconfig.h: New file.
532 * configure.in: Reverted change of Apr 24; use sinclude again.
534 Fri Apr 24 14:16:40 1998 Tom Tromey <tromey@creche>
536 * configure: Regenerated to track ../common/aclocal.m4 changes.
541 * configure.in: Don't call sinclude.
545 * configure: Regenerated to track ../common/aclocal.m4 changes.
549 * configure: Regenerated to track ../common/aclocal.m4 changes.
553 * configure: Regenerated to track ../common/aclocal.m4 changes.
557 * configure: Regenerated to track ../common/aclocal.m4 changes.
561 * armopts.h: Remove definition of LITTLEND - it is not used.
565 * wrapper.c (sim_store_register, sim_fetch_register): Pass in
566 length parameter. Return -1.
570 * configure: Regenerated to track ../common/aclocal.m4 changes.
574 * configure: Regenerated to track ../common/aclocal.m4 changes.
576 Mon Jan 19 22:26:29 1998 Doug Evans <devans@seba>
578 * configure: Regenerated to track ../common/aclocal.m4 changes.
582 * configure: Regenerated to track ../common/aclocal.m4 changes.
587 * Makefile.in: Updated with changes from branch.
589 * armemu.c: ditto these changes
590 * armemu.h: ditto add support for
591 * armos.c: ditto the Thumb instruction
592 * armsupp.c: ditto set and the new v4
593 * armvirt.c: ditto architecture.
595 * thumbemu.c: New file from branch.
600 * configure: Regenerated to track ../common/aclocal.m4 changes.
604 * armos.c (ARMul_OSHandleSWI): Add support for GetEnv SWI. Patch
607 * wrapper.c (sim_create_inferior): Add code to create an execution
612 * wrapper.c (sim_load): Pass lma_p and sim_write args to
617 * configure: Regenerated to track ../common/aclocal.m4 changes.
621 * configure: Regenerated to track ../common/aclocal.m4 changes.
625 * configure: Regenerated to track ../common/aclocal.m4 changes.
629 * configure: Regenerated to track ../common/aclocal.m4 changes.
633 * configure: Regenerated to track ../common/aclocal.m4 changes.
637 * configure: Regenerated to track ../common/aclocal.m4 changes.
639 Thu Sep 4 17:21:23 1997 Doug Evans <dje@seba>
641 * configure: Regenerated to track ../common/aclocal.m4 changes.
645 * configure: Regenerated to track ../common/aclocal.m4 changes.
650 * wrapper.c (sim_kill): Delete.
651 (sim_create_inferior): Add ABFD argument.
652 (sim_load): Move setting of PC from here.
653 (sim_create_inferior): To here.
657 * configure: Regenerated to track ../common/aclocal.m4 changes.
662 * wrapper.c (sim_open): Add ABFD argument.
666 * wrapper.c (sim_open): Add callback argument.
667 (sim_set_callbacks): Drop SIM_DESC argument.
671 * configure: Regenerated to track ../common/aclocal.m4 changes.
675 * wrapper.c (sim_stop): Stub sim_stop function.
679 * arminit.c (ARMul_NewState): Preinitialize the state to
684 * Makefile.in (SIM_OBJS): Add sim-load.o.
685 * wrapper.c (sim_kind,myname): New static locals.
686 (sim_open): Set sim_kind, myname.
687 (sim_load): Call sim_load_file to do work. Set start address from bfd.
688 (sim_create_inferior): Return SIM_RC. Delete start_address arg.
692 * wrapper.c (sim_trace): Update so that it matches prototype.
696 * configure: Regenerated to track ../common/aclocal.m4 changes.
701 * Makefile.in (armemu32.o): Replace $< with autoconf recommended
707 * wrapper.c (sim_open): New arg `kind'.
709 * configure: Regenerated to track ../common/aclocal.m4 changes.
713 * COPYING: Update FSF address.
717 * configure: Regenerated to track ../common/aclocal.m4 changes.
721 * configure: Regenerated to track ../common/aclocal.m4 changes.
725 * configure: Re-generate.
729 * configure: Regenerate to track ../common/aclocal.m4 changes.
733 * wrapper.c (sim_open): Has result now.
734 (sim_*): New SIM_DESC argument.
738 * Makefile.in (@COMMON_MAKEFILE_FRAG@): Use
739 COMMON_{PRE,POST}_CONFIG_FRAG instead.
740 * configure.in: sinclude ../common/aclocal.m4.
741 * configure: Regenerated.
745 * configure configure.in Makefile.in: Update to new configure
746 scheme which is more compatible with WinGDB builds.
747 * configure.in: Improve comment on how to run autoconf.
748 * configure: Re-run autoconf to get new ../common/aclocal.m4.
749 * Makefile.in: Use autoconf substitution to install common
754 * run.c: Deleted, use one in ../common now.
755 * Makefile.in: Delete everything that's been moved to
756 ../common/Make-common.in.
758 * configure.in: Simplify using macros in ../common/aclocal.m4.
759 * configure: Regenerated.
760 * config.in: New file.
761 * armos.c: #include config.h.
762 * wrapper.c (mem_size): Value is in bytes now.
763 (sim_callback): New global.
764 (arm_sim_set_profile{,_size}): Delete.
765 (arm_sim_set_mem_size): Rename to sim_size.
766 (sim_do_command): Call printf_filtered via callback.
767 (sim_set_callbacks): Record callback.
771 * Makefile.in (mostlyclean): Remove config.log.
775 * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
776 INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
778 * configure.in (AC_PREREQ): autoconf 2.5 or higher.
779 (AC_PROG_INSTALL): Added.
780 * configure: Rebuilt.
784 * configure: Regenerate with autoconf 2.7.
788 * run.c (main): Use new bfd_big_endian macro.
792 * run.c: Include "getopt.h".
794 (usage): Make static.
795 (main): Call arm_sim_set_verbosity.
796 Only load sections marked SEC_LOAD.
797 * wrapper.c (mem_size, verbosity): New static global.
798 (arm_sim_set_mem_size): Renamed from sim_size. Callers updated.
799 (arm_sim_set_profile{,_size}): Renamed from sim_foo. Callers updated.
803 * armdefs.h (ARMul_State): New member `verbose'.
804 * armrdi.c (ARMul_ConsolePrint): Add missing va_end.
805 * run.c (verbose): Make global.
806 * wrapper.c (init): Set state->verbose.
807 (ARMul_ConsolePrint): Don't print anything if !verbose.
811 * armos.c: #include dbg_rdi.h.
812 (ARMul_OSHandleSWI): Handle SWI_Breakpoint.
813 * armos.h (SWI_Breakpoint): Define.
814 * wrapper.c: #include armemu.h, dbg_rdi.h.
816 (sim_resume): Use state->EndCondition to record stop state.
817 Call FLUSHPIPE before returning.
818 (sim_stop_reason): Determine reason from state->EndCondition.
822 * wrapper.c (sim_set_callbacks): New.
826 * armos.c (ARMul_OSHandleSWI): Result of read/write calls is
827 number of bytes not read/written (or -1).
831 * Makefile.in (maintainer-clean): New synonym for realclean.
835 * configure.in: Remove AC_PROG_INSTALL.
836 * configure: Rebuild.
837 * Makefile.in (INSTALL): Revert to using install.sh.
838 (INSTALL_PROGRAM, INSTALL_DATA): Set to $(INSTALL).
839 (INSTALL_XFORM, INSTALL_XFORM1): Restore.
840 (mostlyclean): Make the same as clean, not distclean.
841 (clean): Remove config.log.
842 (install): Don't install in $(tooldir).
846 (Try to) Update to new bfd autoconf scheme.
847 * run.c: Don't include sysdep.h.
848 * Makefile.in (INSTALL{,_PROGRAM,_DATA}): Use autoconf computed value.
849 (CC, CFLAGS, AR, RANLIB): Likewise.
850 (HDEFINES, TDEFINES): Define.
851 (CC_FOR_BUILD): Delete.
852 (host_makefile_frag): Delete.
853 (Makefile): Don't depend on frags.
854 * configure.in (sysdep.h): Don't create symlink.
855 (host_makefile_frag, frags): Deleted.
856 (CC, CFLAGS, AR, RANLIB, INSTALL): Compute values.
857 * configure: Regenerated.
861 * Update all FSF addresses except those in COPYING* files.
865 * Makefile.in (clean): Remove run, libsim.a.
867 * Makefile.in, configure.in: converted to autoconf.
868 * configure: New file, generated with autconf 2.4.
874 * wrapper.c (sim_do_command): New function.
878 * armos.c (ARMul_OSHandleSWI): New version to work with
883 * run.c (main): Grab return value from right register.