aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/ChangeLog
blob: d3e2ab447f6259a0399650ce8bd6131838b164ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
Sun Nov 12 07:58:09 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* igen.c (model_table_insert_{macro,function}): New functions.
	(insn_table_load_insns): Call them.
	(gen_model_h): Move section emiting model-macros to be first.
	(model_{c,h}_function): New functions cloned from semantic
	functions to print out the prototype and function for
	model-functions.
	(gen_model_{c,h}): Print out model-functions.

	* ppc-instructions (model_{start,halt,print_info}): Add dummy
	model-functions.

	* options.c (print_options): Print out WITH_{,DEFAULT_}MODEL, not
	WITH_PPC_{,DEFAULT_}_MODEL.
	(options_ppc): Delete now unused function.
	(cpu.h): Include cpu.h, not just basics.h.

	* std-config.h (WITH_{,DEFAULT_}MODEL): Define.

	* igen.c (model_macros, last_model_macro): New statics to keep
	track of macros to go in model.h.
	(insn_table_load_insns): Add model-macros to model_macros linked
	list.
	(model_table_fields): Add field for printable name.
	(gen_model_h): If there are model macros defined, print them out.
	Print out DEFAULT_MODEL as the first model if there any models
	specified, otherwise MODEL_NONE.  Print out external decl for
	current_model.  Print out decl for model_set.
	(gen_model_c): Add function model_set.  Switch to use printable
	name for the model, not the internal identifier used.

	* psim.c (current_model): New global variable.

	* ppc-instructions: Add macros for flag defines.  Switch first
	model so 604 is first.

	* main.c (main): Call model_set, not function_unit_model.
	* sim_calls.c (sim_open): Ditto.
	* sim_calls.c, Makefile.in: sim_calls.c now includes cpu.h.

Sat Nov 11 07:27:41 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* mon.h (mon_events): New enumeration for other events we want to
	handle.
	(mon_event): Add declaration for function.

	* mon.c (mon_event): New function.
	(mon_print_info): Print icache misses.

	* psim.c (run_until_stop): Monitor icache misses.

	* configure.in (--enable-sim-inline): Fix typos in handling comma
	separated inline options.
	(--enable-sim-icache): Echo icache size.
	* configure: Regenerate.

	* igen.c (semantics_h_print_function): Emit STATIC_SEMANTICS
	instead of INLINE_SEMANTICS so that the compiler won't keep all of
	the semantic functions as inline RTL, given that the address of
	the function is taken which forces outline calls anyway.
	(lf_print_c_semantic_function_header): Ditto.
	(gen_semantics_h): Define STATIC_SEMANTICS as nothing if not
	defined.
	(lf_print_c_cracker_function): Emit STATIC_IDECODE instead of
	STATIC_INLINE_IDECODE.
	(gen_idecode_c): Define STATIC_IDECODE if not defined.
	(gen_model_h): Use #ifdefs to define types to hold model units,
	cycles, and flags.
	(model_table_insert): Add a sentinel functional unit at the end to
	simplify loop processing.
	(model_c_insn): Use <function-unit>_SENTINAL instead of 0 for any
	instruction not specifing a function unit for the current model.
	(gen_model_{c,h}): Provide bounds for model_time_mapping.
	
	* inline.h (STATIC_SEMANTICS): Define to be static if
	SEMANTICS_INLINE is defined.
	(STATIC_IDECODE): Define to be static if IDECODE_INLINE is
	defined.
	
	* options.c (print_options): Fix typo.

Fri Nov 10 06:39:46 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* configure.in (--enable-sim-{opcode,config}): Use $srcdir when
	check for the existence of files.
	* configure: Regenerate.

	* table.c (table): New field nr_model_fields.
	(table_open): New parameter nr_model_fields.
	(table_entry_read): Parse model fields that begin with a '*' after
	each instruction.
	* igen.c, dgen.c: Change callers of table_open.

	* igen.c: Add support for dumping model specific information in
	model.h and model.c.
	(insn_field_name): Delete unused array.
	(global variables): Make global variables static, so we can tell
	when they are no longer used.
	(cache_semantic_actual): Delete unused variable.
	(insn_table_load_insns): If the insn is really a machine model,
	call model_table_insert instead of other processing.
	(model_table_insert): New function to handle defining the
	functional units of a particular machine model.
	(insn_table): Add last_function field so we can add functions at
	the end.
	(insn_table_insert_function): Use last_function field when
	appending new function.

	* ppc-instructions: Add a few model specific information for 603,
	603e, and 604 for testing purposes.
	
	* table.h (table_model_entry): New linked list to hold model
	specific information, one per line.
	(table_entry): Add model_first, model_last fields.

	* configure.in (--enable-sim-inline): If gcc is found and
	--enable-sim-inline is not specified, defaine DEFAULT_INLINE to 1,
	not 2.
	(--enable-sim-reserved-bits): New switch to check whether reserved
	bits are set in the instruction.
	(--enable-sim-opcode): Make complex the default.
	(all switches): Add appropriate checks and error messages.
	* configure: Regenerate.

	* Makefile.in (RESERVED_CFLAGS): New variable set by
	--enable-sim-reserved-bits.
	(CONFIG_CFLAGS): Include RESERVED_CFLAGS.
	(BUILT_SRC): igen now generates model.c and model.h.
	(LIB_OBJ): Include table.o.
	(tmp-igen): Add -m/-M options to write model.c/model.h.
	(model.o): New object.
	(CPU_H): Include model.h.

	* cpu.h: Include model.h.

	* std-config.h (WITH_RESERVED_BITS): Define.
	(MODEL_INLINE): Ditto.

	* options.c (print_options): Print out WITH_RESERVED_BITS.

Thu Nov  9 12:22:15 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* configure.in: If --silent, don't output information messages.
	* configure: Regenerate.

	* configure.in (--enable-sim-alignment): Fix typo in specifing non
	strict alignment.
	(--enable-sim-switch): Make default on.
	(--enable-sim-duplicate): Make default on.
	(--enable-sim-smp): Make default 0.
	(--enable-sim-mon): Don't set sim_float if not set.
	(--enable-sim-inline): If gcc is found and --enable-sim-inline is
	not specified, define DEFAULT_INLINE to be 2.
	(all --enable-sim-* rules): Echo rules set to non empty to file
	descriptor 6.
	* configure: Regenerate.

	* options.c (options_env): Fix typo if WITH_ENV is 0.
	(print_options): Print GCC compiler version if available and
	date/time options was compiled.  If OPCODE_RULES, IGEN_FLAGS,
	and/or DGEN_FLAGS are defined, print them.

	* Makefile.in (all link actions): Pass SIM_CFLAGS as well as
	CFLAGS.
	(options.o): Compile options.o with OPCODE_RULES, IGEN_FLAGS, and
	DGEN_FLAGS defined, so they can be printed out.

	* igen.c (lf_print_c_validate): Check for WITH_ASSERT, so that
	this test can be compiled away if the user really wants a fast
	simulator by not doing assertion failures.

Wed Nov  8 13:19:47 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* options.c: New file to print out all of the WITH_ options.
	* options.h: New include file to declare print_options.
	* debug.h (trace_options): Add trace_opts to call print_options.
	* debug.c (trace_description): Add trace_opts support.
	* main.c (main): If user requested options, print them.
	* sim_calls.c (sim_open): Ditto.
	
	* igen.c (opcode_field_new): Add void to make it a proper prototype.

	* emul_generic.c (emul_enter_call): Make printf_filtered arguments
	type correct.
	* emul_netbsd.c (do_kill): Ditto.
	* registers.c (registers_dump): Ditto.
	* vm.c (om_translate_effective_to_real): Ditto.
	* vm_n.h (vm_data_map_read_N): Ditto.
	(vm_data_map_write_N): Ditto.
	* devices.h (DTRACE_INIT): Ditto.
	(DTRACE_{ATTACH,DETACH}_ADDRESS): Ditto.
	(DTRACE_IO_{READ,WRITE}_BUFFER): Ditto.
	(DTRACE_DMA_{READ,WRITE}_BUFFER): Ditto.
	* devices.c (update_for_binary_section): Ditto.
	(write_stack_arguments): Ditto.
	(stack_ioctl_callback): Ditto.
	* device_tree.c (device_tree_add_passthrough): Ditto.
	(device_tree_{add,find}_device): Ditto.
	(device_tree_{add,find}_integer): Ditto.
	(device_tree_find_{string,boolean}): Ditto.
	(device_tree_init{,_device}): Ditto.
	(device_tree_dump): Ditto.
	* sim_calls.c (sim_{read,write}): Ditto.
	(sim_{fetch,store}_register): Ditto.
	(sim_stop_reason): Ditto.

	* sim_callbacks.h (printf_filtered): Declare with attribute
	printf, so we can enable format checks.

	* devices.c (console_io_{read,write}_buffer_callback): Cast swtich
	argument to int, since ANSI doesn't allow long switch values.
	* emul_netbsd.c (do___sysctl): Ditto.

	* emul_netbsd.c (do___sysctl): Fix up printf call.
	
	* corefile.c (core_translate): Don't do arithmetic with void *
	pointers.  Cast to char * first.
	
	* function_unit.c (FUNC_{LOAD,STORE}): Rename from {LOAD,STORE}
	and change all uses.

	* Makefile.in ({FUNC,MODEL,WARNING}_CFLAGS): New flags set by
	configure --enable switches.
	(CONFIG_CFLAGS): Include FUNC_CFLAGS and MODE_CFLAGS.
	(.c.o): Include WARNING_CFLAGS.
	(CPU_H): Include function_unit.h.
	(LIB_OBJ): Include function_unit.o.
	(BUILT_SRC_WO_CONFIG): Split from BUILT_SRC and do not include
	config.h or ppc-config.h.
	(BUILT_SRC): Include BUILT_SRC_WO_CONFIG, config.h and
	ppc-config.h.
	(filter_filename.o): Include config.h/ppc-config.h dependencies.
	(idecode.o, semantics.o, psim.o): Specify CC line without
	WARNING_CFLAGS so that we don't get all of the unused variable
	warnings that are generated.
	(function_unit.o): Add rule to build.
	(main.o, sim_calls.o): Add function_unit.h, itable.h dependencies.
	(mon.o): Include mon.c dependency.
	(TAGS): Depend on BUILT_SRC.
	(clean): Don't delete config.h or ppc-config.h

	* basics.h (sim_callbacks.h): Move include after the include of
	config.h and ppc-config.h.

	* bits.{h,c} (ROTL32,ROTL64): Move these functions to bits.c.  Add
	support for BITS_INLINE to inline these.  Add declarations to
	bits.h.

	* configure.in (--enable-sim-warnings): Add new option to specify
	compiler warnings for all modules except idecode.o and semantics.o
	which have lots of unused variables because they are machine
	generated.
	(--enable-sim-function-unit): New switch to configure whether
	function unit support is compiled in or not.
	(--enable-sim-{,default-}mode): New switches to control which cpu
	model is used.
	* configure: Regenerate.

	* corefile.c (core_attach_address_callback): Delete unused
	variable device_address.

	* cpu.c (struct _cpu): Add function unit pointer field func_unit.
	(cpu_create): If WITH_FUNCTION_UNIT, call function_unit_create.
	(cpu_init): If WITH_FUNCTION_UNIT, call function_unit_init.
	(cpu_halt): If WITH_FUNCTION_UNIT, call function_unit_halt.
	(cpu_function_unit): New function to return func_unit field.

	* cpu.h (function_unit.h): Include new include file.
	(cpu_function_unit): Declare.

	* debug.c (stdlib.h): Test HAVE_STDLIB_H, not HAVE_STDLIB.
	(config.h): Include config.h.

	* devices.c (icu_io_write_buffer_callback): Delete unused variable
	system.

	* emul_generic.c (emul_exit_call): Print out status value.

	* emul_netbsd.c (do_read): Delete unused variable nr_moved.

	* filter_filename.h (includes): Include config.h, ppc-config.h,
	not basics.h.

	* inline.c: Include bits.c if BITS_INLINE.  Include
	function_unit.c if FUNCTION_UNIT_INLINE.

	* inline.h (INLINE_BITS): Define if BITS_INLINE.
	(INLINE_FUNCTION_UNIT): Define if FUNCTION_UNIT_INLINE.

	* interrupts.c (instruction_storage_interrupt): Delete unused
	variable nia.

	* lf.h (config.h): Include config.h.

	* main.c (includes): Include function_unit.c.  If HAVE_UNISTD_H,
	include unistd.h.
	(usage): Update for -m model, -i, and -I options.
	(main): Delete unused variables stack_pointer and i.  Add support
	for -i, -m model arguments.  Call psim_print_info with verbose ==
	1 if -i, and verbose == 2 if -I.

	* mon.c (stdio.h): Include stdio.h to pick up sprintf prototype.
	(mon_issue): Call function_unit_issue if function units are
	supported.
	(mon_print_info): Take psim * argument.  Print out information
	from function_unit if available.  Move read/write stats to always
	print, instead of printing if verbose > 1.  Fix up plural
	vs. singular usage.

	* mon.h (mon_print_info): Update prototype.

	* psim.c (current_ppc_model): Add global variable.
	(psim_print_info): Pass system argument to mon_print_info.

	* sim_calls.c (function_unit.h): Include.
	(sim_open): Add support for -i and -m model options.  If -i call
	psim_print_info with verbose == 1, if -I, with verbose == 2.
	(sim_resume): Delete unused variable program_counter.

	* std-config.h (WITH_FUNCTION_UNIT): Define.
	(ppc_model): Add enumeration giving all PowerPC models currently
	known about.
	({WITH,CURRENT}_PPC_MODEL): Define.
	(FUNCTION_UNIT_INLINE): Define.

	* table.c (config.h): Include config.h.

	* vm.c (om_virtual_to_real): Print pte_word_{0,1} so the compiler
	doesn't complain that they're unused.

	* vm_n.h (vm_data_map_read_N): Delete unused variable rval.
	
Mon Nov  6 23:15:54 1995  Andrew Cagney  <cagney@highland.com.au>

	* sim-endian.c (ppc-endian.c), sim-endian.h (ppc-endian.h):
        renameed.  These files are target independant.
	* Makefile.in, basics.h: update for new name.

	* sim-endian.h (SWAP_N), sim-endian.c (_SWAP_1): Rename existing
        SWAP_<N> to _SWAP_<N> so that sim-endian.h can contain SWAP_N
        macro's as required.

	* sim-endian.c, sim-endian-n.h (new file): Move endian code into a
        debugable header file.

	* ppc-instructions (Byte-Reverse): Enable byte reverse
        instructions using SWAP_N macros.

Mon Nov  6 10:39:28 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* Makefile.in (config.status): Remove references to config.make
	and config.hdr.

	* config.{make,hdr}: Delete, no longer used.
	* build-psim: Ditto.

Mon Nov  6 20:49:56 1995  Andrew Cagney  <cagney@highland.com.au>

	* sim_calls.c (sim_open): Fix parsing of `target sim' options.

	* device_tree.c (device_tree_add_string): Wasn't saving the value
 	of the string being entered into the tree.

	* psim.c (create_filed_device_tree): Not terminating string device
 	names with a null.
	
	* psim.c (psim_create): Use `env' instead of
 	`environment-architecture' to be consistent with configure.
  	Reconize user/uea, virtual/vea and operating/oea.

Sat Nov  4 12:29:45 1995  Fred Fish  <fnf@cygnus.com>

	* core.c:  Rename to corefile.c
	* core.h:  Rename to corefile.h
	* inline.c: Include corefile.h, renamed from core.h.
	* cpu.h: Include corefile.h, renamed from core.h
	* vm.c: Include corefile.h, renamed from core.h
	* corefile.c: Include corefile.h rather than core.h
	* README.psim (KNOWN PROBLEMS): Change core.* references to corefile.*
	references.
	* Makefile.in (CPU_H): Change core.h to corefile.h
	(vm.o):  Change dependency to corefile.h
	(LIB_SRC): Change core.c to corefile.c.
	(LIB_OBJ): Change core.o to corefile.o.
	(corefile.o):  Change dependencies to corefile.c, corefile.h.

Fri Nov  3 11:37:24 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* ppc-instructions (data cache instructions): Make all data cache
	instructions nops instead of invalid instructions.

	* Makefile.in (CONFIG_CFLAGS): Add ALIGNMENT_CFLAGS and
	TIMEBASE_CFLAGS which weren't included.

Thu Nov  2 08:54:04 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* Makefile.in: Uncomment built file dependencies.
	
	* configure.in: Rewrite --enable-sim switch handling to use the
	autoconf builtins so it works correctly if the configure or
	Makefile.in files are modified and make decides to rebuild
	Makefile.  Also document all of the --enable-sim switches
	supported.  Check whether getrusage and sys/resource.h are
	supported.
	* config.in: Regenerate.
	* configure: Regenerate.
	* Makefile.in: Add support for all of the variables set with
	--enable-sim switches.

	* Makefile.in (clean): make clean now removes all built sources as
	well.
	
	* cpu.c: Use HAVE_STRING_H, HAVE_STRINGS_H, HAVE_UNISTD_H,
	HAVE_TIME_H, HAVE_SYS_TIMES_H, HAVE_SYS_RESOURCE_H defined in
	the generated config.h.
	* debug.c: Ditto.
	* device_tree.c: Ditto.
	* devices.c: Ditto.
	* dgen.c: Ditto.
	* emul_netbsd.c: Ditto.
	* igen.c: Ditto.
	* lf.c: Ditto.
	* misc.c: Ditto.
	* psim.c: Ditto.
	* registers.c: Ditto.
	* sim_calls.c: Ditt.
	* table.c: Ditto.


	* main.c (main): Call psim_print_info with verbose == 2.

	* mon.c (mon_print_info): Align the cpu number and number of
	instructions fields.  Do not print an instruction category if the
	CPU did not execute any of those instructions.  Print out number
	of reads and writes.  If getrusage is supported, print out number
	of simulated instructins per second.
	
	* configure.in: Add support for --enable-sim-opcode=stupid.
	* configure: Regenerate.

Wed Nov  1 23:46:59 1995  Andrew Cagney - aka Noid  <cagney@highland.com.au>

	* std-config (INLINE_DEVICE_TREE): Don't inline either of
        device_tree.c or devices.c.  There is no significant gain.

	* configure.in, Makefile.in: add --enable-sim-icache=[0-9]* and
 	IGEN_ICACHE macro.
	
Wed Nov  1 23:46:59 1995  Andrew Cagney - aka Noid  <cagney@highland.com.au>

	* igen.c (main), misc.h (target_a2i, i2target), misc.c: Add
        functions to convert between target and igen internal bit numbers.
        Make IO go through these functions. Add -b (bit size) and -h (high
        bit nr) options to igen.  Typical usage would be: ./igen -b 16 -h
        15 for a 16 bit instruction format with the msb given a number 15.

Wed Nov  1 22:17:32 1995  Andrew Cagney - aka Noid  <cagney@highland.com.au>

	* dgen.c (main): Was outputting optarg even when it was NULL.

Tue Oct 31 23:48:33 1995  Andrew Cagney - aka Noid  <cagney@highland.com.au>

	* vm_n.h (vm_data_map_load_N, vm_data_map_store_n), debug.h,
        debug.c: Add tracing of load/store unit (virtual) with -t
        load-store.

Tue Oct 31 21:44:01 1995  Andrew Cagney - aka Noid  <cagney@highland.com.au>

        * std-config.h (WITH_ENVIRONMENT): Add USER_ENVIRONMENT which does
        not include things such as the time base and events.

	* interrupt.c, sim_calls.c, cpu.h, vm.c, configure.in: Add UEA to
 	all environment switches for above.

	* psim.c (psim_create): ditto - new device tree node name is
        /options/environment-architecture with values user, virtual and
        operating.

Tue Oct 31 21:31:32 1995  Andrew Cagney - aka Noid  <cagney@highland.com.au>

	* ppc-opcode-stupid: Third example of use of opcode table - this
        one expands all mtspr/mfspr and branch instructions.  Appears to
        give about a 10% gain in performance if everything enabled.  Also
        takes about 150mb of swap to build.

Wed Nov  1 10:49:48 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* emul_netbsd.c (do_exit): Print arguments and close parenthesis
	if tracing, since exit doesn't go through emul_exit_call.
	(do_read): Print arguments if tracing.
	(do_write): Ditto.
	(do_open): Ditto.
	(do_break): Ditto.
	(do_kill): Ditto.
	(do_dup): Ditto.
	(do_sigprocmask): Replace trace with printing arguments if
	tracing.
	(do_ioctl): Print arguments if tracing.
	(do_umask): Ditto.
	(do_dup2): Ditto.
	(do_fcntl): Ditto.
	(do_gettimeofday): Ditto.
	(do_getrusage): Ditto.
	(do_fstatfs): Ditto.

	* filter_filename.c: New file to provide filter_filename to strip
	the directory prefix from a file.
	* filter_filename.h: New include file to declare filter_filename.

	* debug.h: Include filter_filename.h.
	(TRACE,DTRACE,ERROR): Use filter_filename on __FILE__.

	* misc.h: Include filter_filename.h.
 	(ASSERT): Use filter_filename on __FILE__.

	* igen.c (lf_print_my_prefix): Use filter_filename on the filename
	argument.

	* Makefile.in: Add filter_filename support.

	* ppc-instructions (dcbi, icbi): Make these NOPs rather than
	invalid instructions.

	* configure.in: Add support for more --enable-sim-* switches.
	Use config.make and config.hdr to write to Makefile and config.h
	respectively.  Don't rewrite Makefile, just append to it.
	* configure: Regenerate.
	* config.{make,hdr}: New shell scripts.
	
	* Makefile.in: Remove all variables set by configure.in.
	(psim.o): Depend on $(BUILT_SRC) also.

	* emul_netbsd.c (do_gettimeofday,do_getrusage): When comparing an
	integer, use 0, not NULL.

Tue Oct 31 15:20:04 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* configure.in: Add support for --enable-sim-inline,
	--enable-sim-bswap, --enable-sim-cflags, --enable-sim-complex,
	--enable-sim-switch, --enable-sim-duplicate, --enable-sim-filter,
	and --enable-sim-endian switch to control various Makefile
	variables.
	* configure: Regenerate from configure.in.
	* Makefile.in: Add various Make variables that the various
	switches alter.

	* std-config.h (DEFAULT_INLINE): Don't set this to 2 if using GCC
	and optimizing by default.

Fri Oct 27 19:26:27 1995  Andrew Cagney  <cagney@highland.com.au>

	* bits.h (ROTL32, ROTL64): Were functions, made them macros, now
 	make them functions again.  Appears 2.6.3 is confused by just a
 	macro.

Thu Oct 26 18:31:58 1995  Andrew Cagney  <cagney@highland.com.au>

	* ppc-endian.c (SWAP_8): Fix 8 byte swap!

	* psim.c (psim_create): Not correctly checking that runtime
 	configuration of things like ENDIAN, ENVIRONMENT and ALIGNMENT
 	matched the compiled in ones.

	* debug.h (ITRACE), igen.c: Tidy up more tracing flags -
 	trace_semantics is now different to trace_idecode, the former
 	checks the cache.
	
Tue Oct 24 21:54:13 1995  Andrew Cagney  <cagney@highland.com.au>

	* ppc-instructions (mtsrin): Missing instruction
	* ppc-instructions (mfsrin): Missing instruction
	* ppc-instructions (eieio): Missing instruction

Tue Oct 24 20:55:29 1995  Andrew Cagney  <cagney@highland.com.au>

	* build-psim: New shell script - see internals for usage,
 	simplifies the process of building custom simulators.

Mon Oct 23 23:48:59 1995  Andrew Cagney  <cagney@highland.com.au>

	* std-config.h (SEMANTICS_INLINE): Tidy up notes on each of the
        INLINE macros.  Make SEMANTICS_INLINE == 1 if DEFAULT_INLINE == 2.
        Don't use DEFAULT_INLINE to define REGISTERS_INLINE DEVICES_INLINE
        DEVICE_TREE_INLINE or INTERRUPTS_INLINE as none of these are on
        the instruction or data critical paths.
  	
	* FIXME: need to set up OS_EMUL_INLINE/EMUL_GENERIC_INLINE but
 	not on critical path.

	* FIXME: devices.c/emul_netbsd.c would benefit (slightly) from
 	the inclusion of device_tree.c/emul_generic.c.

Mon Oct 23 00:31:50 1995  Andrew Cagney  <cagney@highland.com.au>

	* os_emul.[hc], emul_generic.[hc], emul_netbsd.[hc]: replace
        system.[hc].  Start of suport for multiple emulations and
        emulation state (os_emul object).

	* emul_generic.[hc]: Start of code to implement proper system call
	tracing (from spy).

Sun Oct 22 21:33:51 1995  Andrew Cagney  <cagney@highland.com.au>

	* cpu.h, cpu.c (cpu_init): New function, zero the registers before
        the processor is started. Fixes problem of registers being
        undefined when restarting from within gdb.

	* cpu.h, cpu.c (cpu_flush_icache): New function, flushes the
        instruction cache (if present).  Fixes problem of cpu caching gdb
        breakpoint instructions.

	FIXME: PSIM sometimes aborts calling error(), it should instead
 	call sim_error() say which takes care of housekeeping such as
 	saving the CIA before calling error.
	
	* NOTE: cpu_flush_cache() instead of cpu_synchronize_context() is
 	used when restarting a simulation because the latter has the
 	unwanted side effect (well I as a kernel hacker think it is) of
 	performing an isync when the instruction stream doesn't contain
 	one.

Sun Oct 22 19:27:48 1995  Andrew Cagney  <cagney@highland.com.au>

	* mon.h (new), mon.c (new), std-config.h (WITH_MON): Performance
        monitoring module. Counts both instructions issued and
        load/stores.

	* NOTE: mon does not contain to count instruction loads as this
 	information is already available from the mon_issue() hook.

	* FIXME: mon doesn't have access to register usage information.
  	This is needed if the user wants to monitor things like register
 	stalls.

	* igen.c (lf_print_c_semantic), vm_n.h: Add counting code.

	* psim.h, psim.c (psim_create), cpu.h, cpu.c (cpu_create): Attach
        a common monitor to each of the cpus. Delete
        cpu_increment_number_of_insns() and cpu_get_number_of_insns()
        replaced by copied code in mon.[hc].

Sun Oct 22 18:42:45 1995  Andrew Cagney  <cagney@highland.com.au>

	* sim_calls.c, main.c, psim.c (psim_create): always create
        `WITH_SMP' cpus.  The actual number of CPU's active in a
        simulation run is taken from the device node: /init/smp (an
        integer). WITH_SMP changed to 2 (remember to put it back to 0).

Fri Oct 20 17:26:54 1995  Andrew Cagney  <cagney@highland.com.au>

	* system.c: More system call emulation.  If code appears NetBSD
 	specific, make conditional to being compiled on a NetBSD system
 	(sigh).

Wed Oct 18 23:02:20 1995  Andrew Cagney  <cagney@highland.com.au>
	
	* Makefile.in, gen.c(delete), igen.c(new), dgen.c(new),
 	lf.[ch](new), table.[ch](new): Split into two generators - igen
 	that outputs the instruction tables and dgen that outputs the spr
 	tables.  Add -f (filter out) flag to igen to filter out certain
 	instructions (ex 64 bit ones) from the created tables.  Include
 	$(LIBIBERTY_LIB) in link options in case host lacks some libc
 	functions.

	* NOTE: igen, since it was originally written for the
 	PowerPC/RS6000, things the MSB is 0 and the LSB is 63{31}.
	
	* Makefile.in, std-config.h, ppc-cache-rules(new),
 	ppc-opcode-complex(new), ppc-opcode-simple(new): (for igen) Create
 	cache-rule and opcode-rule tables from macros found std-config.h.
 	Delete corresponding macro's from std-config.h.
  	
	* FIXME: under this new igen scheme, when playing around with igen
 	options, you'll find that depenencies don't work very well.

	* igen.c (gen_itable_c, gen_itable_h), Makefile.in: code to output
 	an table of all the instructions.  Code to output a type
 	enumerating all the instructin names.

	* igen.c(lf_print_c_semantic): Move call to increment instruction
 	counter so that it occures _after_ the instruction has been fully
 	validated, was double counting illegal/invalid instructions.  Add
 	conditional so only compiled in when WITH_PROFILE enabled (enabled
 	by default).
	
	* igen.c, cpu.h, cpu.c(cpu_increment_number_of_insns): Include
 	itable.h, count individual instruction types not just total,
 	adjust reporting functions to output this.
	
	* ppc-instructions (64 bit Load Doubleword with Update Indexed):
 	Had 32./ instead of 31./

	* ppc-instructions (64 bit Store Double Word Conditional Indexed):
 	bitrot - updated to use newer CR register operators.

	* ppc-instructions (64bit Floating Convert from Integer
 	Doubleword): Correct call to Round_Float().

Mon Oct 16 00:31:20 1995  Andrew Cagney  <cagney@highland.com.au>

	* basics.h: #include "sim_callbacks.h" earlier so that its
 	prototypes are declared in all other header files.

	* bits.h, bits.c, idecode_expression.h (ROTL32, ROTL64): Update
 	doc in bits.h, remove dead code in bits.c, move ROTL32/ROTL64 into
 	bits.h.

	* FIXME: the bits.h/bits.c macro's should be replaced with
 	(inline) c functions.

	* cpu.c(cpu_add_commas), device_tree.h, device_tree.c(scand_*):
 	Add size of buffer argument to functions writing a string into a
 	buffer.  Check for buffer overflow.
	
Sun Oct 15 22:16:11 1995  Andrew Cagney  <cagney@highland.com.au>

	* devices.h, devices.c, debug.h, debug.c: add macro's for tracing
        of each device.  Make parameter names consistent so macros work.
        Use macro's in device functions.

	* device_tree.c, devices.h, devices.c: include path to device in a
        devices node when creating it.

	* device_tree.c, debug.h, debug.c: Add tracing of `device-tree'.

	* core.c: add tracing of core-device, adjust parameter names in
 	core functions to be consistent with those in devices*.

Sun Oct 15 20:33:20 1995  Andrew Cagney  <cagney@highland.com.au>

        * debug.h, debug.c (trace_option): New function. Parses the trace
        option, updating the trace array.

	* debug.h, debug.c (trace_usage): New function. Outputs the list
        of all possible trace options.

	* sim_calls.c (sim_open), main.c (main): Use new trace_option() to
 	parse trace options specified with the simpler -t flag.  Adjust
 	usage.

	* FIXME: basic parsing of command line options is still duplicated
 	by main.c and sim_calls.c

Thu Oct 26 10:42:28 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* Makefile.in (clean): Delete *.i and *.out files.

	* ppc-endian.c (SWAP_n): Add SET argument to allow use of SWAP
	macros for either assignment or return.  Fix SWAP_8 to use a
	union, and two SWAP_4's.  Delete SWAP_N, since nobody uses it now.
	(ENDIAN_N): Add SET argument to SWAP_n calls.  Delete macro defs
	that hardwired swapping on/off, let optimizer delete dead code.

	* main.c (main): Add printf that we caught a signal and print out
	the failing address.

Thu Oct 19 21:43:39 1995  Fred Fish  <fnf@fishfood.amigalib.com>

	* Makefile.in:  Remove tabs from otherwise empty line.
	Confuses many non-GNU versions of "make".

Wed Oct 18 08:51:25 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* Makefile.in (clean): Delete files produced by gen.

Mon Oct 16 17:34:24 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* gen.c (lf_print_c_semantic_function): Move counting # of
	instructions here so it works with caching.
	(gen_idecode_c): Move from here.

Wed Oct 11 17:13:15 1995  Andrew Cagney  <cagney@highland.com.au>

	* gen.c, ppc-instructions, psim.c: Fix code for generating
	cracking instruction cache.  Delete the code that cached just the
	result from doing an instruction lookup - this ran slower than no
	cache at all.

Fri Oct 13 09:58:43 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* Makefile.in (gen.o): Include $(INLINE_CFLAGS).

	* debug.h (ppc_trace): Rename from trace, to avoid a conflict with
	TCL when gdb is linked with the simulator.
	* debug.c (ppc_trace): Ditto.
	* sim_calls.c (sim_open): Change trace -> ppc_trace.
	* main.c (main): Ditto.

	* cpu.c (cpu_add_commas): Remove extra static.

Thu Oct 12 11:35:53 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* Makefile.in (psim.o): Now that inlines are turned on, make
	psim.o depend on all sources.

	* cpu.c (cpu_add_commas): New function to format a long with
	commas.
	(cpu_print_info): Use it to print number_of_insns.
	
	* ppc-endian.c (SWAP_n): New macros to speed up byte swapping for
	2, 4, and 8 bytes.
	(ENDIAN_N): If both target and host byte orders are known, don't
	bother testing CURRENT_{TARGET,HOST}_BYTE_ORDER.

	* ppc-endian.h (target specific H2T_n/T2H_n macros): Remove #if 0
	to allow target specific H2T_n/T2H_n macros to be used.
	(htonl, ntohl): If compiled on a 486 by GCC and WITH_BSWAP is
	non-zero, redefine the htonl/ntohl macros to use the BSWAP instead
	of the 3 instruction sequence that runs on 386s.

	* std-config.h (WITH_{HOST,TARGET}_BYTE_ORDER): Don't override if
	specified on the compile line.
	(WITH_BSWAP): If not defined, define as 0.

	* Makefile.in (INLINE_CFLAGS): Add -DDEFAULT_INLINE=2 to add
	default inline support.  Pass INLINE_CFLAGS when compiling.

	* devices.{h,c} (unimp_device_ioctl): Use STATIC_DEVICES, not
	INLINE_DEVICES since GCC doesn't like inline functions that
	accept variable arguments.
	(stack_ioctl_callback): Make function just static because GCC
	doesn't like inline functions that accept variable arguments.

	* devices.h (STATIC_DEVICES): Define as empty if not defined.

	* inline.c: Correct pathnames of included C files to match current
	implementation.

	* inline.h (STATIC_DEVICES): If DEVICES_INLINE is defined to be
	non-zero, define STATIC_DEVICES to be static.

	* std-config.h (INLINE): If GNU C and optimizing, define this as
	__inline__.
	(DEFAULT_INLINE): If not defined, define as 0.
	(ENDIAN_INLINE): If not defined, define as DEFAULT_INLINE.
	({CORE,VM,CPU,EVENTS,REGISTERS,INTERRUPTS}_INLINE): Ditto.
	({SPREG,IDECODE}_INLINE): Ditto.	
	
Wed Oct 11 17:13:15 1995  Andrew Cagney  <cagney@highland.com.au>

        * ppc-instructions: Initial cut of floating point suport added.
  	Of note include - use of host IEEE floating point instructions,
 	use of PowerPC manual pseudo code to handle the FPSCR.  It is not
 	currently a pretty sight.
	
	* memory_map.h, memory_map.c, memory_map_n.h, core.h, core.c:
 	merge into core.h, core.c, core_n.h. The type memory_map replaced
 	with core_map.  This removes a level of pointer indirection when
 	translating an address.

	* memory_map.h, memory_map.c, memory_map_n.h: delete.

	* Makefile.in et.al (sorry): tweek to use new core, core_map and
 	core.h.
	
Wed Oct 11 12:10:26 1995  Andrew Cagney  <cagney@highland.com.au>

	* sim_calls.c, main.c: Add -g (trace_gdb) option, add tracing to
 	most of the other functions in sim_calls.c.

	* basics.h (CONCAT3), memory_map.c, memory_map_n.h, Makefile.in:
 	Add macros to better cover up `generic' code.  Makes it possible
 	to step through the generic code!

	* vm.c, vm_n.h, Makefile.in: ditto
	
Tue Oct 10 15:42:59 1995  Andrew Cagney  <cagney@highland.com.au>

	* devices.h, devices.c, memory_map.h, memory_map.c: Changed
 	callback interface so that there is a read/write buffer but no
 	read/write_word.  VEA default memory read/write handler sometimes
 	couldn't resolve an access and of those some were for a memory
 	fault and some were because gdb was making a bogus request.

	* devices.h, devices.c, memory_map.h, memory_map.c, vm.h, vm.c:
 	eliminate transfer_mode (raw or cooked) parameter from read/write
 	buffer.
	
Fri Oct  6 20:23:56 1995  Andrew Cagney  <cagney@highland.com.au>

	* ppc-instructions (fmul, fmuls): correct instruction format - had
 	FRB instead of FRC.

Wed Oct  4 17:31:12 1995  Andrew Cagney  <cagney@highland.com.au>

	* psim.c, device_tree.h, device_tree.c, devices.c (printd_*,
 	scand_*): new functions to parse/print fields in device names
 	while hiding any machine dependency.

	* devices.c, psim.c: Change the stack init code so that it is
 	handled by a device.  Arguments passed across using a device ioctl
 	(hack).

	* devices.h, devices.c: device ioctl callback changed to allow a
 	variable number of arguments.  This gives greater flexability and
 	greater chance of bugs.

Tue Oct  3 22:01:56 1995  Andrew Cagney  <cagney@highland.com.au>

	* main.c (printf_filtered, error): Missing va_end() to close off
        variable argument use.

	* Makefile.in (tmp-gencode): comment out hack to get around some
        versions of make not handling files being created as side-effects.

	* gen.c (lf_open): Add -n (real_file_name) option.  Specifies an
        alternative file name to use in output files for things like #line
        macros.

        Makefile.in (tmp-gencode): Use gen -n so that debug info is
        correct.

	* Makefile.in (TARGETLIB): Use this instead of libsim.a in the
	Makefile.

Sat Oct  7 22:40:59 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* sim_calls.c (sim_set_callbacks): Define new function.

Fri Oct  6 17:23:10 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* psim.c (psim_print_info): Print exit status or signal number.

Mon Oct  2 11:46:37 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* cpu.c (struct _cpu): Add number_of_insns field to trace how many
	instructions are executed.
	(cpu_increment_number_of_insns): New function to increment the
	number of instructions issued.
	(cpu_get_number_of_insns): New function to return the number of
	instructions issued.
	(cpu_print_info): New function to print cpu related information.
	At present, print the number of instructions executed.

	* gen_idecode_c: Emit call to cpu_increment_number_of_insns within
	idecode_issue.

	* psim.c (psim_print_info): New function to iterate over each of
	the CPU's calling cpu_print_info.
	
	* psim.h,cpu.h: Add new declarations.

	* sim_calls.c (sim_open): Add argument processing to add the same
	switches main.c accepts for the standalone processor.
	(sim_close): Call psim_print_info if -I.

	* main.c (main): Add comment saying to update sim_calls.c when
	adding switches.  Add -I to call psim_print_info when done.
	(usage): Update usage message.

Sun Oct  1 13:52:59 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* main.c (printf_filtered): Correct to match new prototype.

Sat Sep 30 20:47:05 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* sim_callbacks.h (printf_filtered): Correct prototype.

Thu Sep 21 16:26:49 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* device_tree.c (OEA_MEMORY_SIZE): Define if not defined to
	0x100000.
	(clayton_memory_size): Define as OEA_MEMORY_SIZE.

	* std-config.h (WITH_TRACE): Default to 1 now.

	* psim.c (write_stack_arguments): Don't write any stack arguments
	if OEA.

	* main.c (main): Switch to using getopt.  Make -p also set
	trace_semantics.  Make -a turn on all trace flags.  Make -C turn
	on console tracing.

	* device_tree.c (create_option_device_node): Assume a program is
	OEA if the start address is < 4096, not just == 0.

Wed Sep 20 13:36:06 1995  Ian Lance Taylor  <ian@cygnus.com>

	* Makefile.in (maintainer-clean): New synonym for realclean.

Sun Sep 10 10:23:56 1995  Michael Tiemann  <tiemann@axon.cygnus.com>

	* registers.c (register_description): Add gdb synonyms for cr
	(cnd) and msr (ps).

Fri Sep  8 13:16:10 1995  Ian Lance Taylor  <ian@cygnus.com>

	* Makefile.in (install): Don't install in $(tooldir).

	* configure.in: Call AC_CONFIG_HEADER.  Don't try to use
	bfd/hosts/*.h file or bfd/config/*.mh file.  Call AC_PROG_CC and
	AC_PROG_RANLIB.  Substitute in values for CFLAGS, HDEFINES, AR,
	and CC_FOR_BUILD.  Call AC_CHECK_HEADERS for various header files.
	Touch stamp.h if creating config.h.
	* configure: Rebuild.
	* config.in: New file, created by autoheader.
	* Makefile.in (AR): Define as @AR@.
	(CC): New variable, defined as @CC@.
	(CFLAGS): Define as @CFLAGS@.
	(CC_FOR_BUILD): New variable, defined as @CC_FOR_BUILD@.
	(RANLIB): Define as @RANLIB@.
	(HDEFINES, TDEFINES): New variables.
	(@host_makefile_frag@): Remove.
	(mostlyclean): Make the same as clean, not distclean.
	(clean): Remove config.log.
	(distclean): Remove config.h and stamp-h.
	(Makefile): Don't depend upon @frags@.  Just rebuild Makefile when
	invoking config.status.
	(config.h, stamp-h): New targets.
	(gen, gen.o): Build with CC_FOR_BUILD, not CC.
	(ppc-config.h): Rename from old config.h build.
	* (basics.h,gen.c,ppc-endian.c,psim.c): Include ppc-config.h.
	
Fri Sep  8 09:51:03 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* configure{,.in}: Don't include sysdep.h from bfd, since bfd no
	longer provides it.
	* basics.h (sysdep.h): Don't include it.
	* Makefile.in (BASICS_H): Remove sysdep.h.

Wed Sep  6 13:25:42 1995  Andrew Cagney  <cagney@highland.com.au>
 
 	* core.c (core_add_data): First growth of bss was being put at
        wrong address (0) instead of &end.
 
 	* core.c (core_add_stack, core_add_data): Was not handling case
        where bss/stack is grown across the current end-of-{bss,stack}.

Wed Sep  6 00:46:10 1995  Andrew Cagney  <cagney@highland.com.au>

	* system.c (system_call): Fix SYS_break - was aligning bss to a
        page boundary instead of just an 8 byte one; On first call sbrk(0)
        != sbrk(0).

Thu Aug 24 14:48:54 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* Makefile.in (install): Fix install rule.

Tue Aug 22 09:31:18 1995  Michael Meissner  <meissner@tiktok.cygnus.com>

	* system.c (system_call): Add read support.

	* main.c (main): -t sets trace_device_tree.  Correct usage message
	to current reality.

	* device_tree.c (update_memory_node_for_section): Make tracing
	output line up.  If not code or readonly, assume that the section
	is a data section and has read/write permissions.  Add readonly
	support.

	* core.c (create_core_from_addresses): Print end address in traces
	and make tracing output line up.

	* Makefile.in: Rewrite from Makefile to work with the Cygnus
	environment, and support compiling in a different directory than
	the sources reside in.

	* ppc-endian.h: Rename from endian.h so that it doesn't get
	confused with /usr/include/sys/endian.h on Linux.  Add Linux
	endian support.

	* ppc-endian.c: Rename to be consistant with ppc-endian.h.
	Include ppc-endian.h, not endian.h.

	* basics.h (sysdep.h): Include sysdep.h that configure makes.
	Include ppc-endian.h, not endian.h.

	* std-config.h: Rename from ppc-config.  Put #ifndefs around most
	configuration macros, so they can be overridden via CFLAGS.  By
	default, turn off tracing.

	* configure.in: Clone from other simulator targets.
	* configure: Generate via autoconf from configure.in.

Sat Aug 19 09:05:32 1995  Andrew Cagney  <cagney@highland.com.au>

	* ppc-instructions: fix srawi (was geting XER[CA] real wrong).

	* interrupts.c (data_storage_interrupt): allow stack to grow by
        upto one MB per increment.

	* ppc-instructions: divw was computing rA / rA not rA / rB

	* main.c (main): really stupid. Wasn't exiting with correct status

Fri Aug 18 00:38:01 1995  Andrew Cagney  <cagney@highland.com.au>

	* system.c (system_call): add system calls kill(2) and getpid(2).

	* main.c (main): Check/return exit status when simulation
        finishes.

Thu Aug 17 14:29:18 1995  Andrew Cagney  <cagney@highland.com.au>

	* device_tree.c (create_option_device_node): Alignment rules (at
 	least for the moment) now are for strict alignment only for LE OEA
 	mode.  (Because of compiler problems).

	* system.c (system_call) SYS_exit: Wasn't exiting with correct status.

Thu Aug 17 01:16:38 1995  Andrew Cagney  <cagney@highland.com.au>

	* vm.c (DEFINE_VM_DATA_MAP_WRITE_N): For miss aligned transfer
        forgot to return.

	* system.c (system_call): didn't page align break argument before
        determining increment break increment.

	* psim/ppc: Re-arange entire directory structure so that
        everything lives in the one directory.  While a pain for cleaning,
        makes building across multiple architectures much simpler.

	* devices.c, device_tree.c: Added code that provides a simple
        illustration of how an interrupt control device could be
        implemented.

	* devices.c: Added code so that the dumb console device can read
        (from stdin) as well as write to stdout.