Make tui_locator_window::set_locator_fullname re-render
[binutils-gdb.git] / gas / ChangeLog
1 2019-08-27 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
2
3 * config/tc-arm.c (parse_neon_mov): Add check to accept vector
4 register to both the arguments in VMOV instruction.
5 * testsuite/gas/arm/mve-vmov-1.d: Modify.
6 * testsuite/gas/arm/mve-vmov-1.s: Likewise.
7 * testsuite/gas/arm/mve-vorr.d: Likewise.
8
9 2019-08-23 Nick Clifton <nickc@redhat.com>
10
11 * po/sv.po: Updated Swedish translation.
12
13 2019-08-22 Dennis Zhang <dennis.zhang@arm.com>
14
15 * config/tc-arm.c: New entries for Cortex-M35P, Cortex-A77,
16 and Cortex-A76AE.
17 * doc/c-arm.texi: Document new processors.
18 * testsuite/gas/arm/cpu-cortex-a76ae.d: New test.
19 * testsuite/gas/arm/cpu-cortex-a77.d: New test.
20 * testsuite/gas/arm/cpu-cortex-m35p.d: New test.
21
22 2019-08-22 Bosco GarcĂ­a <jbgg.gnu@gmail.com>
23 Nick Clifton <nickc@redhat.com>
24
25 * atof-generic.c (atof_generic): Do not ignore leading zeros if
26 they appear after a decimal point.
27 * testsuite/gas/all/float.s: Extend test to include a number with
28 a leading decimal point followed by several zeroes.
29 * testsuite/gas/i386/fp.s: Likewise.
30 * testsuite/gas/i386/fp.d: Update expected output.
31
32 2019-08-22 Barnaby Wilks <barnaby.wilks@arm.com>
33
34 * config/tc-aarch64.c: Add float16 directive and add "Hh" to
35 acceptable float characters.
36 * doc/c-aarch64.texi: Documentation for float16 directive.
37 * testsuite/gas/aarch64/float16-be.d: New test.
38 * testsuite/gas/aarch64/float16-le.d: New test.
39 * testsuite/gas/aarch64/float16.s: New test.
40 * NEWS: Add NEWS entry.
41
42 2019-08-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
43
44 * testsuite/gas/aarch64/sysreg-4.d: Update expected disassembly for
45 tfsre0_el1, tfsr_el1, tfsr_el2, tfsr_el3, tfsr_el12 system registers.
46
47 2019-08-20 Dennis Zhang <dennis.zhang@arm.com>
48
49 * NEWS: Mention the Arm and AArch64 new processors.
50 * config/tc-aarch64.c: New entries for Cortex-A34, Cortex-A65,
51 Cortex-A77, cortex-A65AE, and Cortex-A76AE.
52 * doc/c-aarch64.texi: Document new CPUs.
53 * testsuite/gas/aarch64/cpu-cortex-a34.d: New test.
54 * testsuite/gas/aarch64/cpu-cortex-a65.d: New test.
55 * testsuite/gas/aarch64/cpu-cortex-a65ae.d: New test.
56 * testsuite/gas/aarch64/cpu-cortex-a76ae.d: New test.
57 * testsuite/gas/aarch64/cpu-cortex-a77.d: New test.
58 * testsuite/gas/aarch64/nop-asm.s: New test.
59
60 2019-08-19 Faraz Shahbazker <fshahbazker@wavecomp.com>
61
62 * config/tc-mips.c (fix_bad_misaligned_address): New function.
63 (fix_validate_branch): Call fix_bad_misaligned address_to
64 calculate the target address.
65 (md_apply_fix): Likewise.
66 (md_convert_frag): Update misaligned address calculation to
67 disregard ISA mode bit.
68
69 2019-08-19 Faraz Shahbazker <fshahbazker@wavecomp.com>
70
71 * config/tc-mips.c (mips_move_labels): Retain ISA mode bit
72 when moving labels in text segments.
73 (mips_align): Indicate text mode when aligning labels in
74 text segments.
75 * gas/testsuite/gas/mips/insn-isa-mode.d: New test.
76 * gas/testsuite/gas/mips/insn-isa-mode.s: New test source.
77 * gas/testsuite/gas/mips/mips.exp: Run the new test.
78
79 2019-08-19 Barnaby Wilks <Barnaby.Wilks@arm.com>
80
81 * config/tc-arm.c (md_atof): Add precision check. Formatting.
82
83 2019-08-15 Nick Clifton <nickc@redhat.com>
84
85 * po/sv.po: Updated Swedish translation.
86
87 2019-08-12 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
88
89 * config/tc-arm.c (enum operand_parse_code): Add the entry OP_I48_I64.
90 (po_imm1_or_imm2_or_fail): Marco to check the immediate is either of
91 48 or 64.
92 (parse_operands): Add case OP_I48_I64.
93 (do_mve_scalar_shift1): Add function to encode the MVE shift
94 instructions with 4 arguments.
95 * testsuite/gas/arm/mve-shift-bad.l: Modify.
96 * testsuite/gas/arm/mve-shift-bad.s: Likewise.
97 * testsuite/gas/arm/mve-shift.d: Likewise.
98 * testsuite/gas/arm/mve-shift.s: Likewise.
99
100 2019-08-12 Barnaby Wilks <barnaby.wilks@arm.com>
101
102 * config/tc-arm.c (enum fp_16bit_format): Add enum to represent the 2 float16 encodings.
103 (md_atof): Set precision for float16 type.
104 (arm_is_largest_exponent_ok): Check for whether to encode with the IEEE or alternative
105 format.
106 (set_fp16_format): Parse a float16_format directive.
107 (arm_parse_fp16_opt): Parse the fp16-format command line option.
108 (aeabi_set_public_attributes): For ELF encode the FP16 format EABI attribute.
109 * config/tc-arm.h (TC_LARGEST_EXPONENT_IS_NORMAL): Macro that expands to
110 arm_is_largest_exponent_ok.
111 (arm_is_largest_exponent_ok): Add prototype for arm_is_largest_exponent_ok function.
112 * doc/c-arm.texi: Add documentation for .float16, .float16_format and -mfp16-format=
113 * testsuite/gas/arm/float16-bad.d: New test.
114 * testsuite/gas/arm/float16-bad.l: New test.
115 * testsuite/gas/arm/float16-bad.s: New test.
116 * testsuite/gas/arm/float16-be.d: New test.
117 * testsuite/gas/arm/float16-format-bad.d: New test.
118 * testsuite/gas/arm/float16-format-bad.l: New test.
119 * testsuite/gas/arm/float16-format-bad.s: New test.
120 * testsuite/gas/arm/float16-format-opt-bad.d: New test.
121 * testsuite/gas/arm/float16-format-opt-bad.l: New test.
122 * testsuite/gas/arm/float16-le.d: New test.
123 * testsuite/gas/arm/float16.s: New test.
124 * testsuite/gas/arm/float16-eabi-alternative-format.d: New test.
125 * testsuite/gas/arm/float16-eabi-ieee-format.d: New test.
126 * testsuite/gas/arm/float16-eabi-no-format.d: New test.
127 * testsuite/gas/arm/float16-eabi.s: New test.
128
129 2019-08-12 Barnaby Wilks <barnaby.wilks@arm.com>
130
131 * config/atof-ieee.c (H_PRECISION): Macro for precision of float16
132 type.
133 (atof_ieee): Set precision and exponent bits for encoding float16
134 types.
135 (gen_to_words): NaN and Infinity encoding for float16.
136 (ieee_md_atof): Set precision for encoding float16 type.
137
138 2019-08-12 Alan Modra <amodra@gmail.com>
139
140 PR 24851
141 * config/tc-epiphany.c (md_estimate_size_before_relax): Clear
142 extra opcode bytes when changing from a 2-byte to a 4-byte insn.
143
144 2019-08-09 Jan Beulich <jbeulich@suse.com>
145
146 * testsuite/gas/i386/ilp32/x86-64-simd-intel.d,
147 testsuite/gas/i386/ilp32/x86-64-simd-suffix.d,
148 testsuite/gas/i386/ilp32/x86-64-simd.d: Redirect to parent dir
149 output expectations.
150 * testsuite/gas/i386/x86-64-simd-intel.d,
151 testsuite/gas/i386/x86-64-simd-suffix.d,
152 testsuite/gas/i386/x86-64-simd.d: Don't hard-code hex addresses
153 and symbol-relative offsets.
154
155 2019-08-08 Nick Clifton <nickc@redhat.com>
156
157 PR 24887
158 * testsuite/gas/i386/property-1.d: Adjust for new output format
159 from readelf.
160 * testsuite/gas/i386/property-2.d: Likewise.
161 * testsuite/gas/i386/x86-64-property-1.d: Likewise.
162 * testsuite/gas/i386/x86-64-property-2.d: Likewise.
163
164 2019-08-08 Yoshinori Sato <ysato@users.sourceforge.jp>
165
166 * testsuite/gas/h8300/h8300.exp: Fix movfpe and movtpe tests.
167 * testsuite/gas/h8300/misc.s: Likewise.
168 * testsuite/gas/h8300/misch.s: Likewise.
169 * testsuite/gas/h8300/miscs.s: Likewise.
170
171 2019-08-05 Barnaby Wilks <barnaby.wilks@arm.com>
172
173 * config/tc-arm.c (do_mve_vqdmlah): Use N_S_32 macro.
174 (do_neon_qrdmlah): Use N_S_32 macro.
175 * testsuite/gas/arm/mve-vqdmlah-bad.d: New test.
176 * testsuite/gas/arm/mve-vqdmlah-bad.l: New test.
177 * testsuite/gas/arm/mve-vqdmlah-bad.s: New test.
178 * testsuite/gas/arm/mve-vqdmlah.d: Remove unsigned instruction tests.
179 * testsuite/gas/arm/mve-vqdmlah.s: Remove unsigned instruction tests.
180 * testsuite/gas/arm/mve-vqdmlash-bad.d: New test.
181 * testsuite/gas/arm/mve-vqdmlash-bad.l: New test.
182 * testsuite/gas/arm/mve-vqdmlash-bad.s: New test.
183 * testsuite/gas/arm/mve-vqdmlash.d: Remove unsigned instruction tests.
184 * testsuite/gas/arm/mve-vqdmlash.s: Remove unsigned instruction tests.
185
186 2019-07-30 Mel Chen <mel.chen@sifive.com>
187
188 * testsuite/gas/riscv/alias-csr.s: Add testcase for CSR-access
189 alias instructions.
190 * testsuite/gas/riscv/no-aliases-csr.d: Run testcase alias-csr.s with
191 -Mno-aliases.
192
193 * testsuite/gas/riscv/alias-csr.d: Run testcase alias-csr.s.
194 * testsuite/gas/riscv/priv-reg.d: Update.
195
196 2019-07-24 Nick Clifton <nickc@redhat.com>
197
198 * po/sv.po: Updated Swedish translation.
199
200 2019-07-24 Claudiu Zissulescu <claziss@synopsys.com>
201
202 * testsuite/gas/arc/nps400-6.d: Update test.
203
204 2019-07-24 Alan Modra <amodra@gmail.com>
205
206 * config/obj-elf.c (obj_elf_section, obj_elf_type): Set has_gnu_osabi.
207 * testsuite/gas/elf/section12a.d: Update xfails.
208 * testsuite/gas/elf/section12b.d: Likewise.
209
210 2019-07-24 Alan Modra <amodra@gmail.com>
211
212 * testsuite/gas/elf/section12a.d: xfail visium and cloudabi.
213 * testsuite/gas/elf/section12b.d: Likewise.
214 * testsuite/gas/elf/section13.d: Likewise.
215
216 2019-07-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
217
218 * testsuite/gas/aarch64/sysreg-4.s: Test gmid_el1 read.
219 * testsuite/gas/aarch64/sysreg-4.d: Update expected output.
220 * testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
221
222 2019-07-23 Alan Modra <amodra@gmail.com>
223
224 * config/obj-elf.c (obj_elf_change_section): Don't emit a fatal
225 error for non-SHF_ALLOC SHF_GNU_MBIND here.
226 (obj_elf_parse_section_letters): Return SHF_GNU_MBIND in new
227 gnu_attr param.
228 (obj_elf_section): Adjust obj_elf_parse_section_letters call.
229 Formatting. Set SHF_GNU_MBIND and elf_osabi from gnu_attr.
230 Emit normal error for non-SHF_ALLOC SHF_GNU_MBIND and wrong osabi.
231 (obj_elf_type): Set elf_osabi for ifunc.
232 * testsuite/gas/elf/section12a.d: xfail msp430 and hpux.
233 * testsuite/gas/elf/section12b.d: Likewise.
234 * testsuite/gas/elf/section13.d: Likewise.
235 * testsuite/gas/elf/section13.l: Adjust expected error.
236
237 2019-07-23 Alan Modra <amodra@gmail.com>
238
239 * testsuite/gas/elf/section12a.d: Don't skip for rx.
240
241 2019-07-22 Barnaby Wilks <barnaby.wilks@arm.com>
242
243 * config/tc-arm.c (do_mve_vqdmladh): Remove check for UNPREDICTABLE.
244 * testsuite/gas/arm/mve-vqdmladh-bad.l: Remove tests.
245 * testsuite/gas/arm/mve-vqdmladh-bad.s: Remove tests.
246 * testsuite/gas/arm/mve-vqdmladh.d: New tests.
247 * testsuite/gas/arm/mve-vqdmladh.s: New tests.
248 * testsuite/gas/arm/mve-vqdmlsdh-bad.l: Remove tests.
249 * testsuite/gas/arm/mve-vqdmlsdh-bad.s: Remove tests.
250 * testsuite/gas/arm/mve-vqdmlsdh.d: New tests.
251 * testsuite/gas/arm/mve-vqdmlsdh.s: New tests.
252
253 2019-07-19 H.J. Lu <hongjiu.lu@intel.com>
254
255 * testsuite/gas/i386/noextreg.d: Pass -O0 to assembler.
256
257 2019-07-19 Jose E. Marchesi <jose.marchesi@oracle.com>
258
259 * testsuite/gas/bpf/alu.d: Use %r6 instead of %ctx.
260 * testsuite/gas/bpf/lddw-be.d: Likewise.
261 * testsuite/gas/bpf/lddw.d: Likewise.
262 * testsuite/gas/bpf/alu-be.d: Likewise.
263 * testsuite/gas/bpf/alu32.d: Likewise.
264
265 2019-07-19 Jose E. Marchesi <jose.marchesi@oracle.com>
266
267 * config/tc-bpf.c (pe_lcomm_internal): Adapted from tc-i386.c.
268 (pe_lcomm): Likewise.
269 (md_pseudo_table): Use pe_lcomm to implement .lcomm.
270
271 2019-07-19 Richard Sandiford <richard.sandiford@arm.com>
272
273 * doc/c-aarch64.texi: Remame the +bitperm extension to +sve2-bitperm.
274 * config/tc-aarch64.c (aarch64_features): Likewise.
275 * testsuite/gas/aarch64/illegal-sve2-aes.d: Update accordingly.
276 * testsuite/gas/aarch64/illegal-sve2-sha3.d: Likewise.
277 * testsuite/gas/aarch64/illegal-sve2-sm4.d: Likewise.
278 * testsuite/gas/aarch64/illegal-sve2.d: Likewise.
279 * testsuite/gas/aarch64/sve2.d: Likewise.
280
281 2019-07-19 Alan Modra <amodra@gmail.com>
282
283 * config/tc-ppc.c (ppc_elf_suffix): Map "tls@pcrel", "got@tlsgd@pcrel",
284 "got@tlsld@pcrel", "got@tprel@pcrel", and "got@dtprel@pcrel".
285 (fixup_size, md_assemble): Handle pcrel tls relocs.
286 (ppc_force_relocation, ppc_fix_adjustable): Likewise.
287 (md_apply_fix, tc_gen_reloc): Likewise.
288
289 2019-07-17 Jose E. Marchesi <jose.marchesi@oracle.com>
290
291 * config/tc-bpf.c: Make .lcomm to get a third argument with the
292 alignment.
293
294 2019-07-17 Jose E. Marchesi <jose.marchesi@oracle.com>
295
296 * config/tc-bpf.c (md_pseudo_table): .half, .word and .dword.
297
298 * testsuite/gas/bpf/data.s: New file.
299 * testsuite/gas/bpf/data.d: Likewise.
300 * testsuite/gas/bpf/data-be.d: Likewise.
301 * testsuite/gas/bpf/bpf.exp: Run data and data-be.
302 * doc/c-bpf.texi (BPF Directives): New section.
303
304 2019-07-17 Jan Beulich <jbeulich@suse.com>
305
306 * config/tc-i386.c (check_hle, md_assemble, check_VecOperands,
307 match_template, check_string, build_modrm_byte): Replace
308 operand_type_check(..., anymem) by Operand_Mem ones.
309 (process_operands): Also copy i.flags[] when copying other
310 operand properties.
311
312 2019-07-16 Jan Beulich <jbeulich@suse.com>
313
314 * config/tc-i386.c (match_template): Adjust regmem reference.
315 Adjust comment and update regmem when swapping operands.
316 (build_modrm_byte): Drop clearing of regmem and stale part of
317 comment. Correct comment. Adjust regmem reference.
318
319 2019-07-16 Jan Beulich <jbeulich@suse.com>
320
321 * config/tc-i386.c (type_names): Replace SReg entries.
322 (pi, check_byte_reg, build_modrm_byte, i386_att_operand,
323 parse_real_register): Switch to using sreg field.
324 (process_operands): Likewise. Extend handling of PUSH/POP of
325 segment registers. Drop dead setting of REX_B.
326 * config/tc-i386-intel.c (i386_intel_simplify_register,
327 i386_intel_operand): Switch to using sreg field.
328 * testsuite/gas/i386/x86-64-opcode.s: Add PUSH/POP of %fs/%gs.
329 * testsuite/gas/i386/x86-64-opcode.d: Adjust expectations.
330 * testsuite/gas/i386/ilp32/x86-64-opcode.d: Use parent dir
331 expectations.
332
333 2019-07-15 Jose E. Marchesi <jose.marchesi@oracle.com>
334
335 * testsuite/gas/bpf/mem.s: ldabs instructions do not take a `src'
336 register as an argument.
337 * testsuite/gas/bpf/mem.d: Updated accordingly.
338 * testsuite/gas/bpf/mem-be.d: Likewise.
339 * doc/c-bpf.texi (BPF Opcodes): Update to reflect the correct
340 explicit arguments to ldabs and ldind instructions.
341
342 2019-07-14 Jose E. Marchesi <jose.marchesi@oracle.com>
343
344 * testsuite/gas/bpf/mem.s: Do not use explicit arguments for
345 ldabs and ldind instructions.
346 * testsuite/gas/bpf/mem.d: Updated accordingly.
347 * testsuite/gas/bpf/mem-be.d: Likewise.
348
349 2019-07-09 Alan Modra <amodra@gmail.com>
350
351 * config/obj-elf.c (elf_frob_symbol): Remove mips hacks.
352 * config/tc-mips.h (tc_frob_symbol): Define.
353 (mips_frob_symbol): Declare.
354 * config/tc-mips.c (s_mips_globl): Don't set BSF_OBJECT for irix.
355 (mips_frob_symbol): Fudge symbols for irix here.
356 * testsuite/gas/elf/type-2.e: Allow random target symbols.
357
358 2019-07-05 Kito Cheng <kito.cheng@sifive.com>
359
360 * doc/c-riscv.texi (Instruction Formats): Add r4 type.
361 * testsuite/gas/riscv/insn.d: Add testcase for r4 type.
362 * testsuite/gas/riscv/insn.s: Ditto.
363
364 * doc/c-riscv.texi (Instruction Formats): Add b and j type.
365 * testsuite/gas/riscv/insn.d: Add test case for b and j type.
366 * testsuite/gas/riscv/insn.s: Ditto.
367
368 * testsuite/gas/riscv/insn.s: Correct instruction type for load
369 and store.
370
371 * testsuite/gas/riscv/insn.d: Using regular expression to match
372 address.
373
374 * doc/c-riscv.texi (Instruction Formats): Fix encoding table for SB
375 type and fix typo.
376
377 2019-07-04 Jan Beulich <jbeulich@suse.com>
378
379 * config/tc-i386.c (md_parse_option): Don't blindly accept all
380 -Q options.
381 (md_show_usage): Correctly name the ignored -Q option flavors.
382
383 2019-07-04 Jan Beulich <jbeulich@suse.com>
384
385 * config/obj-elf.c (obj_elf_type): Check for conflicts between
386 old and new types.
387 * config/tc-hppa.h (md_elf_symbol_type_change): New.
388 * doc/as.texi: Mention warning behavior for the ELF flavor of
389 .type.
390 * testsuite/gas/elf/type-2.e, testsuite/gas/elf/type-2.l,
391 testsuite/gas/elf/type-2.s: New.
392 * testsuite/gas/elf/elf.exp: Run new test.
393
394 2019-07-03 Nick Clifton <nickc@redhat.com>
395
396 * testsuite/gas/aarch64/codealign.d: Update to work with a
397 toolchain configured to generate build notes.
398 * testsuite/gas/aarch64/codealign_1.d: Likewise.
399 * testsuite/gas/aarch64/dwarf.d: Likewise.
400 * testsuite/gas/aarch64/mapmisc.d: Likewise.
401 * testsuite/gas/aarch64/mapping.d: Likewise.
402 * testsuite/gas/aarch64/mapping2.d: Likewise.
403 * testsuite/gas/aarch64/mapping3.d: Likewise.
404 * testsuite/gas/aarch64/mapping4.d: Likewise.
405 * testsuite/gas/aarch64/mapping_5.d: Likewise.
406 * testsuite/gas/aarch64/mapping_6.d: Likewise.
407 * testsuite/gas/aarch64/sve-movprfx_1.d: Likewise.
408 * testsuite/gas/aarch64/sve-movprfx_10.d: Likewise.
409 * testsuite/gas/aarch64/sve-movprfx_11.d: Likewise.
410 * testsuite/gas/aarch64/sve-movprfx_12.d: Likewise.
411 * testsuite/gas/aarch64/sve-movprfx_13.d: Likewise.
412 * testsuite/gas/aarch64/sve-movprfx_14.d: Likewise.
413 * testsuite/gas/aarch64/sve-movprfx_15.d: Likewise.
414 * testsuite/gas/aarch64/sve-movprfx_16.d: Likewise.
415 * testsuite/gas/aarch64/sve-movprfx_17.d: Likewise.
416 * testsuite/gas/aarch64/sve-movprfx_18.d: Likewise.
417 * testsuite/gas/aarch64/sve-movprfx_19.d: Likewise.
418 * testsuite/gas/aarch64/sve-movprfx_2.d: Likewise.
419 * testsuite/gas/aarch64/sve-movprfx_20.d: Likewise.
420 * testsuite/gas/aarch64/sve-movprfx_21.d: Likewise.
421 * testsuite/gas/aarch64/sve-movprfx_22.d: Likewise.
422 * testsuite/gas/aarch64/sve-movprfx_23.d: Likewise.
423 * testsuite/gas/aarch64/sve-movprfx_24.d: Likewise.
424 * testsuite/gas/aarch64/sve-movprfx_25.d: Likewise.
425 * testsuite/gas/aarch64/sve-movprfx_26.d: Likewise.
426 * testsuite/gas/aarch64/sve-movprfx_27.d: Likewise.
427 * testsuite/gas/aarch64/sve-movprfx_3.d: Likewise.
428 * testsuite/gas/aarch64/sve-movprfx_4.d: Likewise.
429 * testsuite/gas/aarch64/sve-movprfx_5.d: Likewise.
430 * testsuite/gas/aarch64/sve-movprfx_6.d: Likewise.
431 * testsuite/gas/aarch64/sve-movprfx_7.d: Likewise.
432 * testsuite/gas/aarch64/sve-movprfx_8.d: Likewise.
433 * testsuite/gas/aarch64/sve-movprfx_9.d: Likewise.
434 * testsuite/gas/aarch64/symbol-variant_pcs-1.d: Likewise.
435 * testsuite/gas/aarch64/symbol-variant_pcs-2.d: Likewise.
436 * testsuite/gas/aarch64/symbol-variant_pcs-3.d: Likewise.
437 * testsuite/gas/all/assign.d: Likewise.
438 * testsuite/gas/all/none.d: Likewise.
439 * testsuite/gas/all/weakref1.d: Likewise.
440 * testsuite/gas/arm/got_prel.d: Likewise.
441 * testsuite/gas/arm/local_function.d: Likewise.
442 * testsuite/gas/arm/mapdir.d: Likewise.
443 * testsuite/gas/arm/mapmisc.d: Likewise.
444 * testsuite/gas/arm/mapping2.d: Likewise.
445 * testsuite/gas/arm/mapping3.d: Likewise.
446 * testsuite/gas/arm/mapping4.d: Likewise.
447 * testsuite/gas/arm/mapsecs.d: Likewise.
448 * testsuite/gas/arm/mapshort-eabi.d: Likewise.
449 * testsuite/gas/arm/thumbrel.d: Likewise.
450 * testsuite/gas/arm/unwind.d: Likewise.
451 * testsuite/gas/cfi/cfi-label.d: Likewise.
452 * testsuite/gas/elf/elf.exp: Likewise.
453 * testsuite/gas/i386/bss.d: Likewise.
454 * testsuite/gas/i386/ifunc-3.d: Likewise.
455 * testsuite/gas/i386/ilp32/mixed-mode-reloc64.d: Likewise.
456 * testsuite/gas/i386/ilp32/quad.d: Likewise.
457 * testsuite/gas/i386/ilp32/reloc64.d: Likewise.
458 * testsuite/gas/i386/ilp32/x86-64-size-1.d: Likewise.
459 * testsuite/gas/i386/ilp32/x86-64-size-3.d: Likewise.
460 * testsuite/gas/i386/ilp32/x86-64-size-5.d: Likewise.
461 * testsuite/gas/i386/ilp32/x86-64-unwind.d: Likewise.
462 * testsuite/gas/i386/mixed-mode-reloc32.d: Likewise.
463 * testsuite/gas/i386/mixed-mode-reloc64.d: Likewise.
464 * testsuite/gas/i386/nop-6.d: Likewise.
465 * testsuite/gas/i386/property-1.d: Likewise.
466 * testsuite/gas/i386/property-2.d: Likewise.
467 * testsuite/gas/i386/relax.d: Likewise.
468 * testsuite/gas/i386/reloc64.d: Likewise.
469 * testsuite/gas/i386/size-1.d: Likewise.
470 * testsuite/gas/i386/size-3.d: Likewise.
471 * testsuite/gas/i386/x86-64-nop-6.d: Likewise.
472 * testsuite/gas/i386/x86-64-property-1.d: Likewise.
473 * testsuite/gas/i386/x86-64-property-2.d: Likewise.
474 * testsuite/gas/i386/x86-64-size-1.d: Likewise.
475 * testsuite/gas/i386/x86-64-size-3.d: Likewise.
476 * testsuite/gas/i386/x86-64-size-5.d: Likewise.
477 * testsuite/gas/i386/x86-64-unwind.d: Likewise.
478 * testsuite/gas/macros/irp.d: Likewise.
479 * testsuite/gas/macros/repeat.d: Likewise.
480 * testsuite/gas/macros/rept.d: Likewise.
481 * testsuite/gas/macros/test2.d: Likewise.
482 * testsuite/gas/macros/test3.d: Likewise.
483 * testsuite/gas/macros/vararg.d: Likewise.
484 * testsuite/gas/ppc/astest2.d: Likewise.
485 * testsuite/gas/ppc/astest2_64.d: Likewise.
486 * testsuite/gas/ppc/astest64.d: Likewise.
487 * testsuite/gas/ppc/power4.d: Likewise.
488 * testsuite/gas/ppc/test1elf64.d: Likewise.
489
490 2019-07-02 Barnaby Wilks <barnaby.wilks@arm.com>
491
492 * config/tc-aarch64.c (parse_operands): Add error check.
493 * testsuite/gas/aarch64/diagnostic.l: New test.
494 * testsuite/gas/aarch64/diagnostic.s: New test.
495 * testsuite/gas/aarch64/illegal.l: New tests.
496 * testsuite/gas/aarch64/illegal.s: New tests.
497
498 2019-07-02 Richard Sandiford <richard.sandiford@arm.com>
499
500 * testsuite/gas/aarch64/sve-movprfx_27.s,
501 * testsuite/gas/aarch64/sve-movprfx_27.d: New test.
502
503 2019-07-02 Richard Sandiford <richard.sandiford@arm.com>
504
505 * testsuite/gas/aarch64/sve-movprfx_26.s: Also test FCVTZS, FCVTZU,
506 SCVTF, UCVTF, LSR and ASR.
507 * testsuite/gas/aarch64/sve-movprfx_26.d: Update accordingly.
508 * testsuite/gas/aarch64/sve-movprfx_26.l: Likewise.
509
510 2019-07-02 Richard Sandiford <richard.sandiford@arm.com>
511
512 * testsuite/gas/aarch64/sve-movprfx_25.s: Allow CPY Z1.D.P1/M,X1
513 to be prefixed by MOVPRFX.
514 * testsuite/gas/aarch64/sve-movprfx_25.d: Update accordingly.
515 * testsuite/gas/aarch64/sve-movprfx_25.l: Likewise.
516
517 2019-07-01 Nick Clifton <nickc@redhat.com>
518
519 PR 24748
520 * write.c (create_note_reloc): Add desc2_offset parameter. Change
521 name of offset parameter to note_offset. Only use desc2_offset
522 when placing addend into REL reloc's address space.
523 (maybe_generate_build_notes): Update parameters passed to
524 create_note_reloc.
525
526 2019-07-01 Matthew Malcomson <matthew.malcomson@arm.com>
527
528 * testsuite/gas/aarch64/illegal-sve2-aes.d: Update tests.
529 * testsuite/gas/aarch64/illegal-sve2.l: Update tests.
530 * doc/c-aarch64.texi: Add special note of pmull{t,b}
531 instructions under the sve2-aes architecture extension.
532 * testsuite/gas/aarch64/illegal-sve2.s: Add small size
533 pmull{t,b} instructions.
534 * testsuite/gas/aarch64/sve2.d: Add small size pmull{t,b}
535 disassembly.
536 * testsuite/gas/aarch64/sve2.s: Add small size pmull{t,b}
537 instructions.
538
539 2019-07-01 Nick Clifton <nickc@redhat.com>
540
541 PR 24738
542 * doc/c-i386.texi (i386-Directives): Add a description of the
543 Value directive.
544
545 2019-07-01 Nick Clifton <nickc@redhat.com>
546
547 PR 24737
548 * doc/as.texi (Align): Add missing word to description of
549 pseudo-op.
550 (P2align): Likewise.
551
552 2019-06-28 Nick Clifton <nickc@redhat.com>
553
554 PR 24735
555 * doc/as.texi (Zero): Fix spelling typo.
556
557 2019-07-01 Jan Beulich <jbeulich@suse.com>
558
559 * config/tc-i386.c (vec_imm4): Delete.
560 (VEX_check_operands): Replace Vec_Imm4 check by CpuXOP with five
561 operands one. Clear Imm<N> by different means.
562 (build_modrm_byte): Adjust comment. Remove dead code. Add and
563 adjust assertions.
564
565 2019-07-01 Jan Beulich <jbeulich@suse.com>
566
567 * config/tc-i386.c (output_insn): Adjust recognition of xFENCE
568 insns. Move PadLock special case of prefix emission to 3-byte
569 long base opcode handling.
570 (i386_index_check): Check for CpuPadLock instead of ImmExt.
571
572 2019-07-01 Jan Beulich <jbeulich@suse.com>
573
574 * config/tc-i386.c (optimize_encoding): Handle AND / OR with
575 both operands being the same register.
576 * doc/c-i386.texi: Update -O2 documentation.
577 * testsuite/gas/i386/optimize-2.s,
578 testsuite/gas/i386/x86-64-optimize-3.s: Add cases of AND / OR
579 with both operands being the same register.
580 * testsuite/gas/i386/optimize-2.d,
581 testsuite/gas/i386/x86-64-optimize-3.d: Adjust expectations.
582 * testsuite/gas/i386/optimize-2b.d,
583 testsuite/gas/i386/x86-64-optimize-3b.d: New.
584 * testsuite/gas/i386/i386.exp: Run new test.
585
586 2019-07-01 Jan Beulich <jbeulich@suse.com>
587
588 * config/tc-i386.c (commutative): New.
589 (build_vex_prefix): Handle commutative case.
590 (optimize_encoding): Set commutative flag when appropriate.
591 * doc/c-i386.texi: Update -O2 documentation.
592 * testsuite/gas/i386/ilp32/x86-64-sse2avx.d: Re-use parent dir
593 output.
594 * testsuite/gas/i386/x86-64-sse2avx.s: Add tests with high
595 numbered source operands.
596 * testsuite/gas/i386/x86-64-optimize-2.d,
597 testsuite/gas/i386/x86-64-optimize-2b.d,
598 testsuite/gas/i386/x86-64-optimize-3.d,
599 testsuite/gas/i386/x86-64-optimize-5.d,
600 testsuite/gas/i386/x86-64-optimize-6.d,
601 testsuite/gas/i386/x86-64-sse2avx.d: Adjust expectations.
602 * testsuite/gas/i386/x86-64-avx-swap-2.d,
603 testsuite/gas/i386/x86-64-avx-swap-2.s: New.
604 * testsuite/gas/i386/i386.exp: Run new test.
605
606 2019-07-01 Jan Beulich <jbeulich@suse.com>
607
608 * config/tc-i386.c (is_evex_encoding): Don't check for SAE.
609 (check_VecOperands): Simplify static rounding / SAE checking.
610
611 2019-07-01 Jan Beulich <jbeulich@suse.com>
612
613 * config/tc-i386.c (optimize_encoding): Make j unsigned. Handle
614 vpand{d,q}, vpandn{d,q}, vpor{d,q}, and vpxor{d,q}. Also check/
615 clear broadcast. Eliminate a loop.
616 * doc/c-i386.texi: Update -O1 documentation.
617 * testsuite/gas/i386/optimize-1.s,
618 testsuite/gas/i386/optimize-2.s,
619 testsuite/gas/i386/optimize-3.s,
620 testsuite/gas/i386/optimize-5.s,
621 testsuite/gas/i386/x86-64-optimize-2.s,
622 testsuite/gas/i386/x86-64-optimize-3.s,
623 testsuite/gas/i386/x86-64-optimize-4.s,
624 testsuite/gas/i386/x86-64-optimize-6.s: Add vpand{d,q},
625 vpandn{d,q}, vpor{d,q}, and vpxor{d,q} cases.
626 testsuite/gas/i386/optimize-1.d,
627 testsuite/gas/i386/optimize-1a.d,
628 testsuite/gas/i386/optimize-2.d,
629 testsuite/gas/i386/optimize-3.d,
630 testsuite/gas/i386/optimize-4.d,
631 testsuite/gas/i386/optimize-5.d,
632 testsuite/gas/i386/x86-64-optimize-2.d,
633 testsuite/gas/i386/x86-64-optimize-2a.d,
634 testsuite/gas/i386/x86-64-optimize-2b.d,
635 testsuite/gas/i386/x86-64-optimize-3.d,
636 testsuite/gas/i386/x86-64-optimize-4.d,
637 testsuite/gas/i386/x86-64-optimize-5.d,
638 testsuite/gas/i386/x86-64-optimize-6.d: Adjust expectations.
639
640 2019-07-01 Jan Beulich <jbeulich@suse.com>
641
642 * testsuite/gas/i386/avx512f_vpclmulqdq.s,
643 testsuite/gas/i386/avx512vl_vpclmulqdq.s,
644 testsuite/gas/i386/vpclmulqdq.s,
645 testsuite/gas/i386/x86-64-avx512f_vpclmulqdq.s,
646 testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq.s: Add pseudo ops.
647 * testsuite/gas/i386/x86-64-vpclmulqdq.s: Likewise. Don't use
648 high 16 [xy]mm registers.
649 * testsuite/gas/i386/avx512f_vpclmulqdq.d,
650 testsuite/gas/i386/avx512f_vpclmulqdq-intel.d,
651 testsuite/gas/i386/avx512vl_vpclmulqdq.d,
652 testsuite/gas/i386/avx512vl_vpclmulqdq-intel.d,
653 testsuite/gas/i386/vpclmulqdq.d,
654 testsuite/gas/i386/vpclmulqdq-intel.d,
655 testsuite/gas/i386/x86-64-avx512f_vpclmulqdq.d,
656 testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-intel.d,
657 testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq.d,
658 testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-intel.d,
659 testsuite/gas/i386/x86-64-vpclmulqdq.d,
660 testsuite/gas/i386/x86-64-vpclmulqdq-intel.d: Adjust
661 expectations.
662
663 2019-07-01 Jan Beulich <jbeulich@suse.com>
664
665 * tc-i386.c (output_disp, output_imm): Use encoding_length.
666
667 2019-07-01 Jan Beulich <jbeulich@suse.com>
668
669 * tc-i386.c (encoding_length): New.
670 (output_insn): Use it.
671 * testsuite/gas/i386/oversized16.l,
672 testsuite/gas/i386/oversized16.s,
673 testsuite/gas/i386/oversized64.l,
674 testsuite/gas/i386/oversized64.s: New.
675 * testsuite/gas/i386/i386.exp: Run new tests.
676
677 2019-06-27 H.J. Lu <hongjiu.lu@intel.com>
678
679 PR binutils/24719
680 * testsuite/gas/i386/disassem.s: Add test for vgatherpf0dps
681 with invalid vector length.
682 * testsuite/gas/i386/x86-64-disassem.s: Likewise.
683 * testsuite/gas/i386/disassem.d: Updated.
684 * testsuite/gas/i386/x86-64-disassem.d: Likewise.
685
686 2019-06-27 Barnaby Wilk s<barnaby.wilks@arm.com>
687
688 * config/tc-arm.c (do_smc): Add range check for immediate operand.
689 (do_t_smc): Add range check for immediate operand. Remove
690 obsolete immediate encoding.
691 (md_apply_fix): Fix range check. Remove obsolete immediate encoding.
692 * testsuite/gas/arm/arch6zk.d: Fix test.
693 * testsuite/gas/arm/arch6zk.s: Fix test.
694 * testsuite/gas/arm/smc-bad.d: New test.
695 * testsuite/gas/arm/smc-bad.l: New test.
696 * testsuite/gas/arm/smc-bad.s: New test.
697 * testsuite/gas/arm/thumb32.d: Fix test.
698 * testsuite/gas/arm/thumb32.s: Fix test.
699
700 2019-06-27 Jan Beulich <jbeulich@suse.com>
701
702 config/tc-i386.c (md_assemble): Check for protected mode
703 incapable processor before encoding VEX and alike insns.
704 * testsuite/gas/i386/inval-16.s: For 80186 architecture.
705 * testsuite/gas/i386/inval-16.l: Adjust expectations.
706 * testsuite/gas/i386/avx-16bit.d,
707 testsuite/gas/i386/avx-16bit.s,
708 testsuite/gas/i386/avx512f-16bit.d,
709 testsuite/gas/i386/avx512f-16bit.s,
710 testsuite/gas/i386/bmi-16bit.d,
711 testsuite/gas/i386/bmi-16bit.s,
712 testsuite/gas/i386/bmi2-16bit.d,
713 testsuite/gas/i386/bmi2-16bit.s,
714 testsuite/gas/i386/lwp-16bit.d,
715 testsuite/gas/i386/lwp-16bit.s: New
716 testsuite/gas/i386/i386.exp: Run new tests.
717
718 2019-06-26 Jim Wilson <jimw@sifive.com>
719
720 * testsuite/gas/xstormy16/allinsn.sh: Change first line to
721 #!/bin/bash and make it executable.
722 * testsuite/gas/xstormy16/gcc.sh: Likewise.
723
724 2019-06-26 Lili Cui <lili.cui@intel.com>
725
726 * doc/c-i386.texi: Document x/y/z instruction sufffixes in AT&T
727 syntax and xmmword/ymmword/zmmword/fword/tbyte/oword ptr in
728 Intel syntax.
729
730 2019-06-25 Faraz Shahbazker <fshahbazker@wavecomp.com>
731
732 * config/tc-mips.c (macro) <M_LI>: Re-order MTHC1 with
733 respect to MTC1 and use $0 for either part where possible.
734 * testsuite/gas/mips/li-d.s: Add test cases for non-zero
735 words in double precision constants.
736 * testsuite/gas/mips/li-d.d: Update reference output.
737 * testsuite/gas/mips/micromips@isa-override-1.d: Likewise.
738 * testsuite/gas/mips/mips32r2@isa-override-1.d: Likewise.
739 * testsuite/gas/mips/mips64r2@isa-override-1.d: Likewise.
740
741 2019-06-25 Jan Beulich <jbeulich@suse.com>
742
743 * tc-i386.c (acc32, acc64): Delete.
744 (pi): Make first parameter pinter-to-const.
745 (type_names): Remove Acc. Add acc8, acc16, acc32, and acc64.
746 (pt): Use operand_type_equal().
747 (match_template): Replace use of acc32.
748 (process_suffix): Replace use of acc64.
749
750 2019-06-25 Jan Beulich <jbeulich@suse.com>
751
752 * doc/c-i386.texi: Mark -mavxscalar= and -mvexwig as dangrous to
753 use.
754
755 2019-06-25 Jan Beulich <jbeulich@suse.com>
756
757 * tc-i386.c (process_suffix): Use is_any_vex_encoding().
758
759 2019-06-25 Jan Beulich <jbeulich@suse.com>
760
761 * testsuite/gas/i386/sse2-16bit.d,
762 testsuite/gas/i386/sse2-16bit.s: New.
763 testsuite/gas/i386/i386.exp: Run new test.
764
765 2019-06-25 Jan Beulich <jbeulich@suse.com>
766
767 * config/tc-i386.c (optimize_encoding): Also handle ANDQ with
768 immediatie fitting in 7 bits.
769 * testsuite/gas/i386/x86-64-optimize-1.s: Add ANDQ cases with
770 7- and 8-bit immediates.
771 * testsuite/gas/i386/x86-64-optimize-1.d: Adjust expectations.
772
773 2019-06-25 Jan Beulich <jbeulich@suse.com>
774
775 * testsuite/gas/i386/xmmword.s: Add cvtps2pi and cvttps2pi
776 tests.
777 * testsuite/gas/i386/xmmword.l: Adjust expectations.
778
779 2019-06-25 Alan Modra <amodra@gmail.com>
780
781 * config/tc-ppc.c (ppc_handle_align): Add parentheses.
782
783 2019-06-25 Alan Modra <amodra@gmail.com>
784
785 * config/tc-ppc.h (ppc_nop_select): Declare.
786 (NOP_OPCODE): Define.
787 * config/tc-ppc.c (ppc_elf_end, ppc_xcoff_end): Zero ppc_cpu.
788 (ppc_nop_encoding_for_rs_align_code): New enum.
789 (ppc_nop_select): New function.
790 (ppc_handle_align): Don't use ppc_cpu here. Get nop type from frag.
791 * testsuite/gas/ppc/groupnop.d,
792 * testsuite/gas/ppc/groupnop.s: New test.
793 * testsuite/gas/ppc/ppc.exp: Run it.
794
795 2019-06-19 H.J. Lu <hongjiu.lu@intel.com>
796
797 PR binutils/24700
798 * testsuite/gas/i386/disassem.s: Add test for vbroadcasti32x8
799 with invalid vector length.
800 * testsuite/gas/i386/x86-64-disassem.s: Likewise.
801 * testsuite/gas/i386/disassem.d: Updated.
802 * testsuite/gas/i386/x86-64-disassem.d: Likewise.
803
804 2019-06-17 H.J. Lu <hongjiu.lu@intel.com>
805
806 PR binutils/24691
807 * testsuite/gas/i386/disassem.s: Add test for vshuff32x4 with
808 invalid vector length.
809 * testsuite/gas/i386/x86-64-disassem.s: Likewise.
810 * testsuite/gas/i386/disassem.d: Updated.
811 * testsuite/gas/i386/x86-64-disassem.d: Likewise.
812
813 2019-06-14 Alan Modra <amodra@gmail.com>
814
815 * Makefile.in: Regenerate.
816 * configure: Regenerate.
817 * doc/Makefile.in: Regenerate.
818
819 2019-06-12 Peter Bergner <bergner@linux.ibm.com>
820
821 * testsuite/gas/ppc/power9.d: Delete ldmx tests.
822 * testsuite/gas/ppc/power9.s: Likewise.
823
824 2019-06-06 Lili Cui <lili.cui@intel.com>
825
826 * config/tc-i386.c (cpu_arch): Add .enqcmd.
827 (cpu_noarch): Add noenqcmd.
828 * doc/c-i386.texi: Document noenqcmd.
829
830 2019-06-05 H.J. Lu <hongjiu.lu@intel.com>
831
832 PR binutils/24633
833 * testsuite/gas/i386/disassem.s: Add tests for invalid vector
834 lengths for EVEX vextractfXX and vinsertfXX.
835 * testsuite/gas/i386/x86-64-disassem.s: Likewise.
836 * testsuite/gas/i386/disassem.d: Updated.
837 * testsuite/gas/i386/x86-64-disassem.d: Likewise.
838
839 2019-06-04 H.J. Lu <hongjiu.lu@intel.com>
840
841 PR binutils/24626
842 * testsuite/gas/i386/disassem.s: Add tests for reserved VEX.vvvv
843 and EVEX.vvvv.
844 * testsuite/gas/i386/x86-64-disassem.s: Likewise.
845 * testsuite/gas/i386/disassem.d: Updated.
846 * testsuite/gas/i386/x86-64-disassem.d: Likewise.
847
848 2019-06-04 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
849 Lili Cui <lili.cui@intel.com>
850
851 * config/tc-i386.c (cpu_arch): Add .avx512_vp2intersect.
852 (cpu_noarch): Likewise.
853 * doc/c-i386.texi: Document avx512_vp2intersect.
854 * testsuite/gas/i386/i386.exp: Run vp2intersect tests.
855 * testsuite/gas/i386/vp2intersect-intel.d: New test.
856 * testsuite/gas/i386/vp2intersect.d: Likewise.
857 * testsuite/gas/i386/vp2intersect.s: Likewise.
858 * testsuite/gas/i386/vp2intersect-inval-bcast.l: Likewise.
859 * testsuite/gas/i386/vp2intersect-inval-bcast.s: Likewise.
860 * testsuite/gas/i386/x86-64-vp2intersect-intel.d: Likewise.
861 * testsuite/gas/i386/x86-64-vp2intersect.d: Likewise.
862 * testsuite/gas/i386/x86-64-vp2intersect.s: Likewise.
863 * testsuite/gas/i386/x86-64-vp2intersect-inval-bcast.l: Likewise.
864 * testsuite/gas/i386/x86-64-vp2intersect-inval-bcast.s: Likewise.
865
866 2019-06-04 Xuepeng Guo <xuepeng.guo@intel.com>
867 Lili Cui <lili.cui@intel.com>
868
869 * doc/c-i386.texi: Document enqcmd.
870 * testsuite/gas/i386/enqcmd-intel.d: New file.
871 * testsuite/gas/i386/enqcmd-inval.l: Likewise.
872 * testsuite/gas/i386/enqcmd-inval.s: Likewise.
873 * testsuite/gas/i386/enqcmd.d: Likewise.
874 * testsuite/gas/i386/enqcmd.s: Likewise.
875 * testsuite/gas/i386/x86-64-enqcmd-intel.d: Likewise.
876 * testsuite/gas/i386/x86-64-enqcmd-inval.l: Likewise.
877 * testsuite/gas/i386/x86-64-enqcmd-inval.s: Likewise.
878 * testsuite/gas/i386/x86-64-enqcmd.d: Likewise.
879 * testsuite/gas/i386/x86-64-enqcmd.s: Likewise.
880 * testsuite/gas/i386/i386.exp: Run enqcmd-intel, enqcmd-inval,
881 enqcmd, x86-64-enqcmd-intel, x86-64-enqcmd-inval,
882 and x86-64-enqcmd.
883
884 2019-05-30 Jim Wilson <jimw@sifive.com>
885
886 * config/tc-riscv.c (riscv_ip) <'u'>: Move O_constant check inside if
887 statement. Delete O_symbol and O_constant check after if statement.
888 * testsuite/gas/riscv/auipc-parsing.s: Test lui with missing %hi.
889 * testsuite/gas/riscv/auipc-parsing.l: Update.
890
891 2019-05-28 H.J. Lu <hongjiu.lu@intel.com>
892
893 PR gas/24625
894 * testsuite/gas/i386/inval-avx512f.s: Add tests for AVX512_BF16
895 instructions with invalid broadcast.
896 * testsuite/gas/i386/x86-64-inval-avx512f.s: Likewise.
897 * testsuite/gas/i386/inval-avx512f.l: Updated.
898 * testsuite/gas/i386/x86-64-inval-avx512f.l: Likewise.
899
900 2019-05-27 Alan Modra <amodra@gmail.com>
901
902 * config/tc-ppc.c (is_ppc64_target): New function.
903 (md_show_usage): Split up usage message. Don't show -a64 when
904 unsupported.
905 testsuite/gas/ppc/ppc.exp (supports_ppc64): New.
906 (prefix-reloc): Only run for ppc64.
907
908 2019-05-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
909
910 * config/tc-aarch64.c (aarch64_elf_copy_symbol_attributes): Define.
911 * config/tc-aarch64.h (aarch64_elf_copy_symbol_attributes): Declare.
912 (OBJ_COPY_SYMBOL_ATTRIBUTES): Define.
913 * testsuite/gas/aarch64/symbol-variant_pcs-3.d: New test.
914 * testsuite/gas/aarch64/symbol-variant_pcs-3.s: New test.
915
916 2019-05-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
917
918 * config/tc-aarch64.c (s_variant_pcs): New function.
919 * doc/c-aarch64.texi: Document .variant_pcs.
920 * testsuite/gas/aarch64/symbol-variant_pcs-1.d: New test.
921 * testsuite/gas/aarch64/symbol-variant_pcs-1.s: New test.
922 * testsuite/gas/aarch64/symbol-variant_pcs-2.d: New test.
923 * testsuite/gas/aarch64/symbol-variant_pcs-2.s: New test.
924
925 2019-05-24 Alan Modra <amodra@gmail.com>
926
927 * po/POTFILES.in: Regenerate.
928
929 2019-05-24 Alan Modra <amodra@gmail.com>
930
931 * config/tc-ppc.c (ppc_elf_suffix): Support @pcrel, @got@pcrel,
932 @plt@pcrel, @higher34, @highera34, @highest34, and @highesta34.
933 (fixup_size): Handle new powerxx relocs.
934 (md_assemble): Warn for @pcrel on non-prefix insns.
935 Accept @l, @h and @ha on prefix insns, and infer reloc without
936 any @ suffix. Translate powerxx relocs to suit DQ and DS field
937 instructions. Include operand tests as well as opcode test to
938 translate BFD_RELOC_HI16_S to BFD_RELOC_PPC_16DX_HA.
939 (ppc_fix_adjustable): Return false for pcrel GOT and PLT relocs.
940 (md_apply_fix): Handle new powerxx relocs.
941 * config/tc-ppc.h (TC_FORCE_RELOCATION_SUB_LOCAL): Accept
942 BFD_RELOC_PPC64_ADDR16_HIGHER34, BFD_RELOC_PPC64_ADDR16_HIGHERA34,
943 BFD_RELOC_PPC64_ADDR16_HIGHEST34, BFD_RELOC_PPC64_ADDR16_HIGHESTA34,
944 BFD_RELOC_PPC64_D34, and BFD_RELOC_PPC64_D28.
945 * testsuite/gas/ppc/prefix-reloc.d,
946 * testsuite/gas/ppc/prefix-reloc.s: New test.
947 * testsuite/gas/ppc/ppc.exp: Run it.
948
949 2019-05-24 Peter Bergner <bergner@linux.ibm.com>
950 Alan Modra <amodra@gmail.com>
951
952 * config/tc-ppc.c (ppc_insert_operand): Only sign extend fields that
953 are 32-bits or smaller.
954 * messages.c (as_internal_value_out_of_range): Do not truncate
955 variables and use BFD_VMA_FMT to print them.
956 * testsuite/gas/ppc/prefix-pcrel.s,
957 * testsuite/gas/ppc/prefix-pcrel.d: New test.
958 * testsuite/gas/ppc/ppc.exp: Run it.
959
960 2019-05-24 Peter Bergner <bergner@linux.ibm.com>
961 Alan Modra <amodra@gmail.com>
962
963 * config/tc-ppc.c (ppc_setup_opcodes): Handle prefix_opcodes.
964 (struct insn_label_list): New.
965 (insn_labels, free_insn_labels): New variables.
966 (ppc_record_label, ppc_clear_labels, ppc_start_line_hook): New funcs.
967 (ppc_frob_label, ppc_new_dot_label): Move functions earlier in file
968 and call ppc_record_label.
969 (md_assemble): Handle 64-bit prefix instructions. Align labels
970 that are on the same line as a prefix instruction.
971 * config/tc-ppc.h (tc_frob_label, ppc_frob_label): Move to
972 later in the file.
973 (md_start_line_hook): Define.
974 (ppc_start_line_hook): Declare.
975 * testsuite/gas/ppc/prefix-align.d,
976 * testsuite/gas/ppc/prefix-align.s: New test.
977 * testsuite/gas/ppc/ppc.exp: Run new test.
978
979 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
980
981 * configure.ac: Handle bpf-*-* targets.
982 * configure.tgt (generic_target): Likewise.
983 * configure: Regenerate.
984 * Makefile.am (TARGET_CPU_CFILES): Add tc-bpf.c.
985 (TARGET_CPU_HFILES): Add tc-bpf.h.
986 * Makefile.in: Regenerated.
987 * config/tc-bpf.c: New file.
988 * config/tc-bpf.h: Likewise.
989 * doc/Makefile.am (CPU_DOCS): Add c-bpf.texi.
990 * doc/Makefile.in: Regenerated.
991 * doc/all.texi: set BPF.
992 * doc/as.texi: Add eBPF contents.
993 * doc/c-bpf.texi: New file.
994 * testsuite/gas/bpf/alu.d: New file.
995 * testsuite/gas/bpf/mem-be.d: Likewise.
996 * testsuite/gas/bpf/mem.s: Likewise.
997 * testsuite/gas/bpf/mem.d: Likewise.
998 * testsuite/gas/bpf/lddw-be.d: Likewise.
999 * testsuite/gas/bpf/lddw.s: Likewise.
1000 * testsuite/gas/bpf/lddw.d: Likewise.
1001 * testsuite/gas/bpf/jump-be.d: Likewise.
1002 * testsuite/gas/bpf/jump.s: Likewise.
1003 * testsuite/gas/bpf/jump.d: Likewise.
1004 * testsuite/gas/bpf/exit-be.d: Likewise.
1005 * testsuite/gas/bpf/exit.s: Likewise.
1006 * testsuite/gas/bpf/exit.d: Likewise.
1007 * testsuite/gas/bpf/call-be.d: Likewise.
1008 * testsuite/gas/bpf/call.s: Likewise.
1009 * testsuite/gas/bpf/call.d: Likewise.
1010 * testsuite/gas/bpf/bpf.exp: Likewise.
1011 * testsuite/gas/bpf/atomic-be.d: Likewise.
1012 * testsuite/gas/bpf/atomic.s: Likewise.
1013 * testsuite/gas/bpf/atomic.d: Likewise.
1014 * testsuite/gas/bpf/alu-be.d: Likewise.
1015 * testsuite/gas/bpf/alu32-be.d: Likewise.
1016 * testsuite/gas/bpf/alu32.s: Likewise.
1017 * testsuite/gas/bpf/alu32.d: Likewise.
1018 * testsuite/gas/bpf/alu.s: Likewise.
1019 * testsuite/gas/all/gas.exp: Introduce a nop_type for eBPF.
1020 * testsuite/gas/all/org-1.s: Support nop_type 6.
1021 * testsuite/gas/all/org-1.l: Updated to reflect changes in
1022 org-1.s.
1023
1024 2019-05-22 John Darrington <john@darrington.wattle.id.au>
1025
1026 * config/tc-s12z.c (s12z_strtol): New function. (md_show_usage): Update.
1027 (md_parse_option): new case OPTION_DOLLAR_HEX. (s12z_init_after_args):
1028 (<global>): Use s12z_strtol instead of strtol.
1029 * doc/c-s12z.texi (S12Z Options): Document new option -mdollar-hex.
1030 * testsuite/gas/s12z/dollar-hex.d: New file.
1031 * testsuite/gas/s12z/dollar-hex.s: New file.
1032 * testsuite/gas/s12z/s12z.exp: Add them.
1033
1034 2019-05-21 Sudakshina Das <sudi.das@arm.com>
1035
1036 * config/tc-arm.c (parse_operands): Update case OP_RVC to
1037 parse p0 and P0.
1038 (do_vmrs): Add checks for valid operands with respect to
1039 cpu and fpu options.
1040 (do_vmsr): Likewise.
1041 (reg_names): New reg_names for FPSCR_nzcvqc, VPR, FPCXT_NS
1042 and FPCXT_S.
1043 * testsuite/gas/arm/armv8_1-m-spec-reg.d: New.
1044 * testsuite/gas/arm/armv8_1-m-spec-reg.s: New.
1045 * testsuite/gas/arm/armv8_1-m-spec-reg-bad1.d: New.
1046 * testsuite/gas/arm/armv8_1-m-spec-reg-bad2.d: New.
1047 * testsuite/gas/arm/armv8_1-m-spec-reg-bad3.d: New.
1048 * testsuite/gas/arm/armv8_1-m-spec-reg-bad1.l: New.
1049 * testsuite/gas/arm/armv8_1-m-spec-reg-bad2.l: New.
1050 * testsuite/gas/arm/armv8_1-m-spec-reg-bad3.l: New.
1051 * testsuite/gas/arm/vfp1xD.d: Updated to allow new valid values.
1052 * testsuite/gas/arm/vfp1xD_t2.d: Likewise.
1053
1054 2019-05-21 Sudakshina Das <sudi.das@arm.com>
1055
1056 * config/tc-arm.c (TOGGLE_BIT): New.
1057 (T16_32_TAB): New entries for cinc, cinv, cneg, csinc,
1058 csinv, csneg, cset, csetm and csel.
1059 (operand_parse_code): New OP_RR_ZR.
1060 (parse_operand): Handle case for OP_RR_ZR.
1061 (do_t_cond): New.
1062 (insns): New instructions for cinc, cinv, cneg, csinc,
1063 csinv, csneg, cset, csetm, csel.
1064 * testsuite/gas/arm/armv8_1-m-cond-bad.d: New test.
1065 * testsuite/gas/arm/armv8_1-m-cond-bad.l: New test.
1066 * testsuite/gas/arm/armv8_1-m-cond-bad.s: New test.
1067 * testsuite/gas/arm/armv8_1-m-cond.d: New test.
1068 * testsuite/gas/arm/armv8_1-m-cond.s: New test.
1069
1070 2019-05-21 Sudakshina Das <sudi.das@arm.com>
1071
1072 * config/tc-arm.c (operand_parse_code): New entries for
1073 OP_RRnpcsp_I32 (register or integer operands).
1074 (do_mve_scalar_shift): New.
1075 (insns): New instructions for asrl, lsll, lsrl, sqrshrl, sqrshr, sqshl
1076 sqshll, srshr, srshrl, uqrshll, uqrshl, uqshll, uqshl, urshrl and urshr.
1077 * testsuite/gas/arm/mve-shift.d: New.
1078 * testsuite/gas/arm/mve-shift.s: New.
1079 * testsuite/gas/arm/mve-shift-bad.d: New.
1080 * testsuite/gas/arm/mve-shift-bad.s: New.
1081 * testsuite/gas/arm/mve-shift-bad.l: New.
1082
1083 2019-05-21 Faraz Shahbazker <fshahbazker@wavecomp.com>
1084
1085 * testsuite/gas/mips/r6-branch-constraints.s: Rename to ...
1086 * testsuite/gas/mips/r6-reg-constraints.s: this and add test
1087 case for DAUI.
1088 * testsuite/gas/mips/r6-branch-constraints.l: Rename to ...
1089 * testsuite/gas/mips/r6-reg-constraints.l: this and add test
1090 for DAUI.
1091 * testsuite/gas/mips/mips.exp: Rename test from
1092 r6-branch-constraints to r6-reg-constraints.
1093
1094 2019-05-21 Andre Vieira <andre.simoesdiasvieira@arm.com>
1095
1096 PR 24559
1097 * config/tc-arm.c (move_or_literal_pool): Set size_req to 0 for MOVW
1098 replacement.
1099 * testsuite/gas/arm/load-pseudo.s: New test input.
1100 * testsuite/gas/arm/m0-load-pseudo.d: New test.
1101 * testsuite/gas/arm/m23-load-pseudo.d: New test.
1102 * testsuite/gas/arm/m33-load-pseudo.d: New test.
1103
1104 2019-05-21 Andre Vieira <andre.simoesdiasvieira@arm.com>
1105
1106 * testsuite/gas/arm/armv8_1-m-bf.d: Allow different branch target naming
1107 conventions.
1108 * testsuite/gas/arm/armv8_1-m-bfl.d: Likewise.
1109 * testsuite/gas/arm/armv8_1-m-bfcsel.d: Likewise.
1110 * testsuite/gas/arm/armv8_1-m-loloop.d: Likewise.
1111 * testsuite/gas/arm/armv8_1-m-bf-rel.d: Skip for vxworks.
1112 * testsuite/gas/arm/armv8_1-m-bf-rela.d: New test.
1113 * testsuite/gas/arm/armv8_1-m-bfl-rel.d: Skip for vxworks.
1114 * testsuite/gas/arm/armv8_1-m-bfl-rela.d: New test.
1115
1116 2019-05-21 John Darrington <john@darrington.wattle.id.au>
1117
1118 * expr.c (literal_prefix_dollar_hex): New variable.
1119 (operand)[case '$']: Use the new variable instead of the old macro.
1120 Also, move this instance of "case '$'" next to the other one, and
1121 enable it only in the complementary proprocessor case.
1122 * expr.h (literal_prefix_dollar_hex): Declare it.
1123 * config/tc-epiphany.c (md_begin): Assign literal_prefix_dollar_hex.
1124 * config/tc-ip2k.c: ditto
1125 * config/tc-mt.c: ditto
1126 * config/tc-epiphany.h (LITERAL_PREFIXDOLLAR_HEX): Remove macro definition.
1127 * config/tc-ip2k.h: ditto
1128 * config/tc-mt.h: ditto
1129
1130 2019-05-20 Faraz Shahbazker <fshahbazker@wavecomp.com>
1131
1132 PR 14798
1133 * config/tc-mips.c (s_mips_globl): Only treat symbols that are
1134 not explicitly labelled as BSF_OBJECTs for IRIX targets.
1135 * testsuite/gas/mips/pr14798.s: New test source.
1136 * testsuite/gas/mips/pr14798-irix.d: New test.
1137 * testsuite/gas/mips/pr14798.d: Likewise.
1138 * testsuite/gas/mips/mips.exp: Run the new tests.
1139
1140 2019-05-17 John Darrington <john@darrington.wattle.id.au>
1141
1142 * doc/c-arm.texi (ARM Options): Remove "(r)" and "(tm)"
1143 * doc/c-bfin.texi (Blackfin Syntax): Remove "(r)"
1144
1145 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1146
1147 * config/tc-arm.c (check_simd_pred_availability): Refactor.
1148 (do_neon_dyadic_i_su): Refactor use of check_simd_pred_availability.
1149 (do_neon_dyadic_i64_su): Likewise.
1150 (do_neon_shl): Likewise.
1151 (do_neon_qshl): Likewise.
1152 (do_neon_rshl): Likewise.
1153 (do_neon_logic): Likewise.
1154 (do_neon_dyadic_if_su): Likewise.
1155 (do_neon_addsub_if_i): Likewise.
1156 (do_neon_mac_maybe_scalar): Likewise.
1157 (do_neon_fmac): Likewise.
1158 (do_neon_mul): Likewise.
1159 (do_neon_qdmulh): Likewise.
1160 (do_neon_qrdmlah): Likewise.
1161 (do_neon_abs_neg): Likewise.
1162 (do_neon_sli): Likewise.
1163 (do_neon_sri): Likewise.
1164 (do_neon_qshlu_imm): Likewise.
1165 (do_neon_cvt_1): Likewise.
1166 (do_neon_cvttb_1): Likewise.
1167 (do_neon_mvn): Likewise.
1168 (do_neon_rev): Likewise.
1169 (do_neon_dup): Likewise.
1170 (do_neon_mov): Likewise.
1171 (do_neon_rshift_round_imm): Likewise.
1172 (do_neon_sat_abs_neg): Likewise.
1173 (do_neon_cls): Likewise.
1174 (do_neon_clz): Likewise.
1175 (do_vmaxnm): Likewise.
1176 (do_vrint_1): Likewise.
1177 (do_vcmla): Likewise.
1178 (do_vcadd): Likewise.
1179
1180 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1181
1182 * NEWS: Mention Armv8.1-M Mainline and MVE.
1183
1184 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1185
1186 * testsuite/gas/arm/mve-tailpredloop.d: New test.
1187 * testsuite/gas/arm/mve-tailpredloop.s: New test.
1188 * testsuite/gas/arm/mve-vabav.d: New test.
1189 * testsuite/gas/arm/mve-vabav.s: New test.
1190 * testsuite/gas/arm/mve-vabd.d: New test.
1191 * testsuite/gas/arm/mve-vabd.s: New test.
1192 * testsuite/gas/arm/mve-vabsneg.d: New test.
1193 * testsuite/gas/arm/mve-vabsneg.s: New test.
1194 * testsuite/gas/arm/mve-vadc.d: New test.
1195 * testsuite/gas/arm/mve-vadc.s: New test.
1196 * testsuite/gas/arm/mve-vaddlv.d: New test.
1197 * testsuite/gas/arm/mve-vaddlv.s: New test.
1198 * testsuite/gas/arm/mve-vaddsub.d: New test.
1199 * testsuite/gas/arm/mve-vaddsub.s: New test.
1200 * testsuite/gas/arm/mve-vaddv.d: New test.
1201 * testsuite/gas/arm/mve-vaddv.s: New test.
1202 * testsuite/gas/arm/mve-vand.d: New test.
1203 * testsuite/gas/arm/mve-vand.s: New test.
1204 * testsuite/gas/arm/mve-vbic.d: New test.
1205 * testsuite/gas/arm/mve-vbic.s: New test.
1206 * testsuite/gas/arm/mve-vbrsr.d: New test.
1207 * testsuite/gas/arm/mve-vbrsr.s: New test.
1208 * testsuite/gas/arm/mve-vcadd.d: New test.
1209 * testsuite/gas/arm/mve-vcadd.s: New test.
1210 * testsuite/gas/arm/mve-vcls.d: New test.
1211 * testsuite/gas/arm/mve-vcls.s: New test.
1212 * testsuite/gas/arm/mve-vclz.d: New test.
1213 * testsuite/gas/arm/mve-vclz.s: New test.
1214 * testsuite/gas/arm/mve-vcmla.d: New test.
1215 * testsuite/gas/arm/mve-vcmla.s: New test.
1216 * testsuite/gas/arm/mve-vcmp.d: New test.
1217 * testsuite/gas/arm/mve-vcmp.s: New test.
1218 * testsuite/gas/arm/mve-vcmul.d: New test.
1219 * testsuite/gas/arm/mve-vcmul.s: New test.
1220 * testsuite/gas/arm/mve-vcvt-1.d: New test.
1221 * testsuite/gas/arm/mve-vcvt-1.s: New test.
1222 * testsuite/gas/arm/mve-vcvt-2.d: New test.
1223 * testsuite/gas/arm/mve-vcvt-2.s: New test.
1224 * testsuite/gas/arm/mve-vcvt-3.d: New test.
1225 * testsuite/gas/arm/mve-vcvt-3.s: New test.
1226 * testsuite/gas/arm/mve-vcvt-4.d: New test.
1227 * testsuite/gas/arm/mve-vcvt-4.s: New test.
1228 * testsuite/gas/arm/mve-vddup.d: New test.
1229 * testsuite/gas/arm/mve-vddup.s: New test.
1230 * testsuite/gas/arm/mve-vdup.d: New test.
1231 * testsuite/gas/arm/mve-vdup.s: New test.
1232 * testsuite/gas/arm/mve-veor.d: New test.
1233 * testsuite/gas/arm/mve-veor.s: New test.
1234 * testsuite/gas/arm/mve-vfma-vfms.d: New test.
1235 * testsuite/gas/arm/mve-vfma-vfms.s: New test.
1236 * testsuite/gas/arm/mve-vfmas.d: New test.
1237 * testsuite/gas/arm/mve-vfmas.s: New test.
1238 * testsuite/gas/arm/mve-vhadd-vhsub-vrhadd.d: New test.
1239 * testsuite/gas/arm/mve-vhadd-vhsub-vrhadd.s: New test.
1240 * testsuite/gas/arm/mve-vhcadd.d: New test.
1241 * testsuite/gas/arm/mve-vhcadd.s: New test.
1242 * testsuite/gas/arm/mve-vmax-vmin.d: New test.
1243 * testsuite/gas/arm/mve-vmax-vmin.s: New test.
1244 * testsuite/gas/arm/mve-vmaxa-vmina.d: New test.
1245 * testsuite/gas/arm/mve-vmaxa-vmina.s: New test.
1246 * testsuite/gas/arm/mve-vmaxnm-vminnm.d: New test.
1247 * testsuite/gas/arm/mve-vmaxnm-vminnm.s: New test.
1248 * testsuite/gas/arm/mve-vmaxnma-vminnma.s: New test.
1249 * testsuite/gas/arm/mve-vmaxnmv-vminnmv.d: New test.
1250 * testsuite/gas/arm/mve-vmaxnmv-vminnmv.s: New test.
1251 * testsuite/gas/arm/mve-vmaxv-vminv.d: New test.
1252 * testsuite/gas/arm/mve-vmaxv-vminv.s: New test.
1253 * testsuite/gas/arm/mve-vmla.d: New test.
1254 * testsuite/gas/arm/mve-vmla.s: New test.
1255 * testsuite/gas/arm/mve-vmladav.d: New test.
1256 * testsuite/gas/arm/mve-vmladav.s: New test.
1257 * testsuite/gas/arm/mve-vmlaldav.d: New test.
1258 * testsuite/gas/arm/mve-vmlaldav.s: New test.
1259 * testsuite/gas/arm/mve-vmlalv.d: New test.
1260 * testsuite/gas/arm/mve-vmlalv.s: New test.
1261 * testsuite/gas/arm/mve-vmlas.d: New test.
1262 * testsuite/gas/arm/mve-vmlas.s: New test.
1263 * testsuite/gas/arm/mve-vmlav.d: New test.
1264 * testsuite/gas/arm/mve-vmlav.s: New test.
1265 * testsuite/gas/arm/mve-vmlsdav.d: New test.
1266 * testsuite/gas/arm/mve-vmlsdav.s: New test.
1267 * testsuite/gas/arm/mve-vmlsldav.d: New test.
1268 * testsuite/gas/arm/mve-vmlsldav.s: New test.
1269 * testsuite/gas/arm/mve-vmov-1.d: New test.
1270 * testsuite/gas/arm/mve-vmov-1.s: New test.
1271 * testsuite/gas/arm/mve-vmov-2.d: New test.
1272 * testsuite/gas/arm/mve-vmov-2.s: New test.
1273 * testsuite/gas/arm/mve-vmul.d: New test.
1274 * testsuite/gas/arm/mve-vmul.s: New test.
1275 * testsuite/gas/arm/mve-vmulh.d: New test.
1276 * testsuite/gas/arm/mve-vmulh.s: New test.
1277 * testsuite/gas/arm/mve-vmullbt.d: New test.
1278 * testsuite/gas/arm/mve-vmullbt.s: New test.
1279 * testsuite/gas/arm/mve-vmvn.d: New test.
1280 * testsuite/gas/arm/mve-vmvn.s: New test.
1281 * testsuite/gas/arm/mve-vorn.d: New test.
1282 * testsuite/gas/arm/mve-vorn.s: New test.
1283 * testsuite/gas/arm/mve-vorr.d: New test.
1284 * testsuite/gas/arm/mve-vorr.s: New test.
1285 * testsuite/gas/arm/mve-vpnot.d: New test.
1286 * testsuite/gas/arm/mve-vpnot.s: New test.
1287 * testsuite/gas/arm/mve-vpsel.d: New test.
1288 * testsuite/gas/arm/mve-vpsel.s: New test.
1289 * testsuite/gas/arm/mve-vpt.d: New test.
1290 * testsuite/gas/arm/mve-vpt.s: New test.
1291 * testsuite/gas/arm/mve-vqabsneg.s: New test.
1292 * testsuite/gas/arm/mve-vqaddsub.d: New test.
1293 * testsuite/gas/arm/mve-vqaddsub.s: New test.
1294 * testsuite/gas/arm/mve-vqdmladh.d: New test.
1295 * testsuite/gas/arm/mve-vqdmladh.s: New test.
1296 * testsuite/gas/arm/mve-vqdmlah.d: New test.
1297 * testsuite/gas/arm/mve-vqdmlah.s: New test.
1298 * testsuite/gas/arm/mve-vqdmlash.d: New test.
1299 * testsuite/gas/arm/mve-vqdmlash.s: New test.
1300 * testsuite/gas/arm/mve-vqdmlsdh.d: New test.
1301 * testsuite/gas/arm/mve-vqdmlsdh.s: New test.
1302 * testsuite/gas/arm/mve-vqdmulh.d: New test.
1303 * testsuite/gas/arm/mve-vqdmulh.s: New test.
1304 * testsuite/gas/arm/mve-vqdmull.d: New test.
1305 * testsuite/gas/arm/mve-vqdmull.s: New test.
1306 * testsuite/gas/arm/mve-vqmovn.d: New test.
1307 * testsuite/gas/arm/mve-vqmovn.s: New test.
1308 * testsuite/gas/arm/mve-vqrshl.d: New test.
1309 * testsuite/gas/arm/mve-vqrshl.s: New test.
1310 * testsuite/gas/arm/mve-vqrshrn.d: New test.
1311 * testsuite/gas/arm/mve-vqrshrn.s: New test.
1312 * testsuite/gas/arm/mve-vqshl.d: New test.
1313 * testsuite/gas/arm/mve-vqshl.s: New test.
1314 * testsuite/gas/arm/mve-vrev.d: New test.
1315 * testsuite/gas/arm/mve-vrev.s: New test.
1316 * testsuite/gas/arm/mve-vrint.d: New test.
1317 * testsuite/gas/arm/mve-vrint.s: New test.
1318 * testsuite/gas/arm/mve-vrmlaldavh.d: New test.
1319 * testsuite/gas/arm/mve-vrmlaldavh.s: New test.
1320 * testsuite/gas/arm/mve-vrshl.d: New test.
1321 * testsuite/gas/arm/mve-vrshl.s: New test.
1322 * testsuite/gas/arm/mve-vsbc.d: New test.
1323 * testsuite/gas/arm/mve-vsbc.s: New test.
1324 * testsuite/gas/arm/mve-vshl.d: New test.
1325 * testsuite/gas/arm/mve-vshl.s: New test.
1326 * testsuite/gas/arm/mve-vshlc.d: New test.
1327 * testsuite/gas/arm/mve-vshlc.s: New test.
1328 * testsuite/gas/arm/mve-vshll.d: New test.
1329 * testsuite/gas/arm/mve-vshll.s: New test.
1330 * testsuite/gas/arm/mve-vshr.d: New test.
1331 * testsuite/gas/arm/mve-vshr.s: New test.
1332 * testsuite/gas/arm/mve-vshrn.d: New test.
1333 * testsuite/gas/arm/mve-vshrn.s: New test.
1334 * testsuite/gas/arm/mve-vsli.d: New test.
1335 * testsuite/gas/arm/mve-vsli.s: New test.
1336 * testsuite/gas/arm/mve-vsri.d: New test.
1337 * testsuite/gas/arm/mve-vsri.s: New test.
1338 * testsuite/gas/arm/mve-vstld.d: New test.
1339 * testsuite/gas/arm/mve-vstld.s: New test.
1340 * testsuite/gas/arm/mve-vstrldr-1.d: New test.
1341 * testsuite/gas/arm/mve-vstrldr-1.s: New test.
1342 * testsuite/gas/arm/mve-vstrldr-2.d: New test.
1343 * testsuite/gas/arm/mve-vstrldr-2.s: New test.
1344 * testsuite/gas/arm/mve-vstrldr-3.d: New test.
1345 * testsuite/gas/arm/mve-vstrldr-3.s: New test.
1346
1347 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1348
1349 * config/tc-arm.c (T16_32_TAB): Add new instructions.
1350 (do_t_loloop): Changed to handle tail predication variants.
1351 (md_apply_fix): Likewise.
1352 (insns): Add entries for MVE mnemonics.
1353 * testsuite/gas/arm/mve-tailpredloop-bad.d: New test.
1354 * testsuite/gas/arm/mve-tailpredloop-bad.l: New test.
1355 * testsuite/gas/arm/mve-tailpredloop-bad.s: New test.
1356 * testsuite/gas/arm/mve-tailpredloop.d: New test.
1357
1358 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1359
1360 * config/tc-arm.c (do_mve_vshll): New encoding function.
1361 (do_mve_vshlc): Likewise.
1362 (insns): Add entries for MVE mnemonics.
1363 * testsuite/gas/arm/mve-vshlc-bad.d: New test.
1364 * testsuite/gas/arm/mve-vshlc-bad.l: New test.
1365 * testsuite/gas/arm/mve-vshlc-bad.s: New test.
1366 * testsuite/gas/arm/mve-vshll-bad.d: New test.
1367 * testsuite/gas/arm/mve-vshll-bad.l: New test.
1368 * testsuite/gas/arm/mve-vshll-bad.s: New test.
1369
1370 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1371
1372 * config/tc-arm.c (enum operand_parse_code): Add new operand.
1373 (parse_operands): Handle new operand.
1374 (do_neon_shl_imm): Accept MVE variants.
1375 (do_neon_shl): Likewise.
1376 (do_neon_qshl_imm): Likewise.
1377 (do_neon_qshl): Likewise.
1378 (do_neon_qshlu_imm): Likewise.
1379 (insns): Likewise.
1380 * testsuite/gas/arm/mve-vqshl-bad.d: New test.
1381 * testsuite/gas/arm/mve-vqshl-bad.l: New test.
1382 * testsuite/gas/arm/mve-vqshl-bad.s: New test.
1383 * testsuite/gas/arm/mve-vshl-bad.d: New test.
1384 * testsuite/gas/arm/mve-vshl-bad.l: New test.
1385 * testsuite/gas/arm/mve-vshl-bad.s: New test.
1386
1387 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1388
1389 * config/tc-arm.c (do_neon_sli): Accept MVE variants.
1390 (do_neon_sri): Likewise.
1391 (do_neon_rev): Likewise.
1392 (do_neon_rshift_round_imm): Likewise.
1393 (insns): Likewise.
1394 * testsuite/gas/arm/mve-vrev-bad.d: New test.
1395 * testsuite/gas/arm/mve-vrev-bad.l: New test.
1396 * testsuite/gas/arm/mve-vrev-bad.s: New test.
1397 * testsuite/gas/arm/mve-vshr-bad.d: New test.
1398 * testsuite/gas/arm/mve-vshr-bad.l: New test.
1399 * testsuite/gas/arm/mve-vshr-bad.s: New test.
1400 * testsuite/gas/arm/mve-vsli-bad.d: New test.
1401 * testsuite/gas/arm/mve-vsli-bad.l: New test.
1402 * testsuite/gas/arm/mve-vsli-bad.s: New test.
1403 * testsuite/gas/arm/mve-vsri-bad.d: New test.
1404 * testsuite/gas/arm/mve-vsri-bad.l: New test.
1405 * testsuite/gas/arm/mve-vsri-bad.s: New test.
1406
1407 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1408
1409 * config/tc-arm.c (do_vrint_1): Accept MVE variants.
1410 (insns): Change entries to accept MVE variants.
1411 * testsuite/gas/arm/mve-vrint-bad.d: New test.
1412 * testsuite/gas/arm/mve-vrint-bad.l: New test.
1413 * testsuite/gas/arm/mve-vrint-bad.s: New test.
1414
1415 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1416
1417 * config/tc-arm.c (M_MNEM_vshrnt, M_MNEM_vshrnb, M_MNEM_vrshrnt,
1418 M_MNEM_vqshrnt, M_MNEM_vqshrnb, M_MNEM_vqshrunt, M_MNEM_vqshrunb,
1419 M_MNEM_vrshrnb, M_MNEM_vqrshrnt, M_MNEM_vqrshrnb, M_MNEM_vqrshrunt,
1420 M_MNEM_vqrshrunb): New instruction encodings.
1421 (do_mve_vshrn): New encoding function.
1422 (insns): Add entries for MVE mnemonics.
1423 * testsuite/gas/arm/mve-vqrshrn-bad.d: New test.
1424 * testsuite/gas/arm/mve-vqrshrn-bad.l: New test.
1425 * testsuite/gas/arm/mve-vqrshrn-bad.s: New test.
1426 * testsuite/gas/arm/mve-vshrn-bad.d: New test.
1427 * testsuite/gas/arm/mve-vshrn-bad.l: New test.
1428 * testsuite/gas/arm/mve-vshrn-bad.s: New test.
1429
1430 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1431
1432 * config/tc-arm.c (M_MNEM_vqmovnt, M_MNEM_vqmovnb,
1433 M_MNEM_vqmovunt, M_MNEM_vqmovunb): New instruction encodings.
1434 (do_mve_vqmovn): New encoding function.
1435 (do_neon_rshl): Change to accepte MVE variants.
1436 (insns): Change entries and add new for MVE mnemonics.
1437 * testsuite/gas/arm/mve-vqmovn-bad.d: New test.
1438 * testsuite/gas/arm/mve-vqmovn-bad.l: New test.
1439 * testsuite/gas/arm/mve-vqmovn-bad.s: New test.
1440 * testsuite/gas/arm/mve-vqrshl-bad.d: New test.
1441 * testsuite/gas/arm/mve-vqrshl-bad.l: New test.
1442 * testsuite/gas/arm/mve-vqrshl-bad.s: New test.
1443 * testsuite/gas/arm/mve-vrshl-bad.d: New test.
1444 * testsuite/gas/arm/mve-vrshl-bad.l: New test.
1445 * testsuite/gas/arm/mve-vrshl-bad.s: New test.
1446
1447 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1448
1449 * config/tc-arm.c (enum operand_parse_code): Add new operand.
1450 (parse_operands): Handle new operand.
1451 (do_mve_vqdmull): New encoding function.
1452 (insns): Add entry for MVE mnemonics.
1453 * testsuite/gas/arm/mve-vqdmull-bad.d: New test.
1454 * testsuite/gas/arm/mve-vqdmull-bad.l: New test.
1455 * testsuite/gas/arm/mve-vqdmull-bad.s: New test.
1456
1457 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1458
1459 * config/tc-arm.c (enum operand_parse_code): Add new operand.
1460 (parse_operands): Handle new operand.
1461 (mve_encode_qqr): Handle new instructions.
1462 (do_neon_qdmulh): Add support for MVE variants.
1463 (do_neon_qrdmlah): Likewise.
1464 (do_mve_vqdmlah): New encoding function.
1465 (insns): Change entries and add new entries for MVE mnemonics.
1466 * testsuite/gas/arm/mve-vqdmulh-bad.d: New test.
1467 * testsuite/gas/arm/mve-vqdmulh-bad.l: New test.
1468 * testsuite/gas/arm/mve-vqdmulh-bad.s: New test.
1469
1470 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1471
1472 * config/tc-arm.c (do_mve_vqdmladh): New encoding function.
1473 (insns): Add entries for MVE mnemonics.
1474 * testsuite/gas/arm/mve-vqdmladh-bad.d: New test.
1475 * testsuite/gas/arm/mve-vqdmladh-bad.l: New test.
1476 * testsuite/gas/arm/mve-vqdmladh-bad.s: New test.
1477 * testsuite/gas/arm/mve-vqdmlsdh-bad.d: New test.
1478 * testsuite/gas/arm/mve-vqdmlsdh-bad.l: New test.
1479 * testsuite/gas/arm/mve-vqdmlsdh-bad.s: New test.
1480
1481 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1482
1483 * config/tc-arm.c (do_mve_vpsel): New encoding function.
1484 (do_mve_vpnot): Likewise.
1485 (insns): Add entries for MVE mnemonics.
1486 * testsuite/gas/arm/mve-vpnot-bad.d: New test.
1487 * testsuite/gas/arm/mve-vpnot-bad.l: New test.
1488 * testsuite/gas/arm/mve-vpnot-bad.s: New test.
1489 * testsuite/gas/arm/mve-vpsel-bad.d: New test.
1490 * testsuite/gas/arm/mve-vpsel-bad.l: New test.
1491 * testsuite/gas/arm/mve-vpsel-bad.s: New test.
1492
1493 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1494
1495 * config/tc-arm.c (do_neon_mvn): Change to accept MVE variants.
1496 (do_neon_sat_abs_neg): Likewise.
1497 (insns): Likewise.
1498 * testsuite/gas/arm/mve-vmvn-bad.d: New test.
1499 * testsuite/gas/arm/mve-vmvn-bad.l: New test.
1500 * testsuite/gas/arm/mve-vmvn-bad.s: New test.
1501 * testsuite/gas/arm/mve-vqabsneg-bad.d: New test.
1502 * testsuite/gas/arm/mve-vqabsneg-bad.l: New test.
1503 * testsuite/gas/arm/mve-vqabsneg-bad.s: New test.
1504
1505 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1506
1507 * config/tc-arm.c (do_mve_vmlas): New encoding function.
1508 (do_mve_vmulh): Likewise.
1509 (insns): Add entries for MVE mnemonics.
1510 * testsuite/gas/arm/mve-vmlas-bad.d: New test.
1511 * testsuite/gas/arm/mve-vmlas-bad.l: New test.
1512 * testsuite/gas/arm/mve-vmlas-bad.s: New test.
1513 * testsuite/gas/arm/mve-vmulh-bad.d: New test.
1514 * testsuite/gas/arm/mve-vmulh-bad.l: New test.
1515 * testsuite/gas/arm/mve-vmulh-bad.s: New test.
1516
1517 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1518
1519 * config/tc-arm.c (enum operand_parse_code): New operand.
1520 (parse_operands): Handle new operand.
1521 (mve_encode_qqr): Handle new instructions.
1522 (do_neon_dyadic_i64_su): Accept MVE variants.
1523 (neon_dyadic_misc): Likewise.
1524 (do_neon_mac_maybe_scalar): Likewise.
1525 (do_neon_mul): Likewise.
1526 (insns): Change to accept MVE variants.
1527 * testsuite/gas/arm/mve-vmla-bad.d: New test.
1528 * testsuite/gas/arm/mve-vmla-bad.l: New test.
1529 * testsuite/gas/arm/mve-vmla-bad.s: New test.
1530 * testsuite/gas/arm/mve-vmul-bad-1.d: New test.
1531 * testsuite/gas/arm/mve-vmul-bad-1.l: New test.
1532 * testsuite/gas/arm/mve-vmul-bad-1.s: New test.
1533 * testsuite/gas/arm/mve-vmul-bad-2.d: New test.
1534 * testsuite/gas/arm/mve-vmul-bad-2.l: New test.
1535 * testsuite/gas/arm/mve-vmul-bad-2.s: New test.
1536 * testsuite/gas/arm/mve-vqaddsub-bad.d: New test.
1537 * testsuite/gas/arm/mve-vqaddsub-bad.l: New test.
1538 * testsuite/gas/arm/mve-vqaddsub-bad.s: New test.
1539
1540 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1541
1542 * config/tc-arm.c (M_MNEM_vmlaldav, M_MNEM_vmlaldava,
1543 M_MNEM_vmlaldavx, M_MNEM_vmlaldavax, M_MNEM_vmlsldav,
1544 M_MNEM_vmlsldava, M_MNEM_vmlsldavx, M_MNEM_vmlsldavax,
1545 M_MNEM_vrmlaldavhx, M_MNEM_vrmlaldavhax, M_MNEM_vrmlsldavh,
1546 M_MNEM_vrmlsldavha, M_MNEM_vrmlsldavhx, M_MNEM_vrmlsldavhax): New
1547 instruction encodings.
1548 (NEON_SHAPE_DEF): New shape
1549 (mve_encode_rrqq): New encoding helper function.
1550 (do_mve_vmlaldav): New encoding function.
1551 (do_mve_vrmlaldavh): New encoding function.
1552 (insns): Add entries for MVE mnemonics.
1553 * testsuite/gas/arm/mve-vmlaldav-bad.d: New test.
1554 * testsuite/gas/arm/mve-vmlaldav-bad.l: New test.
1555 * testsuite/gas/arm/mve-vmlaldav-bad.s: New test.
1556 * testsuite/gas/arm/mve-vmlalv-bad.d: New test.
1557 * testsuite/gas/arm/mve-vmlalv-bad.l: New test.
1558 * testsuite/gas/arm/mve-vmlalv-bad.s: New test.
1559 * testsuite/gas/arm/mve-vmlsldav-bad.d: New test.
1560 * testsuite/gas/arm/mve-vmlsldav-bad.l: New test.
1561 * testsuite/gas/arm/mve-vmlsldav-bad.s: New test.
1562 * testsuite/gas/arm/mve-vrmlaldavh-bad.d: New test.
1563 * testsuite/gas/arm/mve-vrmlaldavh-bad.l: New test.
1564 * testsuite/gas/arm/mve-vrmlaldavh-bad.s: New test.
1565
1566 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1567
1568 * config/tc-arm.c (M_MNEM_vmaxv, M_MNEM_vmaxav, M_MNEM_vminv,
1569 M_MNEM_vminav): New instruction encodings.
1570 (do_mve_vmaxv): New encoding function.
1571 (insns): Add entries for new MVE mnemonics.
1572 * testsuite/gas/arm/mve-vmaxv-vminv-bad.d: New test.
1573 * testsuite/gas/arm/mve-vmaxv-vminv-bad.l: New test.
1574 * testsuite/gas/arm/mve-vmaxv-vminv-bad.s: New test.
1575
1576 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1577
1578 * config/tc-arm.c (do_mve_vmaxnmv): New encoding function.
1579 (insns): Add entries for new mnemonics.
1580 * testsuite/gas/arm/mve-vmaxnmv-vminnmv-bad.d: New test.
1581 * testsuite/gas/arm/mve-vmaxnmv-vminnmv-bad.l: New test.
1582 * testsuite/gas/arm/mve-vmaxnmv-vminnmv-bad.s: New test.
1583
1584 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1585
1586 * config/tc-arm.c (do_mve_vmaxa_vmina): New encoding function.
1587 (do_mve_vmaxnma_vminnma): Likewise.
1588 (do_neon_dyadic_if_su): Change to support MVE variants.
1589 (do_vmaxnm): Likewise.
1590 (insns): Change to accept MVE variants and add new.
1591 * testsuite/gas/arm/mve-vmax-vmin-bad.d: New test.
1592 * testsuite/gas/arm/mve-vmax-vmin-bad.l: New test.
1593 * testsuite/gas/arm/mve-vmax-vmin-bad.s: New test.
1594 * testsuite/gas/arm/mve-vmaxa-vmina-bad.d: New test.
1595 * testsuite/gas/arm/mve-vmaxa-vmina-bad.l: New test.
1596 * testsuite/gas/arm/mve-vmaxa-vmina-bad.s: New test.
1597 * testsuite/gas/arm/mve-vmaxnm-vminnm-bad.d: New test.
1598 * testsuite/gas/arm/mve-vmaxnm-vminnm-bad.l: New test.
1599 * testsuite/gas/arm/mve-vmaxnm-vminnm-bad.s: New test.
1600 * testsuite/gas/arm/mve-vmaxnma-vminnma-bad.d: New test.
1601 * testsuite/gas/arm/mve-vmaxnma-vminnma-bad.l: New test.
1602 * testsuite/gas/arm/mve-vmaxnma-vminnma-bad.s: New test.
1603
1604 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1605
1606 * config/tc-arm.c (enum operand_parse_code): New operand.
1607 (parse_operands): Handle new operand.
1608 (mve_encode_qqr): Change to support new instructions.
1609 (enum vfp_or_neon_is_neon_bits): Moved.
1610 (vfp_or_neon_is_neon): Moved.
1611 (check_simd_pred_availability): Moved.
1612 (do_neon_dyadic_i_su): Changed to support MVE variants.
1613 (neon_dyadic_misc): Changed mve_encode_qqr call.
1614 (do_mve_vbrsr): Likewise.
1615 (do_mve_vhcadd): New encoding function.
1616 (insns): Change existing to accept MVE variants and add new.
1617 * testsuite/gas/arm/mve-vhadd-vhsub-vrhadd-bad.d: New test.
1618 * testsuite/gas/arm/mve-vhadd-vhsub-vrhadd-bad.l: New test.
1619 * testsuite/gas/arm/mve-vhadd-vhsub-vrhadd-bad.s: New test.
1620 * testsuite/gas/arm/mve-vhcadd-bad.d: New test.
1621 * testsuite/gas/arm/mve-vhcadd-bad.l: New test.
1622 * testsuite/gas/arm/mve-vhcadd-bad.s: New test.
1623
1624 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1625
1626 * config/tc-arm.c (do_neon_fmac): Change to support MVE variants.
1627 (insns): Change to accept MVE variants.
1628 * testsuite/gas/arm/mve-vfma-vfms-bad.d: New test.
1629 * testsuite/gas/arm/mve-vfma-vfms-bad.l: New test.
1630 * testsuite/gas/arm/mve-vfma-vfms-bad.s: New test.
1631
1632 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1633
1634 * config/tc-arm.c (M_MNEM_vddup, M_MNEM_vdwdup, M_MNEM_vidup,
1635 M_MNEM_viwdup): New instruction encodings.
1636 (NEON_SHAPE_DEF): New shapes.
1637 (do_mve_viddup): New encoding function.
1638 (do_neon_dup): Change to support new MVE variants.
1639 (insns): Change existing to accept MVE variants and add new.
1640 * testsuite/gas/arm/mve-vddup-bad.d: New test.
1641 * testsuite/gas/arm/mve-vddup-bad.l: New test.
1642 * testsuite/gas/arm/mve-vddup-bad.s: New test.
1643 * testsuite/gas/arm/mve-vdup-bad.d: New test.
1644 * testsuite/gas/arm/mve-vdup-bad.l: New test.
1645 * testsuite/gas/arm/mve-vdup-bad.s: New test.
1646 * testsuite/gas/arm/mve-vidup-bad.d: New test.
1647 * testsuite/gas/arm/mve-vidup-bad.l: New test.
1648 * testsuite/gas/arm/mve-vidup-bad.s: New test.
1649
1650 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1651
1652 * config/tc-arm.c (do_mve_vfmas): New encoding function.
1653 (do_neon_cls): Change to support MVE variants.
1654 (do_neon_clz): Change to support MVE variants.
1655 (insns): Change to support MVE variants and add new.
1656 * testsuite/gas/arm/mve-vcls-bad.d: New test.
1657 * testsuite/gas/arm/mve-vcls-bad.l: New test.
1658 * testsuite/gas/arm/mve-vcls-bad.s: New test.
1659 * testsuite/gas/arm/mve-vclz-bad.d: New test.
1660 * testsuite/gas/arm/mve-vclz-bad.l: New test.
1661 * testsuite/gas/arm/mve-vclz-bad.s: New test.
1662 * testsuite/gas/arm/mve-vfmas-bad.d: New test.
1663 * testsuite/gas/arm/mve-vfmas-bad.l: New test.
1664 * testsuite/gas/arm/mve-vfmas-bad.s: New test.
1665
1666 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1667
1668 * config/tc-arm.c (enum operand_parse_code): New operands.
1669 (parse_operands): Handle new operands.
1670 (do_mve_vcmul): New encoding function.
1671 (do_vcmla): Change to support MVE variants.
1672 (do_vcadd): Change to support MVE variants.
1673 (insns): Change existing to support MVE variants and add new.
1674 * testsuite/gas/arm/mve-vcadd-bad-1.d: New test.
1675 * testsuite/gas/arm/mve-vcadd-bad-1.l: New test.
1676 * testsuite/gas/arm/mve-vcadd-bad-1.s: New test.
1677 * testsuite/gas/arm/mve-vcadd-bad-2.d: New test.
1678 * testsuite/gas/arm/mve-vcadd-bad-2.l: New test.
1679 * testsuite/gas/arm/mve-vcadd-bad-2.s: New test.
1680 * testsuite/gas/arm/mve-vcmla-bad-1.d: New test.
1681 * testsuite/gas/arm/mve-vcmla-bad-1.l: New test.
1682 * testsuite/gas/arm/mve-vcmla-bad-1.s: New test.
1683 * testsuite/gas/arm/mve-vcmla-bad-2.d: New test.
1684 * testsuite/gas/arm/mve-vcmla-bad-2.l: New test.
1685 * testsuite/gas/arm/mve-vcmla-bad-2.s: New test.
1686 * testsuite/gas/arm/mve-vcmul-bad-1.d: New test.
1687 * testsuite/gas/arm/mve-vcmul-bad-1.l: New test.
1688 * testsuite/gas/arm/mve-vcmul-bad-1.s: New test.
1689 * testsuite/gas/arm/mve-vcmul-bad-2.d: New test.
1690 * testsuite/gas/arm/mve-vcmul-bad-2.l: New test.
1691 * testsuite/gas/arm/mve-vcmul-bad-2.s: New test.
1692
1693 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1694
1695 * config/tc-arm.c (enum operand_parse_code): New operands.
1696 (parse_operands): Handle new operands.
1697 (enum vfp_or_neon_is_neon_bits): Moved
1698 (vfp_or_neon_is_neon): Moved
1699 (check_simd_pred_availability): Moved.
1700 (do_neon_logic): Change to accept MVE variants.
1701 (insns): Changed to accept MVE variants.
1702 * testsuite/gas/arm/mve-vand-bad.d: New test.
1703 * testsuite/gas/arm/mve-vand-bad.l: New test.
1704 * testsuite/gas/arm/mve-vand-bad.s: New test.
1705 * testsuite/gas/arm/mve-vbic-bad.d: New test.
1706 * testsuite/gas/arm/mve-vbic-bad.l: New test.
1707 * testsuite/gas/arm/mve-vbic-bad.s: New test.
1708 * testsuite/gas/arm/mve-veor-bad.d: New test.
1709 * testsuite/gas/arm/mve-veor-bad.l: New test.
1710 * testsuite/gas/arm/mve-veor-bad.s: New test.
1711 * testsuite/gas/arm/mve-vorn-bad.d: New test.
1712 * testsuite/gas/arm/mve-vorn-bad.l: New test.
1713 * testsuite/gas/arm/mve-vorn-bad.s: New test.
1714 * testsuite/gas/arm/mve-vorr-bad.d: New test.
1715 * testsuite/gas/arm/mve-vorr-bad.l: New test.
1716 * testsuite/gas/arm/mve-vorr-bad.s: New test.
1717
1718 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1719
1720 * config/tc-arm.c (M_MNEM_vaddlv, M_MNEM_vaddlva, M_MNEM_vaddv,
1721 M_MNEM_vaddva): New instruction encodings.
1722 (mve_encode_rq): New encoding helper function.
1723 (do_mve_vaddlv): New encoding function.
1724 (do_mve_vaddv): New encoding function.
1725 * testsuite/gas/arm/mve-vaddlv-bad.d: New test.
1726 * testsuite/gas/arm/mve-vaddlv-bad.l: New test.
1727 * testsuite/gas/arm/mve-vaddlv-bad.s: New test.
1728 * testsuite/gas/arm/mve-vaddv-bad.d: New test.
1729 * testsuite/gas/arm/mve-vaddv-bad.l: New test.
1730 * testsuite/gas/arm/mve-vaddv-bad.s: New test.
1731
1732 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1733
1734 * config/tc-arm.c (M_MNEM_vadc, M_MNEM_vadci, M_MNEM_vbrsr):
1735 New instruction encodings.
1736 (do_mve_vadc): New encoding instruction.
1737 (do_mve_vbrsr): Likewise.
1738 (do_mve_vsbc): Likewise.
1739 * testsuite/gas/arm/mve-vadc-bad.d: New test.
1740 * testsuite/gas/arm/mve-vadc-bad.l: New test.
1741 * testsuite/gas/arm/mve-vadc-bad.s: New test.
1742 * testsuite/gas/arm/mve-vbrsr-bad.d: New test.
1743 * testsuite/gas/arm/mve-vbrsr-bad.l: New test.
1744 * testsuite/gas/arm/mve-vbrsr-bad.s: New test.
1745 * testsuite/gas/arm/mve-vsbc-bad.d: New test.
1746 * testsuite/gas/arm/mve-vsbc-bad.l: New test.
1747 * testsuite/gas/arm/mve-vsbc-bad.s: New test.
1748
1749 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1750
1751 * config/tc-arm.c (MVE_BAD_QREG): New error message.
1752 (enum operand_parse_code): Define new operand.
1753 (parse_operands): Handle new operand.
1754 (do_mve_vpt): Change for VPT blocks.
1755 (NEON_SHAPE_DEF): New shape.
1756 (neon_logbits): Moved.
1757 (LOW4): Moved
1758 (HI1): Moved
1759 (mve_get_vcmp_vpt_cond): New function to translate vpt conditions.
1760 (do_mve_vcmp): New encoding function.
1761 (do_vfp_nsyn_cmp): Changed to support MVE variants.
1762 (insns): Change to support MVE variants of vcmp and add vpt.
1763 * testsuite/gas/arm/mve-vcmp-bad-1.d: New test.
1764 * testsuite/gas/arm/mve-vcmp-bad-1.l: New test.
1765 * testsuite/gas/arm/mve-vcmp-bad-1.s: New test.
1766 * testsuite/gas/arm/mve-vcmp-bad-2.d: New test.
1767 * testsuite/gas/arm/mve-vcmp-bad-2.l: New test.
1768 * testsuite/gas/arm/mve-vcmp-bad-2.s: New test.
1769 * testsuite/gas/arm/mve-vpt-bad-1.d: New test.
1770 * testsuite/gas/arm/mve-vpt-bad-1.l: New test.
1771 * testsuite/gas/arm/mve-vpt-bad-1.s: New test.
1772 * testsuite/gas/arm/mve-vpt-bad-2.d: New test.
1773 * testsuite/gas/arm/mve-vpt-bad-2.l: New test.
1774 * testsuite/gas/arm/mve-vpt-bad-2.s: New test.
1775
1776 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1777
1778 * config/tc-arm.c (struct arm_it): Expand isscalar field to be able to
1779 distinguish between types of scalar.
1780 (parse_typed_reg_or_scalar): Change to accept MVE scalar variants.
1781 (parse_scalar): Likewise.
1782 (parse_neon_mov): Accept MVE variant.
1783 (po_scalar_or_goto): Make use reg_type.
1784 (parse_operands): Change uses of po_scalar_or_goto.
1785 (do_vfp_sp_monadic): Change to accept MVE variants.
1786 (do_vfp_reg_from_sp): Likewise.
1787 (do_vfp_sp_from_reg): Likewise.
1788 (do_vfp_dp_rd_rm): Likewise.
1789 (do_vfp_dp_rd_rn_rm): Likewise.
1790 (do_vfp_dp_rm_rd_rn): Likewise.
1791 (M_MNEM_vmovlt, M_MNEM_vmovlb, M_MNEM_vmovnt, M_MNEM_vmovnb): New
1792 instruction encodings.
1793 (NEON_SHAPE_DEF): New shape.
1794 (do_mve_mov): New encoding fuction.
1795 (do_mve_movn): Likewise.
1796 (do_mve_movl): Likewise.
1797 (do_neon_mov): Change to accept MVE variants.
1798 (mcCE): New MACRO.
1799 (insns): Accept new MVE variants and instructions.
1800 * testsuite/gas/arm/mve-vmov-bad-1.d: New test.
1801 * testsuite/gas/arm/mve-vmov-bad-1.l: New test.
1802 * testsuite/gas/arm/mve-vmov-bad-1.s: New test.
1803 * testsuite/gas/arm/mve-vmov-bad-2.d: New test.
1804 * testsuite/gas/arm/mve-vmov-bad-2.l: New test.
1805 * testsuite/gas/arm/mve-vmov-bad-2.s: New test.
1806
1807 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1808
1809 * config/tc-arm.c (enum operand_parse_code): Add new operand.
1810 (parse_operands): Handle new operand.
1811 (do_neon_cvt_1): Handle MVE variants.
1812 (do_neon_cvttb_1): Likewise.
1813 (insns): Accept MVE variants.
1814 * testsuite/gas/arm/mve-vcvt-bad-1.d: New test.
1815 * testsuite/gas/arm/mve-vcvt-bad-1.l: New test.
1816 * testsuite/gas/arm/mve-vcvt-bad-1.s: New test.
1817 * testsuite/gas/arm/mve-vcvt-bad-2.d: New test.
1818 * testsuite/gas/arm/mve-vcvt-bad-2.l: New test.
1819 * testsuite/gas/arm/mve-vcvt-bad-2.s: New test.
1820 * testsuite/gas/arm/mve-vcvt-bad-3.d: New test.
1821 * testsuite/gas/arm/mve-vcvt-bad-3.l: New test.
1822 * testsuite/gas/arm/mve-vcvt-bad-3.s: New test.
1823 * testsuite/gas/arm/mve-vcvt-bad-4.d: New test.
1824 * testsuite/gas/arm/mve-vcvt-bad-4.l: New test.
1825 * testsuite/gas/arm/mve-vcvt-bad-4.s: New test.
1826 * testsuite/gas/arm/mve-vcvt-bad.d: New test.
1827 * testsuite/gas/arm/mve-vcvt-bad.l: New test.
1828 * testsuite/gas/arm/mve-vcvt-bad.s: New test.
1829
1830 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1831
1832 * config/tc-arm.c (struct arm_it): Make immisreg field larger to hold
1833 type of register.
1834 (enum shift_kind): Add SHIFT_UXTW shift kind.
1835 (enum parse_shift_mode): Add SHIFT_UXTW_IMMEDIATE shift mode.
1836 (parse_shift): Handle new shift type.
1837 (parse_address_main): Accept new addressing modes.
1838 (M_MNEM_vstrb, M_MNEM_vstrh, M_MNEM_vstrw, M_MNEM_vstrd,
1839 M_MNEM_vldrb, M_MNEM_vldrh, M_MNEM_vldrw, M_MNEM_vldrd): New
1840 instruction encodings.
1841 (do_mve_vstr_vldr_QI): New encoding functions.
1842 (do_mve_vstr_vldr_RQ): Likewise.
1843 (do_mve_vstr_vldr_RI): Likewise.
1844 (do_mve_vstr_vldr): Likewise.
1845 * testsuite/gas/arm/mve-vldr-bad-1.d: New test.
1846 * testsuite/gas/arm/mve-vldr-bad-1.l: New test.
1847 * testsuite/gas/arm/mve-vldr-bad-1.s: New test.
1848 * testsuite/gas/arm/mve-vldr-bad-2.d: New test.
1849 * testsuite/gas/arm/mve-vldr-bad-2.l: New test.
1850 * testsuite/gas/arm/mve-vldr-bad-2.s: New test.
1851 * testsuite/gas/arm/mve-vldr-bad-3.d: New test.
1852 * testsuite/gas/arm/mve-vldr-bad-3.l: New test.
1853 * testsuite/gas/arm/mve-vldr-bad-3.s: New test.
1854 * testsuite/gas/arm/mve-vstr-bad-1.d: New test.
1855 * testsuite/gas/arm/mve-vstr-bad-1.l: New test.
1856 * testsuite/gas/arm/mve-vstr-bad-1.s: New test.
1857 * testsuite/gas/arm/mve-vstr-bad-2.d: New test.
1858 * testsuite/gas/arm/mve-vstr-bad-2.l: New test.
1859 * testsuite/gas/arm/mve-vstr-bad-2.s: New test.
1860 * testsuite/gas/arm/mve-vstr-bad-3.d: New test.
1861 * testsuite/gas/arm/mve-vstr-bad-3.l: New test.
1862 * testsuite/gas/arm/mve-vstr-bad-3.s: New test.
1863
1864 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1865
1866 * config/tc-arm.c (enum it_instruction_type): Add MVE_UNPREDICABLE_INSN.
1867 (BAD_EL_TYPE): New error message.
1868 (parse_neon_el_struct_list): Adapt to be able to accept MVE variant.
1869 (parse_address_main): Likewise.
1870 (group_reloc_type): Add GROUP_MVE.
1871 (enum operand_parse_code): Add new operands.
1872 (parse_operands): Handle new operands.
1873 (M_MNEM_vst20, M_MNEM_vst21, M_MNEM_vst40, M_MNEM_vst41, M_MNEM_vst42,
1874 M_MNEM_vst43, M_MNEM_vld20, M_MNEM_vld21, M_MNEM_vld40, M_MNEM_vld41,
1875 M_MNEM_vld42, M_MNEM_vld43): New encodings.
1876 (do_mve_vst_vld): New encoding function.
1877 (do_neon_ld_st_interleave): Use BAD_EL_TYPE.
1878 (it_fsm_pre_encode): Handle new it_instruction_type
1879 (handle_pred_state): Likewise.
1880 * testsuite/gas/arm/mve-vstld-bad.d: New test.
1881 * testsuite/gas/arm/mve-vstld-bad.l: New test.
1882 * testsuite/gas/arm/mve-vstld-bad.s: New test.
1883
1884 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1885
1886 * config/tc-arm.c (BAD_MVE_AUTO): New error message.
1887 (BAD_MVE_SRCDEST): Likewise.
1888 (mark_feature_used): Diagnose MVE only instructions when in
1889 auto-detection mode or -march=all.
1890 (enum operand_parse_code): Define new operand.
1891 (parse_operands): Handle new operand.
1892 (M_MNEM_vmullt, M_MNEM_vmullb): New encodings.
1893 (mve_encode_qqq): New encoding helper function.
1894 (do_mve_vmull): New encoding function.
1895 (insns): Handle new instructions.
1896 * testsuite/gas/arm/mve-vmullbt-bad.d: New test.
1897 * testsuite/gas/arm/mve-vmullbt-bad.l: New test.
1898 * testsuite/gas/arm/mve-vmullbt-bad.s: New test.
1899
1900 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1901
1902 * config/tc-arm.c (struct asm_opcode): Make avalue a full int.
1903 (BAD_ODD, BAD_EVEN, BAD_SIMD_TYPE): New errors.
1904 (enum operand_parse_code): Handle new operands.
1905 (parse_operands): Likewise.
1906 (M_MNEM_vabav, M_MNEM_vmladav, M_MNEM_vmladava, M_MNEM_vmladavx,
1907 M_MNEM_vmladavax, M_MNEM_vmlsdav, M_MNEM_vmlsdava, M_MNEM_vmlsdavx,
1908 M_MNEM_vmlsdavax): Define new encodings.
1909 (NEON_SHAPE_DEF): Add new shape.
1910 (neon_check_type): Use BAD_SIMD_TYPE.
1911 (mve_encode_rqq): New encoding helper function.
1912 (do_mve_vabav, do_mve_vmladav): New encoding functions.
1913 (mCEF): New MACRO.
1914 * testsuite/gas/arm/mve-vabav-bad.d: New test.
1915 * testsuite/gas/arm/mve-vabav-bad.l: New test.
1916 * testsuite/gas/arm/mve-vabav-bad.s: New test.
1917 * testsuite/gas/arm/mve-vmladav-bad.d: New test.
1918 * testsuite/gas/arm/mve-vmladav-bad.l: New test.
1919 * testsuite/gas/arm/mve-vmladav-bad.s: New test.
1920 * testsuite/gas/arm/mve-vmlav-bad.d: New test.
1921 * testsuite/gas/arm/mve-vmlav-bad.l: New test.
1922 * testsuite/gas/arm/mve-vmlav-bad.s: New test.
1923 * testsuite/gas/arm/mve-vmlsdav-bad.d: New test.
1924 * testsuite/gas/arm/mve-vmlsdav-bad.l: New test.
1925 * testsuite/gas/arm/mve-vmlsdav-bad.s: New test.
1926
1927 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1928
1929 * config/tc-arm.c (do_neon_abs_neg): Make it accept MVE variant.
1930 (insns): Change vabs and vneg entries to accept MVE variants.
1931 * testsuite/gas/arm/mve-vabsneg-bad-1.d: New test.
1932 * testsuite/gas/arm/mve-vabsneg-bad-1.l: New test.
1933 * testsuite/gas/arm/mve-vabsneg-bad-1.s: New test.
1934 * testsuite/gas/arm/mve-vabsneg-bad-2.d: New test.
1935 * testsuite/gas/arm/mve-vabsneg-bad-2.l: New test.
1936 * testsuite/gas/arm/mve-vabsneg-bad-2.s: New test.
1937
1938 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
1939
1940 * config/tc-arm.c (enum it_instruction_type): Rename to...
1941 (enum pred_instruction_type): ... this. Include VPT types.
1942 (it_insn_type): Rename to ...
1943 (pred_insn_type): .. this.
1944 (arm_it): Change comment.
1945 (enum arm_reg_type): Add new value.
1946 (reg_expected_msgs): New entry.
1947 (asm_opcode): Add mayBeVecPred member.
1948 (BAD_SYNTAX, BAD_NOT_VPT, BAD_OUT_VPT, BAD_VPT_COND, MVE_NOT_IT,
1949 MVE_NOT_VPT, MVE_BAD_PC, MVE_BAD_SP): New diagnostic MACROS.
1950 (arm_vcond_hsh): New table for vector condition codes.
1951 (now_it): Rename to ...
1952 (now_pred): ... this.
1953 (now_it_compatible): Rename to ...
1954 (now_pred_compatible): ... this.
1955 (in_it_block): Rename to ...
1956 (in_pred_block): ... this.
1957 (handle_it_state): Rename to ...
1958 (handle_pred_state): ... this. And change it to accept VPT blocks.
1959 (set_it_insn_type): Rename to ...
1960 (set_pred_insn_type): ... this.
1961 (set_it_insn_type_nonvoid): Rename to ...
1962 (set_pred_insn_type_nonvoid): ... this.
1963 (set_it_insn_type_last): Rename to ...
1964 (set_pred_insn_type_last): ... this.
1965 (record_feature_use): Moved.
1966 (mark_feature_used): Likewise.
1967 (parse_typed_reg_or_scalar): Add new case for REG_TYPE_MQ.
1968 (emit_insn): Use renamed functions and variables.
1969 (enum operand_parse_code): Add new operands.
1970 (parse_operands): Handle new operands.
1971 (do_scalar_fp16_v82_encode): Change predication detection.
1972 (do_it): Use renamed functions and variables.
1973 (do_t_add_sub): Likewise.
1974 (do_t_arit3): Likewise.
1975 (do_t_arit3c): Likewise.
1976 (do_t_blx): Likewise.
1977 (do_t_branch): Likewise.
1978 (do_t_bkpt_hlt1): Likewise.
1979 (do_t_branch23): Likewise.
1980 (do_t_bx): Likewise.
1981 (do_t_bxj): Likewise.
1982 (do_t_cond): Likewise.
1983 (do_t_csdb): Likewise.
1984 (do_t_cps): Likewise.
1985 (do_t_cpsi): Likewise.
1986 (do_t_cbz): Likewise.
1987 (do_t_it): Likewise.
1988 (do_mve_vpt): New function to handle VPT blocks.
1989 (encode_thumb2_multi): Use renamed functions and variables.
1990 (do_t_ldst): Use renamed functions and variables.
1991 (do_t_mov_cmp): Likewise.
1992 (do_t_mvn_tst): Likewise.
1993 (do_t_mul): Likewise.
1994 (do_t_nop): Likewise.
1995 (do_t_neg): Likewise.
1996 (do_t_rsb): Likewise.
1997 (do_t_setend): Likewise.
1998 (do_t_shift): Likewise.
1999 (do_t_smc): Likewise.
2000 (do_t_tb): Likewise.
2001 (do_t_udf): Likewise.
2002 (do_t_loloop): Likewise.
2003 (do_neon_cvt_1): Likewise.
2004 (do_vfp_nsyn_cvt_fpv8): Likewise.
2005 (do_vsel): Likewise.
2006 (do_vmaxnm): Likewise.
2007 (do_vrint_1): Likewise.
2008 (do_crypto_2op_1): Likewise.
2009 (do_crypto_3op_1): Likewise.
2010 (do_crc32_1): Likewise.
2011 (it_fsm_pre_encode): Likewise.
2012 (it_fsm_post_encode): Likewise.
2013 (force_automatic_it_block_close): Likewise.
2014 (check_it_blocks_finished): Likewise.
2015 (check_pred_blocks_finished): Likewise.
2016 (arm_cleanup): Likewise.
2017 (now_it_add_mask): Rename to ...
2018 (now_pred_add_mask): ... this. And use new variables and functions.
2019 (NEON_ENC_TAB): Add entries for vabdl, vaddl and vsubl.
2020 (N_I_MVE, N_F_MVE, N_SU_MVE): New MACROs.
2021 (neon_check_type): Generalize error message.
2022 (mve_encode_qqr): New MVE generic encoding function.
2023 (neon_dyadic_misc): Change to accept MVE variants.
2024 (do_neon_dyadic_if_su): Likewise.
2025 (do_neon_addsub_if_i): Likewise.
2026 (do_neon_dyadic_long): Likewise.
2027 (vfp_or_neon_is_neon): Add extra checks.
2028 (check_simd_pred_availability): Helper function to check SIMD
2029 instruction availability with respect to predication.
2030 (enum opcode_tag): New suffix value.
2031 (opcode_lookup): Change to handle VPT blocks.
2032 (new_automatic_it_block): Rename to ...
2033 (close_automatic_it_block): ...this.
2034 (TxCE, TxC3, TxC3w, TUE, TUEc, TUF, CE, C3, ToC, ToU,
2035 toC, toU, CL, cCE, cCL, C3E, xCM_, UE, UF, NUF, nUF,
2036 NCE_tag, NCE, NCEF, nCE_tag, nCE, nCEF): Add default value for new
2037 field.
2038 (mCEF, mnCEF, mnCE, MNUF, mnUF, mToC, MNCE, MNCEF): New MACROs.
2039 (insns): Redefine vadd, vsub, cabd, vabdl, vaddl, vsubl to accept MVE
2040 variants. Add entries for vscclrm, and vpst.
2041 (md_begin): Add arm_vcond_hsh initialization.
2042 * config/tc-arm.h (enum it_state): Rename to...
2043 (enum pred_state): ...this.
2044 (struct current_it): Rename to...
2045 (struct current_pred): ...this.
2046 (enum pred_type): New enum.
2047 (struct arm_segment_info_type): Use current_pred.
2048 * testsuite/gas/arm/armv8_3-a-fp-bad.l: Update error message.
2049 * testsuite/gas/arm/armv8_3-a-simd-bad.l: Update error message.
2050 * testsuite/gas/arm/dotprod-illegal.l: Update error message.
2051 * testsuite/gas/arm/mve-vaddsubabd-bad-1.d: New test.
2052 * testsuite/gas/arm/mve-vaddsubabd-bad-1.l: New test.
2053 * testsuite/gas/arm/mve-vaddsubabd-bad-1.s: New test.
2054 * testsuite/gas/arm/mve-vaddsubabd-bad-2.d: New test.
2055 * testsuite/gas/arm/mve-vaddsubabd-bad-2.l: New test.
2056 * testsuite/gas/arm/mve-vaddsubabd-bad-2.s: New test.
2057 * testsuite/gas/arm/mve-vpst-bad.d: New test.
2058 * testsuite/gas/arm/mve-vpst-bad.l: New test.
2059 * testsuite/gas/arm/mve-vpst-bad.s: New test.
2060 * testsuite/gas/arm/neon-ldst-es-bad.l: Updated error message.
2061
2062 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
2063
2064 * config/tc-arm.c (mve_ext, mve_fp_ext): New features.
2065 (armv8_1m_main_ext_table): Add new extensions.
2066 (aeabi_set_public_attributes): Translate new features to new build attributes.
2067 (arm_convert_symbolic_attribute): Add Tag_MVE_arch.
2068 * doc/c-arm.texi: Document new extensions and new build attribute.
2069
2070 2019-05-15 John Darrington <john@darrington.wattle.id.au>
2071
2072 * config/tc-s12z.c (register_prefix): New variable. (md_show_usage,
2073 md_parse_option): parse the new option.
2074 (lex_reg_name): Scan the prefix if one is set.
2075 * doc/c-s12z.texi (S12Z-Opts): Document the new option.
2076 * testsuite/gas/s12z/reg-prefix.d: New file.
2077 * testsuite/gas/s12z/reg-prefix.s: New file.
2078 * testsuite/gas/s12z/s12z.exp: Add them.
2079
2080 2019-05-14 John Darrington <john@darrington.wattle.id.au>
2081
2082 * doc/as.texi (Machine Dependencies): Fix misaligned menu entry.
2083
2084 2019-05-15 Alan Modra <amodra@gmail.com>
2085
2086 * config/tc-csky.c (md_convert_frag): Initialise trailing
2087 padding for COND_JUMP_PIC.
2088
2089 2019-05-15 Alan Modra <amodra@gmail.com>
2090
2091 * dwarf2dbg.c: Whitespace fixes.
2092 (get_filenum): Don't strdup "file". Adjust error message.
2093 (dwarf2_directive_filename): Use an unsigned type for "num".
2094 Catch truncation of file number and overflow of get_filenum
2095 XRESIZEVEC multiplication. Delete dead code.
2096
2097 2019-05-15 Alan Modra <amodra@gmail.com>
2098
2099 PR 24538
2100 * config/tc-tic54x.c (tic54x_start_line_hook): Do skip end of line
2101 chars in setting endp.
2102
2103 2019-05-14 Nick Clifton <nickc@redhat.com>
2104
2105 PR 24538
2106 * config/tc-i386-intel.c (i386_intel_simplify_register): Reject
2107 illegal register numbers.
2108
2109 2019-05-10 Nick Clifton <nickc@redhat.com>
2110
2111 PR 24538
2112 * macro.c (get_any_string): Increase size of buffer used to hold
2113 decimal value of expression result.
2114 * dw2gencfi.c (get_debugseg_name): Handle an empty name.
2115 * dwarf2dbg.c (get_filenum): Catch integer wraparound when
2116 extending allocate file array.
2117 (dwarf2_directive_filename): Add extra checks of the computed file
2118 number.
2119 * config/tc-arm.c (arm_tc_equal_in_insn): Insert copy of name into
2120 warning hash table.
2121 (s_arm_eabi_attribute): Check for obj_elf_vendor_attribute
2122 returning -1.
2123 * config/tc-i386.c (i386_output_nops): Catch an attempt to
2124 generate nops of negative lengths.
2125 * as.h (MAX_LITTLENUMS): Move definition to here from...
2126 * config/atof-ieee.c: ...here.
2127 * config/tc-aarch64.c: ...here.
2128 * config/tc-arc.c: ...here.
2129 * config/tc-arm.c: ...here.
2130 * config/tc-epiphany.c: ...here.
2131 * config/tc-i386.c: ...here.
2132 * config/tc-ia64.c: ...here. (And correct the value).
2133 * config/tc-m32c.c: ...here.
2134 * config/tc-m32r.c: ...here.
2135 * config/tc-metag.c: ...here.
2136 * config/tc-microblaze.c: ...here.
2137 * config/tc-nds32.c: ...here.
2138 * config/tc-or1k.c: ...here.
2139 * config/tc-score.c: ...here.
2140 * config/tc-score7.c: ...here.
2141 * config/tc-tic4x.c: ...here.
2142 * config/tc-tilegx.c: ...here.
2143 * config/tc-tilepro.c: ...here.
2144 * config/tc-visium.c: ...here.
2145 * config/tc-sh.c (md_assemble): Add check for an instruction with
2146 no opcodes.
2147 * config/tc-mips.c (mips_lookup_insn): Add check for very short
2148 instruction name.
2149 * config/tc-tic54x.c: Use unsigned chars to access is_end_of_line
2150 array.
2151 (tic54x_start_line_hook): Check for an empty line.
2152 (next_line_shows_parallel): Do not walk off the end of the string.
2153 (tic54x_macro_start): Check for too much macro nesting.
2154 (tic54x_start_label): Add label_start parameter. Use this
2155 parameter to check the first character of the label.
2156
2157 * config/tc-tic54x.h (TC_START_LABEL_WITHOUT_COLON): Pass
2158 line_start variable to tic54x_start_label.
2159
2160 2019-05-10 Faraz Shahbazker <fshahbazker@wavecomp.com>
2161
2162 * config/tc-mips.c (macro) <M_ADD_I, M_SUB_I, M_DADD_I, M_DSUB_I>:
2163 Add expansions for MIPS r6.
2164 * testsuite/gas/mips/add.s: Enable tests for R6.
2165 * testsuite/gas/mips/daddi.s: Annotate to test DADD for R6.
2166 * testsuite/gas/mips/mipsr6@add.d: Likewise.
2167 * gas/testsuite/gas/mips/mipsr6@dadd.d: New test.
2168 * gas/testsuite/gas/mips/mips.exp: Run the new test.
2169
2170 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2171
2172 * testsuite/gas/aarch64/sve2.d: Remove file format restriction.
2173
2174 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2175
2176 * testsuite/gas/aarch64/illegal-sve2-aes.d: New test.
2177 * testsuite/gas/aarch64/illegal-sve2-bitperm.d: New test.
2178 * testsuite/gas/aarch64/illegal-sve2-sha3.d: Test new instructions.
2179 * testsuite/gas/aarch64/illegal-sve2-sm4.d: Test new instructions.
2180 * testsuite/gas/aarch64/illegal-sve2-sve1ext.d: Test new instructions.
2181 * testsuite/gas/aarch64/illegal-sve2-sve1ext.l: Test new instructions.
2182 * testsuite/gas/aarch64/illegal-sve2.d: Test new instructions.
2183 * testsuite/gas/aarch64/illegal-sve2.l: Test new instructions.
2184 * testsuite/gas/aarch64/illegal-sve2.s: Test new instructions.
2185 * testsuite/gas/aarch64/sve1-extended-sve2.s: New test.
2186 * testsuite/gas/aarch64/sve2.d: Test new instructions.
2187 * testsuite/gas/aarch64/sve2.s: Test new instructions.
2188
2189 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2190
2191 * config/tc-aarch64.c (parse_operands): Handle new SVE_SHLIMM_UNPRED_22
2192 operand.
2193
2194 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2195
2196 * config/tc-aarch64.c (parse_operands): Handle new SVE_Zm4_11_INDEX
2197 operand.
2198
2199 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2200
2201 * config/tc-aarch64.c (parse_operands): Handle new SVE_SHRIMM_UNPRED_22
2202 operand.
2203
2204 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2205
2206 * config/tc-aarch64.c (REG_ZR): Macro specifying zero register.
2207 (parse_address_main): Account for new addressing mode [Zn.S, Xm].
2208 (parse_operands): Handle new SVE_ADDR_ZX operand.
2209
2210 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2211
2212 * config/tc-aarch64.c (parse_operands): Handle new SVE_Zm3_11_INDEX
2213 operand.
2214
2215 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2216
2217 * config/tc-aarch64.c (parse_operands): Handle new SVE_IMM_ROT3 operand.
2218
2219 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com>
2220
2221 * config/tc-aarch64.c: Add command line architecture feature flags
2222 "sve2", "sve2-sm4", "sve2-aes", "sve2-sha3", "bitperm".
2223 * doc/c-aarch64.texi: Document new architecture feature flags.
2224
2225 2019-05-08 Alan Modra <amodra@gmail.com>
2226
2227 * testsuite/gas/elf/dwarf2-1.s,
2228 * testsuite/gas/elf/dwarf2-2.s,
2229 * testsuite/gas/elf/dwarf2-5.s,
2230 * testsuite/gas/elf/dwarf2-7.s,
2231 * testsuite/gas/elf/dwarf2-8.s,
2232 * testsuite/gas/elf/dwarf2-9.s,
2233 * testsuite/gas/elf/dwarf2-10.s,
2234 * testsuite/gas/elf/dwarf2-11.s,
2235 * testsuite/gas/elf/dwarf2-12.s,
2236 * testsuite/gas/elf/dwarf2-13.s,
2237 * testsuite/gas/elf/dwarf2-14.s,
2238 * testsuite/gas/elf/dwarf2-15.s,
2239 * testsuite/gas/elf/dwarf2-16.s,
2240 * testsuite/gas/elf/dwarf2-17.s,
2241 * testsuite/gas/elf/dwarf2-18.s,
2242 * testsuite/gas/elf/dwarf2-19.s: Double size of align and simulated
2243 instructions.
2244 * testsuite/gas/elf/dwarf2-1.d,
2245 * testsuite/gas/elf/dwarf2-2.d,
2246 * testsuite/gas/elf/dwarf2-5.d,
2247 * testsuite/gas/elf/dwarf2-7.d,
2248 * testsuite/gas/elf/dwarf2-8.d,
2249 * testsuite/gas/elf/dwarf2-9.d,
2250 * testsuite/gas/elf/dwarf2-10.d,
2251 * testsuite/gas/elf/dwarf2-11.d,
2252 * testsuite/gas/elf/dwarf2-12.d,
2253 * testsuite/gas/elf/dwarf2-13.d,
2254 * testsuite/gas/elf/dwarf2-14.d,
2255 * testsuite/gas/elf/dwarf2-15.d,
2256 * testsuite/gas/elf/dwarf2-16.d,
2257 * testsuite/gas/elf/dwarf2-17.d,
2258 * testsuite/gas/elf/dwarf2-18.d,
2259 * testsuite/gas/elf/dwarf2-19.d: Use xfail rather than notarget.
2260 Remove avr, pru, tile, xtensa from xfails. Update expected output.
2261 * testsuite/gas/elf/elf.exp: Sort targets.
2262 (dump_opts): Pass {as -mno-relax} for riscv, {as -mno-link-relax}
2263 for avr and pru, and {as --no-link-relax} for xtensa to dwarf tests.
2264 * testsuite/gas/elf/section2.e-miwmmxt: Delete unused file.
2265
2266 2019-05-08 Alan Modra <amodra@gmail.com>
2267
2268 * config/tc-xtensa.c (opt_linkrelax): New variable.
2269 (md_parse_option): Set it here.
2270 (md_begin): Copy opt_linkrelax to linkrelax.
2271
2272 2019-05-07 Alexandre Oliva <aoliva@redhat.com>
2273
2274 * testsuite/gas/elf/dwarf2-18.d: Xfail mep-*.
2275 * testsuite/gas/elf/dwarf2-19.d: Likewise.
2276
2277 2019-05-07 Alan Modra <amodra@gmail.com>
2278
2279 * symbols.c (use_complex_relocs_for): Formatting. Factor out
2280 X_add_symbol tests.
2281
2282 2019-05-06 Andrew Bennett <andrew.bennett@imgtec.com>
2283 Faraz Shahbazker <fshahbazker@wavecomp.com>
2284
2285 * config/tc-mips.c (mips_set_ase): Handle ASE_EVA_R6.
2286 (macro) <M_LLWPE_AB, M_SCWPE_AB>: New cases.
2287 (mips_after_parse_args): Translate EVA to EVA_R6.
2288 * testsuite/gas/mips/ase-errors-1.s: Add new instructions.
2289 * testsuite/gas/mips/eva.s: Likewise.
2290 * testsuite/gas/mips/ase-errors-1.l: Check errors for
2291 new instructions.
2292 * testsuite/gas/mips/mipsr6@eva.d: Check new test cases.
2293
2294 2019-05-06 Alan Modra <amodra@gmail.com>
2295
2296 * symbols.c (symbol_relc_make_sym): Do not access sym->sy_value
2297 directly.
2298
2299 2019-05-06 Alan Modra <amodra@gmail.com>
2300
2301 * config/tc-ppc.c (ppc_fix_adjustable): Exclude all GOT and PLT
2302 relocs, and VLE sdarel relocs.
2303 * testsuite/gas/ppc/power4.d: Adjust.
2304
2305 2019-05-05 Alexandre Oliva <aoliva@redhat.com>
2306
2307 * dwarf2dbg.c (set_or_check_view): Skip heads when assigning
2308 views of prior locs.
2309 (dwarf2_gen_line_info_1): Skip heads.
2310 (size_inc_line_addr, emit_inc_line_addr): Drop
2311 DW_LNS_advance_pc for zero addr delta.
2312 (dwarf2_finish): Assign views for heads of segments.
2313 * testsuite/gas/elf/dwarf2-19.d: New.
2314 * testsuite/gas/elf/dwarf2-19.s: New.
2315 * testsuite/gas/elf/elf.exp: Test it.
2316
2317 2019-05-04 Alan Modra <amodra@gmail.com>
2318
2319 * config/tc-m32c.c (insn_size): Delete static var.
2320 (md_begin): Don't set it.
2321 (m32c_md_end): Delete.
2322 (md_assemble): Add insn_size auto var.
2323 * config/tc-m32c.h (md_end): Don't define.
2324 (m32c_md_end): Delete.
2325 (NOP_OPCODE, HANDLE_ALIGN, MAX_MEM_FOR_RS_ALIGN_CODE): Define.
2326 * testsuite/gas/all/align.d: Remove m32c from notarget list.
2327 * testsuite/gas/all/incbin.d: Likewise.
2328 * testsuite/gas/elf/dwarf2-11.d: Likewise.
2329 * testsuite/gas/macros/semi.d: Likewise.
2330 * testsuite/gas/all/gas.exp (do_comment): Similarly.
2331
2332 2019-05-02 H.J. Lu <hongjiu.lu@intel.com>
2333
2334 PR gas/24485
2335 * config/tc-i386.c (process_suffix): Issue a warning to IRET
2336 without a suffix for .code16gcc.
2337 * testsuite/gas/i386/jump16.s: Add tests for iretX.
2338 * testsuite/gas/i386/jump16.d: Updated.
2339 * testsuite/gas/i386/jump16.e: New file.
2340
2341 2019-05-01 Sudakshina Das <sudi.das@arm.com>
2342
2343 * config/tc-aarch64.c (parse_operands): Add case for
2344 AARCH64_OPND_TME_UIMM16.
2345 (aarch64_features): Add "tme".
2346 * doc/c-aarch64.texi: Document the same.
2347 * testsuite/gas/aarch64/tme-invalid.d: New test.
2348 * testsuite/gas/aarch64/tme-invalid.l: New test.
2349 * testsuite/gas/aarch64/tme-invalid.s: New test.
2350 * testsuite/gas/aarch64/tme.d: New test.
2351 * testsuite/gas/aarch64/tme.s: New test.
2352
2353 2019-04-29 John Darrington <john@darrington.wattle.id.au>
2354
2355 * testsuite/gas/s12z/truncated.d: New file.
2356 * testsuite/gas/s12z/truncated.s: New file.
2357 * testsuite/gas/s12z/s12z.exp: Add new test.
2358
2359 2019-04-26 Andrew Bennett <andrew.bennett@imgtec.com>
2360 Faraz Shahbazker <fshahbazker@wavecomp.com>
2361
2362 * config/tc-mips.c (macro) <M_LLWP_AB, M_LLDP_AB, M_SCWP_AB,
2363 M_SCDP_AB>: New cases and expansions for paired instructions.
2364 * testsuite/gas/mips/llpscp-32.s: New test source.
2365 * testsuite/gas/mips/llpscp-64.s: Likewise.
2366 * testsuite/gas/mips/llpscp-32.d: New test.
2367 * testsuite/gas/mips/llpscp-64.d: Likewise.
2368 * testsuite/gas/mips/mips.exp: Run the new tests.
2369 * testsuite/gas/mips/r6.s: Add new instructions to test source.
2370 * testsuite/gas/mips/r6-64.s: Likewise.
2371 * testsuite/gas/mips/r6-64-n32.d: Check new instructions.
2372 * testsuite/gas/mips/r6-64-n64.d: Likewise.
2373 * testsuite/gas/mips/r6-n32.d: Likewise.
2374 * testsuite/gas/mips/r6-n64.d: Likwwise.
2375 * testsuite/gas/mips/r6.d: Likewise.
2376
2377 2019-04-26 H.J. Lu <hongjiu.lu@intel.com>
2378
2379 PR gas/24485
2380 * config/tc-i386.c (process_suffix): Don't add DATA_PREFIX_OPCODE
2381 to IRET for .code16gcc.
2382 * testsuite/gas/i386/jump16.s: Add IRET tests.
2383 * testsuite/gas/i386/jump16.d: Updated.
2384
2385 2019-04-25 Alexandre Oliva <aoliva@redhat.com>
2386 Alan Modra <amodra@gmail.com>
2387
2388 PR gas/24444
2389 * frags.c (frag_gtoffset_p): New.
2390 * frags.h (frag_gtoffset_p): Declare it.
2391 * expr.c (resolve_expression): Use it.
2392
2393 2019-04-24 Alan Modra <amodra@gmail.com>
2394
2395 PR 24444
2396 * symbols.c (resolve_symbol_value): When handling symbols
2397 marked as sy_flags.resolved, return correct value for the
2398 case of expression symbols left as an O_symbol expression.
2399 Merge O_symbol code handling undefined and common symbols with
2400 code handling special cases of expression symbols. Use
2401 seg_left to test for undefined and common symbols. Don't
2402 leave an O_symbol expression when X_add_symbol resolves to
2403 the absolute_section. Init final_val later.
2404 * testsuite/gas/mmix/basep-7.d: Adjust expected output.
2405
2406 2019-04-24 John Darrington <john@darrington.wattle.id.au>
2407
2408 * testsuite/gas/s12z/bit-manip-invalid.s: Extend test for BSET
2409 and BCLR instructions with an invalid mode.
2410 * testsuite/gas/s12z/bit-manip-invalid.d: ditto.
2411
2412 2019-04-19 Nick Clifton <nickc@redhat.com>
2413
2414 PR 24464
2415 * config/tc-rx.h (md_relax_frag): Pass the max_iterations variable
2416 to the relaxation function.
2417 * config/tc-rx.c (rx_relax_frag): Add new parameter - the maximum
2418 number of iterations. Make sure that our internal iteration limit
2419 does not exceed this external iteration limit.
2420
2421 2019-04-18 Matthew Fortune <matthew.fortune@mips.com>
2422
2423 * config/tc-mips.c (match_non_zero_reg_operand): Update
2424 warning message.
2425 * testsuite/gas/mips/r6-branch-constraints.l: Likewise.
2426
2427 2019-04-18 Jozef Lawrynowicz <jozef.l@mittosystems.com>
2428
2429 * config/tc-msp430.c (msp430_make_init_symbols): Define
2430 __crt0_run_{preinit,init,fini}_array symbols if
2431 .{preinit,init,fini}_array sections exist.
2432 * testsuite/gas/msp430/fini-array.d: New test.
2433 * testsuite/gas/msp430/init-array.d: New test.
2434 * testsuite/gas/msp430/preinit-array.d: New test.
2435 * testsuite/gas/msp430/fini-array.s: New test source.
2436 * testsuite/gas/msp430/init-array.s: New test source.
2437 * testsuite/gas/msp430/preinit-array.s: New test source.
2438 * testsuite/gas/msp430/msp430.exp: Add new tests to driver.
2439
2440 2019-04-17 Jozef Lawrynowicz <jozef.l@mittosystems.com>
2441
2442 * config/tc-msp430.c (msp430_make_init_symbols): Define __crt0_init_bss
2443 symbol when .lower.bss or .either.bss sections exist.
2444 Define __crt0_movedata when .lower.data or .either.data sections exist.
2445 * testsuite/gas/msp430/either-data-bss-sym.d: New test.
2446 * testsuite/gas/msp430/low-data-bss-sym.d: New test.
2447 * testsuite/gas/msp430/either-data-bss-sym.s: New test source.
2448 * testsuite/gas/msp430/low-data-bss-sym.s: New test source.
2449 * testsuite/gas/msp430/msp430.exp: Run new tests.
2450 Enable large code model when running -mdata-region={upper,either}
2451 tests.
2452
2453 2019-04-17 Jozef Lawrynowicz <jozef.l@mittosystems.com>
2454
2455 * config/tc-msp430.c (options): New OPTION_UNKNOWN_INTR_NOPS,
2456 OPTION_NO_UNKNOWN_INTR_NOPS and do_unknown_interrupt_nops.
2457 (md_parse_option): Handle OPTION_UNKNOWN_INTR_NOPS and
2458 OPTION_NO_UNKNOWN_INTR_NOPS by setting do_unknown_interrupt_nops
2459 accordingly.
2460 (md_show_usage): Likewise.
2461 (md_shortopts): Add "mu" for OPTION_UNKNOWN_INTR_NOPS and
2462 "mU" for OPTION_NO_UNKNOWN_INTR_NOPS.
2463 (md_longopts): Likewise.
2464 (warn_eint_nop): Update comment.
2465 (warn_unsure_interrupt): Don't warn if prev_insn_is_nop or
2466 prev_insn_is_dint or we are assembling for 430 ISA.
2467 (msp430_operands): Only call warn_unsure_interrupt if
2468 do_unknown_interrupt_nops == TRUE.
2469 * testsuite/gas/msp430/nop-unknown-intr.s: New test source file.
2470 * testsuite/gas/msp430/nop-unknown-intr-430.d: New test.
2471 * testsuite/gas/msp430/nop-unknown-intr-430x.d: New test.
2472 * testsuite/gas/msp430/nop-unknown-intr-430x-ignore.d: New test.
2473 * testsuite/gas/msp430/nop-unknown-intr-430.l: Warning output for new
2474 test.
2475 * testsuite/gas/msp430/nop-unknown-intr-430x.l: Likewise.
2476 * testsuite/gas/msp430/msp430.exp: Add new tests to driver.
2477
2478 2019-04-16 Alan Modra <amodra@gmail.com>
2479
2480 * testsuite/gas/all/weakref1.d: xfail nds32.
2481
2482 2019-04-16 Alan Modra <amodra@gmail.com>
2483
2484 * testsuite/gas/all/gas.exp: Remove ns32k xfails.
2485 * testsuite/gas/all/weakref1u.d: Don't run for ns32k-*-*.
2486
2487 2019-04-16 Alan Modra <amodra@gmail.com>
2488
2489 * write.h: Don't include bit_fix.h.
2490 (struct fix): Rearrange some fields. Delete fx_im_disp and
2491 fx_bit_fixP. Use bitfields for fx_size and fx_pcrel_adjust.
2492 * write.c (fix_new_internal): Don't init fx_im_disp and fx_bit_fixP.
2493 (fixup_segment): Don't exclude overflow checks on fx_bit_fixP.
2494 (print_fixup): Don't print im_disp.
2495 * config/tc-cris.c (md_apply_fix): Remove tests of fx_bit_fixP
2496 and fx_im_disp.
2497 * config/tc-dlx.c (md_apply_fix): Remove wrong debug code. Set
2498 fx_no_overflow when fx_bit_fixP.
2499 * config/tc-dlx.h: Include bit_fix.h.
2500 (TC_FIX_TYPE, tc_fix_data, TC_INIT_FIX_DATA): Define.
2501 * config/tc-ns32k.c (fix_new_ns32k, fix_new_ns32k_exp): Set
2502 fx_no_overflow when bit_fixP.
2503 * config/tc-ns32k.h (TC_FIX_TYPE): Add fx_bit_fixP and fx_im_disp.
2504 (fix_im_disp, fix_bit_fixP): Adjust to suit.
2505 (TC_INIT_FIX_DATA, TC_FIX_DATA_PRINT): Likewise.
2506
2507 2019-04-16 Alan Modra <amodra@gmail.com>
2508
2509 * write.h (struct fix <fx_where>): Make unsigned.
2510 (fix_new, fix_at_start, fix_new_exp): Adjust prototypes.
2511 * write.c (fix_new, fix_new_exp, fix_at_start): Make "where" and
2512 "size" parameters unsigned long.
2513 (fix_new_internal): Likewise. Adjust error format string to suit.
2514 * config/tc-mips.c (md_convert_frag): Remove cast of fx_where.
2515 * config/tc-sparc.c (md_apply_fix): Likewise.
2516 * config/tc-score.c (s3_convert_frag): Adjust for unsigned fx_where.
2517 * config/tc-score7.c (s7_convert_frag): Likewise.
2518
2519 2019-04-16 Alan Modra <amodra@gmail.com>
2520
2521 * frags.h (struct frag <fr_fix>): Use unsigned type.
2522 * frags.c (frag_new): Assert that current size exceeds
2523 old_frags_var_max_size.
2524 * ehopt.c (get_cie_info): Adjust for unsigned fr_fix.
2525 * listing.c (calc_hex): Likewise.
2526 * write.c (cvt_frag_to_fill, write_relocs): Likewise.
2527 * config/tc-arc.c (md_convert_frag): Likewise.
2528 * config/tc-avr.c (avr_patch_gccisr_frag): Likewise.
2529 * config/tc-mips.c (md_convert_frag): Likewise.
2530 * config/tc-rl78.c (md_convert_frag): Likewise.
2531 * config/tc-rx.c (md_convert_frag): Likewise.
2532 * config/tc-sparc.c (md_apply_fix): Likewise.
2533 * config/tc-xtensa.c (next_instrs_are_b_retw): Likewise.
2534 (unrelaxed_frag_min_insn_count, unrelaxed_frag_has_b_j): Likewise.
2535
2536 2019-04-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
2537
2538 * config/tc-arm.c (parse_sys_vldr_vstr): New function.
2539 (OP_VLDR): New enum operand_parse_code enumerator.
2540 (parse_operands): Add logic for OP_VLDR.
2541 (do_t_vldr_vstr_sysreg): New function.
2542 (do_vldr_vstr): Likewise.
2543 (insns): Guard VLDR and VSTR by arm_ext_v4t for Thumb mode.
2544 (md_apply_fix): Add bound check for VLDR and VSTR co-processor offset.
2545 Add masking logic for BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM relocation.
2546 * testsuite/gas/arm/archv8m_1m-cmse-main-bad.s: Add examples of bad
2547 uses of VLDR and VSTR.
2548 * testsuite/gas/arm/archv8m_1m-cmse-main-bad.l: Add error messages for
2549 above bad uses.
2550 * testsuite/gas/arm/archv8m_1m-cmse-main.s: Add examples of VLDR and
2551 VSTR valid uses.
2552 * testsuite/gas/arm/archv8m_1m-cmse-main.d: Add disassembly for the
2553 above examples.
2554
2555 2019-04-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
2556
2557 * config/tc-arm.c (arm_typed_reg_parse): Fix typo in comment.
2558 (enum reg_list_els): New REGLIST_VFP_S_VPR and REGLIST_VFP_D_VPR
2559 enumerators.
2560 (parse_vfp_reg_list): Add new partial_match parameter. Set
2561 *partial_match to TRUE if at least one element in the register list has
2562 matched. Add support for REGLIST_VFP_S_VPR and REGLIST_VFP_D_VPR
2563 register lists which expect VPR as last element in the list.
2564 (s_arm_unwind_save_vfp_armv6): Adapt call to parse_vfp_reg_list to new
2565 prototype.
2566 (s_arm_unwind_save_vfp): Likewise.
2567 (enum operand_parse_code): New OP_VRSDVLST enumerator.
2568 (parse_operands): Adapt call to parse_vfp_reg_list to new prototype.
2569 Handle new OP_VRSDVLST case.
2570 (do_t_vscclrm): New function.
2571 (insns): New entry for VSCCLRM instruction.
2572 * testsuite/gas/arm/archv8m_1m-cmse-main-bad.s: Add invalid VSCCLRM
2573 instructions.
2574 * testsuite/gas/arm/archv8m_1m-cmse-main-bad.l: Add error expectations
2575 for above instructions.
2576 * testsuite/gas/arm/archv8m_1m-cmse-main.s: Add tests for VSCCLRM
2577 instruction.
2578 * testsuite/gas/arm/archv8m_1m-cmse-main.d: Add expected disassembly
2579 for above instructions.
2580
2581 2019-04-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
2582
2583 * config/tc-arm.c (enum reg_list_els): Define earlier and add
2584 REGLIST_RN and REGLIST_CLRM enumerators.
2585 (parse_reg_list): Add etype parameter to distinguish between regular
2586 core register list and CLRM register list. Add logic to
2587 recognize CLRM register list.
2588 (parse_vfp_reg_list): Assert type is not for core register list.
2589 (s_arm_unwind_save_core): Update call to parse_reg_list to new
2590 prototype.
2591 (enum operand_parse_code): Declare OP_CLRMLST enumerator.
2592 (parse_operands): Update call to parse_reg_list to new prototype. Add
2593 logic for OP_CLRMLST.
2594 (encode_thumb2_ldmstm): Rename into ...
2595 (encode_thumb2_multi): This. Add do_io parameter. Add logic to
2596 encode CLRM and guard LDM/STM only code by do_io.
2597 (do_t_ldmstm): Adapt to use encode_thumb2_multi.
2598 (do_t_push_pop): Likewise.
2599 (do_t_clrm): New function.
2600 (insns): Define CLRM.
2601 * testsuite/gas/arm/archv8m_1m-cmse-main-bad.d: New file.
2602 * testsuite/gas/arm/archv8m_1m-cmse-main-bad.l: Likewise.
2603 * testsuite/gas/arm/archv8m_1m-cmse-main-bad.s: Likewise.
2604 * testsuite/gas/arm/archv8m_1m-cmse-main.d: Likewise.
2605 * testsuite/gas/arm/archv8m_1m-cmse-main.s: Likewise.
2606
2607 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2608 Andre Vieira <andre.simoesdiasvieira@arm.com>
2609
2610 * config/tc-arm.c (operand_parse_code): Add OP_LR and OP_oLR
2611 for the LR operand and optional LR operand.
2612 (parse_operands): Add switch cases for OP_LR and OP_oLR for
2613 both type checking and value checking.
2614 (encode_thumb32_addr_mode): New entries for DLS, WLS and LE.
2615 (v8_1_loop_reloc): New helper function for handling labels
2616 for the low overhead loop instructions.
2617 (do_t_loloop): New function to encode DLS, WLS and LE.
2618 (insns): New entries for WLS, DLS and LE.
2619 (md_pcrel_from_section): New switch case
2620 for BFD_RELOC_ARM_THUMB_LOOP12.
2621 (md_appdy_fix): Likewise.
2622 (tc_gen_reloc): Likewise.
2623 * testsuite/gas/arm/armv8_1-m-tloop.s: New.
2624 * testsuite/gas/arm/armv8_1-m-tloop.d: New.
2625 * testsuite/gas/arm/armv8_1-m-tloop-bad.s: New.
2626 * testsuite/gas/arm/armv8_1-m-tloop-bad.d: New.
2627 * testsuite/gas/arm/armv8_1-m-tloop-bad.l: New.
2628
2629 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2630 Andre Vieira <andre.simoesdiasvieira@arm.com>
2631
2632 * config/tc-arm.c (T16_32_TAB): New entriy for bfcsel.
2633 (do_t_v8_1_branch): New switch case for bfcsel.
2634 (toU): Define.
2635 (insns): New instruction for bfcsel.
2636 (md_pcrel_from_section): New switch case
2637 for BFD_RELOC_THUMB_PCREL_BFCSEL.
2638 (md_appdy_fix): Likewise
2639 (tc_gen_reloc): Likewise.
2640 * testsuite/gas/arm/armv8_1-m-bfcsel.d: New.
2641 * testsuite/gas/arm/armv8_1-m-bfcsel.s: New.
2642
2643 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2644
2645 * config/tc-arm.c (md_pcrel_from_section): New switch case for
2646 BFD_RELOC_ARM_THUMB_BF13.
2647 (md_appdy_fix): Likewise.
2648 (tc_gen_reloc): Likewise.
2649
2650 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2651 Andre Vieira <andre.simoesdiasvieira@arm.com>
2652
2653 * config/tc-arm.c (T16_32_TAB): New entrie for bfl.
2654 (do_t_v8_1_branch): New switch case for bfl.
2655 (insns): New instruction for bfl.
2656 * testsuite/gas/arm/armv8_1-m-bfl.d: New.
2657 * testsuite/gas/arm/armv8_1-m-bfl.s: New.
2658 * testsuite/gas/arm/armv8_1-m-bfl-bad.s: New.
2659 * testsuite/gas/arm/armv8_1-m-bfl-bad.d: New.
2660 * testsuite/gas/arm/armv8_1-m-bfl-bad.l: New.
2661 * testsuite/gas/arm/armv8_1-m-bfl-rel.d: New.
2662 * testsuite/gas/arm/armv8_1-m-bfl-rel.s: New.
2663
2664 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2665
2666 * config/tc-arm.c (md_pcrel_from_section): New switch case for
2667 BFD_RELOC_ARM_THUMB_BF19.
2668 (md_appdy_fix): Likewise.
2669 (tc_gen_reloc): Likewise.
2670
2671 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2672
2673 * config/tc-arm.c (T16_32_TAB): New entries for bfx and bflx.
2674 (do_t_v8_1_branch): New switch cases for bfx and bflx.
2675 (insns): New instruction for bfx and bflx.
2676 * testsuite/gas/arm/armv8_1-m-bf-exchange.d: New.
2677 * testsuite/gas/arm/armv8_1-m-bf-exchange.s: New.
2678 * testsuite/gas/arm/armv8_1-m-bf-exchange-bad.s: New
2679 * testsuite/gas/arm/armv8_1-m-bf-exchange-bad.l: New
2680 * testsuite/gas/arm/armv8_1-m-bf-exchange-bad.d: New
2681
2682 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2683 Andre Vieira <andre.simoesdiasvieira@arm.com>
2684
2685 * config/tc-arm.c (T16_32_TAB): New entries for bf.
2686 (do_t_branch_future): New.
2687 (insns): New instruction for bf.
2688 * testsuite/gas/arm/armv8_1-m-bf.d: New.
2689 * testsuite/gas/arm/armv8_1-m-bf.s: New.
2690 * testsuite/gas/arm/armv8_1-m-bf-bad.s: New.
2691 * testsuite/gas/arm/armv8_1-m-bf-bad.l: New.
2692 * testsuite/gas/arm/armv8_1-m-bf-bad.d: New.
2693 * testsuite/gas/arm/armv8_1-m-bf-rel.d: New.
2694 * testsuite/gas/arm/armv8_1-m-bf-rel.s: New.
2695
2696 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2697
2698 * config/tc-arm.c (md_pcrel_from_section): New switch case for
2699 BFD_RELOC_ARM_THUMB_BF17.
2700 (md_appdy_fix): Likewise.
2701 (tc_gen_reloc): Likewise.
2702
2703 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2704
2705 * config/tc-arm.c (ARM_IT_MAX_RELOCS): New macro.
2706 (arm_it): Member reloc renamed relocs and updated to an array.
2707 Rest: Replace all occurrences of reloc to relocs[0].
2708
2709 2019-04-15 Sudakshina Das <sudi.das@arm.com>
2710
2711 * config/tc-arm.c (md_pcrel_from_section): New switch case
2712 for BFD_RELOC_THUMB_PCREL_BRANCH5.
2713 (v8_1_branch_value_check): New function to check branch
2714 offsets.
2715 (md_appdy_fix): New switch case for
2716 BFD_RELOC_THUMB_PCREL_BRANCH5.
2717 (tc_gen_reloc): Likewise.
2718
2719 2019-04-15 Andre Vieira <andre.simoesdiasvieira@arm.com>
2720
2721 * config/tc-arm.c (do_neon_movhf): Remove fp-armv8 check.
2722 (armv8_1m_main_ext_table): New extension table.
2723 (arm_archs): Use the new extension table.
2724 * doc/c-arm.texi: Add missing arch and document new extensions.
2725 * testsuite/gas/arm/armv8.1-m.main-fp.d: New.
2726 * testsuite/gas/arm/armv8.1-m.main-fp-dp.d: New.
2727 * testsuite/gas/arm/armv8.1-m.main-hp.d: New.
2728
2729 2019-04-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
2730
2731 * config/tc-arm.c (cpu_arch_ver): Add entry for Armv8.1-M Mainline
2732 Tag_CPU_arch build attribute value. Reindent.
2733 (get_aeabi_cpu_arch_from_fset): Update assert.
2734 (aeabi_set_public_attributes): Update assert for Tag_DIV_use logic.
2735 * testsuite/gas/arm/attr-march-armv8_1-m.main.d: New test.
2736
2737 2019-04-09 Matthew Fortune <matthew.fortune@mips.com>
2738
2739 * config/tc-mips.c (mips_cpu_info_table): Add i6500. Update
2740 default ASEs for i6400.
2741 * doc/c-mips.texi (-march): Document i6500.
2742 * testsuite/gas/mips/elf_mach_i6400.d: New test.
2743 * testsuite/gas/mips/elf_mach_i6500.d: New test.
2744 * testsuite/gas/mips/mips.exp: Run the new tests.
2745
2746 2019-04-09 Matthew Fortune <matthew.fortune@mips.com>
2747
2748 * config/tc-mips.c (mips_set_options) <init_ase>: New field.
2749 (file_mips_opts, mips_opts) <init_ase>: Initialize new field.
2750 (file_mips_check_options): Propagate initial ASE settings.
2751 (mips_after_parse_args, parse_code_option): Track the initial
2752 ASE settings for a CPU.
2753 (s_mipsset): Restore the initial ASE settings when reverting
2754 to the default arch.
2755 * testsuite/gas/mips/elf_mach_p6600.d: New test.
2756 * testsuite/gas/mips/mips.exp: Run the new test.
2757
2758 2019-04-12 John Darrington <john@darrington.wattle.id.au>
2759
2760 config/tc-s12z.h: Remove definition of macro TC_M68K
2761
2762 2019-04-01 John Darrington <john@darrington.wattle.id.au>
2763
2764 config/tc-s12z.c: Use bfd_boolean where appropriate.
2765
2766 2019-04-11 Max Filippov <jcmvbkbc@gmail.com>
2767
2768 * testsuite/gas/xtensa/loop-relax-2.d: New test definition.
2769 * testsuite/gas/xtensa/loop-relax.d: New test definition.
2770 * testsuite/gas/xtensa/loop-relax.s: New test source.
2771 * testsuite/gas/xtensa/text-section-literals-1a.d: New test
2772 definition.
2773 * testsuite/gas/xtensa/text-section-literals-2.d: New test
2774 definition.
2775 * testsuite/gas/xtensa/text-section-literals-2.s: New test
2776 source.
2777 * testsuite/gas/xtensa/text-section-literals-2a.d: New test
2778 definition.
2779 * testsuite/gas/xtensa/text-section-literals-3.d: New test
2780 definition.
2781 * testsuite/gas/xtensa/text-section-literals-3.s: New test
2782 source.
2783 * testsuite/gas/xtensa/text-section-literals-4.d: New test
2784 definition.
2785 * testsuite/gas/xtensa/text-section-literals-4.s: New test
2786 source.
2787 * testsuite/gas/xtensa/text-section-literals-4a.d: New test
2788 definition.
2789
2790 2019-04-11 Max Filippov <jcmvbkbc@gmail.com>
2791
2792 * testsuite/gas/xtensa/all.exp: Remove all expect-based
2793 tests and all explicit run_dump_test / run_list_test
2794 invocations. Add run_dump_tests for all .d files in the
2795 test subdirectory.
2796 * testsuite/gas/xtensa/entry_align.d: New test definition.
2797 * testsuite/gas/xtensa/entry_align.l: New test output.
2798 * testsuite/gas/xtensa/entry_misalign.d: New test definition.
2799 * testsuite/gas/xtensa/entry_misalign2.d: New test definition.
2800 * testsuite/gas/xtensa/j_too_far.d: New test definition.
2801 * testsuite/gas/xtensa/j_too_far.l: New test output.
2802 * testsuite/gas/xtensa/loop_align.d: New test definition.
2803 * testsuite/gas/xtensa/loop_misalign.d: New test definition.
2804 * testsuite/gas/xtensa/trampoline-2.d: New test definition.
2805 * testsuite/gas/xtensa/trampoline-2.l: Remove empty output.
2806 * testsuite/gas/xtensa/xtensa-err.exp: Use positive logic.
2807
2808 2019-04-11 Max Filippov <jcmvbkbc@gmail.com>
2809
2810 * config/tc-xtensa.c (xtensa_literal_pseudo): Drop code that has
2811 no effect.
2812 (get_literal_pool_location): Only search for the literal pool
2813 when auto litpools is used, otherwise take one recorded in the
2814 tc_segment_info_data.
2815 (xtensa_assign_litpool_addresses): New function.
2816 (xtensa_move_literals): Don't duplicate 'literal pool location
2817 required...' error message. Call xtensa_assign_litpool_addresses.
2818
2819 2019-04-11 Max Filippov <jcmvbkbc@gmail.com>
2820
2821 * config/tc-xtensa.c (xtensa_is_init_fini): Add declaration.
2822 (xtensa_mark_literal_pool_location): Don't add fill frag to literal
2823 section that records literal pool location.
2824 (md_begin): Call xtensa_mark_literal_pool_location when text
2825 section literals or auto litpools are used.
2826 (xtensa_elf_section_change_hook): Call
2827 xtensa_mark_literal_pool_location when text section literals or
2828 auto litpools are used, there's no literal pool location defined
2829 for the current section and it's not .init or .fini.
2830 * testsuite/gas/xtensa/auto-litpools-first1.d: Fix up addresses.
2831 * testsuite/gas/xtensa/auto-litpools-first2.d: Likewise.
2832 * testsuite/gas/xtensa/auto-litpools.d: Likewise.
2833
2834 2019-04-11 Sudakshina Das <sudi.das@arm.com>
2835
2836 * config/tc-aarch64.c (process_omitted_operand): Add case for
2837 AARCH64_OPND_Rt_SP.
2838 (parse_operands): Likewise.
2839 * testsuite/gas/aarch64/armv8_5-a-memtag.d: Update tests.
2840 * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
2841 * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
2842 * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
2843
2844 2019-04-11 Sudakshina Das <sudi.das@arm.com>
2845
2846 * testsuite/gas/aarch64/armv8_5-a-memtag.d: New tests for ldgm and stgm.
2847 * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
2848 * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
2849 * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
2850
2851 2019-04-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2852
2853 * config/tc-i386.c (need_plt32_p) [TE_SOLARIS]: Return FALSE.
2854 * testsuite/gas/i386/solaris/solaris.exp: New driver.
2855 * testsuite/gas/i386/solaris/reloc64.d,
2856 testsuite/gas/i386/solaris/x86-64-jump.d,
2857 testsuite/gas/i386/solaris/x86-64-mpx-branch-1.d,
2858 testsuite/gas/i386/solaris/x86-64-mpx-branch-2.d,
2859 testsuite/gas/i386/solaris/x86-64-nop-3.d,
2860 testsuite/gas/i386/solaris/x86-64-nop-4.d,
2861 testsuite/gas/i386/solaris/x86-64-nop-5.d,
2862 testsuite/gas/i386/solaris/x86-64-relax-2.d,
2863 testsuite/gas/i386/solaris/x86-64-relax-3.d: New tests.
2864 * testsuite/gas/i386/reloc64.d,
2865 testsuite/gas/i386/x86-64-jump.d,
2866 testsuite/gas/i386/x86-64-mpx-branch-1.d,
2867 testsuite/gas/i386/x86-64-mpx-branch-2.d,
2868 testsuite/gas/i386/x86-64-nop-3.d,
2869 testsuite/gas/i386/x86-64-nop-4.d,
2870 testsuite/gas/i386/x86-64-nop-5.d,
2871 testsuite/gas/i386/x86-64-relax-2.d,
2872 testsuite/gas/i386/x86-64-relax-3.d: Skip on *-*-solaris*.
2873
2874 2019-04-10 Alan Modra <amodra@gmail.com>
2875
2876 * config/te-cloudabi.h: New file.
2877 * config/tc-aarch64.c (aarch64_after_parse_args): Use TE_CLOUDABI
2878 rather than TARGET_OS to select cloudabi.
2879 * config/tc-i386.h (ELF_TARGET_FORMAT64): Define for TE_CLOUDABI.
2880 * configure.tgt (*-*-cloudabi*): Set em=cloudabi.
2881
2882 2019-04-09 Robert Suchanek <robert.suchanek@mips.com>
2883
2884 * testsuite/gas/mips/mips.exp: Run hwr-names test.
2885 * testsuite/gas/mips/hwr-names.s: Add test cases for RDHWR with
2886 the SEL field.
2887 * testsuite/gas/mips/mipsr6@hwr-names.d: New file.
2888
2889 2019-04-08 H.J. Lu <hongjiu.lu@intel.com>
2890
2891 * config/tc-i386.c (output_insn): Support
2892 GNU_PROPERTY_X86_ISA_1_AVX512_BF16.
2893 * testsuite/gas/i386/property-2.s: Add AVX512_BF16 test.
2894 * testsuite/gas/i386/property-2.d: Updated.
2895 * testsuite/gas/i386/x86-64-property-2.d: Likewise.
2896
2897 2019-04-08 H.J. Lu <hongjiu.lu@intel.com>
2898
2899 * configure.tgt: Remove i386-*-kaos* and i386-*-chaos targets.
2900 * testsuite/gas/i386/i386.exp: Remove *-*-caos* and "*-*-kaos*
2901 check.
2902
2903 2019-04-05 H.J. Lu <hongjiu.lu@intel.com>
2904
2905 * testsuite/gas/i386/i386.exp: Run -mx86-used-note=yes tests.
2906 * testsuite/gas/i386/property-2.d: New file.
2907 * testsuite/gas/i386/property-2.s: Likewise.
2908 * testsuite/gas/i386/x86-64-property-2.d: Likewise.
2909
2910 2019-04-05 Xuepeng Guo <xuepeng.guo@intel.com>
2911
2912 * config/tc-i386.c (cpu_arch): Add .avx512_bf16.
2913 (cpu_noarch): Add noavx512_bf16.
2914 * doc/c-i386.texi: Document avx512_bf16.
2915 * testsuite/gas/i386/avx512_bf16.d: New file.
2916 * testsuite/gas/i386/avx512_bf16.s: Likewise.
2917 * testsuite/gas/i386/avx512_bf16_vl-inval.l: Likewise.
2918 * testsuite/gas/i386/avx512_bf16_vl-inval.s: Likewise.
2919 * testsuite/gas/i386/avx512_bf16_vl.d: Likewise.
2920 * testsuite/gas/i386/avx512_bf16_vl.s: Likewise.
2921 * testsuite/gas/i386/x86-64-avx512_bf16.d: Likewise.
2922 * testsuite/gas/i386/x86-64-avx512_bf16.s: Likewise.
2923 * testsuite/gas/i386/x86-64-avx512_bf16_vl-inval.l: Likesie.
2924 * testsuite/gas/i386/x86-64-avx512_bf16_vl-inval.s: Likewise.
2925 * testsuite/gas/i386/x86-64-avx512_bf16_vl.d: Likewise.
2926 * testsuite/gas/i386/x86-64-avx512_bf16_vl.s: Likewise.
2927 * testsuite/gas/i386/i386.exp: Add BF16 related tests.
2928
2929 2019-04-05 Alan Modra <amodra@gmail.com>
2930
2931 * testsuite/gas/ppc/bc.s,
2932 * testsuite/gas/ppc/bcat.d,
2933 * testsuite/gas/ppc/bcaterr.d,
2934 * testsuite/gas/ppc/bcaterr.l,
2935 * testsuite/gas/ppc/bcy.d,
2936 * testsuite/gas/ppc/bcyerr.d,
2937 * testsuite/gas/ppc/bcyerr.l: New tests.
2938 * testsuite/gas/ppc/ppc.exp: Run them.
2939
2940 2019-04-05 Alan Modra <amodra@gmail.com>
2941
2942 * testsuite/gas/ppc/476.d: Remove trailing spaces.
2943 * testsuite/gas/ppc/a2.d: Likewise.
2944 * testsuite/gas/ppc/booke.d: Likewise.
2945 * testsuite/gas/ppc/booke_xcoff.d: Likewise.
2946 * testsuite/gas/ppc/e500.d: Likewise.
2947 * testsuite/gas/ppc/e500mc.d: Likewise.
2948 * testsuite/gas/ppc/e6500.d: Likewise.
2949 * testsuite/gas/ppc/htm.d: Likewise.
2950 * testsuite/gas/ppc/power6.d: Likewise.
2951 * testsuite/gas/ppc/power8.d: Likewise.
2952 * testsuite/gas/ppc/power9.d: Likewise.
2953 * testsuite/gas/ppc/vle.d: Likewise.
2954
2955 2019-04-04 Peter Bergner <bergner@linux.ibm.com>
2956
2957 PR gas/24349
2958 * testsuite/gas/ppc/power8.s: (bdnztar, bdnztarl, bdztar, bdztarl,
2959 btar, btarl, bdnztar-, bdnztarl-, bdnztar+, bdnztarl+, bdztar-,
2960 bdztarl-, bdztar+, bdztarl+, bgetar, bnltar, bgetarl, bnltarl,
2961 bletar, bngtar, bletarl, bngtarl, bnetar, bnetarl, bnstar, bnutar,
2962 bnstarl, bnutarl, bgetar-, bnltar-, bgetarl-, bnltarl-, bletar-,
2963 bngtar-, bletarl-, bngtarl-, bnetar-, bnetarl-, bnstar-, bnutar-,
2964 bnstarl-, bnutarl-, bgetar+, bnltar+, bgetarl+, bnltarl+, bletar+,
2965 bngtar+, bletarl+, bngtarl+, bnetar+, bnetarl+, bnstar+, bnutar+,
2966 bnstarl+, bnutarl+, blttar, blttarl, bgttar, bgttarl, beqtar,
2967 beqtarl, bsotar, buntar, bsotarl, buntarl, blttar-, blttarl-,
2968 bgttar-, bgttarl-, beqtar-, beqtarl-, bsotar-, buntar-, bsotarl-,
2969 buntarl-, blttar+, blttarl+, bgttar+, bgttarl+, beqtar+, beqtarl+,
2970 bsotar+, buntar+, bsotarl+, buntarl+, bdnzftar, bdnzftarl, bdzftar,
2971 bdzftarl, bftar, bftarl, bftar-, bftarl-, bftar+, bftarl+, bdnzttar,
2972 bdnzttarl, bdzttar, bdzttarl, bttar, bttarl, bttar-, bttarl-, bttar+,
2973 bttarl+): Add tests of extended mnemonics.
2974 * testsuite/gas/ppc/power8.d: Likewise. Update previous bctar tests
2975 to expect new extended mnemonics.
2976 * testsuite/gas/ppc/a2.s: <bc, bc-, bc+, bcl, bcl-, bcl+>: Update test
2977 to not use illegal BO value. Use a more convenient BI value.
2978 * testsuite/gas/ppc/a2.d: Update tests for new expect output.
2979
2980 2019-04-03 Max Filippov <jcmvbkbc@gmail.com>
2981
2982 * config/tc-xtensa.c (convert_frag_immed): Drop
2983 convert_frag_immed_finish_loop invocation.
2984 (convert_frag_immed_finish_loop): Drop declaration and
2985 definition.
2986 * config/xtensa-relax.c (widen_spec_list): Replace loop
2987 widening that uses addi/addmi with widening that uses l32r
2988 and const16.
2989
2990 2019-04-01 Andre Vieira <andre.simoesdiasvieira@arm.com>
2991
2992 * config/tc-arm.c (arm_ext_table): New struct type.
2993 (arm_arch_option_table): Add new 'arm_ext_table' field.
2994 (ARM_EXT,ARM_ADD,ARM_REMOVE, ALL_FP): New macros.
2995 (armv5te_ext_table, armv7ve_ext_table, armv7a_ext_table,
2996 armv7r_ext_table, armv7em_ext_table, armv8a_ext_table,
2997 armv81a_ext_table, armv82a_ext_table, armv84a_ext_table,
2998 armv85a_ext_table, armv8m_main_ext_table,
2999 armv8r_ext_table): New architecture extension tables.
3000 (ARM_ARCH_OPT): Add new default field.
3001 (ARM_ARCH_OPT2): New macro.
3002 (arm_archs): Extend some architectures with the new architecture
3003 extension tables mentioned above.
3004 (arm_extensions): Add DEPRECATED comment with instructions to
3005 use new table.
3006 (arm_parse_extension): Change to use new extension tables.
3007 (arm_parse_cpu): Don't change existing behavior.
3008 (arm_parse_arch): Change to use new extension tables.
3009 * doc/c-arm.texi: Document new architecture extensions.
3010 * testsuite/gas/arm/attr-mfpu-neon-fp16.d: Change test to use new
3011 extension option rather than -mfpu and change expected behaviour to
3012 sane outputs.
3013 * testsuite/gas/arm/armv8-2-fp16-scalar-bad-ext.d: New.
3014 * testsuite/gas/arm/armv8-2-fp16-scalar-ext.d: New.
3015 * testsuite/gas/arm/armv8-2-fp16-scalar-thumb-ext.d: New.
3016 * testsuite/gas/arm/armv8-2-fp16-simd-ext.d: New.
3017 * testsuite/gas/arm/armv8-2-fp16-simd-thumb-ext.d: New.
3018 * testsuite/gas/arm/armv8-2-fp16-simd-warning-ext.d: New.
3019 * testsuite/gas/arm/armv8-2-fp16-simd-warning-thumb-ext.d: New.
3020 * testsuite/gas/arm/armv8_2+rdma-ext.d: New.
3021 * testsuite/gas/arm/armv8_2-a-fp16-thumb2-ext.d: New.
3022 * testsuite/gas/arm/armv8_2-a-fp16_ext.d: New.
3023 * testsuite/gas/arm/armv8_3-a-fp-bad-ext.d: New.
3024 * testsuite/gas/arm/armv8_3-a-fp-ext.d: New.
3025 * testsuite/gas/arm/armv8_3-a-fp16-ext.d: New.
3026 * testsuite/gas/arm/armv8_3-a-simd-bad-ext.d: New.
3027 * testsuite/gas/arm/armv8_4-a-fp16-ext.d: New.
3028 * testsuite/gas/arm/armv8m.main+fp.d: New.
3029 * testsuite/gas/arm/armv8m.main+fp.dp.d: New.
3030 * testsuite/gas/arm/attr-ext-fpv5-d16.d: New.
3031 * testsuite/gas/arm/attr-ext-fpv5.d: New.
3032 * testsuite/gas/arm/attr-ext-idiv.d: New.
3033 * testsuite/gas/arm/attr-ext-mp.d: New.
3034 * testsuite/gas/arm/attr-ext-neon-fp16.d: New.
3035 * testsuite/gas/arm/attr-ext-neon-vfpv3.d: New.
3036 * testsuite/gas/arm/attr-ext-neon-vfpv4.d: New.
3037 * testsuite/gas/arm/attr-ext-sec.d: New.
3038 * testsuite/gas/arm/attr-ext-vfpv3-d16-fp16.d: New.
3039 * testsuite/gas/arm/attr-ext-vfpv3-d16.d: New.
3040 * testsuite/gas/arm/attr-ext-vfpv3-fp16.d: New.
3041 * testsuite/gas/arm/attr-ext-vfpv3.d: New.
3042 * testsuite/gas/arm/attr-ext-vfpv3xd-fp.d: New.
3043 * testsuite/gas/arm/attr-ext-vfpv3xd.d: New.
3044 * testsuite/gas/arm/attr-ext-vfpv4-d16.d: New.
3045 * testsuite/gas/arm/attr-ext-vfpv4-sp-d16.d: New.
3046 * testsuite/gas/arm/attr-ext-vfpv4.d: New.
3047 * testsuite/gas/arm/dotprod-mandatory-ext.d: New.
3048 * testsuite/gas/arm/fpv5-d16.s: New.
3049 * testsuite/gas/arm/fpv5-sp-d16.s: New.
3050
3051 2019-03-28 Alan Modra <amodra@gmail.com>
3052
3053 PR 24390
3054 * testsuite/gas/ppc/476.d: Update mtfsb*.
3055 * testsuite/gas/ppc/a2.d: Likewise.
3056
3057 2019-03-21 Alan Modra <amodra@gmail.com>
3058
3059 * emul.h (struct emulation): Delete strip_underscore.
3060 * emul-target.h (emul_strip_underscore): Don't define.
3061 (emul_struct_name): Update initialization.
3062
3063 2019-03-21 Alan Modra <amodra@gmail.com>
3064
3065 * config/tc-d10v.c (md_apply_fix): Apply BFD_RELOC_8.
3066 * config/tc-pdp11.c (md_apply_fix): Likewise.
3067 * config/tc-d30v.c (md_apply_fix): Don't emit errors for BFD_RELOC_8,
3068 BFD_RELOC_16, and BFD_RELOC_64.
3069 * testsuite/gas/all/gas.exp: Move target exclusions for forward
3070 test, but not cr16, to..
3071 * testsuite/gas/all/forward.d: ..here, with explanation. Remove
3072 d10v, d30v, and pdp11 xfails.
3073
3074 2019-03-19 H.J. Lu <hongjiu.lu@intel.com>
3075
3076 * config/tc-i386.c (optimize_encoding): Don't check AVX for
3077 EVEX vector load/store optimization. Check both operands for
3078 ZMM register. Update EVEX vector load/store opcode check.
3079 Choose EVEX Disp8 over VEX Disp32.
3080 * testsuite/gas/i386/optimize-1.d: Updated.
3081 * testsuite/gas/i386/optimize-1a.d: Likewise.
3082 * testsuite/gas/i386/optimize-2.d: Likewise.
3083 * testsuite/gas/i386/optimize-4.d: Likewise.
3084 * testsuite/gas/i386/optimize-5.d: Likewise.
3085 * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
3086 * testsuite/gas/i386/x86-64-optimize-2a.d: Likewise.
3087 * testsuite/gas/i386/x86-64-optimize-2b.d: Likewise.
3088 * testsuite/gas/i386/x86-64-optimize-3.d: Likewise.
3089 * testsuite/gas/i386/x86-64-optimize-5.d: Likewise.
3090 * testsuite/gas/i386/x86-64-optimize-6.d: Likewise.
3091 * testsuite/gas/i386/optimize-1.s: Add ZMM register load
3092 test.
3093 * testsuite/gas/i386/x86-64-optimize-2.s: Likewise.
3094
3095 2019-03-19 H.J. Lu <hongjiu.lu@intel.com>
3096
3097 PR gas/24352
3098 * config/tc-i386.c (optimize_encoding): Check only
3099 cpu_arch_flags.bitfield.cpuavx512vl.
3100 * testsuite/gas/i386/i386.exp: Run x86-64-optimize-2b.
3101 * testsuite/gas/i386/x86-64-optimize-2.d: Revert the last
3102 change.
3103 * testsuite/gas/i386/x86-64-optimize-2b.d: New file.
3104 * testsuite/gas/i386/x86-64-optimize-2b.s: Likewise.
3105
3106 2019-03-19 H.J. Lu <hongjiu.lu@intel.com>
3107
3108 PR gas/24359
3109 * testsuite/gas/i386/i386.exp: Change optimize-6a, optimize-7,
3110 x86-64-optimize-7a and x86-64-optimize-8 tests to run_list_test.
3111 Remove optimize-6c and x86-64-optimize-7c tests.
3112 * testsuite/gas/i386/noavx-3.l: Updated.
3113 * testsuite/gas/i386/noavx-4.d: Likewise.
3114 * testsuite/gas/i386/noavx-5.d: Likewise.
3115 * testsuite/gas/i386/noavx-3.s: Add AVX512F tests.
3116 * testsuite/gas/i386/noavx-4.s: Remove AVX512F tests.
3117 * testsuite/gas/i386/nosse-5.s: Likewise.
3118 * testsuite/gas/i386/optimize-6a.d: Removed.
3119 * testsuite/gas/i386/optimize-6c.d: Likewise.
3120 * testsuite/gas/i386/optimize-7.d: Likewise.
3121 * testsuite/gas/i386/x86-64-optimize-7a.d: Likewise.
3122 * testsuite/gas/i386/x86-64-optimize-7c.d: Likewise.
3123 * testsuite/gas/i386/x86-64-optimize-8.d: Likewise.
3124 * testsuite/gas/i386/optimize-6a.l: New file.
3125 * testsuite/gas/i386/optimize-6a.s: Likewise.
3126 * testsuite/gas/i386/optimize-7.l: Likewise.
3127 * testsuite/gas/i386/x86-64-optimize-7a.l: Likewise.
3128 * testsuite/gas/i386/x86-64-optimize-7a.s: Likewise.
3129 * testsuite/gas/i386/x86-64-optimize-8.l: Likewise.
3130
3131 2019-03-18 Alan Modra <amodra@gmail.com>
3132
3133 * config/m68k-parse.y (yylex): Use temp_ilp and restore_ilp.
3134 * as.c (macro_expr): Likewise.
3135 * macro.c (buffer_and_nest): Likewise.
3136 * read.c (temp_ilp): Remove FIXME.
3137
3138 2019-03-18 H.J. Lu <hongjiu.lu@intel.com>
3139
3140 * testsuite/gas/i386/att-regs.d: Pass -O0 to assembler.
3141 * testsuite/gas/i386/avx512bw-intel.d: Likewise.
3142 * testsuite/gas/i386/avx512bw.d: Likewise.
3143 * testsuite/gas/i386/avx512f-intel.d: Likewise.
3144 * testsuite/gas/i386/avx512f.d: Likewise.
3145 * testsuite/gas/i386/disp32.d: Likewise.
3146 * testsuite/gas/i386/intel-regs.d: Likewise.
3147 * testsuite/gas/i386/pseudos.d: Likewise.
3148 * testsuite/gas/i386/x86-64-disp32.d: Likewise.
3149 * testsuite/gas/i386/x86-64-pseudos.d: Likewise.
3150
3151 2019-03-18 H.J. Lu <hongjiu.lu@intel.com>
3152
3153 PR gas/24348
3154 * config/tc-i386.c (optimize_encoding): Encode 128-bit and
3155 256-bit EVEX vector register load/store instructions as VEX
3156 vector register load/store instructions for -O1.
3157 * doc/c-i386.texi: Update -O1 documentation.
3158 * testsuite/gas/i386/i386.exp: Run PR gas/24348 tests.
3159 * testsuite/gas/i386/optimize-1.s: Add tests for EVEX vector
3160 load/store instructions.
3161 * testsuite/gas/i386/optimize-2.s: Likewise.
3162 * testsuite/gas/i386/optimize-3.s: Likewise.
3163 * testsuite/gas/i386/optimize-5.s: Likewise.
3164 * testsuite/gas/i386/x86-64-optimize-2.s: Likewise.
3165 * testsuite/gas/i386/x86-64-optimize-3.s: Likewise.
3166 * testsuite/gas/i386/x86-64-optimize-4.s: Likewise.
3167 * testsuite/gas/i386/x86-64-optimize-5.s: Likewise.
3168 * testsuite/gas/i386/x86-64-optimize-6.s: Likewise.
3169 * testsuite/gas/i386/optimize-1.d: Updated.
3170 * testsuite/gas/i386/optimize-2.d: Likewise.
3171 * testsuite/gas/i386/optimize-3.d: Likewise.
3172 * testsuite/gas/i386/optimize-4.d: Likewise.
3173 * testsuite/gas/i386/optimize-5.d: Likewise.
3174 * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
3175 * testsuite/gas/i386/x86-64-optimize-3.d: Likewise.
3176 * testsuite/gas/i386/x86-64-optimize-4.d: Likewise.
3177 * testsuite/gas/i386/x86-64-optimize-5.d: Likewise.
3178 * testsuite/gas/i386/x86-64-optimize-6.d: Likewise.
3179 * testsuite/gas/i386/optimize-7.d: New file.
3180 * testsuite/gas/i386/optimize-7.s: Likewise.
3181 * testsuite/gas/i386/x86-64-optimize-8.d: Likewise.
3182 * testsuite/gas/i386/x86-64-optimize-8.s: Likewise.
3183
3184 2019-03-18 H.J. Lu <hongjiu.lu@intel.com>
3185
3186 * config/tc-i386.c (optimize_encoding): Encode 256-bit/512-bit
3187 VEX/EVEX vector register clearing instructions with 128-bit VEX
3188 vector register clearing instructions at -O1.
3189 * doc/c-i386.texi: Update -O1 and -O2 documentation.
3190 * testsuite/gas/i386/i386.exp: Run optimize-1a and
3191 x86-64-optimize-2a.
3192 * testsuite/gas/i386/optimize-1a.d: New file.
3193 * testsuite/gas/i386/x86-64-optimize-2a.d: Likewise.
3194
3195 2019-03-17 H.J. Lu <hongjiu.lu@intel.com>
3196
3197 PR gas/24353
3198 * config/tc-i386.c: Include <limits.h> if it exists and try
3199 including <sys/param.h> if we have it.
3200 (INT_MAX): Define if not defined.
3201 (md_parse_option): Set optimize to INT_MAX for -Os.
3202 * testsuite/gas/i386/optimize-2.s: Add a test.
3203 * testsuite/gas/i386/x86-64-optimize-3.s: Likewise.
3204 * testsuite/gas/i386/optimize-2.d: Updated.
3205 * testsuite/gas/i386/x86-64-optimize-3.d: Likewise.
3206
3207 2019-03-17 H.J. Lu <hongjiu.lu@intel.com>
3208
3209 PR gas/24352
3210 * config/tc-i386.c (optimize_encoding): Encode 512-bit EVEX
3211 with 128-bit VEX encoding only when AVX is enabled and with
3212 128-bit EVEX encoding only when AVX512VL is enabled.
3213 * testsuite/gas/i386/i386.exp: Run PR gas/24352 tests.
3214 * testsuite/gas/i386/optimize-6.s: New file.
3215 * testsuite/gas/i386/optimize-6a.d: Likewise.
3216 * testsuite/gas/i386/optimize-6b.d: Likewise.
3217 * testsuite/gas/i386/optimize-6c.d: Likewise.
3218 * testsuite/gas/i386/x86-64-optimize-7.s: Likewise.
3219 * testsuite/gas/i386/x86-64-optimize-7a.d: Likewise.
3220 * testsuite/gas/i386/x86-64-optimize-7b.d: Likewise.
3221 * testsuite/gas/i386/x86-64-optimize-7c.d: Likewise.
3222 * testsuite/gas/i386/x86-64-optimize-2.d: Updated.
3223
3224 2019-03-15 Li Hao <li.hao296@zte.com.cn>
3225
3226 PR 24308
3227 * config/tc-i386.c (parse_insn): Check mnemp before using it to
3228 determine if a suffix can be trimmed.
3229
3230 2019-03-13 Christian Eggers <ceggers@gmx.de>
3231
3232 * dwarf2dbg.c (out_set_addr): Align relocation within .debug_line.
3233
3234 2019-03-13 Christian Eggers <ceggers@gmx.de>
3235
3236 * dwarf2dbg.c (out_debug_line): Pad size of .debug_line section.
3237
3238 2019-03-13 Christian Eggers <ceggers@gmx.de>
3239
3240 * dwarf2dbg.c (out_debug_str): Use octets for .debug_string pointers.
3241
3242 2019-03-13 Christian Eggers <ceggers@gmx.de>
3243
3244 * dwarf2dbg.c (out_debug_line): Use octets for .debug_line prologue.
3245
3246 2019-03-13 Christian Eggers <ceggers@gmx.de>
3247
3248 * dwarf2dbg.c (out_debug_line): Use octets for dwarf2 headers.
3249 (out_debug_aranges, out_debug_info): Likewise.
3250
3251 2019-03-13 Christian Eggers <ceggers@gmx.de>
3252
3253 * symbols.h (symbol_temp_new_now_octets): Declare.
3254 (symbol_set_value_now_octets, symbol_octets_p): Declare.
3255 * symbols.c (struct symbol_flags): New member sy_octets.
3256 (symbol_temp_new_now_octets): New function.
3257 (resolve_symbol_value): Return octets instead of bytes if
3258 sy_octets is set.
3259 (symbol_set_value_now_octets): New function.
3260 (symbol_octets_p): New function.
3261
3262 2019-03-13 Christian Eggers <ceggers@gmx.de>
3263
3264 * dwarf2dbg.c (dwarf2_emit_insn): Fix calculation of line info offset.
3265
3266 2019-03-12 Andreas Krebbel <krebbel@linux.ibm.com>
3267
3268 * testsuite/gas/s390/zarch-arch13.s: Adjust testcase to optable changes.
3269 * testsuite/gas/s390/zarch-arch13.d: Likewise.
3270
3271 2019-02-27 Matthew Malcomson <matthew.malcomson@arm.com>
3272
3273 * testsuite/gas/aarch64/dotproduct.d: Use multiple "as" lines.
3274 * testsuite/gas/aarch64/dotproduct_armv8_4.d: Remove.
3275 * testsuite/gas/aarch64/dotproduct_armv8_4.s: Remove.
3276 * testsuite/gas/aarch64/illegal-dotproduct.d: Use multiple "as"
3277 lines.
3278 * testsuite/gas/aarch64/ldst-rcpc-armv8_2.d: Remove.
3279 * testsuite/gas/aarch64/ldst-rcpc.d: Use multiple "as" lines.
3280
3281 2019-02-24 Alan Modra <amodra@gmail.com>
3282
3283 * config/tc-ppc.c (parse_tls_arg): Wrap in #ifdef OBJ_ELF.
3284
3285 2019-02-24 Alan Modra <amodra@gmail.com>
3286
3287 PR 24144
3288 * config/obj-aout.c (obj_aout_frob_file_before_fix): Write to end
3289 of section to ensure file contents cover aligned section size.
3290
3291 2019-02-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3292
3293 * config/tc-arm.c (arm_cpus): Add neoverse-n1.
3294 * doc/c-arm.texi (-mcpu): Document neoverse-n1 value.
3295
3296 2019-02-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3297
3298 * config/tc-aarch64.c (aarch64_cpus): Add neoverse-e1.
3299 * doc/c-aarch64.texi (-mcpu): Document neoverse-e1 value.
3300
3301 2019-02-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3302
3303 * config/tc-aarch64.c (aarch64_cpus): Add neoverse-n1.
3304 * doc/c-aarch64.texi (-mcpu): Document neoverse-n1 value.
3305
3306 2019-02-19 Paul Hua <paul.hua.gm@gmail.com>
3307
3308 * NEWS: Mention -m[no-]fix-loongson3-llsc.
3309 * configure.ac: Add --enable-mips-fix-loongson3-llsc.
3310 Define DEFAULT_MIPS_FIX_LOONGSON3_LLSC.
3311 * config.in: Regenerated.
3312 * configure: Likewise.
3313 * config/tc-mips.c (sync_insn, mips_fix_loongson3_llsc):
3314 New variables.
3315 (options): New OPTION_FIX_LOONGSON3_LLSC,
3316 OPTION_NO_FIX_LOONGSON3_LLSC.
3317 (md_longopts): Add -m[no-]fix-loongson3-llsc.
3318 (md_begin): Initialize sync insn.
3319 (fix_loongson3_llsc): New.
3320 (append_insn): Call fix_loongson3_llsc.
3321 (md_parse_option): Handle OPTION_FIX_LOONGSON3_LLSC,
3322 OPTION_NO_FIX_LOONGSON3_LLSC.
3323 (md_show_usage): Display -m[no-]fix-loongson3-llsc.
3324 * doc/c-mips.texi: Document -m[no-]fix-loongson3-llsc,
3325 --enable-mips-fix-loongson3-llsc=[yes|no].
3326
3327 2019-02-10 H.J. Lu <hongjiu.lu@intel.com>
3328
3329 PR gas/24165
3330 * frags.c (frag_var_init): Pass max_chars to TC_FRAG_INIT as
3331 max_bytes.
3332 * config/tc-aarch64.h (TC_FRAG_INIT): Add and pass max_bytes to
3333 aarch64_init_frag.
3334 * /config/tc-arm.h (TC_FRAG_INIT): And and pass max_bytes to
3335 arm_init_frag.
3336 * config/tc-avr.h (TC_FRAG_INIT): And and ignore max_bytes.
3337 * config/tc-ia64.h (TC_FRAG_INIT): Likewise.
3338 * config/tc-mmix.h (TC_FRAG_INIT): Likewise.
3339 * config/tc-nds32.h (TC_FRAG_INIT): Likewise.
3340 * config/tc-ns32k.h (TC_FRAG_INIT): Likewise.
3341 * config/tc-rl78.h (TC_FRAG_INIT): Likewise.
3342 * config/tc-rx.h (TC_FRAG_INIT): Likewise.
3343 * config/tc-score.h (TC_FRAG_INIT): Likewise.
3344 * config/tc-tic54x.h (TC_FRAG_INIT): Likewise.
3345 * config/tc-tic6x.h (TC_FRAG_INIT): Likewise.
3346 * config/tc-xtensa.h (TC_FRAG_INIT): Likewise.
3347 * config/tc-i386.h (MAX_MEM_FOR_RS_ALIGN_CODE): Set to
3348 (alignment ? ((1 << alignment) - 1) : 1)
3349 (i386_tc_frag_data): Add max_bytes.
3350 (TC_FRAG_INIT): Add and track max_bytes.
3351 (HANDLE_ALIGN): Replace MAX_MEM_FOR_RS_ALIGN_CODE with
3352 fragP->tc_frag_data.max_bytes.
3353 * doc/internals.texi: Update TC_FRAG_TYPE with max_bytes.
3354
3355 2019-02-08 Jim Wilson <jimw@sifive.com>
3356
3357 * config/tc-riscv.c (validate_riscv_insn) <'C'>: Add 'z' support.
3358 (riscv_ip) <'C'>: Add 'z' support.
3359
3360 2019-02-07 Tamar Christina <tamar.christina@arm.com>
3361
3362 * config/tc-arm.c (insns): Redefine THUMB_VARIANT and ARM_VARIANT for
3363 hlt to armv1.
3364 * testsuite/gas/arm/armv8a-automatic-hlt.d: Update TAGs
3365 * testsuite/gas/arm/hlt.d: New test.
3366 * testsuite/gas/arm/hlt.s: New test.
3367
3368 2019-02-07 Tamar Christina <tamar.christina@arm.com>
3369
3370 * testsuite/gas/aarch64/undefined_advsimd_armv8_3.d: New test.
3371 * testsuite/gas/aarch64/undefined_advsimd_armv8_3.s: New test.
3372
3373 2019-02-07 Tamar Christina <tamar.christina@arm.com>
3374
3375 PR binutils/23212
3376 * testsuite/gas/aarch64/undefined_by_elem_sz_l.s: New test.
3377 * testsuite/gas/aarch64/undefined_by_elem_sz_l.d: New test.
3378
3379 2019-02-07 Eric Botcazou <ebotcazou@adacore.com>
3380
3381 * config/tc-visium.c (md_assemble) <mode_cad>: Align instruction on
3382 64-bit boundaries for the GR6.
3383 * testsuite/gas/visium/allinsn_gr6.s: Tweak.
3384 * testsuite/gas/visium/allinsn_gr6.d: Likewise.
3385 * testsuite/gas/visium/bra-1.d: New test.
3386 * testsuite/gas/visium/bra-1.s: Likewise.
3387 * testsuite/gas/visium/visium.exp: Run bra-1 test.
3388
3389 2019-01-31 John Darrington <john@darrington.wattle.id.au>
3390
3391 * config/tc-s12z.c (lex_imm): Add new argument exp_o.
3392 (emit_reloc): New function.
3393 (md_apply_fix): [BFD_RELOC_S12Z_OPR] Recognise that it
3394 can be either 2 bytes or 3 bytes long.
3395 * testsuite/gas/s12z/mov-imm-reloc.d: New file.
3396 * testsuite/gas/s12z/mov-imm-reloc.s: New file.
3397 * testsuite/gas/s12z/s12z.exp: Add them.
3398
3399 2019-01-31 John Darrington <john@darrington.wattle.id.au>
3400
3401 * config/tc-s12z.c (md_apply_fix): Fix incorrect limits.
3402 * testsuite/gas/s12z/pc-rel-bad.d: New file.
3403 * testsuite/gas/s12z/pc-rel-bad.l: New file.
3404 * testsuite/gas/s12z/pc-rel-bad.s: New file.
3405 * testsuite/gas/s12z/pc-rel-good.d: New file.
3406 * testsuite/gas/s12z/pc-rel-good.s: New file.
3407 * testsuite/gas/s12z/s12z.exp: Add them.
3408
3409 2019-01-31 John Darrington <john@darrington.wattle.id.au>
3410
3411 * config/tc-s12z.c (tfr): Emit warning if operands are the same.
3412 * testsuite/gas/s12z/exg.d: New test case.
3413 * testsuite/gas/s12z/exg.l: New file.
3414
3415 2019-01-31 John Darrington <john@darrington.wattle.id.au>
3416
3417 * config/tc-s12z.c (lex_opr): Add a parameter to indicate whether
3418 immediate mode operands should be permitted.
3419 * testsuite/s12z/imm-dest.d: New file.
3420 * testsuite/s12z/imm-dest.l: New file.
3421 * testsuite/s12z/imm-dest.s: New file.
3422 * testsuite/s12z/s12z.exp: Add them.
3423
3424 2019-01-31 Andreas Krebbel <krebbel@linux.ibm.com>
3425
3426 * config/tc-s390.c (s390_parse_cpu): New entry for arch13.
3427 * doc/c-s390.texi: Document arch13 march option.
3428 * testsuite/gas/s390/s390.exp: Run the arch13 related tests.
3429 * testsuite/gas/s390/zarch-arch13.d: New test.
3430 * testsuite/gas/s390/zarch-arch13.s: New test.
3431 * testsuite/gas/s390/zarch-z13.d: Expect the renamed mnemonics
3432 also for z13.
3433
3434 2019-01-31 Alan Modra <amodra@gmail.com>
3435
3436 * config/tc-alpha.c (md_apply_fix): Correct range checks for
3437 BFD_RELOC_ALPHA_NOP, BFD_RELOC_ALPHA_LDA, BFD_RELOC_ALPHA_BSR.
3438 * config/tc-arm.c (md_apply_fix): Use llabs rather than abs.
3439 * config/tc-csky.c (get_macro_reg_vals): Pass s to csky_show_error.
3440
3441 2019-01-28 Max Filippov <jcmvbkbc@gmail.com>
3442
3443 * config/tc-xtensa.c (md_apply_fix): Mark fixups for constant
3444 symbols as done in md_apply_fix.
3445 * testsuite/gas/all/forward.d: Don't XFAIL for xtensa.
3446
3447 2019-01-28 Nick Clifton <nickc@redhat.com>
3448
3449 * po/fr.po: Updated French translation.
3450 * po/ru.po: Updated Russian translation.
3451
3452 2019-01-28 Alan Modra <amodra@gmail.com>
3453
3454 * configure.ac (ac_checking): Set from bfd/development.sh
3455 development variable.
3456 * configure: Regenerate.
3457
3458 2019-01-25 Sudakshina Das <sudi.das@arm.com>
3459
3460 * config/tc-aarch64.c (warn_unpredictable_ldst): Exempt
3461 stg, st2g, stzg and stz2g from Xt == Xn with writeback warning.
3462 * testsuite/gas/aarch64/armv8_5-a-memtag.d: Change tests for
3463 stg, stzg, st2g and stz2g.
3464 * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
3465 * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
3466 * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
3467
3468 2019-01-25 Sudakshina Das <sudi.das@arm.com>
3469
3470 * testsuite/gas/aarch64/armv8_5-a-memtag.d: New tests for stzgm.
3471 * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
3472 * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
3473 * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
3474
3475 2019-01-25 Sudakshina Das <sudi.das@arm.com>
3476 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
3477
3478 * config/tc-aarch64.c (parse_address_main): Remove support for
3479 [base]! address expression.
3480 (parse_operands): Remove support for AARCH64_OPND_ADDR_SIMPLE_2.
3481 (warn_unpredictable_ldst): Remove support for ldstgv_indexed.
3482 * testsuite/gas/aarch64/armv8_5-a-memtag.d: Remove tests for ldgv
3483 and stgv.
3484 * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
3485 * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
3486 * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
3487
3488 2019-01-25 Wu Heng <wu.heng@zte.com.cn>
3489
3490 PR gas/23940
3491 * macro.c (getstring): Check array bound before accessing.
3492
3493 2019-01-25 Alan Modra <amodra@gmail.com>
3494
3495 PR 20902
3496 PR 24125
3497 * read.c (stringer): Delete assertion.
3498
3499 2019-01-21 Nick Clifton <nickc@redhat.com>
3500
3501 * po/uk.po: Updated Ukranian translation.
3502
3503 2019-01-19 Nick Clifton <nickc@redhat.com>
3504
3505 * config.in: Regenerate.
3506 * configure: Regenerate.
3507 * po/gas.pot: Regenerate.
3508
3509 2018-06-24 Nick Clifton <nickc@redhat.com>
3510
3511 2.32 branch created.
3512
3513 2019-01-17 Tamar Christina <tamar.christina@arm.com>
3514
3515 * testsuite/gas/arm/archv6t2-1-pe.d: New test.
3516 * testsuite/gas/arm/archv6t2-1.d: Skip pe.
3517 * testsuite/gas/arm/csdb.d: Skip pe.
3518 * testsuite/gas/arm/sb-thumb1-pe.d: New test.
3519 * testsuite/gas/arm/sb-thumb1.d: Skip pe.
3520 * testsuite/gas/arm/sb-thumb2-pe.d: New test.
3521 * testsuite/gas/arm/sb-thumb2.d: Skip pe.
3522 * testsuite/gas/arm/udf.d: Skip pe.
3523
3524 2019-01-16 Kito Cheng <kito@andestech.com>
3525
3526 * testsuite/gas/riscv/attribute-empty.d: New.
3527
3528 2019-01-16 Kito Cheng <kito@andestech.com>
3529 Nelson Chu <nelson@andestech.com>
3530
3531 * config/tc-riscv.c (DEFAULT_RISCV_ATTR): Define to 0 if not defined.
3532 (riscv_set_options): Add `arch_attr` field.
3533 (riscv_opts): Set default value for arch_attr.
3534 (riscv_write_out_arch_attr): New.
3535 (riscv_set_public_attributes): Likewise.
3536 (riscv_md_end): Likewise.
3537 (riscv_convert_symbolic_attribute): Likewise.
3538 (s_riscv_attribute): Likewise.
3539 (explicit_arch_attr): Likewise.
3540 (riscv_pseudo_table): Add .attribute to the table.
3541 (options): Add OPTION_ARCH_ATTR and OPTION_NO_ARCH_ATTR
3542 enumeration constants.
3543 (md_longopts): Add `march-attr' and `mno-arch-attr' options.
3544 (md_parse_option): Handle the new options.
3545 (md_show_usage): Document the `march-attr' option.
3546 * config/tc-riscv.h (md_end): Define as riscv_md_end
3547 (riscv_md_end): Declare.
3548 (CONVERT_SYMBOLIC_ATTRIBUTE): Define as
3549 riscv_convert_symbolic_attribute.
3550 (riscv_convert_symbolic_attribute): Declare.
3551 (start_assemble): Declare.
3552 * testsuite/gas/elf/elf.exp: Adjust test case for section2.e.
3553 * testsuite/gas/elf/section2.e-riscv: New.
3554 * testsuite/gas/riscv/attribute-01.d: New test
3555 * testsuite/gas/riscv/attribute-02.d: Likewise.
3556 * testsuite/gas/riscv/attribute-03.d: Likewise.
3557 * testsuite/gas/riscv/attribute-04.d: Likewise.
3558 * testsuite/gas/riscv/attribute-04.s: Likewise.
3559 * testsuite/gas/riscv/attribute-05.d: Likewise.
3560 * testsuite/gas/riscv/attribute-05.s: Likewise.
3561 * testsuite/gas/riscv/attribute-06.d: Likewise.
3562 * testsuite/gas/riscv/attribute-06.s: Likewise.
3563 * testsuite/gas/riscv/attribute-07.d: Likewise.
3564 * testsuite/gas/riscv/attribute-07.s: Likewise.
3565 * testsuite/gas/riscv/attribute-08.d: Likewise.
3566 * testsuite/gas/riscv/attribute-08.s: Likewise.
3567 * testsuite/gas/riscv/attribute-unknown.d: Likewise.
3568 * testsuite/gas/riscv/attribute-unknown.s: Likewise.
3569 * testsuite/gas/riscv/empty.l: Likewise.
3570 * doc/c-riscv.texi (.attribute): Add documentation.
3571 * configure.ac (--enable-default-riscv-attribute): New options.
3572 * configure: Re-generate.
3573 * config.in: Re-generate.
3574
3575 2019-01-16 John Darrington <john@darrington.wattle.id.au>
3576
3577 * config/tc-s12z.c (lex_reg_name): Compare the length of the strings
3578 before the contents.
3579 * testsuite/gas/s12z/labels.d: New file.
3580 * testsuite/gas/s12z/labels.s: New file.
3581 * testsuite/gas/s12z/s12z.exp: Add them.
3582 * config/tc-s12z.c (tfr): Change as_bad to as_warn.
3583 Also fix message typo and semantics.
3584 * config/tc-s12z.c (emit_opr): Emit BFD_RELOC_S12Z_OPR instead of
3585 BFD_RELOC_24.
3586 * testsuite/gas/s12z/opr-indirect-expr.d: Expect R_S12Z_OPR instead
3587 of R_S12Z_EXT24.
3588
3589 2019-01-14 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
3590
3591 * config/tc-arm.c (arm_ext_v6k_v6t2): Define.
3592 (insns) [ARM_VARIANT]: Modified.
3593 (insns) [THUMB_VARIANT]: To implement few ARMv6K instructions
3594 in ARMv6T2 as well.
3595 * testsuite/gas/arm/archv6t2-1.d: New test.
3596 * testsuite/gas/arm/archv6t2-1.s: Likewise.
3597 * testsuite/gas/arm/archv6t2-2.d: Likewise.
3598
3599 2019-01-11 Alan Modra <amodra@gmail.com>
3600
3601 PR 23963
3602 * testsuite/gas/m68hc11/lbranch-dwarf2.d: Adjust for PR23963 change.
3603 * testsuite/gas/m68hc11/opers12-dwarf2.d: Likewise.
3604
3605 2019-01-10 Nick Clifton <nickc@redhat.com>
3606
3607 PR 23963
3608 * testsuite/gas/mips/mips16-branch-absolute-1.d: Adjust for the
3609 fact that control characters are now displayed as escape
3610 sequences.
3611 * testsuite/gas/mips/mips16-e.d: Likewise.
3612 * testsuite/gas/mips/mips16-pcrel-0.d: Likewise.
3613 * testsuite/gas/mips/mips16-pcrel-1.d: Likewise.
3614 * testsuite/gas/mips/mips16-pcrel-delay-0.d: Likewise.
3615 * testsuite/gas/mips/mips16-pcrel-delay-1.d: Likewise.
3616 * testsuite/gas/mips/mips16-pcrel-n32-0.d: Likewise.
3617 * testsuite/gas/mips/mips16-pcrel-n32-1.d: Likewise.
3618 * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: Likewise.
3619 * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: Likewise.
3620 * testsuite/gas/mips/mips16e2@mips16-pcrel-0.d: Likewise.
3621 * testsuite/gas/mips/mips16e2@mips16-pcrel-1.d: Likewise.
3622 * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-0.d: Likewise.
3623 * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-1.d: Likewise.
3624 * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-0.d: Likewise.
3625 * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-1.d: Likewise.
3626 * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-0.d:
3627 Likewise.
3628 * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-1.d:
3629 Likewise.
3630 * testsuite/gas/mips/mipsel16-e.d: Likewise.
3631 * testsuite/gas/mips/mipsr6@msa.d: Likewise.
3632 * testsuite/gas/mips/mipsr6@relax-swap3.d: Likewise.
3633 * testsuite/gas/mips/r6-64-n32.d: Likewise.
3634 * testsuite/gas/mips/r6-64-n64.d: Likewise.
3635 * testsuite/gas/mips/r6-n32.d: Likewise.
3636 * testsuite/gas/mips/r6-n64.d: Likewise.
3637 * testsuite/gas/mips/r6.d: Likewise.
3638 * testsuite/gas/mips/tmips16-e.d: Likewise.
3639 * testsuite/gas/mips/tmipsel16-e.d: Likewise.
3640 * testsuite/gas/mn10300/relax.d: Likewise.
3641
3642 2019-01-09 John Darrington <john@darrington.wattle.id.au>
3643
3644 * testsuite/gas/s12z/jsr.s: New case.
3645 * testsuite/gas/s12z/jsr.d: New case.
3646
3647 2019-01-09 Andrew Paprocki <andrew@ishiboo.com>
3648
3649 * configure: Regenerate.
3650
3651 2019-01-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3652
3653 * config/tc-aarch64.c (aarch64_cpus): Add ares.
3654 * doc/c-aarch64.texi (-mcpu): Document ares value.
3655
3656 2019-01-08 Alan Modra <amodra@gmail.com>
3657
3658 * testsuite/gas/rx/rx.exp: Create generated test source in
3659 current directory.
3660 * testsuite/gas/rx/Xtod.d, * testsuite/gas/rx/abs.d,
3661 * testsuite/gas/rx/adc.d, * testsuite/gas/rx/add.d,
3662 * testsuite/gas/rx/and.d, * testsuite/gas/rx/bclr.d,
3663 * testsuite/gas/rx/bcnd.d, * testsuite/gas/rx/bfmov.d,
3664 * testsuite/gas/rx/bmcnd.d, * testsuite/gas/rx/bnot.d,
3665 * testsuite/gas/rx/bra.d, * testsuite/gas/rx/brk.d,
3666 * testsuite/gas/rx/bset.d, * testsuite/gas/rx/bsr.d,
3667 * testsuite/gas/rx/btst.d, * testsuite/gas/rx/clrpsw.d,
3668 * testsuite/gas/rx/cmp.d, * testsuite/gas/rx/dabs.d,
3669 * testsuite/gas/rx/dadd.d, * testsuite/gas/rx/dbt.d,
3670 * testsuite/gas/rx/dcmp.d, * testsuite/gas/rx/ddiv.d,
3671 * testsuite/gas/rx/div.d, * testsuite/gas/rx/divu.d,
3672 * testsuite/gas/rx/dmov.d, * testsuite/gas/rx/dmul.d,
3673 * testsuite/gas/rx/dneg.d, * testsuite/gas/rx/dpopm.d,
3674 * testsuite/gas/rx/dpushm.d, * testsuite/gas/rx/dround.d,
3675 * testsuite/gas/rx/dsqrt.d, * testsuite/gas/rx/dsub.d,
3676 * testsuite/gas/rx/dtoX.d, * testsuite/gas/rx/emaca.d,
3677 * testsuite/gas/rx/emsba.d, * testsuite/gas/rx/emul.d,
3678 * testsuite/gas/rx/emula.d, * testsuite/gas/rx/emulu.d,
3679 * testsuite/gas/rx/fadd.d, * testsuite/gas/rx/fcmp.d,
3680 * testsuite/gas/rx/fdiv.d, * testsuite/gas/rx/fmul.d,
3681 * testsuite/gas/rx/fsqrt.d, * testsuite/gas/rx/fsub.d,
3682 * testsuite/gas/rx/ftoi.d, * testsuite/gas/rx/ftou.d,
3683 * testsuite/gas/rx/gprel.d, * testsuite/gas/rx/int.d,
3684 * testsuite/gas/rx/itof.d, * testsuite/gas/rx/jmp.d,
3685 * testsuite/gas/rx/jsr.d, * testsuite/gas/rx/machi.d,
3686 * testsuite/gas/rx/maclh.d, * testsuite/gas/rx/maclo.d,
3687 * testsuite/gas/rx/max.d, * testsuite/gas/rx/min.d,
3688 * testsuite/gas/rx/mov.d, * testsuite/gas/rx/movco.d,
3689 * testsuite/gas/rx/movli.d, * testsuite/gas/rx/movu.d,
3690 * testsuite/gas/rx/msbhi.d, * testsuite/gas/rx/msblh.d,
3691 * testsuite/gas/rx/msblo.d, * testsuite/gas/rx/mul.d,
3692 * testsuite/gas/rx/mulhi.d, * testsuite/gas/rx/mullh.d,
3693 * testsuite/gas/rx/mullo.d, * testsuite/gas/rx/mvfacgu.d,
3694 * testsuite/gas/rx/mvfachi.d, * testsuite/gas/rx/mvfaclo.d,
3695 * testsuite/gas/rx/mvfacmi.d, * testsuite/gas/rx/mvfc.d,
3696 * testsuite/gas/rx/mvfcp.d, * testsuite/gas/rx/mvfdc.d,
3697 * testsuite/gas/rx/mvfdr.d, * testsuite/gas/rx/mvtacgu.d,
3698 * testsuite/gas/rx/mvtachi.d, * testsuite/gas/rx/mvtaclo.d,
3699 * testsuite/gas/rx/mvtc.d, * testsuite/gas/rx/mvtcp.d,
3700 * testsuite/gas/rx/mvtdc.d, * testsuite/gas/rx/neg.d,
3701 * testsuite/gas/rx/nop.d, * testsuite/gas/rx/not.d,
3702 * testsuite/gas/rx/opecp.d, * testsuite/gas/rx/or.d,
3703 * testsuite/gas/rx/pop.d, * testsuite/gas/rx/popc.d,
3704 * testsuite/gas/rx/popm.d, * testsuite/gas/rx/push.d,
3705 * testsuite/gas/rx/pushc.d, * testsuite/gas/rx/pushm.d,
3706 * testsuite/gas/rx/r-bcc.d, * testsuite/gas/rx/r-bra.d,
3707 * testsuite/gas/rx/racl.d, * testsuite/gas/rx/racw.d,
3708 * testsuite/gas/rx/rdacl.d, * testsuite/gas/rx/rdacw.d,
3709 * testsuite/gas/rx/revl.d, * testsuite/gas/rx/revw.d,
3710 * testsuite/gas/rx/rmpa.d, * testsuite/gas/rx/rolc.d,
3711 * testsuite/gas/rx/rorc.d, * testsuite/gas/rx/rotl.d,
3712 * testsuite/gas/rx/rotr.d, * testsuite/gas/rx/round.d,
3713 * testsuite/gas/rx/rstr.d, * testsuite/gas/rx/rte.d,
3714 * testsuite/gas/rx/rtfi.d, * testsuite/gas/rx/rts.d,
3715 * testsuite/gas/rx/rtsd.d, * testsuite/gas/rx/sat.d,
3716 * testsuite/gas/rx/satr.d, * testsuite/gas/rx/save.d,
3717 * testsuite/gas/rx/sbb.d, * testsuite/gas/rx/sccnd.d,
3718 * testsuite/gas/rx/scmpu.d, * testsuite/gas/rx/setpsw.d,
3719 * testsuite/gas/rx/shar.d, * testsuite/gas/rx/shll.d,
3720 * testsuite/gas/rx/shlr.d, * testsuite/gas/rx/smovb.d,
3721 * testsuite/gas/rx/smovf.d, * testsuite/gas/rx/smovu.d,
3722 * testsuite/gas/rx/sstr.d, * testsuite/gas/rx/stnz.d,
3723 * testsuite/gas/rx/stz.d, * testsuite/gas/rx/sub.d,
3724 * testsuite/gas/rx/suntil.d, * testsuite/gas/rx/swhile.d,
3725 * testsuite/gas/rx/tst.d, * testsuite/gas/rx/utof.d,
3726 * testsuite/gas/rx/wait.d, * testsuite/gas/rx/xchg.d,
3727 * testsuite/gas/rx/xor.d: Add #source line.
3728
3729 2019-01-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3730
3731 * config/tc-arm.c (arm_cpus): Add ares.
3732 * doc/c-arm.texi (-mcpu): Document ares value.
3733
3734 2019-01-05 Yoshinori Sato <ysato@users.sourceforge.jp>
3735
3736 * config/rx-defs.h (rx_cpu_types): Add type RXV3 and RXV3FPU.
3737 (rx_bfield): Add prototype.
3738 (rx_post): Likewise.
3739 * config/rx-parse.y: Add v3 instructions and Double FPU registers.
3740 (DSIZE): Define.
3741 (POST): Define.
3742 (rx_check_v3): New. check v3 type.
3743 (rx_check_dfpu): New. check have double support.
3744 (double_condition_table): New. dcmp<cond> contiditon.
3745 (check_condition): Multiple condition support.
3746 (rx_lex): RXv3 instructions support.
3747 Add parse dcmp<cond> instruction and Double FPU registers.
3748 (immediate): Disable optimize in dmov #imm case.
3749 (displacement): Add double displacement in dmov instraction.
3750 * config/tc-rx.c (rx_use_conventional_section_names):
3751 Invert default value in rx-*-linux target.
3752 (cpu_type): Add additional ELF flags.
3753 (cpu_type_list): Add RXv3.
3754 (md_parse_option): Refer elf_flags from cpu_type_list.
3755 (md_show_usage): Add rxv3 and rxv3-dfpu.
3756 (rx_bytesT): Add post byte.
3757 (rx_bfield): New. generate bfmov / bfmovz "imm" field.
3758 (rx_post): New. Set instruction post byte.
3759 (md_assemble): Add post byte.
3760 doc/c-rx.texi: Add cpu types.
3761 * testsuite/gas/rx/Xtod.d: New.
3762 * testsuite/gas/rx/Xtod.sm: New.
3763 * testsuite/gas/rx/bfmov.d: New.
3764 * testsuite/gas/rx/bfmov.sm: New.
3765 * testsuite/gas/rx/dabs.d: New.
3766 * testsuite/gas/rx/dabs.sm: New.
3767 * testsuite/gas/rx/dadd.d: New.
3768 * testsuite/gas/rx/dadd.sm: New.
3769 * testsuite/gas/rx/dcmp.d: New.
3770 * testsuite/gas/rx/dcmp.sm: New.
3771 * testsuite/gas/rx/ddiv.d: New.
3772 * testsuite/gas/rx/ddiv.sm: New.
3773 * testsuite/gas/rx/dmov.d: New.
3774 * testsuite/gas/rx/dmov.sm: New.
3775 * testsuite/gas/rx/dmul.d: New.
3776 * testsuite/gas/rx/dmul.sm: New.
3777 * testsuite/gas/rx/dneg.d: New.
3778 * testsuite/gas/rx/dneg.sm: New.
3779 * testsuite/gas/rx/dpopm.d: New.
3780 * testsuite/gas/rx/dpopm.sm: New.
3781 * testsuite/gas/rx/dpushm.d: New.
3782 * testsuite/gas/rx/dpushm.sm: New.
3783 * testsuite/gas/rx/dround.d: New.
3784 * testsuite/gas/rx/dround.sm: New.
3785 * testsuite/gas/rx/dsqrt.d: New.
3786 * testsuite/gas/rx/dsqrt.sm: New.
3787 * testsuite/gas/rx/dsub.d: New.
3788 * testsuite/gas/rx/dsub.sm: New.
3789 * testsuite/gas/rx/dtoX.d: New.
3790 * testsuite/gas/rx/dtoX.sm: New.
3791 * testsuite/gas/rx/macros.inc: Add double FPU registers.
3792 * testsuite/gas/rx/mvfdc.d: New.
3793 * testsuite/gas/rx/mvfdc.sm: New.
3794 * testsuite/gas/rx/mvfdr.d: New.
3795 * testsuite/gas/rx/mvfdr.sm: New.
3796 * testsuite/gas/rx/mvtdc.d: New.
3797 * testsuite/gas/rx/mvtdc.sm: New.
3798 * testsuite/gas/rx/rstr.d: New.
3799 * testsuite/gas/rx/rstr.sm: New.
3800 * testsuite/gas/rx/rx.exp: Use rxv3-dfpu option.
3801 * testsuite/gas/rx/save.d: New.
3802 * testsuite/gas/rx/save.sm: New.
3803 * testsuite/gas/rx/xor.d: New.
3804 * testsuite/gas/rx/xor.sm: Add pattern.
3805
3806 2019-01-04 Wu Heng <wu.heng@zte.com.cn>
3807
3808 PR 24010
3809 * macro.c (get_any_string): Check for end of input whilst scanning
3810 for separators.
3811
3812 2019-01-04 Wu Heng <wu.heng@zte.com.cn>
3813
3814 PR 24009
3815 * read.c (stringer): Fix handling of missing '>' character at end
3816 of <...> sequence.
3817
3818 2019-01-01 Alan Modra <amodra@gmail.com>
3819
3820 Update year range in copyright notice of all files.
3821
3822 For older changes see ChangeLog-2018
3823 \f
3824 Copyright (C) 2019 Free Software Foundation, Inc.
3825
3826 Copying and distribution of this file, with or without modification,
3827 are permitted in any medium without royalty provided the copyright
3828 notice and this notice are preserved.
3829
3830 Local Variables:
3831 mode: change-log
3832 left-margin: 8
3833 fill-column: 74
3834 version-control: never
3835 End: