[GAS][ARM] Fix UDF testism
[binutils-gdb.git] / gas / ChangeLog
1 2018-10-31 Andre Vieira <andre.simoesdiasvieira@arm.com>
2
3 * testsuite/gas/arm/udf.d: Update expected output.
4
5 2018-10-31 Andre Vieira <andre.simoesdiasvieira@arm.com>
6
7 * testsuite/gas/arm/armv1.d: Assemble for Armv1 and disassemble for
8 Armv2.
9
10 2018-10-29 Alan Modra <amodra@gmail.com>
11
12 * Makefile.am (HFILES): Delete struc-symbol.h.
13 * doc/internals.texi: Delete struc-symbol.h reference and out
14 of date local symbol description.
15 * struc-symbol.h: Delete. Move contents to..
16 * symbols.c: ..here.
17 (symbol_on_chain, symbol_symbolS): New functions.
18 * symbols.h (symbol_on_chain, symbol_symbolS): Declare.
19 * cgen.c: Don't #include struc-symbol.h.
20 (gas_cgen_parse_operand): Don't test for local_symbol using
21 bsym, instead call symbol_symbolS. Use symbol_get_bfdsym.
22 (weak_operand_overflow_check, make_right_shifted_expr): Use
23 symbol accessors.
24 * config/obj-coff.c: Don't #include struc-symbol.h.
25 (GET_FILENAME_STRING): Delete.
26 * config/obj-elf.c: Don't #include struc-symbol.h.
27 (elf_file_symbol): Use symbol accessors.
28 (elf_adjust_symtab): Call symbol_on_chain.
29 * config/obj-evax.c: Don't #include struc-symbol.h.
30 * config/tc-nds32.c: Likewise.
31 * config/tc-rl78.c: Likewise.
32 * config/tc-rx.c: Likewise.
33 * config/tc-alpha.c: Likewise.
34 (add_to_link_pool, s_alpha_comm): Use symbol accessors.
35 * config/tc-arc.c: Don't #include struc-symbol.h.
36 (arc_check_relocs): Use symbol accessors, testing gas symbol
37 section rather than bfd symbol section.
38 * config/tc-avr.c: Don't #include struc-symbol.h.
39 (avr_patch_gccisr_frag): Use symbol accessors.
40 * config/tc-bfin.c: Don't #include struc-symbol.h.
41 (bfin_loop_beginend): Use symbol accessors.
42 * config/tc-csky.c: Don't #include struc-symbol.h.
43 (v2_work_movih, v2_work_ori): Use symbol accessors. Check for
44 absolute symbol as well as O_constant.
45 * config/tc-riscv.c: Don't #include struc-symbol.h.
46 (riscv_pre_output_hook): Use symbol accessors.
47 * config/tc-s390.c: Don't #include struc-symbol.h.
48 (s390_literals): Use symbol accessors.
49 * config/tc-score.c (s3_build_la_pic, s3_build_lwst_pic): Use
50 symbol accessors.
51 (s3_relax_branch_inst16, s3_relax_cmpbranch_inst32): Don't
52 test symbol bsym.
53 * config/tc-score7.c: Don't #include struc-symbol.h.
54 (s7_build_la_pic, s7_build_lwst_pic): Use symbol accessors.
55 (s7_b32_relax_to_b16): Don't test symbol bsym.
56 * config/tc-sh.c: Don't #include struc-symbol.h.
57 (insert_loop_bounds): Use symbol accessors.
58 (sh_frob_section): Remove bogus symbol canonicalization.
59 * config/tc-tic54x.c: Don't #include struc-symbol.h.
60 (tic54x_bss): Use symbol accessors.
61 * config/tc-tilegx.c: Don't #include struc-symbol.h.
62 (emit_tilegx_instruction, tilegx_parse_name): Use symbol accessors.
63 * config/tc-tilepro.c: Don't #include struc-symbol.h.
64 (emit_tilepro_instruction, tilepro_parse_name): Use accessors.
65 * config/tc-xtensa.c: Don't #include struc-symbol.h.
66 (xg_assemble_vliw_tokens): Use symbol accessors.
67 (xg_order_trampoline_chain): Likewise.
68 * ehopt.c: Don't #include struc-symbol.h.
69 (check_eh_frame): Correct local symbol test. Use symbol accessors.
70 * write.c: Don't #include struc-symbol.h.
71 (create_note_reloc, maybe_generate_build_notes): Use symbol accessors.
72 * Makefile.in: Regenerate.
73 * po/POTFILES.in: Regenerate.
74
75 2018-10-28 Alan Modra <amodra@gmail.com>
76
77 PR 23837
78 * config/tc-hppa.c: Don't include struc-symbol.h.
79 (pa_build_unwind_subspace): Call symbol_get_frag rather than
80 referencing sy_frag.
81
82 2018-10-23 John Darrington <john@darrington.wattle.id.au>
83
84 * config/tc-s12z.c (md_apply_fix): Handle BFD_RELOC_16 for fixups
85 without a symbol.
86
87 2018-10-22 Alan Modra <amodra@gmail.com>
88
89 * testsuite/gas/all/simple-forward.d,
90 * testsuite/gas/all/simple-forward.s: New test.
91 * testsuite/gas/all/gas.exp: Run it.
92 * testsuite/gas/all/eqv-dot.d: xfail tic30 and tic54x.
93
94 2018-10-22 Alan Modra <amodra@gmail.com>
95
96 * config/tc-alpha.c (md_apply_fix): Handle BFD_RELOC_8 for fixups
97 without a symbol.
98 * testsuite/gas/all/gas.exp: Don't xfail forward test here..
99 * testsuite/gas/all/forward.d: ..do so here, removing alpha.
100
101 2018-10-22 Alan Modra <amodra@gmail.com>
102
103 PR 23040
104 * symbols.c (get_real_sym): New function.
105 (symbol_same_p): Use get_real_sym.
106 (symbol_clone_if_forward_ref): Save real original add_symbol and
107 op_symbol for comparison against that returned from lookup or
108 recursive calls.
109 * dwarf2dbg.c (set_or_check_view): Use expr_section for
110 expression symbols, not absolute_section.
111 (dwarf2_directive_loc): Check symbol_equated_p and tidy cloning
112 of view symbols.
113 * read.c (s_leb128): Don't use deferred_expression.
114
115 2018-10-20 Alan Modra <amodra@gmail.com>
116
117 PR 23800
118 * expr.c (expr): Don't simplify expressions involving forward_ref
119 symbols when mode is expr_defer.
120 * config/tc-spu.c (spu_cons): Parse expression using normal
121 expression evaluation if @ppu is not detected.
122 * testsuite/gas/all/eqv-dot.d,
123 * testsuite/gas/all/eqv-dot.s: New test.
124 * testsuite/gas/all/gas.exp: Run it.
125
126 2018-10-19 Tamar Christina <tamar.christina@arm.com>
127
128 * testsuite/gas/arm/undefined-insn-arm.d: Widen pe skip.
129 * testsuite/gas/arm/undefined-insn-thumb.d: Likewise.
130
131 2018-10-19 Tamar Christina <tamar.christina@arm.com>
132
133 * testsuite/gas/arm/undefined-insn-arm.d: New test.
134 * testsuite/gas/arm/undefined-insn-thumb.d: New test.
135 * testsuite/gas/arm/undefined-insn.s: New test.
136
137 2018-10-19 Fredrik Noring <noring@nocrew.org>
138
139 * testsuite/gas/mips/r5900.s: Extend the R5900 short loop fix
140 test with border cases.
141 * testsuite/gas/mips/r5900.d: Add extra expected disassembly.
142 * config/tc-mips.c (can_swap_branch_p): Clarify the R5900 short
143 loop hardware bug conditions. Correct note on the R5900
144 instruction count short loop fix.
145
146 2018-10-16 Matthew Malcomson <matthew.malcomson@arm.com>
147
148 * testsuite/gas/aarch64/illegal-dotproduct.d: New test.
149 * testsuite/gas/aarch64/illegal-dotproduct.l: New test.
150 * testsuite/gas/aarch64/illegal-dotproduct.s: New test.
151
152
153 2018-10-15 Alan Modra <amodra@gmail.com>
154
155 PR 23534
156 * as.c (main): Exit with fatal error if bfd_init returns an
157 unexpected value.
158
159 2018-10-11 Jan Beulich <jbeulich@suse.com>
160
161 * testsuite/gas/i386/xmmword.s: Add MOVQ / VMOVQ cases.
162 * testsuite/gas/i386/xmmword.l: Adjust expectations.
163
164 2018-10-10 Jan Beulich <jbeulich@suse.com>
165
166 * config/tc-i386.c (parse_insn, process_suffix): Replace
167 opcode_modifier.size<N> uses.
168
169 2018-10-09 Sudakshina Das <sudi.das@arm.com>
170
171 * config/tc-aarch64.c (aarch64_features): Add new "ssbs".
172 * doc/c-aarch64.texi: Document the same.
173 * testsuite/gas/aarch64/ssbs-illegal1.d: New test.
174 * testsuite/gas/aarch64/ssbs-illegal1.l: New test.
175 * testsuite/gas/aarch64/ssbs-illegal2.d: New test.
176 * testsuite/gas/aarch64/ssbs-illegal2.l: New test.
177 * testsuite/gas/aarch64/ssbs.s: New test.
178 * testsuite/gas/aarch64/ssbs1.d: Test with +ssbs
179 * testsuite/gas/aarch64/ssbs2.d: Test with armv8.5-a.
180
181 2018-10-09 Sudakshina Das <sudi.das@arm.com>
182
183 * testsuite/gas/aarch64/sysreg-4.s: Test registers
184 scxtnum_el[0,1,2,3,12] and id_pfr2_el1.
185 * testsuite/gas/aarch64/sysreg-4.d: Likewise.
186 * testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
187
188 2018-10-09 Sudakshina Das <sudi.das@arm.com>
189
190 * config/tc-aarch64.c (parse_bti_operand): New.
191 (process_omitted_operand): Add case for AARCH64_OPND_BTI_TARGET.
192 (parse_operands): Likewise.
193 * testsuite/gas/aarch64/system.d: Update for BTI.
194 * testsuite/gas/aarch64/bti.s: New.
195 * testsuite/gas/aarch64/bti.d: New.
196 * testsuite/gas/aarch64/illegal-bti.d: New.
197 * testsuite/gas/aarch64/illegal-bti.l: New.
198
199 2018-10-09 Sudakshina Das <sudi.das@arm.com>
200
201 * config/tc-aarch64.c (aarch64_features): New "rng" option.
202 * doc/c-aarch64.texi: Document the same.
203 * testsuite/gas/aarch64/sysreg-4.s: Test both instructions.
204 * testsuite/gas/aarch64/sysreg-4.d: Likewise.
205 * testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
206
207 2018-10-09 Sudakshina Das <sudi.das@arm.com>
208
209 * testsuite/gas/aarch64/sysreg-4.s: Test instruction.
210 * testsuite/gas/aarch64/sysreg-4.d: Likewise.
211 * testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
212
213 2018-10-09 Sudakshina Das <sudi.das@arm.com>
214
215 * config/tc-aarch64.c (aarch64_sys_regs_sr_hsh): New.
216 (parse_operands): Add entry for AARCH64_OPND_SYSREG_SR.
217 (md_begin): Allocate and initialize aarch64_sys_regs_sr_hsh
218 with aarch64_sys_regs_sr.
219 (aarch64_features): Add new "predres" option for older
220 architectures.
221 * doc/c-aarch64.texi: Document the same.
222 * testsuite/gas/aarch64/sysreg-4.s: New.
223 * testsuite/gas/aarch64/sysreg-4.d: New.
224 * testsuite/gas/aarch64/illegal-sysreg-4.d: New.
225 * testsuite/gas/aarch64/illegal-sysreg-4.l: New.
226 * testsuite/gas/aarch64/predres.s: New.
227 * testsuite/gas/aarch64/predres.d: New.
228
229 2018-10-09 Sudakshina Das <sudi.das@arm.com>
230
231 * config/tc-aarch64.c (aarch64_features): Add new "sb" option
232 for older architectures.
233 * doc/c-aarch64.texi: Document the same.
234 * testsuite/gas/aarch64/sb.s: New.
235 * testsuite/gas/aarch64/sb.d: New.
236
237 2018-10-09 Sudakshina Das <sudi.das@arm.com>
238
239 * testsuite/gas/aarch64/armv8_5-a-dp.s: New.
240 * testsuite/gas/aarch64/armv8_5-a-dp.d: New.
241
242 2018-10-09 Sudakshina Das <sudi.das@arm.com>
243
244 * config/tc-aarch64.c (aarch64_archs): New entry for armv8.5-a.
245 * doc/c-aarch64.texi: Add documentation for the same.
246
247 2018-10-05 H.J. Lu <hongjiu.lu@intel.com>
248
249
250 * testsuite/gas/i386/se1.s: Add enclv.
251 * testsuite/gas/i386/x86-64-se1.s: Likewise.
252 * testsuite/gas/i386/se1.d: Updated.
253 * testsuite/gas/i386/x86-64-se1.d: Likewise.
254
255 2018-10-05 Sudakshina Das <sudi.das@arm.com>
256
257 * config/tc-arm.c (arm_ext_predres): New.
258 (insns): Add new cfprctx, dvprctx and cpprctx instructions.
259 (arm_extensions): Add "predres".
260 * doc/c-arm.texi: Document the above.
261 * testsuite/gas/arm/predres-bad.d: New test.
262 * testsuite/gas/arm/predres-bad.l: New test.
263 * testsuite/gas/arm/predres.s: New test.
264 * testsuite/gas/arm/predres1.d: New test.
265 * testsuite/gas/arm/predres2.d: New test.
266
267 2018-10-05 Sudakshina Das <sudi.das@arm.com>
268
269 * config/tc-arm.c (arm_ext_sb): New.
270 (insns): Add new sb instruction.
271 (arm_extensions): Add "sb".
272 * doc/c-arm.texi: Document the above.
273 * testsuite/gas/arm/sb-bad.d: New test.
274 * testsuite/gas/arm/sb-bad.l: New test.
275 * testsuite/gas/arm/sb-thumb1.d: New test.
276 * testsuite/gas/arm/sb-thumb2.d: New test.
277 * testsuite/gas/arm/sb.s: New test.
278 * testsuite/gas/arm/sb1.d: New test.
279 * testsuite/gas/arm/sb2.d: New test.
280
281 2018-10-05 Sudakshina Das <sudi.das@arm.com>
282
283 * config/tc-arm.c (arm_archs): New entry for armv8.5-a.
284 (cpu_arch_ver): Likewise.
285 * doc/c-arm.texi: Add documentation for the same.
286 * testsuite/gas/arm/attr-march-armv8_5-a.d: New.
287
288 2018-10-05 Stafford Horne <shorne@gmail.com>
289
290 * doc/Makefile.am (CPU_DOCS): Add entry for OpenRISC.
291 * doc/Makefile.in: Regenerated.
292 * doc/all.texi: Set OPENRISC.
293 * doc/as.texi: Document OpenRISC.
294 * doc/c-or1k.texi: New file.
295
296 2018-10-05 Stafford Horne <shorne@gmail.com>
297
298 * testsuite/gas/or1k/allinsn.s: Add instruction tests for
299 l.muld, l.muldu, l.macu, l.msb, l.msbu.
300 * testsuite/gas/or1k/allinsn.d: Add test results for new
301 instructions.
302
303 2018-10-05 Richard Henderson <rth@twiddle.net>
304
305 * config/tc-or1k.c (or1k_apply_fix): Add BFD_RELOC_OR1K_TLS_GD_PG21,
306 BFD_RELOC_OR1K_TLS_GD_LO13, BFD_RELOC_OR1K_TLS_LDM_PG21,
307 BFD_RELOC_OR1K_TLS_LDM_LO13, BFD_RELOC_OR1K_TLS_IE_PG21,
308 BFD_RELOC_OR1K_TLS_IE_LO13.
309 * testsuite/gas/or1k/allinsn.s: Add test for l.adrp.
310 * testsuite/gas/or1k/allinsn.d: Add test results for new
311 instructions.
312 * testsuite/gas/or1k/reloc-1.s: Add tests to generate
313 R_OR1K_PLTA26, R_OR1K_GOT_PG21, R_OR1K_TLS_GD_PG21, R_OR1K_TLS_LDM_PG21,
314 R_OR1K_TLS_IE_PG21, R_OR1K_LO13, R_OR1K_GOT_LO13, R_OR1K_TLS_GD_LO13,
315 R_OR1K_TLD_LDM_LO13, R_OR1K_TLS_IE_LO13, R_OR1K_LO13, R_OR1K_SLO13
316 relocations.
317 * testsuite/gas/or1k/reloc-1.d: Add relocation results for
318 tests.
319 * testsuite/gas/or1k/reloc-2.s: Add negative tests for store to
320 gotpo().
321 * testsuite/gas/or1k/reloc-2.l: Add expected error test results.
322
323 2018-10-05 Richard Henderson <rth@twiddle.net>
324
325 * testsuite/gas/or1k/allinsn.d (l_ha): Add result for ha() relocation.
326 * testsuite/gas/or1k/allinsn.s (l_ha): Add test for ha() relocations.
327 * testsuite/gas/or1k/allinsn.exp: Renamed to or1k.exp.
328 * testsuite/gas/or1k/or1k.exp: Add reloc-2 list test.
329 * testsuite/gas/or1k/reloc-1.d: New file.
330 * testsuite/gas/or1k/reloc-1.s: New file.
331 * testsuite/gas/or1k/reloc-2.l: New file.
332 * testsuite/gas/or1k/reloc-2.s: New file.
333
334 2018-10-03 Tamar Christina <tamar.christina@arm.com>
335
336 * testsuite/gas/aarch64/sve-movprfx_1.d: New test.
337 * testsuite/gas/aarch64/sve-movprfx_1.s: New test.
338 * testsuite/gas/aarch64/sve-movprfx_10.d: New test.
339 * testsuite/gas/aarch64/sve-movprfx_10.l: New test.
340 * testsuite/gas/aarch64/sve-movprfx_10.s: New test.
341 * testsuite/gas/aarch64/sve-movprfx_11.d: New test.
342 * testsuite/gas/aarch64/sve-movprfx_11.s: New test.
343 * testsuite/gas/aarch64/sve-movprfx_12.d: New test.
344 * testsuite/gas/aarch64/sve-movprfx_12.s: New test.
345 * testsuite/gas/aarch64/sve-movprfx_13.d: New test.
346 * testsuite/gas/aarch64/sve-movprfx_13.l: New test.
347 * testsuite/gas/aarch64/sve-movprfx_13.s: New test.
348 * testsuite/gas/aarch64/sve-movprfx_14.d: New test.
349 * testsuite/gas/aarch64/sve-movprfx_14.l: New test.
350 * testsuite/gas/aarch64/sve-movprfx_14.s: New test.
351 * testsuite/gas/aarch64/sve-movprfx_15.d: New test.
352 * testsuite/gas/aarch64/sve-movprfx_15.l: New test.
353 * testsuite/gas/aarch64/sve-movprfx_15.s: New test.
354 * testsuite/gas/aarch64/sve-movprfx_16.d: New test.
355 * testsuite/gas/aarch64/sve-movprfx_16.s: New test.
356 * testsuite/gas/aarch64/sve-movprfx_17.d: New test.
357 * testsuite/gas/aarch64/sve-movprfx_17.l: New test.
358 * testsuite/gas/aarch64/sve-movprfx_17.s: New test.
359 * testsuite/gas/aarch64/sve-movprfx_18.d: New test.
360 * testsuite/gas/aarch64/sve-movprfx_18.l: New test.
361 * testsuite/gas/aarch64/sve-movprfx_18.s: New test.
362 * testsuite/gas/aarch64/sve-movprfx_19.d: New test.
363 * testsuite/gas/aarch64/sve-movprfx_19.s: New test.
364 * testsuite/gas/aarch64/sve-movprfx_2.d: New test.
365 * testsuite/gas/aarch64/sve-movprfx_2.l: New test.
366 * testsuite/gas/aarch64/sve-movprfx_2.s: New test.
367 * testsuite/gas/aarch64/sve-movprfx_20.d: New test.
368 * testsuite/gas/aarch64/sve-movprfx_20.l: New test.
369 * testsuite/gas/aarch64/sve-movprfx_20.s: New test.
370 * testsuite/gas/aarch64/sve-movprfx_21.d: New test.
371 * testsuite/gas/aarch64/sve-movprfx_21.s: New test.
372 * testsuite/gas/aarch64/sve-movprfx_22.d: New test.
373 * testsuite/gas/aarch64/sve-movprfx_22.l: New test.
374 * testsuite/gas/aarch64/sve-movprfx_22.s: New test.
375 * testsuite/gas/aarch64/sve-movprfx_23.d: New test.
376 * testsuite/gas/aarch64/sve-movprfx_23.l: New test.
377 * testsuite/gas/aarch64/sve-movprfx_23.s: New test.
378 * testsuite/gas/aarch64/sve-movprfx_24.d: New test.
379 * testsuite/gas/aarch64/sve-movprfx_24.l: New test.
380 * testsuite/gas/aarch64/sve-movprfx_24.s: New test.
381 * testsuite/gas/aarch64/sve-movprfx_25.d: New test.
382 * testsuite/gas/aarch64/sve-movprfx_25.l: New test.
383 * testsuite/gas/aarch64/sve-movprfx_25.s: New test.
384 * testsuite/gas/aarch64/sve-movprfx_26.d: New test.
385 * testsuite/gas/aarch64/sve-movprfx_26.l: New test.
386 * testsuite/gas/aarch64/sve-movprfx_26.s: New test.
387 * testsuite/gas/aarch64/sve-movprfx_3.d: New test.
388 * testsuite/gas/aarch64/sve-movprfx_3.l: New test.
389 * testsuite/gas/aarch64/sve-movprfx_3.s: New test.
390 * testsuite/gas/aarch64/sve-movprfx_4.d: New test.
391 * testsuite/gas/aarch64/sve-movprfx_4.l: New test.
392 * testsuite/gas/aarch64/sve-movprfx_4.s: New test.
393 * testsuite/gas/aarch64/sve-movprfx_5.d: New test.
394 * testsuite/gas/aarch64/sve-movprfx_5.s: New test.
395 * testsuite/gas/aarch64/sve-movprfx_6.d: New test.
396 * testsuite/gas/aarch64/sve-movprfx_6.l: New test.
397 * testsuite/gas/aarch64/sve-movprfx_6.s: New test.
398 * testsuite/gas/aarch64/sve-movprfx_7.d: New test.
399 * testsuite/gas/aarch64/sve-movprfx_7.l: New test.
400 * testsuite/gas/aarch64/sve-movprfx_7.s: New test.
401 * testsuite/gas/aarch64/sve-movprfx_8.d: New test.
402 * testsuite/gas/aarch64/sve-movprfx_8.l: New test.
403 * testsuite/gas/aarch64/sve-movprfx_8.s: New test.
404 * testsuite/gas/aarch64/sve-movprfx_9.d: New test.
405 * testsuite/gas/aarch64/sve-movprfx_9.l: New test.
406 * testsuite/gas/aarch64/sve-movprfx_9.s: New test.
407
408 2018-10-03 Tamar Christina <tamar.christina@arm.com>
409
410 * testsuite/gas/aarch64/sve-movprfx.d: New test.
411 * testsuite/gas/aarch64/sve-movprfx.s: New test.
412 * testsuite/gas/aarch64/sve.d: Refactor.
413 * testsuite/gas/aarch64/sve.s: Refactor.
414 * testsuite/gas/aarch64/sysreg-diagnostic.d: Update.
415
416 2018-10-03 Tamar Christina <tamar.christina@arm.com>
417
418 * config/tc-aarch64.c (force_automatic_sequence_close,
419 aarch64_frob_section): New.
420 * config/tc-aarch64.h (tc_frob_section, aarch64_frob_section): New.
421
422 2018-10-03 Tamar Christina <tamar.christina@arm.com>
423
424 * config/tc-aarch64.c (output_operand_error_report): Order warnings.
425
426 2018-10-03 Tamar Christina <tamar.christina@arm.com>
427
428 * config/tc-aarch64.c (now_instr_sequence):
429 (*insn_sequence, now_instr_sequence): New.
430 (output_operand_error_record, do_encode): Add insn_sequence.
431 (md_assemble): Update insn_sequence.
432 (try_to_encode_as_unscaled_ldst, fix_mov_imm_insn, fix_insn):
433 Pass insn_sequence.
434 * config/tc-aarch64.h (struct aarch64_segment_info_type):
435 Add insn_sequence.
436
437 2018-10-02 Palmer Dabbelt <palmer@sifive.com>
438
439 * testsuite/gas/riscv/fence-tso.d: New file.
440 * testsuite/gas/riscv/fence-tso.s: Likewise.
441
442 2018-09-26 Sandra Loosemore <sandra@codesourcery.com>
443
444 * testsuite/gas/all/gas.exp: Skip "Output file must be distinct
445 from input" test on Windows host.
446
447 2018-09-21 H.J. Lu <hongjiu.lu@intel.com>
448
449 PR gas/23691
450 * Makefile.am (bfin-parse.c): Depend on $(srcdir)/../bfd/reloc.c.
451 (rl78-parse.c): Likewise.
452 (rx-parse.c): Likewise.
453 * Makefile.in: Regenerated.
454
455 2018-09-21 Alan Modra <amodra@gmail.com>
456
457 * testsuite/gas/avr/large-debug-line-table.d: Update.
458
459 2018-09-20 H.J. Lu <hongjiu.lu@intel.com>
460
461 PR binutils/23695
462 * testsuite/gas/elf/dwarf2-11.d: Update expected outputs of
463 "readelf -wL".
464 * testsuite/gas/elf/dwarf2-12.d: Likewise.
465 * testsuite/gas/elf/dwarf2-13.d: Likewise.
466 * testsuite/gas/elf/dwarf2-14.d: Likewise.
467 * testsuite/gas/elf/dwarf2-15.d: Likewise.
468 * testsuite/gas/elf/dwarf2-16.d: Likewise.
469 * testsuite/gas/elf/dwarf2-17.d: Likewise.
470 * testsuite/gas/elf/dwarf2-18.d: Likewise.
471 * testsuite/gas/elf/dwarf2-5.d: Likewise.
472 * testsuite/gas/elf/dwarf2-6.d: Likewise.
473 * testsuite/gas/elf/dwarf2-7.d: Likewise.
474
475 2018-09-20 Maciej W. Rozycki <macro@linux-mips.org>
476
477 * config/tc-s12z.c (lex_opr): Use an auxiliary unsigned variable
478 in encoding a constant operand.
479
480 2018-09-20 Maciej W. Rozycki <macro@linux-mips.org>
481
482 * config/tc-ppc.c (ppc_dwsect): Use `valueT' rather than
483 `offsetT' as the type of `flag'.
484
485 2018-09-20 Maciej W. Rozycki <macro@linux-mips.org>
486
487 * config/tc-arc.c (md_number_to_chars_midend): Append `ull' to
488 large constants.
489
490 2018-09-20 Nelson Chu <nelson.chu1990@gmail.com>
491
492 * config/tc-nds32.c: Remove the unused target features.
493 (nds32_relax_relocs, md_pseudo_table, nds32_elf_record_fixup_exp,
494 nds32_set_elf_flags_by_insn, nds32_insert_relax_entry,
495 nds32_apply_fix): Likewise.
496 (nds32_no_ex9_begin): Removed.
497 * config/tc-nds32.c (add_mapping_symbol_for_align,
498 make_mapping_symbol, add_mapping_symbol): New functions.
499 * config/tc-nds32.h (enum mstate): New.
500 (nds32_segment_info_type): Likewise.
501 * configure.ac (--enable-dsp-ext, --enable-zol-ext): New options.
502 * config.in: Regenerated.
503 * configure: Regenerated.
504 * config/tc-nds32.c (nds32_dx_regs):
505 Set the value according to the configuration.
506 (nds32_perf_ext, nds32_perf_ext2, nds32_string_ext, nds32_audio_ext):
507 Likewise.
508 (nds32_dsp_ext): New variable. Set the value according to the
509 configuration.
510 (nds32_zol_ext): Likewise.
511 (asm_desc, nds32_pseudo_opcode_table): Make them static.
512 (nds32_set_elf_flags_by_insn): Updated.
513 (nds32_check_insn_available): Updated.
514 (nds32_str_tolower): New function.
515 * config/tc-nds32.c (relax_table): Updated.
516 (md_begin): Updated.
517 (md_assemble): Use XNEW macro to allocate space for `insn.info',
518 and then remember to free it.
519 (md_section_align): Cast (-1) to ValueT.
520 (nds32_get_align): Cast (~0U) to addressT.
521 (nds32_relax_branch_instructions): Updated.
522 (md_convert_frag): Add new local variable `final_r_type'.
523 (invalid_prev_frag): Add new bfd_boolean parameter `relax'.
524 All callers changed.
525 * config/tc-nds32.c (struct nds32_relocs_pattern): Add `insn' field.
526 (struct nds32_hint_map): Add `option_list' field.
527 (struct suffix_name, suffix_table): Remove the unused `pic' field.
528 (do_pseudo_b, do_pseudo_bal): Remove the suffix checking.
529 (do_pseudo_la_internal, do_pseudo_pushpopm): Indent.
530 (relax_hint_bias, relax_hint_id_current): New static variables.
531 (reset_bias, relax_hint_begin): New variables.
532 (nds_itoa): New function.
533 (CLEAN_REG, GET_OPCODE): New macros.
534 (struct relax_hint_id): New.
535 (nds32_relax_hint): For .relax_hint directive, we can use `begin'
536 and `end' to mark the relax pattern without giving exactly id number.
537 (nds32_elf_append_relax_relocs): Handle the case that the .relax_hint
538 directives are attached to pseudo instruction.
539 (nds32_elf_save_pseudo_pattern): Change the second parameter from
540 instruction's opcode to byte code.
541 (nds32_elf_build_relax_relation): Add new bfd_boolean parameter
542 `pseudo_hint'.
543 (nds32_lookup_pseudo_opcode): Fix the overflow issue.
544 (enum nds32_insn_type): Add N32_RELAX_ALU1 and N32_RELAX_16BIT.
545 (nds32_elf_record_fixup_exp, relax_ls_table, hint_map,
546 nds32_find_reloc_table, nds32_match_hint_insn, nds32_parse_name):
547 Updated.
548 * config/tc-nds32.h (MAX_RELAX_NUM): Extend it to 6.
549 (enum nds32_relax_hint_type): Merge NDS32_RELAX_HINT_LA and
550 NDS32_RELAX_HINT_LS into NDS32_RELAX_HINT_LALS. Add
551 NDS32_RELAX_HINT_LA_PLT, NDS32_RELAX_HINT_LA_GOT and
552 NDS32_RELAX_HINT_LA_GOTOFF.
553 * config/tc-nds32.h (relax_ls_table): Add floating load/store
554 to gp relax pattern.
555 (hint_map, nds32_find_reloc_table): Likewise.
556 * configure.ac: Define NDS32_LINUX_TOOLCHAIN.
557 * configure: Regenerated.
558 * config.in: Regenerated.
559 * config/tc-nds32.h (enum nds32_ramp): Updated.
560 (enum nds32_relax_hint_type): Likewise.
561 * config/tc-nds32.c: Include "errno.h" and "limits.h".
562 (relax_ls_table): Add TLS relax patterns.
563 (nds32_elf_append_relax_relocs): Attach BFD_RELOC_NDS32_GROUP on
564 each instructions of TLS patterns.
565 (nds32_elf_record_fixup_exp): Updated.
566 (nds32_apply_fix): Likewise.
567 (suffix_table): Add TLSDESC suffix.
568
569 2018-09-18 Tamar Christina <tamar.christina@arm.com>
570
571 * config/tc-aarch64.c (output_operand_error_report): Apply filtering to
572 current instead of head message.
573
574 2018-09-17 Kito Cheng <kito@andestech.com>
575
576 * testsuite/gas/riscv/bge.d: New.
577 * testsuite/gas/riscv/bge.s: Likewise.
578
579 2018-09-17 H.J. Lu <hongjiu.lu@intel.com>
580
581 PR gas/23670
582 * testsuite/gas/i386/evex-lig-2.d: New file.
583 * testsuite/gas/i386/evex-lig-2.s: Likewise.
584 * testsuite/gas/i386/x86-64-evex-lig-2.d: Likewise.
585 * testsuite/gas/i386/x86-64-evex-lig-2.s: Likewise.
586 * testsuite/gas/i386/i386.exp: Run evex-lig-2 and
587 x86-64-evex-lig-2.
588
589 2018-09-17 H.J. Lu <hongjiu.lu@intel.com>
590
591 PR gas/23665
592 * testsuite/gas/i386/avx-scalar.s: Remove vmovq and vmovd tests.
593 * testsuite/gas/i386/x86-64-avx-scalar.s: Likewise.
594 * testsuite/gas/i386/avx-scalar-intel.d: Updated.
595 * testsuite/gas/i386/avx-scalar.d: Likewise.
596 * testsuite/gas/i386/x86-64-avx-scalar-intel.d: Likewise.
597 * testsuite/gas/i386/x86-64-avx-scalar.d: Likewise.
598 * testsuite/gas/i386/i386.exp: Run avx-scalar2 and
599 x86-64-avx-scalar2.
600 * testsuite/gas/i386/avx-scalar-2.d: New file.
601 * testsuite/gas/i386/avx-scalar-2.s: Likewise.
602 * testsuite/gas/i386/x86-64-avx-scalar-2.d: Likewise.
603 * testsuite/gas/i386/x86-64-avx-scalar-2.s: Likewise.
604
605 2018-09-17 H.J. Lu <hongjiu.lu@intel.com>
606
607 * gas/NEWS: Mention -mvexwig=[0|1] option.
608 * config/tc-i386.c (vexwig): New.
609 (build_vex_prefix): Set the VEX.W bit for -mvexwig=1 for WIG
610 VEX instructions.
611 (OPTION_MVEXWIG): New.
612 (md_longopts): Add -mvexwig=.
613 (md_parse_option): Handle OPTION_MVEXWIG.
614 (md_show_usage): Show -mvexwig=[0|1].
615 * doc/c-i386.texi: Document -mvexwig=[0|1].
616 * testsuite/gas/i386/avx-wig.d: New file.
617 * testsuite/gas/i386/avx-wig.s: Likewise.
618 * testsuite/gas/i386/avx2-wig.d: Likewise.
619 * testsuite/gas/i386/avx2-wig.s: Likewise.
620 * testsuite/gas/i386/x86-64-avx-wig.d: Likewise.
621 * testsuite/gas/i386/x86-64-avx-wig.s: Likewise.
622 * testsuite/gas/i386/x86-64-avx2-wig.d: Likewise.
623 * testsuite/gas/i386/x86-64-avx2-wig.s: Likewise.
624 * testsuite/gas/i386/i386.exp: Run avx-wig, avx2-wig,
625 x86-64-avx-wig and x86-64-avx2-wig.
626
627 2018-09-17 Alan Modra <amodra@gmail.com>
628
629 * testsuite/gas/arm/arch7.d: Delete notarget.
630 * testsuite/gas/arm/arch7a-mp.d: Likewise.
631 * testsuite/gas/arm/arch7em.d: Likewise.
632 * testsuite/gas/arm/archv8m-main-dsp-5.d: Likewise.
633 * testsuite/gas/arm/barrier.d: Likewise.
634 * testsuite/gas/arm/bignum1.d: Likewise.
635 * testsuite/gas/arm/thumb32.d: Likewise.
636 * testsuite/gas/elf/dwarf2-1.d: Likewise.
637 * testsuite/gas/elf/dwarf2-2.d: Likewise.
638 * testsuite/gas/elf/dwarf2-4.d: Likewise.
639 * testsuite/gas/elf/group2.d: Likewise.
640 * testsuite/gas/arm/mapshort-elf.d: Only notarget pe and wince.
641 * testsuite/gas/elf/dwarf2-3.d: Delete notarget, xfail ft32 and h8300.
642 * testsuite/gas/elf/dwarf2-6.d: Delete notarget, xfail a few.
643
644 2018-09-17 Alan Modra <amodra@gmail.com>
645
646 * testsuite/gas/all/gas.exp (redef3): Don't xfail for hppa.
647 (octa): Run for hppa.
648 * testsuite/gas/elf/elf.exp (common1, common2): Likewise.
649 * testsuite/gas/elf/symver.d: Delete notarget.
650
651 2018-09-17 Nick Clifton <nickc@redhat.com>
652
653 * testuite/gas/elf/group0a.d: Add extra details to the test
654 name.
655 * testuite/gas/elf/group0b.d: Likewise.
656 * testuite/gas/elf/group1a.d: Likewise.
657 * testuite/gas/elf/group1b.d: Likewise.
658 * testuite/gas/elf/group0b.d: Likewise.
659 * testuite/gas/elf/section9.d: Likewise.
660 * testuite/gas/i386/ilp32/lns/lns-common-1.d: Likewise.
661 * testuite/gas/i386/ilp32/lns/lns-duplicate-1.d: Likewise.
662
663 2018-09-15 H.J. Lu <hongjiu.lu@intel.com>
664
665 PR gas/23665
666 * testsuite/gas/i386/avx-scalar-intel.d: Updated.
667 * testsuite/gas/i386/avx-scalar.d: Likewise.
668 * testsuite/gas/i386/x86-64-avx-scalar-intel.d: Likewise.
669 * testsuite/gas/i386/x86-64-avx-scalar.d: Likewise.
670
671 2018-09-15 Alan Modra <amodra@gmail.com>
672
673 * testsuite/config/default.exp: Make tmpdir.
674 * testsuite/lib/gas-defs.exp (run_dump_test): Delete.
675 (get_standard_section_names, slurp_options): Delete.
676
677 2018-09-15 Alan Modra <amodra@gmail.com>
678
679 * testsuite/gas/mips/aent-2.d,
680 * testsuite/gas/mips/aent-mdebug-2.d,
681 * testsuite/gas/mips/attr-gnu-4-0.d,
682 * testsuite/gas/mips/attr-gnu-4-1.d,
683 * testsuite/gas/mips/attr-gnu-4-2.d,
684 * testsuite/gas/mips/attr-gnu-4-3.d,
685 * testsuite/gas/mips/attr-gnu-4-5.d,
686 * testsuite/gas/mips/attr-gnu-4-6.d,
687 * testsuite/gas/mips/attr-gnu-4-7.d,
688 * testsuite/gas/mips/attr-none-double.d,
689 * testsuite/gas/mips/attr-none-o32-fp64-nooddspreg.d,
690 * testsuite/gas/mips/attr-none-o32-fp64.d,
691 * testsuite/gas/mips/attr-none-o32-fpxx.d,
692 * testsuite/gas/mips/attr-none-single-float.d,
693 * testsuite/gas/mips/attr-none-soft-float.d,
694 * testsuite/gas/mips/elf-rel27.d,
695 * testsuite/gas/mips/loc-swap-2.d,
696 * testsuite/gas/mips/loc-swap-3.d,
697 * testsuite/gas/mips/loc-swap.d,
698 * testsuite/gas/mips/micromips@loc-swap-2.d,
699 * testsuite/gas/mips/micromips@loc-swap.d,
700 * testsuite/gas/mips/micromips@stabs-symbol-type.d,
701 * testsuite/gas/mips/mips16-intermix.d,
702 * testsuite/gas/mips/mips16@loc-swap-2.d,
703 * testsuite/gas/mips/mips16@loc-swap.d,
704 * testsuite/gas/mips/mips16@stabs-symbol-type.d,
705 * testsuite/gas/mips/mips16e@loc-swap.d,
706 * testsuite/gas/mips/no-odd-spreg.d,
707 * testsuite/gas/mips/odd-spreg.d,
708 * testsuite/gas/mips/r6-attr-none-double.d,
709 * testsuite/gas/mips/stabs-symbol-type.d,
710 * testsuite/lib/gas-defs.exp (run_dump_test): Replace PROG
711 with DUMPPROG.
712
713 2018-09-15 Alan Modra <amodra@gmail.com>
714
715 * testsuite/gas/elf/symver.d,
716 * testsuite/gas/ft32/insn.d,
717 * testsuite/gas/ft32/insnsc.d,
718 * testsuite/gas/i386/ilp32/elf/symver.d,
719 * testsuite/gas/lm32/csr.d,
720 * testsuite/gas/lm32/insn.d,
721 * testsuite/gas/m68hc11/9s12x-exg-sex-tfr.d,
722 * testsuite/gas/m68hc11/9s12x-mov.d,
723 * testsuite/gas/m68hc11/hexprefix.d,
724 * testsuite/gas/m68hc11/insns9s12x.d,
725 * testsuite/gas/m68hc11/insns9s12xg.d,
726 * testsuite/gas/mep/dj1.be.d,
727 * testsuite/gas/mep/dj1.le.d,
728 * testsuite/gas/mips/set-arch.d,
729 * testsuite/gas/mips/tls-o32.d,
730 * testsuite/gas/nios2/branch-r2.d,
731 * testsuite/gas/nios2/branch.d,
732 * testsuite/gas/pdp11/absreloc.d,
733 * testsuite/gas/pdp11/opcode.d,
734 * testsuite/gas/pdp11/pr14480.d,
735 * testsuite/gas/pdp11/pr23481.d,
736 * testsuite/gas/ppc/xcoff-dwsect-1-32.d,
737 * testsuite/gas/ppc/xcoff-dwsect-1-64.d,
738 * testsuite/gas/rx/abs.d,
739 * testsuite/gas/rx/adc.d,
740 * testsuite/gas/rx/add.d,
741 * testsuite/gas/rx/and.d,
742 * testsuite/gas/rx/bclr.d,
743 * testsuite/gas/rx/bcnd.d,
744 * testsuite/gas/rx/bmcnd.d,
745 * testsuite/gas/rx/bnot.d,
746 * testsuite/gas/rx/bra.d,
747 * testsuite/gas/rx/brk.d,
748 * testsuite/gas/rx/bset.d,
749 * testsuite/gas/rx/bsr.d,
750 * testsuite/gas/rx/btst.d,
751 * testsuite/gas/rx/clrpsw.d,
752 * testsuite/gas/rx/cmp.d,
753 * testsuite/gas/rx/dbt.d,
754 * testsuite/gas/rx/div.d,
755 * testsuite/gas/rx/divu.d,
756 * testsuite/gas/rx/emaca.d,
757 * testsuite/gas/rx/emsba.d,
758 * testsuite/gas/rx/emul.d,
759 * testsuite/gas/rx/emula.d,
760 * testsuite/gas/rx/emulu.d,
761 * testsuite/gas/rx/fadd.d,
762 * testsuite/gas/rx/fcmp.d,
763 * testsuite/gas/rx/fdiv.d,
764 * testsuite/gas/rx/fmul.d,
765 * testsuite/gas/rx/fsqrt.d,
766 * testsuite/gas/rx/fsub.d,
767 * testsuite/gas/rx/ftoi.d,
768 * testsuite/gas/rx/ftou.d,
769 * testsuite/gas/rx/gprel.d,
770 * testsuite/gas/rx/int.d,
771 * testsuite/gas/rx/itof.d,
772 * testsuite/gas/rx/jmp.d,
773 * testsuite/gas/rx/jsr.d,
774 * testsuite/gas/rx/machi.d,
775 * testsuite/gas/rx/maclh.d,
776 * testsuite/gas/rx/maclo.d,
777 * testsuite/gas/rx/max.d,
778 * testsuite/gas/rx/min.d,
779 * testsuite/gas/rx/mov.d,
780 * testsuite/gas/rx/movco.d,
781 * testsuite/gas/rx/movli.d,
782 * testsuite/gas/rx/movu.d,
783 * testsuite/gas/rx/msbhi.d,
784 * testsuite/gas/rx/msblh.d,
785 * testsuite/gas/rx/msblo.d,
786 * testsuite/gas/rx/mul.d,
787 * testsuite/gas/rx/mulhi.d,
788 * testsuite/gas/rx/mullh.d,
789 * testsuite/gas/rx/mullo.d,
790 * testsuite/gas/rx/mvfacgu.d,
791 * testsuite/gas/rx/mvfachi.d,
792 * testsuite/gas/rx/mvfaclo.d,
793 * testsuite/gas/rx/mvfacmi.d,
794 * testsuite/gas/rx/mvfc.d,
795 * testsuite/gas/rx/mvfcp.d,
796 * testsuite/gas/rx/mvtacgu.d,
797 * testsuite/gas/rx/mvtachi.d,
798 * testsuite/gas/rx/mvtaclo.d,
799 * testsuite/gas/rx/mvtc.d,
800 * testsuite/gas/rx/mvtcp.d,
801 * testsuite/gas/rx/neg.d,
802 * testsuite/gas/rx/nop.d,
803 * testsuite/gas/rx/not.d,
804 * testsuite/gas/rx/opecp.d,
805 * testsuite/gas/rx/or.d,
806 * testsuite/gas/rx/pop.d,
807 * testsuite/gas/rx/popc.d,
808 * testsuite/gas/rx/popm.d,
809 * testsuite/gas/rx/pr19665.d,
810 * testsuite/gas/rx/pr22737.d,
811 * testsuite/gas/rx/push.d,
812 * testsuite/gas/rx/pushc.d,
813 * testsuite/gas/rx/pushm.d,
814 * testsuite/gas/rx/r-bcc.d,
815 * testsuite/gas/rx/r-bra.d,
816 * testsuite/gas/rx/racl.d,
817 * testsuite/gas/rx/racw.d,
818 * testsuite/gas/rx/rdacl.d,
819 * testsuite/gas/rx/rdacw.d,
820 * testsuite/gas/rx/revl.d,
821 * testsuite/gas/rx/revw.d,
822 * testsuite/gas/rx/rmpa.d,
823 * testsuite/gas/rx/rolc.d,
824 * testsuite/gas/rx/rorc.d,
825 * testsuite/gas/rx/rotl.d,
826 * testsuite/gas/rx/rotr.d,
827 * testsuite/gas/rx/round.d,
828 * testsuite/gas/rx/rte.d,
829 * testsuite/gas/rx/rtfi.d,
830 * testsuite/gas/rx/rts.d,
831 * testsuite/gas/rx/rtsd.d,
832 * testsuite/gas/rx/sat.d,
833 * testsuite/gas/rx/satr.d,
834 * testsuite/gas/rx/sbb.d,
835 * testsuite/gas/rx/sccnd.d,
836 * testsuite/gas/rx/scmpu.d,
837 * testsuite/gas/rx/setpsw.d,
838 * testsuite/gas/rx/shar.d,
839 * testsuite/gas/rx/shll.d,
840 * testsuite/gas/rx/shlr.d,
841 * testsuite/gas/rx/smovb.d,
842 * testsuite/gas/rx/smovf.d,
843 * testsuite/gas/rx/smovu.d,
844 * testsuite/gas/rx/sstr.d,
845 * testsuite/gas/rx/stnz.d,
846 * testsuite/gas/rx/stz.d,
847 * testsuite/gas/rx/sub.d,
848 * testsuite/gas/rx/suntil.d,
849 * testsuite/gas/rx/swhile.d,
850 * testsuite/gas/rx/tst.d,
851 * testsuite/gas/rx/utof.d,
852 * testsuite/gas/rx/wait.d,
853 * testsuite/gas/rx/xchg.d,
854 * testsuite/gas/rx/xor.d,
855 * testsuite/gas/s12z/abs.d,
856 * testsuite/gas/s12z/adc-imm.d,
857 * testsuite/gas/s12z/adc-opr.d,
858 * testsuite/gas/s12z/add-imm.d,
859 * testsuite/gas/s12z/add-opr.d,
860 * testsuite/gas/s12z/and-imm.d,
861 * testsuite/gas/s12z/and-opr.d,
862 * testsuite/gas/s12z/and-or-cc.d,
863 * testsuite/gas/s12z/bfext-special.d,
864 * testsuite/gas/s12z/bfext.d,
865 * testsuite/gas/s12z/bit-manip.d,
866 * testsuite/gas/s12z/bit.d,
867 * testsuite/gas/s12z/bra-expression-defined.d,
868 * testsuite/gas/s12z/bra-expression-undef.d,
869 * testsuite/gas/s12z/bra.d,
870 * testsuite/gas/s12z/brclr-symbols.d,
871 * testsuite/gas/s12z/brset-clr-opr-imm-rel.d,
872 * testsuite/gas/s12z/brset-clr-opr-reg-rel.d,
873 * testsuite/gas/s12z/brset-clr-reg-imm-rel.d,
874 * testsuite/gas/s12z/brset-clr-reg-reg-rel.d,
875 * testsuite/gas/s12z/clb.d,
876 * testsuite/gas/s12z/clr-opr.d,
877 * testsuite/gas/s12z/clr.d,
878 * testsuite/gas/s12z/cmp-imm.d,
879 * testsuite/gas/s12z/cmp-opr-inc.d,
880 * testsuite/gas/s12z/cmp-opr-rdirect.d,
881 * testsuite/gas/s12z/cmp-opr-reg.d,
882 * testsuite/gas/s12z/cmp-opr-rindirect.d,
883 * testsuite/gas/s12z/cmp-opr-sxe4.d,
884 * testsuite/gas/s12z/cmp-opr-xys.d,
885 * testsuite/gas/s12z/cmp-s-imm.d,
886 * testsuite/gas/s12z/cmp-s-opr.d,
887 * testsuite/gas/s12z/cmp-xy.d,
888 * testsuite/gas/s12z/com-opr.d,
889 * testsuite/gas/s12z/complex-shifts.d,
890 * testsuite/gas/s12z/db-tb-cc-opr.d,
891 * testsuite/gas/s12z/db-tb-cc-reg.d,
892 * testsuite/gas/s12z/dbCC.d,
893 * testsuite/gas/s12z/dec-opr.d,
894 * testsuite/gas/s12z/dec.d,
895 * testsuite/gas/s12z/div.d,
896 * testsuite/gas/s12z/eor.d,
897 * testsuite/gas/s12z/exg.d,
898 * testsuite/gas/s12z/ext24-ld-xy.d,
899 * testsuite/gas/s12z/inc-opr.d,
900 * testsuite/gas/s12z/inc.d,
901 * testsuite/gas/s12z/inh.d,
902 * testsuite/gas/s12z/jmp.d,
903 * testsuite/gas/s12z/jsr.d,
904 * testsuite/gas/s12z/ld-imm-page2.d,
905 * testsuite/gas/s12z/ld-imm.d,
906 * testsuite/gas/s12z/ld-immu18.d,
907 * testsuite/gas/s12z/ld-large-direct.d,
908 * testsuite/gas/s12z/ld-opr.d,
909 * testsuite/gas/s12z/ld-s-opr.d,
910 * testsuite/gas/s12z/ld-small-direct.d,
911 * testsuite/gas/s12z/lea-immu18.d,
912 * testsuite/gas/s12z/lea.d,
913 * testsuite/gas/s12z/mac.d,
914 * testsuite/gas/s12z/min-max.d,
915 * testsuite/gas/s12z/mod.d,
916 * testsuite/gas/s12z/mov.d,
917 * testsuite/gas/s12z/mul-imm.d,
918 * testsuite/gas/s12z/mul-opr-opr.d,
919 * testsuite/gas/s12z/mul-opr.d,
920 * testsuite/gas/s12z/mul-reg.d,
921 * testsuite/gas/s12z/mul.d,
922 * testsuite/gas/s12z/neg-opr.d,
923 * testsuite/gas/s12z/not-so-simple-shifts.d,
924 * testsuite/gas/s12z/opr-18u.d,
925 * testsuite/gas/s12z/opr-expr.d,
926 * testsuite/gas/s12z/opr-ext-18.d,
927 * testsuite/gas/s12z/opr-idx-24-reg.d,
928 * testsuite/gas/s12z/opr-idx3-reg.d,
929 * testsuite/gas/s12z/opr-idx3-xysp-24.d,
930 * testsuite/gas/s12z/opr-indirect-expr.d,
931 * testsuite/gas/s12z/opr-symbol.d,
932 * testsuite/gas/s12z/or-imm.d,
933 * testsuite/gas/s12z/or-opr.d,
934 * testsuite/gas/s12z/p2-mul.d,
935 * testsuite/gas/s12z/page2-inh.d,
936 * testsuite/gas/s12z/psh-pul.d,
937 * testsuite/gas/s12z/qmul.d,
938 * testsuite/gas/s12z/rotate.d,
939 * testsuite/gas/s12z/sat.d,
940 * testsuite/gas/s12z/sbc-imm.d,
941 * testsuite/gas/s12z/sbc-opr.d,
942 * testsuite/gas/s12z/shift.d,
943 * testsuite/gas/s12z/simple-shift.d,
944 * testsuite/gas/s12z/single-ops.d,
945 * testsuite/gas/s12z/specd6.d,
946 * testsuite/gas/s12z/st-large-direct.d,
947 * testsuite/gas/s12z/st-opr.d,
948 * testsuite/gas/s12z/st-s-opr.d,
949 * testsuite/gas/s12z/st-small-direct.d,
950 * testsuite/gas/s12z/st-xy.d,
951 * testsuite/gas/s12z/sub-imm.d,
952 * testsuite/gas/s12z/sub-opr.d,
953 * testsuite/gas/s12z/tfr.d,
954 * testsuite/gas/s12z/trap.d,
955 * testsuite/gas/sh/fdpic.d,
956 * testsuite/gas/sh/sh2a-pic.d,
957 * testsuite/gas/sh/sh2a.d: Don't match object file name.
958 * testsuite/gas/wasm32/disass-2.d,
959 * testsuite/gas/wasm32/disass.d: Likewise, and tidy regexps.
960
961 2018-09-15 Alan Modra <amodra@gmail.com>
962
963 * testsuite/gas/aarch64/armv8_2-a-crypto-fp16-illegal.d,
964 * testsuite/gas/aarch64/armv8_2-a-illegal.d,
965 * testsuite/gas/aarch64/armv8_4-a-illegal.d,
966 * testsuite/gas/aarch64/armv8_4-a-registers-illegal.d,
967 * testsuite/gas/aarch64/deprecated.d,
968 * testsuite/gas/aarch64/diagnostic.d,
969 * testsuite/gas/aarch64/illegal-2.d,
970 * testsuite/gas/aarch64/illegal-by-element.d,
971 * testsuite/gas/aarch64/illegal-crypto-nofp.d,
972 * testsuite/gas/aarch64/illegal-fcmla.d,
973 * testsuite/gas/aarch64/illegal-fjcvtzs.d,
974 * testsuite/gas/aarch64/illegal-fp16-nofp.d,
975 * testsuite/gas/aarch64/illegal-ldapr.d,
976 * testsuite/gas/aarch64/illegal-ldraa.d,
977 * testsuite/gas/aarch64/illegal-lse.d,
978 * testsuite/gas/aarch64/illegal-nofp-armv8_3.d,
979 * testsuite/gas/aarch64/illegal-nofp16.d,
980 * testsuite/gas/aarch64/illegal-ras-1.d,
981 * testsuite/gas/aarch64/illegal-sysreg-2.d,
982 * testsuite/gas/aarch64/illegal-sysreg-3.d,
983 * testsuite/gas/aarch64/illegal.d,
984 * testsuite/gas/aarch64/legacy_reg_names.d,
985 * testsuite/gas/aarch64/pan-illegal.d,
986 * testsuite/gas/aarch64/pr22529.d,
987 * testsuite/gas/aarch64/rm-simd-ext.d,
988 * testsuite/gas/aarch64/sve-invalid.d,
989 * testsuite/gas/aarch64/sve-reg-diagnostic.d,
990 * testsuite/gas/aarch64/sve-sysreg-invalid.d,
991 * testsuite/gas/aarch64/sysreg-diagnostic.d,
992 * testsuite/gas/aarch64/verbose-error.d,
993 * testsuite/gas/all/byte.d,
994 * testsuite/gas/all/org-1.d,
995 * testsuite/gas/all/org-2.d,
996 * testsuite/gas/all/org-3.d,
997 * testsuite/gas/all/sleb128-9.d,
998 * testsuite/gas/arc/asm-errors-2.d,
999 * testsuite/gas/arc/asm-errors-3.d,
1000 * testsuite/gas/arc/asm-errors.d,
1001 * testsuite/gas/arc/attr-rf16.d,
1002 * testsuite/gas/arc/relocs-errors.d,
1003 * testsuite/gas/arc/textinsn-errors.d,
1004 * testsuite/gas/arm/addsw-bad.d,
1005 * testsuite/gas/arm/addthumb2err.d,
1006 * testsuite/gas/arm/adr-invalid.d,
1007 * testsuite/gas/arm/arch7em-bad-1.d,
1008 * testsuite/gas/arm/arch7em-bad-2.d,
1009 * testsuite/gas/arm/arch7em-bad-3.d,
1010 * testsuite/gas/arm/arch7m-bad.d,
1011 * testsuite/gas/arm/archv6s-m-bad.d,
1012 * testsuite/gas/arm/archv6t2-bad.d,
1013 * testsuite/gas/arm/arm-idiv-bad.d,
1014 * testsuite/gas/arm/arm-it-bad-2.d,
1015 * testsuite/gas/arm/arm-it-bad-3.d,
1016 * testsuite/gas/arm/arm-it-bad.d,
1017 * testsuite/gas/arm/arm3-bad.d,
1018 * testsuite/gas/arm/arm7-bad.d,
1019 * testsuite/gas/arm/armv1-bad.d,
1020 * testsuite/gas/arm/armv1.d,
1021 * testsuite/gas/arm/armv2-mp-bad.d,
1022 * testsuite/gas/arm/armv8-2-fp16-scalar-bad.d,
1023 * testsuite/gas/arm/armv8-2-fp16-simd-warning-thumb.d,
1024 * testsuite/gas/arm/armv8-2-fp16-simd-warning.d,
1025 * testsuite/gas/arm/armv8-a+rdma-warning.d,
1026 * testsuite/gas/arm/armv8-a-bad.d,
1027 * testsuite/gas/arm/armv8-a-it-bad.d,
1028 * testsuite/gas/arm/armv8-r-bad.d,
1029 * testsuite/gas/arm/armv8-r-it-bad.d,
1030 * testsuite/gas/arm/armv8_2-a-fp16-illegal.d,
1031 * testsuite/gas/arm/armv8_3-a-fp-bad.d,
1032 * testsuite/gas/arm/armv8_3-a-simd-bad.d,
1033 * testsuite/gas/arm/barrier-bad-thumb.d,
1034 * testsuite/gas/arm/barrier-bad.d,
1035 * testsuite/gas/arm/bl-local-v4t.d,
1036 * testsuite/gas/arm/blx-bl-convert.d,
1037 * testsuite/gas/arm/blx-local.d,
1038 * testsuite/gas/arm/branch-reloc.d,
1039 * testsuite/gas/arm/copro-arm_v2plus-arm_v1.d,
1040 * testsuite/gas/arm/copro-arm_v5plus-arm_v4.d,
1041 * testsuite/gas/arm/copro-arm_v5teplus-arm_v5.d,
1042 * testsuite/gas/arm/copro-arm_v6plus-arm_v5te.d,
1043 * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-1.d,
1044 * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-2.d,
1045 * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-3.d,
1046 * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-4.d,
1047 * testsuite/gas/arm/crc32-armv8-a-bad.d,
1048 * testsuite/gas/arm/crc32-armv8-r-bad.d,
1049 * testsuite/gas/arm/depr-swp.d,
1050 * testsuite/gas/arm/dest-unpredictable.d,
1051 * testsuite/gas/arm/dotprod-illegal.d,
1052 * testsuite/gas/arm/dotprod-legacy-arch.d,
1053 * testsuite/gas/arm/forbid-armv7-idiv-ext.d,
1054 * testsuite/gas/arm/group-reloc-alu-encoding-bad.d,
1055 * testsuite/gas/arm/group-reloc-alu-parsing-bad.d,
1056 * testsuite/gas/arm/group-reloc-ldc-encoding-bad.d,
1057 * testsuite/gas/arm/group-reloc-ldc-parsing-bad.d,
1058 * testsuite/gas/arm/group-reloc-ldr-encoding-bad.d,
1059 * testsuite/gas/arm/group-reloc-ldr-parsing-bad.d,
1060 * testsuite/gas/arm/group-reloc-ldrs-encoding-bad.d,
1061 * testsuite/gas/arm/group-reloc-ldrs-parsing-bad.d,
1062 * testsuite/gas/arm/insn-error-a.d,
1063 * testsuite/gas/arm/insn-error-t.d,
1064 * testsuite/gas/arm/inst-po-2.d,
1065 * testsuite/gas/arm/iwmmxt-bad.d,
1066 * testsuite/gas/arm/iwmmxt-bad2.d,
1067 * testsuite/gas/arm/ld-sp-warn-cortex-m3.d,
1068 * testsuite/gas/arm/ld-sp-warn-cortex-m4.d,
1069 * testsuite/gas/arm/ld-sp-warn-v7.d,
1070 * testsuite/gas/arm/ld-sp-warn-v7a.d,
1071 * testsuite/gas/arm/ld-sp-warn-v7em.d,
1072 * testsuite/gas/arm/ld-sp-warn-v7m.d,
1073 * testsuite/gas/arm/ld-sp-warn-v7r.d,
1074 * testsuite/gas/arm/ld-sp-warn.d,
1075 * testsuite/gas/arm/ldgesb-bad.d,
1076 * testsuite/gas/arm/ldgesh-bad.d,
1077 * testsuite/gas/arm/ldr-bad.d,
1078 * testsuite/gas/arm/ldr-t-bad.d,
1079 * testsuite/gas/arm/ldrd-unpredictable.d,
1080 * testsuite/gas/arm/ldsgeb.d,
1081 * testsuite/gas/arm/ldsgeh.d,
1082 * testsuite/gas/arm/missing.d,
1083 * testsuite/gas/arm/mrs-msr-arm-v7-a-bad.d,
1084 * testsuite/gas/arm/mrs-msr-thumb-v7-m-bad.d,
1085 * testsuite/gas/arm/msr-imm-bad.d,
1086 * testsuite/gas/arm/msr-reg-bad.d,
1087 * testsuite/gas/arm/mul-overlap.d,
1088 * testsuite/gas/arm/neon-addressing-bad.d,
1089 * testsuite/gas/arm/neon-cond-bad.d,
1090 * testsuite/gas/arm/neon-ldst-align-bad.d,
1091 * testsuite/gas/arm/neon-ldst-es-bad.d,
1092 * testsuite/gas/arm/neon-suffix-bad.d,
1093 * testsuite/gas/arm/neon-vmov-bad.d,
1094 * testsuite/gas/arm/noarm.d,
1095 * testsuite/gas/arm/pr18256.d,
1096 * testsuite/gas/arm/pr18347.d,
1097 * testsuite/gas/arm/pr20429.d,
1098 * testsuite/gas/arm/pr22773.d,
1099 * testsuite/gas/arm/r15-bad.d,
1100 * testsuite/gas/arm/reloc-bad.d,
1101 * testsuite/gas/arm/req.d,
1102 * testsuite/gas/arm/shift-bad-pc.d,
1103 * testsuite/gas/arm/shift-bad.d,
1104 * testsuite/gas/arm/simd_by_scalar_low_regbank.d,
1105 * testsuite/gas/arm/simd_by_scalar_low_regbank_thumb.d,
1106 * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.d,
1107 * testsuite/gas/arm/sp-pc-validations-bad-t.d,
1108 * testsuite/gas/arm/sp-pc-validations-bad.d,
1109 * testsuite/gas/arm/sp-usage-thumb2-relax-on-v7.d,
1110 * testsuite/gas/arm/srs-arm.d,
1111 * testsuite/gas/arm/srs-t2.d,
1112 * testsuite/gas/arm/strex-bad-t.d,
1113 * testsuite/gas/arm/t16-bad.d,
1114 * testsuite/gas/arm/thumb-b-bad.d,
1115 * testsuite/gas/arm/thumb-w-bad.d,
1116 * testsuite/gas/arm/thumb2_bad_reg.d,
1117 * testsuite/gas/arm/thumb2_it_bad.d,
1118 * testsuite/gas/arm/thumb2_it_bad_auto.d,
1119 * testsuite/gas/arm/thumb2_ldmstm_bad.d,
1120 * testsuite/gas/arm/thumb2_ldstd_unpredictable.d,
1121 * testsuite/gas/arm/thumb2_mul-bad.d,
1122 * testsuite/gas/arm/thumb2_str-bad.d,
1123 * testsuite/gas/arm/thumb32.d,
1124 * testsuite/gas/arm/udf-bad.d,
1125 * testsuite/gas/arm/udf.d,
1126 * testsuite/gas/arm/undefined.d,
1127 * testsuite/gas/arm/undefined_coff.d,
1128 * testsuite/gas/arm/vcmp-zero-bad.d,
1129 * testsuite/gas/arm/vcvt-bad.d,
1130 * testsuite/gas/arm/vfp-bad.d,
1131 * testsuite/gas/arm/vfp-bad_t2.d,
1132 * testsuite/gas/arm/vfpv3-d16-bad.d,
1133 * testsuite/gas/arm/vldm-thumb-bad.d,
1134 * testsuite/gas/arm/vldmw-arm-bad.d,
1135 * testsuite/gas/arm/vldmw-thumb-bad.d,
1136 * testsuite/gas/arm/vstr-arm-bad.d,
1137 * testsuite/gas/arm/vstr-thumb-bad.d,
1138 * testsuite/gas/arm/weakdef-2.d,
1139 * testsuite/gas/avr/pr21621.d,
1140 * testsuite/gas/elf/bad-bss.d,
1141 * testsuite/gas/elf/bad-group.d,
1142 * testsuite/gas/elf/bad-group.err,
1143 * testsuite/gas/elf/bad-section-flag.d,
1144 * testsuite/gas/elf/bad-section-flag.err,
1145 * testsuite/gas/elf/bad-size.d,
1146 * testsuite/gas/elf/bad-size.err,
1147 * testsuite/gas/elf/common1.d,
1148 * testsuite/gas/elf/common2.d,
1149 * testsuite/gas/elf/common5a.d,
1150 * testsuite/gas/elf/common5b.d,
1151 * testsuite/gas/elf/common5c.d,
1152 * testsuite/gas/elf/common5d.d,
1153 * testsuite/gas/elf/dwarf2-10.d,
1154 * testsuite/gas/elf/dwarf2-8.d,
1155 * testsuite/gas/elf/dwarf2-9.d,
1156 * testsuite/gas/elf/pr21661.d,
1157 * testsuite/gas/elf/pseudo.d,
1158 * testsuite/gas/elf/section13.d,
1159 * testsuite/gas/i386/bad-size.d,
1160 * testsuite/gas/i386/bundle-bad.d,
1161 * testsuite/gas/i386/ilp32/x86-64-sse-check-warn.d,
1162 * testsuite/gas/i386/intel-intel.d,
1163 * testsuite/gas/i386/intel.d,
1164 * testsuite/gas/i386/intelok.d,
1165 * testsuite/gas/i386/mpx-add-bnd-prefix.d,
1166 * testsuite/gas/i386/sse-check-warn.d,
1167 * testsuite/gas/i386/string-ok.d,
1168 * testsuite/gas/i386/vgather-check-warn.d,
1169 * testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.d,
1170 * testsuite/gas/i386/x86-64-sse-check-warn.d,
1171 * testsuite/gas/i386/x86-64-vgather-check-warn.d,
1172 * testsuite/gas/mips/addiu-error.d,
1173 * testsuite/gas/mips/branch-extern-3.d,
1174 * testsuite/gas/mips/branch-extern-4.d,
1175 * testsuite/gas/mips/branch-local-2.d,
1176 * testsuite/gas/mips/branch-local-3.d,
1177 * testsuite/gas/mips/branch-local-5.d,
1178 * testsuite/gas/mips/branch-local-6.d,
1179 * testsuite/gas/mips/branch-local-n32-2.d,
1180 * testsuite/gas/mips/branch-local-n32-3.d,
1181 * testsuite/gas/mips/branch-local-n32-5.d,
1182 * testsuite/gas/mips/branch-local-n32-6.d,
1183 * testsuite/gas/mips/branch-local-n64-2.d,
1184 * testsuite/gas/mips/branch-local-n64-3.d,
1185 * testsuite/gas/mips/branch-local-n64-5.d,
1186 * testsuite/gas/mips/branch-local-n64-6.d,
1187 * testsuite/gas/mips/branch-section-3.d,
1188 * testsuite/gas/mips/branch-section-4.d,
1189 * testsuite/gas/mips/branch-weak-3.d,
1190 * testsuite/gas/mips/branch-weak-4.d,
1191 * testsuite/gas/mips/break-error.d,
1192 * testsuite/gas/mips/crc-err.d,
1193 * testsuite/gas/mips/crc64-err.d,
1194 * testsuite/gas/mips/ginv-err.d,
1195 * testsuite/gas/mips/interaptiv-mr2@isa-override-1.d,
1196 * testsuite/gas/mips/interaptiv-mr2@isa-override-2.d,
1197 * testsuite/gas/mips/isa-override-2.d,
1198 * testsuite/gas/mips/lui-1.d,
1199 * testsuite/gas/mips/lui-2.d,
1200 * testsuite/gas/mips/macro-warn-1-n32.d,
1201 * testsuite/gas/mips/macro-warn-1.d,
1202 * testsuite/gas/mips/macro-warn-2.d,
1203 * testsuite/gas/mips/macro-warn-3.d,
1204 * testsuite/gas/mips/macro-warn-4.d,
1205 * testsuite/gas/mips/micromips-branch-delay.d,
1206 * testsuite/gas/mips/micromips-branch-relax-insn32-pic.d,
1207 * testsuite/gas/mips/micromips-branch-relax-insn32.d,
1208 * testsuite/gas/mips/micromips-branch-relax-pic.d,
1209 * testsuite/gas/mips/micromips-branch-relax.d,
1210 * testsuite/gas/mips/micromips-compact.d,
1211 * testsuite/gas/mips/micromips-insn32.d,
1212 * testsuite/gas/mips/micromips-noinsn32.d,
1213 * testsuite/gas/mips/micromips-size-1.d,
1214 * testsuite/gas/mips/micromips-trap.d,
1215 * testsuite/gas/mips/micromips-warn-branch-delay.d,
1216 * testsuite/gas/mips/micromips.d,
1217 * testsuite/gas/mips/micromips@addiu-error.d,
1218 * testsuite/gas/mips/micromips@mips5-fp.d,
1219 * testsuite/gas/mips/micromips@msa-relax.d,
1220 * testsuite/gas/mips/micromips@relax-at.d,
1221 * testsuite/gas/mips/micromips@relax-offset.d,
1222 * testsuite/gas/mips/micromips@relax.d,
1223 * testsuite/gas/mips/mips-gp32-fp64-pic.d,
1224 * testsuite/gas/mips/mips-gp32-fp64.d,
1225 * testsuite/gas/mips/mips-gp64-fp32-pic.d,
1226 * testsuite/gas/mips/mips-gp64-fp32.d,
1227 * testsuite/gas/mips/mips-gp64-fp64.d,
1228 * testsuite/gas/mips/mips16-32@mips16-insn-e.d,
1229 * testsuite/gas/mips/mips16-32@mips16-insn-t.d,
1230 * testsuite/gas/mips/mips16-32@mips16-macro-e.d,
1231 * testsuite/gas/mips/mips16-32@mips16-macro-t.d,
1232 * testsuite/gas/mips/mips16-32@mips16-macro.d,
1233 * testsuite/gas/mips/mips16-64@mips16-insn-e.d,
1234 * testsuite/gas/mips/mips16-64@mips16-insn-t.d,
1235 * testsuite/gas/mips/mips16-absolute-reloc-2.d,
1236 * testsuite/gas/mips/mips16-absolute-reloc-3.d,
1237 * testsuite/gas/mips/mips16-branch-addend-5.d,
1238 * testsuite/gas/mips/mips16-branch-unextended-1.d,
1239 * testsuite/gas/mips/mips16-branch-unextended-2.d,
1240 * testsuite/gas/mips/mips16-insn-e.d,
1241 * testsuite/gas/mips/mips16-insn-t.d,
1242 * testsuite/gas/mips/mips16-jal-t.d,
1243 * testsuite/gas/mips/mips16-macro-e.d,
1244 * testsuite/gas/mips/mips16-macro-t.d,
1245 * testsuite/gas/mips/mips16-pcrel-2.d,
1246 * testsuite/gas/mips/mips16-pcrel-3.d,
1247 * testsuite/gas/mips/mips16-pcrel-4.d,
1248 * testsuite/gas/mips/mips16-pcrel-5.d,
1249 * testsuite/gas/mips/mips16-pcrel-absolute-n64-4.d,
1250 * testsuite/gas/mips/mips16-pcrel-absolute-n64-6.d,
1251 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-4.d,
1252 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-6.d,
1253 * testsuite/gas/mips/mips16-pcrel-addend-n64-8.d,
1254 * testsuite/gas/mips/mips16-pcrel-addend-n64-9.d,
1255 * testsuite/gas/mips/mips16-pcrel-addend-pic-8.d,
1256 * testsuite/gas/mips/mips16-pcrel-addend-pic-9.d,
1257 * testsuite/gas/mips/mips16-pcrel-delay-0.d,
1258 * testsuite/gas/mips/mips16-pcrel-delay-1.d,
1259 * testsuite/gas/mips/mips16-pcrel-n64-0.d,
1260 * testsuite/gas/mips/mips16-pcrel-n64-1.d,
1261 * testsuite/gas/mips/mips16-pcrel-pic-0.d,
1262 * testsuite/gas/mips/mips16-pcrel-pic-1.d,
1263 * testsuite/gas/mips/mips16-reg-error.d,
1264 * testsuite/gas/mips/mips16-relax-unextended-1.d,
1265 * testsuite/gas/mips/mips16-relax-unextended-2.d,
1266 * testsuite/gas/mips/mips16-reloc-error.d,
1267 * testsuite/gas/mips/mips16-sdrasp.d,
1268 * testsuite/gas/mips/mips16@addiu-error.d,
1269 * testsuite/gas/mips/mips16e-32@mips16-insn-e.d,
1270 * testsuite/gas/mips/mips16e-32@mips16-insn-t.d,
1271 * testsuite/gas/mips/mips16e-32@mips16-macro-e.d,
1272 * testsuite/gas/mips/mips16e-32@mips16-macro-t.d,
1273 * testsuite/gas/mips/mips16e-32@mips16-macro.d,
1274 * testsuite/gas/mips/mips16e-32@mips16e-64.d,
1275 * testsuite/gas/mips/mips16e2-32@mips16-insn-e.d,
1276 * testsuite/gas/mips/mips16e2-32@mips16-insn-t.d,
1277 * testsuite/gas/mips/mips16e2-32@mips16-macro-e.d,
1278 * testsuite/gas/mips/mips16e2-32@mips16-macro-t.d,
1279 * testsuite/gas/mips/mips16e2-32@mips16-macro.d,
1280 * testsuite/gas/mips/mips16e2-32@mips16e-64.d,
1281 * testsuite/gas/mips/mips16e2-copy-err.d,
1282 * testsuite/gas/mips/mips16e2-imm-error.d,
1283 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-e.d,
1284 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-t.d,
1285 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-e.d,
1286 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-t.d,
1287 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro.d,
1288 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-sub.d,
1289 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64-sub.d,
1290 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64.d,
1291 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-sub.d,
1292 * testsuite/gas/mips/mips16e2-mt-err.d,
1293 * testsuite/gas/mips/mips16e2-reloc-error.d,
1294 * testsuite/gas/mips/mips16e2@lui-2.d,
1295 * testsuite/gas/mips/mips16e2@mips16-pcrel-2.d,
1296 * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-0.d,
1297 * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-1.d,
1298 * testsuite/gas/mips/mips1@isa-override-2.d,
1299 * testsuite/gas/mips/mips1@relax-offset.d,
1300 * testsuite/gas/mips/mips2@isa-override-2.d,
1301 * testsuite/gas/mips/mips32-mt.d,
1302 * testsuite/gas/mips/mips32@isa-override-2.d,
1303 * testsuite/gas/mips/mips32r2@isa-override-2.d,
1304 * testsuite/gas/mips/mips32r3@isa-override-2.d,
1305 * testsuite/gas/mips/mips32r5@isa-override-2.d,
1306 * testsuite/gas/mips/mips32r6@isa-override-2.d,
1307 * testsuite/gas/mips/mips5-fp.d,
1308 * testsuite/gas/mips/mips64-mips3d-incl.d,
1309 * testsuite/gas/mips/mips64-mips3d.d,
1310 * testsuite/gas/mips/mipsr6@mips5-fp.d,
1311 * testsuite/gas/mips/msa-relax.d,
1312 * testsuite/gas/mips/octeon3@isa-override-1.d,
1313 * testsuite/gas/mips/octeon3@isa-override-2.d,
1314 * testsuite/gas/mips/option-pic-relax-2.d,
1315 * testsuite/gas/mips/option-pic-relax-3.d,
1316 * testsuite/gas/mips/option-pic-relax-4.d,
1317 * testsuite/gas/mips/option-pic-relax-5.d,
1318 * testsuite/gas/mips/org-1.d,
1319 * testsuite/gas/mips/org-10.d,
1320 * testsuite/gas/mips/org-4.d,
1321 * testsuite/gas/mips/org-5.d,
1322 * testsuite/gas/mips/org-6.d,
1323 * testsuite/gas/mips/r3000@isa-override-2.d,
1324 * testsuite/gas/mips/r3000@relax-offset.d,
1325 * testsuite/gas/mips/r3900@isa-override-2.d,
1326 * testsuite/gas/mips/r3900@relax-offset.d,
1327 * testsuite/gas/mips/reginfo-2-n32.d,
1328 * testsuite/gas/mips/reginfo-2.d,
1329 * testsuite/gas/mips/relax-at.d,
1330 * testsuite/gas/mips/relax-offset.d,
1331 * testsuite/gas/mips/relax-swap1-mips1.d,
1332 * testsuite/gas/mips/relax-swap1-mips2.d,
1333 * testsuite/gas/mips/relax-swap2.d,
1334 * testsuite/gas/mips/relax.d,
1335 * testsuite/gas/mips/save-err.d,
1336 * testsuite/gas/mips/set-arch.d,
1337 * testsuite/gas/mips/xpa-err.d,
1338 * testsuite/gas/mips/xpa-virt-err.d,
1339 * testsuite/gas/msp430/bad.d,
1340 * testsuite/gas/msp430/errata_warns.d,
1341 * testsuite/gas/msp430/pr22133.d,
1342 * testsuite/gas/ppc/lsp-checks.d,
1343 * testsuite/gas/ppc/misalign.d,
1344 * testsuite/gas/ppc/spe2-checks.d,
1345 * testsuite/gas/riscv/bad-csr.d,
1346 * testsuite/gas/riscv/c-addi16sp-fail.d,
1347 * testsuite/gas/riscv/c-addi4spn-fail.d,
1348 * testsuite/gas/riscv/c-fld-fsd-fail.d,
1349 * testsuite/gas/riscv/c-lui-fail.d,
1350 * testsuite/gas/riscv/c-nonzero-imm.d,
1351 * testsuite/gas/riscv/c-nonzero-reg.d,
1352 * testsuite/gas/riscv/fence-fail.d,
1353 * testsuite/gas/riscv/lla64-fail.d,
1354 * testsuite/gas/riscv/rouding-fail.d,
1355 * testsuite/gas/sh/pcrel-hms.d,
1356 * testsuite/gas/sh/pcrel.d,
1357 * testsuite/gas/sparc/dcti-couples-v8.d,
1358 * testsuite/gas/sparc/dcti-couples-v9c.d,
1359 * testsuite/gas/tic6x/arch-invalid-1.d,
1360 * testsuite/gas/tic6x/arch-invalid-2.d,
1361 * testsuite/gas/tic6x/dir-junk.d,
1362 * testsuite/gas/tic6x/insns-bad-1.d,
1363 * testsuite/gas/tic6x/insns-bad-2.d,
1364 * testsuite/gas/tic6x/parallel-bad-1.d,
1365 * testsuite/gas/tic6x/parallel-bad-2.d,
1366 * testsuite/gas/tic6x/parallel-bad-3.d,
1367 * testsuite/gas/tic6x/parallel-bad-4.d,
1368 * testsuite/gas/tic6x/predicate-bad-1.d,
1369 * testsuite/gas/tic6x/predicate-bad-2.d,
1370 * testsuite/gas/tic6x/predicate-bad-3.d,
1371 * testsuite/gas/tic6x/reloc-bad-1.d,
1372 * testsuite/gas/tic6x/reloc-bad-2.d,
1373 * testsuite/gas/tic6x/reloc-bad-3.d,
1374 * testsuite/gas/tic6x/reloc-bad-4.d,
1375 * testsuite/gas/tic6x/reloc-bad-5.d,
1376 * testsuite/gas/tic6x/reloc-bad-6.d,
1377 * testsuite/gas/tic6x/resource-func-unit-1.d,
1378 * testsuite/gas/tic6x/resource-func-unit-2.d,
1379 * testsuite/gas/tic6x/sploop-bad-1.d,
1380 * testsuite/gas/tic6x/sploop-bad-2.d,
1381 * testsuite/gas/tic6x/sploop-bad-3.d,
1382 * testsuite/gas/tic6x/sploop-bad-4.d,
1383 * testsuite/gas/tic6x/sploop-bad-5.d,
1384 * testsuite/gas/tic6x/sploop-bad-6.d,
1385 * testsuite/gas/tic6x/sploop-bad-7.d,
1386 * testsuite/gas/tic6x/unwind-bad-1.d,
1387 * testsuite/gas/tic6x/unwind-bad-2.d,
1388 * testsuite/lib/gas-defs.exp (run_dump_tests): Replace stderr
1389 and error-output with warning_output and error_output.
1390 (slurp_options): Accept underscore rather than dash.
1391
1392 2018-09-15 Alan Modra <amodra@gmail.com>
1393
1394 * testsuite/gas/aarch64/codealign.d,
1395 * testsuite/gas/aarch64/litpool.d,
1396 * testsuite/gas/aarch64/mapmisc.d,
1397 * testsuite/gas/aarch64/mapping.d,
1398 * testsuite/gas/aarch64/mapping2.d,
1399 * testsuite/gas/aarch64/mapping3.d,
1400 * testsuite/gas/aarch64/mapping4.d,
1401 * testsuite/gas/all/align.d,
1402 * testsuite/gas/all/fill-1.d,
1403 * testsuite/gas/all/incbin.d,
1404 * testsuite/gas/all/redef2.d,
1405 * testsuite/gas/all/redef3.d,
1406 * testsuite/gas/all/relax.d,
1407 * testsuite/gas/all/sleb128-2.d,
1408 * testsuite/gas/all/sleb128-4.d,
1409 * testsuite/gas/all/sleb128-5.d,
1410 * testsuite/gas/all/sleb128-7.d,
1411 * testsuite/gas/all/sleb128-9.d,
1412 * testsuite/gas/all/weakref1.d,
1413 * testsuite/gas/all/weakref1g.d,
1414 * testsuite/gas/all/weakref1l.d,
1415 * testsuite/gas/all/weakref1u.d,
1416 * testsuite/gas/all/weakref1w.d,
1417 * testsuite/gas/arm/abs12.d,
1418 * testsuite/gas/arm/arch4t.d,
1419 * testsuite/gas/arm/arch7.d,
1420 * testsuite/gas/arm/arch7a-mp.d,
1421 * testsuite/gas/arm/arch7em.d,
1422 * testsuite/gas/arm/archv8m-main-dsp-5.d,
1423 * testsuite/gas/arm/armv8a-automatic-hlt.d,
1424 * testsuite/gas/arm/armv8a-automatic-lda.d,
1425 * testsuite/gas/arm/attr-syntax.d,
1426 * testsuite/gas/arm/automatic-bw.d,
1427 * testsuite/gas/arm/automatic-cbz.d,
1428 * testsuite/gas/arm/automatic-clrex.d,
1429 * testsuite/gas/arm/automatic-lda.d,
1430 * testsuite/gas/arm/automatic-ldaex.d,
1431 * testsuite/gas/arm/automatic-ldaexb.d,
1432 * testsuite/gas/arm/automatic-ldrex.d,
1433 * testsuite/gas/arm/automatic-ldrexd.d,
1434 * testsuite/gas/arm/automatic-movw.d,
1435 * testsuite/gas/arm/automatic-sdiv.d,
1436 * testsuite/gas/arm/automatic-strexb.d,
1437 * testsuite/gas/arm/barrier-thumb.d,
1438 * testsuite/gas/arm/barrier.d,
1439 * testsuite/gas/arm/bignum1.d,
1440 * testsuite/gas/arm/blx-bad.d,
1441 * testsuite/gas/arm/blx-local.s,
1442 * testsuite/gas/arm/crc32-armv8-a-bad.d,
1443 * testsuite/gas/arm/crc32-armv8-a.d,
1444 * testsuite/gas/arm/crc32-armv8-r-bad.d,
1445 * testsuite/gas/arm/crc32-armv8-r.d,
1446 * testsuite/gas/arm/eabi_attr_1.d,
1447 * testsuite/gas/arm/fp-save.d,
1448 * testsuite/gas/arm/local_function.d,
1449 * testsuite/gas/arm/local_label_coff.d,
1450 * testsuite/gas/arm/local_label_wince.d,
1451 * testsuite/gas/arm/mapping.d,
1452 * testsuite/gas/arm/mapping2.d,
1453 * testsuite/gas/arm/mapping3.d,
1454 * testsuite/gas/arm/mapping4.d,
1455 * testsuite/gas/arm/mapshort-elf.d,
1456 * testsuite/gas/arm/mask_1-armv8-a.d,
1457 * testsuite/gas/arm/mask_1-armv8-r.d,
1458 * testsuite/gas/arm/mrs-msr-thumb-v6t2.d,
1459 * testsuite/gas/arm/mrs-msr-thumb-v7-m.d,
1460 * testsuite/gas/arm/mrs-msr-thumb-v7e-m.d,
1461 * testsuite/gas/arm/nomapping.d,
1462 * testsuite/gas/arm/pic.d,
1463 * testsuite/gas/arm/pic_vxworks.d,
1464 * testsuite/gas/arm/plt-1.d,
1465 * testsuite/gas/arm/reloc-bad.d,
1466 * testsuite/gas/arm/reloc-fdpic.d,
1467 * testsuite/gas/arm/t2-branch-global.d,
1468 * testsuite/gas/arm/thumb.d,
1469 * testsuite/gas/arm/thumb2_ldr_immediate_armv6.d,
1470 * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.d,
1471 * testsuite/gas/arm/thumb2_pool.d,
1472 * testsuite/gas/arm/thumb2_vpool.d,
1473 * testsuite/gas/arm/thumb2_vpool_be.d,
1474 * testsuite/gas/arm/thumb32.d,
1475 * testsuite/gas/arm/thumbver.d,
1476 * testsuite/gas/arm/tls.d,
1477 * testsuite/gas/arm/tls_vxworks.d,
1478 * testsuite/gas/arm/undefined_coff.d,
1479 * testsuite/gas/arm/unwind.d,
1480 * testsuite/gas/arm/unwind_vxworks.d,
1481 * testsuite/gas/arm/v4bx.d,
1482 * testsuite/gas/arm/vfma1.d,
1483 * testsuite/gas/arm/vldm-arm.d,
1484 * testsuite/gas/arm/weakdef-1.d,
1485 * testsuite/gas/arm/weakdef-2.d,
1486 * testsuite/gas/arm/wince.d,
1487 * testsuite/gas/arm/wince_inst.d,
1488 * testsuite/gas/elf/bignums.d,
1489 * testsuite/gas/elf/common5a.d,
1490 * testsuite/gas/elf/common5b.d,
1491 * testsuite/gas/elf/common5c.d,
1492 * testsuite/gas/elf/common5d.d,
1493 * testsuite/gas/elf/dwarf2-1.d,
1494 * testsuite/gas/elf/dwarf2-10.d,
1495 * testsuite/gas/elf/dwarf2-11.d,
1496 * testsuite/gas/elf/dwarf2-12.d,
1497 * testsuite/gas/elf/dwarf2-13.d,
1498 * testsuite/gas/elf/dwarf2-14.d,
1499 * testsuite/gas/elf/dwarf2-15.d,
1500 * testsuite/gas/elf/dwarf2-16.d,
1501 * testsuite/gas/elf/dwarf2-17.d,
1502 * testsuite/gas/elf/dwarf2-18.d,
1503 * testsuite/gas/elf/dwarf2-2.d,
1504 * testsuite/gas/elf/dwarf2-3.d,
1505 * testsuite/gas/elf/dwarf2-4.d,
1506 * testsuite/gas/elf/dwarf2-5.d,
1507 * testsuite/gas/elf/dwarf2-6.d,
1508 * testsuite/gas/elf/dwarf2-7.d,
1509 * testsuite/gas/elf/dwarf2-8.d,
1510 * testsuite/gas/elf/dwarf2-9.d,
1511 * testsuite/gas/elf/group0c.d,
1512 * testsuite/gas/elf/group1a.d,
1513 * testsuite/gas/elf/group2.d,
1514 * testsuite/gas/elf/groupautoa.d,
1515 * testsuite/gas/elf/ifunc-1.d,
1516 * testsuite/gas/elf/section11.d,
1517 * testsuite/gas/elf/section4.d,
1518 * testsuite/gas/elf/section7.d,
1519 * testsuite/gas/elf/syms.d,
1520 * testsuite/gas/elf/symver.d,
1521 * testsuite/gas/i386/iamcu-1.d,
1522 * testsuite/gas/i386/iamcu-2.d,
1523 * testsuite/gas/i386/iamcu-3.d,
1524 * testsuite/gas/i386/iamcu-4.d,
1525 * testsuite/gas/i386/iamcu-5.d,
1526 * testsuite/gas/i386/ilp32/rex.d,
1527 * testsuite/gas/i386/k1om.d,
1528 * testsuite/gas/i386/l1om.d,
1529 * testsuite/gas/i386/rex.d,
1530 * testsuite/gas/mach-o/sections-3.d,
1531 * testsuite/gas/macros/irp.d,
1532 * testsuite/gas/macros/repeat.d,
1533 * testsuite/gas/macros/rept.d,
1534 * testsuite/gas/macros/semi.d,
1535 * testsuite/gas/macros/test2.d,
1536 * testsuite/gas/macros/test3.d,
1537 * testsuite/gas/macros/vararg.d,
1538 * testsuite/gas/mips/jal-svr4pic-local.d,
1539 * testsuite/gas/mips/micromips@jal-svr4pic-local.d,
1540 * testsuite/gas/mips/mips1@jal-svr4pic-local.d,
1541 * testsuite/gas/mips/r3000@jal-svr4pic-local.d,
1542 * testsuite/gas/ppc/machine.d,
1543 * testsuite/lib/gas-defs.exp (run_dump_test): Replace not-target
1544 and not-skip with notarget and noskip.
1545
1546 2018-09-15 Alan Modra <amodra@gmail.com>
1547
1548 * testsuite/gas/mri/char.d: Don't objcopy to srec, objdump instead.
1549 * testsuite/gas/mri/float.d: Likewise.
1550 * testsuite/lib/gas-defs.exp (run_dump_test): Remove support
1551 for objcopy as a dump tool.
1552
1553 2018-09-14 H.J. Lu <hongjiu.lu@intel.com>
1554
1555 PR gas/23642
1556 * testsuite/gas/i386/evex-wig2.d: New file.
1557 * testsuite/gas/i386/evex-wig2.s: Likewise.
1558 * testsuite/gas/i386/x86-64-evex-wig2.d: Likewise.
1559 * testsuite/gas/i386/x86-64-evex-wig2.s: Likewise.
1560 * testsuite/gas/i386/i386.exp: Run evex-wig2 and
1561 x86-64-evex-wig2.
1562
1563 2018-09-14 H.J. Lu <hongjiu.lu@intel.com>
1564
1565 PR gas/23642
1566 * config/tc-i386.c (build_vex_prefix): Check VEXWIG when setting
1567 the VEX.W bit.
1568 (build_evex_prefix): Check VEXWIG when setting the EVEX.W bit.
1569
1570 2018-09-14 H.J. Lu <hongjiu.lu@intel.com>
1571
1572 PR binutils/23655
1573 * testsuite/gas/i386/evex.d: Updated.
1574
1575 2018-09-14 H.J. Lu <hongjiu.lu@intel.com>
1576
1577 PR binutils/23655
1578 * testsuite/gas/i386/evex.d: New file.
1579 * testsuite/gas/i386/evex.s: Likewise.
1580 * testsuite/gas/i386/i386.exp: Run evex.
1581
1582 2018-09-10 Lifang Xia <lifang_xia@c-sky.com>
1583
1584 * config/tc-csky.c (md_apply_fix): Transmit BFD_RELOC_32_PCREL to
1585 BFD_RELOC_CKCORE_PCREL32.
1586 (tc_gen_reloc): Trasmit BFD_RELOC_CKCORE_ADDR32 to
1587 BFD_RELOC_CKCORE_PCREL32 while pc-relative.
1588 * config/tc-csky.h (DIFF_EXPR_OK): Define to enable PC relative diff
1589 relocs.
1590
1591 2018-09-14 Jan Beulich <jbeulich@suse.com>
1592
1593 * config/tc-i386.c (process_suffix): Simplify CRC32 special
1594 casing code.
1595
1596 2018-09-13 H.J. Lu <hongjiu.lu@intel.com>
1597
1598 * config/tc-i386.c (build_vex_prefix): Swap destination and
1599 source only if there are more than 1 register operand.
1600
1601 2018-09-13 Jan Beulich <jbeulich@suse.com>
1602
1603 * config/tc-i386.c (operand_size_match): Also deal with three
1604 operand case.
1605 (match_template): Also allow operand reversal for three operand
1606 templates.
1607
1608 2018-09-13 Jan Beulich <jbeulich@suse.com>
1609
1610 * config/tc-i386.c (operand_size_match): Mirror
1611 .reg/.regsimd/.acc handling from forward to reverse case.
1612 (build_vex_prefix): Check first and last operand types are equal
1613 and also consider .d for swapping operands for VEX2 encoding.
1614 (match_template): Clear found_reverse_match on every iteration.
1615 Use Opcode_SIMD_FloatD and Opcode_SIMD_IntD.
1616 * testsuite/gas/i386/pseudos.s,
1617 testsuite/gas/i386/x86-64-pseudos.s: Add kmov* tests.
1618 * testsuite/gas/i386/pseudos.d,
1619 testsuite/gas/i386/x86-64-pseudos.d: Adjust expectations.
1620
1621 2018-09-13 Jan Beulich <jbeulich@suse.com>
1622
1623 testsuite/gas/i386/ilp32/x86-64-opts.d,
1624 testsuite/gas/i386/ilp32/x86-64-opts-intel.d,
1625 testsuite/gas/i386/ilp32/x86-64-sse2avx-opts.d,
1626 testsuite/gas/i386/ilp32/x86-64-sse2avx-opts-intel.d: Refer to
1627 non-ILP32 output.
1628
1629 2018-09-13 Jan Beulich <jbeulich@suse.com>
1630
1631 * config/tc-i386.c (dir_encoding_swap): New enumerator.
1632 (parse_insn): Use it.
1633 (match_template): Re-write reversal check.
1634 * testsuite/gas/i386/pseudos.s: Add various move, ALU, and FPU
1635 tests.
1636 * testsuite/gas/i386/x86-64-pseudos.s: Likewise.
1637 * testsuite/gas/i386/pseudos.d,
1638 testsuite/gas/i386/x86-64-pseudos.d: Adjust expectations.
1639
1640 2018-09-13 Jan Beulich <jbeulich@suse.com>
1641
1642 * config/tc-i386.c (parse_insn): Extend comment ahead of pseudo-
1643 suffix handling.
1644
1645 2018-09-13 Jan Beulich <jbeulich@suse.com>
1646
1647 * testsuite/gas/i386/x86-64-mpx.s: And BNDMK case with RIP-
1648 relative memory operand.
1649 * testsuite/gas/i386/x86-64-mpx.d: Adjust expectations.
1650
1651 2018-09-13 Nick Clifton <nickc@redhat.com>
1652
1653 * dwarf2dbg.c (generic_dwarf2_emit_offset): Use memset to
1654 initialise expression structure.
1655 (set_or_check_view): Likewise.
1656 (out_set_addr): Likewise.
1657 (emit_fixed_inc_line_addr): Likewise.
1658 (relax_inc_line_addr): Likewise.
1659 (out_debug_line): Likewise.
1660 (out_debug_ranges): Likewise.
1661 (out_debug_aranges): Likewise.
1662 (out_debug_info): Likewise.
1663
1664 2018-09-06 Alan Modra <amodra@gmail.com>
1665
1666 PR 23570
1667 * config/tc-avr.c: Revert 2018-09-03 change.
1668
1669 2018-09-04 Daniel Cederman <cederman@gaisler.com>
1670
1671 * config/tc-sparc.c (md_assemble): Allow non-fpop2 instructions
1672 before floating point branches for Sparc V8 and earlier.
1673 * testsuite/gas/sparc/sparc.exp: Execute the new test.
1674 * testsuite/gas/sparc/v8branch.d: New test.
1675 * testsuite/gas/sparc/v8branch.s: New test.
1676
1677 2018-09-03 Nick Clifton <nickc@redhat.com>
1678
1679 PR gas/23570
1680 * config/tc-avr.c (md_pseudo_table): Add entry for "secction".
1681 (avr_set_section): New function. Ensures that the .noinit section
1682 gets the NOBITS ELF section type.
1683
1684 2018-08-31 Kito Cheng <kito@andestech.com>
1685
1686 * testsuite/gas/riscv/c-fld-fsd-fail.d: New.
1687 * testsuite/gas/riscv/c-fld-fsd-fail.l: Likewise.
1688 * testsuite/gas/riscv/c-fld-fsd-fail.s: Likewise.
1689
1690 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
1691
1692 * testsuite/gas/elf/section14.d: Change skip to xfail.
1693 * testsuite/lib/gas-defs.exp (run_dump_test): Add xfail support.
1694
1695 2018-08-31 Alan Modra <amodra@gmail.com>
1696
1697 * config/tc-ppc.h (TC_FORCE_RELOCATION_SUB_LOCAL): Allow ADDR16
1698 HIGH, HIGHA, HIGHER, HIGHERA, HIGHEST, and HIGHESTA relocs.
1699 Group 16-bit relocs.
1700 * config/tc-ppc.c (md_apply_fix): Translate those ADDR16 relocs
1701 to REL16 when pcrel. Sort relocs.
1702
1703 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
1704
1705 * testsuite/gas/elf/elf.exp: Pass -mx86-used-note=no to
1706 assembler for section2 test on ELF/x86 targets.
1707
1708 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
1709
1710 * testsuite/gas/cfi/cfi-label.d: Pass -mx86-used-note=no to
1711 assembler.
1712
1713 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
1714
1715 * testsuite/gas/i386/bss.d: Pass -mx86-used-note=no to assembler.
1716 * testsuite/gas/i386/ilp32/quad.d: Likewise.
1717 * testsuite/gas/i386/ilp32/reloc64.d: Likewise.
1718 * testsuite/gas/i386/ilp32/x86-64-size-1.d: Likewise.
1719 * testsuite/gas/i386/ilp32/x86-64-size-3.d: Likewise.
1720 * testsuite/gas/i386/ilp32/x86-64-size-5.d: Likewise.
1721 * testsuite/gas/i386/ilp32/x86-64-unwind.d: Likewise.
1722 * testsuite/gas/i386/property-1.d: Likewise.
1723 * testsuite/gas/i386/relax.d: Likewise.
1724 * testsuite/gas/i386/reloc64.d: Likewise.
1725 * testsuite/gas/i386/size-1.d: Likewise.
1726 * testsuite/gas/i386/size-3.d: Likewise.
1727 * testsuite/gas/i386/x86-64-property-1.d: Likewise.
1728 * testsuite/gas/i386/x86-64-size-1.d: Likewise.
1729 * testsuite/gas/i386/x86-64-size-3.d: Likewise.
1730 * testsuite/gas/i386/x86-64-size-5.d: Likewise.
1731 * testsuite/gas/i386/x86-64-unwind.d: Likewise.
1732 * testsuite/gas/i386/divide.d: Append "#pass".
1733
1734 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
1735
1736 * NEWS: Mention -mx86-used-note=[no|yes].
1737 * configure.ac: Add --enable-x86-used-note. Define
1738 DEFAULT_X86_USED_NOTE.
1739 * config.in: Regenerated.
1740 * configure: Likewise.
1741 * config/tc-i386.c (x86_isa_1_used): New.
1742 (x86_feature_2_used): Likewise.
1743 (x86_used_note): Likewise.
1744 (_i386_insn): Add has_regmmx, has_regxmm, has_regymm and
1745 has_regzmm.
1746 (build_modrm_byte): Set i.has_regmmx, i.has_regzmm.
1747 i.has_regymm and i.has_regxmm.
1748 (x86_cleanup): New function.
1749 (output_insn): Update x86_isa_1_used and x86_feature_2_used.
1750 (OPTION_X86_USED_NOTE): New.
1751 (md_longopts): Add -mx86-used-note=.
1752 (md_parse_option): Handle OPTION_X86_USED_NOTE.
1753 (md_show_usage): Display -mx86-used-note=.
1754 * config/tc-i386.h (x86_cleanup): New prototype.
1755 (md_cleanup): New.
1756 * doc/c-i386.texi: Document -mx86-used-note=.
1757
1758 2018-08-30 Jose E. Marchesi <jose.marchesi@oracle.com>
1759
1760 * testsuite/gas/sparc/leon.d: Disassemble v8 code also in sparc64
1761 targets.
1762
1763 2018-08-30 Kito Cheng <kito@andestech.com>
1764
1765 * config/tc-riscv.c (riscv_subset_supports): New argument:
1766 xlen_required.
1767 (riscv_multi_subset_supports): New function, able to check more
1768 than one extension.
1769 (riscv_ip): Use riscv_multi_subset_supports instead of
1770 riscv_subset_supports.
1771 (riscv_set_arch): Update call-site for riscv_subset_supports.
1772 (riscv_after_parse_args): Likewise.
1773
1774 2018-08-30 H.J. Lu <hongjiu.lu@intel.com>
1775
1776 * testsuite/gas/elf/section14.d: Skip h8300 targets.
1777
1778 2018-08-30 H.J. Lu <hongjiu.lu@intel.com>
1779
1780 * testsuite/gas/elf/elf.exp: Run section14.
1781 * testsuite/gas/elf/section14.d: New file.
1782 * testsuite/gas/elf/section14.s: Likewise.
1783
1784 2018-08-29 Daniel Cederman <cederman@gaisler.com>
1785
1786 * testsuite/gas/sparc/leon.d: New test.
1787 * testsuite/gas/sparc/leon.s: New test.
1788 * testsuite/gas/sparc/sparc.exp: Execute the pwrpsr test.
1789
1790 2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com>
1791
1792 * config/tc-mips.c (ISA_HAS_ODD_SINGLE_FPR): Exclude CPU_GS264E.
1793 (mips_cpu_info_table): Add gs264e descriptors.
1794 * doc/as.texi (march table): Add gs264e.
1795
1796 2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com>
1797
1798 * config/tc-mips.c (ISA_HAS_ODD_SINGLE_FPR): Exclude CPU_GS464E.
1799 (mips_cpu_info_table): Add gs464e descriptors.
1800 * doc/as.texi (march table): Add gs464e.
1801
1802 2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com>
1803
1804 * config/tc-mips.c (ISA_HAS_ODD_SINGLE_FPR): Rename
1805 CPU_LOONGSON_3A to CPU_GS464.
1806 (mips_cpu_info_table): Add gs464 descriptors, Keep
1807 loongson3a as an alias of gs464 for compatibility.
1808 * doc/as.texi (march table): Rename loongson3a to gs464.
1809 * testsuite/gas/mips/loongson-3a-mmi.d: Set "ISA Extension"
1810 flag to None.
1811
1812 2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com>
1813
1814 * NEWS: Mention Loongson EXTensions R2 (EXT2) support.
1815 * config/tc-mips.c (options): Add OPTION_LOONGSON_EXT2 and
1816 OPTION_NO_LOONGSON_EXT2.
1817 (md_longopts): Likewise.
1818 (mips_ases): Define availability for EXT.
1819 (mips_convert_ase_flags): Map ASE_LOONGSON_EXT2 to
1820 AFL_ASE_LOONGSON_EXT2.
1821 (md_show_usage): Add help for -mloongson-ext2 and
1822 -mno-loongson-ext2.
1823 * doc/as.texi: Document -mloongson-ext2, -mno-loongson-ext2.
1824 * doc/c-mips.texi: Document -mloongson-ext2, -mno-loongson-ext2,
1825 .set loongson-ext2 and .set noloongson-ext2.
1826 * testsuite/gas/mips/loongson-ext2.d: New test.
1827 * testsuite/gas/mips/loongson-ext2.s: New test.
1828 * testsuite/gas/mips/mips.exp: Run loongson-ext2 test.
1829
1830 2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com>
1831
1832 * NEWS: Mention Loongson EXTensions (EXT) support.
1833 * config/tc-mips.c (options): Add OPTION_LOONGSON_EXT and
1834 OPTION_NO_LOONGSON_EXT.
1835 (md_longopts): Likewise.
1836 (mips_ases): Define availability for EXT.
1837 (mips_convert_ase_flags): Map ASE_LOONGSON_EXT to
1838 AFL_ASE_LOONGSON_EXT.
1839 (mips_cpu_info_table): Add ASE_LOONGSON_EXT for loongson3a.
1840 (md_show_usage): Add help for -mloongson-ext and
1841 -mno-loongson-ext.
1842 * doc/as.texi: Document -mloongson-ext, -mno-loongson-ext.
1843 * doc/c-mips.texi: Document -mloongson-ext, -mno-loongson-ext,
1844 .set loongson-ext and .set noloongson-ext.
1845 * testsuite/gas/mips/loongson-mmi.d: Add ASE flag.
1846
1847 2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com>
1848
1849 * NEWS: Mention Loongson Content Address Memory (CAM)
1850 support.
1851 * config/tc-mips.c (options): Add OPTION_LOONGSON_CAM and
1852 OPTION_NO_LOONGSON_CAM.
1853 (md_longopts): Likewise.
1854 (mips_ases): Define availability for CAM.
1855 (mips_convert_ase_flags): Map ASE_LOONGSON_CAM to
1856 AFL_ASE_LOONGSON_CAM.
1857 (mips_cpu_info_table): Add ASE_LOONGSON_CAM for loongson3a.
1858 (md_show_usage): Add help for -mloongson-cam and
1859 -mno-loongson-cam.
1860 * doc/as.texi: Document -mloongson-cam, -mno-loongson-cam.
1861 * doc/c-mips.texi: Document -mloongson-cam, -mno-loongson-cam,
1862 .set loongson-cam and .set noloongson-cam.
1863 * testsuite/gas/mips/loongson-3a-2.d: Move cam test to ...
1864 * testsuite/gas/mips/loongson-cam.d: Here. Add ISA/ASE
1865 flag verification.
1866 * testsuite/gas/mips/loongson-3a-2.s: Move cam test to ...
1867 * testsuite/gas/mips/loongson-cam.s: Here.
1868 * testsuite/gas/mips/loongson-3a-mmi.d: Add ASE flag.
1869 * testsuite/gas/mips/mips.exp: Run loongson-cam test.
1870
1871 2018-08-27 H.J. Lu <hongjiu.lu@intel.com>
1872
1873 * testsuite/gas/i386/i386.exp: Run property-1 and
1874 x86-64-property-1.
1875 * testsuite/gas/i386/property-1.d: New file.
1876 * testsuite/gas/i386/property-1.s: Likewise.
1877 * testsuite/gas/i386/x86-64-property-1.d: Likewise.
1878
1879 2018-08-23 Kito Cheng <kito@andestech.com>
1880
1881 * config/tc-riscv.c (arg_lookup): Checking
1882 length before look up.
1883 * testsuite/gas/riscv/fence-fail.d: New file.
1884 * testsuite/gas/riscv/fence-fail.l: Likewise.
1885 * testsuite/gas/riscv/fence-fail.s: Likewise.
1886 * testsuite/gas/riscv/rouding-fail.d: Likewise.
1887 * testsuite/gas/riscv/rouding-fail.l: Likewise.
1888 * testsuite/gas/riscv/rouding-fail.s: Likewise.
1889
1890 2018-08-23 H.J. Lu <hongjiu.lu@intel.com>
1891
1892 PR ld/23536
1893 * Makefile.am (development.exp): New target.
1894 (EXTRA_DEJAGNU_SITE_CONFIG): New.
1895 (DISTCLEANFILES): Add development.exp.
1896 * Makefile.in: Regenerated.
1897
1898 2018-08-22 Alan Modra <amodra@gmail.com>
1899
1900 * dw2gencfi.c (emit_expr_encoded, output_fde): Warning fixes.
1901
1902 2018-08-21 Arnold Metselaar <arnold.metsel@gmail.com>
1903
1904 * config/tc-z80.c: Correct treatment of undocumented instruction
1905 sli/sll.
1906 (emit_mr): Add argument unportable.
1907 (emit_bit): Adapt call to emit_mr.
1908 (emit_mr_z80): New function.
1909 (emit_mr_unport): New function.
1910 (instab[]): Replace emit_mr with emit_mr_z80 or emit_mr_unportable
1911 as appropriate.
1912
1913 2018-08-21 Andreas Schwab <schwab@suse.de>
1914
1915 * read.c (do_repeat_with_expander): Use memmove instead of strcpy
1916 on unterminated string buffer.
1917
1918 2018-08-21 Alan Modra <amodra@gmail.com>
1919
1920 * config/tc-ppc.c (md_assemble): Delay counting of optional
1921 operands until one is encountered. Allow for the possibility
1922 of optional base regs, ie. PPC_OPERAND_PARENS. Call
1923 ppc_optional_operand_value with extra args.
1924
1925 2018-08-21 Alan Modra <amodra@gmail.com>
1926
1927 * testsuite/gas/s12z/bit-manip-invalid.d: Correct regexps.
1928
1929 2018-08-18 John Darrington <john@darrington.wattle.id.au>
1930
1931 * testsuite/gas/s12z/bit-manip-invalid.d: New file.
1932 * testsuite/gas/s12z/bit-manip-invalid.s: New file.
1933 * testsuite/gas/s12z/s12z.exp: Add them.
1934
1935 2018-08-14 H.J. Lu <hongjiu.lu@intel.com>
1936
1937 * testsuite/gas/i386/evex-no-scale-64.d: Updated.
1938 * testsuite/gas/i386/x86-64-addr32-intel.d: Likewise.
1939 * testsuite/gas/i386/x86-64-addr32.d: Likewise.
1940 * testsuite/gas/i386/ilp32/x86-64-addr32-intel.d: Likewise.
1941 * testsuite/gas/i386/ilp32/x86-64-addr32.d: Likewise.
1942 * testsuite/gas/i386/x86-64-addr32.s: Add %eiz tests.
1943
1944 2018-08-14 Robert Yang <liezhi.yang@windriver.com>
1945
1946 * as.c (main): Improve check for input file matching output file.
1947
1948 2018-08-11 H.J. Lu <hongjiu.lu@intel.com>
1949
1950 * config/tc-i386.c (cpu_arch): Add .cmov and .fxsr.
1951 (cpu_noarch): Add nocmov and nofxsr.
1952 * doc/c-i386.texi: Document cmov and fxsr.
1953
1954 2018-08-10 H.J. Lu <hongjiu.lu@intel.com>
1955
1956 * config/tc-i386.c (md_show_usage): Don't display --32/--64/--x32
1957 if BFD64 is undefined.
1958 * testsuite/gas/i386/i386.exp (gas_bfd64_check): New.
1959 Run code64-inval if gas_bfd64_check fails.
1960
1961 2018-08-10 H.J. Lu <hongjiu.lu@intel.com>
1962
1963 * testsuite/gas/i386/evex-no-scale.s: Removed.
1964 * testsuite/gas/i386/evex-no-scale-32.d: Don't use
1965 evex-no-scale.s.
1966 * testsuite/gas/i386/evex-no-scale-64.d: Likewise.
1967 * testsuite/gas/i386/evex-no-scale-32.s: New file.
1968 * testsuite/gas/i386/evex-no-scale-64.s: Likewise.
1969
1970 2018-08-09 H.J. Lu <hongjiu.lu@intel.com>
1971
1972 * as.c (show_usage): Display default option for --elf-stt-common=.
1973
1974 2018-08-09 H.J. Lu <hongjiu.lu@intel.com>
1975
1976 * config/tc-i386.c (md_show_usage): Display default options.
1977
1978 2018-08-07 James Patrick Conlon <cptjustice@gmail.com>
1979 Nick Clifton <nickc@redhat.com>
1980
1981 PR 23481
1982 * config/tc-pdp11.c (parse_op_noreg): Check for deferred register
1983 addressing before assuming non-deferred addressing.
1984 * testsuite/gas/pdp11/pr23481.s: New test source file.
1985 * testsuite/gas/pdp11/pr23481.d: New test driver file.
1986 * testsuite/gas/pdp11/pdp11.exp: Run the new test.
1987
1988 2018-08-06 Claudiu Zissulescu <claziss@synopsys.com>
1989
1990 * config/tc-arc.c (rf16_only): New static variable.
1991 (autodetect_attributes): Check if we are rf16 compliant.
1992 (arc_set_public_attributes): Fix and emit the warning is required.
1993 * testsuite/gas/arc/attr-rf16.d: New file.
1994 * testsuite/gas/arc/attr-rf16.err: Likewise.
1995 * testsuite/gas/arc/attr-rf16.s: Likewise.
1996
1997 2018-08-06 Claudiu Zissulescu <claziss@synopsys.com>
1998
1999 * config/tc-arc.c (arc_set_public_attributes): Add
2000 Tag_ARC_ATR_version.
2001 (arc_convert_symbolic_attribute): Likewise.
2002 * testsuite/gas/arc/attr-arc600.d: Update test.
2003 * testsuite/gas/arc/attr-arc600_mul32x16.d: Likewise.
2004 * testsuite/gas/arc/attr-arc600_norm.d: Likewise.
2005 * testsuite/gas/arc/attr-arc601.d: Likewise.
2006 * testsuite/gas/arc/attr-arc601_mul32x16.d: Likewise.
2007 * testsuite/gas/arc/attr-arc601_mul64.d: Likewise.
2008 * testsuite/gas/arc/attr-arc601_norm.d: Likewise.
2009 * testsuite/gas/arc/attr-arc700.d: Likewise.
2010 * testsuite/gas/arc/attr-arcem.d: Likewise.
2011 * testsuite/gas/arc/attr-archs.d: Likewise.
2012 * testsuite/gas/arc/attr-autodetect-1.d: Likewise.
2013 * testsuite/gas/arc/attr-cpu-a601.d: Likewise.
2014 * testsuite/gas/arc/attr-cpu-a700.d: Likewise.
2015 * testsuite/gas/arc/attr-cpu-em.d: Likewise.
2016 * testsuite/gas/arc/attr-cpu-hs.d: Likewise.
2017 * testsuite/gas/arc/attr-em.d: Likewise.
2018 * testsuite/gas/arc/attr-em4.d: Likewise.
2019 * testsuite/gas/arc/attr-em4_dmips.d: Likewise.
2020 * testsuite/gas/arc/attr-em4_fpuda.d: Likewise.
2021 * testsuite/gas/arc/attr-em4_fpus.d: Likewise.
2022 * testsuite/gas/arc/attr-hs.d: Likewise.
2023 * testsuite/gas/arc/attr-hs34.d: Likewise.
2024 * testsuite/gas/arc/attr-hs38.d: Likewise.
2025 * testsuite/gas/arc/attr-hs38_linux.d: Likewise.
2026 * testsuite/gas/arc/attr-mul64.d: Likewise.
2027 * testsuite/gas/arc/attr-name.d: Likewise.
2028 * testsuite/gas/arc/attr-nps400.d: Likewise.
2029 * testsuite/gas/arc/attr-override-mcpu.d: Likewise.
2030 * testsuite/gas/arc/attr-quarkse_em.d: Likewise.
2031
2032 2018-08-06 Claudiu Zissulescu <claziss@synopsys.com>
2033
2034 * config/tc-arc.c (find_opcode_match): Accept uppercase aux-regs
2035 names.
2036 * testsuite/gas/arc/ld2.d: Update test.
2037 * testsuite/gas/arc/taux.d: Likewise.
2038 * testsuite/gas/arc/taux.s: Likewise.
2039
2040 2018-08-06 Jan Beulich <jbeulich@suse.com>
2041
2042 * config/tc-i386.c (build_modrm_byte): Use RegIP and RegIZ.
2043 (output_disp): Use RegIP.
2044 (i386_addressing_mode): Drop uses of RegEip and RegEiz.
2045 (i386_index_check): Replace uses of RegEip/RegEiz.
2046 (parse_real_register): Use RegIZ.
2047 * config/tc-i386-intel.c (i386_intel_simplify_register): Use
2048 RegIZ.
2049 * testsuite/gas/i386/x86-64-mpx-inval-2.l: Adjust expectations.
2050
2051 2018-08-05 H.J. Lu <hongjiu.lu@intel.com>
2052
2053 * testsuite/gas/i386/i386.exp: Run evex-no-scale-32 and
2054 evex-no-scale-64 only for ELF targets.
2055 * testsuite/gas/i386/prefix32.s: Append ".p2align 4,0".
2056 * testsuite/gas/i386/prefix64.s: Likewise.
2057 * testsuite/gas/i386/prefix32.l: Updated.
2058 * testsuite/gas/i386/prefix64.l: Likewise.
2059
2060 2018-08-05 Alan Modra <amodra@gmail.com>
2061
2062 * config/tc-ppc.c (ppc_elf_suffix): Support @notoc.
2063 (ppc_force_relocation, ppc_fix_adjustable): Handle REL24_NOTOC.
2064
2065 2018-08-03 Dimitar Dimitrov <dimitar@dinux.eu>
2066
2067 * config/tc-pru.c (pru_regname_to_dw2regnum): Return the starting HW
2068 byte-register number.
2069 (pru_frame_initial_instructions): Use byte-numbering for FP index.
2070 * config/tc-pru.h (DWARF2_DEFAULT_RETURN_COLUMN): Use number from
2071 latest GCC.
2072 (DWARF2_CIE_DATA_ALIGNMENT): Set to -1.
2073
2074 2018-08-03 Jan Beulich <jbeulich@suse.com>
2075
2076 * config/tc-i386.c (Operand_Mem): Define.
2077 (operand_size_match): Use it.
2078 (check_VecOperands): Likewise.
2079 (i386_att_operand): Likewise.
2080 (swap_2_operands): Also swap flags fields.
2081 * config/tc-i386-intel.c (i386_intel_operand): Likewise.
2082
2083 2018-08-01 James Patrick Conlon <cptjustice@gmail.com>
2084 Nick Clifton <nickc@redhat.com>
2085
2086 PR 14480
2087 * config/tc-pdp11.c (parse_op_noreg): Check for and handle auto
2088 increment deferred.
2089 * testsuite/gas/pdp11/pr14480.d: New test driver file.
2090 * testsuite/gas/pdp11/pr14480.s: New test source file file.
2091 * testsuite/gas/pdp11/pdp11.exp: Run the new test.
2092
2093 2018-08-01 Nick Clifton <nickc@redhat.com>
2094
2095 * config/tc-ns32k.c (addr_mode): Replace "Drop through" comment
2096 with "Fall through" so that it will be recognised by gcc's switch
2097 statment error checker.
2098
2099 2018-08-01 Alan Modra <amodra@gmail.com>
2100
2101 * po/POTFILES.in: Regenerate.
2102
2103 2018-07-31 Jan Beulich <jbeulich@suse.com>
2104
2105 * config/tc-i386.c (optimize_encoding): Also handle kandnd,
2106 kandnq, kxord, and kxorq.
2107 * testsuite/gas/i386/optimize-1.s: Add kandn and kxor tests.
2108 * testsuite/gas/i386/optimize-1.d,
2109 testsuite/gas/i386/optimize-4.d,
2110 testsuite/gas/i386/optimize-5.d: Adjust expectations.
2111
2112 2018-07-31 Jan Beulich <jbeulich@suse.com>
2113
2114 * config/tc-i386.c (check_VecOperands): Convert masking handling
2115 to switch(), to deal with DYNAMIC_MASKING.
2116
2117 2018-07-31 Jan Beulich <jbeulich@suse.com>
2118
2119 * testsuite/gas/i386/inval-avx512f.s: Add invalid zeroing-
2120 masking tests.
2121 * testsuite/gas/i386/inval-avx512f.l: Adjust expectations.
2122
2123 2018-07-31 Jan Beulich <jbeulich@suse.com>
2124
2125 * testsuite/gas/i386/sg.s, testsuite/gas/i386/sg.l: New.
2126 * testsuite/gas/i386/i386.exp: Run new test.
2127 * testsuite/gas/i386/avx512f.s, testsuite/gas/i386/avx512f_vl.s,
2128 testsuite/gas/i386/avx512pf.s,
2129 testsuite/gas/i386/x86-64-avx512f.s,
2130 testsuite/gas/i386/x86-64-avx512f_vl.s,
2131 testsuite/gas/i386/x86-64-avx512pf.s: Drop unnessecary operand
2132 size specifiers from scatter/gather insns in Intel mode.
2133
2134 2018-07-31 Jan Beulich <jbeulich@suse.com>
2135
2136 * config/tc-i386.c (is_any_vex_encoding): New.
2137 (process_immext, process_suffix): Use it.
2138 (md_assemble): Likewise. Reject DATA_PREFIX with VEX/XOP/EVEX
2139 insn.
2140 * testsuite/gas/i386/prefix32.s, testsuite/gas/i386/prefix32.l,
2141 testsuite/gas/i386/prefix64.s, testsuite/gas/i386/prefix64.l
2142 New.
2143 * testsuite/gas/i386/i386.exp: Run new tests.
2144
2145 2018-07-31 Jan Beulich <jbeulich@suse.com>
2146
2147 * config/tc-i386.c (parse_real_register): Use cpuavx512f instead
2148 of cpuvrex.
2149
2150 2018-07-30 Jan Beulich <jbeulich@suse.com>
2151
2152 PR gas/23465
2153 * config/tc-i386.c (output_disp): Restrict scaling.
2154 * testsuite/gas/i386/evex-no-scale.s,
2155 testsuite/gas/i386/evex-no-scale-32.d
2156 testsuite/gas/i386/evex-no-scale-64.d: New.
2157 * testsuite/gas/i386/i386.exp: Run new tests.
2158
2159 2018-07-30 Andrew Jenner <andrew@codesourcery.com>
2160
2161 * Makefile.am (TARGET_CPU_CFILES): Add entry for C-SKY.
2162 (TARGET_CPU_HFILES, TARGET_ENV_HFILES): Likewise.
2163 * Makefile.in: Regenerated.
2164 * config/tc-csky.c: New file.
2165 * config/tc-csky.h: New file.
2166 * config/te-csky_abiv1.h: New file.
2167 * config/te-csky_abiv1_linux.h: New file.
2168 * config/te-csky_abiv2.h: New file.
2169 * config/te-csky_abiv2_linux.h: New file.
2170 * configure.tgt: Add C-SKY.
2171 * doc/Makefile.am (CPU_DOCS): Add entry for C-SKY.
2172 * doc/Makefile.in: Regenerated.
2173 * doc/all.texi: Set CSKY feature.
2174 * doc/as.texi (Overview): Add C-SKY options.
2175 (Machine Dependencies): Likewise.
2176 * doc/c-csky.texi: New file.
2177 * testsuite/gas/csky/*: New test cases.
2178 * NEWS: Mention the support.
2179
2180 2018-07-29 John David Anglin <danglin@gcc.gnu.org>
2181
2182 * config/tc-hppa.c: Include "struc-symbol.h".
2183 (pa_build_unwind_subspace): Use call_info->start_symbol->sy_frag
2184 instead of frag_now for local symbol replacement.
2185
2186 2018-07-27 Jim Wilson <jimw@sifive.com>
2187
2188 * configure.tgt (riscv*): Accept as alias for riscv32*.
2189
2190 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
2191
2192 PR gas/23453
2193 * config/tc-i386.c (parse_operands): Check for more than 2
2194 memory references.
2195 * testsuite/gas/i386/inval.s: Add a movsd test with 3 memory
2196 references.
2197 * testsuite/gas/i386/x86-64-inval.s: Likewise.
2198 * testsuite/gas/i386/inval.l: Updated.
2199 * testsuite/gas/i386/x86-64-inval.l: Likewise.
2200
2201 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
2202
2203 * config/tc-i386.c (check_VecOperations): Initialize
2204 broadcast_op.bytes to 0.
2205
2206 2018-07-26 Alex Chadwick <Alex.Chadwick@cl.cam.ac.uk>
2207
2208 * config/tc-ppc.c (md_show_usage): Add -mgekko and -mbroadway.
2209 * doc/as.texi (Target PowerPC options): Add -mgekko and -mbroadway.
2210 * doc/c-ppc.texi (PowerPC-Opts): Likewise.
2211 * testsuite/gas/ppc/broadway.d,
2212 * testsuite/gas/ppc/broadway.s: New test for broadway.
2213 * testsuite/gas/ppc/ppc.exp: Run new test.
2214
2215 2018-07-26 Alan Modra <amodra@gmail.com>
2216
2217 * config/tc-ppc.c (ppc_elf_localentry): Allow .localentry values
2218 of 1 and 7 to directly set value into STO_PPC64_LOCAL_MASK bits.
2219
2220 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
2221
2222 * config/tc-i386.c (Broadcast_Operation): Add bytes.
2223 (build_evex_prefix): Use i.broadcast->bytes.
2224 (match_broadcast_size): New function.
2225 (check_VecOperands): Use the broadcast field to compute the
2226 number of bytes to broadcast directly. Set i.broadcast->bytes.
2227 Use match_broadcast_size.
2228
2229 2018-07-25 Thomas Preud'homme <thomas.preudhomme@linaro.org>
2230
2231 * doc/c-arm.texi (.arch directive): Clarify that name must not include
2232 an extension.
2233 (.cpu directive): Likewise.
2234
2235 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
2236
2237 * config/tc-i386.c (build_vex_prefix): Use unsigned int to
2238 iterate through multi-length vector operands.
2239 (build_evex_prefix): Likewise.
2240
2241 2018-07-24 Jan Beulich <jbeulich@suse.com>
2242
2243 * config/tc-i386.c (check_VecOperands): Handle EVEXLIG when
2244 deriving i.memshift.
2245 * testsuite/gas/i386/cvtsi2sX.s, testsuite/gas/i386/cvtsi2sX.l:
2246 New.
2247 * testsuite/gas/i386/i386.exp: Run new test.
2248 * testsuite/gas/i386/avx512f.d,
2249 testsuite/gas/i386/evex-lig256.d,
2250 testsuite/gas/i386/evex-lig512.d,,
2251 testsuite/gas/i386/x86-64-avx512f.d,
2252 testsuite/gas/i386/x86-64-evex-lig256.d,
2253 testsuite/gas/i386/x86-64-evex-lig512.d: Adjust expectations.
2254
2255 2018-07-23 H.J. Lu <hongjiu.lu@intel.com>
2256
2257 * testsuite/gas/i386/inval-avx512f.s: Add a test for missing
2258 broadcast.
2259 * testsuite/gas/i386/x86-64-inval-avx512f.s: Likewise.
2260 * testsuite/gas/i386/inval-avx512f.l: Updated.
2261 * testsuite/gas/i386/x86-64-inval-avx512f.l: Likewise.
2262
2263 2018-07-23 H.J. Lu <hongjiu.lu@intel.com>
2264
2265 * config/tc-i386.c (i386_error): Remove
2266 broadcast_not_on_src_operand.
2267 (match_template): Likewse.
2268
2269 2018-07-23 Claudiu Zissulescu <claziss@synopsys.com>
2270
2271 * testsuite/gas/arc/st.d: Fix test.
2272
2273 2018-07-23 Claudiu Zissulescu <claziss@synopsys.com>
2274
2275 * config/tc-arc.c (tokenize_extinsn): Convert to lower case the
2276 name of extension instructions.
2277 * testsuite/gas/arc/textinsn_case.d: New file.
2278 * testsuite/gas/arc/textinsn_case.s: Likewise.
2279
2280 2018-07-22 H.J. Lu <hongjiu.lu@intel.com>
2281
2282 * config/tc-i386.c (build_vex_prefix): Determine vector
2283 length from the last multi-length vector operand.
2284 (build_evex_prefix): Likewise.
2285
2286 2018-07-20 H.J. Lu <hongjiu.lu@intel.com>
2287
2288 * config/tc-i386.c (match_simd_size): Break long line.
2289 (match_mem_size): Likewise.
2290
2291 2018-07-20 H.J. Lu <hongjiu.lu@intel.com>
2292
2293 * config/tc-i386.c (match_reg_size): Renamed to ...
2294 (match_operand_size): This. Update comments.
2295 (match_simd_size): Update comments. Replace match_reg_size
2296 with match_operand_size.
2297 (match_mem_size): Likewise.
2298 (operand_size_match): Replace match_reg_size with
2299 match_operand_size.
2300
2301 2018-07-20 Chenghua Xu <paul.hua.gm@gmail.com>
2302 Maciej W. Rozycki <macro@mips.com>
2303
2304 * NEWS: Mention MultiMedia extensions Instructions (MMI)
2305 support.
2306 * config/tc-mips.c (options): Add OPTION_LOONGSON_MMI and
2307 OPTION_NO_LOONGSON_MMI.
2308 (md_longopts): Likewise.
2309 (mips_ases): Define availability for MMI.
2310 (mips_convert_ase_flags): Map ASE_LOONGSON_MMI to
2311 AFL_ASE_LOONGSON_MMI.
2312 (mips_cpu_info_table): Add ASE_LOONGSON_MMI for loongson2f/3a.
2313 (md_show_usage): Add help for -mloongson-mmi and
2314 -mno-loongson-mmi.
2315 * doc/as.texi: Document -mloongson-mmi, -mno-loongson-mmi.
2316 * doc/c-mips.texi: Document -mloongson-mmi, -mno-loongson-mmi,
2317 .set loongson-mmi and .set noloongson-mmi.
2318 * testsuite/gas/mips/loongson-2f.d: Move mmi test to ...
2319 * testsuite/gas/mips/loongson-2f-mmi.d: Here. Add ISA/ASE
2320 flag verification.
2321 * testsuite/gas/mips/loongson-2f.s: Move mmi test to ...
2322 * testsuite/gas/mips/loongson-2f-mmi.s: Here.
2323 * testsuite/gas/mips/loongson-3a.d: Move mmi test to ...
2324 * testsuite/gas/mips/loongson-3a-mmi.d: Here. Add ISA/ASE
2325 flag verification.
2326 * testsuite/gas/mips/loongson-3a.s: Move mmi test to ...
2327 * testsuite/gas/mips/loongson-3a-mmi.s: Here.
2328 * testsuite/gas/mips/mips.exp: Run loongson-2f-mmi and
2329 loongson-3a-mmi tests.
2330
2331 2018-07-20 Jose E. Marchesi <jose.marchesi@oracle.com>
2332 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2333
2334 * testsuite/gas/sparc/sparc.exp (set_tests_arch): New proc.
2335 Prefix v9c, v9d, v9v, v9m, v9m8 tests with corresponding
2336 set_tests_arch.
2337
2338 2018-07-19 Jan Beulich <jbeulich@suse.com>
2339
2340 * config/tc-i386.c (build_evex_prefix): Derive vector length
2341 from broadcast specification if necessary.
2342 (match_template): Also exclude broadcast when checking whether
2343 to reject 32-bit operands on pre-386.
2344
2345 2018-07-19 Jan Beulich <jbeulich@suse.com>
2346
2347 * testsuite/gas/i386/noavx512-2.l: Adjust expectations.
2348
2349 2018-07-19 Jan Beulich <jbeulich@suse.com>
2350
2351 * config/tc-i386.c (is_evex_encoding): Also check disp8memshift.
2352 (optimize_encoding): Also cover templates without cpuavx512vl
2353 allowing for zmmword and having a ymmword actual.
2354 (check_VecOperands): Handle DISP8_SHIFT_VL.
2355 * testsuite/gas/i386/noavx512-2.l: Adjust expectations.
2356
2357 2018-07-18 Maciej W. Rozycki <macro@mips.com>
2358
2359 * testsuite/gas/mips/loongson-2e.d: Correct whitespace issues.
2360 * testsuite/gas/mips/loongson-2f.d: Likewise.
2361 * testsuite/gas/mips/loongson-2f-2.d: Likewise.
2362 * testsuite/gas/mips/loongson-2f-3.d: Likewise.
2363 * testsuite/gas/mips/loongson-3a.d: Likewise.
2364 * testsuite/gas/mips/loongson-3a-2.d: Likewise.
2365 * testsuite/gas/mips/loongson-2e.s: Likewise.
2366 * testsuite/gas/mips/loongson-2f.s: Likewise.
2367 * testsuite/gas/mips/loongson-2f-3.s: Likewise.
2368 * testsuite/gas/mips/loongson-3a.s: Likewise.
2369 * testsuite/gas/mips/loongson-3a-2.s: Likewise.
2370
2371 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
2372
2373 PR gas/23418
2374 * testsuite/gas/i386/xmmword.s: Add tests for vcvtps2qq,
2375 vcvtps2uqq, vcvttps2qq and vcvttps2uqq.
2376 * testsuite/gas/i386/xmmword.l: Updated.
2377
2378 2018-07-16 Jan Beulich <jbeulich@suse.com>
2379
2380 * config/tc-i386.c (match_reg_size): Split second parameter
2381 into two.
2382 (match_simd_size): Likewise.
2383 (match_mem_size): Likewise.
2384 (MATCH_STRAIGHT, MATCH_REVERSE): Define.
2385 (operand_size_match): Change return type. New local variable
2386 "match". Always check for reverse match when opcode_modifier.d
2387 is set.
2388 (match_template) New local variable "size_match". Skip further
2389 matching if operand_size_match() did not report a respective
2390 match.
2391 * testsuite/gas/i386/inval.s: Add control register reads/writes.
2392 * testsuite/gas/i386/inval.l: Adjust expectations.
2393
2394 2018-07-13 Nick Clifton <nickc@redhat.com>
2395
2396 * testsuite/gas/elf/missing-build-notes.s: New test. Checks that
2397 relocs are correctly generated for missing build notes.
2398 * testsuite/gas/elf/missing-build-notes.d: New file. Expected
2399 output from objdump.
2400 * testsuite/gas/elf/elf.exp: Run the new test.
2401
2402 2018-07-13 Nick Clifton <nickc@redhat.com>
2403
2404 * config/tc-arm.c (do_neon_mov): When converting an integer
2405 immediate into a floating point value, check that the conversion
2406 is valid. Also warn if the immediate is valid as both a floating
2407 point value and a bit pattern.
2408 * testsuite/gas/arm/vfp-mov-enc.s: Add instructions that use
2409 floating point bit patterns.
2410 * testsuite/gas/arm/vfp-mov-enc.d: Add regexps for the disassembly
2411 of the new insns.
2412
2413 2018-07-12 Sudakshina Das <sudi.das@arm.com>
2414
2415 * testsuite/gas/aarch64/system.s: Add test for ssbb
2416 and pssbb.
2417 * testsuite/gas/aarch64/system.d: Update accordingly
2418 and remove explicit addresses.
2419
2420 2018-07-11 Tamar Christina <tamar.christina@arm.com>
2421
2422 PR binutils/23192
2423 * testsuite/gas/aarch64/illegal-by-element.s: New.
2424 * testsuite/gas/aarch64/illegal-by-element.d: New.
2425 * testsuite/gas/aarch64/illegal-by-element.l: New.
2426
2427 2018-07-11 Sudakshina Das <sudi.das@arm.com>
2428
2429 * config/tc-arm.c (insns): Add new ssbb and pssbb instructions.
2430 * testsuite/gas/arm/csdb.s: Add new tests for ssbb and pssbb.
2431 * testsuite/gas/arm/csdb.d: Likewise
2432 * testsuite/gas/arm/thumb2_it_bad.s: Likewise.
2433 * testsuite/gas/arm/thumb2_it_bad.l: Likewise.
2434 * testsuite/gas/arm/barrier.d: Update with ssbb.
2435 * testsuite/gas/arm/barrier-thumb.d: Likewise.
2436
2437 2018-07-11 Jan Beulich <jbeulich@suse.com>
2438
2439 * config/tc-i386.c (inoutportreg, reg16_inoutportreg): Delete.
2440 (i386_att_operand): Replace uses of reg16_inoutportreg and
2441 inoutportreg.
2442
2443 2018-07-11 Jan Beulich <jbeulich@suse.com>
2444
2445 * config/tc-i386.c (output_insn): Remove check_prefix label and
2446 fold remaining expression.
2447
2448 2018-07-11 Jan Beulich <jbeulich@suse.com>
2449
2450 * testsuite/gas/i386/cet.s, testsuite/gas/i386/x86-64-cet.s:
2451 Add Intel cases with operand size specifiers.
2452 * testsuite/gas/i386/cet-intel.d, testsuite/gas/i386/cet.d,
2453 testsuite/gas/i386/x86-64-cet-intel.d,
2454 testsuite/gas/i386/x86-64-cet.d: Adjust expectations.
2455
2456 2018-07-11 Jan Beulich <jbeulich@suse.com>
2457
2458 * config/tc-i386.c (md_assemble): Also replace an already
2459 present REP prefix.
2460 * testsuite/gas/i386/mpx-add-bnd-prefix.s,
2461 testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.s: Test RET with
2462 all REP flavors.
2463 * testsuite/gas/i386/mpx-add-bnd-prefix.d,
2464 testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.d: Adjust
2465 expectations.
2466 * testsuite/gas/i386/mpx-add-bnd-prefix.e,
2467 testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.e: New.
2468
2469 2018-07-09 Jeff Law <law@redhat.com>
2470
2471 * testsuite/nds32/ji-jr.d: Fix name tag.
2472
2473 2018-07-06 Tamar Christina <tamar.christina@arm.com>
2474
2475 PR binutils/23369
2476 * testsuite/gas/aarch64/msr.d (csselr_el1,
2477 vsesr_el2, osdtrrx_el1, osdtrtx_el1, pmsidr_el1): New.
2478 * testsuite/gas/aarch64/msr.s: Likewise.
2479
2480 2018-07-06 Nick Clifton <nickc@redhat.com>
2481
2482 * write.c (maybe_generate_build_notes): Bias reloc offsets by the
2483 number of notes already generated.
2484
2485 2018-07-05 Nick Clifton <nickc@redhat.com>
2486
2487 * po/ru.po: Updated Russian translation.
2488
2489 2018-07-02 Maciej W. Rozycki <macro@mips.com>
2490
2491 * config/tc-mips.c (macro_build) <'i', 'j'>: Also accept
2492 BFD_RELOC_16, BFD_RELOC_MIPS_GOT16, BFD_RELOC_MIPS_CALL16,
2493 BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MIPS_GOT_LO16,
2494 BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MIPS_CALL_LO16,
2495 BFD_RELOC_MIPS_SUB, BFD_RELOC_MIPS_GOT_PAGE,
2496 BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MIPS_GOT_DISP,
2497 BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MIPS_TLS_LDM,
2498 BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MIPS_TLS_DTPREL_LO16,
2499 BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MIPS_TLS_TPREL_HI16 and
2500 BFD_RELOC_MIPS_TLS_TPREL_LO16 relocations if in the microMIPS
2501 mode.
2502 * testsuite/gas/mips/elf-rel28-lldscd-n32.d: New test.
2503 * testsuite/gas/mips/elf-rel28-lldscd-micromips-n32.d: New test.
2504 * testsuite/gas/mips/elf-rel28-lldscd-n64.d: New test.
2505 * testsuite/gas/mips/elf-rel28-lldscd-micromips-n64.d: New test.
2506 * testsuite/gas/mips/elf-rel28.s: Add instruction selection.
2507 * testsuite/gas/mips/mips.exp: Run the new tests.
2508
2509 2018-07-02 Maciej W. Rozycki <macro@mips.com>
2510
2511 * testsuite/gas/mips/elf-rel28-micromips-n32.d: New test.
2512 * testsuite/gas/mips/elf-rel28-micromips-n64.d: New test.
2513 * testsuite/gas/mips/mips.exp: Run the new tests.
2514
2515 2018-07-02 Thomas Preud'homme <thomas.preudhomme@arm.com>
2516
2517 * config/tc-arm.c (cpu_arch_ver): Use symbolic TAG_CPU_ARCH macros
2518 rather than hardcode their values.
2519
2520 2018-07-02 Thomas Preud'homme <thomas.preudhomme@arm.com>
2521
2522 * NEWS: Use command-line consistently when used in a compount word.
2523 * doc/as.texi: Likewise.
2524 * doc/c-aarch64.texi: Likewise.
2525 * doc/c-alpha.texi: Likewise.
2526 * doc/c-arc.texi: Likewise.
2527 * doc/c-arm.texi: Likewise.
2528 * doc/c-avr.texi: Likewise.
2529 * doc/c-bfin.texi: Likewise.
2530 * doc/c-cris.texi: Likewise.
2531 * doc/c-epiphany.texi: Likewise.
2532 * doc/c-i386.texi: Likewise.
2533 * doc/c-ia64.texi: Likewise.
2534 * doc/c-lm32.texi: Likewise.
2535 * doc/c-m32r.texi: Likewise.
2536 * doc/c-m68k.texi: Likewise.
2537 * doc/c-mips.texi: Likewise.
2538 * doc/c-mmix.texi: Likewise.
2539 * doc/c-msp430.texi: Likewise.
2540 * doc/c-mt.texi: Likewise.
2541 * doc/c-nios2.texi: Likewise.
2542 * doc/c-ppc.texi: Likewise.
2543 * doc/c-pru.texi: Likewise.
2544 * doc/c-rl78.texi: Likewise.
2545 * doc/c-rx.texi: Likewise.
2546 * doc/c-tic6x.texi: Likewise.
2547 * doc/c-v850.texi: Likewise.
2548 * doc/c-vax.texi: Likewise.
2549 * doc/c-visium.texi: Likewise.
2550 * doc/c-xstormy16.texi: Likewise.
2551 * doc/c-xtensa.texi: Likewise.
2552 * doc/c-z80.texi: Likewise.
2553 * doc/c-z8k.texi: Likewise.
2554 * doc/internals.texi: Likewise.
2555
2556 2018-06-29 Jim Wilson <jimw@sifive.com>
2557
2558 * config/tc-riscv.c (md_begin): Call hash_reg_name for "fp".
2559
2560 2018-06-29 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
2561
2562 * config/tc-aarch64.c (warn_unpredictable_ldst): Add unpredictable
2563 cases for ldxp, stlxrb, stlxrh, stlxr.
2564 * testsuite/gas/aarch64/diagnostic.s: New tests.
2565 * testsuite/gas/aarch64/diagnostic.l: Adjust.
2566
2567 2018-06-29 Tamar Christina <tamar.christina@arm.com>
2568
2569 PR binutils/23192
2570 * config/tc-aarch64.c (process_omitted_operand, parse_operands): Add
2571 AARCH64_OPND_Em16
2572 * testsuite/gas/aarch64/advsimd-armv8_3.s: Expand tests to cover upper
2573 16 registers.
2574 * testsuite/gas/aarch64/advsimd-armv8_3.d: Likewise.
2575 * testsuite/gas/aarch64/advsimd-compnum.s: Likewise.
2576 * testsuite/gas/aarch64/advsimd-compnum.d: Likewise.
2577 * testsuite/gas/aarch64/sve.d: Likewise.
2578
2579 2018-06-27 Alan Modra <amodra@gmail.com>
2580
2581 * configure.ac: Specify extra_objects with leading "config/"
2582 for xtensa-relax.o and te-vms.o. Use case statements to unique
2583 extra_objects. Formatting.
2584 * configure: Regenerate.
2585
2586 2018-06-26 Nick Clifton <nickc@redhat.com>
2587
2588 * po/uk.po: Updated Ukranian translation.
2589
2590 2018-06-26 Nick Clifton <nickc@redhat.com>
2591
2592 PR 23335
2593 * config/tc-msp430.c (check_reg): Only accept register name
2594 strings that do not end in an alphanumeric character.
2595 * testsuite/gas/msp430/msp430x.d: Update expected disassembly.
2596
2597 2018-06-24 Nick Clifton <nickc@redhat.com>
2598
2599 * configure: Regenerate.
2600 * po/gas.pot: Regenerate.
2601
2602 2018-06-24 Nick Clifton <nickc@redhat.com>
2603
2604 2.31 branch created.
2605 * NEWS: Add marker for 2.31.
2606
2607 2018-06-22 Tamar Christina <tamar.christina@arm.com>
2608
2609 * testsuite/gas/aarch64/addsub.s: Add negs to zero reg test.
2610 * testsuite/gas/aarch64/addsub.d: Likewise.
2611
2612 2018-06-21 Alan Modra <amodra@gmail.com>
2613
2614 * doc/Makefile.am (AUTOMAKE_OPTIONS): Add "foreign".
2615 * doc/Makefile.in: Regenerate.
2616
2617 2018-06-20 Nick Clifton <nickc@redhat.com>
2618
2619 PR 21458
2620 * tc-arm.c (do_adr): Only set the bottom bit of an imported thumb
2621 function symbol address if -mthumb-interwork is active.
2622 (do_adrl): Likewise.
2623 * doc/c-arm.texi: Update descriptions of the -mthumb-interwork
2624 option and the ADR and ADRL pseudo-ops.
2625 * NEWS: Mention the new behaviour of the ADR and ADRL pseudo-ops.
2626 * testsuite/gas/arm/pr21458.d: Add -mthumb-interwork option to
2627 assembler command line.
2628 * testsuite/gas/arm/adr.d: Likewise.
2629 * testsuite/gas/arm/adrl.d: Likewise.
2630
2631 2018-06-20 Sebastian Huber <sebastian.huber@embedded-brains.de>
2632
2633 PR gas/23305
2634 * config/tc-riscv.c (riscv_ip): Add format specifier 'B' for
2635 constants and symbols.
2636 * testsuite/gas/riscv/lla32.d: New file.
2637 * testsuite/gas/riscv/lla32.s: Likewise.
2638 * testsuite/gas/riscv/lla64-fail.d: Likewise.
2639 * testsuite/gas/riscv/lla64-fail.l: Likewise.
2640 * testsuite/gas/riscv/lla64-fail.s: Likewise.
2641 * testsuite/gas/riscv/lla64.d: Likewise.
2642 * testsuite/gas/riscv/lla64.s: Likewise.
2643
2644 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
2645
2646 * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11, add subdir-objects.
2647 (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O): Add config/ prefix.
2648 * configure.ac (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O, emfiles,
2649 extra_objects): Add config/ prefix.
2650 * doc/as.texinfo: Rename to...
2651 * doc/as.texi: ... this.
2652 * doc/Makefile.am: Rename as.texinfo to as.texi throughout.
2653 Remove DISTCLEANFILES hack.
2654 (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add no-texinfo.tex and
2655 info-in-builddir.
2656 * Makefile.in: Re-generate.
2657 * aclocal.m4: Re-generate.
2658 * config.in: Re-generate.
2659 * configure: Re-generate.
2660 * doc/Makefile.in: Re-generate.
2661
2662 2018-06-14 Faraz Shahbazker <Faraz.Shahbazker@mips.com>
2663
2664 * NEWS: Mention MIPS Global INValidate ASE support.
2665 * config/tc-mips.c (options): Add OPTION_GINV and OPTION_NO_GINV.
2666 (md_longopts): Likewise.
2667 (mips_ases): Define availability for GINV.
2668 (mips_convert_ase_flags): Map ASE_GINV to AFL_ASE_GINV.
2669 (md_show_usage): Add help for -mginv and -mno-ginv.
2670 * doc/as.texinfo: Document -mginv, -mno-ginv.
2671 * doc/c-mips.texi: Document -mginv, -mno-ginv, .set ginv and
2672 .set noginv.
2673 * testsuite/gas/mips/ase-errors-1.s: Add error checks for GINV
2674 ASE.
2675 * testsuite/gas/mips/ase-errors-2.s: Likewise.
2676 * testsuite/gas/mips/ase-errors-1.l: Likewise.
2677 * testsuite/gas/mips/ase-errors-2.l: Likewise.
2678 * testsuite/gas/mips/ginv.d: New test.
2679 * testsuite/gas/mips/ginv-err.d: New test.
2680 * testsuite/gas/mips/ginv-err.l: New test stderr output.
2681 * testsuite/gas/mips/ginv.s: New test source.
2682 * testsuite/gas/mips/ginv-err.s: New test source.
2683 * testsuite/gas/mips/mips.exp: Run the new tests.
2684
2685 2018-06-13 Scott Egerton <scott.egerton@imgtec.com>
2686 Faraz Shahbazker <Faraz.Shahbazker@mips.com>
2687 Maciej W. Rozycki <macro@mips.com>
2688
2689 * NEWS: Mention CRC ASE support.
2690 * config/tc-mips.c (options): Add OPTION_CRC and OPTION_NO_CRC.
2691 (md_longopts): Likewise.
2692 (md_show_usage): Add help for -mcrc and -mno-crc.
2693 (mips_ases): Define availability for CRC and CRC64.
2694 (mips_convert_ase_flags): Map ASE_CRC to AFL_ASE_CRC.
2695 * doc/as.texinfo: Document -mcrc, -mno-crc.
2696 * doc/c-mips.texi: Document -mcrc, -mno-crc, .set crc and
2697 .set no-crc.
2698 * testsuite/gas/mips/ase-errors-1.l: Add error checks for CRC
2699 ASE.
2700 * testsuite/gas/mips/ase-errors-2.l: Likewise.
2701 * testsuite/gas/mips/ase-errors-1.s: Likewise.
2702 * testsuite/gas/mips/ase-errors-2.s: Likewise.
2703 * testsuite/gas/mips/crc.d: New test.
2704 * testsuite/gas/mips/crc64.d: New test.
2705 * testsuite/gas/mips/crc-err.d: New test.
2706 * testsuite/gas/mips/crc64-err.d: New test.
2707 * testsuite/gas/mips/crc-err.l: New test stderr output.
2708 * testsuite/gas/mips/crc64-err.l: New test stderr output.
2709 * testsuite/gas/mips/crc.s: New test source.
2710 * testsuite/gas/mips/crc64.s: New test source.
2711 * testsuite/gas/mips/crc-err.s: New test source.
2712 * testsuite/gas/mips/crc64-err.s: New test source.
2713 * testsuite/gas/mips/mips.exp: Run the new tests.
2714
2715 2018-06-11 Maciej W. Rozycki <macro@mips.com>
2716
2717 * config/tc-mips.c (md_show_usage): Correct help text for `-O0'
2718 and `-O'. Mention `-O1'. Add `-O2' and its description.
2719
2720 2018-06-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2721
2722 * config/tc-arm.c (arm_cpus): Add Cortex-A76 entry.
2723 * doc/c-arm.texi (-mcpu): Document cortex-a76.
2724
2725 2018-06-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2726
2727 * config/tc-aarch64.c (aarch64_cpus): Add Cortex-A76 entry.
2728 * doc/c-aarch64.texi (-mcpu): Document cortex-a76.
2729
2730 2018-06-08 Egeyar Bagcioglu <egeyar.bagcioglu@oracle.com>
2731
2732 PR 20319
2733 * testsuite/gas/aarch64/illegal-3.s: Test if unallocated FMOV encodings
2734 are detected as undefined.
2735 * testsuite/gas/aarch64/illegal-3.d: Likewise.
2736 * testsuite/gas/aarch64/illegal.s: Test if FMOV instructions that are
2737 changing the size from 32 bits to 64 bits and vice versa trigger an
2738 error.
2739 * testsuite/gas/aarch64/illegal.l: Likewise.
2740
2741 2018-06-08 Tamar Christina <tamar.christina@arm.com>
2742
2743 PR binutils/21446
2744 * tc-aarch64.c (record_operand_error, record_operand_error_with_data):
2745 Initialize non_fatal.
2746
2747 2018-06-06 Sameera Deshpande <sameera.deshpande@linaro.org>
2748
2749 * config/tc-aarch64.c (aarch64_cpus): Add support of ARMv8.4 in
2750 saphira.
2751
2752 2018-06-05 Alan Modra <amodra@gmail.com>
2753
2754 * Makefile.in: Regenerate.
2755
2756 2018-06-04 Volodymyr Arbatov <arbatov@cadence.com>
2757
2758 * config/tc-xtensa.c (elf32xtensa_separate_props): New
2759 declaration.
2760 (option_separate_props, option_no_separate_props): New
2761 enumeration constants.
2762 (md_longopts): Add separate-prop-tables option.
2763 (md_parse_option): Add cases for option_separate_props and
2764 option_no_separate_props.
2765 (md_show_usage): Add help for [no-]separate-prop-tables options.
2766
2767 2018-06-01 H.J. Lu <hongjiu.lu@intel.com>
2768
2769 * configure: Regenerated.
2770
2771 2018-06-01 Alexandre Oliva <aoliva@redhat.com>
2772
2773 * dwarf2dbg.c (dwarf2_consume_line_info): Drop view.
2774
2775 2018-06-01 Jan Beulich <jbeulich@suse.com>
2776
2777 * testsuite/gas/i386/ilp32/x86-64-opcode.d,
2778 testsuite/gas/i386/x86-64-opcode.d: Adjust expectations.
2779
2780 2018-06-01 Jan Beulich <jbeulich@suse.com>
2781
2782 * config/tc-i386.c (add_prefix): Check REX bits individually.
2783 * testsuite/gas/i386/rex.s: Add tests for overriding individual
2784 REX bits, including when others are already set.
2785 * testsuite/gas/i386/ilp32/rex.d, testsuite/gas/i386/rex.d:
2786 Adjust expectations.
2787
2788 2018-06-01 Jan Beulich <jbeulich@suse.com>
2789
2790 * config/tc-i386.c (control): Delete.
2791 (parse_real_register): Simply check "control" bit. Re-wrap.
2792
2793 2018-06-01 Jan Beulich <jbeulich@suse.com>
2794
2795 * config/tc-i386.c (build_modrm_byte): Drop REX_B from condition
2796 checking for the need of emitting LOCK. Check "control" bit just
2797 once.
2798
2799 2018-06-01 Jan Beulich <jbeulich@suse.com>
2800
2801 * testsuite/gas/i386/invpcid.s,
2802 testsuite/gas/i386/x86-64-invpcid.s: Add test with explicit
2803 "oword ptr".
2804 * testsuite/gas/i386/invpcid.d,
2805 testsuite/gas/i386/invpcid-intel.d,
2806 testsuite/gas/i386/x86-64-invpcid.d,
2807 testsuite/gas/i386/x86-64-invpcid-intel.d: Adjust expectations.
2808
2809 2018-05-30 Amit Pawar <amit.pawar@amd.com>
2810
2811 * config/tc-i386.c (cpu_flag_init): Add CPU_ZNVER2_FLAGS.
2812 * doc/c-i386.texi : Document znver2.
2813 * gas/testsuite/gas/i386/arch-13.s: Updated for znver2.
2814 * gas/testsuite/gas/i386/arch-13.d: Updated.
2815 * gas/testsuite/gas/i386/arch-13-znver1.d: Updated.
2816 * gas/testsuite/gas/i386/arch-13-znver2.d: New file.
2817 * gas/testsuite/gas/i386/x86-64-arch-3.s: Updated for znver2.
2818 * gas/testsuite/gas/i386/x86-64-arch-3.d: Updated.
2819 * gas/testsuite/gas/i386/x86-64-arch-3-znver1.d: Updated.
2820 * gas/testsuite/gas/i386/x86-64-arch-3-znver2.d: New file.
2821 * gas/testsuite/gas/i386/i386.exp: Updated for new test.
2822
2823 2018-05-25 Alan Modra <amodra@gmail.com>
2824
2825 * po/POTFILES.in: Regenerate.
2826
2827 2018-05-24 Jim Wilson <jimw@sifive.com>
2828
2829 PR gas/23219
2830 * config/tc-riscv.c (riscv_frag_align_code): Move frag_more call after
2831 !riscv_opts.relax check.
2832 (riscv_handle_align): Rewrite !riscv_opts.relax support.
2833 * config/tc-riscv (MAX_MEM_FOR_RS_ALIGN_CODE): Update.
2834 * testsuite/gas/riscv/no-relax-align.d: New
2835 * testsuite/gas/riscv/no-relax-align.s: New
2836 * testsuite/gas/riscv/no-relax-align-2.d: New
2837 * testsuite/gas/riscv/no-relax-align-2.s: New
2838
2839 2018-05-21 Peter Bergner <bergner@vnet.ibm.com.com>
2840
2841 * config/tc-ppc.c (md_assemble): Delete handling of fake operands.
2842 * testsuite/gas/ppc/common.s (crmove, cror, or., or, nor., nor): Add
2843 test of extended mnemonics.
2844 * testsuite/gas/ppc/common.d: Likewise. Don't match instruction offset.
2845 * testsuite/gas/ppc/spe.s (evor, evnor): Add test of extended mnemonics.
2846 * testsuite/gas/ppc/spe.d: Likewise. Don't match instruction offset.
2847
2848 2018-05-18 Kito Cheng <kito.cheng@gmail.com>
2849 Monk Chiang <sh.chiang04@gmail.com>
2850 Jim Wilson <jimw@sifive.com>
2851
2852 * config/tc-riscv.c (rve_abi): New.
2853 (riscv_set_options): Add rve field. Initialize it.
2854 (riscv_set_rve) New function.
2855 (riscv_set_arch): Support 'e' ISA subset.
2856 (reg_lookup_internal): If rve, check register is available.
2857 (riscv_set_abi): New parameter rve.
2858 (md_parse_option): Pass new argument to riscv_set_abi.
2859 (riscv_after_parse_args): Call riscv_set_rve. If rve_abi, set
2860 EF_RISCV_RVE.
2861 * doc/c-riscv.texi (-mabi): Document new ilp32e argument.
2862
2863 2018-05-18 John Darrington <john@darrington.wattle.id.au>
2864
2865 * Makefile.am: Add support for s12z target.
2866 * Makefile.in: Regenerate.
2867 * NEWS: Mention the new support.
2868 * config/tc-s12z.c: New file.
2869 * config/tc-s12z.h: New file.
2870 * configure.tgt: Add s12z support.
2871 * doc/Makefile.am: Likewise.
2872 * doc/Makefile.in: Regenerate.
2873 * doc/all.texi: Add s12z documentation.
2874 * doc/as.textinfo: Likewise.
2875 * doc/c-s12z.texi: New file.
2876 * testsuite/gas/s12z: New directory.
2877 * testsuite/gas/s12z/abs.d: New file.
2878 * testsuite/gas/s12z/abs.s: New file.
2879 * testsuite/gas/s12z/adc-imm.d: New file.
2880 * testsuite/gas/s12z/adc-imm.s: New file.
2881 * testsuite/gas/s12z/adc-opr.d: New file.
2882 * testsuite/gas/s12z/adc-opr.s: New file.
2883 * testsuite/gas/s12z/add-imm.d: New file.
2884 * testsuite/gas/s12z/add-imm.s: New file.
2885 * testsuite/gas/s12z/add-opr.d: New file.
2886 * testsuite/gas/s12z/add-opr.s: New file.
2887 * testsuite/gas/s12z/and-imm.d: New file.
2888 * testsuite/gas/s12z/and-imm.s: New file.
2889 * testsuite/gas/s12z/and-opr.d: New file.
2890 * testsuite/gas/s12z/and-opr.s: New file.
2891 * testsuite/gas/s12z/and-or-cc.d: New file.
2892 * testsuite/gas/s12z/and-or-cc.s: New file.
2893 * testsuite/gas/s12z/bfext-special.d: New file.
2894 * testsuite/gas/s12z/bfext-special.s: New file.
2895 * testsuite/gas/s12z/bfext.d: New file.
2896 * testsuite/gas/s12z/bfext.s: New file.
2897 * testsuite/gas/s12z/bit-manip.d: New file.
2898 * testsuite/gas/s12z/bit-manip.s: New file.
2899 * testsuite/gas/s12z/bit.d: New file.
2900 * testsuite/gas/s12z/bit.s: New file.
2901 * testsuite/gas/s12z/bra-expression-defined.d: New file.
2902 * testsuite/gas/s12z/bra-expression-defined.s: New file.
2903 * testsuite/gas/s12z/bra-expression-undef.d: New file.
2904 * testsuite/gas/s12z/bra-expression-undef.s: New file.
2905 * testsuite/gas/s12z/bra.d: New file.
2906 * testsuite/gas/s12z/bra.s: New file.
2907 * testsuite/gas/s12z/brclr-symbols.d: New file.
2908 * testsuite/gas/s12z/brclr-symbols.s: New file.
2909 * testsuite/gas/s12z/brset-clr-opr-imm-rel.d: New file.
2910 * testsuite/gas/s12z/brset-clr-opr-imm-rel.s: New file.
2911 * testsuite/gas/s12z/brset-clr-opr-reg-rel.d: New file.
2912 * testsuite/gas/s12z/brset-clr-opr-reg-rel.s: New file.
2913 * testsuite/gas/s12z/brset-clr-reg-imm-rel.d: New file.
2914 * testsuite/gas/s12z/brset-clr-reg-imm-rel.s: New file.
2915 * testsuite/gas/s12z/brset-clr-reg-reg-rel.d: New file.
2916 * testsuite/gas/s12z/brset-clr-reg-reg-rel.s: New file.
2917 * testsuite/gas/s12z/clb.d: New file.
2918 * testsuite/gas/s12z/clb.s: New file.
2919 * testsuite/gas/s12z/clr-opr.d: New file.
2920 * testsuite/gas/s12z/clr-opr.s: New file.
2921 * testsuite/gas/s12z/clr.d: New file.
2922 * testsuite/gas/s12z/clr.s: New file.
2923 * testsuite/gas/s12z/cmp-imm.d: New file.
2924 * testsuite/gas/s12z/cmp-imm.s: New file.
2925 * testsuite/gas/s12z/cmp-opr-inc.d: New file.
2926 * testsuite/gas/s12z/cmp-opr-inc.s: New file.
2927 * testsuite/gas/s12z/cmp-opr-rdirect.d: New file.
2928 * testsuite/gas/s12z/cmp-opr-rdirect.s: New file.
2929 * testsuite/gas/s12z/cmp-opr-reg.d: New file.
2930 * testsuite/gas/s12z/cmp-opr-reg.s: New file.
2931 * testsuite/gas/s12z/cmp-opr-rindirect.d: New file.
2932 * testsuite/gas/s12z/cmp-opr-rindirect.s: New file.
2933 * testsuite/gas/s12z/cmp-opr-sxe4.d: New file.
2934 * testsuite/gas/s12z/cmp-opr-sxe4.s: New file.
2935 * testsuite/gas/s12z/cmp-opr-xys.d: New file.
2936 * testsuite/gas/s12z/cmp-opr-xys.s: New file.
2937 * testsuite/gas/s12z/cmp-s-imm.d: New file.
2938 * testsuite/gas/s12z/cmp-s-imm.s: New file.
2939 * testsuite/gas/s12z/cmp-s-opr.d: New file.
2940 * testsuite/gas/s12z/cmp-s-opr.s: New file.
2941 * testsuite/gas/s12z/cmp-xy.d: New file.
2942 * testsuite/gas/s12z/cmp-xy.s: New file.
2943 * testsuite/gas/s12z/com-opr.d: New file.
2944 * testsuite/gas/s12z/com-opr.s: New file.
2945 * testsuite/gas/s12z/complex-shifts.d: New file.
2946 * testsuite/gas/s12z/complex-shifts.s: New file.
2947 * testsuite/gas/s12z/db-tb-cc-opr.d: New file.
2948 * testsuite/gas/s12z/db-tb-cc-opr.s: New file.
2949 * testsuite/gas/s12z/db-tb-cc-reg.d: New file.
2950 * testsuite/gas/s12z/db-tb-cc-reg.s: New file.
2951 * testsuite/gas/s12z/dbCC.d: New file.
2952 * testsuite/gas/s12z/dbCC.s: New file.
2953 * testsuite/gas/s12z/dec-opr.d: New file.
2954 * testsuite/gas/s12z/dec-opr.s: New file.
2955 * testsuite/gas/s12z/dec.d: New file.
2956 * testsuite/gas/s12z/dec.s: New file.
2957 * testsuite/gas/s12z/div.d: New file.
2958 * testsuite/gas/s12z/div.s: New file.
2959 * testsuite/gas/s12z/eor.d: New file.
2960 * testsuite/gas/s12z/eor.s: New file.
2961 * testsuite/gas/s12z/exg.d: New file.
2962 * testsuite/gas/s12z/exg.s: New file.
2963 * testsuite/gas/s12z/ext24-ld-xy.d: New file.
2964 * testsuite/gas/s12z/ext24-ld-xy.s: New file.
2965 * testsuite/gas/s12z/inc-opr.d: New file.
2966 * testsuite/gas/s12z/inc-opr.s: New file.
2967 * testsuite/gas/s12z/inc.d: New file.
2968 * testsuite/gas/s12z/inc.s: New file.
2969 * testsuite/gas/s12z/inh.d: New file.
2970 * testsuite/gas/s12z/inh.s: New file.
2971 * testsuite/gas/s12z/jmp.d: New file.
2972 * testsuite/gas/s12z/jmp.s: New file.
2973 * testsuite/gas/s12z/jsr.d: New file.
2974 * testsuite/gas/s12z/jsr.s: New file.
2975 * testsuite/gas/s12z/ld-imm-page2.d: New file.
2976 * testsuite/gas/s12z/ld-imm-page2.s: New file.
2977 * testsuite/gas/s12z/ld-imm.d: New file.
2978 * testsuite/gas/s12z/ld-imm.s: New file.
2979 * testsuite/gas/s12z/ld-immu18.d: New file.
2980 * testsuite/gas/s12z/ld-immu18.s: New file.
2981 * testsuite/gas/s12z/ld-large-direct.d: New file.
2982 * testsuite/gas/s12z/ld-large-direct.s: New file.
2983 * testsuite/gas/s12z/ld-opr.d: New file.
2984 * testsuite/gas/s12z/ld-opr.s: New file.
2985 * testsuite/gas/s12z/ld-s-opr.d: New file.
2986 * testsuite/gas/s12z/ld-s-opr.s: New file.
2987 * testsuite/gas/s12z/ld-small-direct.d: New file.
2988 * testsuite/gas/s12z/ld-small-direct.s: New file.
2989 * testsuite/gas/s12z/lea-immu18.d: New file.
2990 * testsuite/gas/s12z/lea-immu18.s: New file.
2991 * testsuite/gas/s12z/lea.d: New file.
2992 * testsuite/gas/s12z/lea.s: New file.
2993 * testsuite/gas/s12z/mac.d: New file.
2994 * testsuite/gas/s12z/mac.s: New file.
2995 * testsuite/gas/s12z/min-max.d: New file.
2996 * testsuite/gas/s12z/min-max.s: New file.
2997 * testsuite/gas/s12z/mod.d: New file.
2998 * testsuite/gas/s12z/mod.s: New file.
2999 * testsuite/gas/s12z/mov.d: New file.
3000 * testsuite/gas/s12z/mov.s: New file.
3001 * testsuite/gas/s12z/mul-imm.d: New file.
3002 * testsuite/gas/s12z/mul-imm.s: New file.
3003 * testsuite/gas/s12z/mul-opr-opr.d: New file.
3004 * testsuite/gas/s12z/mul-opr-opr.s: New file.
3005 * testsuite/gas/s12z/mul-opr.d: New file.
3006 * testsuite/gas/s12z/mul-opr.s: New file.
3007 * testsuite/gas/s12z/mul-reg.d: New file.
3008 * testsuite/gas/s12z/mul-reg.s: New file.
3009 * testsuite/gas/s12z/mul.d: New file.
3010 * testsuite/gas/s12z/mul.s: New file.
3011 * testsuite/gas/s12z/neg-opr.d: New file.
3012 * testsuite/gas/s12z/neg-opr.s: New file.
3013 * testsuite/gas/s12z/not-so-simple-shifts.d: New file.
3014 * testsuite/gas/s12z/not-so-simple-shifts.s: New file.
3015 * testsuite/gas/s12z/opr-18u.d: New file.
3016 * testsuite/gas/s12z/opr-18u.s: New file.
3017 * testsuite/gas/s12z/opr-expr.d: New file.
3018 * testsuite/gas/s12z/opr-expr.s: New file.
3019 * testsuite/gas/s12z/opr-ext-18.d: New file.
3020 * testsuite/gas/s12z/opr-ext-18.s: New file.
3021 * testsuite/gas/s12z/opr-idx-24-reg.d: New file.
3022 * testsuite/gas/s12z/opr-idx-24-reg.s: New file.
3023 * testsuite/gas/s12z/opr-idx3-reg.d: New file.
3024 * testsuite/gas/s12z/opr-idx3-reg.s: New file.
3025 * testsuite/gas/s12z/opr-idx3-xysp-24.d: New file.
3026 * testsuite/gas/s12z/opr-idx3-xysp-24.s: New file.
3027 * testsuite/gas/s12z/opr-indirect-expr.d: New file.
3028 * testsuite/gas/s12z/opr-indirect-expr.s: New file.
3029 * testsuite/gas/s12z/opr-symbol.d: New file.
3030 * testsuite/gas/s12z/opr-symbol.s: New file.
3031 * testsuite/gas/s12z/or-imm.d: New file.
3032 * testsuite/gas/s12z/or-imm.s: New file.
3033 * testsuite/gas/s12z/or-opr.d: New file.
3034 * testsuite/gas/s12z/or-opr.s: New file.
3035 * testsuite/gas/s12z/p2-mul.d: New file.
3036 * testsuite/gas/s12z/p2-mul.s: New file.
3037 * testsuite/gas/s12z/page2-inh.d: New file.
3038 * testsuite/gas/s12z/page2-inh.s: New file.
3039 * testsuite/gas/s12z/psh-pul.d: New file.
3040 * testsuite/gas/s12z/psh-pul.s: New file.
3041 * testsuite/gas/s12z/qmul.d: New file.
3042 * testsuite/gas/s12z/qmul.s: New file.
3043 * testsuite/gas/s12z/rotate.d: New file.
3044 * testsuite/gas/s12z/rotate.s: New file.
3045 * testsuite/gas/s12z/s12z.exp: New file.
3046 * testsuite/gas/s12z/sat.d: New file.
3047 * testsuite/gas/s12z/sat.s: New file.
3048 * testsuite/gas/s12z/sbc-imm.d: New file.
3049 * testsuite/gas/s12z/sbc-imm.s: New file.
3050 * testsuite/gas/s12z/sbc-opr.d: New file.
3051 * testsuite/gas/s12z/sbc-opr.s: New file.
3052 * testsuite/gas/s12z/shift.d: New file.
3053 * testsuite/gas/s12z/shift.s: New file.
3054 * testsuite/gas/s12z/simple-shift.d: New file.
3055 * testsuite/gas/s12z/simple-shift.s: New file.
3056 * testsuite/gas/s12z/single-ops.d: New file.
3057 * testsuite/gas/s12z/single-ops.s: New file.
3058 * testsuite/gas/s12z/specd6.d: New file.
3059 * testsuite/gas/s12z/specd6.s: New file.
3060 * testsuite/gas/s12z/st-large-direct.d: New file.
3061 * testsuite/gas/s12z/st-large-direct.s: New file.
3062 * testsuite/gas/s12z/st-opr.d: New file.
3063 * testsuite/gas/s12z/st-opr.s: New file.
3064 * testsuite/gas/s12z/st-s-opr.d: New file.
3065 * testsuite/gas/s12z/st-s-opr.s: New file.
3066 * testsuite/gas/s12z/st-small-direct.d: New file.
3067 * testsuite/gas/s12z/st-small-direct.s: New file.
3068 * testsuite/gas/s12z/st-xy.d: New file.
3069 * testsuite/gas/s12z/st-xy.s: New file.
3070 * testsuite/gas/s12z/sub-imm.d: New file.
3071 * testsuite/gas/s12z/sub-imm.s: New file.
3072 * testsuite/gas/s12z/sub-opr.d: New file.
3073 * testsuite/gas/s12z/sub-opr.s: New file.
3074 * testsuite/gas/s12z/tfr.d: New file.
3075 * testsuite/gas/s12z/tfr.s: New file.
3076 * testsuite/gas/s12z/trap.d: New file.
3077 * testsuite/gas/s12z/trap.s: New file.
3078
3079 2018-05-16 Maciej W. Rozycki <macro@mips.com>
3080
3081 * tc-nds32.c (md_assemble): Rename `expr' local variable to
3082 `insn_expr'.
3083
3084 2018-05-15 Tamar Christina <tamar.christina@arm.com>
3085
3086 PR binutils/21446
3087 * testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
3088 * testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
3089 * testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
3090 * testsuite/gas/aarch64/sysreg-diagnostic.s: New.
3091 * testsuite/gas/aarch64/sysreg-diagnostic.l: New.
3092 * testsuite/gas/aarch64/sysreg-diagnostic.d: New.
3093
3094 2018-05-15 Tamar Christina <tamar.christina@arm.com>
3095
3096 PR binutils/21446
3097 * config/tc-aarch64.c (print_operands): Indicate no notes.
3098 (output_operand_error_record): Support non-fatal errors.
3099 (output_operand_error_report, warn_unpredictable_ldst, md_assemble):
3100 Likewise.
3101
3102 2018-05-15 Tamar Christina <tamar.christina@arm.com>
3103
3104 PR binutils/21446
3105 * config/tc-aarch64.c (parse_sys_reg): Return register flags.
3106 (parse_operands): Fill in register flags.
3107
3108 2018-05-14 Nick Clifton <nickc@redhat.com>
3109
3110 * write.c (maybe_generate_build_notes): Generate notes on a
3111 per-code-section basis. Skip linkonce sections.
3112
3113 2018-05-14 Nick Clifton <nickc@redhat.com>
3114
3115 PR 23153
3116 * as.c (main): When checking for an output file that is also an
3117 input file, also check that the inode is not zero.
3118
3119 2018-05-12 Alan Modra <amodra@gmail.com>
3120
3121 * config/tc-score.c (s3_do_macro_bcmp): Don't use fixed size
3122 buffers.
3123 (s3_do_macro_bcmpz): Likewise.
3124
3125 2018-05-10 Tamar Christina <tamar.christina@arm.com>
3126
3127 * config/tc-aarch64.c (parse_aarch64_imm_float): Remove restrictions.
3128 * testsuite/gas/aarch64/diagnostic.s: Move fmov int test to..
3129 * testsuite/gas/aarch64/fpmov.s: Here.
3130 * testsuite/gas/aarch64/fpmov.d: Update results with fmov.
3131 * testsuite/gas/aarch64/diagnostic.l: Remove fmov values.
3132 * testsuite/gas/aarch64/sve-invalid.s: Update test files.
3133 * testsuite/gas/aarch64/sve-invalid.l: Likewise
3134
3135 2018-05-10 Tamar Christina <tamar.christina@arm.com>
3136
3137 * gas/config/tc-arm.c (do_neon_mov): Allow integer literal for float
3138 immediate.
3139 * testsuite/gas/arm/vfp-mov-enc.s: New.
3140 * testsuite/gas/arm/vfp-mov-enc.d: New.
3141
3142 2018-05-09 Max Filippov <jcmvbkbc@gmail.com>
3143
3144 * config/tc-xtensa.c (xtensa_is_init_fini): New function.
3145 (xtensa_move_literals): Only attempt to assign literal pool to
3146 literals with tc_frag_data.is_literal mark and not in .init or
3147 .fini sections.
3148 Join nested 'if' conditions to simplify function structure.
3149 (xtensa_switch_to_non_abs_literal_fragment): Use
3150 xtensa_is_init_fini to test for .init/.fini sections.
3151 * testsuite/gas/xtensa/all.exp (auto-litpools-3)
3152 (auto-litpools-4, text-section-literals-1): New tests.
3153 * testsuite/gas/xtensa/auto-litpools-3.d: New test results.
3154 * testsuite/gas/xtensa/auto-litpools-3.s: New test source.
3155 * testsuite/gas/xtensa/auto-litpools-4.d: New test results.
3156 * testsuite/gas/xtensa/auto-litpools-4.s: New test source.
3157 * testsuite/gas/xtensa/text-section-literals-1.d: New test results.
3158 * testsuite/gas/xtensa/text-section-literals-1.s: New test source.
3159
3160 2018-05-09 Dimitar Dimitrov <dimitar@dinux.eu>
3161
3162 * config/tc-pru.c (md_apply_fix): Make LDI32 relocation conformant
3163 to TI ABI.
3164 (pru_assemble_arg_i): Likewise.
3165 (output_insn_ldi32): Likewise.
3166 * testsuite/gas/pru/ldi.d: Update test for the now fixed LDI32.
3167 * gas/config/tc-pru.c (pru_assemble_arg_b): Check imm8 operand range.
3168 * gas/testsuite/gas/pru/illegal2.l: New test.
3169 * gas/testsuite/gas/pru/illegal2.s: New test.
3170 * gas/testsuite/gas/pru/pru.exp: Register new illegal2 test.
3171
3172 2018-05-08 Jim Wilson <jimw@sifive.com>
3173
3174 * testsuite/gas/riscv/c-zero-imm.d: Add more tests.
3175 * testsuite/gas/riscv/c-zero-imm.s: Likewise.
3176 * testsuite/gas/riscv/c-zero-reg.d: Fix typo in test. Add disabled
3177 future test for RV128 support.
3178 * testsuite/gas/riscv/c-zero-reg.s: Likewise.
3179
3180 2018-05-07 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
3181 H.J. Lu <hongjiu.lu@intel.com>
3182
3183 * config/tc-i386.c (cpu_arch): Add .movdir, .movdir64b.
3184 (cpu_noarch): Likewise.
3185 (process_suffix): Add check for register size.
3186 * doc/c-i386.texi: Document movdiri, movdir64b.
3187 * testsuite/gas/i386/i386.exp: Run MOVDIR{I,64B} tests.
3188 * testsuite/gas/i386/movdir-intel.d: New file.
3189 * testsuite/gas/i386/movdir.d: Likewise.
3190 * testsuite/gas/i386/movdir.s: Likewise.
3191 * testsuite/gas/i386/movdir64b-reg.s: Likewise.
3192 * testsuite/gas/i386/movdir64b-reg.l: Likewise.
3193 * testsuite/gas/i386/x86-64-movdir-intel.d: Likewise.
3194 * testsuite/gas/i386/x86-64-movdir.d: Likewise.
3195 * testsuite/gas/i386/x86-64-movdir.s: Likewise.
3196 * testsuite/gas/i386/x86-64-movdir64b-reg.s: Likewise.
3197 * testsuite/gas/i386/x86-64-movdir64b-reg.l: Likewise.
3198
3199 2018-05-07 H.J. Lu <hongjiu.lu@intel.com>
3200
3201 * config/tc-i386.c (process_suffix): Check addrprefixopreg
3202 instead of addrprefixop0.
3203
3204 2018-05-07 Peter Bergner <bergner@vnet.ibm.com.com>
3205
3206 * config/tc-ppc.c (ppc_setup_opcodes) <powerpc_opcodes>: Rewrite code
3207 to dump the entire opcode table.
3208 (ppc_setup_opcodes) <spe2_opcodes>: Likewise.
3209 (ppc_setup_opcodes) <vle_opcodes>: Likewise. Fix calculation of
3210 opcode index.
3211
3212 2018-05-06 H.J. Lu <hongjiu.lu@intel.com>
3213
3214 * testsuite/gas/i386/xmmhi32.d: Also allow dir32 relocation.
3215
3216 2018-05-06 H.J. Lu <hongjiu.lu@intel.com>
3217
3218 * testsuite/gas/i386/avx512f-plain.s: Append ".p2align 4,0".
3219 * testsuite/gas/i386/avx512vl-plain.s: Likewise.
3220 * testsuite/gas/i386/bnd.s: Likewise.
3221 * testsuite/gas/i386/stN.s: Likewise.
3222 * testsuite/gas/i386/avx512f-plain.l: Updated.
3223 * testsuite/gas/i386/avx512vl-plain.l: Likewise.
3224 * testsuite/gas/i386/bnd.l: Likewise.
3225 * testsuite/gas/i386/stN.l: Likewise.
3226
3227 2018-05-04 Alan Modra <amodra@gmail.com>
3228
3229 * config/obj-evax.c (shorten_identifier): Use memcpy in place
3230 of strncpy.
3231 * config/obj-macho.c (obj_mach_o_make_or_get_sect): Ensure
3232 segname and sectname fields are NUL terminated.
3233
3234 2018-05-01 Nick Clifton <nickc@redhat.com>
3235
3236 * po/es.po: Updated Spanish translation.
3237
3238 2018-04-27 Maciej W. Rozycki <macro@mips.com>
3239
3240 * testsuite/lib/gas-defs.exp (run_dump_test): Use `match_target'
3241 in place of `istarget' for matching with `target', `not-target',
3242 `skip' and `not-skip' options.
3243
3244 2018-04-26 Nick Clifton <nickc@redhat.com>
3245
3246 * as.c (flag_generate_build_notes): New variable.
3247 (show_usage): Add entry for --generate-missing-build-notes.
3248 (parse_args): Parse --generate-missing-build-notes.
3249 * as.h: Export flag_generate_build_notes.
3250 * symbols.c (save_symbol_name): Ensure that the name parameter is
3251 not NULL.
3252 * write.c (create_obj_attrs_section): Reformat.
3253 (create_note_reloc): New function - creates a relocation for a
3254 field in a GNU Build attribute note.
3255 (maybe_generate_build_notes): New function - created GNU Build
3256 attribute notes if none are present in the output file.
3257 (write_object_file): Call maybe_generate_build_notes.
3258 * configure.ac (--enable-generate-build-notes): New option.
3259 * NEWS: Announce the new feature.
3260 * doc/as.textinfo: Document the new option.
3261 * config.in: Regenerate.
3262 * configure: Regenerate.
3263
3264 2018-04-26 Jan Beulich <jbeulich@suse.com>
3265
3266 * config/tc-i386.c (check_VecOperands): Add AVX512VL check. Set
3267 .baseindex.
3268 (match_template): Don't set suffix_check when Intel syntax and
3269 broadcast. Make check_register a per-operand bitmap.
3270
3271 2018-04-26 Jan Beulich <jbeulich@suse.com>
3272
3273 * config/tc-i386.c (optimize_encoding): Check for zeroing
3274 masking.
3275 * testsuite/gas/i386/optimize-1.d,
3276 testsuite/gas/i386/optimize-4.d,
3277 testsuite/gas/i386/optimize-5.d,
3278 testsuite/gas/i386/x86-64-optimize-2.d,
3279 testsuite/gas/i386/x86-64-optimize-5.d,
3280 testsuite/gas/i386/x86-64-optimize-6.d: Adjust expectations.
3281
3282 2018-04-26 Jan Beulich <jbeulich@suse.com>
3283
3284 * config/tc-i386.c (parse_real_register): Check .cpuvrex before
3285 recording EVEX encoding. Don't check previously specified
3286 encoding.
3287 * testsuite/gas/i386/xmmhi32.s: Add {x,y,z}mm{16,24} cases.
3288 * testsuite/gas/i386/xmmhi32.d: Adjust expectations.
3289 * testsuite/gas/i386/xmmhi64.s, testsuite/gas/i386/xmmhi64.d:
3290 New.
3291 * testsuite/gas/i386/i386.exp: Run new test.
3292
3293 2018-04-26 Jan Beulich <jbeulich@suse.com>
3294
3295 * testsuite/gas/i386/xsave.s: Add AVX, LWP, MPX, and PKU
3296 dependency tests.
3297 * testsuite/gas/i386/xsave.d,
3298 testsuite/gas/i386/xsave-intel.d: Adjust expecations.
3299
3300 2018-04-26 Jan Beulich <jbeulich@suse.com>
3301
3302 * config/tc-i386.c (parse_real_register): Re-write {,x,y,z}mm
3303 and mask register handling.
3304 * testsuite/gas/i386/avx512f-ymm.s, testsuite/gas/i386/avx512f-ymm.d,
3305 testsuite/gas/i386/xmmhi32.s, testsuite/gas/i386/xmmhi32.d: New.
3306 * testsuite/gas/i386/i386.exp: Run new tests.
3307
3308 2018-04-26 Jan Beulich <jbeulich@suse.com>
3309
3310 * config/tc-i386.c (parse_real_register): Check bnd<N>
3311 registers.
3312 * testsuite/gas/i386/bnd.s, testsuite/gas/i386/bnd.l: New.
3313 * testsuite/gas/i386/i386.exp: Run new test.
3314
3315 2018-04-26 Jan Beulich <jbeulich@suse.com>
3316
3317 * config/tc-i386.c (parse_real_register): Check FPU register
3318 earlier.
3319 * testsuite/gas/i386/fpu.s, testsuite/gas/i386/fpu.l,
3320 testsuite/gas/i386/stN.s, testsuite/gas/i386/stN.l: New.
3321 * testsuite/gas/i386/i386.exp: Run new tests.
3322
3323 2018-04-26 Jan Beulich <jbeulich@suse.com>
3324
3325 * config/tc-i386.c (build_modrm_byte): Use tabs for indentation.
3326
3327 2018-04-26 Jan Beulich <jbeulich@suse.com>
3328
3329 * config/tc-i386.c (build_modrm_byte): Move and fold
3330 source/reg_slot calculations.
3331
3332 2018-04-26 Jan Beulich <jbeulich@suse.com>
3333
3334 * config/tc-i386.c (build_modrm_byte): Drop .veximmext uses.
3335 Move part of the remaining assertion.
3336
3337 2018-04-26 Jan Beulich <jbeulich@suse.com>
3338
3339 * config/tc-i386.c (build_modrm_byte): Extend assertion in
3340 vex_3_sources handling to cover more cases.
3341
3342 2018-04-26 Jan Beulich <jbeulich@suse.com>
3343
3344 * config/tc-i386.c (build_modrm_byte): Drop code dealing with
3345 .veximmext and .immext set at the same time. Drop code dealing
3346 with .cpufma when .vexsources == VEX3SOURCES.
3347
3348 2018-04-25 Christophe Lyon <christophe.lyon@st.com>
3349 Mickaël Guêné <mickael.guene@st.com>
3350
3351 * config/tc-arm.c (reloc_names): Add TLSGD_FDPIC, TLSLDM_FDPIC,
3352 GOTTPOFF_FDIC relocations.
3353 (md_apply_fix): Handle the new TLS FDPIC relocations.
3354 (tc_gen_reloc): Likewise.
3355 (arm_fix_adjustable): Likewise.
3356
3357 2018-04-25 Christophe Lyon <christophe.lyon@st.com>
3358 Mickaël Guêné <mickael.guene@st.com>
3359
3360 * config/tc-arm.c (reloc_names): Add gotfuncdesc, gotofffuncdesc,
3361 funcdesc.
3362 (md_apply_fix): Support the new relocations.
3363 (tc_gen_reloc): Likewise.
3364 * testsuite/gas/arm/reloc-fdpic.d: New.
3365 * testsuite/gas/arm/reloc-fdpic.s: New.
3366
3367 2018-04-25 Christophe Lyon <christophe.lyon@st.com>
3368 Mickaël Guêné <mickael.guene@st.com>
3369
3370 * config/tc-arm.c (arm_fdpic): New.
3371 (elf32_arm_target_format): Support FDPIC.
3372 (OPTION_FDPIC): New.
3373 (md_longopts): Support FDPIC.
3374 (md_parse_option): Likewise.
3375 (md_show_usage): Likewise.
3376
3377 2018-04-25 Tamar Christina <tamar.christina@arm.com>
3378
3379 * testsuite/gas/aarch64/rdma.s: Test for larger register numbers.
3380 * testsuite/gas/aarch64/rdma.d: Update results.
3381 * testsuite/gas/aarch64/rdma-directive.d: Likewise.
3382
3383 2018-04-25 Nick Clifton <nickc@redhat.com>
3384
3385 * po/es.po: Updated Spanish translation.
3386
3387 2018-04-25 Alan Modra <amodra@gmail.com>
3388
3389 * Makefile.am: Remove arm-aout and arm-coff support.
3390 * config/tc-arm.c: Likewise.
3391 * config/tc-arm.h: Likewise.
3392 * configure.tgt: Likewise.
3393 * testsuite/gas/aarch64/codealign.d: Likewise.
3394 * testsuite/gas/aarch64/mapping.d: Likewise.
3395 * testsuite/gas/aarch64/mapping2.d: Likewise.
3396 * testsuite/gas/arm/adds-thumb1-reloc-local-armv7-m.d: Likewise.
3397 * testsuite/gas/arm/adds-thumb1-reloc-local.d: Likewise.
3398 * testsuite/gas/arm/addsw-bad.d: Likewise.
3399 * testsuite/gas/arm/align.d: Likewise.
3400 * testsuite/gas/arm/align64.d: Likewise.
3401 * testsuite/gas/arm/arch7.d: Likewise.
3402 * testsuite/gas/arm/arch7a-mp.d: Likewise.
3403 * testsuite/gas/arm/arch7em.d: Likewise.
3404 * testsuite/gas/arm/archv8m-main-dsp-5.d: Likewise.
3405 * testsuite/gas/arm/arm-it-auto-2.d: Likewise.
3406 * testsuite/gas/arm/arm-it-auto-3.d: Likewise.
3407 * testsuite/gas/arm/arm-it-auto.d: Likewise.
3408 * testsuite/gas/arm/arm-it-bad-2.d: Likewise.
3409 * testsuite/gas/arm/arm-it.d: Likewise.
3410 * testsuite/gas/arm/armv7e-m+fpv5-d16.d: Likewise.
3411 * testsuite/gas/arm/armv7e-m+fpv5-sp-d16.d: Likewise.
3412 * testsuite/gas/arm/armv8-2-fp16-scalar-thumb.d: Likewise.
3413 * testsuite/gas/arm/armv8-2-fp16-scalar.d: Likewise.
3414 * testsuite/gas/arm/armv8-2-fp16-simd-thumb.d: Likewise.
3415 * testsuite/gas/arm/armv8-2-fp16-simd.d: Likewise.
3416 * testsuite/gas/arm/armv8-a+crypto.d: Likewise.
3417 * testsuite/gas/arm/armv8-a+fp.d: Likewise.
3418 * testsuite/gas/arm/armv8-a+ras.d: Likewise.
3419 * testsuite/gas/arm/armv8-a+rdma-warning.d: Likewise.
3420 * testsuite/gas/arm/armv8-a+rdma.d: Likewise.
3421 * testsuite/gas/arm/armv8-a+simd.d: Likewise.
3422 * testsuite/gas/arm/armv8-a-barrier-thumb.d: Likewise.
3423 * testsuite/gas/arm/armv8-r+fp.d: Likewise.
3424 * testsuite/gas/arm/armv8-r+simd.d: Likewise.
3425 * testsuite/gas/arm/armv8-r-barrier-thumb.d: Likewise.
3426 * testsuite/gas/arm/armv8_1-a+simd.d: Likewise.
3427 * testsuite/gas/arm/armv8_2+rdma.d: Likewise.
3428 * testsuite/gas/arm/armv8_2-a.d: Likewise.
3429 * testsuite/gas/arm/armv8_3-a-fp.d: Likewise.
3430 * testsuite/gas/arm/armv8_3-a-simd.d: Likewise.
3431 * testsuite/gas/arm/armv8a-automatic-hlt.d: Likewise.
3432 * testsuite/gas/arm/armv8a-automatic-lda.d: Likewise.
3433 * testsuite/gas/arm/attr-syntax.d: Likewise.
3434 * testsuite/gas/arm/automatic-bw.d: Likewise.
3435 * testsuite/gas/arm/automatic-cbz.d: Likewise.
3436 * testsuite/gas/arm/automatic-clrex.d: Likewise.
3437 * testsuite/gas/arm/automatic-lda.d: Likewise.
3438 * testsuite/gas/arm/automatic-ldaex.d: Likewise.
3439 * testsuite/gas/arm/automatic-ldaexb.d: Likewise.
3440 * testsuite/gas/arm/automatic-ldrex.d: Likewise.
3441 * testsuite/gas/arm/automatic-ldrexd.d: Likewise.
3442 * testsuite/gas/arm/automatic-movw.d: Likewise.
3443 * testsuite/gas/arm/automatic-sdiv.d: Likewise.
3444 * testsuite/gas/arm/automatic-strexb.d: Likewise.
3445 * testsuite/gas/arm/barrier-bad-thumb.d: Likewise.
3446 * testsuite/gas/arm/barrier-bad.d: Likewise.
3447 * testsuite/gas/arm/barrier-thumb.d: Likewise.
3448 * testsuite/gas/arm/barrier.d: Likewise.
3449 * testsuite/gas/arm/bignum1.d: Likewise.
3450 * testsuite/gas/arm/blx-bad.d: Likewise.
3451 * testsuite/gas/arm/blx-bl-convert.d: Likewise.
3452 * testsuite/gas/arm/blx-local.s: Likewise.
3453 * testsuite/gas/arm/crc32-armv8-a-bad.d: Likewise.
3454 * testsuite/gas/arm/crc32-armv8-a.d: Likewise.
3455 * testsuite/gas/arm/crc32-armv8-r-bad.d: Likewise.
3456 * testsuite/gas/arm/crc32-armv8-r.d: Likewise.
3457 * testsuite/gas/arm/dis-data.d: Likewise.
3458 * testsuite/gas/arm/dis-data2.d: Likewise.
3459 * testsuite/gas/arm/dis-data3.d: Likewise.
3460 * testsuite/gas/arm/eabi_attr_1.d: Likewise.
3461 * testsuite/gas/arm/fp-save.d: Likewise.
3462 * testsuite/gas/arm/group-reloc-alu-encoding-bad.d: Likewise.
3463 * testsuite/gas/arm/group-reloc-alu-parsing-bad.d: Likewise.
3464 * testsuite/gas/arm/group-reloc-alu.d: Likewise.
3465 * testsuite/gas/arm/group-reloc-ldc-encoding-bad.d: Likewise.
3466 * testsuite/gas/arm/group-reloc-ldc-parsing-bad.d: Likewise.
3467 * testsuite/gas/arm/group-reloc-ldc.d: Likewise.
3468 * testsuite/gas/arm/group-reloc-ldr-encoding-bad.d: Likewise.
3469 * testsuite/gas/arm/group-reloc-ldr-parsing-bad.d: Likewise.
3470 * testsuite/gas/arm/group-reloc-ldr.d: Likewise.
3471 * testsuite/gas/arm/group-reloc-ldrs-encoding-bad.d: Likewise.
3472 * testsuite/gas/arm/group-reloc-ldrs-parsing-bad.d: Likewise.
3473 * testsuite/gas/arm/group-reloc-ldrs.d: Likewise.
3474 * testsuite/gas/arm/insn-error-a.d: Likewise.
3475 * testsuite/gas/arm/insn-error-t.d: Likewise.
3476 * testsuite/gas/arm/inst-po-2.d: Likewise.
3477 * testsuite/gas/arm/inst-po-3.d: Likewise.
3478 * testsuite/gas/arm/inst-po-be.d: Likewise.
3479 * testsuite/gas/arm/inst-po.d: Likewise.
3480 * testsuite/gas/arm/ldconst.d: Likewise.
3481 * testsuite/gas/arm/ldgesb-bad.d: Likewise.
3482 * testsuite/gas/arm/ldgesh-bad.d: Likewise.
3483 * testsuite/gas/arm/ldst-offset0.d: Likewise.
3484 * testsuite/gas/arm/local_function.d: Likewise.
3485 * testsuite/gas/arm/local_label_coff.d: Likewise.
3486 * testsuite/gas/arm/local_label_elf.d: Likewise.
3487 * testsuite/gas/arm/mapping.d: Likewise.
3488 * testsuite/gas/arm/mapping2.d: Likewise.
3489 * testsuite/gas/arm/mapping3.d: Likewise.
3490 * testsuite/gas/arm/mapping4.d: Likewise.
3491 * testsuite/gas/arm/mapshort-elf.d: Likewise.
3492 * testsuite/gas/arm/mask_1-armv8-a.d: Likewise.
3493 * testsuite/gas/arm/mask_1-armv8-r.d: Likewise.
3494 * testsuite/gas/arm/movs-thumb1-reloc-local-armv7-m.d: Likewise.
3495 * testsuite/gas/arm/movs-thumb1-reloc-local.d: Likewise.
3496 * testsuite/gas/arm/movw-local.d: Likewise.
3497 * testsuite/gas/arm/mrs-msr-thumb-v6t2.d: Likewise.
3498 * testsuite/gas/arm/mrs-msr-thumb-v7-m.d: Likewise.
3499 * testsuite/gas/arm/mrs-msr-thumb-v7e-m.d: Likewise.
3500 * testsuite/gas/arm/msr-imm-bad.d: Likewise.
3501 * testsuite/gas/arm/msr-reg-bad.d: Likewise.
3502 * testsuite/gas/arm/msr-reg-thumb.d: Likewise.
3503 * testsuite/gas/arm/nomapping.d: Likewise.
3504 * testsuite/gas/arm/nops.d: Likewise.
3505 * testsuite/gas/arm/pic.d: Likewise.
3506 * testsuite/gas/arm/pinsn.d: Likewise.
3507 * testsuite/gas/arm/plt-1.d: Likewise.
3508 * testsuite/gas/arm/pr21458.d: Likewise.
3509 * testsuite/gas/arm/pr9722.d: Likewise.
3510 * testsuite/gas/arm/strex-t.d: Likewise.
3511 * testsuite/gas/arm/t2-branch-global.d: Likewise.
3512 * testsuite/gas/arm/target-reloc-1.d: Likewise.
3513 * testsuite/gas/arm/thumb-b-bad.d: Likewise.
3514 * testsuite/gas/arm/thumb-w-bad.d: Likewise.
3515 * testsuite/gas/arm/thumb-w-good.d: Likewise.
3516 * testsuite/gas/arm/thumb.d: Likewise.
3517 * testsuite/gas/arm/thumb2_it.d: Likewise.
3518 * testsuite/gas/arm/thumb2_it_auto.d: Likewise.
3519 * testsuite/gas/arm/thumb2_it_search.d: Likewise.
3520 * testsuite/gas/arm/thumb2_ldmstm.d: Likewise.
3521 * testsuite/gas/arm/thumb2_ldr_immediate_armv6.d: Likewise.
3522 * testsuite/gas/arm/thumb2_ldr_immediate_armv6t2.d: Likewise.
3523 * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.d: Likewise.
3524 * testsuite/gas/arm/thumb2_pool.d: Likewise.
3525 * testsuite/gas/arm/thumb2_vpool.d: Likewise.
3526 * testsuite/gas/arm/thumb2_vpool_be.d: Likewise.
3527 * testsuite/gas/arm/thumb32.d: Likewise.
3528 * testsuite/gas/arm/thumbver.d: Likewise.
3529 * testsuite/gas/arm/tls.d: Likewise.
3530 * testsuite/gas/arm/tls_vxworks.d: Likewise.
3531 * testsuite/gas/arm/undefined.d: Likewise.
3532 * testsuite/gas/arm/undefined_coff.d: Likewise.
3533 * testsuite/gas/arm/unwind.d: Likewise.
3534 * testsuite/gas/arm/v4bx.d: Likewise.
3535 * testsuite/gas/arm/vcmp-noprefix-imm.d: Likewise.
3536 * testsuite/gas/arm/vcvt-bad.d: Likewise.
3537 * testsuite/gas/arm/vfma1.d: Likewise.
3538 * testsuite/gas/arm/vldconst.d: Likewise.
3539 * testsuite/gas/arm/vldconst_be.d: Likewise.
3540 * testsuite/gas/arm/vldm-arm.d: Likewise.
3541 * testsuite/gas/arm/vldr.d: Likewise.
3542 * testsuite/gas/arm/weakdef-1.d: Likewise.
3543 * testsuite/gas/arm/weakdef-2.d: Likewise.
3544 * config/te-riscix.h: Delete.
3545 * Makefile.in: Regenerate.
3546 * po/POTFILES.in: Regenerate.
3547
3548 2018-04-23 Alan Modra <amodra@gmail.com>
3549
3550 * stabs.c (generate_asm_file): Use memcpy rather than strncpy.
3551 Remove call to strlen inside loop.
3552 * config/tc-cr16.c (getreg_image): Warning fix.
3553 * config/tc-crx.c (getreg_image): Warning fix.
3554
3555 2018-04-20 Kito Cheng <kito.cheng@gmail.com>
3556
3557 * config/tc-riscv.c (options): Add OPTION_RELAX and
3558 OPTION_NO_RELAX.
3559 (md_longopts): New option -mrelax and -mno-relax.
3560 (md_parse_option): Handle -mrelax and -mno-relax.
3561 * doc/c-riscv.texi: Document for -mrelax and -mno-relax.
3562 * testsuite/gas/riscv/no-relax-reloc.d: New.
3563 * testsuite/gas/riscv/no-relax-reloc.s: New.
3564 * testsuite/gas/riscv/relax-reloc.d: New.
3565 * testsuite/gas/riscv/relax-reloc.s: New.
3566
3567 2018-04-20 Nick Clifton <nickc@redhat.com>
3568
3569 * po/es.po: Updated Spanish translation.
3570
3571 2018-04-18 Alan Modra <amodra@gmail.com>
3572
3573 * Makefile.am: Remove support for assorted i386 aout and coff targets.
3574 * config/obj-elf.c: Likewise.
3575 * config/tc-i386.h: Likewise.
3576 * configure.ac: Likewise.
3577 * configure.tgt: Likewise.
3578 * config/te-dynix.h: Delete.
3579 * config/te-i386aix.h: Delete.
3580 * config/te-mach.h: Delete.
3581 * Makefile.in: Regenerate.
3582 * config.in: Regenerate.
3583 * configure: Regenerate.
3584 * po/POTFILES.in: Regenerate.
3585
3586 2018-04-18 Alan Modra <amodra@gmail.com>
3587
3588 * configure.tgt: Remove *-*-bsd* entry.
3589
3590 2018-04-17 Andrew Sadek <andrew.sadek.se@gmail.com>
3591
3592 Microblaze Target: PIC data text relative
3593
3594 * gas/config/tc-microblaze.c (Handle new relocs directives in
3595 assembler): Handle new relocs from compiler output.
3596 (imm_types): add new imm types for data text relative addressing
3597 TEXT_OFFSET, TEXT_PC_OFFSET
3598 (md_convert_frag): conversion for BFD_RELOC_MICROBLAZE_64_TEXTPCREL,
3599 BFD_RELOC_MICROBLAZE_64_TEXTPCREL
3600 (md_apply_fix): apply fix for BFD_RELOC_MICROBLAZE_64_TEXTPCREL,
3601 BFD_RELOC_MICROBLAZE_64_TEXTPCREL
3602 (md_estimate_size_before_relax): estimate size for
3603 BFD_RELOC_MICROBLAZE_64_TEXTPCREL,
3604 BFD_RELOC_MICROBLAZE_64_TEXTPCREL
3605 (tc_gen_reloc): generate relocations for
3606 BFD_RELOC_MICROBLAZE_64_TEXTPCREL,
3607 BFD_RELOC_MICROBLAZE_64_TEXTPCREL
3608
3609 2018-04-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
3610
3611 * testsuite/gas/i386/nops.s: Revert back deleted lines and
3612 change encoding to 0x0f1c /1 to map to NOP.
3613 * testsuite/gas/i386/x86-64-nops.s: Likewise.
3614 * testsuite/gas/i386/nops.d: Likewise.
3615 * testsuite/gas/i386/x86-64-nops.d: Likewise.
3616 * testsuite/gas/i386/ilp32/x86-64-nops.d: Likewis.
3617
3618 2018-04-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
3619
3620 * config/tc-i386.c (cpu_arch): Add .cldemote.
3621 * doc/c-i386.texi: Document cldemote/.cldemote.
3622 * testsuite/gas/i386/cldemote-intel.d: New.
3623 * testsuite/gas/i386/cldemote.d: Likewise.
3624 * testsuite/gas/i386/cldemote.s: Likewise.
3625 * testsuite/gas/i386/i386.exp: Run new tests.
3626 * testsuite/gas/i386/x86-64-cldemote-intel.d: New.
3627 * testsuite/gas/i386/x86-64-cldemote.d: Likewise.
3628 * testsuite/gas/i386/x86-64-cldemote.s: Likewise.
3629 * testsuite/gas/i386/ilp32/x86-64-nops.d: Remove 0x0f1c
3630 NOP encoding that maps to cldemote.
3631 * testsuite/gas/i386/nops.d: Likewise.
3632 * testsuite/gas/i386/nops.s: Likewise.
3633 * testsuite/gas/i386/x86-64-nops.d: Likewise.
3634 * testsuite/gas/i386/x86-64-nops.s: Likewise.
3635
3636 2018-04-16 Nick Clifton <nickc@redhat.com>
3637
3638 PR 23054
3639 * cond.c (s_ifsef): Replace use of obstack_copy with obstack_alloc
3640 followed by memcpy.
3641 (s_if, s_ifb, s_ifc, s_ifeqs): Likewise.
3642 * obj-elf.c (elf_adjust_symtab): Check for local symbols before
3643 attempting to dereference the sy_next field of a symbol.
3644 * stabs.c (get_stab_string_offset): Fail if there is no string
3645 following the stab directive.
3646
3647 2018-04-16 Alan Modra <amodra@gmail.com>
3648
3649 * Makefile.am: Remove arm-epoc-pe support.
3650 * config/tc-arm.h: Likewise.
3651 * configure.tgt: Likewise.
3652 * testsuite/gas/all/gas.exp: Likewise.
3653 * testsuite/gas/arm/local_label_coff.d: Likewise.
3654 * testsuite/gas/arm/undefined.d: Likewise.
3655 * testsuite/gas/arm/undefined_coff.d: Likewise.
3656 * config/te-epoc-pe.h: Delete.
3657 * Makefile.in: Regenerate.
3658 * po/POTFILES.in: Regenerate.
3659
3660 2018-04-16 Alan Modra <amodra@gmail.com>
3661
3662 * Makefile.am: Remove sparc-aout and sparc-coff support.
3663 * config/obj-coff.h: Likewise.
3664 * config/tc-sparc.c: Likewise.
3665 * config/tc-sparc.h: Likewise.
3666 * configure.tgt: Likewise.
3667 * config/te-sparcaout.h: Delete.
3668 * testsuite/gas/sun4/addend.d: Delete.
3669 * testsuite/gas/sun4/addend.exp: Delete.
3670 * testsuite/gas/sun4/addend.s: Delete.
3671 * Makefile.in: Regenerate.
3672 * po/POTFILES.in: Regenerate.
3673
3674 2018-04-16 Alan Modra <amodra@gmail.com>
3675
3676 * Makefile.am: Remove m68k-aout and m68k-coff support.
3677 * config/tc-m68k.c: Likewise.
3678 * config/tc-m68k.h: Likewise.
3679 * configure.ac: Likewise.
3680 * configure.tgt: Likewise.
3681 * testsuite/gas/all/weakref1u.d: Likewise.
3682 * testsuite/gas/m68k/all.exp: Likewise.
3683 * testsuite/gas/m68k/br-isaa.d: Likewise.
3684 * testsuite/gas/m68k/br-isab.d: Likewise.
3685 * testsuite/gas/m68k/br-isac.d: Likewise.
3686 * config/te-psos.h: Delete.
3687 * config/te-sun3.h: Delete.
3688 * testsuite/gas/m68k-coff/gas.exp: Delete.
3689 * testsuite/gas/m68k-coff/p2389.s: Delete.
3690 * testsuite/gas/m68k-coff/p2389a.s: Delete.
3691 * testsuite/gas/m68k-coff/p2430.s: Delete.
3692 * testsuite/gas/m68k-coff/p2430a.s: Delete.
3693 * testsuite/gas/m68k-coff/t1.s: Delete.
3694 * testsuite/gas/m68k/p3041.d: Delete.
3695 * testsuite/gas/m68k/p3041.s: Delete.
3696 * testsuite/gas/m68k/p3041data.d: Delete.
3697 * testsuite/gas/m68k/p3041data.s: Delete.
3698 * testsuite/gas/m68k/p3041pcrel.d: Delete.
3699 * testsuite/gas/m68k/p3041pcrel.s: Delete.
3700 * testsuite/gas/m68k/t2.d: Delete.
3701 * Makefile.in: Regenerate.
3702 * config.in: Regenerate.
3703 * configure: Regenerate.
3704 * po/POTFILES.in: Regenerate.
3705
3706 2018-04-16 Alan Modra <amodra@gmail.com>
3707
3708 * Makefile.am: Remove sh5 and sh64 support.
3709 * config/tc-sh.c: Likewise.
3710 * configure.tgt: Likewise.
3711 * doc/Makefile.am: Likewise.
3712 * doc/as.texinfo: Likewise.
3713 * testsuite/gas/cfi/cfi.exp: Likewise.
3714 * testsuite/gas/sh/basic.exp: Likewise.
3715 * config/tc-sh64.c: Delete.
3716 * config/tc-sh64.h: Delete.
3717 * doc/c-sh64.texi: Delete.
3718 * testsuite/gas/sh/sh64/abi-32.d: Delete.
3719 * testsuite/gas/sh/sh64/abi-32.s: Delete.
3720 * testsuite/gas/sh/sh64/abi-64.d: Delete.
3721 * testsuite/gas/sh/sh64/abi-64.s: Delete.
3722 * testsuite/gas/sh/sh64/basic-1.d: Delete.
3723 * testsuite/gas/sh/sh64/basic-1.s: Delete.
3724 * testsuite/gas/sh/sh64/case-1.d: Delete.
3725 * testsuite/gas/sh/sh64/case-1.s: Delete.
3726 * testsuite/gas/sh/sh64/case-noexp-1.d: Delete.
3727 * testsuite/gas/sh/sh64/crange1-1.d: Delete.
3728 * testsuite/gas/sh/sh64/crange1-2.d: Delete.
3729 * testsuite/gas/sh/sh64/crange1.s: Delete.
3730 * testsuite/gas/sh/sh64/crange2-1.d: Delete.
3731 * testsuite/gas/sh/sh64/crange2-2.d: Delete.
3732 * testsuite/gas/sh/sh64/crange2-noexp-1.d: Delete.
3733 * testsuite/gas/sh/sh64/crange2.s: Delete.
3734 * testsuite/gas/sh/sh64/crange3-1.d: Delete.
3735 * testsuite/gas/sh/sh64/crange3.s: Delete.
3736 * testsuite/gas/sh/sh64/crange4-1.d: Delete.
3737 * testsuite/gas/sh/sh64/crange4.s: Delete.
3738 * testsuite/gas/sh/sh64/crange5-1.d: Delete.
3739 * testsuite/gas/sh/sh64/crange5.s: Delete.
3740 * testsuite/gas/sh/sh64/creg-1.d: Delete.
3741 * testsuite/gas/sh/sh64/creg-1.s: Delete.
3742 * testsuite/gas/sh/sh64/creg-2.d: Delete.
3743 * testsuite/gas/sh/sh64/creg-2.s: Delete.
3744 * testsuite/gas/sh/sh64/datal-1.s: Delete.
3745 * testsuite/gas/sh/sh64/datal-2.d: Delete.
3746 * testsuite/gas/sh/sh64/datal-2.s: Delete.
3747 * testsuite/gas/sh/sh64/datal-3.s: Delete.
3748 * testsuite/gas/sh/sh64/datal32-1.d: Delete.
3749 * testsuite/gas/sh/sh64/datal32-3.d: Delete.
3750 * testsuite/gas/sh/sh64/datal64-1.d: Delete.
3751 * testsuite/gas/sh/sh64/datal64-3.d: Delete.
3752 * testsuite/gas/sh/sh64/eh-1.d: Delete.
3753 * testsuite/gas/sh/sh64/eh-1.s: Delete.
3754 * testsuite/gas/sh/sh64/endian-1.d: Delete.
3755 * testsuite/gas/sh/sh64/endian-1.s: Delete.
3756 * testsuite/gas/sh/sh64/endian-2.d: Delete.
3757 * testsuite/gas/sh/sh64/endian-2.s: Delete.
3758 * testsuite/gas/sh/sh64/err-1.s: Delete.
3759 * testsuite/gas/sh/sh64/err-2.s: Delete.
3760 * testsuite/gas/sh/sh64/err-3.s: Delete.
3761 * testsuite/gas/sh/sh64/err-4.s: Delete.
3762 * testsuite/gas/sh/sh64/err-abi-32.s: Delete.
3763 * testsuite/gas/sh/sh64/err-abi-64.s: Delete.
3764 * testsuite/gas/sh/sh64/err-dsp.s: Delete.
3765 * testsuite/gas/sh/sh64/err-movi-noexp-1.s: Delete.
3766 * testsuite/gas/sh/sh64/err-noexp-cmd1.s: Delete.
3767 * testsuite/gas/sh/sh64/err-pt-1.s: Delete.
3768 * testsuite/gas/sh/sh64/err-pt32-cmd1.s: Delete.
3769 * testsuite/gas/sh/sh64/err-pt32-cmd2.s: Delete.
3770 * testsuite/gas/sh/sh64/err-pt32-cmd3.s: Delete.
3771 * testsuite/gas/sh/sh64/err-ptb-1.s: Delete.
3772 * testsuite/gas/sh/sh64/err-ptb-2.s: Delete.
3773 * testsuite/gas/sh/sh64/err.exp: Delete.
3774 * testsuite/gas/sh/sh64/immexpr1.s: Delete.
3775 * testsuite/gas/sh/sh64/immexpr2.s: Delete.
3776 * testsuite/gas/sh/sh64/immexpr32-1.d: Delete.
3777 * testsuite/gas/sh/sh64/immexpr32-2.d: Delete.
3778 * testsuite/gas/sh/sh64/immexpr64-1.d: Delete.
3779 * testsuite/gas/sh/sh64/immexpr64-2.d: Delete.
3780 * testsuite/gas/sh/sh64/lineno.d: Delete.
3781 * testsuite/gas/sh/sh64/lineno.s: Delete.
3782 * testsuite/gas/sh/sh64/localcom-1.d: Delete.
3783 * testsuite/gas/sh/sh64/localcom-1.s: Delete.
3784 * testsuite/gas/sh/sh64/mix-1.d: Delete.
3785 * testsuite/gas/sh/sh64/mix-1.s: Delete.
3786 * testsuite/gas/sh/sh64/mix-noexp-1.d: Delete.
3787 * testsuite/gas/sh/sh64/movi-1.s: Delete.
3788 * testsuite/gas/sh/sh64/movi-2.s: Delete.
3789 * testsuite/gas/sh/sh64/movi-3.d: Delete.
3790 * testsuite/gas/sh/sh64/movi-3.s: Delete.
3791 * testsuite/gas/sh/sh64/movi32-1.d: Delete.
3792 * testsuite/gas/sh/sh64/movi32-2.d: Delete.
3793 * testsuite/gas/sh/sh64/movi32-noexp-2.d: Delete.
3794 * testsuite/gas/sh/sh64/movi64-1.d: Delete.
3795 * testsuite/gas/sh/sh64/movi64-2.d: Delete.
3796 * testsuite/gas/sh/sh64/movi64-2.s: Delete.
3797 * testsuite/gas/sh/sh64/movi64-3.d: Delete.
3798 * testsuite/gas/sh/sh64/movi64-noexp-2.d: Delete.
3799 * testsuite/gas/sh/sh64/pt-1.d: Delete.
3800 * testsuite/gas/sh/sh64/pt-1.s: Delete.
3801 * testsuite/gas/sh/sh64/pt-2.s: Delete.
3802 * testsuite/gas/sh/sh64/pt-noexp-1.d: Delete.
3803 * testsuite/gas/sh/sh64/pt32-1.d: Delete.
3804 * testsuite/gas/sh/sh64/pt32-noexp-2.d: Delete.
3805 * testsuite/gas/sh/sh64/pt64-1.d: Delete.
3806 * testsuite/gas/sh/sh64/pt64-32-1.d: Delete.
3807 * testsuite/gas/sh/sh64/pt64-32-2.d: Delete.
3808 * testsuite/gas/sh/sh64/pt64-noexp-2.d: Delete.
3809 * testsuite/gas/sh/sh64/ptc-1.s: Delete.
3810 * testsuite/gas/sh/sh64/ptc32-1.d: Delete.
3811 * testsuite/gas/sh/sh64/ptc32-noexp-1.d: Delete.
3812 * testsuite/gas/sh/sh64/ptc64-1.d: Delete.
3813 * testsuite/gas/sh/sh64/ptc64-32-1.d: Delete.
3814 * testsuite/gas/sh/sh64/ptc64-noexp-1.d: Delete.
3815 * testsuite/gas/sh/sh64/ptext-1.s: Delete.
3816 * testsuite/gas/sh/sh64/ptext32-1.d: Delete.
3817 * testsuite/gas/sh/sh64/ptext32-noexp-1.d: Delete.
3818 * testsuite/gas/sh/sh64/ptext64-1.d: Delete.
3819 * testsuite/gas/sh/sh64/ptext64-32-1.d: Delete.
3820 * testsuite/gas/sh/sh64/ptext64-noexp-1.d: Delete.
3821 * testsuite/gas/sh/sh64/rel-1.s: Delete.
3822 * testsuite/gas/sh/sh64/rel-2.s: Delete.
3823 * testsuite/gas/sh/sh64/rel-3.s: Delete.
3824 * testsuite/gas/sh/sh64/rel-4.s: Delete.
3825 * testsuite/gas/sh/sh64/rel-5.s: Delete.
3826 * testsuite/gas/sh/sh64/rel32-1.d: Delete.
3827 * testsuite/gas/sh/sh64/rel32-2.d: Delete.
3828 * testsuite/gas/sh/sh64/rel32-3.d: Delete.
3829 * testsuite/gas/sh/sh64/rel32-4.d: Delete.
3830 * testsuite/gas/sh/sh64/rel32-5.d: Delete.
3831 * testsuite/gas/sh/sh64/rel64-1.d: Delete.
3832 * testsuite/gas/sh/sh64/rel64-2.d: Delete.
3833 * testsuite/gas/sh/sh64/rel64-3.d: Delete.
3834 * testsuite/gas/sh/sh64/rel64-4.d: Delete.
3835 * testsuite/gas/sh/sh64/rel64-5.d: Delete.
3836 * testsuite/gas/sh/sh64/relax-1.d: Delete.
3837 * testsuite/gas/sh/sh64/relax-1.s: Delete.
3838 * testsuite/gas/sh/sh64/relax-2.d: Delete.
3839 * testsuite/gas/sh/sh64/relax-2.s: Delete.
3840 * testsuite/gas/sh/sh64/relax-3.d: Delete.
3841 * testsuite/gas/sh/sh64/relax-3.s: Delete.
3842 * testsuite/gas/sh/sh64/sh64.exp: Delete.
3843 * testsuite/gas/sh/sh64/shift-1.s: Delete.
3844 * testsuite/gas/sh/sh64/shift-2.s: Delete.
3845 * testsuite/gas/sh/sh64/shift-3.s: Delete.
3846 * testsuite/gas/sh/sh64/shift32-1.d: Delete.
3847 * testsuite/gas/sh/sh64/shift32-3.d: Delete.
3848 * testsuite/gas/sh/sh64/shift32-noexp-3.d: Delete.
3849 * testsuite/gas/sh/sh64/shift64-1.d: Delete.
3850 * testsuite/gas/sh/sh64/shift64-2.d: Delete.
3851 * testsuite/gas/sh/sh64/shift64-3.d: Delete.
3852 * testsuite/gas/sh/sh64/shift64-noexp-3.d: Delete.
3853 * testsuite/gas/sh/sh64/syntax-1.d: Delete.
3854 * testsuite/gas/sh/sh64/syntax-1.s: Delete.
3855 * testsuite/gas/sh/sh64/syntax-2.d: Delete.
3856 * testsuite/gas/sh/sh64/syntax-2.s: Delete.
3857 * testsuite/gas/sh/sh64/ua-1.s: Delete.
3858 * testsuite/gas/sh/sh64/ua32-1.d: Delete.
3859 * testsuite/gas/sh/sh64/ua64-1.d: Delete.
3860 * Makefile.in: Regenerate.
3861 * doc/Makefile.in: Regenerate.
3862 * po/POTFILES.in: Regenerate.
3863
3864 2018-04-16 Alan Modra <amodra@gmail.com>
3865
3866 * config/tc-sh.c: Remove sh-symbianelf support.
3867 * config/tc-sh.h: Likewise.
3868 * configure.ac: Likewise.
3869 * configure.tgt: Likewise.
3870 * testsuite/gas/sh/reg-prefix.d: Likewise.
3871 * testsuite/gas/sh/sh2a-pic.d: Likewise.
3872 * config.in: Regenerate.
3873 * configure: Regenerate.
3874
3875 2018-04-16 Alan Modra <amodra@gmail.com>
3876
3877 * configure.ac: Remove m88k support.
3878 * config.in: Regenerate.
3879 * configure: Regenerate.
3880
3881 2018-04-16 Alan Modra <amodra@gmail.com>
3882
3883 * Makefile.am: Remove i370 support.
3884 * app.c: Likewise.
3885 * config/obj-elf.c: Likewise.
3886 * configure.tgt: Likewise.
3887 * doc/Makefile.am: Likewise.
3888 * doc/as.texinfo: Likewise.
3889 * testsuite/gas/all/gas.exp: Likewise.
3890 * testsuite/gas/elf/warn-2.s: Likewise.
3891 * testsuite/gas/lns/lns.exp: Likewise.
3892 * config/tc-i370.c: Delete.
3893 * config/tc-i370.h: Delete.
3894 * doc/c-i370.texi: Delete.
3895 * Makefile.in: Regenerate.
3896 * doc/Makefile.in: Regenerate.
3897 * po/POTFILES.in: Regenerate.
3898
3899 2018-04-16 Alan Modra <amodra@gmail.com>
3900
3901 * config/obj-coff.h: Remove h8500 support.
3902
3903 2018-04-16 Alan Modra <amodra@gmail.com>
3904
3905 * config/obj-coff.h: Remove h8300-coff support.
3906 * config/tc-h8300.c: Likewise.
3907 * config/tc-h8300.h: Likewise.
3908 * testsuite/gas/h8300/h8300.exp: Likewise.
3909 * testsuite/gas/h8300/branch-coff.s: Delete.
3910 * testsuite/gas/h8300/branchh-coff.s: Delete.
3911 * testsuite/gas/h8300/branchs-coff.s: Delete.
3912 * testsuite/gas/h8300/ffxx1-coff.d: Delete.
3913 * testsuite/gas/h8300/ffxx1-coff.s: Delete.
3914 * testsuite/gas/h8300/h8300-coff.exp: Delete.
3915
3916 2018-04-16 Alan Modra <amodra@gmail.com>
3917
3918 * app.c: Remove IEEE 695 support.
3919 * symbols.c: Likewise.
3920
3921 2018-04-16 Alan Modra <amodra@gmail.com>
3922
3923 * Makefile.am: Remove netware support.
3924 * config/tc-i386.c: Likewise.
3925 * configure.tgt: Likewise.
3926 * config/te-netware.h: Delete.
3927 * Makefile.in: Regenerate.
3928 * po/POTFILES.in: Regenerate.
3929
3930 2018-04-15 H.J. Lu <hongjiu.lu@intel.com>
3931
3932 * testsuite/gas/i386/x86-64-waitpkg.s: Add 32-bit registers
3933 tests for tpause and umwait.
3934 * testsuite/gas/i386/x86-64-waitpkg-intel.d: Updated.
3935 * testsuite/gas/i386/x86-64-waitpkg.d: Likewise.
3936
3937 2018-04-12 John Darrington <john@darrington.wattle.id.au>
3938
3939 * as.c (main): Fail if the output is the same as one of the input
3940 files.
3941 * testsuite/gas/all/gas.exp: Test the new feature.
3942
3943 2018-04-12 Nick Clifton <nickc@redhat.com>
3944
3945 * po/es.po: Updated Spanish translation.
3946 * po/ru.po: Updated Russian translation.
3947
3948 2018-04-11 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
3949
3950 * config/tc-i386.c (cpu_arch): Add WAITPKG.
3951 (cpu_noarch): Likewise.
3952 * doc/c-i386.texi: Document WAITPKG.
3953 * i386/i386.exp: Run WAITPKG tests.
3954 * testsuite/gas/i386/waitpkg-intel.d: New test.
3955 * testsuite/gas/i386/waitpkg.d: Likewise.
3956 * testsuite/gas/i386/waitpkg.s: Likewise.
3957 * testsuite/gas/i386/x86-64-waitpkg-intel.d: Likewise.
3958 * testsuite/gas/i386/x86-64-waitpkg.d: Likewise.
3959 * testsuite/gas/i386/x86-64-waitpkg.s: Likewise.
3960
3961 2018-04-11 Alan Modra <amodra@gmail.com>
3962
3963 * config/aout_gnu.h: Delete.
3964 * config/tc-i860.c: Delete.
3965 * config/tc-i860.h: Delete.
3966 * config/tc-i960.c: Delete.
3967 * config/tc-i960.h: Delete.
3968 * doc/c-i860.texi: Delete.
3969 * doc/c-i960.texi: Delete.
3970 * testsuite/gas/i860/README.i860: Delete.
3971 * testsuite/gas/i860/bitwise.d: Delete.
3972 * testsuite/gas/i860/bitwise.s: Delete.
3973 * testsuite/gas/i860/branch.d: Delete.
3974 * testsuite/gas/i860/branch.s: Delete.
3975 * testsuite/gas/i860/bte.d: Delete.
3976 * testsuite/gas/i860/bte.s: Delete.
3977 * testsuite/gas/i860/dir-align01.d: Delete.
3978 * testsuite/gas/i860/dir-align01.s: Delete.
3979 * testsuite/gas/i860/dir-intel01.d: Delete.
3980 * testsuite/gas/i860/dir-intel01.s: Delete.
3981 * testsuite/gas/i860/dir-intel02.d: Delete.
3982 * testsuite/gas/i860/dir-intel02.s: Delete.
3983 * testsuite/gas/i860/dir-intel03-err.l: Delete.
3984 * testsuite/gas/i860/dir-intel03-err.s: Delete.
3985 * testsuite/gas/i860/dual01.d: Delete.
3986 * testsuite/gas/i860/dual01.s: Delete.
3987 * testsuite/gas/i860/dual02-err.l: Delete.
3988 * testsuite/gas/i860/dual02-err.s: Delete.
3989 * testsuite/gas/i860/dual03.d: Delete.
3990 * testsuite/gas/i860/dual03.s: Delete.
3991 * testsuite/gas/i860/fldst01.d: Delete.
3992 * testsuite/gas/i860/fldst01.s: Delete.
3993 * testsuite/gas/i860/fldst02.d: Delete.
3994 * testsuite/gas/i860/fldst02.s: Delete.
3995 * testsuite/gas/i860/fldst03.d: Delete.
3996 * testsuite/gas/i860/fldst03.s: Delete.
3997 * testsuite/gas/i860/fldst04.d: Delete.
3998 * testsuite/gas/i860/fldst04.s: Delete.
3999 * testsuite/gas/i860/fldst05.d: Delete.
4000 * testsuite/gas/i860/fldst05.s: Delete.
4001 * testsuite/gas/i860/fldst06.d: Delete.
4002 * testsuite/gas/i860/fldst06.s: Delete.
4003 * testsuite/gas/i860/fldst07.d: Delete.
4004 * testsuite/gas/i860/fldst07.s: Delete.
4005 * testsuite/gas/i860/fldst08.d: Delete.
4006 * testsuite/gas/i860/fldst08.s: Delete.
4007 * testsuite/gas/i860/float01.d: Delete.
4008 * testsuite/gas/i860/float01.s: Delete.
4009 * testsuite/gas/i860/float02.d: Delete.
4010 * testsuite/gas/i860/float02.s: Delete.
4011 * testsuite/gas/i860/float03.d: Delete.
4012 * testsuite/gas/i860/float03.s: Delete.
4013 * testsuite/gas/i860/float04.d: Delete.
4014 * testsuite/gas/i860/float04.s: Delete.
4015 * testsuite/gas/i860/form.d: Delete.
4016 * testsuite/gas/i860/form.s: Delete.
4017 * testsuite/gas/i860/i860.exp: Delete.
4018 * testsuite/gas/i860/iarith.d: Delete.
4019 * testsuite/gas/i860/iarith.s: Delete.
4020 * testsuite/gas/i860/ldst01.d: Delete.
4021 * testsuite/gas/i860/ldst01.s: Delete.
4022 * testsuite/gas/i860/ldst02.d: Delete.
4023 * testsuite/gas/i860/ldst02.s: Delete.
4024 * testsuite/gas/i860/ldst03.d: Delete.
4025 * testsuite/gas/i860/ldst03.s: Delete.
4026 * testsuite/gas/i860/ldst04.d: Delete.
4027 * testsuite/gas/i860/ldst04.s: Delete.
4028 * testsuite/gas/i860/ldst05.d: Delete.
4029 * testsuite/gas/i860/ldst05.s: Delete.
4030 * testsuite/gas/i860/ldst06.d: Delete.
4031 * testsuite/gas/i860/ldst06.s: Delete.
4032 * testsuite/gas/i860/pfam.d: Delete.
4033 * testsuite/gas/i860/pfam.s: Delete.
4034 * testsuite/gas/i860/pfmam.d: Delete.
4035 * testsuite/gas/i860/pfmam.s: Delete.
4036 * testsuite/gas/i860/pfmsm.d: Delete.
4037 * testsuite/gas/i860/pfmsm.s: Delete.
4038 * testsuite/gas/i860/pfsm.d: Delete.
4039 * testsuite/gas/i860/pfsm.s: Delete.
4040 * testsuite/gas/i860/pseudo-ops01.d: Delete.
4041 * testsuite/gas/i860/pseudo-ops01.s: Delete.
4042 * testsuite/gas/i860/regress01.d: Delete.
4043 * testsuite/gas/i860/regress01.s: Delete.
4044 * testsuite/gas/i860/shift.d: Delete.
4045 * testsuite/gas/i860/shift.s: Delete.
4046 * testsuite/gas/i860/simd.d: Delete.
4047 * testsuite/gas/i860/simd.s: Delete.
4048 * testsuite/gas/i860/system.d: Delete.
4049 * testsuite/gas/i860/system.s: Delete.
4050 * testsuite/gas/i860/xp.d: Delete.
4051 * testsuite/gas/i860/xp.s: Delete.
4052 * Makefile.am: Remove i860 and i960 support.
4053 * configure.tgt: Likewise.
4054 * doc/Makefile.am: Likewise.
4055 * doc/all.texi: Likewise.
4056 * testsuite/gas/all/gas.exp
4057 * config/obj-coff.h: Remove i960 support.
4058 * doc/internals.texi: Likewise.
4059 * expr.c: Likewise.
4060 * read.c: Likewise.
4061 * write.c: Likewise.
4062 * write.h: Likewise.
4063 * testsuite/gas/lns/lns.exp: Likewise.
4064 * testsuite/gas/symver/symver.exp: Likewise.
4065 * config/tc-m68k.c: Remove BOUT support.
4066 * config/tc-score.c: Likewise.
4067 * config/tc-score7.c: Likewise.
4068 * config/tc-sparc.c: Likewise.
4069 * symbols.c: Likewise.
4070 * doc/h8.texi: Likewise.
4071 * configure.ac: Remove BOUT and i860 support.
4072 * doc/as.texinfo: Remove BOUT, i860 and i960 support
4073 * Makefile.in: Regenerate.
4074 * config.in: Regenerate.
4075 * configure: Regenerate.
4076 * doc/Makefile.in: Regenerate.
4077 * po/POTFILES.in: Regenerate.
4078
4079 2018-04-05 H.J. Lu <hongjiu.lu@intel.com>
4080
4081 PR gas/22318
4082 * configure: Regenerated.
4083
4084 2018-04-04 H.J. Lu <hongjiu.lu@intel.com>
4085
4086 PR binutils/23025
4087 * testsuite/gas/i386/prefix.s: Add tests for vcvtpd2dq with
4088 VEX and EVEX prefixes.
4089 * testsuite/gas/i386/prefix.d: Updated.
4090
4091 2018-03-30 Peter Bergner <bergner@vnet.ibm.com>
4092
4093 PR binutils/23013
4094 * config/tc-ppc.c (ppc_set_cpu): Select appropriate cpu when ppc_obj64
4095 and little endian.
4096
4097 2018-03-28 Renlin Li <renlin.li@arm.com>
4098
4099 PR ld/22970
4100 * config/tc-aarch64.c (reloc_table): Update entry for tprel_lo12 and
4101 tprel_lo12_nc with pseudo relocations.
4102 (ldst_lo12_determine_real_reloc_type): Add new relocations support.
4103 (parse_operands): Handle BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12 and
4104 BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12_NC pseudo relocations.
4105 (md_apply_fix): Add handling for new relocation.
4106 (aarch64_force_relocation): Likewise.
4107 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst16.d: New.
4108 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst16.s: New.
4109 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst32.d: New.
4110 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst32.s: New.
4111 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst64.d: New.
4112 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst64.s: New.
4113 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst8.d: New.
4114 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst8.s: New.
4115 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst16.d: New.
4116 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst16.s: New.
4117 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst32.d: New.
4118 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst32.s: New.
4119 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst64.d: New.
4120 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst64.s: New.
4121 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst8.d: New.
4122 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst8.s: New.
4123 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst16-ilp32.d: New.
4124 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst32-ilp32.d: New.
4125 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst64-ilp32.d: New.
4126 * testsuite/gas/aarch64/reloc-tprel_lo12-ldst8-ilp32.d: New.
4127 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst16-ilp32.d: New.
4128 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst32-ilp32.d: New.
4129 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst64-ilp32.d: New.
4130 * testsuite/gas/aarch64/reloc-tprel_lo12_nc-ldst8-ilp32.d: New.
4131
4132 2018-03-28 Jan Beulich <jbeulich@suse.com>
4133
4134 * config/tc-i386.c (check_VecOperands): Replace uses of
4135 .vecesize. Always initialize op.
4136 * testsuite/gas/i386/avx512_vpopcntdq.s,
4137 testsuite/gas/i386/avx512bitalg_vl.s: Add Intel syntax vpopcnt
4138 broadcast cases with explicit operand size.
4139 * testsuite/gas/i386/avx512_vpopcntdq.d,
4140 testsuite/gas/i386/avx512_vpopcntdq-intel.d,
4141 testsuite/gas/i386/avx512bitalg_vl.d
4142 testsuite/gas/i386/avx512bitalg_vl-intel.d: Adjust expectations.
4143
4144 2018-03-28 Jan Beulich <jbeulich@suse.com>
4145
4146 * config/tc-i386.c (struct Broadcast_Operation): Adjust comment.
4147 (check_VecOperands): Re-write broadcast validation code.
4148 (check_VecOperations): Replace BROADCAST_1TO* uses.
4149 * testsuite/gas/i386/inval-avx512f.s: Add various broadcast
4150 cases.
4151 * testsuite/gas/i386/inval-avx512f.l: Adjust expectations.
4152
4153 2018-03-28 Jan Beulich <jbeulich@suse.com>
4154
4155 * config/tc-i386.c (process_suffix): Check .todword/.toqword
4156 before zapping suffix.
4157
4158 2018-03-28 Jan Beulich <jbeulich@suse.com>
4159
4160 * testsuite/gas/i386/ilp32/x86-64-simd-suffix.d,
4161 testsuite/gas/i386/x86-64-simd-suffix.d: Drop q suffix from
4162 cvt*2si.
4163
4164 2018-03-28 Nick Clifton <nickc@redhat.com>
4165
4166 PR 22988
4167 * config/tc-aarch64.c (parse_operands): Add code to handle
4168 AARCH64_OPN_SVE_ADDR_R.
4169 * testsuite/gas/aarch64/sve.s: Add tests for LDFF1xx instructions
4170 with an assumed XZR offset address register.
4171 * testsuite/gas/aarch64/sve.d: Update expected disassembly.
4172
4173 2018-03-22 Jan Beulich <jbeulich@suse.com>
4174
4175 * config/tc-i386.c (check_VecOperands): Latch
4176 i.broadcast->operand into op.
4177
4178 2018-03-22 Jan Beulich <jbeulich@suse.com>
4179
4180 * config/tc-i386.c (match_template): Special case base opcode
4181 0xa0 with HLE prefix.
4182 * testsuite/gas/i386/hle.s: Add mov-accumulator-to-disp cases.
4183 * testsuite/gas/i386/hle.d, testsuite/gas/i386/hle-intel.d:
4184 Adjust expectations.
4185
4186 2018-03-22 Jan Beulich <jbeulich@suse.com>
4187
4188 * testsuite/gas/i386/opts.s: Add bndmov cases.
4189 * testsuite/gas/i386/opts.d, testsuite/gas/i386/opts-intel.d,
4190 testsuite/gas/i386/sse2avx-opts.d,
4191 testsuite/gas/i386/sse2avx-opts-intel.d: Adjust expectations.
4192
4193 2018-03-22 Jan Beulich <jbeulich@suse.com>
4194
4195 * config/tc-i386.c (match_mem_size): Extend sub-xmmword
4196 exceptions.
4197 * testsuite/gas/i386/xmmword.l, testsuite/gas/i386/xmmword.s:
4198 New.
4199 * testsuite/gas/i386/i386.exp: Run new test.
4200
4201 2018-03-22 Jan Beulich <jbeulich@suse.com>
4202
4203 * config/tc-i386.c (match_template): Also match 2nd and 4th
4204 operand's register sizes.
4205 * testsuite/gas/i386/unspec.l, testsuite/gas/i386/unspec.s: New.
4206 * testsuite/gas/i386/i386.exp: Run new test.
4207
4208 2018-03-19 Nick Clifton <nickc@redhat.com>
4209
4210 * po/uk.po: Updated Ukranian translation.
4211
4212 2018-03-16 Jim Wilson <jimw@sifive.com>
4213
4214 * config/tc-riscv.c (check_absolute_expr): Expand comment. New
4215 parameter maybe_csr. If maybe_csr and O_symbol, print CSR name.
4216 (riscv_ip): Add new argument to check_absolute_expr calls.
4217 * testsuite/gas/riscv/bad-csr.d: New.
4218 * testsuite/gas/riscv/bad-csr.l: New.
4219 * testsuite/gas/riscv/bad-csr.s: New.
4220
4221 2018-03-14 Kito Cheng <kito.cheng@gmail.com>
4222
4223 * config/tc-riscv.c (opcode_name_list): New.
4224 (opcode_names_hash): Likewise.
4225 (init_opcode_names_hash): Likewise.
4226 (opcode_name_lookup): Likewise.
4227 (validate_riscv_insn): New argument length, and add new format
4228 which used in .insn directive.
4229 (md_begin): Refine hash table initialization logic into
4230 init_opcode_hash.
4231 (init_opcode_hash): New.
4232 (my_getOpcodeExpression): Parse opcode name for .insn.
4233 (riscv_ip): New argument hash, able to handle .insn directive.
4234 (s_riscv_insn): Handler for .insn directive.
4235 (riscv_pseudo_table): New entry for .insn.
4236 * doc/c-riscv.texi: Add documentation for .insn directive.
4237 * testsuite/gas/riscv/insn.d: Add testcase for .insn directive.
4238 * testsuite/gas/riscv/insn.s: Likewise.
4239
4240 2018-03-13 Nick Clifton <nickc@redhat.com>
4241
4242 * po/ru.po: Updated Russian translation.
4243
4244 2018-03-09 H.J. Lu <hongjiu.lu@intel.com>
4245
4246 * config/tc-i386.c (optimize_encoding): Encode EVEX instructions
4247 with VEX128 if EVEX encoding isn't required.
4248 * testsuite/gas/i386/optimize-1.d: Updated.
4249 * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
4250
4251 2018-03-09 H.J. Lu <hongjiu.lu@intel.com>
4252
4253 * config/tc-i386.c (check_VecOperations): Strip whitespace.
4254 * testsuite/gas/i386/optimize-1.s: Add whitespaces before
4255 {%k7} and {z},
4256 * testsuite/gas/i386/x86-64-optimize-2.s: Likewise.
4257
4258 2018-03-08 H.J. Lu <hongjiu.lu@intel.com>
4259
4260 * config/tc-i386.c (set_cpu_arch): Set cpu_arch_isa_flags.
4261 (md_parse_option): Likewise.
4262 (optimize_encoding): Check i.tm.cpu_flags and cpu_arch_isa_flags
4263 for cpuavx512vl instead of cpu_arch_flags. Optimize EVEX with
4264 EVEX128 when EVEX encoding is required.
4265 * testsuite/gas/i386/i386.exp: Run optimize-4, optimize-5,
4266 x86-64-optimize-5 and x86-64-optimize-6.
4267 * testsuite/gas/i386/optimize-1.d: Updated.
4268 * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
4269 * testsuite/gas/i386/optimize-4.d: New file.
4270 * testsuite/gas/i386/optimize-4.s: Likewise.
4271 * testsuite/gas/i386/optimize-5.d: Likewise.
4272 * testsuite/gas/i386/optimize-5.s: Likewise.
4273 * testsuite/gas/i386/x86-64-optimize-5.d: Likewise.
4274 * testsuite/gas/i386/x86-64-optimize-5.s: Likewise.
4275 * testsuite/gas/i386/x86-64-optimize-6.d: Likewise.
4276 * testsuite/gas/i386/x86-64-optimize-6.s: Likewise.
4277
4278 2018-03-08 H.J. Lu <hongjiu.lu@intel.com>
4279
4280 * config/tc-i386.c (optimize_encoding): Also encode "clr reg64"
4281 as "xor reg32, reg32".
4282 * testsuite/gas/i386/x86-64-optimize-1.s: Add "clr reg64" tests.
4283 * testsuite/gas/i386/x86-64-optimize-1.d: Updated.
4284
4285 2018-03-08 H.J. Lu <hongjiu.lu@intel.com>
4286
4287 * NEWS: Mention -mold-gcc removal.
4288 * config/tc-i386.c (i386_error): Remove old_gcc_only.
4289 (old_gcc): Removed.
4290 (match_template): Remove old gcc support.
4291 (OPTION_MOLD_GCC): Removed.
4292 (OPTION_MRELAX_RELOCATIONS): Updated.
4293 (md_longopts): Remove OPTION_MOLD_GCC.
4294 (md_parse_option): Likewise.
4295 (md_show_usage): Remove -mold-gcc.
4296 * testsuite/gas/i386/general.s: Convert fsub/fdiv tests for old
4297 (<= 2.8.1) versions of gcc.
4298 * testsuite/gas/i386/intel.s: Likewise.
4299 * testsuite/gas/i386/general.l: Updated.
4300 * testsuite/gas/i386/intel-intel.d: Likewise.
4301 * testsuite/gas/i386/intel.d: Likewise.
4302 * testsuite/gas/i386/intel.e: Likewise.
4303 * testsuite/gas/i386/i386.exp: Don't pass -mold-gcc to general.
4304
4305 2018-03-08 Jan Beulich <jbeulich@suse.com>
4306
4307 * config/tc-i386.c (is_evex_encoding): New.
4308 (optimize_encoding, md_assemble, md_assemble,
4309 VEX_check_operands, build_modrm_byte): Use is_evex_encoding.
4310 (build_evex_prefix): Derive EVEX length field from actual
4311 operands if the template allows multiple ones.
4312
4313 2018-03-08 Jan Beulich <jbeulich@suse.com>
4314
4315 * config/tc-i386.c (build_modrm_byte): Make VexNDD handling cope
4316 with 3rd (immediate) operand.
4317
4318 2018-03-08 Jan Beulich <jbeulich@suse.com>
4319
4320 * config/tc-i386.c (XMMWORD_MNEM_SUFFIX, YMMWORD_MNEM_SUFFIX,
4321 ZMMWORD_MNEM_SUFFIX): Delete.
4322 (process_suffix): Drop their uses. Re-arrange final part of
4323 logic into a switch() statement. Drop special casing of
4324 cmpxchg8b.
4325
4326 2018-03-08 Jan Beulich <jbeulich@suse.com>
4327
4328 * config/tc-i386.c (match_template): Also match register
4329 operands 0 and 2 for 3-operand forms.
4330 * testsuite/gas/i386/unspec64.l, testsuite/gas/i386/unspec64.s:
4331 New.
4332 * testsuite/gas/i386/i386.exp: Run new test.
4333
4334 2018-03-08 Jan Beulich <jbeulich@suse.com>
4335
4336 * config/tc-i386.c (process_suffix): Do common part of register
4337 checks first.
4338
4339 2018-03-08 Jan Beulich <jbeulich@suse.com>
4340
4341 * config/tc-i386.c (parse_insn): Move success return up. Combine
4342 failure returns.
4343
4344 2018-03-08 Jan Beulich <jbeulich@suse.com>
4345
4346 * config/tc-i386.c (cpu_flags_match): Add GFNI check to AVX
4347 logic. Add respective logic for AVX512F.
4348 * testsuite/gas/i386/arch-avx-1.s: Add GFNI test.
4349 testsuite/gas/i386/arch-avx-1.d,
4350 testsuite/gas/i386/arch-avx-1-1.l,
4351 testsuite/gas/i386/arch-avx-1-2.l,
4352 testsuite/gas/i386/arch-avx-1-3.l,
4353 testsuite/gas/i386/arch-avx-1-4.l,
4354 testsuite/gas/i386/arch-avx-1-5.l,
4355 testsuite/gas/i386/arch-avx-1-6.l: Adjust expectations.
4356 * testsuite/gas/i386/arch-avx-1-7.l,
4357 testsuite/gas/i386/arch-avx-1-7.s,
4358 testsuite/gas/i386/arch-avx-1-8.l,
4359 testsuite/gas/i386/arch-avx-1-8.s,
4360 testsuite/gas/i386/avx512f-plain.l,
4361 testsuite/gas/i386/avx512f-plain.s,
4362 testsuite/gas/i386/avx512vl-plain.l,
4363 testsuite/gas/i386/avx512vl-plain.s: New.
4364 * testsuite/gas/i386/i386.exp: Run new tests.
4365
4366 2018-03-08 Jan Beulich <jbeulich@suse.com>
4367
4368 * config/tc-i386.c (cpu_flags_match): Move AVX512VL check ahead.
4369
4370 2018-03-08 Jan Beulich <jbeulich@suse.com>
4371
4372 * config/tc-i386.c (CPU_FLAGS_32BIT_MATCH): Delete.
4373 (cpu_flags_match): Use CPU_FLAGS_ARCH_MATCH instead of
4374 CPU_FLAGS_32BIT_MATCH.
4375
4376 2018-03-08 Jan Beulich <jbeulich@suse.com>
4377
4378 * config/tc-i386.c (CPU_FLAGS_AES_MATCH, CPU_FLAGS_AVX_MATCH,
4379 CPU_FLAGS_PCLMUL_MATCH): Delete.
4380 (CPU_FLAGS_32BIT_MATCH): Drop uses of deleted CPU_FLAGS_*_MATCH.
4381 (cpu_flags_match): Combine AVX checks into
4382 single if().
4383
4384 2018-03-08 Jan Beulich <jbeulich@suse.com>
4385
4386 * config/tc-i386.c (cpu_flags_match): Drop "else" branches
4387 setting CPU_FLAGS_ARCH_MATCH.
4388
4389 2018-03-08 Jan Beulich <jbeulich@suse.com>
4390
4391 * config/tc-i386.c (md_assemble): Extend SSE check conditional.
4392 * testsuite/gas/i386/ilp32/x86-64-sse-check-none.d,
4393 testsuite/gas/i386/ilp32/x86-64-sse-check-warn.d,
4394 testsuite/gas/i386/ilp32/x86-64-sse-check.d,
4395 testsuite/gas/i386/sse-check-none.d,
4396 testsuite/gas/i386/sse-check-warn.d,
4397 testsuite/gas/i386/x86-64-sse-check.d,
4398 testsuite/gas/i386/x86-64-sse-check-none.d,
4399 testsuite/gas/i386/x86-64-sse-check-warn.d: Refer to sse-check.d.
4400 * testsuite/gas/i386/sse-check.s: Add AES, GFNI, and PCLMUL
4401 tests.
4402 * testsuite/gas/i386/sse-check-none.s: Replace code by inclusion
4403 of sse-check.s.
4404 * testsuite/gas/i386/sse-check.d: Adjust expectations.
4405 * testsuite/gas/i386/sse-check-error.l,
4406 testsuite/gas/i386/x86-64-sse-check-error.l: Likewise.
4407 * testsuite/gas/i386/sse-check-warn.e: Likewise.
4408
4409 2018-03-08 Jan Beulich <jbeulich@suse.com>
4410
4411 * config/tc-i386.c (operand_size_match): Drop / replace uses of
4412 .floatd.
4413
4414 2018-03-08 Jan Beulich <jbeulich@suse.com>
4415
4416 * testsuite/gas/i386/intel-intel.d: New.
4417 * testsuite/gas/i386/i386.exp: Run new test.
4418
4419 2018-03-08 Jan Beulich <jbeulich@suse.com>
4420
4421 * config/tc-i386.c (process_operands): Access operands only
4422 after operand count assertion. Sanitize warning text. Fix
4423 indentation.
4424 * testsuite/gas/i386/avx512_4fmaps-warn.l,
4425 gas/i386/x86-64-avx512_4fmaps-warn.l: Adjust expectations.
4426
4427 2018-03-08 Jan Beulich <jbeulich@suse.com>
4428
4429 * testsuite/gas/i386/x86-64-movd.s: Drop bogus vmovd memory forms.
4430 * testsuite/gas/i386/x86-64-movd.d,
4431 testsuite/gas/i386/x86-64-movd-intel.d: Adjust expectations.
4432
4433 2018-03-08 Jan Beulich <jbeulich@suse.com>
4434
4435 * config/tc-i386.c (operand_type_and_not): New.
4436 (build_modrm_byte): Use it to prevent clearing unrelated bits.
4437
4438 2018-03-08 Alan Modra <amodra@gmail.com>
4439
4440 * config/tc-ppc.c (ppc_handle_align): Correct last patch. Really
4441 don't emit a group terminating nop for power9. Simplify cpu
4442 tests.
4443
4444 2018-03-08 Alan Modra <amodra@gmail.com>
4445
4446 * config/tc-ppc.c (ppc_handle_align): Don't emit a group
4447 terminating nop for power9.
4448
4449 2018-03-07 H.J. Lu <hongjiu.lu@intel.com>
4450
4451 PR gas/22874
4452 * config/tc-i386.c (f32_5): Removed.
4453 (f32_8): Likewise.
4454 (f32_9): Likewise.
4455 (f32_10): Likewise.
4456 (f32_11): Likewise.
4457 (f32_12): Likewise.
4458 (f32_13): Likewise.
4459 (f32_14): Likewise.
4460 (f16_5): Likewise.
4461 (f16_6): Likewise.
4462 (f16_7): Likewise.
4463 (f16_8): Likewise.
4464 (jump_31): Likewise.
4465 (alt64_11): Likewise.
4466 (alt64_patt): Likewise.
4467 (jump_disp8): New.
4468 (jump32_disp32): Likewise.
4469 (jump16_disp32): Likewise.
4470 (alt_11): Likewise.
4471 (f32_patt): Updated.
4472 (f16_patt): Likewise.
4473 (alt_patt): Add alt_11.
4474 (i386_align_code): Merged with ...
4475 (i386_generate_nops): This. Rewritten.
4476 (fits_in_imm7): Moved before i386_generate_nops.
4477 (fits_in_imm31): Likewise.
4478 * config/tc-i386.h (MAX_MEM_FOR_RS_ALIGN_CODE): Updated to
4479 4095.
4480 (i386_align_code): Removed.
4481 (HANDLE_ALIGN): Rewritten with i386_generate_nops.
4482 * doc/as.texinfo: Update limits of control byte for x86 .nops
4483 directive.
4484 * testsuite/gas/i386/i386.exp: Run nops-7 and x86-64-nops-7.
4485 * gas/testsuite/gas/i386/noavx-3.l: Updated.
4486 * gas/testsuite/gas/i386/nop-1.d: Likewise.
4487 * gas/testsuite/gas/i386/nop-1.s: Likewise.
4488 * gas/testsuite/gas/i386/nop-2.d: Likewise.
4489 * gas/testsuite/gas/i386/nop-2.s: Likewise.
4490 * gas/testsuite/gas/i386/nop-3.d: Likewise.
4491 * gas/testsuite/gas/i386/nop-4.d: Likewise.
4492 * gas/testsuite/gas/i386/nop-5.d: Likewise.
4493 * gas/testsuite/gas/i386/nop-5.s: Likewise.
4494 * gas/testsuite/gas/i386/nop-6.d: Likewise.
4495 * gas/testsuite/gas/i386/nop-bad-1.l: Likewise.
4496 * gas/testsuite/gas/i386/nops-1-core2.d: Likewise.
4497 * gas/testsuite/gas/i386/nops-1-i386-i686.d: Likewise.
4498 * gas/testsuite/gas/i386/nops-1-i386.d: Likewise.
4499 * gas/testsuite/gas/i386/nops-1-i686.d: Likewise.
4500 * gas/testsuite/gas/i386/nops-1-k8.d: Likewise.
4501 * gas/testsuite/gas/i386/nops-1.d: Likewise.
4502 * gas/testsuite/gas/i386/nops-2-core2.d: Likewise.
4503 * gas/testsuite/gas/i386/nops-2-i386.d: Likewise.
4504 * gas/testsuite/gas/i386/nops-2.d: Likewise.
4505 * gas/testsuite/gas/i386/nops-3-i386.d: Likewise.
4506 * gas/testsuite/gas/i386/nops-3-i686.d: Likewise.
4507 * gas/testsuite/gas/i386/nops-3.d: Likewise.
4508 * gas/testsuite/gas/i386/nops-4-i386.d: Likewise.
4509 * gas/testsuite/gas/i386/nops-4-i686.d: Likewise.
4510 * gas/testsuite/gas/i386/nops-4.d: Likewise.
4511 * gas/testsuite/gas/i386/nops-4a-i686.d: Likewise.
4512 * gas/testsuite/gas/i386/nops-5-i686.d: Likewise.
4513 * gas/testsuite/gas/i386/nops-5.d: Likewise.
4514 * gas/testsuite/gas/i386/nops-6.d: Likewise.
4515 * gas/testsuite/gas/i386/nops16-1.d: Likewise.
4516 * gas/testsuite/gas/i386/x86-64-nop-1.d: Likewise.
4517 * gas/testsuite/gas/i386/x86-64-nop-2.d: Likewise.
4518 * gas/testsuite/gas/i386/x86-64-nop-5.d: Likewise.
4519 * gas/testsuite/gas/i386/x86-64-nops-1-core2.d: Likewise.
4520 * gas/testsuite/gas/i386/x86-64-nops-1-g64.d: Likewise.
4521 * gas/testsuite/gas/i386/x86-64-nops-1-k8.d: Likewise.
4522 * gas/testsuite/gas/i386/x86-64-nops-1-pentium.d: Likewise.
4523 * gas/testsuite/gas/i386/x86-64-nops-1.d: Likewise.
4524 * gas/testsuite/gas/i386/x86-64-nops-2.d: Likewise.
4525 * gas/testsuite/gas/i386/x86-64-nops-3.d: Likewise.
4526 * gas/testsuite/gas/i386/x86-64-nops-4-core2.d: Likewise.
4527 * gas/testsuite/gas/i386/x86-64-nops-4-k8.d: Likewise.
4528 * gas/testsuite/gas/i386/x86-64-nops-4.d: Likewise.
4529 * gas/testsuite/gas/i386/x86-64-nops-5-k8.d: Likewise.
4530 * gas/testsuite/gas/i386/x86-64-nops-5.d: Likewise.
4531 * gas/testsuite/gas/i386/ilp32/x86-64-nops-1-core2.d: Likewise.
4532 * gas/testsuite/gas/i386/ilp32/x86-64-nops-1-k8.d: Likewise.
4533 * gas/testsuite/gas/i386/ilp32/x86-64-nops-1-pentium.d: Likewise.
4534 * gas/testsuite/gas/i386/ilp32/x86-64-nops-1.d: Likewise.
4535 * gas/testsuite/gas/i386/ilp32/x86-64-nops-2.d: Likewise.
4536 * gas/testsuite/gas/i386/ilp32/x86-64-nops-3.d: Likewise.
4537 * gas/testsuite/gas/i386/ilp32/x86-64-nops-4-core2.d: Likewise.
4538 * gas/testsuite/gas/i386/ilp32/x86-64-nops-4-k8.d: Likewise.
4539 * gas/testsuite/gas/i386/ilp32/x86-64-nops-4.d: Likewise.
4540 * gas/testsuite/gas/i386/ilp32/x86-64-nops-5-k8.d: Likewise.
4541 * gas/testsuite/gas/i386/ilp32/x86-64-nops-5.d: Likewise.
4542 * gas/testsuite/gas/i386/nops-7.d: New file.
4543 * gas/testsuite/gas/i386/nops-7.s: Likewise.
4544 * gas/testsuite/gas/i386/x86-64-nops-7.d: Likewise.
4545
4546 2018-03-07 Alan Modra <amodra@gmail.com>
4547
4548 * testsuite/gas/ppc/aix.exp: Run for rs6000 too.
4549 * testsuite/gas/ppc/ppc.exp: Run more tests for non-ELF targets.
4550 * testsuite/gas/ppc/machine.d: Don't run for PE targets.
4551
4552 2018-03-02 Thomas Preud'homme <thomas.preudhomme@arm.com>
4553
4554 * config/tc-arm.c (md_begin): Add NULL pointer check before
4555 dereferencing march_ext_opt.
4556
4557 2018-03-01 Thomas Preud'homme <thomas.preudhomme@arm.com>
4558
4559 * config/tc-arm.c (cpu_variant, arm_arch_used, thumb_arch_used,
4560 legacy_cpu, legacy_fpu, mcpu_cpu_opt, dyn_mcpu_ext_opt,
4561 mcpu_fpu_opt, march_cpu_opt, dyn_march_ext_opt, march_fpu_opt,
4562 mfpu_opt, object_arch, selected_cpu): Comment meaning of variables.
4563 (dyn_mcpu_ext_opt): Also rename into ...
4564 (mcpu_ext_opt): This.
4565 (dyn_march_ext_opt): Also rename into ...
4566 (march_ext_opt): This.
4567 (object_arch): Also rename into ...
4568 (selected_object_arch): This and make it a plain arm_feature_set
4569 structure.
4570 (selected_arch, selected_ext, selected_fpu): New static variables.
4571 (mark_feature_used): Fix comments, feature is marked as used iff it is
4572 currently allowed.
4573 (do_bx): Adapt to change in name and type of object_arch.
4574 (md_begin): Set selected_arch rather than mcpu_cpu_opt, selected_ext
4575 rather than dyn_mcpu_ext_opt and selected_fpu rather than mfpu_opt.
4576 Remove dead code to set default FPU if architecture version is greater
4577 than 5. Set all CPU bits of cpu_variant directly in autodection
4578 leaving mcpu_cpu_opt, selected_arch and selected_cpu unset.
4579 (arm_parse_extension): Take extension feature set pointer parameter by
4580 value rather than by pointer. Remove allocation code. Adapt code
4581 accordingly.
4582 (arm_parse_cpu): Adapt to variable renaming and changes in
4583 arm_parse_extension () signature.
4584 (arm_parse_arch): Likewise.
4585 (aeabi_set_public_attributes): Also set selected_arch and selected_ext
4586 in addition to selected_cpu. Set flags_arch and flags_ext from them
4587 instead of selected_cpu. Adapt to variables renaming and type change.
4588 (arm_md_post_relax): Adapt to variable renaming.
4589 (s_arm_cpu): Set selcted_cpu_cpu and selected_ext instead of
4590 mcpu_cpu_opt and dyn_mcpu_ext_opt. Set selected_cpu from them and
4591 cpu_variant from selected_cpu and selected_fpu.
4592 (s_arm_arch): Likewise.
4593 (s_arm_object_arch): Adapt to variable renaming.
4594 (s_arm_arch_extension): Use ARM_CPU_IS_ANY instead of checking feature
4595 set against arm_any. Check selected_arch rather than *mcpu_cpu_opt.
4596 Set selected_ext rather than *dyn_mcpu_ext_opt and remove allocation
4597 code.
4598 (s_arm_fpu): Set selected_fpu instead of mfpu_opt. Set all CPU feature
4599 bits if in autodetection mode.
4600
4601 2018-03-01 H.J. Lu <hongjiu.lu@intel.com>
4602
4603 * config/tc-i386.c (optimize_encoding): Optimize AVX256 and
4604 AVX512 vpsub[bwdq] instructions.
4605 * testsuite/gas/i386/optimize-1.s: Add tests for AVX256 and
4606 AVX512 vpsub[bwdq] instructions.
4607 * testsuite/gas/i386/x86-64-optimize-2.s: Likewise.
4608 * testsuite/gas/i386/optimize-1.d: Updated.
4609 * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
4610
4611 2018-03-01 Alan Modra <amodra@gmail.com>
4612
4613 * configure.ac (ALL_LINGUAS): Add uk. Sort.
4614 * configure: Regenerate.
4615
4616 2018-02-27 H.J. Lu <hongjiu.lu@intel.com>
4617
4618 * NEWS: Rename .nop to .nops.
4619 * doc/as.texinfo: Likewise.
4620 * read.c (potable): Add "nops". Remove "nop".
4621 (s_nop): Renamed to ...
4622 (s_nops): This.
4623 * read.h (s_nop): Renamed to ...
4624 (s_nops): This.
4625 * write.c (cvt_frag_to_fill): Rename .nop to .nops.
4626 (md_generate_nops): Likewise.
4627 (relax_segment): Likewise.
4628 * testsuite/gas/i386/nop-1.d: Updated.
4629 * testsuite/gas/i386/nop-1.s: Likewise.
4630 * testsuite/gas/i386/nop-2.d: Likewise.
4631 * testsuite/gas/i386/nop-2.s: Likewise.
4632 * testsuite/gas/i386/nop-3.d: Likewise.
4633 * testsuite/gas/i386/nop-3.s: Likewise.
4634 * testsuite/gas/i386/nop-4.d: Likewise.
4635 * testsuite/gas/i386/nop-4.s: Likewise.
4636 * testsuite/gas/i386/nop-5.d: Likewise.
4637 * testsuite/gas/i386/nop-5.s: Likewise.
4638 * testsuite/gas/i386/nop-6.d: Likewise.
4639 * testsuite/gas/i386/nop-6.s: Likewise.
4640 * testsuite/gas/i386/nop-bad-1.l: Likewise.
4641 * testsuite/gas/i386/nop-bad-1.s: Likewise.
4642 * testsuite/gas/i386/x86-64-nop-1.d: Likewise.
4643 * testsuite/gas/i386/x86-64-nop-2.d: Likewise.
4644 * testsuite/gas/i386/x86-64-nop-3.d: Likewise.
4645 * testsuite/gas/i386/x86-64-nop-4.d: Likewise.
4646 * testsuite/gas/i386/x86-64-nop-5.d: Likewise.
4647 * testsuite/gas/i386/x86-64-nop-6.d: Likewise.
4648
4649 2018-02-27 H.J. Lu <hongjiu.lu@intel.com>
4650
4651 PR gas/22871
4652 * NEWS: Mention -O[2|s].
4653 * config/tc-i386.c (_i386_insn): Add no_optimize.
4654 (optimize): New.
4655 (optimize_for_space): Likewise.
4656 (fits_in_imm7): New function.
4657 (fits_in_imm31): Likewise.
4658 (optimize_encoding): Likewise.
4659 (md_assemble): Call optimize_encoding to optimize encoding.
4660 (parse_insn): Handle {nooptimize}.
4661 (md_shortopts): Append "O::".
4662 (md_parse_option): Handle -On.
4663 * doc/c-i386.texi: Document -O0, -O, -O1, -O2 and -Os as well
4664 as {nooptimize}.
4665 * testsuite/gas/cfi/cfi-x86_64.d: Pass -O0 to assembler.
4666 * testsuite/gas/i386/ilp32/cfi/cfi-x86_64.d: Likewise.
4667 * testsuite/gas/i386/i386.exp: Run optimize-1, optimize-2,
4668 optimize-3, x86-64-optimize-1, x86-64-optimize-2,
4669 x86-64-optimize-3 and x86-64-optimize-4.
4670 * testsuite/gas/i386/optimize-1.d: New file.
4671 * testsuite/gas/i386/optimize-1.s: Likewise.
4672 * testsuite/gas/i386/optimize-2.d: Likewise.
4673 * testsuite/gas/i386/optimize-2.s: Likewise.
4674 * testsuite/gas/i386/optimize-3.d: Likewise.
4675 * testsuite/gas/i386/optimize-3.s: Likewise.
4676 * testsuite/gas/i386/x86-64-optimize-1.s: Likewise.
4677 * testsuite/gas/i386/x86-64-optimize-1.d: Likewise.
4678 * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
4679 * testsuite/gas/i386/x86-64-optimize-2.s: Likewise.
4680 * testsuite/gas/i386/x86-64-optimize-3.d: Likewise.
4681 * testsuite/gas/i386/x86-64-optimize-3.s: Likewise.
4682 * testsuite/gas/i386/x86-64-optimize-4.d: Likewise.
4683 * testsuite/gas/i386/x86-64-optimize-4.s: Likewise.
4684
4685 2018-02-27 Nick Clifton <nickc@redhat.com>
4686
4687 * po/ru.po: Updated Russian translation.
4688
4689 2018-02-26 Maciej W. Rozycki <macro@mips.com>
4690
4691 * doc/as.texinfo (Pseudo Ops): Clean up `.dc' and `.ds'
4692 descriptions.
4693
4694 2018-02-26 Nick Clifton <nickc@redhat.com>
4695
4696 * doc/as.texinfo (Dc): Fix typo.
4697
4698 2018-02-26 Alan Modra <amodra@gmail.com>
4699
4700 * testsuite/gas/mips/reginfo-2.l: Update.
4701
4702 2018-02-23 Alan Modra <amodra@gmail.com>
4703
4704 * testsuite/gas/mips/reginfo-2.l: Update.
4705
4706 2018-02-23 Nick Clifton <nickc@redhat.com>
4707
4708 * doc/as.texinfo (Pseudo Ops): Add nodes for .dc, .dcb and .ds.
4709
4710 2018-02-23 Kuan-Lin Chen <kuanlinchentw@gmail.com>
4711
4712 * config/tc-nds32.c (ict_model): New function. Hook new
4713 directive .ict_model.
4714 (nds32_insert_relax_entry): Tag the bits of entry relocation
4715 for .ict_model.
4716
4717 2018-02-22 H.J. Lu <hongjiu.lu@intel.com>
4718
4719 * config/tc-i386.c (_i386_insn): Add rex_encoding.
4720 (md_assemble): When i.rex_encoding is true, generate a REX byte
4721 if possible.
4722 (parse_insn): Set i.rex_encoding for {rex}.
4723 * doc/c-i386.texi: Document {rex}.
4724 * testsuite/gas/i386/x86-64-pseudos.s: Add {rex} tests.
4725 * testsuite/gas/i386/x86-64-pseudos.d: Updated.
4726
4727 2018-02-22 A. Wilcox <awilfox@adelielinux.org>
4728
4729 PR 22014
4730 * config/tc-mips.c (mips_lookup_insn): Use memmove to strip the
4731 instruction size suffix.
4732
4733 2018-02-20 Maciej W. Rozycki <macro@mips.com>
4734
4735 * testsuite/gas/mips/mips16-branch-reloc-4.d: New test.
4736 * testsuite/gas/mips/mips16-branch-reloc-5.d: New test.
4737 * testsuite/gas/mips/mips16-branch-reloc-4.s: New test source.
4738 * testsuite/gas/mips/mips16-branch-reloc-5.s: New test source.
4739 * testsuite/gas/mips/mips.exp: Run the new tests.
4740
4741 2018-02-20 Max Filippov <jcmvbkbc@gmail.com>
4742
4743 * config/tc-xtensa.c (struct litpool_frag): Add new field
4744 literal_count.
4745 (MAX_AUTO_POOL_LITERALS, MAX_EXPLICIT_POOL_LITERALS)
4746 (MAX_POOL_LITERALS): New macro definitions.
4747 (auto_litpool_limit): Initialize to 0.
4748 (md_parse_option): Set auto_litpool_limit in the presence of
4749 --auto-litpools option.
4750 (xtensa_maybe_create_literal_pool_frag): Zero-initialize
4751 literal_count field.
4752 (xg_find_litpool): New function. Make sure that found literal
4753 pool size is within the limit.
4754 (xtensa_move_literals): Extract literal pool search code into
4755 the new function.
4756 * testsuite/gas/xtensa/all.exp: Add auto-litpools-2 test.
4757 * testsuite/gas/xtensa/auto-litpools-2.d: New file.
4758 * testsuite/gas/xtensa/auto-litpools-2.s: New file.
4759 * testsuite/gas/xtensa/auto-litpools.d: Fix up changed
4760 addresses.
4761 * testsuite/gas/xtensa/auto-litpools.s: Change literal value so
4762 that objdump doesn't get out of sync.
4763
4764 2018-02-20 Thomas Preud'homme <thomas.preudhomme@arm.com>
4765
4766 * doc/c-arm.texi (.arch_extension): Mention extensions it accepts are
4767 also the same as -march.
4768
4769 2018-02-17 H.J. Lu <hongjiu.lu@intel.com>
4770
4771 * NEWS: Mention .nop directive.
4772 * as.h (_relax_state): Add rs_space_nop and rs_fill_nop.
4773 * read.c (potable): Add .nop.
4774 (s_nop): New function.
4775 * read.h (s_nop): New prototype.
4776 * write.c (cvt_frag_to_fill): Handle rs_space_nop and
4777 rs_fill_nop.
4778 (md_generate_nops): New function.
4779 (relax_segment): Likewise.
4780 (write_contents): Use md_generate_nops for rs_fill_nop.
4781 * config/tc-i386.c (alt64_11): New.
4782 (alt64_patt): Likewise.
4783 (md_convert_frag): Handle rs_space_nop.
4784 (i386_output_nops): New function.
4785 (i386_generate_nops): Likewise.
4786 (i386_align_code): Call i386_output_nops.
4787 * config/tc-i386.h (i386_generate_nops): New.
4788 (md_generate_nops): Likewise.
4789 * doc/as.texinfo: Document .nop directive.
4790 * testsuite/gas/i386/i386.exp: Run .nop directive tests.
4791 * testsuite/gas/i386/nop-1.d: New file.
4792 * testsuite/gas/i386/nop-1.s: Likewise.
4793 * testsuite/gas/i386/nop-2.d: Likewise.
4794 * testsuite/gas/i386/nop-2.s: Likewise.
4795 * testsuite/gas/i386/nop-3.d: Likewise.
4796 * testsuite/gas/i386/nop-3.s: Likewise.
4797 * testsuite/gas/i386/nop-4.d: Likewise.
4798 * testsuite/gas/i386/nop-4.s: Likewise.
4799 * testsuite/gas/i386/nop-5.d: Likewise.
4800 * testsuite/gas/i386/nop-5.s: Likewise.
4801 * testsuite/gas/i386/nop-6.d: Likewise.
4802 * testsuite/gas/i386/nop-6.s: Likewise.
4803 * testsuite/gas/i386/nop-bad-1.l: Likewise.
4804 * testsuite/gas/i386/nop-bad-1.s: Likewise.
4805 * testsuite/gas/i386/x86-64-nop-1.d: Likewise.
4806 * testsuite/gas/i386/x86-64-nop-2.d: Likewise.
4807 * testsuite/gas/i386/x86-64-nop-3.d: Likewise.
4808 * testsuite/gas/i386/x86-64-nop-4.d: Likewise.
4809 * testsuite/gas/i386/x86-64-nop-5.d: Likewise.
4810 * testsuite/gas/i386/x86-64-nop-6.d: Likewise.
4811
4812 2018-02-15 Tamar Christina <tamar.christina@arm.com>
4813
4814 * config/tc-arm.c (cpu_arch_ver): Renumber ARM_ARCH_V8_4A.
4815 * testsuite/gas/arm/attr-march-armv8_4-a.d: New.
4816
4817 2018-02-13 Max Filippov <jcmvbkbc@gmail.com>
4818
4819 * config/tc-xtensa.c (xg_find_best_trampoline): Skip trampoline
4820 frag that contains source address.
4821
4822 2018-02-13 Nick Clifton <nickc@redhat.com>
4823
4824 PR 22773
4825 * config/tc-arm.c (md_apply_fix): Test Rn field of Thumb ORR
4826 instruction before assuming that it is a MOV instruction.
4827 * testsuite/gas/arm/pr22773.s: New test.
4828 * testsuite/gas/arm/pr22773.d: New test driver.
4829 * testsuite/gas/arm/pr22773.l: New expected output.
4830
4831 2018-02-13 H.J. Lu <hongjiu.lu@intel.com>
4832
4833 PR gas/22791
4834 * config/tc-i386.c (need_plt32_p): New function.
4835 (output_jump): Generate BFD_RELOC_X86_64_PLT32 if possible.
4836 (md_estimate_size_before_relax): Likewise.
4837 * testsuite/gas/i386/reloc64.d: Updated.
4838 * testsuite/gas/i386/x86-64-jump.d: Likewise.
4839 * testsuite/gas/i386/x86-64-mpx-branch-1.d: Likewise.
4840 * testsuite/gas/i386/x86-64-mpx-branch-2.d: Likewise.
4841 * testsuite/gas/i386/x86-64-relax-2.d: Likewise.
4842 * testsuite/gas/i386/x86-64-relax-3.d: Likewise.
4843 * testsuite/gas/i386/ilp32/reloc64.d: Likewise.
4844 * testsuite/gas/i386/ilp32/x86-64-branch.d: Likewise.
4845
4846 2018-02-13 Maciej W. Rozycki <macro@mips.com>
4847
4848 * testsuite/gas/mips/loongson-3a-2.d: Rename test.
4849
4850 2018-02-13 Nick Clifton <nickc@redhat.com>
4851
4852 PR 22823
4853 * config/obj-elf.c (elf_pseudo_table): Remove now redundant
4854 casts.
4855 (obj_elf_vtable_inherit): Rename to obj_elf_get_vtable_inherit.
4856 (obj_elf_vtable_inherit): New stub function that calls
4857 obj_elf_get_vtable_inherit.
4858 (obj_elf_vtable_entry): Rename to obj_elf_get_vtable_entry.
4859 (obj_elf_vtable_entry): New stub function that calls
4860 obj_elf_get_vtable_entry.
4861 * config/obj-elf.h (obj_elf_vtable_inherit): Update prototype.
4862 (obj_elf_vtable_entry) Likewise.
4863 (obj_elf_get_vtable_inherit) Likewise.
4864 (obj_elf_get_vtable_entry) Likewise.
4865 * config/tc-arm.c (md_pseudo_table): Remove now redundant cast.
4866 * config/tc-i386c (md_pseudo_table): Likewise.
4867 * config/tc-hppa.c (pa_vtable_entry): Call
4868 obj_elf_get_vtable_entry.
4869 (pa_vtable_inherit): Call obj_elf_get_vtable_inherit.
4870 * config/tc-mips.c (s_mips_file): Replace call to dwarf2_get_file
4871 with call to dwarf2_get_filename.
4872 * dwarf2dbg.c (dwarf2_directive_file): Rename to
4873 dwarf2_directive_filename.
4874 (dwarf2_directive_file): New stub function that calls
4875 dwarf2_directive_filename.
4876 * dwarf2dbg.h: Prototype dwarf2_directive_filename.
4877
4878 2018-02-12 Maciej W. Rozycki <macro@mips.com>
4879
4880 * testsuite/gas/mips/reginfo-2-n32.d: Add `--no-pad-sections' to
4881 `as' flags.
4882
4883 2018-02-12 Henry Wong <henry@stuffedcow.net>
4884
4885 * testsuite/gas/mips/r6.d: Update for "sigrie" encoding fix.
4886 * testsuite/gas/mips/r6-n32.d: Likewise.
4887 * testsuite/gas/mips/r6-n64.d: Likewise.
4888
4889 2018-02-12 Nick Clifton <nickc@redhat.com>
4890
4891 * po/ru.po: Updated Russian translation.
4892
4893 2018-02-08 Alan Modra <amodra@gmail.com>
4894
4895 PR 22819
4896 * config/tc-ppc.c (md_assemble): Rewrite insn alignment checking.
4897 (ppc_frag_check): Likewise.
4898 * testsuite/gas/ppc/misalign.d,
4899 * testsuite/gas/ppc/misalign.l,
4900 * testsuite/gas/ppc/misalign.s: New test.
4901 * testsuite/gas/ppc/misalign2.d,
4902 * testsuite/gas/ppc/misalign2.s: New test.
4903 * testsuite/gas/ppc/ppc.exp: Run them.
4904
4905 2018-02-05 Maciej W. Rozycki <macro@mips.com>
4906
4907 * config/tc-riscv.c (riscv_handle_implicit_zero_offset): Rename
4908 `expr' parameter to `ep'.
4909
4910 2018-02-05 Maciej W. Rozycki <macro@mips.com>
4911
4912 * testsuite/gas/mips/reginfo-2.d: New test.
4913 * testsuite/gas/mips/reginfo-2-n32.d: New test.
4914 * testsuite/gas/mips/reginfo-2.l: New test stderr output.
4915 * testsuite/gas/mips/reginfo-2.s: New test source.
4916 * testsuite/gas/mips/mips.exp: Run the new tests.
4917
4918 2018-02-05 Nick Clifton <nickc@redhat.com>
4919
4920 * po/ru.po: Updated Russian translation.
4921
4922 2018-01-31 Alan Modra <amodra@gmail.com>
4923
4924 PR 22714
4925 * app.c (last_char): New static var.
4926 (struct app_save): Add last_char field.
4927 (app_push, app_pop): Handle it.
4928 (do_scrub_chars): Use last_char in test for "\@". Set last_char.
4929
4930 2018-01-29 Eric Botcazou <ebotcazou@adacore.com>
4931
4932 PR gas/22738
4933 * config/tc-sparc.h (sparc_mach): Declare.
4934 (TARGET_MACH): Define to above.
4935 * config/tc-sparc.c (sparc_mach): New function.
4936 (sparc_md_end): Minor tweak.
4937
4938 2018-01-29 Nick Clifton <nickc@redhat.com>
4939
4940 * po/ru.po: Updated Russian translation.
4941
4942 2018-01-26 Maciej W. Rozycki <macro@mips.com>
4943
4944 * configure.tgt: Use generic emulation for `mips-*-windiss',
4945 overriding the blanket choice made for `*-*-windiss'.
4946
4947 2018-01-26 Maciej W. Rozycki <macro@mips.com>
4948
4949 * configure.tgt: Use `mips-*-sysv4*' rather than
4950 `mips-*-sysv4*MP*'.
4951
4952 2018-01-24 Renlin Li <renlin.li@arm.com>
4953
4954 * config/tc-aarch64.c (reloc_table): add entries for
4955 BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
4956 BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
4957 BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
4958 BFD_RELOC_AARCH64_MOVW_PREL_G3.
4959 (process_movw_reloc_info): Supports newly added MOVW_PREL relocations.
4960 (md_apply_fix): Likewise
4961 * testsuite/gas/aarch64/prel_g0.s: New.
4962 * testsuite/gas/aarch64/prel_g0.d: New.
4963 * testsuite/gas/aarch64/prel_g0_nc.s: New.
4964 * testsuite/gas/aarch64/prel_g0_nc.d: New.
4965 * testsuite/gas/aarch64/prel_g1.s: New.
4966 * testsuite/gas/aarch64/prel_g1.d: New.
4967 * testsuite/gas/aarch64/prel_g1_nc.s: New.
4968 * testsuite/gas/aarch64/prel_g1_nc.d: New.
4969 * testsuite/gas/aarch64/prel_g2.s: New.
4970 * testsuite/gas/aarch64/prel_g2.d: New.
4971 * testsuite/gas/aarch64/prel_g2_nc.s: New.
4972 * testsuite/gas/aarch64/prel_g2_nc.d: New.
4973 * testsuite/gas/aarch64/prel_g3.s: New.
4974 * testsuite/gas/aarch64/prel_g3.d: New.
4975
4976 2018-01-23 Maciej W. Rozycki <macro@mips.com>
4977
4978 * configure.ac: Also set `mips_default_abi' to N32_ABI for
4979 `mips64*-ps2-elf*'.
4980 * configure: Regenerate.
4981
4982 2018-01-23 Maciej W. Rozycki <macro@mips.com>
4983
4984 * config/tc-mips.c (options): Remove OPTION_COMPAT_ARCH_BASE
4985 enum value.
4986
4987 2018-01-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
4988
4989 * config/tc-i386.c (cpu_arch): Add .pconfig.
4990 * doc/c-i386.texi: Document .pconfig.
4991 * testsuite/gas/i386/i386.exp: Add PCONFIG tests.
4992 * testsuite/gas/i386/pconfig-intel.d: New test.
4993 * testsuite/gas/i386/pconfig.d: Likewise.
4994 * testsuite/gas/i386/pconfig.s: Likewise.
4995 * testsuite/gas/i386/x86-64-pconfig-intel.d: Likewise.
4996 * testsuite/gas/i386/x86-64-pconfig.d: Likewise.
4997 * testsuite/gas/i386/x86-64-pconfig.s: Likewise.
4998
4999 2018-01-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
5000
5001 * config/tc-i386.c (cpu_arch): Add .wbnoinvd.
5002 * doc/c-i386.texi: Document .wbnoinvd.
5003 * testsuite/gas/i386/i386.exp: Add WBNOINVD tests.
5004 * testsuite/gas/i386/wbnoinvd-intel.d: New test.
5005 * testsuite/gas/i386/wbnoinvd.d: Likewise.
5006 * testsuite/gas/i386/wbnoinvd.s: Likewise.
5007 * testsuite/gas/i386/x86-64-wbnoinvd-intel.d: Likewise.
5008 * testsuite/gas/i386/x86-64-wbnoinvd.d: Likewise.
5009 * testsuite/gas/i386/x86-64-wbnoinvd.s: Likewise.
5010
5011 2018-01-23 Maciej W. Rozycki <macro@mips.com>
5012
5013 * config/tc-mips.c (md_show_usage): Correctly indicate the
5014 configuration-specific default ABI.
5015
5016 2018-01-23 Maciej W. Rozycki <macro@mips.com>
5017
5018 * config/tc-mips.c (md_show_usage): Report `-mmips16e2' and
5019 `-mno-mips16e2' options.
5020
5021 2018-01-22 Maciej W. Rozycki <macro@mips.com>
5022
5023 * doc/c-mips.texi (MIPS ASE Instruction Generation Overrides):
5024 Correct syntax of the `.set nomips16e2' directive description.
5025
5026 2018-01-22 Oleg Endo <olegendo@gcc.gnu.org>
5027
5028 PR 22737
5029 * config/tc-rx.c (rx_start_line): Handle escaped double-quote character.
5030 * testsuite/gas/rx/pr22737.s: New test.
5031 * testsuite/gas/rx/pr22737.d: Likewise.
5032 * testsuite/gas/rx/rx.exp: Run the new test.
5033
5034 2018-01-19 Thomas Preud'homme <thomas.preudhomme@arm.com>
5035
5036 * config/tc-arm.c (ToC macro): Remove spurious comment.
5037 (ToU macro): Likewise.
5038
5039 2018-01-17 Jim Wilson <jimw@sifive.com>
5040
5041 * config/tc-riscv.c (validate_riscv_insn) <'z'>: New.
5042 (riscv_ip) <'z'>: New.
5043
5044 2018-01-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
5045
5046 * config/tc-i386.c (cpu_arch): Delete .cet. Add .ibt, .shstk.
5047 (cpu_noarch): Add noibt, noshstk.
5048 (parse_insn): Change cpucet to cpuibt.
5049 * doc/c-i386.texi: Delete .cet. Add .ibt, .shstk.
5050 * testsuite/gas/i386/cet-ibt-inval.l: New test.
5051 * testsuite/gas/i386/cet-ibt-inval.s: Likewise.
5052 * testsuite/gas/i386/cet-shstk-inval.l: Likewise.
5053 * testsuite/gas/i386/cet-shstk-inval.s: Likewise.
5054 * testsuite/gas/i386/x86-64-cet-ibt-inval.l: Likewise.
5055 * testsuite/gas/i386/x86-64-cet-ibt-inval.s: Likewise.
5056 * testsuite/gas/i386/x86-64-cet-shstk-inval.l: Likewise.
5057 * testsuite/gas/i386/x86-64-cet-shstk-inval.s: Likewise.
5058
5059 2018-01-16 Nick Clifton <nickc@redhat.com>
5060
5061 * po/fr.po: Updated French translation.
5062
5063 2018-01-15 Jim Wilson <jimw@sifive.com>
5064
5065 * testsuite/gas/riscv/c-zero-imm.s: Test addi that compresses to c.nop.
5066 * testsuite/gas/riscv/c-zero-imm.d: Likewise.
5067
5068 2018-01-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
5069
5070 * config/tc-arm.c (ToC): Define macro.
5071 (ToU): Likewise.
5072 (insns): Make use of above macros for new instructions introduced in
5073 Armv8-M.
5074
5075 2018-01-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
5076
5077 * config/tc-arm.c (insns): Make blxns, bxns, tt, ttt, tta, ttat, vlldm
5078 and vlstm conditionally executable and reindent parameters.
5079 * testsuite/gas/arm/archv8m-cmse-main.s: Add conditional version of
5080 aforementionned instructions.
5081
5082 2018-01-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
5083
5084 * config/tc-arm.c (it_fsm_post_encode): Do not warn if targeting M
5085 profile architecture or if in autodetection mode. Clarify that
5086 deprecation is for performance reason and concerns Armv8-A and Armv8-R.
5087 * testsuite/gas/arm/armv8-ar-bad.l: Adapt to new IT deprecation warning
5088 message.
5089 * testsuite/gas/arm/armv8-ar-it-bad.l: Likewise.
5090 * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.l: Likewise.
5091 * testsuite/gas/arm/udf.l: Likewise.
5092 * testsuite/gas/arm/udf.d: Assemble for Armv8-A explicitely.
5093
5094 2018-01-15 Nick Clifton <nickc@redhat.com>
5095
5096 * po/uk.po: Updated Ukranian translation.
5097
5098 2018-01-13 Nick Clifton <nickc@redhat.com>
5099
5100 * po/gas.pot: Regenerated.
5101
5102 2018-01-13 Nick Clifton <nickc@redhat.com>
5103
5104 * configure: Regenerate.
5105
5106 2018-01-13 Nick Clifton <nickc@redhat.com>
5107
5108 2.30 branch created.
5109 * NEWS: Add marker for 2.30.
5110
5111 2018-01-12 Gunther Nikl <gnikl@users.sourceforge.net>
5112
5113 * gas/config/aout_gnu.h (USE_EXTENDED_RELOC): Explicitly
5114 define to 0 and 1. Remove a dangling reference to "AMD 29000"
5115 in a comment.
5116
5117 2018-01-11 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
5118
5119 * testsuite/i386/avx512_4fmaps_vl-warn.l: Likewise.
5120 * testsuite/i386/avx512_4fmaps_vl-warn.s: Likewise.
5121 * testsuite/i386/avx512_4fmaps_vl.d: Likewise.
5122 * testsuite/i386/avx512_4fmaps_vl.s: Likewise.
5123 * testsuite/i386/avx512_4vnniw_vl-intel.d: Likewise.
5124 * testsuite/i386/avx512_4vnniw_vl.d: Likewise.
5125 * testsuite/i386/avx512_4vnniw_vl.s: Likewise.
5126 * testsuite/i386/i386.exp: Removed _vl tests for 4fmaps an 4vnniw
5127 tests.
5128 * testsuite/i386/x86-64-avx512_4fmaps_vl-intel.d: Removed.
5129 * testsuite/i386/x86-64-avx512_4fmaps_vl-warn.l: Likewise.
5130 * testsuite/i386/x86-64-avx512_4fmaps_vl-warn.s: Likewise.
5131 * testsuite/i386/x86-64-avx512_4fmaps_vl.d: Likewise.
5132 * testsuite/i386/x86-64-avx512_4fmaps_vl.s: Likewise.
5133 * testsuite/i386/x86-64-avx512_4vnniw_vl-intel.d: Likewise.
5134 * testsuite/i386/x86-64-avx512_4vnniw_vl.d: Likewise.
5135 * testsuite/i386/x86-64-avx512_4vnniw_vl.s: Likewise.
5136
5137 2018-01-11 Alan Modra <amodra@gmail.com>
5138
5139 * config/tc-arm.c (aeabi_set_public_attributes): Avoid false
5140 positive "‘profile’ may be used uninitialized".
5141
5142 2018-01-10 Jan Beulich <jbeulich@suse.com>
5143
5144 * testsuite/gas/i386/avx512_4fmaps.s,
5145 testsuite/gas/i386/avx512_4fmaps_vl.s,
5146 testsuite/gas/i386/x86-64-avx512_4fmaps.s,
5147 testsuite/gas/i386/x86-64-avx512_4fmaps_vl.s: Actually test
5148 Disp8 forms (and the transition happening at the right
5149 boundary).
5150 * testsuite/gas/i386/avx512_4fmaps.d,
5151 testsuite/gas/i386/avx512_4fmaps-intel.d,
5152 testsuite/gas/i386/avx512_4fmaps_vl.d,
5153 testsuite/gas/i386/avx512_4fmaps_vl-intel.d,
5154 testsuite/gas/i386/x86-64-avx512_4fmaps.d,
5155 testsuite/gas/i386/x86-64-avx512_4fmaps-intel.d,
5156 testsuite/gas/i386/x86-64-avx512_4fmaps_vl.d,
5157 testsuite/gas/i386/x86-64-avx512_4fmaps_vl-intel.d: Adjust
5158 expectations.
5159
5160 2018-01-10 Jan Beulich <jbeulich@suse.com>
5161
5162 * testsuite/gas/i386/avx512bw.s,
5163 testsuite/gas/i386/avx512bw_vl.s: Add VPCMP* tests with memory
5164 operands.
5165 * testsuite/gas/i386/avx512bw-intel.d,
5166 testsuite/gas/i386/avx512bw.d,
5167 testsuite/gas/i386/avx512bw_vl-intel.d.
5168 testsuite/gas/i386/avx512bw_vl.d: Adjust expectations.
5169
5170 2018-01-09 Jim Wilson <jimw@sifive.com>
5171
5172 * testsuite/gas/riscv/auipc-x0.d: New.
5173 * testsuite/gas/riscv/auipc-x0.s: New.
5174
5175 2018-01-09 James Greenhalgh <james.greenhalgh@arm.com>
5176
5177 * config/tc-arm.c (insns): Add csdb, enable for Armv3 and above
5178 in Arm execution state, and Armv6T2 and above in Thumb execution
5179 state.
5180 * testsuite/gas/arm/csdb.s: New.
5181 * testsuite/gas/arm/csdb.d: New.
5182 * testsuite/gas/arm/thumb2_it_bad.l: Add csdb.
5183 * testsuite/gas/arm/thumb2_it_bad.s: Add csdb.
5184
5185 2018-01-09 James Greenhalgh <james.greenhalgh@arm.com>
5186
5187 * testsuite/gas/aarch64/system.d: Update expected results to expect
5188 CSDB for hint 0x14.
5189
5190 2018-01-08 H.J. Lu <hongjiu.lu@intel.com>
5191
5192 PR gas/22681
5193 * testsuite/gas/i386/i386.exp: Run x86-64-movd and
5194 x86-64-movd-intel.
5195 * testsuite/gas/i386/x86-64-movd-intel.d: New file.
5196 * testsuite/gas/i386/x86-64-movd.d: Likewise.
5197 * testsuite/gas/i386/x86-64-movd.s: Likewise.
5198
5199 2018-01-08 Nick Clifton <nickc@redhat.com>
5200
5201 PR 22553
5202 * doc/c-i386.texi (i386-Directives): Document the .largecomm
5203 directive.
5204
5205 2018-01-04 Jim Wilson <jimw@sifive.com>
5206
5207 * testsuite/gas/riscv/priv-reg.s: Add missing stval and mtval.
5208 * testsuite/gas/riscv/priv-reg.d: Likewise.
5209
5210 2018-01-03 Alan Modra <amodra@gmail.com>
5211
5212 Update year range in copyright notice of all files.
5213
5214 2018-01-02 Nick Clifton <nickc@redhat.com>
5215
5216 PR 18119
5217 * config/tc-arm.c (do_mrs): Fix test of bits 16-19 in non-banked
5218 version of ARM MRS instruction.
5219
5220 For older changes see ChangeLog-2017
5221 \f
5222 Copyright (C) 2018 Free Software Foundation, Inc.
5223
5224 Copying and distribution of this file, with or without modification,
5225 are permitted in any medium without royalty provided the copyright
5226 notice and this notice are preserved.
5227
5228 Local Variables:
5229 mode: change-log
5230 left-margin: 8
5231 fill-column: 74
5232 version-control: never
5233 End: