-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog
1765 lines (1208 loc) · 54.1 KB
/
ChangeLog
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
2019-02-28 Joel Brobecker <[email protected]>
* MAINTAINERS: Move Mike Frysinger to past maintainers' section.
2019-02-13 Simon Marchi <[email protected]>
* MAINTAINERS: Add Andrew Burgess as global maintainer.
2019-01-03 Pavel I. Kryukov <[email protected]>
* sim-base.h: Add 'extern C' if header is compiled with C++.
2018-12-06 Andrew Burgess <[email protected]>
* common/acinclude.m4 (enable-cgen-maint): Support passing path to
cgen source tree.
* cris/configure: Regenerate.
* frv/configure: Regenerate.
* iq2000/configure: Regenerate.
* lm32/configure: Regenerate.
* m32r/configure: Regenerate.
* or1k/configure: Regenerate.
* sh64/configure: Regenerate.
2018-10-05 Stafford Horne <[email protected]>
* or1k/cpu.h: Regenerate.
* or1k/decode.c: Regenerate.
* or1k/decode.h: Regenerate.
* or1k/model.c: Regenerate.
* or1k/sem-switch.c: Regenerate.
* or1k/sem.c: Regenerate:
2018-07-20 Maciej W. Rozycki <[email protected]>
* MAINTAINERS: Update my e-mail address, downgrade to MIPS I-IV
ISA maintenance.
2018-07-19 DJ Delorie <[email protected]>
* MAINTAINERS (rl78, m32c, rx, v850): Remove myself as maintainer.
2018-07-14 Stafford Horne <[email protected]>
* MAINTAINERS (or1k): Add myself as or1k maintainer.
2018-06-19 Simon Marchi <[email protected]>
* All configure.ac: Remove AC_PREREQ.
* All configure: Re-generate.
2018-01-22 Maciej W. Rozycki <[email protected]>
* MAINTAINERS: Update my company e-mail address.
2017-12-12 Stafford Horne <[email protected]>
Peter Gavin <[email protected]>
* configure: Regenerated.
* or1k/aclocal.m4: Generated.
* or1k/config.in: Generated.
* or1k/configure: Generated.
2017-12-12 Stafford Horne <[email protected]>
Peter Gavin <[email protected]>
* or1k/arch.c: Generated.
* or1k/arch.h: Generated.
* or1k/cpu.c: Generated.
* or1k/cpu.h: Generated.
* or1k/cpuall.h: Generated.
* or1k/decode.c: Generated.
* or1k/decode.h: Generated.
* or1k/model.c: Generated.
* or1k/sem-switch.c: Generated.
* or1k/sem.c: Generated.
2017-12-12 Stafford Horne <[email protected]>
Peter Gavin <[email protected]>
* configure.tgt: Add or1k sim.
* or1k/README: New file.
* or1k/Makefile.in: New file.
* or1k/configure.ac: New file.
* or1k/mloop.in: New file.
* or1k/or1k-sim.h: New file.
* or1k/or1k.c: New file.
* or1k/sim-if.c: New file.
* or1k/sim-main.h: New file.
* or1k/traps.c: New file.
2017-11-01 James Bowman <[email protected]>
* ft32/interp.c (step_once): Add ft32 shortcode decoder.
2017-10-12 James Bowman <[email protected]>
* ft32/interp.c (step_once): Replace FT32_FLD_K8 with K15.
2017-10-12 James Bowman <[email protected]>
* MAINTAINERS (ft32): Add myself.
2017-10-03 Jim Wilson <[email protected]>
* MAINTAINERS (aarch64): Update my email address.
2017-09-06 John Baldwin <[email protected]>
* configure.ac: Honor existing CC_FOR_BUILD in environment.
* configure: Regenerate.
2017-02-14 Jim Wilson <[email protected]>
* MAINTAINTERS (aarch64): Add myself.
2016-12-14 Maciej W. Rozycki <[email protected]>
* MAINTAINERS (Maintainers for particular sims): Add myself as
a MIPS maintainer.
2016-02-03 Maciej W. Rozycki <[email protected]>
* MAINTAINERS (Past sim maintainers): Add Thiemo Seufer.
2016-01-09 Mike Frysinger <[email protected]>
* configure.ac: Delete sim_common check and the
AC_CONFIG_SUBDIRS(common) call.
* configure: Regenerate.
* configure.tgt (sim_common): Delete the variable.
2016-01-09 Mike Frysinger <[email protected]>
* .gitignore: Delete /common/cconfig.h entry.
2016-01-05 Nick Clifton <[email protected]>
* MAINTAINERS: Add myself as AArch64 sim maintainer.
2015-12-09 Tristan Gingold <[email protected]>
* aarch64/simulator.c: Remove syscall.h include.
2015-12-26 Mike Frysinger <[email protected]>
* README-HACKING: Delete mention of tconfig.h.
2015-11-24 Nick Clifton <[email protected]>
* configure.tgt: Add aarch64 entry.
* configure: Regenerate.
2015-06-23 Mike Frysinger <[email protected]>
* configure.ac (AC_ARG_ENABLE(sim)): Call AS_HELP_STRING.
* configure: Regenerate.
2015-06-12 Mike Frysinger <[email protected]>
* README-HACKING: Change configure.in to configure.ac.
2015-04-02 H.J. Lu <[email protected]>
* arm/configure: Regenerated.
* avr/configure: Likewise.
* bfin/configure: Likewise.
* common/configure: Likewise.
* cr16/configure: Likewise.
* cris/configure: Likewise.
* d10v/configure: Likewise.
* erc32/configure: Likewise.
* frv/configure: Likewise.
* ft32/configure: Likewise.
* h8300/configure: Likewise.
* igen/configure: Likewise.
* iq2000/configure: Likewise.
* lm32/configure: Likewise.
* m32c/configure: Likewise.
* m32r/configure: Likewise.
* m68hc11/configure: Likewise.
* mcore/configure: Likewise.
* microblaze/configure: Likewise.
* mips/configure: Likewise.
* mn10300/configure: Likewise.
* moxie/configure: Likewise.
* msp430/configure: Likewise.
* ppc/configure: Likewise.
* rl78/configure: Likewise.
* rx/configure: Likewise.
* sh/configure: Likewise.
* sh64/configure: Likewise.
* v850/configure: Likewise.
2015-04-01 H.J. Lu <[email protected]>
* common/Make-common.in (CSEARCH): Remove $(ZLIBINC).
(BFD_LIB): Remove $(ZLIB).
(CONFIG_LIBS): Add $(ZLIB).
* ppc/Makefile.in (ZLIBINC): Removed.
(INCLUDES): Remove $(ZLIBINC).
(BFD_LIB): Remove $(ZLIB).
2015-04-01 H.J. Lu <[email protected]>
* arm/configure: Regenerated.
* avr/configure: Likewise.
* bfin/configure: Likewise.
* common/configure: Likewise.
* cr16/configure: Likewise.
* cris/configure: Likewise.
* d10v/configure: Likewise.
* erc32/configure: Likewise.
* frv/configure: Likewise.
* ft32/configure: Likewise.
* h8300/configure: Likewise.
* igen/configure: Likewise.
* iq2000/configure: Likewise.
* lm32/configure: Likewise.
* m32c/configure: Likewise.
* m32r/configure: Likewise.
* m68hc11/configure: Likewise.
* mcore/configure: Likewise.
* microblaze/configure: Likewise.
* mips/configure: Likewise.
* mn10300/configure: Likewise.
* moxie/configure: Likewise.
* msp430/configure: Likewise.
* ppc/configure: Likewise.
* rl78/configure: Likewise.
* rx/configure: Likewise.
* sh/configure: Likewise.
* sh64/configure: Likewise.
* v850/configure: Likewise.
2015-03-29 Mike Frysinger <[email protected]>
* configure: Regenerate.
* configure.ac: Delete sim_testsuite check and config in testsuite.
* configure.tgt (sim_testsuite): Delete everywhere.
2015-03-28 Mike Frysinger <[email protected]>
* configure: Regenerate.
* configure.tgt (avr*-*-*): Set sim_testsuite=yes.
2015-03-28 James Bowman <[email protected]>
* configure.tgt: Add FT32 entry.
* configure: Regenerate.
2015-03-16 Mike Frysinger <[email protected]>
* .gitignore: Delete tconfig.h.
* README-HACKING: Change tconfig.in to tconfig.h.
2014-03-12 Nick Clifton <[email protected]>
* MAINTAINERS: Add myself as the maintainer for the MSP430.
2014-03-10 Mike Frysinger <[email protected]>
* configure.tgt (msp430*-*-*): Set sim_testsuite to yes.
* configure: Regenerate.
2014-01-06 Tom Tromey <[email protected]>
* common/cgen-trace.c: Don't use old VA_* macros.
* common/sim-load.c (xprintf): Likewise.
* common/sim-trace.c (trace_printf, debug_printf): Likewise.
2014-01-06 Tom Tromey <[email protected]>
* README-HACKING: Don't use PARAMS.
* arm/wrapper.c: Don't use PARAMS.
* bfin/sim-main.h: Don't use PARAMS.
* common/callback.c: Don't use PARAMS.
* common/cgen-trace.c: Don't use PARAMS.
* common/run-sim.h: Don't use PARAMS.
* common/run.c: Don't use PARAMS.
* common/sim-base.h: Don't use PARAMS.
* common/sim-load.c: Don't use PARAMS.
* common/sim-options.h: Don't use PARAMS.
* common/sim-trace.c: Don't use PARAMS.
* common/sim-trace.h: Don't use PARAMS.
* common/sim-utils.h: Don't use PARAMS.
* cr16/cr16_sim.h: Don't use PARAMS.
* cr16/gencode.c: Don't use PARAMS.
* cr16/interp.c: Don't use PARAMS.
* cr16/simops.c: Don't use PARAMS.
* d10v/d10v_sim.h: Don't use PARAMS.
* d10v/gencode.c: Don't use PARAMS.
* d10v/interp.c: Don't use PARAMS.
* d10v/simops.c: Don't use PARAMS.
* erc32/erc32.c: Don't use PARAMS.
* erc32/exec.c: Don't use PARAMS.
* erc32/float.c: Don't use PARAMS.
* erc32/func.c: Don't use PARAMS.
* erc32/sis.c: Don't use PARAMS.
* erc32/sis.h: Don't use PARAMS.
* mips/interp.c: Don't use PARAMS.
* mips/sim-main.h: Don't use PARAMS.
* sh/interp.c: Don't use PARAMS.
* v850/sim-main.h: Don't use PARAMS.
* v850/v850_sim.h: Don't use PARAMS.
2013-11-07 Will Newton <[email protected]>
PR gdb/15508
* arm/wrapper.c (sim_create_inferior): Call init before
accessing STATE.
2013-11-07 Will Newton <[email protected]>
PR gdb/8989
* arm/wrapper.c (sim_create_inferior): Avoid calling
bfd_get_mach with a NULL bfd.
2013-06-21 Nick Clifton <[email protected]>
* msp430: New Directory.
* configure.tgt: Add it.
* configure: Regenerate.
2013-03-15 Steve Ellcey <[email protected]>
* arm/wrapper.c (sim_complete_command): Make char arguments const.
* avr/interp.c (sim_complete_command): Ditto.
* common/sim-options.c (sim_complete_command): Ditto.
* cr16/interp.c (sim_complete_command): Ditto.
* erc32/interf.c (sim_complete_command): Ditto.
* m32c/gdb-if.c (sim_complete_command): Ditto.
* microblaze/interp.c (sim_complete_command): Ditto.
* ppc/sim_calls.c (sim_complete_command): Ditto.
* rl78/gdb-if.c (sim_complete_command): Ditto.
* rx/gdb-if.c (sim_complete_command): Ditto.
* sh/interp.c (sim_complete_command): Ditto.
2013-01-01 Joel Brobecker <[email protected]>
Update year range in copyright notice of all files.
2012-12-19 Joel Brobecker <[email protected]>
Update old contact info in GPL license notices.
2012-12-19 Joel Brobecker <[email protected]>
Update the non-FSF-copyrighted files in sim to GPLv3 or later.
2012-11-20 Pavel Chupin <[email protected]>
* common/Make-common.in: Use lt_cv_dlopen_libs under PLUGINS
condition.
* common/acinclude.m4: Define lt_cv_dlopen_libs.
* arm/configure: Regenerate.
* avr/configure: Regenerate.
* bfin/configure: Regenerate.
* common/configure: Regenerate.
* cr16/configure: Regenerate.
* cris/configure: Regenerate.
* d10v/configure: Regenerate.
* erc32/configure: Regenerate.
* frv/configure: Regenerate.
* h8300/configure: Regenerate.
* igen/configure: Regenerate.
* iq2000/configure: Regenerate.
* lm32/configure: Regenerate.
* m32c/configure: Regenerate.
* m32r/configure: Regenerate.
* m68hc11/configure: Regenerate.
* mcore/configure: Regenerate.
* microblaze/configure: Regenerate.
* mips/configure: Regenerate.
* mn10300/configure: Regenerate.
* moxie/configure: Regenerate.
* ppc/configure: Regenerate.
* rl78/configure: Regenerate.
* rx/configure: Regenerate.
* sh/configure: Regenerate.
* sh64/configure: Regenerate.
* testsuite/configure: Regenerate.
* v850/configure: Regenerate.
2012-11-05 Stephane Carrez <[email protected]>
* MAINTAINERS: Update my email address.
2012-09-24 Steve Ellcey <[email protected]>
* mips/basic.exp: Add mips*-mti-elf* target.
* configure.ac: Add mips*-mti-elf* target.
* configure: Regenerate.
2012-06-15 Joel Brobecker <[email protected]>
* configure: Regenerate.
2012-06-06 Michael Eager <[email protected]>
* microblaze/interp.c (config.h): Add #include.
2011-11-29 Joel Brobecker <[email protected]>
* MAINTAINERS (Global Maintainers): New section. Add Mike
Frysinger.
2011-11-28 DJ Delorie <[email protected]>
* configure.tgt: Add rl78 support.
* configure: Regenerate.
* rl78: New directory.
* MAINTAINERS: Add myself as RL78 maintainer.
2011-07-08 Hans-Peter Nilsson <[email protected]>
* MAINTAINERS: Remove Thiemo Seufer.
2011-06-04 Mike Frysinger <[email protected]>
* configure.tgt (bfin-*-*): Add sim_testsuite=yes.
* configure: Regenerate.
2011-05-04 Joseph Myers <[email protected]>
* configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't
handle targets.
* configure: Regenerate.
2011-03-05 Mike Frysinger <[email protected]>
* MAINTAINERS: Add bfin entry.
* configure.tgt (bfin-*-*): Handle bfin targets.
* configure: Regenerate.
2011-01-05 Mike Frysinger <[email protected]>
* .gitignore: Add /*/hw-config.h.
2010-12-23 Mike Frysinger <[email protected]>
* .gitignore: New file.
2010-07-28 DJ Delorie <[email protected]>
* MAINTAINERS: Add self as RX maintainer. Sort list.
2010-06-08 Nick Clifton <[email protected]>
* reg.c (set_oszc): Use unsigned int for the mask.
(set_szc, set_osz, set_sz): Likewise.
2010-04-26 Mike Frysinger <[email protected]>
* configure.ac: Target logic moved out to and included from ...
* configure.tgt: ... this new file.
* configure: Regenerated.
2010-04-12 Mike Frysinger <[email protected]>
* README-HACKING: Add more sections.
2010-02-11 Doug Evans <[email protected]>
* cris/cpuv10.h, * cris/cpuv32.h, * cris/cris-desc.c,
* cris/cris-desc.h, * cris/decodev10.c, * cris/decodev32.c,
* cris/modelv10.c, * cris/modelv32.c, * cris/semcrisv10f-switch.c,
* cris/semcrisv32f-switch.c: Regenerate.
2010-01-09 Ralf Wildenhues <[email protected]>
* avr/configure: Regenerate.
* cris/configure: Regenerate.
* microblaze/configure: Regenerate.
2010-01-02 Doug Evans <[email protected]>
* cris/arch.c, * cris/arch.h, * cris/cpuall.h, * cris/cpuv10.c,
* cris/cpuv10.h, * cris/cpuv32.c, * cris/cpuv32.h, * cris/cris-desc.c,
* cris/cris-desc.h, * cris/cris-opc.h, * cris/decodev10.c,
* cris/decodev10.h, * cris/decodev32.c, * cris/decodev32.h,
* cris/modelv10.c, * cris/modelv32.c, * cris/semcrisv10f-switch.c,
* cris/semcrisv32f-switch.c: Regenerate, update copyright year.
2010-01-01 Doug Evans <[email protected]>
* cris/mloop.in: Fix copyright year update snafu.
2009-11-24 Joel Brobecker <[email protected]>
* common/aclocal.m4: Add include of ../../config/zlib.m4.
* common/common.m4: Use AM_ZLIB to check for zlib support.
* ppc/configure.ac: Likewise.
* arm/configure, avr/configure, common/configure, cr16/configure,
cris/configure, d10v/configure, erc32/configure, frv/configure,
h8300/configure, iq2000/configure, lm32/configure, m32c/configure,
m32r/configure, m68hc11/configure, mcore/configure,
microblaze/configure, mips/configure, mn10300/configure,
moxie/configure, ppc/configure, sh/configure, sh64/configure,
v850/configure: Regenerate.
2009-11-24 DJ Delorie <[email protected]>
* rx: New directory.
* configure.ac: Add entry for Renesas RX.
* configure: Regenerate.
2009-11-22 Doug Evans <[email protected]>
* cris/cpuall.h: Regenerate.
* cris/cpuv10.h: Regenerate.
* cris/cpuv32.h: Regenerate.
* cris/decodev10.c: Regenerate.
* cris/decodev10.h: Regenerate.
* cris/decodev32.c: Regenerate.
* cris/decodev32.h: Regenerate.
2009-11-12 Tristan Gingold <[email protected]>
* avr/interp.c (sim_write): Allow byte access.
(sim_read): Ditto.
2009-11-12 Tristan Gingold <[email protected]>
* avr/interp.c (sim_load): Clear memory before loading.
2009-11-09 Tristan Gingold <[email protected]>
* avr/interp.c (sim_resume): Fix typo for OP_ret.
2009-10-23 Doug Evans <[email protected]>
* cris/arch.c: Regenerate.
* cris/arch.h: Regenerate.
* cris/cpuall.h: Regenerate.
* cris/cpuv10.c: Regenerate.
* cris/cpuv10.h: Regenerate.
* cris/cpuv32.c: Regenerate.
* cris/cpuv32.h: Regenerate.
* cris/cris-desc.c: Regenerate.
* cris/cris-desc.h: Regenerate.
* cris/cris-opc.h: Regenerate.
* cris/decodev10.c: Regenerate.
* cris/decodev10.h: Regenerate.
* cris/decodev32.c: Regenerate.
* cris/decodev32.h: Regenerate.
* cris/modelv10.c: Regenerate.
* cris/modelv32.c: Regenerate.
* cris/semcrisv10f-switch.c: Regenerate.
* cris/semcrisv32f-switch.c: Regenerate.
2009-10-22 Tristan Gingold <[email protected]>
* avr/interp.c (sim_stop): Return 1.
2009-10-16 Doug Evans <[email protected]>
* MAINTAINERS: Add myself as m32r maintainer.
2009-10-15 Michael Egaer <[email protected]>
* MAINTAINERS: Add self as MicroBlaze maintainer.
2009-10-14 Ben Elliston <[email protected]>
* MAINTAINERS (common): Move myself to "past maintainers" section.
2009-10-06 Michael Eager <[email protected]>
* microblaze/interp.c: Add include microblaze-dis.h.
2009-09-23 Michael Eager <[email protected]>
* configure: Add microblaze-*.* (not regenerated).
* configure.ac: Likewise.
* microblaze/config.in: New.
* microblaze/configure: Generate.
* microblaze/configure.ac: New.
* microblaze/interp.c: New.
* microblaze/Makefile.in: New.
* microblaze/microblaze.h: New.
* microblaze/microblaze.isa: New.
* microblaze/sim-main.h: New.
* microblaze/sysdep.h: New.
2009-08-22 Ralf Wildenhues <[email protected]>
* avr/config.in: Regenerate.
* avr/configure: Likewise.
* configure: Likewise.
* cris/config.in: Likewise.
* cris/configure: Likewise.
* configure.ac: m4_include toplevel config/override.m4.
* configure: Regenerate.
* avr/configure: Regenerate.
* cris/configure: Regenerate.
2009-07-30 Ralf Wildenhues <[email protected]>
* Makefile.in (datarootdir): New variable.
2009-05-18 Jon Beniston <[email protected]>
* MAINTAINERS: Add Jon Beniston as maintainer of lm32 sim.
* configure.ac: Add lm32 target.
* lm32: New directory.
2009-05-11 Andrew Cagney <[email protected]>
* MAINTAINERS: Orphan ppc.
2009-05-08 Kevin Buettner <[email protected]>
* m32c/gdb-if.c (m32c_signal_to_host): Rename to
m32c_signal_to_target. Change signal return values from SIGILL,
SIGTRAP, SIGSEGV, etc. to TARGET_SIGNAL_ILL, TARGET_SIGNAL_TRAP,
TARGET_SIGNAL_SEGV, etc. Fix all callers.
2009-04-30 Anthony Green <[email protected]>
* MAINTAINERS: Add myself for the moxie port.
* moxie: New directory.
* configure.ac: Add entry for moxie.
* configure: Regenerate.
2009-04-27 Tristan Gingold <[email protected]>
* avr: New directory.
* avr/interp.c, avr/Makefile.in, avr/configure.ac: New files.
* avr/config.in: New file, generated by autoheader.
* avr/configure: New file generated by autoconf.
* configure.ac: Add avr.
* configure: Regenerated.
2009-04-17 Carlos O'Donell <[email protected]>
* Makefile.in: Add dummy install-pdf, html, and
install-html targets.
2009-01-18 Hans-Peter Nilsson <[email protected]>
* cris/sim-if.c: Include errno.h.
(cris_start_address, cris_program_offset): New variables.
(OPTION_CRIS_PROGRAM_OFFSET, OPTION_CRIS_STARTADDR): New option
enums.
(cris_options): New options --cris-program-offset and
--cris-start-address.
(cris_option_handler): Handle new options.
(cris_program_offset_write, cris_set_section_offset_iterator)
(cris_offset_sections, cris_offset_sections): New functions.
(sim_load): Use cris_program_offset_write as function argument to
cris_load_elf_file, not sim_write.
(struct offsetinfo): New struct.
(cris_handle_interpreter): Fix typo in comment.
(sim_open): Call cris_offset_sections as soon as the bfd of the
infile is available. Gate bfd validity checks on abfd non-NULL.
(sim_create_inferior): Let cris_start_address when != -1 override
other start-address choices.
2009-01-06 Hans-Peter Nilsson <[email protected]>
* cris/traps.c (abort): Define to call sim_io_error.
(create_map): Make -1 imply a non-fixed address, not 0. All
callers changed. Only prefer the next higher unmapped address if
the last mapped address is no less than 0x40000000. Check that
the address to be mapped is not already mapped. Update head
comment.
(unmap_pages): Don't call abort when recursive call fails, just
note and return an error if a page in the range couldn't be unmapped.
(cris_bmod_handler, h_supr_set_handler, h_supr_get_handler)
(schedule, make_first_thread, cris_pipe_empty): New local variable sd.
(cris_break_13_handler) <case TARGET_SYS_mmap2>: Handle
non-MAP_FIXED argument overlapping existing map. For MAP_FIXED,
don't abort on page not being mapped. Handle non-anon filemap
with length padded to pagesize.
2009-01-03 Hans-Peter Nilsson <[email protected]>
* cris/sim-if.c (TARGET_AT_NULL, TARGET_AT_PHDR, TARGET_AT_PHENT)
(TARGET_AT_PHNUM, TARGET_AT_PAGESZ, TARGET_AT_BASE)
(TARGET_AT_FLAGS, TARGET_AT_ENTRY, TARGET_AT_UID, TARGET_AT_EUID)
(TARGET_AT_GID, TARGET_AT_EGID, TARGET_AT_HWCAP)
(TARGET_AT_CLKTCK): Remove redundant macros.
(AUX_ENT): Adjust to use standard ELF AT_* macros.
(AUX_ENTF): Ditto. Remove always-0 middle argument. Update all
callers.
(sim_open): Also pass AT_SECURE.
* cris/sim-main.h (struct _sim_cpu): New member
set_target_thread_data.
* cris/crisv32f.c (CRIS_TLS_REGISTER): Define.
* cris/crisv10f.c: Ditto.
* cris/cris-tmpl.c (MY (set_target_thread_data)): New function.
(MY (f_specific_init)): Set new _sim_cpu member to new function.
* cris/traps.c (TARGET_SYS_set_thread_area): Define.
(cris_break_13_handler) <case TARGET_SYS_set_thread_area>: New
case.
* cris/traps.c (TARGET_SYS_exit_group): Define.
(cris_break_13_handler): Handle it like the exit for the last
thread.
* cris/traps.c (TARGET_UTSNAME): Update to 2009-01-01.
(TARGET_EPOCH): Update to match TARGET_UTSNAME. Correct comment.
(cris_break_13_handler) <case TARGET_SYS_uname>: Update to
2.6.27. Set machine field to the BFD printable name of the
machine.
* cris/traps.c (TARGET_MAP_DENYWRITE): Define.
(cris_break_13_handler) <case TARGET_SYS_mmap2>: Handle
TARGET_MAP_DENYWRITE.
* cris/traps.c (TARGET_SYS_access, TARGET_R_OK, TARGET_W_OK)
(TARGET_X_OK, TARGET_F_OK): Define.
(cris_break_13_handler) <case TARGET_SYS_access>: New case.
* cris/semcrisv32f-switch.c: Regenerate.
2008-12-30 Hans-Peter Nilsson <[email protected]>
* cris/sim-if.c (sim_open): If sim_analyze_program fails, emit
just a short CRIS-specific notice. Tweak the wording for a
failing architecture test.
* cris/traps.c (TARGET_SYS_writev): New macro.
(is_mapped_only, cris_dump_map): New functions.
(cris_break_13_handler) <case TARGET_SYS_mmap2>: Handle more flags
and prot combinations and a non-zero page-offset. If
TARGET_MAP_FIXED, unmap pages before mapping them.
<case TARGET_SYS_mprotect>: When checking, allow any length
argument. Don't actually do anything.
<case TARGET_SYS_writev>: New case.
* cris/Makefile.in (SIM_OBJS): Remove sim-hload.o.
* cris/sim-if.c: Include elf-bfd.h.
(struct progbounds): New members end_loadmem, start_nonloadmem.
(xprintf, eprintf): New functions, copied from common/sim-load.c.
(cris_load_elf_file, sim_load, cris_get_progbounds): New functions.
(get_progbounds_iterator): Renamed from get_progbounds. Make
static. Update head comment. Set new struct progbounds members.
(exec_load_addr, interp_load_addr, interp_start_addr): New static
variables.
(aux_ent_phdr, aux_ent_phent, aux_ent_phnum, aux_ent_base)
(aux_ent_entry, cris_write_interp, cris_handle_interpreter): New
functions.
(sim_open): New constant array auxv_entries. Rewrite AUX_ENT
handling to use auxv_entries. Improve error message and checking
for invalid programs. Use new variable abfd for the program
instead of for each access reaching into sd to get it.
(sim_create_inferior): If non-zero, use interp_start_addr instead
of the program start address.
(cris_disassemble_insn): Remove incorrect and unclear, supposedly
stale comment. Always specify little-endian.
2008-07-29 Nick Clifton <[email protected]>
* common/genmloop.sh: Add new parameter: -shell to specify the
command interpreter to use to run the input file. This is
necessary because otherwise SHELL is taken from the user's
environment, and not from the makefile that invoked this script
and the user might not be running an sh-like shell.
* cris/Makefile.in: Pass -shell parameter to genmloop.sh.
* fr30/Makefile.in: Likewise.
* frv/Makefile.in: Likewise.
* i960/Makefile.in: Likewise.
* iq2000/Makefile.in: Likewise.
* m32r/Makefile.in: Likewise.
* frv/mloop.in: Add missing start of line comment marker.
2008-07-11 Hans-Peter Nilsson <[email protected]>
* cris/configure: Regenerate to track ../common/common.m4 changes.
* cris/config.in: Ditto.
2008-06-06 Vladimir Prus <[email protected]>
Daniel Jacobowitz <[email protected]>
Joseph Myers <[email protected]>
* cris/configure: Regenerate.
2008-05-09 Olivier Hainque <[email protected]>
* ppc/altivec.igen (vperm): Latch inputs into temporaries.
2008-03-25 M R Swami Reddy <[email protected]>
* MAINTAINERS: Add myself as maintainer of cr16 port.
2008-02-12 M Ranga Swami Reddy <[email protected]>
Add simulator for National cr16 processor.
* cr16: New directory.
* configure.ac: Add entry for National cr16.
* configure: Regenerate.
2008-02-05 DJ Delorie <[email protected]>
* configure.ac (v850): V850 now has a testsuite.
* configure (v850): Likewise.
2008-01-01 Daniel Jacobowitz <[email protected]>
Updated copyright notices for most files.
2007-12-19 DJ Delorie <[email protected]>
* frv/frv.c (frvbf_cut): Only look at the six LSBs of
cut_point.
2007-10-22 Hans-Peter Nilsson <[email protected]>
* cris/arch.c, cris/arch.h, cris/cpuall.h, cris/cpuv10.c,
cris/cpuv10.h, cris/cpuv32.c, cris/cpuv32.h, cris/cris-desc.c,
cris/cris-desc.h, cris/cris-opc.h, cris/decodev10.c,
cris/decodev10.h, cris/decodev32.c, cris/decodev32.h,
cris/modelv10.c, cris/modelv32.c, cris/semcrisv10f-switch.c,
cris/semcrisv32f-switch.c: Regenerate.
2007-08-24 Joel Brobecker <[email protected]>
Switch the license of all files explicitly copyright the FSF
to GPLv3.
2007-03-27 Brooks Moses <[email protected]>
* Makefile.in: Add dummy "pdf" target.
2007-02-20 Hans-Peter Nilsson <[email protected]>
* cris/traps.c (dump_statistics): Change format for cycle numbers
to %llu and cast parameters to unsigned long long.
2007-02-16 Thiemo Seufer <[email protected]>
* Makefile.in (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS): Add RUNTEST.
2007-01-28 Manuel Lauss <[email protected]>
* configure.ac (sh64-*-*): Change to sh64*-*-*.
(sh-*-*): Change to sh*-*-*.
* configure: Regenerated.
2007-01-09 Daniel Jacobowitz <[email protected]>
Updated copyright notices for most files.
2006-12-20 Hans-Peter Nilsson <[email protected]>
* Makefile.in (autoconf-common autoheader-common): Only run
autoheader on subdirs with a file config.in.
* configure.ac (common): Make the default "yes" for all targets
with sim subdirs.
* configure: Regenerate.
* Makefile.in (autoconf-common autoheader-common): In documented
usage, say SHELL=/bin/sh.
(.PHONY): Add autoheader-common.
* MAINTAINERS: Add self as authorized committer for *.
2006-10-02 Edgar E. Iglesias <[email protected]>
Hans-Peter Nilsson <[email protected]>
* cris/cris-sim.h (enum cris_unknown_syscall_action_type)
(cris_unknown_syscall_action): Declare.
* cris/sim-if.c (cris_unknown_syscall_action): Define.
(cris_options): Add cris-unknown-syscall option.
(cris_option_handler): Correct comment about and error message for
invalid --cris-cycles argument. Handle --cris-unknown-syscall.
* cris/traps.c: Include stdarg.h
(cris_unknown_syscall): New function.
(cris_break_13_handler): Instead of sim_io_eprintf and
sim_engine_halt, call cris_unknown_syscall to handle more or less
unknown syscalls. Adjust code as necessary to handle return
value.
2006-09-30 Daniel Jacobowitz <[email protected]>
* MAINTAINERS: Add Dave Brolley for sh64.
2006-09-30 Hans-Peter Nilsson <[email protected]>
* cris/traps.c (TARGET_PIPE_BUF): New macro.
(cris_pipe_empty): Correct initialization of "remaining". Only
adjust the "write" return value if more than TARGET_PIPE_BUF bytes
are written.
2006-09-29 Hans-Peter Nilsson <[email protected]>
* cris/configure.ac: Check for limits.h and sys/param.h.
* cris/configure, cris/config.in: Rebuild.
* cris/traps.c (SIM_PATHMAX): New macro.
(cris_break_13_handler): Use SIM_PATHMAX, not MAXPATHLEN.
2006-08-08 Joel Sherrill <[email protected]>
* configure.ac (sparc-*-rtems*|sparc-*-elf*): Enable erc32 simulator.
* Makefile.in (FLAGS_TO_PASS): Include libdir.
* configure: Regenerated.
2006-06-05 Daniel Jacobowitz <[email protected]>
* cris/configure: Regenerated.
2006-05-31 Daniel Jacobowitz <[email protected]>
* cris/configure: Regenerated.
2006-05-05 Andreas Schwab <[email protected]>
* configure.ac (CFLAGS_FOR_BUILD): Set and substitute.
* configure: Regenerate.
* Makefile.in (CFLAGS_FOR_BUILD): Define.
(CC_FOR_BUILD): Don't override.
(FLAGS_TO_PASS): Pass CFLAGS_FOR_BUILD.
2006-05-04 Daniel Jacobowitz <[email protected]>
* MAINTAINERS: Add an "Authorized committers" section, and list
DJ Delorie for v850.
2006-04-08 Hans-Peter Nilsson <[email protected]>
* cris/crisv32f.c (MY (deliver_interrupt)): Set CCS to new_ccs.
2006-04-03 Hans-Peter Nilsson <[email protected]>
* cris/dv-cris.c, cris/dv-rv.c, cris/rvdummy.c: New files.
* cris/Makefile.in (CONFIG_DEVICES): Remove redundant setting.
(dv-cris.o, dv-rv.o rvdummy$(EXEEXT), rvdummy.o): New rules.
(all): Depend on rvdummy$(EXEEXT).
* cris/configure.ac: Call SIM_AC_OPTION_WARNINGS. Check for
sys/socket.h and sys/select.h. Call SIM_AC_OPTION_HARDWARE,
default off.
* cris/configure: Regenerate.
* cris/cris-sim.h (cris_have_900000xxif): Declare here.
(enum cris_interrupt_type, crisv10deliver_interrupt)
(crisv32deliver_interrupt: New declarations.
* cris/cris-tmpl.c [WITH_HW] (MY (f_model_insn_after)): Call
sim_events_tickn and set state-events member work_pending when it's
time for the next event.
[WITH_HW] (MY (f_specific_init)): Set CPU-model-specific
interrupt-delivery function.
* cris/crisv10f.c (MY (deliver_interrupt)): New function.
* cris/crisv32f.c (MY (deliver_interrupt)): New function.
* cris/devices.c: Include hw-device.h.
(device_io_read_buffer) [WITH_HW]: Call hw_io_read_buffer.
(device_io_write_buffer): Only perform 0x900000xx-functions if
cris_have_900000xxif is nonzero. Else if WITH_HW defined,
call hw_io_write_buffer. Add return 0 last in function.
* cris/sim-if.c (cris_have_900000xxif): Now global.
(sim_open) [WITH_HW]: Clear deliver_interrupt cpu member.
Force "-model" option, effectively.
* cris/sim-main.h (cris_interrupt_delivery_fn): New type.
(struct _sim_cpu) [WITH_HW]: New member deliver_interrupt.
2006-04-02 Hans-Peter Nilsson <[email protected]>
* cris/Makefile.in (CRISV10F_OBJS): Remove semcrisv10f-switch.o.
(CRISV32F_OBJS): Remove semcrisv32f-switch.o.
(semcrisv10f-switch.o, semcrisv32f-switch.o: Remove dependency rules.
2006-03-13 DJ Delorie <[email protected]>
* MAINTAINERS: Add self as m32c sim maintainer.
2006-02-23 Hans-Peter Nilsson <[email protected]>
* cris/traps.c (syscall_map): Remove CB_SYS_time / TARGET_SYS_time
mapping.
(cris_break_13_handler) <case TARGET_SYS_time>: New case.
2006-01-23 Jim Blandy <[email protected]>
Add simulator for Renesas M32C and M16C.
* m32c: New directory.
* configure.ac: Add entry for Renesas M32C.
* configure: Regenerate.
2006-01-10 Hans-Peter Nilsson <[email protected]>
* cris/cris-tmpl.c (MY (f_model_insn_before)): Only display basic
cycle count for the current insn.
2005-12-06 Hans-Peter Nilsson <[email protected]>
* cris/cpuv10.h, cris/cpuv32.h, cris/cris-desc.c, cris/cris-opc.h,
cris/decodev10.c, cris/decodev10.h, cris/decodev32.c,
cris/decodev32.h, cris/modelv10.c, cris/modelv32.c,
cris/semcrisv10f-switch.c, cris/semcrisv32f-switch.c: Regenerate.
2005-12-05 Hans-Peter Nilsson <[email protected]>
* cris/arch.c, cris/arch.h, cris/cpuall.h, cris/cpuv10.c,
cris/cpuv10.h, cris/cpuv32.c, cris/cpuv32.h, cris/cris-desc.c,