forked from bminor/binutils-gdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-9899
1675 lines (1160 loc) · 55.3 KB
/
ChangeLog-9899
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
1999-12-27 Alan Modra <alan@spri.levels.unisa.edu.au>
* i386-dis.c (grps[]): Correct GRP5 FF/3 from "call" to "lcall".
Wed Dec 1 03:34:53 1999 Jeffrey A Law (law@cygnus.com)
* m10300-opc.c, m10300-dis.c: Add am33 support.
Wed Nov 24 20:29:58 1999 Jeffrey A Law (law@cygnus.com)
* hppa-dis.c (unit_cond_names): Add PA2.0 unit condition names.
(print_insn_hppa): Handle 'B' operand.
1999-11-22 Nick Clifton <nickc@cygnus.com>
* d10v-opc.c: Fix pattern for "cpfg,f{0|1},c" instruction.
1999-11-18 Gavin Romig-Koch <gavin@cygnus.com>
* mips-opc.c (I5): New.
(abs.ps,add.ps,alnv.ps,c.COND.ps,cvt.s.pl,cvt.s.pu,cvt.ps.s
madd.ps,movf.ps,movt.ps,mul.ps,net.ps,nmadd.ps,nmsub.ps,
pll.ps,plu.ps,pul.ps,puu.ps,sub.ps,suxc1,luxc1): New.
Mon Nov 15 19:34:58 1999 Donald Lindsay <dlindsay@cygnus.com>
* arm-dis.c (print_insn_arm): Added general purpose 'X' format.
* arm-opc.h (print_insn_arm): Added comment documenting
the 'X' format just added to arm-dis.c.
1999-11-15 Gavin Romig-Koch <gavin@cygnus.com>
* mips-opc.c (la): Create a version that just uses addiu directly.
(dla): Expand to daddiu if possible.
1999-11-11 Nick Clifton <nickc@cygnus.com>
* mips-opc.c: Add ssnop pattern.
1999-11-01 Gavin Romig-Koch <gavin@cygnus.com>
* mips-dis.c (_print_insn_mips): Use OPCODE_IS_MEMBER.
1999-10-29 Nick Clifton <nickc@cygnus.com>
* d30v-opc.c (mvtacc): Use format SHORT_AR not SHORT_AA
(d30v_format_tab): Define the SHORT_AR format.
1999-10-28 Nick Clifton <nickc@cygnus.com>
* mcore-dis.c: Remove spurious code introduced in previous delta.
1999-10-27 Scott Bambrough <scottb@netwinder.org>
* arm-dis.c: Include sysdep.h to prevent compile time warnings.
1999-10-18 Michael Meissner <meissner@cygnus.com>
* alpha-opc.c (alpha_operands): Fill in missing initializer.
(alpha_num_operands): Convert to unsigned.
(alpha_num_opcodes): Ditto.
(insert_rba): Declare unused arguments ATTRIBUTE_UNUSED.
(insert_rca): Ditto.
(insert_za): Ditto.
(insert_zb): Ditto.
(insert_zc): Ditto.
(extract_bdisp): Ditto.
(extract_jhint): Ditto.
(extract_ev6hwjhint): Ditto.
Sun Oct 10 01:48:01 1999 Jerry Quinn <jerry.quinn.adv91@alum.dartmouth.org>
* hppa-dis.c (print_insn_hppa): Add new codes 'cc', 'cd', 'cC',
'co', '@'.
* hppa-dis.c (print_insn_hppa): Removed unused args. Fix '?W'.
* hppa-dis.c (print_insn_hppa): Implement codes "?N", "?Q".
Thu Oct 7 00:12:43 MDT 1999 Diego Novillo <dnovillo@cygnus.com>
* d10v-opc.c (d10v_operands): Add RESTRICTED_NUM3 flag for
rac/rachi instructions.
(d10v_opcodes): Added seven new instructions ld, ld2w, sac, sachi,
slae, st and st2w.
1999-10-04 Doug Evans <devans@casey.cygnus.com>
* fr30-asm.c, fr30-desc.h: Rebuild.
* m32r-asm.c, m32r-desc.c, m32r-desc.h: Rebuild. Add m32rx support.
* m32r-dis.c, m32r-ibld.c, m32r-opc.c, m32r-opc.h, m32r-opinst.c: Ditto.
1999-09-29 Nick Clifton <nickc@cygnus.com>
* sh-opc.h: Fix bit patterns for several load and store
instructions.
Thu Sep 23 08:27:20 1999 Jerry Quinn <jerry.quinn.adv91@alum.dartmouth.org
* hppa-dis.c (print_insn_hppa): Replace 'B', 'M', 'g' and 'l' with
cleaner code using completer prefixes. Add 'Y'.
Sun Sep 19 10:41:27 1999 Jeffrey A Law (law@cygnus.com)
* hppa-dis.c: (print_insn_hppa): Correct 'cJ', 'cc'.
* hppa-dis.c (extract_22): New function.
* hppa-dis.c (print_insn_hppa): Handle 'J', 'K', and 'cc'.
* hppa-dis.c (print_insn_hppa): Handle 'fe' and 'cJ'.
* hppa-dis.c (print_insn_hppa): Handle '#', 'd', and 'cq'.
* hppa-dis.c (print_insn_hppa): Handle 'm', 'h', '='.
* hppa-dis.c (print_insn_hppa): Handle 'X' operand.
* hppa-dis.c (print_insn_hppa): Handle 'B' operand.
* hppa-dis.c (print_insn_hppa): Handle 'M' and 'L' operands.
* hppa-dis.c (print_insn_hppa): Handle 'l' operand.
* hppa-dis.c (print_insn_hppa): Handle 'g' operand.
Sat Sep 18 11:36:12 1999 Jeffrey A Law (law@cygnus.com)
* hppa-dis.c (print_insn_hppa): Output a space after 'X' completer.
* hppa-dis.c: (print_insn_hppa): Do output a space before a 'v'
operand.
* hppa-dis.c: (print_insn_hppa): Handle 'fX'.
* hppa-dis.c: (print_insn_hppa): Add missing break after
FP register case.
* hppa-dis.c: Finish constifying various completers, register
names, etc etc.
1999-09-14 Michael Meissner <meissner@cygnus.com>
* configure.in (Canonicalization of target names): Remove adding
${CONFIG_SHELL} in front of $ac_config_sub, since autoconfig 2.14
generates $ac_config_sub with a ${CONFIG_SHELL} already.
* configure: Regenerate.
Tue Sep 7 13:50:32 1999 Jeffrey A Law (law@cygnus.com)
* hppa-dis.c (print_insn_hppa): Escape '%' in output strings.
* hppa-dis.c (print_insn_hppa): Handle 'Z' argument.
1999-09-07 Nick Clifton <nickc@cygnus.com>
* sh-opc.h: Add mulu.w and muls.w patterns. These are the correct
names for the mulu and muls patterns.
1999-09-04 Steve Chamberlain <sac@pobox.com>
* pj-opc.c: New file.
* pj-dis.c: New file.
* disassemble.c (disassembler): Handle bfd_arch_pj.
* configure.in: Handle bfd_pj_arch.
* Makefile.am: Rebuild dependencies.
(CFILES): Add pj-dis.c and pj-opc.c.
(ALL_MACHINES): Add pj-dis.lo and pj-opc.lo.
* configure, Makefile.in: Rebuild.
1999-09-04 H.J. Lu <hjl@gnu.org>
* i386-dis.c (print_insn_i386): Set bytes_per_line to 7.
Mon Aug 30 18:56:14 1999 Richard Henderson <rth@cygnus.com>
* alpha-opc.c (fetch, fetch_m, ecb, wh64): RA must be R31.
1999-08-04 Doug Evans <devans@casey.cygnus.com>
* fr30-asm.c, fr30-desc.h, fr30-dis.c, fr30-ibld.c, fr30-opc.c: Rebuild.
* m32r-asm.c, m32r-desc.h, m32r-dis.c, m32r-ibld.c, m32r-opc.c: Rebuild.
* m32r-opinst.c: Rebuild.
Sat Aug 28 00:27:24 1999 Jerry Quinn <jquinn@nortelnetworks.com>
* hppa-dis.c (print_insn_hppa): Replace 'f' by 'v'. Prefix float
register args by 'f'.
* hppa-dis.c (print_insn_hppa): Add args q, %, !, and |.
* hppa-dis.c (MASK_10, read_write_names, add_compl_names,
extract_10U_store): New.
(print_insn_hppa): Add new completers.
* hppa-dis.c (signed_unsigned_names,mix_half_names,
saturation_names): New.
(print_insn_hppa): Add completer codes 'a', 'ch', 'cH', 'cS', and 'c*'.
* hppa-dis.c (print_insn_hppa): Place completers behind prefix 'c'.
* hppa-dis.c (print_insn_hppa): Add cases for '.', '~'. '$'. and '!'
* hppa-dis.c (print_insn_hppa): Look at next arg instead of bits
to decide to print a space.
1999-08-21 Alan Modra <alan@spri.levels.unisa.edu.au>
* i386-dis.c: Add AMD athlon instruction support.
1999-08-10 Ian Lance Taylor <ian@zembu.com>
From Wally Iimura <iimura@microunity.com>:
* dis-buf.c (buffer_read_memory): Rewrite expression to avoid
overflow at end of address space.
(generic_print_address): Use sprintf_vma.
1999-08-08 Ian Lance Taylor <ian@zembu.com>
* Makefile.am: Rename .dep* files to DEP*. Change DEP variable to
MKDEP. Rebuild dependencies.
* Makefile.in: Rebuild.
Fri Aug 6 09:46:35 1999 Jerry Quinn <jquinn@nortelnetworks.com>
* hppa-dis.c (compare_cond_64_names, cmpib_cond_64_names,
add_cond_64_names, wide_add_cond_names, logical_cond_64_names,
unit_cond_64_names, shift_cond_64_names, bb_cond_64_names): New.
(print_insn_hppa): Add 64 bit condition completers.
Thu Aug 5 16:59:58 1999 Jerry Quinn <jquinn@nortelnetworks.com>
* hppa-dis.c (print_insn_hppa): Change condition args to use
'?' prefix.
Wed Jul 28 04:33:58 1999 Jerry Quinn <jquinn@nortelnetworks.com>
* hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E'
code.
1999-07-21 Ian Lance Taylor <ian@zembu.com>
From Mark Elbrecht:
* configure.bat: Remove; obsolete.
1999-07-11 Ian Lance Taylor <ian@zembu.com>
* dis-buf.c: Add ATTRIBUTE_UNUSED as appropriate.
(generic_strcat_address): Add cast to avoid warning.
* i386-dis.c: Initialize all structure fields to avoid warnings.
Add ATTRIBUTE_UNUSED as appropriate.
1999-07-08 Jakub Jelinek <jj@ultra.linux.cz>
* sparc-dis.c (print_insn_sparc): Differentiate between
addition and oring when guessing symbol for comment.
1999-07-05 Nick Clifton <nickc@cygnus.com>
* arm-dis.c (print_insn_arm): Display hex equivalent of rotated
constant.
1999-06-23 Alan Modra <alan@spri.levels.unisa.edu.au>
* i386-dis.c: Mention intel mode specials in macro char comment.
1999-06-21 Ian Lance Taylor <ian@zembu.com>
* alpha-dis.c: Don't include <stdlib.h>.
* arm-dis.c: Include "sysdep.h".
* tic30-dis.c: Don't include <stdlib.h> or <string.h>. Include
"sysdep.h".
* Makefile.am: Rebuild dependencies.
* Makefile.in: Rebuild.
1999-06-16 Nick Clifton <nickc@cygnus.com>
* arm-dis.c (print_insn_arm): Add detection of IMB and IMBRange
SWIs.
1999-06-14 Nick Clifton <nickc@cygnus.com> & Drew Mosley <dmoseley@cygnus.com>
* arm-dis.c (arm_regnames): Turn into a pointer to a register
name set.
(arm_regnames_standard): New variable: Array of ARM register
names according to ARM instruction set nomenclature.
(arm_regnames_apcs): New variable: Array of ARM register names
according to ARM Procedure Call Standard.
(arm_regnames_raw): New variable: Array of ARM register names
using just 'r' and the register number.
(arm_toggle_regnames): New function: Toggle the chosen register set
naming scheme.
(parse_disassembler_options): New function: Parse any target
disassembler command line options.
(print_insn_big_arm): Call parse_disassembler_options if any
are defined.
(print_insn_little_arm): Call parse_disassembler_options if any
are defined.
1999-06-13 Ian Lance Taylor <ian@zembu.com>
* i386-dis.c (FWAIT_OPCODE): Define.
(used_prefixes): New static variable.
(fetch_data): Don't print an error message if we have already
fetched some bytes successfully.
(ckprefix): Clear used_prefixes. Use FWAIT_OPCODE, not 0x9b.
(prefix_name): New static function.
(print_insn_i386): If setjmp fails, indicating a data error, but
we have managed to fetch some bytes, print the first one as a
prefix or a .byte pseudo-op. If fwait is followed by a non
floating point instruction, print the first prefix. Set
used_prefixes when prefixes are used. If any prefixes were not
used after disassembling the instruction, print the first prefix
instead of printing the instruction.
(putop): Set used_prefixes when prefixes are used.
(append_seg, OP_E, OP_G, OP_REG, OP_I, OP_sI, OP_J): Likewise.
(OP_DIR, OP_SIMD_Suffix): Likewise.
1999-06-07 Jakub Jelinek <jj@ultra.linux.cz>
* sparc-opc.c: Fix up set, setsw, setuw operand kinds.
Support signx %reg, clruw %reg.
1999-06-07 Jakub Jelinek <jj@ultra.linux.cz>
* sparc-opc.c: Add aliases Solaris as supports.
Mon Jun 7 12:04:52 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* Makefile.am (CFILES): Add arc-{dis,opc}.c and v850-{dis,opc}.c.
* Makefile.in: Regenerated.
1999-06-03 Philip Blundell <philb@gnu.org>
* arm-dis.c (print_insn_arm): Make LDRH/LDRB consistent with LDR
when target is PC-relative.
1999-05-28 Linus Nordberg <linus.nordberg@canit.se>
* m68k-opc.c: Rename MACL/MSACL to MAC/MSAC. Add MACM/MSACM. Add
MOVE MACSR,CCR.
* m68k-dis.c (fetch_arg): Add places `n', `o'.
* m68k-opc.c: Add MSAC, MACL, MOVE to/from ACC, MACSR, MASK.
Add mcf5206e to appropriate instructions.
Add alias for MAC, MSAC.
* m68k-dis.c (print_insn_arg): Add formats `E', `G', `H' and place
`N'.
* m68k-opc.c (m68k_opcodes): Add divsw, divsl, divuw, divul, macl,
macw, remsl, remul for mcf5307. Change mcf5200 --> mcf.
* m68k-dis.c: Add format `u' and places `h', `m', `M'.
1999-05-18 Alan Modra <alan@spri.levels.unisa.edu.au>
* i386-dis.c (Ed): Define.
(dis386_twobyte_att, dis386_twobyte_intel): Use Ed for movd.
(Rw): Remove.
(OP_rm): Rename to OP_Rd.
(ONE): Remove.
(OP_ONE): Remove.
(putop): Add const to template and p.
(print_insn_x86): Delete.
(print_insn_i386): Merge old function print_insn_x86. Add const
to dp.
(struct dis386): Add const to name.
(dis386_att, dis386_intel): Add const.
(dis386_twobyte_att, dis386_twobyte_intel): Add const.
(names32, names16, names8, names_seg, index16): Add const.
(grps, prefix_user_table, float_reg): Add const.
(float_mem_att, float_mem_intel): Add const.
(oappend): Add const to s.
(OP_REG): Add const to s.
(ptr_reg): Add const to s.
(dofloat): Add const to dp.
(OP_C): Don't skip modrm, it's now done in OP_Rd.
(OP_D): Ditto.
(OP_T): Ditto.
(OP_Rd): Check for valid mod. Call Op_E to print.
(OP_E): Handle d_mode arg. Check for bad sfence,lea,lds etc.
(OP_MS): Check for valid mod. Call Op_EM to print.
(OP_3DNowSuffix): Set obufp and use oappend rather than
strcat. Call BadOp() for errors.
(OP_SIMD_Suffix): Likewise.
(BadOp): New function.
1999-05-12 Alan Modra <alan@spri.levels.unisa.edu.au>
* i386-dis.c (dis386_intel): Remove macro chars, except for
jEcxz. Change cWtR and cRtd to cW and cR.
(dis386_twobyte_intel): Remove macro chars here too.
(putop): Handle R and W macros for intel mode.
* i386-dis.c (SIMD_Fixup): New function.
(dis386_twobyte_att): Use it on movlps and movhps, and change
Ev to EX on these insns. Change movmskps Ev, XM to Gv, EX.
(dis386_twobyte_intel): Same here.
* i386-dis.c (Av): Remove.
(Ap): remove lptr.
(lptr): Remove.
(OPSIMD): Define.
(OP_SIMD_Suffix): New function.
(OP_DIR): Remove dead code.
(eAX_reg..eDI_reg): Renumber.
(onebyte_has_modrm): Table numbering comments.
(INTERNAL_DISASSEMBLER_ERROR): Move to before print_insn_x86.
(print_insn_x86): Move all prefix oappends to after uses_f3_prefix
checks. Print error on invalid dp->bytemode2. Remove simd_cmp,
and handle SIMD cmp insns in OP_SIMD_Suffix.
(info->bytes_per_line): Bump from 5 to 6.
(OP_None): Remove.
(OP_E): Use INTERNAL_DISASSEMBLER_ERROR. Handle sfence.
(OP_3DNowSuffix): Ensure mnemonic index unsigned.
PIII SIMD support from Doug Ledford <dledford@redhat.com>
* i386-dis.c (XM, EX, None): Define.
(OP_XMM, OP_EX, OP_None): New functions.
(USE_GROUPS, USE_PREFIX_USER_TABLE): Define.
(GRP14): Rename to GRPAMD.
(GRP*): Add USE_GROUPS flag.
(PREGRP*): Define.
(dis386_twobyte_att, dis386_twobyte_intel): Add SIMD insns.
(twobyte_has_modrm): Add SIMD entries.
(twobyte_uses_f3_prefix, simd_cmp_op, prefix_user_table): New.
(grps): Add SIMD insns.
(print_insn_x86): New vars uses_f3_prefix and simd_cmp. Don't
oappend repz if uses_f3_prefix. Add code to handle new groups for
SIMD insns.
From Maciej W. Rozycki <macro@ds2.pg.gda.pl>
* i386-dis.c (dis386_att, dis386_intel): Change 0xE8 call insn
operand from Av to Jv.
1999-05-07 Nick Clifton <nickc@cygnus.com>
* mcore-dis.c (print_insn_mcore): Use .short to display
unidentified instructions, not .word.
1999-04-26 Tom Tromey <tromey@cygnus.com>
* aclocal.m4, configure: Updated for new version of libtool.
1999-04-14 Doug Evans <devans@casey.cygnus.com>
* fr30-desc.c, fr30-desc.h, fr30-dis.c, fr30-ibld.c, fr30-opc.c: Rebuild.
* m32r-desc.c, m32r-desc.h, m32r-dis.c, m32r-ibld.c, m32r-opc.c: Rebuild.
Mon Apr 12 23:46:17 1999 Jeffrey A Law (law@cygnus.com)
* hppa-dis.c (print_insn_hppa, case '3'): New case for PA2.0
instructions.
1999-04-10 Doug Evans <devans@casey.cygnus.com>
* fr30-desc.c, fr30-desc.h, fr30-ibld.c: Rebuild.
* m32r-desc.c, m32r-desc.h, m32r-opinst.c: Rebuild.
1999-04-06 Ian Lance Taylor <ian@zembu.com>
* opintl.h (LC_MESSAGES): Never define.
1999-04-04 Ian Lance Taylor <ian@zembu.com>
* i386-dis.c (intel_syntax, open_char, close_char): Make static.
(separator_char, scale_char): Likewise.
(print_insn_x86): Likewise.
(print_insn_i386): Likewise. Add declaration.
1999-03-26 Doug Evans <devans@casey.cygnus.com>
* fr30-dis.c: Rebuild.
* m32r-dis.c: Rebuild.
1999-03-23 Ian Lance Taylor <ian@zembu.com>
* m68k-opc.c: Change compare instructions to use "@s" rather than
";s" when used with an immediate operand.
1999-03-22 Doug Evans <devans@casey.cygnus.com>
* cgen-opc.c (cgen_set_cpu): Delete.
(cgen_lookup_insn): max_insn_size renamed to max_insn_bitsize.
* fr30-desc.c, fr30-desc.h, fr30-dis.c, fr30-ibld.c, fr30-opc.c,
fr30-opc.h: Rebuild.
* m32r-desc.c, m32r-desc.h, m32r-dis.c, m32r-ibld.c, m32r-opc.c,
m32r-opc.h: Rebuild.
* po/opcodes.pot: Rebuild.
1999-03-16 Martin Hunt <hunt@cygnus.com>
* d30v-opc.c (mvtsys): Remove FLAG_LKR.
1999-03-11 Doug Evans <devans@casey.cygnus.com>
* cgen-opc.c (cgen_set_cpu): New arg `isa'. All callers updated.
(cgen_operand_lookup_by_name,cgen_operand_lookup_by_num): New fns.
(cgen_get_insn_operands): Rewrite test for hardcoded/operand index.
* fr30-asm.c, fr30-desc.c, fr30-desc.h, fr30-dis.c, fr30-ibld.c: Rebuild.
* m32r-asm.c, m32r-desc.c, m32r-desc.h, m32r-dis.c, m32r-ibld.c: Rebuild.
* m32r-opinst.c: Rebuild.
1999-02-25 Doug Evans <devans@casey.cygnus.com>
* cgen-opc.c (cgen_hw_lookup_by_name): Rewrite.
(cgen_hw_lookup_by_num): Rewrite.
* fr30-desc.c, fr30-desc.h, fr30-dis.c, fr30-ibld.c, fr30-opc.c: Rebuild.
* m32r-desc.c, m32r-desc.h, m32r-dis.c, m32r-ibld.c, m32r-opc.c: Rebuild.
* m32r-opinst.c: Rebuild.
Sat Feb 13 14:06:19 1999 Richard Henderson <rth@cygnus.com>
* alpha-opc.c: Add sqrt+flags patterns. Add EV6 PALcode insns.
(insert_jhint): Fix insertion mask.
* alpha-dis.c (print_insn_alpha): Disassemble EV6 PALcode insns.
1999-02-10 Doug Evans <devans@casey.cygnus.com>
* Makefile.in: Rebuild.
1999-02-09 Doug Evans <devans@casey.cygnus.com>
* i960c-asm.c, i960c-dis.c, i960c-opc.c, i960c-opc.h: Delete.
* i960-dis.c (print_insn_i960): Rename from print_insn_i960_orig.
* Makefile.am: Remove references to them.
(HFILES): Add fr30-desc.h, m32r-desc.h.
(CFILES): Add fr30-desc.c, fr30-ibld.c, m32r-desc.c, m32r-ibld.c,
m32r-opinst.c.
(ALL_MACHINES): Update.
* configure.in: Redo handling of cgen_files.
(bfd_i960_arch): Delete i960c-*.lo files.
* configure: Regenerate.
* cgen-asm.c (*): CGEN_OPCODE_DESC renamed to CGEN_CPU_DESC.
(hash_insn_array): Rewrite.
* cgen-dis.c (*): CGEN_OPCODE_DESC renamed to CGEN_CPU_DESC.
(hash_insn_array): Rewrite.
* cgen-opc.c (*): CGEN_OPCODE_DESC renamed to CGEN_CPU_DESC.
(cgen_lookup_insn,cgen_get_insn_operands): Define here.
(cgen_lookup_get_insn_operands): Ditto.
* fr30-asm.c, fr30-dis.c, fr30-opc.c, fr30-opc.h: Regenerate.
* m32r-asm.c, m32r-dis.c, m32r-opc.c, m32r-opc.h: Regenerate.
* po/POTFILES.in: Rebuild.
* po/opcodes.pot: Rebuild.
Fri Feb 5 00:04:24 1999 Ian Lance Taylor <ian@cygnus.com>
* Makefile.am: Rebuild dependencies.
(HFILES): Add fr30-opc.h.
(CFILES): Add fr30-asm.c, fr30-dis.c, fr30-opc.c.
* Makefile.in: Rebuild.
* configure.in: Change AC_PREREQ to 2.13. Remove AM_CYGWIN32.
Change AM_EXEEXT to AC_EXEEXT and AM_PROG_INSTALL to
AC_PROG_INSTALL.
* acconfig.h: Remove.
* configure: Rebuild with current autoconf/automake.
* aclocal.m4: Likewise.
* config.in: Likewise.
* Makefile.in: Likewise.
Thu Feb 4 13:48:52 1999 Ian Lance Taylor <ian@cygnus.com>
* m68k-opc.c: Correct move (not movew) to status word on 5200.
Mon Feb 1 20:54:36 1999 Catherine Moore <clm@cygnus.com>
* disassemble.c (disassembler): Handle bfd_mach_i386_i386_intel_syntax.
* i386-dis.c (x_mode): Define.
(dis386): Remove.
(dis386_att): New.
(dis386_intel): New.
(dis386_twobyte): Remove.
(dis386_twobyte_att): New.
(dis386_twobyte_intel): New.
(print_insn_x86): Use new arrays.
(float_mem): Remove.
(float_mem_intel): New.
(float_mem_att): New.
(dofloat): Use new float_mem arrays.
(print_insn_i386_att): New.
(print_insn_i386_intel): New.
(print_insn_i386): Handle bfd_mach_i386_i386_intel_syntax.
(putop): Handle intel syntax.
(OP_indirE): Handle intel syntax.
(OP_E): Handle intel syntax.
(OP_I): Handle intel syntax.
(OP_sI): Handle intel syntax.
(OP_OFF): Handle intel syntax.
1999-01-27 Doug Evans <devans@casey.cygnus.com>
* fr30-opc.h, fr30-opc.c: Rebuild.
* i960c-opc.h, i960c-opc.c: Rebuild.
* m32r-opc.c: Rebuild.
Tue Jan 19 18:01:54 1999 David Taylor <taylor@texas.cygnus.com>
* hppa-dis.c: revert HP merge changes until HP gives us
an updated file.
1999-01-19 Nick Clifton <nickc@cygnus.com>
* arm-dis.c (print_insn_arm): Display ARM syntax for PC relative
offsets as well as symbloic address.
Tue Jan 19 10:51:01 1999 David Taylor <taylor@texas.cygnus.com>
* hppa-dis.c: fix comments and some indentation.
1999-01-12 Doug Evans <devans@casey.cygnus.com>
* fr30-opc.c, i960c-opc.c: Regenerate.
1999-01-11 Doug Evans <devans@casey.cygnus.com>
* fr30-opc.c: Regenerate.
1999-01-06 Doug Evans <devans@casey.cygnus.com>
* m32r-dis.c: Regenerate.
1999-01-05 Doug Evans <devans@casey.cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.h, fr30-opc.c: Regenerate.
* i960c-asm.c, i960c-dis.c, i960c-opc.h, i960c-opc.c: Regenerate.
* m32r-asm.c, m32r-dis.c, m32r-opc.h, m32r-opc.c: Regenerate.
1999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
* configure.in: Require autoconf 2.12.1 or higher.
1998-12-30 Gavin Romig-Koch <gavin@cygnus.com>
* mips16-opc.c: Mark branch insns with MIPS16_INSN_BRANCH.
Wed Dec 16 16:17:49 1998 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c: Regenerated.
1998-12-16 Gavin Romig-Koch <gavin@cygnus.com>
* mips-dis.c (set_mips_isa_type): Handle bfd_mach_mips4111.
1998-12-15 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c, fr30-opc.h: Regenerated.
1998-12-14 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c, fr30-opc.h: Regenerated.
Thu Dec 10 18:39:46 1998 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c, fr30-opc.h: Regenerated.
Thu Dec 10 12:49:24 1998 Doug Evans <devans@canuck.cygnus.com>
* m32r-opc.c: Regenerate.
Tue Dec 8 13:56:18 1998 David Taylor <taylor@texas.cygnus.com>
* dis-buf.c (generic_strcat_address): reformat to GNU coding
conventions. change sprintf call to an sprintf_vma call.
Tue Dec 8 13:12:44 1998 Dave Brolley <brolley@cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.c, fr30-opc.h: Regenerated.
Tue Dec 8 10:50:46 1998 David Taylor <taylor@texas.cygnus.com>
The following changes were made by
Elena Zannoni <ezannoni@kwikemart.cygnus.com>,
David Taylor <taylor@texas.cygnus.com>, and
Edith Epstein <eepstein@sophia.cygnus.com> as part of a project to
merge in changes by HP; HP did not create ChangeLog entries.
* dis-buf.c (generic_strcat_address): new function.
* hppa-dis.c: Changes to improve hppa disassembly.
Changed formatting in : reg_names, fp_reg_names,control_reg,
New variables : sign_extension_names, deposit_names, conversion_names
float_test_names, compare_cond_names_double, add_cond_names_double,
logical_cond_names_double, unit_cond_names_double,
branch_push_pop_names, saturation_names, shift_names, mix_names,
New Macros : GET_COMPL_O, GET_PUSH_POP,MERGED_REG
Move some definitions to libhppa.h: GET_FIELD, GET_BIT
(fput_const): renamed as fput_hex_const
(print_insn_hppa):
- use the macros fputs_filtered and
fput_decimal_const whenever possible; calls to sign_extend require
2 params -- add a missing second param of 0.
- Some new code ifdefed for LOCAL_ONLY, all related to figuring out
architecture version number of current machine. HP folks are
trying to handle situation where the target program was compiled
for PA 1.x (32-bit), but is running on a PA 2.0 machine and
visa versa.
- added new cases : 'g', 'B', 'm'
- added cases specifically for PA 2.0
- changed the following cases : '"', 'n', 'N', 'p', 'Z',
- calls to fput_const become calls to fput_hex_const
1998-12-07 James E Wilson <wilson@wilson-pc.cygnus.com>
* Makefile.am (CFILES): Add i960c-asm, i960c-dis.c, i960c-opc.c.
(ALL_MACHINES): Add i960c-asm.lo, i960c-dis.lo, i960-opc.lo.
(i960-asm.lo, i960c-dis.lo, i960c-opc.lo): New Makefile rules.
* Makefile.in: Rebuilt.
* configure.in (bfd_i960_arch): Add i960c-opc.lo, i960-asm.o,
i960-dis.c to ta.
* i960-dis.c (print_insn_i960): Rename to print_insn_i960_orig.
* i960c-asm.c, i960c-dis.c, i960c-opc.c, i960c-opc.h: New files.
Mon Dec 7 14:33:44 1998 Dave Brolley <brolley@cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.c, fr30-opc.h: Regenerated.
Sun Dec 6 14:06:48 1998 Ian Lance Taylor <ian@cygnus.com>
* mips-opc.c (mips_builtin_opcodes): Add dmfc2 and dmtc2.
* ppc-opc.c (powerpc_opcodes): Add PowerPC403 GC[X] instructions.
From Saitoh Masanobu <msaitoh@spa.is.uec.ac.jp>.
Fri Dec 4 17:45:51 1998 Doug Evans <devans@canuck.cygnus.com>
* fr30-opc.c: Regenerate.
Fri Dec 4 17:08:08 1998 Dave Brolley <brolley@cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.c, fr30-opc.h: Regenerated.
Thu Dec 3 14:26:20 1998 Dave Brolley <brolley@cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.c, fr30-opc.h: Regenerated.
Thu Dec 3 00:09:17 1998 Doug Evans <devans@canuck.cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.c, fr30-opc.h: Regenerate.
1998-11-30 Doug Evans <devans@casey.cygnus.com>
* cgen-dis.c (hash_insn_array): CGEN_INSN_VALUE ->
CGEN_INSN_BASE_VALUE.
* m32r-opc.c, m32r-opc.h, m32r-asm.c, m32r-dis.c: Regenerate.
* fr30-opc.c, fr30-opc.h, fr30-asm.c, fr30-dis.c: Regenerate.
Thu Nov 26 11:26:32 1998 Dave Brolley <brolley@cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.c: Regenerated.
Tue Nov 24 11:20:54 1998 Dave Brolley <brolley@cygnus.com>
* fr30-asm.c, fr30-dis.c: Regenerated.
Mon Nov 23 18:28:48 1998 Dave Brolley <brolley@cygnus.com>
* fr30-asm.c, fr30-dis.c, fr30-opc.c, fr30-opc.h: Regenerated.
1998-11-20 Doug Evans <devans@tobor.to.cygnus.com>
* fr30-opc.c: Regenerated.
Thu Nov 19 16:02:46 1998 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c: Regenerated.
* fr30-opc.h: Regenerated.
* fr30-dis.c: Regenerated.
* fr30-asm.c: Regenerated.
Thu Nov 19 07:54:15 1998 Doug Evans <devans@charmed.cygnus.com>
* mips-opc.c (sync.p,sync.l): Swap insn values.
1998-11-19 Doug Evans <devans@tobor.to.cygnus.com>
* fr30-opc.c: Regenerate.
Wed Nov 18 21:36:37 1998 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c: Regenerated.
* fr30-opc.h: Regenerated.
1998-11-18 Doug Evans <devans@casey.cygnus.com>
* m32r-asm.c, m32r-dis.c, m32r-opc.c: Rebuild.
* fr30-asm.c, fr30-dis.c, fr30-opc.c: Rebuild.
Wed Nov 18 11:30:04 1998 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c: Regenerated.
Mon Nov 16 19:21:48 1998 Dave Brolley <brolley@cygnus.com>
* fr30-opc.c: Regenerated.
* fr30-opc.h: Regenerated.
* fr30-dis.c: Regenerated.
* fr30-asm.c: Regenerated.
Thu Nov 12 19:24:18 1998 Dave Brolley <brolley@cygnus.com>
* po/opcodes.pot: Regenerated.
* fr30-opc.c: Regenerated.
* fr30-opc.h: Regenerated.
* fr30-dis.c: Regenerated.
* fr30-asm.c: Regenerated.
Tue Nov 10 15:26:27 1998 Nick Clifton <nickc@cygnus.com>
* disassemble.c (disassembler): Add support for FR30 target.
Tue Nov 10 11:00:04 1998 Doug Evans <devans@canuck.cygnus.com>
* m32r-dis.c, m32r-opc.c, m32r-opc.h: Rebuild.
* fr30-dis.c, fr30-opc.c, fr30-opc.h: Rebuild.
Mon Nov 9 18:22:55 1998 Dave Brolley <brolley@cygnus.com>
* po/opcodes.pot: Regenerate.
* po/POTFILES.in: Regenerate.
* fr30-opc.c: Regenerate.
* fr30-opc.h: Regenerate.
Fri Nov 6 17:21:38 1998 Doug Evans <devans@canuck.cygnus.com>
* m32r-asm.c: Regenerate.
Wed Nov 4 18:46:47 1998 Dave Brolley <brolley@cygnus.com>
* configure.in: Added case for bfd_fr30_arch.
* Makefile.am (CFILES): Added fr30-asm.c, fr30-dis.c, fr30-opc.c.
(ALL_MACHINES): Added fr30-asm.lo, fr30-dis.lo, fr30-opc.lo.
(CLEANFILES): Added stamp-fr30.
(FR30_DEPS): Added.
* fr30-asm.c: New file.
* fr30-dis.c: New file.
* fr30-opc.c: New file.
* fr30-opc.h: New file.
* po/POTFILES.in: Regenerated
* po/opcodes.pot: Regenerated
Mon Nov 2 15:05:33 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: detect cygwin* instead of cygwin32*
* configure: regenerate
Tue Oct 27 08:58:37 1998 Gavin Romig-Koch <gavin@cygnus.com>
* mips-opc.c (IS_M): Added.
Mon Oct 19 13:03:19 1998 Doug Evans <devans@seba.cygnus.com>
* m32r-opc.c, m32r-opc.h, m32r-asm.c, m32r-dis.c: Regenerate.
Fri Oct 9 14:01:56 1998 Doug Evans <devans@seba.cygnus.com>
* m32r-opc.h, m32r-opc.c: Regenerate.
Sun Oct 4 21:01:44 1998 Alan Modra <alan@spri.levels.unisa.edu.au>
* i386-dis.c (OP_3DNowSuffix): New static function.
(OPSUF): Define.
(GRP14): Define.
(dis386_twobyte): Add GRP14, femms, and 3DNow entries.
(twobyte_has_modrm): Set entries corresponding to GRP14, 3DNow.
(insn_codep): New static variable.
(print_insn_x86): Init insn_codep after prefixes.
(grps): Add GRP14 entries for prefetch, prefetchw.
(OP_REG): Reformat.
From Jeff B Epler <jepler@usgs.gov>
* i386-dis.c (Suffix3DNow): New table.
Wed Sep 30 10:17:50 1998 Nick Clifton <nickc@cygnus.com>
* d10v-opc.c: Treat TRAP as if it were a branch type instruction.
Mon Sep 28 14:35:43 1998 Martin M. Hunt <hunt@cygnus.com>
* d10v-dis.c (print_operand): If num is nonzero, then
add OPERAND_ACC1, not OPERAND_ACC0.
Thu Sep 24 09:20:03 1998 Nick Clifton <nickc@cygnus.com>
* d30v-opc.c: Add FLAG_JSR attribute to DBT, REIT, RTD, and TRAP
insns.
Tue Sep 22 17:55:14 1998 Nick Clifton <nickc@cygnus.com>
* d30v-opc.c: Add use of EITHER_BUT_PREFER_MU execution unit
class.
Tue Sep 15 15:14:45 1998 Doug Evans <devans@canuck.cygnus.com>
* m32r-opc.h, m32r-opc.c: Add bbpc,bbpsw support.
1998-09-09 Michael Meissner <meissner@cygnus.com>
* ppc-opc.c (powerpc_opcodes): Add support for PowerPC 750 move
to/from SPRs.
Fri Sep 4 19:42:59 1998 Nick Clifton <nickc@cygnus.com>
* arm-dis.c (print_insn_big_arm): Detect Thumb symbols in elf
object files.
(print_insn_little_arm): Detect Thumb symbols in elf object
files.
Sat Aug 29 22:24:09 1998 Richard Henderson <rth@cygnus.com>
* alpha-dis.c (print_insn_alpha): Use the machine type to
decide which PALcode set to include.
Sun Aug 23 02:16:18 1998 Richard Henderson <rth@cygnus.com>
* sparc-opc.c (FBRX): Fix typo in ",a,pn %fcc3" case.
Fri Aug 21 16:07:52 1998 Nick Clifton <nickc@cygnus.com>
* d30v-opc.c (d30v_opcode_table): Add FLAG_MUL32 to MAC, MACS,
MSUB and MSUBS instructions.
Thu Aug 13 16:23:04 1998 Ian Lance Taylor <ian@cygnus.com>
* ppc-opc.c (powerpc_operands): Omit parens around additions in
operand name macros.
Wed Aug 12 14:00:38 1998 Ian Lance Taylor <ian@cygnus.com>
From Peter Jeremy <peter.jeremy@auss2.alcatel.com.au>:
* m68k-opc.c: Correct mulsl and mulul to use q rather than D, a,
+, -, and d for ColdFire.
From Peter Thiemann <thiemann@informatik.uni-tuebingen.de>:
* ppc-opc.c (insert_mbe): Handle wrapping bitmasks.
(extract_mbe): Likewise.
Wed Aug 12 11:11:34 1998 Jeffrey A Law (law@cygnus.com)
* m10300-opc.c: Fix typo in udf20 .. udf25 instruction opcodes.
* m10300-opc.c: First cut at UDF instructions.
Mon Aug 10 14:08:22 1998 Doug Evans <devans@canuck.cygnus.com>
* m32r-opc.c: Regenerate (remove semantic descriptions).
Mon Aug 10 12:51:12 1998 Catherine Moore <clm@cygnus.com>
* arm-dis.c (print_insn_big_arm): Fix indentation.
(print_insn_little_arm): Likewise.
Sun Aug 9 20:17:28 1998 Catherine Moore <clm@cygnus.com>
* arm-dis.c (print_insn_big_arm): Check for thumb symbol
attributes.
(print_insn_little_arm): Likewise.
Mon Aug 3 12:43:16 1998 Doug Evans <devans@seba.cygnus.com>
Move all global state data into opcode table struct, and treat
opcode table as something that is "opened/closed".
* cgen-asm.c (all fns): New first arg of opcode table descriptor.
(cgen_asm_init): Delete.
(cgen_set_parse_operand_fn): New function.
* cgen-dis.c (all fns): New first arg of opcode table descriptor.
(cgen_dis_init): Delete.
* cgen-opc.c (all fns): New first arg of opcode table descriptor.
(cgen_current_{opcode_table_mach,endian}): Delete.
* m32r-asm.c, m32r-dis.c, m32r-opc.c, m32r-opc.h: Regenerate.
Thu Jul 30 21:41:10 1998 Frank Ch. Eigler <fche@cygnus.com>
* d30v-opc.c (d30v_opcode_table): Add new "LKR" flag to some
instructions.
Tue Jul 28 11:00:09 1998 Jeffrey A Law (law@cygnus.com)
* m10300-opc.c: Add entries for "no_match_operands" field in
the opcode table.
Fri Jul 24 11:41:37 1998 Doug Evans <devans@canuck.cygnus.com>
* m32r-asm.c, m32r-opc.c: Regenerate (-Wall cleanups).
Tue Jul 21 13:41:07 1998 Doug Evans <devans@seba.cygnus.com>
* m32r-opc.h, m32r-opc.c, m32r-asm.c, m32r-dis.c: Regenerate.
Mon Jul 13 14:53:59 1998 Alan Modra <alan@spri.levels.unisa.edu.au>
* i386-dis.c (ckprefix): Handle fwait specially only when it isn't
the first prefix.
(dofloat): Correct test for fnstsw. Print `fnstsw %ax' rather
than `fnstsw %eax'.
(OP_J): Remove unnecessary subtraction when 16-bit displacement
will be masked later.