Fix various assembler testsuite failures for the Z80 target.
[deliverable/binutils-gdb.git] / opcodes / ChangeLog
1 2020-01-14 Sergey Belyashov <sergey.belyashov@gmail.com>
2
3 PR 25377
4 * z80-dis.c (suffix): Use .db instruction to generate double
5 prefix.
6
7 2020-01-14 Alan Modra <amodra@gmail.com>
8
9 * z8k-dis.c (unpack_instr): Formatting. Cast unsigned short
10 values to unsigned before shifting.
11
12 2020-01-13 Thomas Troeger <tstroege@gmx.de>
13
14 * arm-dis.c (print_insn_arm): Fill in insn info fields for control
15 flow instructions.
16 (print_insn_thumb16, print_insn_thumb32): Likewise.
17 (print_insn): Initialize the insn info.
18 * i386-dis.c (print_insn): Initialize the insn info fields, and
19 detect jumps.
20
21 2012-01-13 Claudiu Zissulescu <claziss@gmail.com>
22
23 * arc-opc.c (C_NE): Make it required.
24
25 2012-01-13 Claudiu Zissulescu <claziss@gmail.com>
26
27 * opcode/arc-dis.c (regnames): Correct ACCL/ACCH naming, fix typo
28 reserved register name.
29
30 2020-01-13 Alan Modra <amodra@gmail.com>
31
32 * ns32k-dis.c (Is_gen): Use strchr, add 'f'.
33 (print_insn_ns32k): Adjust ioffset for 'f' index_offset.
34
35 2020-01-13 Alan Modra <amodra@gmail.com>
36
37 * wasm32-dis.c (print_insn_wasm32): Localise variables. Store
38 result of wasm_read_leb128 in a uint64_t and check that bits
39 are not lost when copying to other locals. Use uint32_t for
40 most locals. Use PRId64 when printing int64_t.
41
42 2020-01-13 Alan Modra <amodra@gmail.com>
43
44 * score-dis.c: Formatting.
45 * score7-dis.c: Formatting.
46
47 2020-01-13 Alan Modra <amodra@gmail.com>
48
49 * score-dis.c (print_insn_score48): Use unsigned variables for
50 unsigned values. Don't left shift negative values.
51 (print_insn_score32): Likewise.
52 * score7-dis.c (print_insn_score32, print_insn_score16): Likewise.
53
54 2020-01-13 Alan Modra <amodra@gmail.com>
55
56 * tic4x-dis.c (tic4x_print_register): Remove dead code.
57
58 2020-01-13 Alan Modra <amodra@gmail.com>
59
60 * fr30-ibld.c: Regenerate.
61
62 2020-01-13 Alan Modra <amodra@gmail.com>
63
64 * xgate-dis.c (print_insn): Don't left shift signed value.
65 (ripBits): Formatting, use 1u.
66
67 2020-01-10 Alan Modra <amodra@gmail.com>
68
69 * tilepro-opc.c (parse_insn_tilepro): Make opval unsigned.
70 * tilegx-opc.c (parse_insn_tilegx): Likewise. Delete raw_opval.
71
72 2020-01-10 Alan Modra <amodra@gmail.com>
73
74 * m10300-dis.c (disassemble): Move extraction of DREG, AREG, RREG,
75 and XRREG value earlier to avoid a shift with negative exponent.
76 * m10200-dis.c (disassemble): Similarly.
77
78 2020-01-09 Nick Clifton <nickc@redhat.com>
79
80 PR 25224
81 * z80-dis.c (ld_ii_ii): Use correct cast.
82
83 2020-01-03 Sergey Belyashov <sergey.belyashov@gmail.com>
84
85 PR 25224
86 * z80-dis.c (ld_ii_ii): Use character constant when checking
87 opcode byte value.
88
89 2020-01-09 Jan Beulich <jbeulich@suse.com>
90
91 * i386-dis.c (SEP_Fixup): New.
92 (SEP): Define.
93 (dis386_twobyte): Use it for sysenter/sysexit.
94 (enum x86_64_isa): Change amd64 enumerator to value 1.
95 (OP_J): Compare isa64 against intel64 instead of amd64.
96 * i386-opc.tbl (sysenter, sysexit): Split into AMD64 and Intel64
97 forms.
98 * i386-tbl.h: Re-generate.
99
100 2020-01-08 Alan Modra <amodra@gmail.com>
101
102 * z8k-dis.c: Include libiberty.h
103 (instr_data_s): Make max_fetched unsigned.
104 (z8k_lookup_instr): Make nibl_index and tabl_index unsigned.
105 Don't exceed byte_info bounds.
106 (output_instr): Make num_bytes unsigned.
107 (unpack_instr): Likewise for nibl_count and loop.
108 * z8kgen.c (gas <opcode_entry_type>): Make noperands, length and
109 idx unsigned.
110 * z8k-opc.h: Regenerate.
111
112 2020-01-07 Shahab Vahedi <shahab@synopsys.com>
113
114 * arc-tbl.h (llock): Use 'LLOCK' as class.
115 (llockd): Likewise.
116 (scond): Use 'SCOND' as class.
117 (scondd): Likewise.
118 (llockd): Set data_size_mode to 'C_ZZ_D' which is 64-bit.
119 (scondd): Likewise.
120
121 2020-01-06 Alan Modra <amodra@gmail.com>
122
123 * m32c-ibld.c: Regenerate.
124
125 2020-01-06 Alan Modra <amodra@gmail.com>
126
127 PR 25344
128 * z80-dis.c (suffix): Don't use a local struct buffer copy.
129 Peek at next byte to prevent recursion on repeated prefix bytes.
130 Ensure uninitialised "mybuf" is not accessed.
131 (print_insn_z80): Don't zero n_fetch and n_used here,..
132 (print_insn_z80_buf): ..do it here instead.
133
134 2020-01-04 Alan Modra <amodra@gmail.com>
135
136 * m32r-ibld.c: Regenerate.
137
138 2020-01-04 Alan Modra <amodra@gmail.com>
139
140 * cr16-dis.c (cr16_match_opcode): Avoid shift left of signed value.
141
142 2020-01-04 Alan Modra <amodra@gmail.com>
143
144 * crx-dis.c (match_opcode): Avoid shift left of signed value.
145
146 2020-01-04 Alan Modra <amodra@gmail.com>
147
148 * d30v-dis.c (print_insn): Avoid signed overflow in left shift.
149
150 2020-01-03 Jan Beulich <jbeulich@suse.com>
151
152 * aarch64-tbl.h (aarch64_opcode_table): Use
153 SVE_ADDR_RX_LSL{1,2,3} for LD1RO{H,W,D}.
154
155 2020-01-03 Jan Beulich <jbeulich@suse.com>
156
157 * aarch64-tbl.h (aarch64_opcode_table): Correct SIMD
158 forms of SUDOT and USDOT.
159
160 2020-01-03 Jan Beulich <jbeulich@suse.com>
161
162 * aarch64-tbl.h (aarch64_opcode_table): Drop 'i' from
163 uzip{1,2}.
164 * opcodes/aarch64-dis-2.c: Re-generate.
165
166 2020-01-03 Jan Beulich <jbeulich@suse.com>
167
168 * aarch64-tbl.h (aarch64_opcode_table): Correct 64-bit
169 FMMLA encoding.
170 * opcodes/aarch64-dis-2.c: Re-generate.
171
172 2020-01-02 Sergey Belyashov <sergey.belyashov@gmail.com>
173
174 * z80-dis.c: Add support for eZ80 and Z80 instructions.
175
176 2020-01-01 Alan Modra <amodra@gmail.com>
177
178 Update year range in copyright notice of all files.
179
180 For older changes see ChangeLog-2019
181 \f
182 Copyright (C) 2020 Free Software Foundation, Inc.
183
184 Copying and distribution of this file, with or without modification,
185 are permitted in any medium without royalty provided the copyright
186 notice and this notice are preserved.
187
188 Local Variables:
189 mode: change-log
190 left-margin: 8
191 fill-column: 74
192 version-control: never
193 End:
This page took 0.033848 seconds and 5 git commands to generate.