e54872d286ec08ed80c2dd6930beb4d272a88d67
[external/binutils.git] / gas / ChangeLog
1 2017-11-27  Andrew Waterman <andrew@sifive.com>
2             Palmer Dabbelt  <palmer@sifive.com>
3             Jim Wilson  <jimw@sifive.com>
4
5         gas/
6         * config/tc-riscv.c (riscv_handle_implicit_zero_offset): New.
7         (riscv_ip): Cases 'k', 'l', 'm', 'n', 'M', 'N', add call to
8         riscv_handle_implicit_zero_offset.  At label load_store, replace
9         existing code with call to riscv_handle_implicit_zero_offset.
10         * testsuite/gas/riscv/c-ld.d, testsuite/gas/riscv/c-ld.s: New.
11         * testsuite/gas/riscv/c-lw.d, testsuite/gas/riscv/c-lw.s: New.
12         * testsuite/gas/riscv/riscv.exp: Run new tests.
13
14 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
15
16         * config/tc-xtensa.c (find_trampoline_seg): Add static variable
17         that caches the result of the most recent search.
18
19 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
20
21         * config/tc-xtensa.c (trampoline_chain_entry, trampoline_chain)
22         (trampoline_chain_index): New structures.
23         (trampoline_index): Add chain_index field.
24         (xg_order_trampoline_chain_entry, xg_sort_trampoline_chain)
25         (xg_find_chain_entry, xg_get_best_chain_entry)
26         (xg_order_trampoline_chain, xg_get_trampoline_chain)
27         (xg_find_best_eq_target, xg_add_location_to_chain)
28         (xg_create_trampoline_chain, xg_get_single_symbol_slot): New
29         functions.
30         (xg_relax_fixups): Call xg_find_best_eq_target to adjust jump
31         target to point to an existing jump. Call
32         xg_create_trampoline_chain to create new jump target. Call
33         xg_add_location_to_chain to add newly created trampoline jump
34         to the corresponding chain.
35         (add_jump_to_trampoline): Extract loop searching for a single
36         slot with a symbol into a separate function, replace that code
37         with a call to that function.
38         (relax_frag_immed): Call xg_find_best_eq_target to adjust jump
39         target to point to an existing jump.
40         * testsuite/gas/xtensa/all.exp: Add trampoline-2 test.
41         * testsuite/gas/xtensa/trampoline.d: Adjust absolute addresses
42         as many duplicate trampoline chains are now coalesced.
43         * testsuite/gas/xtensa/trampoline.s: Add _nop so that objdump
44         stays in sync with instruction stream.
45         * testsuite/gas/xtensa/trampoline-2.l: New test result file.
46         * testsuite/gas/xtensa/trampoline-2.s: New test source file.
47
48 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
49
50         * config/tc-xtensa.c (search_trampolines, get_best_trampoline):
51         Remove definitions.
52         (xg_find_best_trampoline_for_tinsn): New function.
53         (relax_frag_immed): Replace call to get_best_trampoline with a
54         call to xg_find_best_trampoline_for_tinsn.
55         * testsuite/gas/xtensa/trampoline.d: Adjust absolute addresses
56         as the placement of trampolines for relaxed branches has been
57         changed.
58
59 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
60
61         * config/tc-xtensa.c (trampoline_index): New structure.
62         (trampoline_seg): Replace trampoline list with trampoline index.
63         (xg_find_trampoline, xg_add_trampoline_to_index)
64         (xg_remove_trampoline_from_index, xg_add_trampoline_to_seg)
65         (xg_is_trampoline_frag_full, xg_get_fulcrum)
66         (xg_find_best_trampoline, xg_relax_fixup, xg_relax_fixups)
67         (xg_is_relaxable_fixup): New functions.
68         (J_MARGIN): New macro.
69         (xtensa_create_trampoline_frag): Use xg_add_trampoline_to_seg
70         instead of open-coded addition to the linked list.
71         (dump_trampolines): Iterate through the trampoline_seg::index.
72         (cached_fixupS, cached_fixup, fixup_cacheS, fixup_cache)
73         (fixup_order, xtensa_make_cached_fixup)
74         (xtensa_realloc_fixup_cache, xtensa_cache_relaxable_fixups)
75         (xtensa_find_first_cached_fixup, xtensa_delete_cached_fixup)
76         (xtensa_add_cached_fixup, check_and_update_trampolines): Remove
77         definitions.
78         (xg_relax_trampoline): Extract logic into separate functions,
79         replace body with a call to xg_relax_fixups.
80         (search_trampolines): Replace search in linked list with search
81         in index. Change data type of address-tracking variables from
82         int to offsetT. Replace abs with labs.
83         (xg_append_jump): Finish the trampoline frag if it's full.
84         (add_jump_to_trampoline): Remove trampoline frag from the index
85         if the frag is full.
86         * config/tc-xtensa.h (xtensa_frag_type): Remove next_trampoline.
87         * testsuite/gas/xtensa/trampoline.d: Adjust absolute addresses
88         as the placement of trampolines has slightly changed.
89         * testsuite/gas/xtensa/trampoline.s: Add _nop so that objdump
90         stays in sync with instruction stream.
91
92 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
93
94         * config/tc-xtensa.c (init_trampoline_frag): Replace pointer to
95         struct trampoline_frag parameter with pointer to fragS.
96         (xg_append_jump): Remove jump_around parameter.
97         (struct trampoline_frag): Remove.
98         (struct trampoline_seg): Change type of trampoline_list from
99         struct trampoline_frag to fragS.
100         (xtensa_create_trampoline_frag): Don't allocate struct
101         trampoline_frag. Initialize new fragS::tc_frag_data fields.
102         (dump_trampolines, xg_relax_trampoline, search_trampolines)
103         (get_best_trampoline, init_trampoline_frag)
104         (add_jump_to_trampoline, relax_frag_immed): Replace pointer to
105         struct trampoline_frag with a pointer to fragS.
106         (xg_append_jump): Remove jump_around parameter, use
107         fragS::tc_frag_data.jump_around_fix instead.
108         (xg_relax_trampoline, init_trampoline_frag)
109         (add_jump_to_trampoline): Don't pass jump_around parameter to
110         xg_append_jump.
111         * config/tc-xtensa.h (struct xtensa_frag_type): Add new fields:
112         needs_jump_around, next_trampoline and jump_around_fix.
113
114 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
115
116         * config/tc-xtensa.c (find_trampoline_seg): Move above the first
117         use.
118         (xtensa_create_trampoline_frag): Replace trampoline seg search
119         code with a call to find_trampoline_seg.
120
121 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
122
123         * config/tc-xtensa.c (xg_append_jump): New function.
124         (xg_relax_trampoline, init_trampoline_frag)
125         (add_jump_to_trampoline): Replace trampoline jump assembling
126         code with a call to xg_append_jump.
127
128 2017-11-27  Max Filippov  <jcmvbkbc@gmail.com>
129
130         * config/tc-xtensa.c (xg_relax_trampoline): New function.
131         (xtensa_relax_frag): Replace trampoline relaxation code with a
132         call to xg_relax_trampoline.
133
134 2017-11-27  Nick Clifton  <nickc@redhat.com>
135
136         PR 22492
137         * config/obj-elf.c (obj_elf_version): Set the alignment of the
138         .note section.
139
140 2017-11-26  H.J. Lu  <hongjiu.lu@intel.com>
141
142         * testsuite/gas/i386/sse-noavx.s: Add tests for fisttps and
143         fisttpl.
144         * testsuite/gas/i386/x86-64-sse-noavx.s: Likewise.
145         * testsuite/gas/i386/ilp32/x86-64-sse-noavx.d: Updated.
146         * testsuite/gas/i386/sse-noavx.d: Likewise.
147         * testsuite/gas/i386/x86-64-sse-noavx.d: Likewise.
148
149 2017-11-24  Jim Wilson  <jimw@sifive.com>
150
151         * write.h (FAKE_LABEL_CHAR): Expand comment.
152
153 2017-11-24  Jan Beulich  <jbeulich@suse.com>
154
155         * config/tc-i386.c (check_VecOperations): Check register type
156         for masking. Quote the actual register name in the respective
157         diagnostic. Check {z} wasn't specified on its own.
158         * testsuite/gas/i386/inval-avx512f.s,
159         testsuite/gas/i386/x86-64-inval-avx512f.s: Add further bad
160         masking tests.
161         * testsuite/gas/i386/inval-avx512f.l,
162         testsuite/gas/i386/x86-64-inval-avx512f.l: Adjust expectations.
163
164 2017-11-24  Jan Beulich  <jbeulich@suse.com>
165
166         * testsuite/gas/i386/intel.d, testsuite/gas/i386/opcode.d,
167         testsuite/gas/i386/opcode-suffix.d, testsuite/gas/i386/sse3.d,
168         testsuite/gas/i386/sse-noavx.d, testsuite/gas/i386/x86-64-sse3.d,
169         testsuite/gas/i386/x86-64-sse-noavx.d,
170         testsuite/gas/i386/ilp32/x86-64-sse3.d,
171         testsuite/gas/i386/ilp32/x86-64-sse-noavx.d: Adjust expectations.
172
173 2017-11-23  Jim Wilson  <jimw@sifive.com>
174
175         * testsuite/gas/all/err-fakelabel.s (dg-error): Also accept fatal error
176         string.
177
178         * as.c (INITIALIZING_EMULS): Define.
179         * config/obj-multi.h (FAKE_LABEL_NAME): When INITIALIZING_EMULS set,
180         don't define it.
181
182 2017-11-23  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
183
184         * testsuite/gas/i386/avx512f_vaes-intel.d: Regenerate.
185         * testsuite/gas/i386/avx512f_vaes.d: Likewise.
186         * testsuite/gas/i386/avx512f_vaes-wig1-intel.d: Likewise.
187         * testsuite/gas/i386/avx512f_vaes-wig1.d: Likewise.
188         * testsuite/gas/i386/avx512vl_vaes-intel.d: Likewise.
189         * testsuite/gas/i386/avx512vl_vaes.d: Likewise.
190         * testsuite/gas/i386/x86-64-avx512f_vaes.s: Add instructions with
191         disp8*N.
192         * testsuite/gas/i386/x86-64-avx512f_vaes-intel.d: Regenerate.
193         * testsuite/gas/i386/x86-64-avx512f_vaes.d: Likewise.
194         * testsuite/gas/i386/x86-64-avx512f_vaes-wig.s: Add instructions with
195         disp8*N.
196         * testsuite/gas/i386/x86-64-avx512f_vaes-wig1-intel.d: Regenerate.
197         * testsuite/gas/i386/x86-64-avx512f_vaes-wig1.d: Likewise.
198         * testsuite/gas/i386/x86-64-avx512vl_vaes-intel.d: Regenerate.
199         * testsuite/gas/i386/x86-64-avx512vl_vaes.d: Likewise.
200         * testsuite/gas/i386/x86-64-avx512vl_vaes-wig.s: Add instructions with
201         disp8*N.
202         * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1-intel.d: Regenerate.
203         * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1.d: Regenerate.
204
205 2017-11-23  Jan Beulich  <jbeulich@suse.com>
206
207         * tc-i386.c (check_VecOperands): Don't clear .disp16.
208         * testsuite/gas/i386/avx512f.s: Add 16-bit addressing tests.
209         * testsuite/gas/i386/avx512f.d,
210         testsuite/gas/i386/avx512f-intel.d: Adjust expectations.
211
212 2017-11-23  Jan Beulich  <jbeulich@suse.com>
213
214         PR gas/22441
215         * config/tc-i386.c (build_modrm_byte): Add address override
216         prefix checks alongside 64-bit mode ones.
217         * testsuite/gas/i386/reloc64.s: Add 32-bit signed/unsigned
218         relocation cases.
219         * testsuite/gas/i386/reloc64.d: Adjust expectations.
220
221 2017-11-23  Jan Beulich  <jbeulich@suse.com>
222
223         * config/tc-i386.c (build_modrm_byte): Drop VSIB handling from
224         code also setting fake_zero_displacement.
225
226 2017-11-23  Jan Beulich  <jbeulich@suse.com>
227
228         * testsuite/gas/i386/arch-4.s: Correct ud1 and ud2b. Add ud0.
229         * testsuite/gas/i386/intel.s: Test ud2 instead of ud2b.
230         * testsuite/gas/i386/opcode.s: Likewise.
231         * testsuite/gas/i386/arch-4.d, testsuite/gas/i386/intel.d,
232         testsuite/gas/i386/opcode.d, testsuite/gas/i386/opcode-intel.d,
233         testsuite/gas/i386/opcode-suffix.d: Adjust expectations.
234
235 2017-11-23  Jan Beulich  <jbeulich@suse.com>
236
237         * config/tc-i386-intel.c (i386_intel_operand): Don't call
238         as_bad() if a prior error was already reported.
239         * testsuite/gas/i386/inval-avx512f.l,
240         testsuite/gas/i386/x86-64-inval-avx512f.l: Adjust expectations.
241
242 2017-11-22  Jim Wilson  <jimw@sifive.com>
243
244         * as.c: Include write.h.
245         (common_emul_init): Use FAKE_LABEL_NAME.
246         * ecoff.c (add_file, ecoff_directive_end, ecoff_directive_loc):
247         Likewise.
248         (ecoff_build_symbols): Use FAKE_LABEL_CHAR.
249         * expr.c (get_symbol_name): Use FAKE_LABEL_CHAR.  Accept only if
250         input_from_string is TRUE.
251         * read.c (input_from_string): New.
252         (read_symbol_name): Use FAKE_LABEL_CHAR.  Accept only if
253         input_from_string is TRUE.
254         (temp_ilp): Set input_from_string to TRUE.
255         (restore_ilp): Set input_from_string to FALSE.
256         * read.h (input_from_string): Declare.
257         * symbols.c: Include write.h
258         (S_IS_LOCAL): Check for FAKE_LABEL_CHAR.
259         (symbol_relc_make_sym): Fix comment refering to default fake label
260         string.
261         * write.h (FAKE_LABEL_CHAR): New.
262         * config/tc-riscv.h (FAKE_LABEL_CHAR): Define.
263         * testsuite/gas/all/err-fakelabel.s: New.
264
265         * doc/as.texinfo (.align): Change some to most for text nop fill.
266         (.balign, .p2align): Likewise.
267
268 2017-11-22  Thomas Preud'homme  <thomas.preudhomme@arm.com>
269
270         * config/tc-arm.c (arm_reg_type): Comment on the link with
271         reg_expected_msgs.
272         (reg_expected_msgs): Initialize using array designators with
273         arm_reg_type index.
274
275 2017-11-22  Claudiu Zissulescu  <claziss@synopsys.com>
276
277         * testsuite/gas/arc/hregs-err.s: New test.
278
279 2017-11-21  H.J. Lu  <hongjiu.lu@intel.com>
280
281         PR gas/22464
282         * testsuite/gas/i386/align-1.s: New file.
283         * testsuite/gas/i386/align-1a.d: Likewise.
284         * testsuite/gas/i386/align-1b.d: Likewise.
285         * testsuite/gas/i386/i386.exp: Run align-1a and align-1b.
286
287 2017-11-21  Claudiu Zissulescu <claziss@synopsys.com>
288
289         * testsuite/gas/arc/b.d : Update test.
290         * testsuite/gas/arc/bl.d: Likewise.
291         * testsuite/gas/arc/jli-1.d: Likewise.
292         * testsuite/gas/arc/lp.d: Likewise.
293         * testsuite/gas/arc/pcl-relocs.d: Likewise.
294         * testsuite/gas/arc/pcrel-relocs.d: Likewise.
295         * testsuite/gas/arc/pic-relocs.d: Likewise.
296         * testsuite/gas/arc/plt-relocs.d: Likewise.
297         * testsuite/gas/arc/pseudos.d: Likewise.
298         * testsuite/gas/arc/relax-avoid2.d: Likewise.
299         * testsuite/gas/arc/relax-avoid3.d: Likewise.
300         * testsuite/gas/arc/relax-b.d: Likewise.
301         * testsuite/gas/arc/tls-relocs.d: Likewise.
302         * testsuite/gas/arc/relax-add01.d: Likewise.
303         * testsuite/gas/arc/relax-add04.d: Likewise.
304         * testsuite/gas/arc/relax-ld01.d: Likewise.
305         * testsuite/gas/arc/relax-sub01.d: Likewise.
306         * testsuite/gas/arc/relax-sub02.d: Likewise.
307         * testsuite/gas/arc/relax-sub04.d: Likewise.
308         * testsuite/gas/arc/pcl-print.s: New file.
309         * testsuite/gas/arc/pcl-print.d: Likewise.
310         * testsuite/gas/arc/nps400-12.d: Likewise.
311
312 2017-11-21  Alan Modra  <amodra@gmail.com>
313
314         * config/tc-xtensa.c (finish_vinsn): Avoid multiple ngettext calls
315         in error message.
316
317 2017-11-20  Alan Modra  <amodra@gmail.com>
318
319         * testsuite/gas/i386/x86-64-reg-bad.l: Accept trailing padding.
320
321 2017-11-16  Tamar Christina  <tamar.christina@arm.com>
322
323         * config/tc-aarch64.c (fp16fml): New.
324         * doc/c-aarch64.texi (fp16fml): New.
325         * testsuite/gas/aarch64/armv8_2-a-crypto-fp16.d (fp16): Make fp16fml.
326         * testsuite/gas/aarch64/armv8_3-a-crypto-fp16.d (fp16): Make fp16fml.
327
328 2017-11-16  Tamar Christina  <tamar.christina@arm.com>
329
330         * opcodes/aarch64-tbl.h
331         (aarch64_feature_crypto): Add ARCH64_FEATURE_SIMD and AARCH64_FEATURE_FP.
332         (aarch64_feature_crypto_v8_2, aarch64_feature_sm4): Likewise.
333         (aarch64_feature_sha3): Likewise.
334
335 2017-11-16  Tamar Christina  <tamar.christina@arm.com>
336
337         * doc/c-aarch64.texi (armv8.4-a, sha2, sha3, sm4): New.
338         (dotprod): Update default note.
339
340 2017-11-16  Tamar Christina  <tamar.christina@arm.com>
341
342         * testsuite/gas/aarch64/armv8_4-a-illegal.d: New.
343         * testsuite/gas/aarch64/armv8_4-a-illegal.l: New.
344         * testsuite/gas/aarch64/armv8_4-a-illegal.s: New.
345         * testsuite/gas/aarch64/armv8_4-a.d: New.
346         * testsuite/gas/aarch64/armv8_4-a.s: New.
347         * testsuite/gas/aarch64/armv8_2-a-crypto-fp16.s: New.
348         * testsuite/gas/aarch64/armv8_2-a-crypto-fp16.d: New.
349         * testsuite/gas/aarch64/armv8_3-a-crypto-fp16.d: New.
350         * testsuite/gas/aarch64/armv8_4-a-crypto-fp16.d: New.
351         * testsuite/gas/aarch64/armv8_2-a-crypto-fp16-illegal.s: New.
352         * testsuite/gas/aarch64/armv8_2-a-crypto-fp16-illegal.l: New.
353         * testsuite/gas/aarch64/armv8_2-a-crypto-fp16-illegal.d: New.
354
355 2017-11-16  Jan Beulich  <jbeulich@suse.com>
356
357         * testsuite/gas/i386/noextreg.s: Add tests with register index
358         bit 3 set.
359         * testsuite/gas/i386/noextreg.d: Adjust expectations.
360
361 2017-11-16  Jan Beulich  <jbeulich@suse.com>
362
363         * config/tc-i386.c (process_suffix): Ignore .no_qsuf outside of
364         64-bit mode.
365         * testsuite/gas/i386/ptwrite.s: Add test for memory operand
366         without DWORD PTR.
367         * testsuite/gas/i386/ptwrite.d,
368         testsuite/gas/i386/ptwrite-intel.d: Adjust expectations.
369
370 2017-11-15  H.J. Lu  <hongjiu.lu@intel.com>
371
372         * testsuite/gas/i386/noextreg.s: Replace .code64/.code32 and
373         64-bit instructions with .byte.  Remove ELF directive.
374
375 2017-11-15  Tamar Christina  <tamar.christina@arm.com>
376
377         * config/tc-arm.c (arm_ext_fp16_fml, fp16fml): New.
378         (do_neon_fmac_maybe_scalar_long): Use arm_ext_fp16_fml.
379         * doc/c-arm.texi (fp16, fp16fml): New.
380         * testsuite/gas/arm/armv8_2-a-fp16.d (fp16): Make fp16fml.
381         * testsuite/gas/arm/armv8_3-a-fp16.d (fp16): Make fp16fml.
382         * testsuite/gas/arm/armv8_2-a-fp16-illegal.d (fp16): Make fp16fml.
383         * testsuite/gas/arm/armv8_2-a-fp16-thumb2.d (fp16): Make fp16fml.
384
385 2017-11-15  Nick Clifton  <nickc@redhat.com>
386
387         PR 15152
388         * testsuite/gas/avr/large-debug-line-table.d: Update expected
389         output.
390         * testsuite/gas/elf/dwarf2-11.d: Likewise.
391         * testsuite/gas/elf/dwarf2-12.d: Likewise.
392         * testsuite/gas/elf/dwarf2-13.d: Likewise.
393         * testsuite/gas/elf/dwarf2-14.d: Likewise.
394         * testsuite/gas/elf/dwarf2-15.d: Likewise.
395         * testsuite/gas/elf/dwarf2-16.d: Likewise.
396         * testsuite/gas/elf/dwarf2-17.d: Likewise.
397         * testsuite/gas/elf/dwarf2-18.d: Likewise.
398         * testsuite/gas/elf/dwarf2-5.d: Likewise.
399         * testsuite/gas/elf/dwarf2-6.d: Likewise.
400         * testsuite/gas/elf/dwarf2-7.d: Likewise.
401
402 2017-11-15  Jan Beulich  <jbeulich@suse.com>
403
404         * testsuite/gas/i386/noextreg.s: Add tests for VEX-encoded GPR
405         insns with VEX.W set.
406         * testsuite/gas/i386/noextreg.d: Adjust expectations.
407
408 2017-11-15  Jan Beulich  <jbeulich@suse.com>
409
410         * testsuite/gas/i386/noextreg.{s,d}: New.
411         * testsuite/gas/i386/i386.exp: Run new test.
412
413 2017-11-15  Jan Beulich  <jbeulich@suse.com>
414
415         * testsuite/gas/i386/x86-64-reg.s: Add extended byte reg tests.
416         * testsuite/gas/i386/x86-64-reg.d,
417         testsuite/gas/i386/x86-64-reg-intel.d,
418         testsuite/gas/i386/ilp32/x86-64-reg.d,
419         testsuite/gas/i386/ilp32/x86-64-reg-intel.d: Adjust
420         expectations.
421
422         * testsuite/gas/i386/x86-64-reg-bad.{s,l}: New.
423         * testsuite/gas/i386/i386.exp: Run new test.
424
425 2017-11-14  Jim Wilson  <jimw@sifive.com>
426
427         * testsuite/gas/lns/lns.exp (lns-common-1): Add riscv*-*-* to alt list.
428
429 2017-11-14  Jan Beulich  <jbeulich@suse.com>
430
431         * testsuite/gas/i386/x86-64-xop.d, testsuite/gas/i386/xop.d,
432         testsuite/gas/i386/xop32reg.d: Adjust expectations.
433
434 2017-11-14  Jan Beulich  <jbeulich@suse.com>
435
436         * testsuite/gas/i386/avx512bw.s: Add vpcmp* pseudo tests.
437         * testsuite/gas/i386/avx512bw_vl.s: Likewise.
438         * testsuite/gas/i386/avx512bw.d, testsuite/gas/i386/avx512bw-intel.d,
439         testsuite/gas/i386/avx512bw_vl.d,
440         testsuite/gas/i386/avx512bw_vl-intel.d: Adjust expectations.
441
442 2017-11-14  Jan Beulich  <jbeulich@suse.com>
443
444         * testsuite/gas/i386/string-ok.s: Add a few more valid patterns.
445         Move bogus tests ...
446         * testsuite/gas/i386/string-bad.s: ... here.
447         * testsuite/gas/i386/string-bad.l: Adjust expectations.
448         * testsuite/gas/i386/string-ok.d: Likewise.
449         * testsuite/gas/i386/string-ok.e: Likewise.
450
451 2017-11-13  Jan Beulich  <jbeulich@suse.com>
452
453         * config/tc-aarch64.c (R_Z_BHSDQ_VZP): Rename to ...
454         (R_Z_SP_BHSDQ_VZP): ... and include both stack pointer variants.
455
456 2017-11-13  Jan Beulich  <jbeulich@suse.com>
457
458         * testsuite/gas/ia64/group-1.d: Adjust expectations.
459         * testsuite/gas/ia64/group-2.d: Likewise.
460         * testsuite/gas/ia64/xdata.d: Likewise.
461
462 2017-11-13  Jan Beulich  <jbeulich@suse.com>
463
464         * config/tc-i386.c (process_suffix): Treat .shiftcount just like
465         .inoutportreg.
466         * testsuite/gas/i386/inval.s: Add ambiguous shift/rotate cases.
467         * testsuite/gas/i386/inval.l: Adjust expectations.
468
469 2017-11-13  Jan Beulich  <jbeulich@suse.com>
470
471         * config/tc-i386-intel.c (i386_intel_simplify_register): Also
472         recognize RegRiz/RegEiz as index-only registers.
473         * testsuite/gas/i386/intel.s: Add tests exercising base/index
474         swapping.
475         * testsuite/gas/i386/intel.d: Adjust expectations.
476
477 2017-11-13  Jan Beulich  <jbeulich@suse.com>
478
479         * config/tc-i386.c (i386_index_check): Break out ...
480         (i386_addressing_mode): ... this new function.
481         * config/tc-i386-intel.c (i386_intel_operand): Do base/index
482         swapping and the setting of .baseindex earlier. Call
483         i386_addressing_mode.
484         * testsuite/gas/i386/x86-64-inval.s: Add out of range
485         displacement case.
486         * testsuite/gas/i386/x86-64-inval.l: Adjust expectations.
487
488 2017-11-09  Jim Wilson  <jimw@sifive.com>
489
490         * testsuite/gas/elf/dwarf2-10.l: Accept optional line number in error.
491
492 2017-11-06  Tamar Christina  <tamar.christina@arm.com>
493
494         * gas/testsuite/gas/aarch64/dotproduct_armv8_4.s: New.
495         * gas/testsuite/gas/aarch64/dotproduct_armv8_4.d: New.
496
497 2017-11-09  Tamar Christina  <tamar.christina@arm.com>
498
499         * gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.d: New.
500         * gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.l: New.
501         * gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.s: New.
502         * gas/testsuite/gas/aarch64/armv8_4-a-registers.d: New.
503         * gas/testsuite/gas/aarch64/armv8_4-a-registers.s: New.
504
505 2017-11-09 Tamar Christina  <tamar.christina@arm.com>
506
507         * config/tc-aarch64.c (process_omitted_operand):
508         Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
509         and AARCH64_OPND_IMM_2.
510         (parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
511         AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
512         and AARCH64_OPND_ADDR_OFFSET.
513
514 2017-11-09  Tamar Christina  <tamar.christina@arm.com>
515
516         * config/tc-aarch64.c (aarch64_arch_option_table): Add armv8.4-a.
517         (aarch64_features): Add SM4 and SHA3.
518
519 2017-11-08  Tamar Christina  <tamar.christina@arm.com>
520
521         * config/tc-aarch64.c
522         (aarch64_features): Include AES and SHA2 in CRYPTO.
523         Add SHA2 and AES.
524
525 2017-11-08  Jiong Wang  <jiong.wang@arm.com>
526             Tamar Christina <tamar.christina@arm.com>
527
528         * config/tc-arm.c (arm_extensions):
529         (arm_archs): New entry for "armv8.4-a".
530         Add FPU_ARCH_DOTPROD_NEON_VFP_ARMV8.
531         (arm_ext_v8_2): New variable.
532         (enum arm_reg_type): New enumeration REG_TYPE_NSD.
533         (reg_expected_msgs): New entry for REG_TYPE_NSD.
534         (parse_typed_reg_or_scalar): Handle REG_TYPE_NSD.
535         (parse_scalar): Support REG_TYPE_VFS.
536         (enum operand_parse_code): New enumerations OP_RNSD and OP_RNSD_RNSC.
537         (parse_operands): Handle OP_RNSD and OP_RNSD_RNSC.
538         (NEON_SHAPE_DEF): New entries for DHH and DHS.
539         (neon_scalar_for_fmac_fp16_long): New function to generate Rm encoding
540         for new FP16 instructions in ARMv8.2-A.
541         (do_neon_fmac_maybe_scalar_long): New function to encode new FP16
542         instructions in ARMv8.2-A.
543         (do_neon_vfmal): Wrapper function for vfmal.
544         (do_neon_vfmsl): Wrapper function for vfmsl.
545         (insns): New entries for vfmal and vfmsl.
546         * doc/c-arm.texi (-march): Document "armv8.4-a".
547         * testsuite/gas/arm/dotprod-mandatory.d: New test.
548         * testsuite/gas/arm/armv8_2-a-fp16.s: New test source.
549         * testsuite/gas/arm/armv8_2-a-fp16-illegal.s: New test source.
550         * testsuite/gas/arm/armv8_2-a-fp16.d: New test.
551         * testsuite/gas/arm/armv8_3-a-fp16.d: New test.
552         * testsuite/gas/arm/armv8_4-a-fp16.d: New test.
553         * testsuite/gas/arm/armv8_2-a-fp16-thumb2.d: New test.
554         * testsuite/gas/arm/armv8_2-a-fp16-illegal.d: New test.
555         * testsuite/gas/arm/armv8_2-a-fp16-illegal.l: New error file.
556
557 2017-11-08  Alan Modra  <amodra@gmail.com>
558
559         * config/tc-xtensa.c (finish_vinsn): Properly pluralize error message.
560
561 2017-11-07  Jim Wilson  <jimw@sifive.com>
562
563         * config/tc-riscv.c (append_insn): Call frag_wane and frag_new at
564         end for linker optimizable relocs.
565         * testsuite/gas/riscv/eh-relocs.d: New.
566         * testsuite/gas/riscv/eh-relocs.s: New.
567         * testsuite/gas/riscv/riscv.exp: Run eh-relocs test.
568
569 2017-11-07  Palmer Dabbelt  <palmer@dabbelt.com>
570
571         * testsuite/gas/riscv/satp.d: New test.
572         testsuite/gas/riscv/satp.s: Likewise.
573         testsuite/gas/riscv/riscv.exp: Likewise.
574         config/tc-riscv.c (md_begin): Handle CSR aliases.
575
576 2017-11-07  Tamar Christina  <tamar.christina@arm.com>
577
578         * config/tc-arm.c (arm_cpus):
579         Change FPU_ARCH_CRYPTO_NEON_VFP_ARMV8
580         into FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD.
581
582 2017-11-07  Alan Modra  <amodra@gmail.com>
583
584         * read.c (assemble_one, s_bundle_unlock): Formatting.
585         Consistently add comma and "bytes" to error message.
586         * testsuite/gas/i386/bundle-bad.l: Adjust to suit.
587
588 2017-11-07  Alan Modra  <amodra@gmail.com>
589
590         * testsuite/gas/arm/got_prel.d,
591         * testsuite/gas/elf/dwarf2-1.d,
592         * testsuite/gas/elf/dwarf2-2.d,
593         * testsuite/gas/elf/dwarf2-3.d,
594         * testsuite/gas/elf/dwarf2-5.d,
595         * testsuite/gas/elf/dwarf2-6.d,
596         * testsuite/gas/i386/debug1.d,
597         * testsuite/gas/i386/dw2-compress-1.d,
598         * testsuite/gas/i386/dw2-compress-3a.d,
599         * testsuite/gas/i386/dw2-compress-3b.d,
600         * testsuite/gas/i386/dw2-compressed-1.d,
601         * testsuite/gas/i386/dw2-compressed-3a.d,
602         * testsuite/gas/i386/dw2-compressed-3b.d,
603         * testsuite/gas/i386/ilp32/x86-64-localpic.d,
604         * testsuite/gas/i386/localpic.d,
605         * testsuite/gas/i386/x86-64-localpic.d,
606         * testsuite/gas/ia64/pr13167.d,
607         * testsuite/gas/mips/loc-swap-2.d,
608         * testsuite/gas/mips/loc-swap.d,
609         * testsuite/gas/mips/micromips@loc-swap-2.d,
610         * testsuite/gas/mips/micromips@loc-swap.d,
611         * testsuite/gas/mips/mips16-dwarf2-n32.d,
612         * testsuite/gas/mips/mips16-dwarf2.d,
613         * testsuite/gas/mips/mips16@loc-swap-2.d,
614         * testsuite/gas/mips/mips16@loc-swap.d,
615         * testsuite/gas/mips/mips16e@loc-swap.d,
616         * testsuite/gas/mmix/bspec-1.d,
617         * testsuite/gas/mmix/bspec-2.d,
618         * testsuite/gas/tic6x/unwind-1.d,
619         * testsuite/gas/tic6x/unwind-2.d,
620         * testsuite/gas/tic6x/unwind-3.d: Update for pluralization
621         fixes.
622
623 2017-11-07  Alan Modra  <amodra@gmail.com>
624
625         * as.c (main): Properly pluralize messages.
626         * frags.c (frag_grow): Likewise.
627         * read.c (emit_expr_with_reloc, emit_expr_fix): Likewise.
628         (parse_bitfield_cons): Likewise.
629         * write.c (fixup_segment, compress_debug, write_contents): Likewise.
630         (relax_segment): Likewise.
631         * config/tc-arm.c (s_arm_elf_cons): Likewise.
632         * config/tc-cr16.c (l_cons): Likewise.
633         * config/tc-i370.c (i370_elf_cons): Likewise.
634         * config/tc-m68k.c (m68k_elf_cons): Likewise.
635         * config/tc-msp430.c (msp430_operands): Likewise.
636         * config/tc-s390.c (s390_elf_cons, s390_literals): Likewise.
637         * config/tc-mcore.c (md_apply_fix): Likewise.
638         * config/tc-tic54x.c (md_assemble): Likewise.
639         * config/tc-xtensa.c (xtensa_elf_cons): Likewise.
640         (xg_expand_assembly_insn): Likewise.
641         * config/xtensa-relax.c (build_transition): Likewise.
642
643 2017-11-07  Alan Modra  <amodra@gmail.com>
644
645         * asintl.h (textdomain, bindtextdomain): Use safer "do nothing".
646         (ngettext, dngettext, dcngettext): Define when !ENABLE_NLS.
647
648 2017-11-03  Siddhesh Poyarekar  <siddhesh.poyarekar@linaro.org>
649             Jim Wilson  <jim.wilson@linaro.org>
650
651         * config/tc-aarch64.c (aarch64_cpus): Add saphira.
652         * doc/c-aarch64.texi: Likewise.
653
654 2017-11-02  Thomas Preud'homme  <thomas.preudhomme@arm.com>
655
656         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-1.d: Add
657         --disassembler-options=force-thumb to objdump options.
658         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-2.d: Likewise.
659
660 2017-11-01  James Bowman  <james.bowman@ftdichip.com>
661
662         * config/tc-ft32.c (md_assemble): Add relaxation reloc
663         BFD_RELOC_FT32_RELAX.
664         (md_longopts): Add "norelax" and "no-relax".
665         (md_apply_fix): Add reloc BFD_RELOC_FT32_DIFF32.
666         (relaxable_section, ft32_validate_fix_sub, ft32_force_relocation,
667         ft32_allow_local_subtract): New function.
668         * config/tc-ft32.h: Remove unused MD_PCREL_FROM_SECTION.
669         * testsuite/gas/ft32/insnsc.s: New test exercising all FT32B
670         shortcodes.
671         * testsuite/gas/ft32/insnsc.d: New driver file.
672         * testsuite/gas/all/gas.exp: Update.
673         * testsuite/gas/ft32/ft32.exp: Run the new test.
674         * testsuite/gas/ft32/insn.d: Update.
675         * testsuite/gas/elf/dwarf2-11.d: Update.
676         * testsuite/gas/elf/dwarf2-12.d: Update.
677         * testsuite/gas/elf/dwarf2-13.d: Update.
678         * testsuite/gas/elf/dwarf2-14.d: Update.
679         * testsuite/gas/elf/dwarf2-15.d: Update.
680         * testsuite/gas/elf/dwarf2-16.d: Update.
681         * testsuite/gas/elf/dwarf2-17.d: Update.
682         * testsuite/gas/elf/dwarf2-18.d: Update.
683         * testsuite/gas/elf/dwarf2-3.d: Update.
684         * testsuite/gas/elf/dwarf2-5.d: Update.
685         * testsuite/gas/elf/dwarf2-7.d: Update.
686
687 2017-11-01  Thomas Preud'homme  <thomas.preudhomme@arm.com>
688
689         * config/tc-arm.c (arm_ext_v2): Define to ARM_EXT_V2 feature bit.
690         * testsuite/gas/arm/copro.s: Split into
691         * testsuite/gas/arm/copro-arm_v2plus-thumb_v6t2plus.s: This while
692         changing it to unified syntax and
693         * testsuite/gas/arm/copro-arm_v5plus-thumb_v6t2plus.s: this and ...
694         * testsuite/gas/arm/copro-arm_v5teplus-thumb_v6t2plus.s: This and ...
695         * testsuite/gas/arm/copro-arm_v6plus-thumb_v6t2plus.s: This.
696         * testsuite/gas/arm/copro.d: Split into ...
697         * testsuite/gas/arm/copro-arm_v2plus-arm_v2.d: This but target ARMv2
698         and ...
699         * testsuite/gas/arm/copro-arm_v5plus-arm_v5.d: this but target ARMv5
700         and ...
701         * testsuite/gas/arm/copro-arm_v5teplus-arm_v5te.d: This but target
702         ARMv5TE and ...
703         * testsuite/gas/arm/copro-arm_v6plus-arm_v6.d: This but target ARMv6.
704         * testsuite/gas/arm/copro-arm_v2plus-arm_v1.d: New testcase.
705         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-1.d: New testcase.
706         * testsuite/gas/arm/copro-arm_v2plus-thumb_v6t2plus-unavail.l: Expected
707         errors for the above two testcases.
708         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-1.d: New testcase.
709         * testsuite/gas/arm/copro-arm_v5plus-arm_v4.d: New testcase.
710         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-2.d: New testcase.
711         * testsuite/gas/arm/copro-arm_v5plus-thumb_v6t2plus-unavail.l:
712         Expected errors for the above two testcases.
713         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-2.d: New testcase.
714         * testsuite/gas/arm/copro-arm_v5teplus-arm_v5.d: New testcase.
715         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-3.d: New testcase.
716         * testsuite/gas/arm/copro-arm_v5teplus-thumb_v6t2plus-unavail.l:
717         Expected errors for the above two testcases.
718         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-3.d: New testcase.
719         * testsuite/gas/arm/copro-arm_v6plus-arm_v5te.d: New testcase.
720         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-4.d: New testcase.
721         * testsuite/gas/arm/copro-arm_v6plus-thumb_v6t2plus-unavail.l:
722         Expected errors for the above two testcases.
723         * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-4.d: New testcase.
724
725 2017-10-26  H.J. Lu  <hongjiu.lu@intel.com>
726
727         PR gas/22352
728         * config/tc-i386.c (check_VecOperands): Also check XMM register
729         for invalid register in AVX512 gathers.
730         * testsuite/gas/i386/vgather-check.s: Add tests for AVX512
731         gathers with XMM register.
732         * testsuite/gas/i386/x86-64-vgather-check.s: Likewise.
733         * testsuite/gas/i386/vgather-check-error.l: Updated.
734         * testsuite/gas/i386/vgather-check-none.d: Likewise.
735         * testsuite/gas/i386/vgather-check-warn.d: Likewise.
736         * testsuite/gas/i386/vgather-check-warn.e: Likewise.
737         * testsuite/gas/i386/vgather-check.d: Likewise.
738         * testsuite/gas/i386/x86-64-vgather-check-error.l: Likewise.
739         * testsuite/gas/i386/x86-64-vgather-check-none.d: Likewise.
740         * testsuite/gas/i386/x86-64-vgather-check-warn.d: Likewise.
741         * testsuite/gas/i386/x86-64-vgather-check-warn.e: Likewise.
742         * testsuite/gas/i386/x86-64-vgather-check.d: Likewise.
743
744 2017-10-26  Hans-Peter Nilsson  <hp@bitrange.com>
745
746         * testsuite/gas/all/fill-1.s: Use L2 rather than .L2.
747
748 2017-10-25  Alan Modra  <amodra@gmail.com>
749
750         PR 22348
751         * config/tc-crx.c (instruction, output_opcode): Make static.
752         (relocatable, ins_parse, cur_arg_num): Likewise.
753         (parse_insn): Adjust for renamed opcodes globals.
754         (check_range): Likewise
755
756 2017-10-25  Alan Modra  <amodra@gmail.com>
757
758         * testsuite/gas/all/fill-1.d: Exclude tic4x and tic54x.
759         * testsuite/gas/all/fill-1.s: Use L1 rather than .L1.
760
761 2017-10-24  Andrew Waterman  <andrew@sifive.com>
762
763         * testsuite/gas/riscv/c-addi16sp-fail.d: New test.
764         * testsuite/gas/riscv/c-addi16sp-fail.l: Likewise.
765         * testsuite/gas/riscv/c-addi16sp-fail.s: Likewise.
766         * testsuite/gas/riscv/c-addi4spn-fail.d: Likewise.
767         * testsuite/gas/riscv/c-addi4spn-fail.l: Likewise.
768         * testsuite/gas/riscv/c-addi4spn-fail.s: Likewise.
769         * testsuite/gas/riscv/riscv.exp: Add new tests.
770
771 2017-10-24  Andrew Waterman  <andrew@sifive.com>
772
773         * testsuite/gas/riscv/c-lui-fail.d: New testcase.
774         * gas/testsuite/gas/riscv/c-lui-fail.l: Likewise.
775         * gas/testsuite/gas/riscv/c-lui-fail.s: Likewise.
776         * gas/testsuite/gas/riscv/riscv.exp: Likewise.
777
778 2017-10-24  H.J. Lu  <hongjiu.lu@intel.com>
779
780         * config/tc-i386.c (md_pseudo_table): Add .code64 directive
781         only if BFD64 is defined.
782         * testsuite/gas/i386/code64-inval.l: New file.
783         * gas/testsuite/gas/i386/code64-inval.s: Likewise.
784         * gas/testsuite/gas/i386/code64.d: Likewise.
785         * gas/testsuite/gas/i386/code64.s: Likewise.
786         * testsuite/gas/i386/i386.exp: Run mixed-mode-reloc32,
787         att-regs, intel-regs, intel-expr and string-ok tests only if
788         assembler supports x86-64.  Run code64 and code64-inval.
789
790 2017-10-23  Palmer Dabbelt  <palmer@dabbelt.com>
791
792         * config/tc-riscv.c (riscv_frag_align_code): Align code by 4
793         bytes on non-RVC systems.
794
795 2017-10-23  Maciej W. Rozycki  <macro@imgtec.com>
796
797         * config/tc-mips.c (mips_elf_final_processing): Don't set
798         EF_MIPS_ABI2 in `e_flags'.
799
800 2017-10-23  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
801
802         * config/tc-i386.c (cpu_arch): Add .avx512_bitalg.
803         (cpu_noarch): noavx512_bitalg.
804         * doc/c-i386.texi: Document .avx512_bitalg, noavx512_bitalg.
805         * testsuite/gas/i386/i386.exp: Add AVX512_BITALG tests.
806         * testsuite/gas/i386/avx512f_bitalg-intel.d: New test.
807         * testsuite/gas/i386/avx512f_bitalg.d: Likewise.
808         * testsuite/gas/i386/avx512f_bitalg.s: Likewise.
809         * testsuite/gas/i386/avx512vl_bitalg-intel.d: Likewise.
810         * testsuite/gas/i386/avx512vl_bitalg.d: Likewise.
811         * testsuite/gas/i386/avx512vl_bitalg.s: Likewise.
812         * testsuite/gas/i386/x86-64-avx512f_bitalg-intel.d: Likewise.
813         * testsuite/gas/i386/x86-64-avx512f_bitalg.d: Likewise.
814         * testsuite/gas/i386/x86-64-avx512f_bitalg.s: Likewise.
815         * testsuite/gas/i386/x86-64-avx512vl_bitalg-intel.d: Likewise.
816         * testsuite/gas/i386/x86-64-avx512vl_bitalg.d: Likewise.
817         * testsuite/gas/i386/x86-64-avx512vl_bitalg.s: Likewise.
818
819 2017-10-23  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
820
821         * config/tc-i386.c (cpu_arch): Add .avx512_vnni.
822         (cpu_noarch): Add noavx512_vnni.
823         * doc/c-i386.texi: Document .avx512_vnni.
824         * testsuite/gas/i386/i386.exp: Add AVX512_VNNI tests.
825         * testsuite/gas/i386/avx512vnni-intel.d: New test.
826         * testsuite/gas/i386/avx512vnni.d: Likewise.
827         * testsuite/gas/i386/avx512vnni.s: Likewise.
828         * testsuite/gas/i386/avx512vnni_vl-intel.d: Likewise.
829         * testsuite/gas/i386/avx512vnni_vl.d: Likewise.
830         * testsuite/gas/i386/avx512vnni_vl.s: Likewise.
831         * testsuite/gas/i386/x86-64-avx512vnni-intel.d: Likewise.
832         * testsuite/gas/i386/x86-64-avx512vnni.d: Likewise.
833         * testsuite/gas/i386/x86-64-avx512vnni.s: Likewise.
834         * testsuite/gas/i386/x86-64-avx512vnni_vl-intel.d: Likewise.
835         * testsuite/gas/i386/x86-64-avx512vnni_vl.d: Likewise.
836         * testsuite/gas/i386/x86-64-avx512vnni_vl.s: Likewise.
837
838 2017-10-23  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
839
840         * config/tc-i386.c (cpu_arch): Add VPCLMULQDQ.
841         * doc/c-i386.texi: Document VPCLMULQDQ.
842         * testsuite/gas/i386/i386.exp: Run VPCLMULQDQ tests.
843         * testsuite/gas/i386/avx512f_vpclmulqdq-intel.d: New test.
844         * testsuite/gas/i386/avx512f_vpclmulqdq-wig.s: Ditto.
845         * testsuite/gas/i386/avx512f_vpclmulqdq-wig1-intel.d: Ditto.
846         * testsuite/gas/i386/avx512f_vpclmulqdq-wig1.d: Ditto.
847         * testsuite/gas/i386/avx512f_vpclmulqdq.d: Ditto.
848         * testsuite/gas/i386/avx512f_vpclmulqdq.s: Ditto.
849         * testsuite/gas/i386/avx512vl_vpclmulqdq-intel.d: Ditto.
850         * testsuite/gas/i386/avx512vl_vpclmulqdq-wig.s: Ditto.
851         * testsuite/gas/i386/avx512vl_vpclmulqdq-wig1-intel.d: Ditto.
852         * testsuite/gas/i386/avx512vl_vpclmulqdq-wig1.d: Ditto.
853         * testsuite/gas/i386/avx512vl_vpclmulqdq.d: Ditto.
854         * testsuite/gas/i386/avx512vl_vpclmulqdq.s: Ditto.
855         * testsuite/gas/i386/vpclmulqdq-intel.d: Ditto.
856         * testsuite/gas/i386/vpclmulqdq.d: Ditto.
857         * testsuite/gas/i386/vpclmulqdq.s: Ditto.
858         * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-intel.d: Ditto.
859         * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-wig.s: Ditto.
860         * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-wig1-intel.d: Ditto.
861         * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-wig1.d: Ditto.
862         * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq.d: Ditto.
863         * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq.s: Ditto.
864         * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-intel.d: Ditto.
865         * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-wig.s: Ditto.
866         * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-wig1-intel.d: Ditto.
867         * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-wig1.d: Ditto.
868         * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq.d: Ditto.
869         * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq.s: Ditto.
870         * testsuite/gas/i386/x86-64-vpclmulqdq-intel.d: Ditto.
871         * testsuite/gas/i386/x86-64-vpclmulqdq.d: Ditto.
872         * testsuite/gas/i386/x86-64-vpclmulqdq.s: Ditto.
873
874 2017-10-23  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
875
876         * config/tc-i386.c (cpu_arch): Add VAES.
877         * doc/c-i386.texi: Document VAES.
878         * testsuite/gas/i386/i386.exp: Run VAES tests.
879         * testsuite/gas/i386/avx512f_vaes-intel.d: New test.
880         * testsuite/gas/i386/avx512f_vaes-wig.s: Ditto.
881         * testsuite/gas/i386/avx512f_vaes-wig1-intel.d: Ditto.
882         * testsuite/gas/i386/avx512f_vaes-wig1.d: Ditto.
883         * testsuite/gas/i386/avx512f_vaes.d: Ditto.
884         * testsuite/gas/i386/avx512f_vaes.s: Ditto.
885         * testsuite/gas/i386/avx512vl_vaes-intel.d: Ditto.
886         * testsuite/gas/i386/avx512vl_vaes-wig.s: Ditto.
887         * testsuite/gas/i386/avx512vl_vaes-wig1-intel.d: Ditto.
888         * testsuite/gas/i386/avx512vl_vaes-wig1.d: Ditto.
889         * testsuite/gas/i386/avx512vl_vaes.d: Ditto.
890         * testsuite/gas/i386/avx512vl_vaes.s: Ditto.
891         * testsuite/gas/i386/vaes-intel.d: Ditto.
892         * testsuite/gas/i386/vaes.d: Ditto.
893         * testsuite/gas/i386/vaes.s: Ditto.
894         * testsuite/gas/i386/x86-64-avx512f_vaes-intel.d: Ditto.
895         * testsuite/gas/i386/x86-64-avx512f_vaes-wig.s: Ditto.
896         * testsuite/gas/i386/x86-64-avx512f_vaes-wig1-intel.d: Ditto.
897         * testsuite/gas/i386/x86-64-avx512f_vaes-wig1.d: Ditto.
898         * testsuite/gas/i386/x86-64-avx512f_vaes.d: Ditto.
899         * testsuite/gas/i386/x86-64-avx512f_vaes.s: Ditto.
900         * testsuite/gas/i386/x86-64-avx512vl_vaes-intel.d: Ditto.
901         * testsuite/gas/i386/x86-64-avx512vl_vaes-wig.s: Ditto.
902         * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1-intel.d: Ditto.
903         * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1.d: Ditto.
904         * testsuite/gas/i386/x86-64-avx512vl_vaes.d: Ditto.
905         * testsuite/gas/i386/x86-64-avx512vl_vaes.s: Ditto.
906         * testsuite/gas/i386/x86-64-vaes-intel.d: Ditto.
907         * testsuite/gas/i386/x86-64-vaes.d: Ditto.
908         * testsuite/gas/i386/x86-64-vaes.s: Ditto.
909
910 2017-10-23  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
911
912         * config/tc-i386.c (cpu_arch): Add .gfni.
913         * doc/c-i386.texi: Document .gfni.
914         * testsuite/gas/i386/i386.exp: Add GFNI tests.
915         * testsuite/gas/i386/avx.s: New GFNI test.
916         * testsuite/gas/i386/x86-64-avx.s: Likewise.
917         * testsuite/gas/i386/avx.d: Adjust.
918         * testsuite/gas/i386/avx-intel.d: Likewise
919         * testsuite/gas/i386/ilp32/x86-64-avx-intel.d: Likewise.
920         * testsuite/gas/i386/ilp32/x86-64-avx.d: Likewise.
921         * testsuite/gas/i386/avx512f_gfni-intel.d: New test.
922         * testsuite/gas/i386/avx512f_gfni.d: Likewise.
923         * testsuite/gas/i386/avx512f_gfni.s: Likewise.
924         * testsuite/gas/i386/avx512vl_gfni-intel.d: Likewise.
925         * testsuite/gas/i386/avx512vl_gfni.d: Likewise.
926         * testsuite/gas/i386/avx512vl_gfni.s: Likewise.
927         * testsuite/gas/i386/gfni-intel.d: Likewise.
928         * testsuite/gas/i386/gfni.d: Likewise.
929         * testsuite/gas/i386/gfni.s: Likewise.
930         * testsuite/gas/i386/x86-64-avx512f_gfni-intel.d: Likewise.
931         * testsuite/gas/i386/x86-64-avx512f_gfni.d: Likewise.
932         * testsuite/gas/i386/x86-64-avx512f_gfni.s: Likewise.
933         * testsuite/gas/i386/x86-64-avx512vl_gfni-intel.d: Likewise.
934         * testsuite/gas/i386/x86-64-avx512vl_gfni.d: Likewise.
935         * testsuite/gas/i386/x86-64-avx512vl_gfni.s: Likewise.
936         * testsuite/gas/i386/x86-64-avx_gfni-intel.d: Likewise.
937         * testsuite/gas/i386/x86-64-avx_gfni.d: Likewise.
938         * testsuite/gas/i386/x86-64-avx_gfni.s: Likewise.
939         * testsuite/gas/i386/x86-64-gfni-intel.d: Likewise.
940         * testsuite/gas/i386/x86-64-gfni.d: Likewise.
941         * testsuite/gas/i386/x86-64-gfni.s: Likewise.
942
943 2017-10-23  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
944
945         * config/tc-i386.c (cpu_arch): Add .avx512_vbmi2.
946         (cpu_noarch): noavx512_vbmi2.
947         * doc/c-i386.texi: Document .avx512_vbmi2, noavx512_vbmi2.
948         * testsuite/gas/i386/i386.exp: Add AVX512_VBMI2 tests.
949         * testsuite/gas/i386/avx512vbmi2-intel.d: New test.
950         * testsuite/gas/i386/avx512vbmi2.d: Likewise.
951         * testsuite/gas/i386/avx512vbmi2.s: Likewise.
952         * testsuite/gas/i386/avx512vbmi2_vl-intel.d: Likewise.
953         * testsuite/gas/i386/avx512vbmi2_vl.d: Likewise.
954         * testsuite/gas/i386/avx512vbmi2_vl.s: Likewise.
955         * testsuite/gas/i386/x86-64-avx512vbmi2-intel.d: Likewise.
956         * testsuite/gas/i386/x86-64-avx512vbmi2.d: Likewise.
957         * testsuite/gas/i386/x86-64-avx512vbmi2.s: Likewise.
958         * testsuite/gas/i386/x86-64-avx512vbmi2_vl-intel.d: Likewise.
959         * testsuite/gas/i386/x86-64-avx512vbmi2_vl.d: Likewise.
960         * testsuite/gas/i386/x86-64-avx512vbmi2_vl.s: Likewise.
961
962 2017-10-22  Hans-Peter Nilsson  <hp@axis.com>
963
964         PR gas/22304
965         * testsuite/gas/cris/range-err-1.s: Remove quotes left from last edit.
966
967 2017-10-20  Nick Clifton  <nickc@redhat.com>
968
969         PR 22324
970         * read.c (s_rept): Use size_t type for count parameter.
971         (do_repeat): Change type of count parameter to size_t.
972         Issue an error is the count parameter is negative.
973         (do_repeat_with_expression): Likewise.
974         * read.h: Update prototypes for do_repeat and
975         do_repeat_with_expression.
976         * doc/as.texinfo (Rept): Document that a zero count is allowed but
977         negative counts are not.
978         * config/tc-rx.c (rx_rept): Use size_t type for count parameter.
979         * config/tc-tic54x.c (tic54x_loop): Cast count parameter to size_t
980         type.
981         * testsuite/gas/macros/end.s: Add a test using a negative repeat
982         count.
983         * testsuite/gas/macros/end.l: Add expected error message.
984
985 2017-10-19  Palmer Dabbelt  <palmer@dabbelt.com>
986
987         * config/tc-riscv.c (md_apply_fix): Mark
988         BFD_RELOC_RISCV_PCREL_HI20 as relaxable when relaxations are
989         enabled.
990
991 2017-10-19  Nick Clifton  <nickc@redhat.com>
992
993         PR 21621
994         * config/tc-avr.h (struct avr_frag_data): Add prev_opcode field.
995         (TC_FRAG_INIT): Define.
996         (avr_frag_init): Add prototype.
997         * config/tc-avr.c (avr_frag_init): New function.
998         (avr_operands): Replace static local 'prev' variable with
999         prev_opcode field in current frag.
1000         * testsuite/gas/avr/pr21621.s: New test source file.
1001         * testsuite/gas/avr/pr21621.d: New test driver file.
1002         * testsuite/gas/avr/pr21621.s: New test error output file.
1003
1004 2017-10-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
1005
1006         * testsuite/gas/all/fill-1.s: Use normal labels.  Change .text to
1007         .data. Pick different values.  Use .dc.w instead of .word.
1008         * testsuite/gas/all/fill-1.d: New objdump output check.
1009         * testsuite/gas/all/gas.exp: Use run_dump_test to execute fill-1
1010         testcase.
1011
1012 2017-10-18  Palmer Dabbelt  <palmer@dabbelt.com>
1013
1014         * testsuite/gas/all/align.d: Mark as unsupported on RISC-V.
1015         testsuite/gas/all/relax.d: Likewise.
1016         testsuite/gas/all/sleb128-2.d: Likewise.
1017         testsuite/gas/all/sleb128-4.d: Likewise.
1018         testsuite/gas/all/sleb128-5.d: Likewise.
1019         testsuite/gas/all/sleb128-7.d: Likewise.
1020         testsuite/gas/elf/section11.d: Likewise.
1021         testsuite/gas/all/gas.exp (diff1.s): Likewise.
1022
1023 2017-10-18  Nick Clifton  <nickc@redhat.com>
1024
1025         PR gas/22304
1026         * testsuite/gas/cris/range-err-1.s: Remove spurious xfails.
1027         * testsuite/gas/cris/cris.exp: Expect the shexpr-1 test to pass.
1028
1029 2017-10-18  Nick Clifton  <nickc@redhat.com>
1030
1031         * po/sv.po: Updated Swedish translation.
1032
1033 2017-10-16  Sandra Loosemore  <sandra@codesourcery.com>
1034             Henry Wong  <henry@stuffedcow.net>
1035
1036         * config/tc-nios2.c (nios2_translate_pseudo_insn): Check for
1037         correct number of arguments.
1038         (md_assemble): Handle failure of nios2_translate_pseudo_insn.
1039         * testsuite/gas/nios2/illegal_pseudoinst.l: New file.
1040         * testsuite/gas/nios2/illegal_pseudoinst.s: New file.
1041         * testsuite/gas/nios2/nios2.exp: Add illegal_pseudoinst test.
1042
1043 2017-10-12  James Bowman  <james.bowman@ftdichip.com>
1044
1045         * config/tc-ft32.c (md_assemble): Replace FT32_FLD_K8 with
1046         K15.
1047         (md_apply_fix, tc_gen_reloc): Add BFD_RELOC_FT32_15.
1048
1049 2017-10-11  Nick Clifton  <nickc@redhat.com>
1050
1051         PR 21977
1052         * listing.c (listing_newline): Use the name of the current
1053         physical input file, rather than the current logical input file,
1054         unless including high level source in the listing.
1055         * input-scrub.c (as_where_physical): New function.  Returns the
1056         name of the current physical input file.
1057         * as.h: Add prototype for as_where_physical.
1058
1059 2017-10-09  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
1060
1061         * testsuite/gas/s390/zarch-arch12.d (prno, tpei, irbm): New
1062         instructions added.
1063         * testsuite/gas/s390/zarch-arch12.s: Likewise.
1064         * testsuite/gas/s390/zarch-z13.d: Rename ppno to prno.
1065
1066 2017-10-09  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
1067
1068         * testsuite/gas/all/fill-1.s: Replace nop with .word 42
1069
1070 2017-10-09  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
1071
1072         * read.c (s_fill): Invoke expression instead of
1073         get_known_segmented_expression.
1074         * testsuite/gas/all/fill-1.s: New testcase.
1075         * testsuite/gas/all/gas.exp: Run fill-1 testcase
1076
1077 2017-10-05  Nick Clifton  <nickc@redhat.com>
1078
1079         PR 22133
1080         * config/tc-msp430.c (parse_exp): Skip an 'h' suffix to constant
1081         expressions.
1082         (msp430_srcoperand): Check that the entire text was parsed by
1083         parse_exp.
1084         (msp430_operands): Likewise.
1085         * testsuite/gas/msp430/pr22133.s: New test file.
1086         * testsuite/gas/msp430/pr22133.d: New test driver.
1087         * testsuite/gas/msp430/pr22133.s: Expected error output.
1088         * testsuite/gas/msp430/msp430.exp: Run the new test.
1089
1090 2017-10-04  H.J. Lu  <hongjiu.lu@intel.com>
1091
1092         PR gas/21167
1093         * testsuite/gas/elf/elf.exp: Run group3.
1094         * testsuite/gas/elf/group3.d: New file.
1095         * testsuite/gas/elf/group3.s: Likewise.
1096
1097 2017-10-05  Alan Modra  <amodra@gmail.com>
1098
1099         PR 21167
1100         * config/obj-elf.c (struct group_list): Delete elt_count.
1101         (groups): New static.
1102         (build_group_lists): Don't count elements.
1103         (elf_adjust_symtab): Use "groups" rather than auto "list".  Set up
1104         pointer from group member to SHT_GROUP section.  Don't size
1105         SHT_GROUP section or clean up here..
1106         (elf_frob_file_after_relocs): ..do so here instead.
1107         * testsuite/gas/arc/jli-1.d,
1108         * testsuite/gas/elf/groupautob.d,
1109         * testsuite/gas/mips/compact-eh-eb-2.d,
1110         * testsuite/gas/mips/compact-eh-eb-5.d,
1111         * testsuite/gas/mips/compact-eh-el-2.d,
1112         * testsuite/gas/mips/compact-eh-el-5.d: Adjust.
1113
1114 2017-10-01  Alexander Fedotov  <alfedotov@gmail.com>
1115
1116         * testsuite/gas/ppc/vle-mult-ld-st-insns.s: New file: Tests the
1117         support for the VLE multiple load/store instructions.
1118         * testsuite/gas/ppc/vle-mult-ld-st-insns.d: New file: Test
1119         driver.
1120         * testsuite/gas/ppc/ppc.exp: Run it.
1121
1122 2017-09-27  Nick Clifton  <nickc@redhat.com>
1123
1124         PR 22179
1125         * testsuite/gas/riscv/fmv.x.s: New file: Tests the support for the
1126         renamed fmv.x.s and fmv.s.x instructions.
1127         * testsuite/gas/riscv/fmv.x.d: New file: Test driver.
1128
1129 2017-09-21  Maciej W. Rozycki  <macro@imgtec.com>
1130
1131         * testsuite/gas/mips/elf_mach_5900.d: New test.
1132         * testsuite/gas/mips/mips.exp: Run it.
1133
1134 2017-09-21  James Cowgill  <James.Cowgill@imgtec.com>
1135
1136         PR gas/21762
1137         * config/tc-mips.c (s_mips_stab): Insert call to
1138         file_mips_check_options.
1139         * testsuite/gas/mips/micromips@stabs-symbol-type.d: New test.
1140         * testsuite/gas/mips/mips.exp: Run the new tests.
1141         * testsuite/gas/mips/mips16@stabs-symbol-type.d: New test.
1142         * testsuite/gas/mips/stabs-symbol-type.d: New test.
1143         * testsuite/gas/mips/stabs-symbol-type.s: New test source.
1144
1145 2017-09-21  Alan Modra  <amodra@gmail.com>
1146
1147         * config/tc-ppc.h (EH_FRAME_ALIGNMENT): Define.
1148
1149 2017-09-14  Alan Modra  <amodra@gmail.com>
1150
1151         PR 22127
1152         * write.c (resolve_reloc_expr_symbols): Don't segfault when
1153         sec has been set to NULL.
1154
1155 2017-09-09  H.J. Lu  <hongjiu.lu@intel.com>
1156
1157         * config/tc-i386.c (NOTRACK_PREFIX): Removed.
1158         (REX_PREFIX): Updated.
1159         (MAX_PREFIXES): Likewise.
1160         (parse_insn): Remove restriction on NOTRACK prefix position.
1161         * testsuite/gas/i386/notrack.s: Add tests with NOTRACK prefix
1162         before other prefixes.
1163         * testsuite/gas/i386/x86-64-notrack.s: Likewise.
1164         * testsuite/gas/i386/notrackbad.s: Remove tests with NOTRACK
1165         prefix before other prefixes.
1166         * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
1167         * testsuite/gas/i386/notrack-intel.d: Updated.
1168         * testsuite/gas/i386/notrack.d: Likewise.
1169         * testsuite/gas/i386/notrackbad.l: Likewise.
1170         * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
1171         * testsuite/gas/i386/x86-64-notrack.d: Likewise.
1172         * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
1173
1174 2017-09-07  Palmer Dabbelt  <palmer@dabbelt.com>
1175
1176         * config/tc-riscv.c (riscv_frag_align_code): Emit the entire
1177         alignment sequence inside R_RISCV_ALIGN.
1178
1179 2017-09-05  Alexander Fedotov <alexander.fedotov@nxp.com>
1180             Edmar Wienskoski <edmar.wienskoski@nxp.com
1181
1182         * config/tc-ppc.c (md_parse_option): Handle "mno-vle" flag.
1183         (ppc_elf_section_letter): New function.
1184         * config/tc-ppc.h (md_elf_section_letter): New.
1185         * testsuite/gas/elf/section10.d: Adjust for VLE.
1186
1187 2017-09-01  Tamar Christina  <tamar.christina@arm.com>
1188
1189         * config/tc-aarch64.c (aarch64_cpus): Enable DOTPROD for
1190         cortex-a55 and cortx-a75.
1191
1192 2017-08-30  Maciej W. Rozycki  <macro@imgtec.com>
1193
1194         * testsuite/gas/mips/branch-addend-micromips.d: New test.
1195         * testsuite/gas/mips/branch-addend-micromips-n32.d: New test.
1196         * testsuite/gas/mips/branch-addend-micromips-n64.d: New test.
1197         * testsuite/gas/mips/branch-addend-micromips.s: New test source.
1198         * testsuite/gas/mips/mips.exp: Run the new tests.
1199
1200 2017-08-30  Maciej W. Rozycki  <macro@imgtec.com>
1201
1202         * config/tc-mips.c (md_convert_frag): Respect
1203         `mips_ignore_branch_isa'.
1204         * testsuite/gas/mips/branch-local-5.d: New test.
1205         * testsuite/gas/mips/branch-local-n32-5.d: New test.
1206         * testsuite/gas/mips/branch-local-n64-5.d: New test.
1207         * testsuite/gas/mips/branch-local-6.d: New test.
1208         * testsuite/gas/mips/branch-local-n32-6.d: New test.
1209         * testsuite/gas/mips/branch-local-n64-6.d: New test.
1210         * testsuite/gas/mips/branch-local-7.d: New test.
1211         * testsuite/gas/mips/branch-local-n32-7.d: New test.
1212         * testsuite/gas/mips/branch-local-n64-7.d: New test.
1213         * testsuite/gas/mips/branch-local-ignore-5.d: New test.
1214         * testsuite/gas/mips/branch-local-ignore-n32-5.d: New test.
1215         * testsuite/gas/mips/branch-local-ignore-n64-5.d: New test.
1216         * testsuite/gas/mips/branch-local-ignore-6.d: New test.
1217         * testsuite/gas/mips/branch-local-ignore-n32-6.d: New test.
1218         * testsuite/gas/mips/branch-local-ignore-n64-6.d: New test.
1219         * testsuite/gas/mips/branch-local-5.l: New stderr output.
1220         * testsuite/gas/mips/branch-local-6.l: New stderr output.
1221         * testsuite/gas/mips/branch-local-5.s: New test source.
1222         * testsuite/gas/mips/branch-local-6.s: New test source.
1223         * testsuite/gas/mips/branch-local-7.s: New test source.
1224         * testsuite/gas/mips/mips.exp: Run the new tests.
1225
1226 2017-08-30  Maciej W. Rozycki  <macro@imgtec.com>
1227
1228         * testsuite/gas/mips/branch-local-n32-2.d: Use `branch-local-2.l'
1229         for `error-output'.
1230         * testsuite/gas/mips/branch-local-n64-2.d: Likewise.
1231         * testsuite/gas/mips/branch-local-n32-3.d: Use `branch-local-3.l'
1232         for `error-output'.
1233         * testsuite/gas/mips/branch-local-n64-3.d: Likewise.
1234         * testsuite/gas/mips/branch-local-n32-2.l: Remove file.
1235         * testsuite/gas/mips/branch-local-n64-2.l: Remove file.
1236         * testsuite/gas/mips/branch-local-n32-3.l: Remove file.
1237         * testsuite/gas/mips/branch-local-n64-3.l: Remove file.
1238
1239 2017-08-29  Jozef Lawrynowicz  <jozef.l@somniumtech.com>
1240
1241         * config/tc-msp430.c (md_parse_option): Define high data and high
1242         bss symbols if -mdata-region is passed.
1243         Define -mdata-region open.
1244         * doc/c-msp430.texi: Document -mdata-region.
1245         * testsuite/gas/msp430/high-data-bss-sym.d: New test.
1246         * testsuite/gas/msp430/high-data-bss-sym.s: New.
1247         * testsuite/gas/msp430/msp430.exp: Add -mdata-region tests.
1248
1249 2017-08-23  Alexander Fedotov <alexander.fedotov@nxp.com>
1250             Edmar Wienskoski <edmar.wienskoski@nxp.com
1251
1252         * config/tc-ppc.c:
1253         (md_parse_option): Add mspe2 switch.
1254         (md_show_usage): Document -mspe2.
1255         (ppc_setup_opcodes): Handle spe2_opcodes.
1256         * doc/as.texinfo: Document -mspe2.
1257         * doc/c-ppc.texi: Likewise.
1258         * testsuite/gas/ppc/efs.d: New file.
1259         * testsuite/gas/ppc/efs.s: Likewise.
1260         * testsuite/gas/ppc/efs2.d: Likewise.
1261         * testsuite/gas/ppc/efs2.s: Likewise.
1262         * testsuite/gas/ppc/ppc.exp: Run new tests.
1263         * testsuite/gas/ppc/spe.d: New file.
1264         * testsuite/gas/ppc/spe.s: Likewise.
1265         * testsuite/gas/ppc/spe2-checks.d: Likewise.
1266         * testsuite/gas/ppc/spe2-checks.l: Likewise.
1267         * testsuite/gas/ppc/spe2-checks.s: Likewise.
1268         * testsuite/gas/ppc/spe2.d: Likewise.
1269         * testsuite/gas/ppc/spe2.s: Likewise.
1270         * testsuite/gas/ppc/spe_ambiguous.d: Likewise.
1271         * testsuite/gas/ppc/spe_ambiguous.s: Likewise.
1272
1273 2017-08-23  James Clarke  <jrtc27@jrtc27.com>
1274
1275         * config/tc-sparc.c (tc_gen_reloc): Convert BFD_RELOC_8/16/32/64
1276         into the corresponding BFD_RELOC_8/16/32/64_PCREL relocation
1277         when requested.
1278         * config/tc-sparc.h (DIFF_EXPR_OK): Define to enable PC-relative
1279         diff relocations.
1280         (TC_FORCE_RELOCATION_SUB_LOCAL): Define to ensure only supported
1281         relocations are made PC-relative.
1282         (CFI_DIFF_EXPR_OK): Define to 0 to force BFD_RELOC_32_PCREL to
1283         be used directly, since otherwise BFD_RELOC_SPARC_UA32 will be
1284         used for .eh_frame which cannot in general be converted to a
1285         BFD_RELOC_32_PCREL due to alignment requirements.
1286
1287 2017-08-22  Alan Modra  <amodra@gmail.com>
1288
1289         * testsuite/gas/ppc/lsp-checks.d: Assemble with -a32.
1290         * testsuite/gas/ppc/lsp.d: Likewise.
1291
1292 2017-08-21  Alexander Fedotov <alexander.fedotov@nxp.com>
1293             Edmar Wienskoski <edmar.wienskoski@nxp.com
1294
1295         * testsuite/gas/ppc/lsp-checks.d,
1296         * testsuite/gas/ppc/lsp-checks.l,
1297         * testsuite/gas/ppc/lsp-checks.s: New test.
1298         * testsuite/gas/ppc/lsp.d,
1299         * testsuite/gas/ppc/lsp.s: New test.
1300         * testsuite/gas/ppc/ppc.exp: Run new tests.
1301
1302 2017-08-15  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
1303
1304         * config/tc-aarch64.c (REGDEF_ALIAS): Define
1305         (reg_names): Update for ip0, ip1, fp, lr to use REGDEF_ALIAS
1306         * doc/c-aarch64.texi: Update documentation on .req.
1307         * testsuite/gas/diagnostic.s: Update
1308         * testsuite/gas/diagnostic.l: Likewise
1309         * testsuite/gas/register_aliases.s: New file.
1310         * testsuite/gas/register_aliases.d: New file.
1311
1312 2017-08-11  H.J. Lu  <hongjiu.lu@intel.com>
1313
1314         PR gas/21667
1315         * read.c (pseudo_set): Update error message for alias of common
1316         symbol.
1317         * write.c (write_object_file): Disallow both local and global
1318         aliases of common symbol.
1319         * testsuite/gas/elf/common5a.d: New file.
1320         * testsuite/gas/elf/common5a.l: Likewise.
1321         * testsuite/gas/elf/common5a.s: Likewise.
1322         * testsuite/gas/elf/common5b.d: Likewise.
1323         * testsuite/gas/elf/common5b.l: Likewise.
1324         * testsuite/gas/elf/common5b.s: Likewise.
1325         * testsuite/gas/elf/common5c.d: Likewise.
1326         * testsuite/gas/elf/common5c.s: Likewise.
1327         * testsuite/gas/elf/common5d.d: Likewise.
1328         * testsuite/gas/elf/common5d.s: Likewise.
1329         * testsuite/gas/elf/elf.exp: Run common5a, common5b, common5c
1330         and common5d.
1331
1332 2017-08-10  Nick Clifton  <nickc@redhat.com>
1333
1334         PR gas/21939
1335         * config/obj-macho.c (obj_mach_o_set_indirect_symbols): Increase
1336         size of indirect_syms array so that it is large enough to hold
1337         every symbol if necessary.
1338
1339 2017-08-09  Jiong Wang  <jiong.wang@arm.com>
1340
1341         * config/tc-arm.c (do_crc32_1): Remove warning on REG_SP for thumb_mode.
1342         * testsuite/gas/arm/crc32-armv8-a-bad.d: Update exepcted result.
1343         * testsuite/gas/arm/crc32-armv8-r-bad.d: Likewise.
1344         * testsuite/gas/arm/crc32-armv8-a.d: Likewise.
1345         * testsuite/gas/arm/crc32-armv8-r.d: Likewise.
1346         * testsuite/gas/arm/crc32-armv8-ar-bad.s: Update test case.
1347         * testsuite/gas/arm/crc32-armv8-ar.s: Likewise.
1348         * testsuite/gas/arm/crc32-bad.l: Update expected error message.
1349
1350 2017-08-02  Nick Clifton  <nickc@redhat.com>
1351
1352         * testsuite/gas/all/gas.exp: Add am33 to the skip lists of tests
1353         passed over by the mn10300 target.
1354         * testsuite/gas/elf/elf.exp: Likewise.
1355         * testsuite/gas/elf/dwarf2-11.d: Correct skip of am33 target.
1356         * testsuite/gas/elf/dwarf2-12.d: Likewise.
1357         * testsuite/gas/elf/dwarf2-13.d: Likewise.
1358         * testsuite/gas/elf/dwarf2-14.d: Likewise.
1359         * testsuite/gas/elf/dwarf2-15.d: Likewise.
1360         * testsuite/gas/elf/dwarf2-16.d: Likewise.
1361         * testsuite/gas/elf/dwarf2-17.d: Likewise.
1362         * testsuite/gas/elf/dwarf2-18.d: Likewise.
1363         * testsuite/gas/elf/dwarf2-5.d: Likewise.
1364         * testsuite/gas/elf/dwarf2-6.d: Likewise.
1365         * testsuite/gas/elf/dwarf2-7.d: Likewise.
1366
1367 2017-08-01  H.J. Lu  <hongjiu.lu@intel.com>
1368
1369         PR gas/21874
1370         * config/tc-i386-intel.c (i386_intel_operand): Update segment
1371         register check.
1372         * testsuite/gas/i386/intelok.s: Replace "fs:gs:[eax]" with
1373         "fs:[eax]".
1374         * testsuite/gas/i386/inval-seg.s: Add tests for invalid segment
1375         register.
1376         * testsuite/gas/i386/x86-64-inval-seg.s: Likewise.
1377         * testsuite/gas/i386/inval-seg.l: Updated.
1378         * testsuite/gas/i386/x86-64-inval-seg.l: Likewise.
1379
1380 2017-07-31  John David Anglin  <danglin@gcc.gnu.org>
1381
1382         * config/tc-hppa.c (pa_ip): Clear `d' bit in branch on bit instructions
1383         with a double-word condition and a fixed bit position greater than 31.
1384
1385 2017-07-28  Andrew Waterman  <andrew@sifive.com>
1386
1387         * config/tc-riscv.c (riscv_set_arch): Handle the Q subset like
1388         all other subsets.
1389         Obviate use-after-free.
1390
1391 2017-07-25  Nick Clifton  <nickc@redhat.com>
1392
1393         PR 21739
1394         * testsuite/gas/arc/add_s-err.s: Update expected error message.
1395
1396 2017-07-24  Nick Clifton  <nickc@redhat.com>
1397
1398         PR 21809
1399         * config/tc-aarch64.c (aarch64_init_frag): Do not set a mapping
1400         state for frags in debug sections.
1401         * config/tc-arm.c (arm_init_frag): Likewise.
1402
1403 2017-07-24  Hans-Peter Nilsson  <hp@bitrange.com>
1404
1405         * dwarf2dbg.c (dwarf2dbg_final_check): Rename local variable exp
1406         from expr.
1407
1408 2017-07-21  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
1409
1410         * config/tc-s390.c (s390_parse_cpu): Add z14 as alternate CPU
1411         name.
1412         * doc/as.texinfo: Add z14 to CPU string list.
1413         * doc/c-s390.texi: Likewise.
1414
1415 2017-07-21  Alexandre Oliva  <aoliva@redhat.com>
1416
1417         * dwarf2dbg.c (unused): Check offset of next in struct line_entry.
1418         (current): Initialize view.
1419         (force_reset_view, view_assert_failed): New variables.
1420         (reverse_line_entry_list): New function.
1421         (set_or_check_view): Likewise.
1422         (dwarf2_gen_line_info_1): Call it.
1423         (dwarf2_where): Set view to NULL.
1424         (dwarf2_emit_insn): Return early when called before first file.
1425         (dwarf2_directive_loc): Add view support.  Emit insn
1426         immediately when view option is given.
1427         (process_entries): Avoid set_address to reset view when a known
1428         address change already implies the view reset.
1429         (dwarf2dbg_final_check): New function.
1430         * dwarf2dbg.h (struct dwarf2_line_info): Add view.
1431         (dwarf2dbg_final_check): Declare.
1432         * read.c (s_leb128): Parse expression as deferred.
1433         * write.c (write_object_file): Check pending view asserts.
1434         (cvt_frag_to_fill): Complain about undefined leb128 operand.
1435         * doc/as.texinfo (.loc): Document view support.
1436         * NEWS: Mention the new feature.
1437         * testsuite/gas/all/gas.exp: Run sleb128-9.
1438         * testsuite/gas/all/sleb128-9.d: New.
1439         * testsuite/gas/all/sleb128-9.l: New.
1440         * testsuite/gas/all/sleb128-9.s: New.
1441         * testsuite/gas/elf/dwarf2-1.d: Add nonzero views.
1442         * testsuite/gas/elf/dwarf2-2.d: Likewise.
1443         * testsuite/gas/elf/dwarf2-5.d: New.
1444         * testsuite/gas/elf/dwarf2-5.s: New.
1445         * testsuite/gas/elf/dwarf2-6.d: New.
1446         * testsuite/gas/elf/dwarf2-6.s: New.
1447         * testsuite/gas/elf/dwarf2-7.d: New.
1448         * testsuite/gas/elf/dwarf2-7.s: New.
1449         * testsuite/gas/elf/dwarf2-8.d: New.
1450         * testsuite/gas/elf/dwarf2-8.l: New.
1451         * testsuite/gas/elf/dwarf2-8.s: New.
1452         * testsuite/gas/elf/dwarf2-9.d: New.
1453         * testsuite/gas/elf/dwarf2-9.l: New.
1454         * testsuite/gas/elf/dwarf2-9.s: New.
1455         * testsuite/gas/elf/dwarf2-10.d: New.
1456         * testsuite/gas/elf/dwarf2-10.l: New.
1457         * testsuite/gas/elf/dwarf2-10.s: New.
1458         * testsuite/gas/elf/dwarf2-11.d: New.
1459         * testsuite/gas/elf/dwarf2-11.s: New.
1460         * testsuite/gas/elf/dwarf2-12.d: New.
1461         * testsuite/gas/elf/dwarf2-12.s: New.
1462         * testsuite/gas/elf/dwarf2-13.d: New.
1463         * testsuite/gas/elf/dwarf2-13.s: New.
1464         * testsuite/gas/elf/dwarf2-14.d: New.
1465         * testsuite/gas/elf/dwarf2-14.s: New.
1466         * testsuite/gas/elf/dwarf2-15.d: New.
1467         * testsuite/gas/elf/dwarf2-15.s: New.
1468         * testsuite/gas/elf/dwarf2-16.d: New.
1469         * testsuite/gas/elf/dwarf2-16.s: New.
1470         * testsuite/gas/elf/dwarf2-17.d: New.
1471         * testsuite/gas/elf/dwarf2-17.s: New.
1472         * testsuite/gas/elf/dwarf2-18.d: New.
1473         * testsuite/gas/elf/dwarf2-18.s: New.
1474         * testsuite/gas/elf/elf.exp: Run dwarf2-5..18 tests.
1475         * testsuite/gas/i386/dw2-compress-1.d: Add nonzero views.
1476         * testsuite/gas/i386/dw2-compressed-1.d: Likewise.
1477         * testsuite/gas/i386/ilp32/lns/lns-duplicate.d: Likewise.
1478         * testsuite/gas/lns/lns-big-delta.d: Likewise.
1479         * testsuite/gas/lns/lns-duplicate.d: Likewise.
1480         * testsuite/gas/mips/loc-swap-2.d: Likewise.
1481         * testsuite/gas/mips/loc-swap-3.d: Likewise.
1482         * testsuite/gas/mips/loc-swap.d: Likewise.
1483         * testsuite/gas/mips/micromips@loc-swap-2.d: Likewise.
1484         * testsuite/gas/mips/micromips@loc-swap.d: Likewise.
1485         * testsuite/gas/mips/mips16@loc-swap-2.d: Likewise.
1486         * testsuite/gas/mips/mips16@loc-swap.d: Likewise.
1487         * testsuite/gas/mips/mips16e@loc-swap.d: Likewise.
1488
1489 2017-07-19  Claudiu Zissulescu  <claziss@synopsys.com>
1490
1491         * testsuite/gas/arc/jli-1.d: New file.
1492         * testsuite/gas/arc/jli-1.s: Likewise.
1493         * testsuite/gas/arc/taux.d: Update for jli_base.
1494
1495 2017-07-19  Tristan Gingold  <gingold@adacore.com>
1496
1497         * as.c (start_sbrk): Remove.
1498         (main): Remove assignment.
1499         (dump_statistics): Remove display of data size.
1500
1501 2017-07-19  Tristan Gingold  <gingold@adacore.com>
1502
1503         * testsuite/gas/pe/seh-x64-err-2.s: New test.
1504         * testsuite/gas/pe/seh-x64-err-2.l: New stderr output.
1505         * testsuite/gas/pe/pe.exp: Add test.
1506         * config/obj-coff-seh.c (obj_coff_seh_do_final): Don't try to end
1507         seh part.
1508
1509 2017-07-18  Nick Clifton  <nickc@redhat.com>
1510
1511         PR 21775
1512         * config/tc-arm.c: Fix spelling typos.
1513         * config/tc-mips.c: Likewise.
1514         * config/tc-msp430.c: Likewise.
1515         * config/tc-sh64.c: Likewise.
1516         * config/tc-tic4x.c: Likewise.
1517         * ecoff.c: Likewise.
1518         * testsuite/gas/arm/ldr-bad.l: Likewise.
1519         * testsuite/gas/arm/ldr-t-bad.l: Likewise.
1520         * testsuite/gas/tic54x/opcodes.s: Likewise.
1521         * testsuite/gas/msp340/errata_warns.l: Likewise.
1522
1523 2017-07-18  Nick Clifton  <nickc@redhat.com>
1524
1525         * po/uk.po: Updated Ukranian translation.
1526
1527 2017-07-17  Georg-Johann Lay  <avr@gjlay.de>
1528
1529         PR 21472
1530         * config/tc-avr.c (mcu_types): Add entries for: attiny212,
1531         attiny214, attiny412, attiny414, attiny814, attiny1614,
1532         attiny1616, attiny1617, attiny3214, attiny3216, attiny3217.
1533         (md_show_usage): Adjust doc for "avrxmega3".
1534         * doc/c-avr.texi (AVR options) [-mmcu=]: Adjust doc for avrxmega3.
1535         Add MCUs: attiny212, attiny214, attiny412, attiny414, attiny416,
1536         attiny417, attiny814, attiny816, attiny817, attiny1614,
1537         attiny1616, attiny1617, attiny3214, attiny3216, attiny3217.
1538
1539 2017-07-13  Jim Wilson  <jim.wilson@linaro.org>
1540
1541         * config/tc-arch64.c (aarch64_cpus): Add AARCH64_FEATURE_RDMA to
1542         falkor and qdf24xx entries.
1543
1544 2017-07-12  Alan Modra  <amodra@gmail.com>
1545
1546         * po/es.po: Update from translationproject.org/latest/gas/.
1547         * po/fi.po: Likewise.
1548         * po/fr.po: Likewise.
1549         * po/id.po: Likewise.
1550         * po/ja.po: Likewise.
1551         * po/ru.po: Likewise.
1552         * po/sv.po: Likewise.
1553         * po/tr.po: Likewise.
1554         * po/uk.po: Likewise.
1555         * po/zh_CN.po: Likewise.
1556
1557 2017-07-12  Nick Clifton  <nickc@redhat.com>
1558
1559         Fix compile time warnings using gcc 7.1.1.
1560         * config/tc-pru.c (md_assemble): Add continue statement after
1561         handling 'E' operand character.
1562         * config/tc-v850.c (md_assemble): Initialise the 'insn' variable.
1563
1564 2017-07-05  James Greenhalgh  <james.greenhalgh@arm.com>
1565
1566         * config/tc-arm.c (arm_cpus): Add Cortex-A55 and Cortex-A75.
1567         * doc/c-arm.texi (-mcpu): Document Cortex-A55 and Cortex-A75.
1568
1569 2017-07-05  Borislav Petkov  <bp@suse.de>
1570
1571         * testsuite/gas/i386/opcode.s: Add tests for ModRM.reg == 6 variants.
1572         * testsuite/gas/i386/opcode.d: ditto.
1573         * testsuite/gas/i386/x86-64-opcode.s: Add x86_64 variants too.
1574         * testsuite/gas/i386/x86-64-opcode.d: ditto.
1575
1576 2017-07-04  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
1577
1578         * config/tc-arm.c (arm_regs): Add MVFR2.
1579         (do_vmrs): Constraint for MVFR2 and armv8.
1580         (do_vmsr): Likewise.
1581         * testsuite/gas/arm/armv8-a+fp.d: Update.
1582         * testsuite/gas/arm/armv8-ar+fp.s: Likewise.
1583         * testsuite/gas/arm/armv8-r+fp.d: Likewise.
1584         * testsuite/gas/arm/vfp-bad.s: Likewise.
1585         * testsuite/gas/arm/vfp-bad.l: Likewise.
1586
1587 2017-07-04  Tristan Gingold  <gingold@adacore.com>
1588
1589         * configure: Regenerate.
1590
1591 2017-07-04  Tristan Gingold  <gingold@adacore.com>
1592
1593         * NEWS: Add marker for 2.29.
1594
1595 2017-07-03  Alan Modra  <amodra@gmail.com>
1596
1597         * testsuite/gas/elf/symver.d: Don't run on hppa64-hpux.
1598
1599 2017-06-30  Maciej W. Rozycki  <macro@imgtec.com>
1600
1601         * config/tc-mips.c (md_convert_frag): Use a switch on the
1602         microMIPS relaxation type rather than a chain of conditionals.
1603
1604 2017-06-30  Maciej W. Rozycki  <macro@imgtec.com>
1605
1606         * config/tc-mips.c (md_convert_frag): Rewrite `fix_new_exp'
1607         calls in terms of `fix_new'.
1608
1609 2017-06-30  Maciej W. Rozycki  <macro@imgtec.com>
1610
1611         * config/tc-mips.c (md_convert_frag): Don't make a helper
1612         expression symbol for `fix_new_exp' called with a non-zero
1613         offset.
1614         * testsuite/gas/mips/relax-offset.d: New test.
1615         * testsuite/gas/mips/mips1@relax-offset.d: New test.
1616         * testsuite/gas/mips/r3000@relax-offset.d: New test.
1617         * testsuite/gas/mips/r3900@relax-offset.d: New test.
1618         * testsuite/gas/mips/micromips@relax-offset.d: New test.
1619         * testsuite/gas/mips/relax-offset.l: New stderr output.
1620         * testsuite/gas/mips/relax-offset.s: New test source.
1621         * testsuite/gas/mips/mips.exp: Run the new tests.
1622
1623 2017-06-30  Georg-Johann Lay  <avr@gjlay.de>
1624
1625         PR gas/21683
1626         * doc/c-avr.texi (AVR Options) <-mgcc-isr>: Document it.
1627         (AVR Pseudo Instructions): New node.
1628         * config/tc-avr.h (md_pre_output_hook): Define to avr_pre_output_hook.
1629         (md_undefined_symbol): Define to avr_undefined_symbol.
1630         (avr_pre_output_hook, avr_undefined_symbol): New protos.
1631         * config/tc-avr.c (struc-symbol.h): Include it.
1632         (ISR_CHUNK_Done, ISR_CHUNK_Prologue, ISR_CHUNK_Epilogue): New enums.
1633         (avr_isr, avr_gccisr_opcode)
1634         (avr_no_sreg_hash, avr_no_sreg): New static variables.
1635         (avr_opt_s) <have_gccisr>: Add field.
1636         (avr_opt): Add initializer for have_gccisr.
1637         (enum options) <OPTION_HAVE_GCCISR>: Add enum.
1638         (md_longopts) <"mgcc-isr">: Add entry.
1639         (md_show_usage): Document -mgcc-isr.
1640         (md_parse_option) [OPTION_HAVE_GCCISR]: Handle it.
1641         (md_undefined_symbol): Remove.
1642         (avr_undefined_symbol, avr_pre_output_hook): New fuctions.
1643         (md_begin) <avr_no_sreg_hash, avr_gccisr_opcode>: Initialize them.
1644         (avr_operand) <pregno>: Add argument and set *pregno if function
1645         is called for a register constraint.
1646         [N]: Handle constraint.
1647         (avr_operands) <avr_operand>: Pass 5th parameter to calls.
1648         [avr_opt.have_gccisr]: Call avr_update_gccisr.  Call
1649         avr_gccisr_operands instead of avr_operands.
1650         (avr_update_gccisr, avr_emit_insn, avr_patch_gccisr_frag)
1651         (avr_gccisr_operands, avr_check_gccisr_done): New static functions.
1652         * testsuite/gas/avr/gccisr-01.d: New test.
1653         * testsuite/gas/avr/gccisr-01.s: New test.
1654         * testsuite/gas/avr/gccisr-02.d: New test.
1655         * testsuite/gas/avr/gccisr-02.s: New test.
1656         * testsuite/gas/avr/gccisr-03.d: New test.
1657         * testsuite/gas/avr/gccisr-03.s: New test.
1658
1659 2017-06-30  Maciej W. Rozycki  <macro@imgtec.com>
1660
1661         * config/tc-mips.c (match_float_constant): Update description.
1662         (match_operand): Likewise.
1663
1664 2017-06-30  Andrew Bennett  <andrew.bennett@imgtec.com>
1665             Maciej W. Rozycki  <macro@imgtec.com>
1666
1667         * config/tc-mips.c (mips_ases): Add microMIPS XPA support.
1668         * testsuite/gas/mips/micromips@xpa.d: New test.
1669         * testsuite/gas/mips/mips.exp: Run the new test.  Enable
1670         `xpa-virt-err' test for `micromips'.
1671
1672 2017-06-30  Andrew Bennett  <andrew.bennett@imgtec.com>
1673             Maciej W. Rozycki  <macro@imgtec.com>
1674
1675         * testsuite/gas/mips/micromips@r5.d: New test.
1676         * testsuite/gas/mips/mips.exp: Run the new test.
1677
1678 2017-06-30  Maciej W. Rozycki  <macro@imgtec.com>
1679             Andrew Bennett  <andrew.bennett@imgtec.com>
1680
1681         * config/tc-mips.c (mips_set_ase): Handle the ASE_XPA_VIRT flag.
1682         * testsuite/gas/mips/xpa.d: Remove `xpa' from `-M' in `objdump'
1683         flags.  Add `-mvirt' to `as' flags.
1684         * testsuite/gas/mips/xpa-err.d: New test.
1685         * testsuite/gas/mips/xpa-virt-err.d: New test.
1686         * testsuite/gas/mips/xpa-err.l: New stderr output.
1687         * testsuite/gas/mips/xpa-virt-err.l: New stderr output.
1688         * testsuite/gas/mips/xpa-err.s: New test source.
1689         * testsuite/gas/mips/xpa-virt-err.s: New test source.
1690         * testsuite/gas/mips/mips.exp: Run the new tests.
1691
1692 2017-06-29  Maciej W. Rozycki  <macro@imgtec.com>
1693
1694         * testsuite/gas/mips/mips16e2@mips16e2-mt-sub.d: Adjust for the
1695         ASE_MIPS16E2_MT flag disassembler fix.
1696         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e2-mt-sub.d:
1697         Likewise.
1698
1699 2017-06-29  Maciej W. Rozycki  <macro@imgtec.com>
1700
1701         * config/tc-mips.c (mips_set_ase): Clear the ASE_MIPS16E2_MT
1702         flag before recalculating.
1703         * testsuite/gas/mips/mips16e2-mt-err.d: New test.
1704         * testsuite/gas/mips/mips16e2-mt-err.l: New stderr output.
1705         * testsuite/gas/mips/mips16e2-mt-err.s: New test source.
1706         * testsuite/gas/mips/mips.exp: Run the new test.
1707
1708 2017-06-28  Tamar Christina  <tamar.christina@arm.com>
1709
1710         * config/tc-aarch64.c (aarch64_reg_parse_32_64): Accept 4B.
1711         (aarch64_features): Added dotprod.
1712         * doc/c-aarch64.texi: Added dotprod.
1713         * testsuite/gas/aarch64/dotproduct.d: New.
1714         * testsuite/gas/aarch64/dotproduct.s: New.
1715
1716 2017-06-28  Jiong Wang  <jiong.wang@arm.com>
1717
1718         * config/tc-arm.c (fpu_neon_ext_dotprod): New variable.
1719         (neon_scalar_for_mul): Improve comments.
1720         (do_neon_dotproduct): New function to encode Dot Product instructions.
1721         (do_neon_dotproduct_s): Wrapper function for signed Dot Product
1722         instructions.
1723         (do_neon_dotproduct_u): Wrapper function for unsigned Dot Product
1724         instructions.
1725         (insns): New entries for vsdot and vudot.
1726         (arm_extensions): New entry for "dotprod".
1727         * doc/c-arm.texi: Document new "dotprod" extension.
1728         * testsuite/gas/arm/dotprod.s: New test source.
1729         * testsuite/gas/arm/dotprod-illegal.s: New test source.
1730         * testsuite/gas/arm/dotprod.d: New test.
1731         * testsuite/gas/arm/dotprod-thumb2.d: New test.
1732         * testsuite/gas/arm/dotprod-illegal.d: New test.
1733         * testsuite/gas/arm/dotprod-legacy-arch.d: New test.
1734         * testsuite/gas/arm/dotprod-illegal.l: New error file.
1735         * testsuite/gas/arm/dotprod-legacy-arch.l: New error file.
1736
1737 2017-06-28  Maciej W. Rozycki  <macro@imgtec.com>
1738
1739         * testsuite/gas/mips/elf_mach_interaptiv-mr2.d: New test.
1740         * testsuite/gas/mips/save-err.d: New test.
1741         * testsuite/gas/mips/save-sub.d: New test.
1742         * testsuite/gas/mips/interaptiv-mr2@save.d: New test.
1743         * testsuite/gas/mips/mips1@save-sub.d: New test.
1744         * testsuite/gas/mips/mips2@save-sub.d: New test.
1745         * testsuite/gas/mips/mips3@save-sub.d: New test.
1746         * testsuite/gas/mips/mips4@save-sub.d: New test.
1747         * testsuite/gas/mips/mips5@save-sub.d: New test.
1748         * testsuite/gas/mips/mips32@save-sub.d: New test.
1749         * testsuite/gas/mips/mips64@save-sub.d: New test.
1750         * testsuite/gas/mips/mips16@save-sub.d: New test.
1751         * testsuite/gas/mips/mips16e@save-sub.d: New test.
1752         * testsuite/gas/mips/r3000@save-sub.d: New test.
1753         * testsuite/gas/mips/r3900@save-sub.d: New test.
1754         * testsuite/gas/mips/r4000@save-sub.d: New test.
1755         * testsuite/gas/mips/vr5400@save-sub.d: New test.
1756         * testsuite/gas/mips/interaptiv-mr2@save-sub.d: New test.
1757         * testsuite/gas/mips/sb1@save-sub.d: New test.
1758         * testsuite/gas/mips/octeon2@save-sub.d: New test.
1759         * testsuite/gas/mips/octeon3@save-sub.d: New test.
1760         * testsuite/gas/mips/xlr@save-sub.d: New test.
1761         * testsuite/gas/mips/r5900@save-sub.d: New test.
1762         * testsuite/gas/mips/mips16e2-copy.d: New test.
1763         * testsuite/gas/mips/mips16e2-copy-err.d: New test.
1764         * testsuite/gas/mips/save.d: Remove `MIPS16e' from the `name'
1765         option.  Adjust for trailing padding change.
1766         * testsuite/gas/mips/mips16e2-copy-err.l: New stderr output.
1767         * testsuite/gas/mips/save-sub.s: New test source.
1768         * testsuite/gas/mips/mips16e2-copy.s: New test source.
1769         * testsuite/gas/mips/mips16e2-copy-err.s: New test source.
1770         * testsuite/gas/mips/save.s: Update description, change trailing
1771         padding and remove trailing white space.
1772         * testsuite/gas/mips/mips.exp: Expand `save' and `save-err'
1773         tests across the regular MIPS interAptiv MR2 architecture.  Run
1774         the new tests.
1775
1776 2017-06-28  Maciej W. Rozycki  <macro@imgtec.com>
1777
1778         * testsuite/gas/mips/mips.exp (interaptiv-mr2): New architecture.
1779         (mips16e2-interaptiv-mr2): Likewise.
1780         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro.d: New
1781         test.
1782         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-t.d:
1783         New test.
1784         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-e.d:
1785         New test.
1786         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-t.d:
1787         New test.
1788         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-e.d:
1789         New test.
1790         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64.d: New
1791         test.
1792         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-sub.d: New
1793         test.
1794         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-sub.d: New
1795         test.
1796         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64-sub.d:
1797         New test.
1798         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e2-mt-sub.d:
1799         New test.
1800         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-asmacro.d:
1801         New test.
1802         * testsuite/gas/mips/interaptiv-mr2@mcu.d: New test.
1803         * testsuite/gas/mips/interaptiv-mr2@isa-override-1.d: New test.
1804         * testsuite/gas/mips/interaptiv-mr2@isa-override-2.d: New test.
1805         * testsuite/gas/mips/attr-gnu-4-5.d: Ignore any number of ASE
1806         flag lines present rather than just one.
1807         * testsuite/gas/mips/attr-gnu-4-6.d: Likewise.
1808         * testsuite/gas/mips/attr-gnu-4-7.d: Likewise.
1809         * testsuite/gas/mips/attr-none-o32-fp64-nooddspreg.d: Likewise.
1810         * testsuite/gas/mips/attr-none-o32-fp64.d: Likewise.
1811         * testsuite/gas/mips/attr-none-o32-fpxx.d: Likewise.
1812         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro.l: New
1813         stderr output.
1814         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-t.l:
1815         New stderr output.
1816         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-e.l:
1817         New stderr output.
1818         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-t.l:
1819         New stderr output.
1820         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-e.l:
1821         New stderr output.
1822         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-sub.l: New
1823         stderr output.
1824         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-sub.l: New
1825         stderr output.
1826         * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64-sub.l:
1827         New stderr output.
1828         * testsuite/gas/mips/interaptiv-mr2@isa-override-1.l: New stderr
1829         output.
1830         * testsuite/gas/mips/interaptiv-mr2@isa-override-2.l: New stderr
1831         output.
1832
1833 2017-06-28  Maciej W. Rozycki  <macro@imgtec.com>
1834             Matthew Fortune  <matthew.fortune@imgtec.com>
1835
1836         * config/tc-mips.c (validate_mips_insn): Handle
1837         OP_SAVE_RESTORE_LIST specially.
1838         (mips_encode_save_restore, mips16_encode_save_restore): New
1839         functions.
1840         (match_save_restore_list_operand): Factor out SAVE/RESTORE
1841         operand insertion into the instruction word or halfword to these
1842         new functions.
1843         (mips_cpu_info_table): Add "interaptiv-mr2" entry.
1844
1845         * doc/c-mips.texi (MIPS Options): Add `interaptiv-mr2' to the
1846         `-march=' argument list.
1847
1848 2017-06-27  Maciej W. Rozycki  <macro@imgtec.com>
1849
1850         * testsuite/gas/mips/mips16e-save.d: Rename to...
1851         * testsuite/gas/mips/save.d: ... this.
1852         * testsuite/gas/mips/mips16e-save-err.d: Update the
1853         `error-output' option and rename to...
1854         * testsuite/gas/mips/save-err.d: ... this.
1855         * testsuite/gas/mips/mips16e-save-err.l: Rename to...
1856         * testsuite/gas/mips/save-err.l: ... this.
1857         * testsuite/gas/mips/mips16e-save.s: Rename to...
1858         * testsuite/gas/mips/save.s: ... this.
1859         * testsuite/gas/mips/mips16e-save-err.s: Rename to...
1860         * testsuite/gas/mips/save-err.s: ... this.
1861         * testsuite/gas/mips/mips.exp: Rename `mips16e-save' and
1862         `mips16e-save-err' invocations to `save' and `save-err'
1863         respectively and reorder these tests away from MIPS16 tests.
1864
1865 2017-06-27  Maciej W. Rozycki  <macro@imgtec.com>
1866
1867         * testsuite/gas/mips/mips16e-save.d: Remove `-mmips:isa32
1868         -mmips:16' from `objdump' flags and `-march=mips32 -mips16' from
1869         `as' flags.
1870         * testsuite/gas/mips/mips16e-save-err.d: Remove `-march=mips32'
1871         from `as' flags.
1872         * testsuite/gas/mips/mips16e-save.s: Remove the `.set mips16'
1873         pseudo-op.
1874         * testsuite/gas/mips/mips16e-save-err.s: Likewise.
1875         * testsuite/gas/mips/mips.exp: Run SAVE/RESTORE tests across all
1876         MIPS16e architectures.
1877
1878 2017-06-27  Maciej W. Rozycki  <macro@imgtec.com>
1879
1880         * testsuite/gas/mips/mips16e-save-err.d: New test.
1881         * gas/testsuite/gas/mips/mips.exp: Fold `mips16e-save-err' list
1882         test into the new test.
1883
1884 2017-06-27  Maciej W. Rozycki  <macro@imgtec.com>
1885
1886         * testsuite/gas/mips/mips16e-save.d: Capitalize the `name'
1887         option.
1888
1889 2017-06-26  Kuan-Lin Chen  <rufus@andestech.com>
1890
1891         * config/tc-riscv.c (md_apply_fix) [BFD_RELOC_32]: Convert to a
1892         R_RISCV_32_PCREL relocation.
1893
1894 2017-06-26  H.J. Lu  <hongjiu.lu@intel.com>
1895
1896         PR gas/21661
1897         * config/obj-elf.c (obj_elf_symver): Don't allow .symver with
1898         common symbol.
1899         (elf_frob_symbol): Likewise.
1900         * testsuite/gas/elf/elf.exp: Run pr21661.
1901         * testsuite/gas/elf/pr21661.d: New file.
1902         * testsuite/gas/elf/pr21661.s: Likewise.
1903
1904 2017-06-26  Nick Clifton  <nickc@redhat.com>
1905
1906         * config/tc-arm.c (fpu_any): Only define for ELF based targets.
1907
1908 2017-06-26  Claudiu Zissulescu  <claziss@synopsys.com>
1909
1910         * /config/tc-arc.c (is_br_jmp_insn_p): Update macro with known
1911         instructions to be accounted as jumps.
1912         (assemble_insn): Check for limms into the delay slots.  Emit an
1913         error if so.
1914         * testsuite/gas/arc/asm-errors-3.d: New file.
1915         * testsuite/gas/arc/asm-errors-3.err: Likewise.
1916         * testsuite/gas/arc/asm-errors-3.s: Likewise.
1917
1918 2017-06-26  Thomas Preud'homme  <thomas.preudhomme@arm.com>
1919
1920         * NEWS: Mention support of ARM Cortex-R52 processor.
1921         * config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-R52 processor.
1922         * doc/c-arm.texi: Mention support for -mcpu=cortex-r52.
1923
1924 2017-06-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
1925
1926         * NEWS: Mention support for ARMv8-R architecture.
1927         * config/tc-arm.c (arm_archs): Add entry for ARMv8-R.
1928         (arm_extensions): Restrict pan, ras and rdma extension to
1929         ARMv8-A and make crypto, fp and simd extensions available to
1930         ARMv8-R.
1931         (cpu_arch_ver): Add entry for ARMv8-R.
1932         (aeabi_set_public_attributes): Update gas_assert for Tag_DIV_use
1933         logic.
1934         * testsuite/gas/arm/armv8-a+fp.s: Rename into ...
1935         * testsuite/gas/arm/armv8-ar+fp.s: This.  Remove .arch directive.
1936         * testsuite/gas/arm/armv8-a+fp.d: Specify source to assemble and
1937         architecture to assemble for.
1938         * testsuite/gas/arm/armv8-r+fp.d: New.
1939         * testsuite/gas/arm/armv8-a+simd.s: Rename into ...
1940         * testsuite/gas/arm/armv8-ar+simd.s: This.  Remove .arch directive.
1941         * testsuite/gas/arm/armv8-a+simd.d: Specify source to assemble and
1942         architecture to assemble for.
1943         * testsuite/gas/arm/armv8-r+simd.d: New.
1944         * testsuite/gas/arm/armv8-a-bad.s: Rename into ...
1945         * testsuite/gas/arm/armv8-ar-bad.s: This.  Remove .arch directive.
1946         * testsuite/gas/arm/armv8-a-bad.l: Rename into ...
1947         * testsuite/gas/arm/armv8-ar-bad.l: This.  Decrement line number by 1.
1948         * testsuite/gas/arm/armv8-a-bad.d: Specify source to assemble,
1949         architecture to assemble for and adjust error output file.
1950         * testsuite/gas/arm/armv8-r-bad.d: New.
1951         * testsuite/gas/arm/armv8-a-barrier.s: Rename into ...
1952         * testsuite/gas/arm/armv8-ar-barrier.s: This.
1953         * testsuite/gas/arm/armv8-a-barrier-arm.d: Adjust source.
1954         * testsuite/gas/arm/armv8-a-barrier-thumb.d: Likewise.
1955         * testsuite/gas/arm/armv8-r-barrier-arm.d: New.
1956         * testsuite/gas/arm/armv8-r-barrier-thumb.d: New.
1957         * testsuite/gas/arm/armv8-a-it-bad.s: Rename into ...
1958         * testsuite/gas/arm/armv8-ar-it-bad.s: This.  Remove .arch directive.
1959         * testsuite/gas/arm/armv8-a-it-bad.l: Rename into ...
1960         * testsuite/gas/arm/armv8-ar-it-bad.l: This.  Decrement line number
1961         by 1.
1962         * testsuite/gas/arm/armv8-a-it-bad.d: Specify source to assemble,
1963         architecture to assemble for and adjust error output file.
1964         * testsuite/gas/arm/armv8-r-it-bad.d: New.
1965         * testsuite/gas/arm/armv8-a.s: Rename into ...
1966         * testsuite/gas/arm/armv8-ar.s: This.  Remove .arch directive.
1967         * testsuite/gas/arm/armv8-a.d: Specify source to assemble and
1968         architecture to assemble for.
1969         * testsuite/gas/arm/armv8-r.d: New.
1970         * testsuite/gas/arm/attr-march-armv8-r+crypto.d: New.
1971         * testsuite/gas/arm/attr-march-armv8-r+fp.d: New.
1972         * testsuite/gas/arm/attr-march-armv8-r+simd.d: New.
1973         * testsuite/gas/arm/attr-march-armv8-r.d: New.
1974         * testsuite/gas/arm/crc32.s: Rename into ...
1975         * testsuite/gas/arm/crc32-armv8-ar.s: This.
1976         * testsuite/gas/arm/crc32.d: Rename into ...
1977         * testsuite/gas/arm/crc32-armv8-a.d: This.  Specify source to assemble.
1978         * testsuite/gas/arm/crc32-armv8-r.d: New.
1979         * testsuite/gas/arm/crc32-bad.s: Rename into ...
1980         * testsuite/gas/arm/crc32-armv8-ar-bad.s: This.
1981         * testsuite/gas/arm/crc32-bad.d: Rename into ...
1982         * testsuite/gas/arm/crc32-armv8-a-bad.d: This.  Specify source to
1983         assemble.
1984         * testsuite/gas/arm/crc32-armv8-r-bad.d: New.
1985         * testsuite/gas/arm/mask_1.s: Rename into ...
1986         * testsuite/gas/arm/mask_1-armv8-ar.s: This.
1987         * testsuite/gas/arm/mask_1.d: Rename into ...
1988         * testsuite/gas/arm/mask_1-armv8-a.d: This.  Specify source to
1989         assemble.
1990         * testsuite/gas/arm/mask_1-armv8-r.d: new.
1991
1992 2017-06-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
1993
1994         * config/tc-arm.c (arm_ext_v6m): Delete.
1995         (arm_ext_v7m): Delete.
1996         (arm_ext_m): Remove ARM_EXT_OS from the set of feature defined M
1997         profile.
1998         (arm_arch_v6m_only): Delete.
1999         (do_t_swi): Remove special case for ARMv6S-M.
2000         (md_assemble): Display error message previously in do_t_swi when
2001         SVC is not available.
2002         (insns): Guard swi and svc by arm_ext_os for Thumb mode.
2003         (aeabi_set_public_attributes): Remove special case for ARMv6S-M.
2004
2005 2017-05-11  Andrew Waterman  <andrew@sifive.com>
2006
2007         * config/tc-riscv.c (riscv_ip): Changes as_warn to as_bad for improper
2008         shift amounts.
2009
2010 2017-06-22  Nick Clifton  <nickc@redhat.com>
2011
2012         * config/tc-arm.c (arm_ext_v7m): Add ATTRIBUTE_UNUSED.
2013
2014 2017-06-21  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2015
2016         * config/tc-arm.c (fpu_any): Defined from FPU_ANY.
2017         (cpu_arch_ver): Add all architectures and sort by release date.
2018         (have_ext_for_needed_feat_p): New.
2019         (get_aeabi_cpu_arch_from_fset): New.
2020         (aeabi_set_public_attributes): Call above function to determine
2021         Tag_CPU_arch and Tag_CPU_arch_profile values.  Adapt Tag_ARM_ISA_use
2022         and Tag_THUMB_ISA_use selection logic to check absence of feature bit
2023         accordingly.
2024         * testsuite/gas/arm/attr-march-armv1.d: Fix expected Tag_CPU_arch build
2025         attribute value.
2026         * testsuite/gas/arm/attr-march-armv2.d: Likewise.
2027         * testsuite/gas/arm/attr-march-armv2a.d: Likewise.
2028         * testsuite/gas/arm/attr-march-armv2s.d: Likewise.
2029         * testsuite/gas/arm/attr-march-armv3.d: Likewise.
2030         * testsuite/gas/arm/attr-march-armv3m.d: Likewise.
2031         * testsuite/gas/arm/pr12198-2.d: Likewise.
2032
2033 2017-06-21  H.J. Lu  <hongjiu.lu@intel.com>
2034
2035         * testsuite/gas/i386/cet-intel.d: Updated.
2036         * testsuite/gas/i386/cet.d: Likewise.
2037         * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
2038         * testsuite/gas/i386/x86-64-cet.d: Likewise.
2039         * testsuite/gas/i386/cet.s: Update incsspd and setssbsy tests.
2040         * testsuite/gas/i386/x86-64-cet.s: Likewise.
2041
2042 2017-06-21  H.J. Lu  <hongjiu.lu@intel.com>
2043
2044         * testsuite/gas/i386/cet-intel.d: Updated.
2045         * testsuite/gas/i386/cet.d: Likewise.
2046         * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
2047         * testsuite/gas/i386/x86-64-cet.d: Likewise.
2048         * testsuite/gas/i386/cet.s: Replace savessp with saveprevssp.
2049         * testsuite/gas/i386/x86-64-cet.s: Likewise.
2050
2051 2017-06-21  H.J. Lu  <hongjiu.lu@intel.com>
2052
2053         * config/tc-i386.c (md_assemble): Update NOTRACK prefix check.
2054         * testsuite/gas/i386/notrack-intel.d: Updated.
2055         * testsuite/gas/i386/notrack.d: Likewise.
2056         * testsuite/gas/i386/notrackbad.l: Likewise.
2057         * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
2058         * testsuite/gas/i386/x86-64-notrack.d: Likewise.
2059         * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
2060         * testsuite/gas/i386/notrack.s: Add NOTRACK prefix tests with
2061         memory indirect branch.
2062         * testsuite/gas/i386/x86-64-notrack.s: Likewise.
2063         * testsuite/gas/i386/notrackbad.s: Remove memory indirect branch
2064         with NOTRACK prefix.
2065         * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
2066
2067 2017-06-20  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2068
2069         * config/tc-arm.c (arm_extensions): New duplicate idiv entry to enable
2070         Thumb division for ARMv7 architecture.
2071         (arm_parse_extension): Document expected behavior for duplicate
2072         entries.
2073         (s_arm_arch_extension): Likewise.
2074         * testsuite/gas/arm/forbid-armv7-idiv-ext.d: New test.
2075         * testsuite/gas/arm/forbid-armv7-idiv-ext.l: New expected output for
2076         above test.
2077
2078 2017-06-21  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2079
2080         * config/tc-arm.c (aeabi_set_public_attributes): Populate flags from
2081         feature bits used or selected_cpu depending on whether a CPU was
2082         selected by the user.
2083
2084 2017-06-21  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2085
2086         * config/tc-arm.c (aeabi_set_public_attributes): Test *mcpu_ext_opt to
2087         decide whether to set Tag_DSP_extension build attribute value.  Remove
2088         now useless arm_arch variable.
2089
2090 2017-06-21  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2091
2092         * config/tc-arm.c (dyn_mcpu_ext_opt): New static variable.
2093         (dyn_march_ext_opt): Likewise.
2094         (md_begin): Copy extension feature bits alongside architecture ones.
2095         Merge extensions feature bits in selected_cpu and cpu_variant if there
2096         is some.
2097         (arm_parse_extension): Pass architecture and extension feature bits in
2098         separate parameters, with architecture bits being read only.  Update
2099         **opt_p directly rather than *ext_set and initialize it if needed.
2100         (arm_parse_cpu): Stop merging architecture and extension feature bits
2101         and instead use mcpu_cpu_opt and dyn_mcpu_ext_opt to memorize them
2102         respectively.  Adapt to change in parameters of arm_parse_extension.
2103         (arm_parse_arch): Adapt to change in parameters of arm_parse_extension.
2104         (aeabi_set_attribute_string): Make function static.
2105         (arm_md_post_relax): New function.
2106         (s_arm_cpu): Stop merging architecture and extension feature bits and
2107         instead use mcpu_cpu_opt and dyn_mcpu_ext_opt to memorize them
2108         respectively.  Merge extension feature bits in cpu_variant
2109         if there is any.
2110         (s_arm_arch): Reset extension feature bit.  Set selected_cpu from
2111         *mcpu_cpu_opt and cpu_variant from selected_cpu and *mfpu_opt for
2112         consistency with s_arm_cpu.
2113         (s_arm_arch_extension): Update *dyn_mcpu_ext_opt rather than
2114         selected_cpu, allocating it before hand if needed.  Set selected_cpu
2115         from it and then cpu_variant.
2116         (s_arm_fpu): Merge *mcpu_ext_opt feature bits if any in cpu_variant.
2117         * config/tc-arm.h (md_post_relax_hook): Set to arm_md_post_relax.
2118         (aeabi_set_public_attributes): Delete external declaration.
2119         (arm_md_post_relax): Declare externally.
2120
2121 2017-06-21  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2122
2123         * config/tc-arm.c (struct arm_cpu_option_table): New ext field.
2124         (ARM_CPU_OPT): Add parameter to set new ext field and reorder canonical
2125         name field just after the name field.
2126         (arm_cpus): Move extension feature bit from value field to ext field,
2127         reorder parameter according to changes in ARM_CPU_OPT and reindent.
2128         (arm_parse_cpu): Point mcpu_cpu_opt to a bitfield merging the value and
2129         ext field from the selected arm_cpus entry.
2130         (s_arm_cpu): Likewise.
2131
2132 2017-06-21  James Greenhalgh  <james.greenhalgh@arm.com>
2133
2134         * config/tc-aarch64.c (aarch64_cpus): Add cortex-a55 and cortex-a75.
2135         * doc/c-aarch64.texi (-mcpu): Document cortex-a55 and cortex-a75.
2136
2137 2017-06-15  H.J. Lu  <hongjiu.lu@intel.com>
2138
2139         PR binutils/21594
2140         * testsuite/gas/i386/mpx.s: Add 2 tests with invalid bnd
2141         register.
2142         * testsuite/gas/i386/x86-64-mpx.s: Likewise.
2143         * testsuite/gas/i386/mpx.d: Updated.
2144         * testsuite/gas/i386/x86-64-mpx.d: Likewise.
2145
2146 2017-06-14  Max Filippov  <jcmvbkbc@gmail.com>
2147
2148         * config/tc-xtensa.c (density_supported, xtensa_fetch_width,
2149         absolute_literals_supported): Leave definitions uninitialized.
2150         (directive_state): Leave entries for directive_density and
2151         directive_absolute_literals initialized to false.
2152         (xg_init_global_config, xtensa_init): New functions.
2153         * config/tc-xtensa.h (TARGET_BYTES_BIG_ENDIAN): Define as 0.
2154         (HOST_SPECIAL_INIT): New definition.
2155         (xtensa_init): New declaration.
2156
2157 2017-06-07  Michael Collison  <michael.collison@arm.com>
2158
2159         * config/tc-aarch64.c (reg_entry_reg_names): Add IP0,
2160         IP1, FP, and LR as register aliases of register 16, 17, 29
2161         and 30 respectively.
2162         * testsuite/gas/aarch64/diagnostic.l: Remove diagnostic
2163         prohibiting register 'lr' which is now an alias.
2164         * testsuite/gas/aarch64/diagnostic.s: Remove instruction
2165         utilizing register 'lr' which is now an alias.
2166
2167 2017-06-06  Jiong Wang  <jiong.wang@arm.com>
2168
2169         * config/tc-arm.c (reject_bad_reg): Allow REG_SP on ARMv8-A.
2170         (parse_operands): Allow REG_SP for OP_oRRnpcsp and OP_RRnpcsp on
2171         ARMv8-A.
2172         (do_co_reg): Allow REG_SP for Rd on ARMv8-A.
2173         (do_t_add_sub): Likewise.
2174         (do_t_mov_cmp): Likewise.
2175         (do_t_tb): Likewise.
2176         * testsuite/gas/arm/ld-sp-warn.l: Delete the warning on REG_SP as Rt for
2177         ldrsb.
2178         * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.d: New test.
2179         * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.l: New test.
2180         * testsuite/gas/arm/sp-pc-validations-bad-t.d: Specifies -march=armv7-a.
2181         * testsuite/gas/arm/sp-pc-validations-bad-t.s: Remove ".arch armv7-a".
2182         * testsuite/gas/arm/sp-usage-thumb2-relax-on-v7.d: New test.
2183         * testsuite/gas/arm/sp-usage-thumb2-relax-on-v7.l: New test.
2184         * testsuite/gas/arm/sp-usage-thumb2-relax-on-v8.d: New test.
2185         * testsuite/gas/arm/sp-usage-thumb2-relax.s: New test.
2186         * testsuite/gas/arm/strex-bad-t.d: Specifies -march=armv7-a.
2187
2188 2017-06-05  Jim Wilson  <jim.wilson@linaro.org>
2189
2190         * config/tc-arm.c (arm_cpus): Delete falkor and qdf24xx entries.
2191         * doc/c-arm.texi (-mcpu): Likewise.
2192
2193 2017-05-30  Anton Kolesov  <anton.kolesov@synopsys.com>
2194
2195         * config/tc-arc.c (cpu_types): Include arc-cpu.def
2196
2197 2017-05-23  H.J. Lu  <hongjiu.lu@intel.com>
2198
2199         * gas/testsuite/gas/i386/notrackbad.l: Updated for non-ELF
2200         targets.
2201         * gas/testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
2202
2203 2017-05-23  Claudiu Zissulescu <claziss@synopsys.com>
2204
2205         * config/tc-arc.c (md_apply_fix): Use as_bad_where.
2206         (assemble_insn): Use as_bad.
2207
2208 2017-05-22  H.J. Lu  <hongjiu.lu@intel.com>
2209
2210         * config/tc-i386.c (REX_PREFIX): Changed to 7.
2211         (NOTRACK_PREFIX): New.
2212         (MAX_PREFIXES): Changed to 8.
2213         (_i386_insn): Add notrack_prefix.
2214         (PREFIX_GROUP): Add PREFIX_DS.
2215         (add_prefix): Return PREFIX_DS for DS_PREFIX_OPCODE.
2216         (md_assemble): Check if NOTRACK prefix is supported.
2217         (parse_insn): Set notrack_prefix and issue an error for
2218         other prefixes after NOTRACK prefix.
2219         * testsuite/gas/i386/i386.exp: Run tests for NOTRACK prefix.
2220         * testsuite/gas/i386/notrack-intel.d: New file.
2221         * testsuite/gas/i386/notrack.d: Likewise.
2222         * testsuite/gas/i386/notrack.s: Likewise.
2223         * testsuite/gas/i386/notrackbad.l: Likewise.
2224         * testsuite/gas/i386/notrackbad.s: Likewise.
2225         * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
2226         * testsuite/gas/i386/x86-64-notrack.d: Likewise.
2227         * testsuite/gas/i386/x86-64-notrack.s: Likewise.
2228         * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
2229         * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
2230
2231 2017-05-22  Jiong Wang <jiong.wang@arm.com>
2232
2233         * configure.tgt: Set "arch" to "aarch64" if ${cpu} equals "aarch64".
2234         Recognize the new triplet name aarch64*-linux-gnu_ilp32.
2235         * configure.ac: Output DEFAULT_ARCH macro for AArch64.
2236         * configure: Regenerate.
2237         * config/tc-aarch64.h (aarch64_after_parse_args): New declaration.
2238         (md_after_parse_args): New define.
2239         * config/tc-aarch64.c (aarch64_abi_type): New enumeration
2240         AARCH64_ABI_NONE.
2241         (DEFAULT_ARCH): New define.
2242         (aarch64_abi): Set default value to AARCH64_ABI_NONE.
2243         (aarch64_after_parse_args): New function.
2244
2245 2017-05-19  Jose E. Marchesi  <jose.marchesi@oracle.com>
2246
2247         * config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
2248         `v9m8' and `v8plusm8'.
2249         (sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
2250         (get_hwcap_name): Support the M8 hardware capabilities.
2251         (sparc_ip): Handle new operand types.
2252         * doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
2253         -Asparc6, and the corresponding -xarch aliases.
2254         * testsuite/gas/sparc/sparc6.s: New file.
2255         * testsuite/gas/sparc/sparc6.d: Likewise.
2256         * testsuite/gas/sparc/sparc6-diag.s: Likewise.
2257         * testsuite/gas/sparc/sparc6-diag.l: Likewise.
2258         * testsuite/gas/sparc/fpcmpshl.s: Likewise.
2259         * testsuite/gas/sparc/fpcmpshl.d: Likewise.
2260         * testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
2261         * testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
2262         * testsuite/gas/sparc/ldm-stm.s: Likewise.
2263         * testsuite/gas/sparc/ldm-stm.d: Likewise.
2264         * testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
2265         * testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
2266         * testsuite/gas/sparc/ldmf-stmf.s: Likewise.
2267         * testsuite/gas/sparc/ldmf-stmf.d: Likewise.
2268         * testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
2269         * testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
2270         * testsuite/gas/sparc/on.s: Likewise.
2271         * testsuite/gas/sparc/on.d: Likewise.
2272         * testsuite/gas/sparc/on-diag.s: Likewise.
2273         * testsuite/gas/sparc/on-diag.l: Likewise.
2274         * testsuite/gas/sparc/rle.s: Likewise.
2275         * testsuite/gas/sparc/rle.d: Likewise.
2276         * testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
2277         * testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
2278         * testsuite/gas/sparc/rdasr.d: Likewise.
2279
2280 2017-05-19  Jose E. Marchesi  <jose.marchesi@oracle.com>
2281
2282         * testsuite/gas/sparc/call-relax.d: Support 32-bit targets.
2283         * testsuite/gas/sparc/sparc.exp (gas_64_check): Use -64 to
2284         run asi-bump-warn.
2285
2286 2017-05-19  Georg-Johann Lay  <avr@gjlay.de>
2287
2288         PR ld/21472
2289         * config/tc-avr.c (mcu_types): Add entries for: attiny416,
2290         attiny417, attiny816, attiny817.
2291
2292 2017-05-18  Alan Modra  <amodra@gmail.com>
2293
2294         * config/tc-aarch64.c: Don't compare booleans against TRUE or FALSE.
2295         * config/tc-hppa.c: Likewise.
2296         * config/tc-mips.c: Likewise.
2297         * config/tc-score7.c: Likewise.
2298
2299 2017-05-16  Alan Modra  <amodra@gmail.com>
2300
2301         * write.c (GENERIC_FORCE_RELOCATION_LOCAL): Define.
2302         (TC_FORCE_RELOCATION_LOCAL): Use it.
2303         (GENERIC_FORCE_RELOCATION_SUB_SAME): Define.
2304         (TC_FORCE_RELOCATION_SUB_SAME): Use it.
2305         * config/tc-arm.h (TC_FORCE_RELOCATION_LOCAL,
2306         TC_FORCE_RELOCATION_SUB_SAME): Use GENERIC defines.
2307         * config/tc-aarch64.h: Similarly.
2308         * config/tc-avr.h: Similarly.
2309         * config/tc-cris.h: Similarly.
2310         * config/tc-i386.h: Similarly.
2311         * config/tc-i960.h: Similarly.
2312         * config/tc-ia64.h: Similarly.
2313         * config/tc-microblaze.h: Similarly.
2314         * config/tc-mips.h: Similarly.
2315         * config/tc-msp430.h: Similarly.
2316         * config/tc-nds32.h: Similarly.
2317         * config/tc-pru.h: Similarly.
2318         * config/tc-riscv.h: Similarly.
2319         * config/tc-rl78.h: Similarly.
2320         * config/tc-s390.h: Similarly.
2321         * config/tc-sh.h: Similarly.
2322         * config/tc-sh64.h: Similarly.
2323         * config/tc-sparc.h: Similarly.
2324         * config/tc-xtensa.h: Similarly.
2325         * config/tc-mn10300.h: Similarly.
2326         (GENERIC_FORCE_RELOCATION_LOCAL): Define.
2327         * config/tc-msp430.c (msp430_force_relocation_local): Modify to
2328         be addition to rather than replacement of standard
2329         TC_FORCE_RELOCATION_LOCAL.
2330
2331 2017-05-15  Nick Clifton  <nickc@redhat.com>
2332
2333         PR gas/21458
2334         * config/tc-arm.c (do_adr): If the ADR involves a thumb function
2335         symbol, ensure that the T bit will be set.
2336         (do_adrl): Likewise.
2337         (do_t_adr): Likewise.
2338         * testsuite/gas/arm/pr21458.s: New test.
2339         * testsuite/gas/arm/pr21458.d: New test driver.
2340
2341 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2342
2343         * testsuite/gas/mips/mips16-pcrel-1.d: Remove `-mips3' from `as'
2344         flags.
2345         * testsuite/gas/mips/mips16-pcrel-pic-1.d: Likewise.
2346         * testsuite/gas/mips/mips16-pcrel-n32-0.d: Likewise.
2347         * testsuite/gas/mips/mips16-pcrel-n32-1.d: Likewise.
2348         * testsuite/gas/mips/mips16-pcrel-n64-0.d: Likewise.
2349         * testsuite/gas/mips/mips16-pcrel-n64-1.d: Likewise.
2350         * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: Likewise.
2351         * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: Likewise.
2352         * testsuite/gas/mips/mips16-pcrel-reloc-4.d: Likewise.
2353         * testsuite/gas/mips/mips16-pcrel-reloc-5.d: Likewise.
2354         * testsuite/gas/mips/mips16-pcrel-reloc-6.d: Likewise.
2355         * testsuite/gas/mips/mips16-pcrel-reloc-7.d: Likewise.
2356         * testsuite/gas/mips/mips16-pcrel-addend-4.d: Likewise.
2357         * testsuite/gas/mips/mips16-pcrel-addend-5.d: Likewise.
2358         * testsuite/gas/mips/mips16-pcrel-addend-6.d: Likewise.
2359         * testsuite/gas/mips/mips16-pcrel-addend-7.d: Likewise.
2360         * testsuite/gas/mips/mips16-pcrel-addend-9.d: Likewise.
2361         * testsuite/gas/mips/mips16-pcrel-addend-pic-9.d: Likewise.
2362         * testsuite/gas/mips/mips16-pcrel-addend-n32-8.d: Likewise.
2363         * testsuite/gas/mips/mips16-pcrel-addend-n32-9.d: Likewise.
2364         * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-8.d:
2365         Likewise.
2366         * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-9.d:
2367         Likewise.
2368         * testsuite/gas/mips/mips16-pcrel-addend-n64-8.d: Likewise.
2369         * testsuite/gas/mips/mips16-pcrel-addend-n64-9.d: Likewise.
2370         * testsuite/gas/mips/mips16-pcrel-absolute-2.d: Likewise.
2371         * testsuite/gas/mips/mips16-pcrel-absolute-3.d: Likewise.
2372         * testsuite/gas/mips/mips16-pcrel-absolute-6.d: Likewise.
2373         * testsuite/gas/mips/mips16-pcrel-absolute-7.d: Likewise.
2374         * testsuite/gas/mips/mips16-pcrel-absolute-pic-6.d: Likewise.
2375         * testsuite/gas/mips/mips16-pcrel-absolute-n32-4.d: Likewise.
2376         * testsuite/gas/mips/mips16-pcrel-absolute-n32-6.d: Likewise.
2377         * testsuite/gas/mips/mips16-pcrel-absolute-n64-4.d: Likewise.
2378         * testsuite/gas/mips/mips16-pcrel-absolute-n64-6.d: Likewise.
2379         * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-4.d:
2380         Likewise.
2381         * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-6.d:
2382         Likewise.
2383         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-4.d:
2384         Likewise.
2385         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-6.d:
2386         Likewise.
2387         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-4.d:
2388         Likewise.
2389         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-6.d:
2390         Likewise.
2391         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-4.d:
2392         Likewise.
2393         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-6.d:
2394         Likewise.
2395         * testsuite/gas/mips/mips16e2@mips16-pcrel-0.d: New test.
2396         * testsuite/gas/mips/mips16e2@mips16-pcrel-1.d: New test.
2397         * testsuite/gas/mips/mips16e2@mips16-pcrel-2.d: New test.
2398         * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-0.d: New test.
2399         * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-1.d: New test.
2400         * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-0.d: New
2401         test.
2402         * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-1.d: New
2403         test.
2404         * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-0.d: New test.
2405         * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-1.d: New test.
2406         * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-2.d: New test.
2407         * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-3.d: New test.
2408         * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-6.d: New test.
2409         * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-7.d: New test.
2410         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-2.d: New test.
2411         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-3.d: New test.
2412         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-6.d: New test.
2413         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-7.d: New test.
2414         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-8.d: New test.
2415         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-9.d: New test.
2416         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n32-8.d: New
2417         test.
2418         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n32-9.d: New
2419         test.
2420         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n64-sym32-8.d:
2421         New test.
2422         * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n64-sym32-9.d:
2423         New test.
2424         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute.d: New test.
2425         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-1.d: New
2426         test.
2427         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-2.d: New
2428         test.
2429         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-3.d: New
2430         test.
2431         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-4.d: New
2432         test.
2433         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-5.d: New
2434         test.
2435         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-6.d: New
2436         test.
2437         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-7.d: New
2438         test.
2439         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-4.d: New
2440         test.
2441         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-6.d: New
2442         test.
2443         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n32-4.d: New
2444         test.
2445         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n32-6.d: New
2446         test.
2447         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n64-sym32-4.d:
2448         New test.
2449         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n64-sym32-6.d:
2450         New test.
2451         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n32-4.d:
2452         New test.
2453         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n32-6.d:
2454         New test.
2455         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n64-sym32-4.d:
2456         New test.
2457         * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n64-sym32-6.d:
2458         New test.
2459         * testsuite/gas/mips/mips16-pcrel-1.l: Adjust line numbers.
2460         * testsuite/gas/mips/mips16-pcrel-1.s: Adjust for alignment
2461         preservation between MIPS16 and MIPS16e2 code.
2462         * testsuite/gas/mips/mips.exp: Run MIPS16 relaxation tests over
2463         all MIPS16 architectures.
2464
2465 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2466
2467         * testsuite/gas/mips/mips16e2.d: New test.
2468         * testsuite/gas/mips/mips16e2-mt.d: New test.
2469         * testsuite/gas/mips/mips16e2-sub.d: New test.
2470         * testsuite/gas/mips/mips16e2@mips16e2-sub.d: New test.
2471         * testsuite/gas/mips/mips16e2-mt-sub.d: New test.
2472         * testsuite/gas/mips/mips16e2@mips16e2-mt-sub.d: New test.
2473         * testsuite/gas/mips/mips16e2-hilo.d: New test.
2474         * testsuite/gas/mips/mips16e2-hilo-n32.d: New test.
2475         * testsuite/gas/mips/mips16e2-reloc-error.d: New test.
2476         * testsuite/gas/mips/mips16e2-imm-error.d: New test.
2477         * testsuite/gas/mips/elf_ase_mips16e2.d: New test.
2478         * testsuite/gas/mips/elf_ase_mips16e2-2.d: New test.
2479         * testsuite/gas/mips/elf-rel9-mips16e2.d: New test.
2480         * testsuite/gas/mips/mips16e2-lui.d: New test.
2481         * testsuite/gas/mips/mips16e2@mips32r2-sync.d: New test.
2482         * testsuite/gas/mips/mips16e2@mips32r2-sync-1.d: New test.
2483         * testsuite/gas/mips/mips16e2@lui-2.d: New test.
2484         * testsuite/gas/mips/mips16e2-reloc-error.l: New stderr output.
2485         * testsuite/gas/mips/mips16e2-imm-error.l: New stderr output.
2486         * testsuite/gas/mips/mips16e2@lui-2.l: New stderr output.
2487         * testsuite/gas/mips/mips16e2.s: New test source.
2488         * testsuite/gas/mips/mips16e2-mt.s: New test source.
2489         * testsuite/gas/mips/mips16e2-sub.s: New test source.
2490         * testsuite/gas/mips/mips16e2-mt-sub.s: New test source.
2491         * testsuite/gas/mips/mips16e2-hilo.s: New test source.
2492         * testsuite/gas/mips/mips16e2-reloc-error.s: New test source.
2493         * testsuite/gas/mips/mips16e2-imm-error.s: New test source.
2494         * testsuite/gas/mips/elf-rel9-mips16e2.s: New test source.
2495         * testsuite/gas/mips/mips16e2-lui.s: New test source.
2496         * testsuite/gas/mips/mips.exp: Expand `mips32r2-sync',
2497         `mips32r2-sync-1', `lui-1' and `lui-2' tests across MIPS16e2
2498         architectures.  Run the new tests.
2499
2500 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2501
2502         * testsuite/gas/mips/mips.exp (run_dump_test_arch): Add
2503         `mips16e2@' prefix.
2504         (run_list_test_arch): Likewise.
2505         (mips16e2-32, mips16e2-64): New architectures.
2506         * testsuite/gas/mips/mips16e2-32@mips16-macro.d: New test.
2507         * testsuite/gas/mips/mips16e2-32@mips16-macro-t.d: New test.
2508         * testsuite/gas/mips/mips16e2-32@mips16-macro-e.d: New test.
2509         * testsuite/gas/mips/mips16e2-32@mips16-insn-t.d: New test.
2510         * testsuite/gas/mips/mips16e2-32@mips16-insn-e.d: New test.
2511         * testsuite/gas/mips/mips16e2-32@mips16e-64.d: New test.
2512         * testsuite/gas/mips/mips16e2-32@mips16-sub.d: New test.
2513         * testsuite/gas/mips/mips16e2-32@mips16e-64-sub.d: New test.
2514         * testsuite/gas/mips/mips16e2@relax-swap3.d: New test.
2515         * testsuite/gas/mips/mips16-32@mips16-asmacro.d: Remove `source'
2516         tag.  Add `-I$srcdir/$subdir' to `as' flags.
2517         * testsuite/gas/mips/mips16-64@mips16-asmacro.d: Likewise.
2518         * testsuite/gas/mips/mips16e2-32@mips16-macro.l: New stderr
2519         output.
2520         * testsuite/gas/mips/mips16e2-32@mips16-macro-t.l: New stderr
2521         output.
2522         * testsuite/gas/mips/mips16e2-32@mips16-macro-e.l: New stderr
2523         output.
2524         * testsuite/gas/mips/mips16e2-32@mips16-insn-t.l: New stderr
2525         output.
2526         * testsuite/gas/mips/mips16e2-32@mips16-insn-e.l: New stderr
2527         output.
2528         * testsuite/gas/mips/mips16-sub.s: Add `.set nomips16e2'.
2529         * testsuite/gas/mips/mips16e-sub.s: Likewise.
2530         * testsuite/gas/mips/mips16e-64-sub.s: Likewise.
2531         * testsuite/gas/mips/mips16-asmacro.s: Remove `.set mips32'.
2532         * testsuite/gas/mips/mips16-32@mips16-asmacro.s: New test
2533         source.
2534         * testsuite/gas/mips/mips16-64@mips16-asmacro.s: New test
2535         source.
2536
2537 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2538             Matthew Fortune  <matthew.fortune@imgtec.com>
2539             Andrew Bennett  <andrew.bennett@imgtec.com>
2540
2541         * config/tc-mips.c (RELAX_MIPS16_ENCODE): Add `e2' flag.
2542         (RELAX_MIPS16_E2): New macro.
2543         (RELAX_MIPS16_PIC, RELAX_MIPS16_SYM32, RELAX_MIPS16_NOMACRO)
2544         (RELAX_MIPS16_USER_SMALL, RELAX_MIPS16_USER_EXT)
2545         (RELAX_MIPS16_DSLOT, RELAX_MIPS16_JAL_DSLOT)
2546         (RELAX_MIPS16_EXTENDED, RELAX_MIPS16_MARK_EXTENDED)
2547         (RELAX_MIPS16_CLEAR_EXTENDED, RELAX_MIPS16_ALWAYS_EXTENDED)
2548         (RELAX_MIPS16_MARK_ALWAYS_EXTENDED)
2549         (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED, RELAX_MIPS16_MACRO)
2550         (RELAX_MIPS16_MARK_MACRO, RELAX_MIPS16_CLEAR_MACRO): Shift bits.
2551         (mips16_immed_extend): New prototype.
2552         (options): Add OPTION_MIPS16E2 and OPTION_NO_MIPS16E2 enum
2553         values.
2554         (md_longopts): Add "mmips16e2" and "mno-mips16e2" options.
2555         (mips_ases): Add "mips16e2" entry.
2556         (mips_set_ase): Handle MIPS16e2 ASE.
2557         (insn_insert_operand): Explicitly handle immediates with MIPS16
2558         instructions that require 32-bit encoding.
2559         (is_opcode_valid_16): Pass enabled ASE bitmask on to
2560         `opcode_is_member'.
2561         (validate_mips_insn): Explicitly handle immediates with MIPS16
2562         instructions that require 32-bit encoding.
2563         (operand_reg_mask) <OP_REG28>: Add handler.
2564         (match_reg28_operand): New function.
2565         (match_operand) <OP_REG28>: Add handler.
2566         (append_insn): Pass ASE_MIPS16E2 setting to RELAX_MIPS16_ENCODE.
2567         (match_mips16_insn): Handle MIPS16 instructions that require
2568         32-bit encoding and `V' and `u' operand codes.
2569         (mips16_ip): Allow any characters except from `.' in opcodes.
2570         (mips16_immed_extend): Handle 9-bit immediates.  Do not shuffle
2571         immediates whose width is not one of these listed.
2572         (md_estimate_size_before_relax): Handle MIPS16e2 relaxation.
2573         (mips_relax_frag): Likewise.
2574         (md_convert_frag): Likewise.
2575         (mips_convert_ase_flags): Handle MIPS16e2 ASE.
2576
2577         * doc/as.texinfo (Target MIPS options): Add `-mmips16e2' and
2578         `-mno-mips16e2' options.
2579         (-mmips16e2, -mno-mips16e2): New options.
2580         * doc/c-mips.texi (MIPS Options): Add `-mmips16e2' and
2581         `-mno-mips16e2' options.
2582         (MIPS ASE Instruction Generation Overrides): Add `.set mips16e2'
2583         and `.set nomips16e2'.
2584
2585 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2586
2587         * config/tc-mips.c (match_int_operand): Call
2588         `match_out_of_range' before returning failure for 0x8000-0xffff
2589         values conditionally allowed.
2590
2591 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2592
2593         * config/tc-mips.c (match_int_operand): Call
2594         `match_not_constant' before returning failure for a non-constant
2595         16-bit immediate conditionally allowed.
2596
2597 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2598
2599         * config/tc-mips.c (match_const_int): Call `match_out_of_range'
2600         rather than `match_not_constant' for unrelocated operands
2601         retrieved as an `O_big' expression.
2602         (match_int_operand): Call `match_out_of_range' for relocatable
2603         operands retrieved as an `O_big' expression.
2604         (match_mips16_insn): Call `match_out_of_range' for relaxable
2605         operands retrieved as an `O_big' expression.
2606         * testsuite/gas/mips/addiu-error.d: New test.
2607         * testsuite/gas/mips/mips16@addiu-error.d: New test.
2608         * testsuite/gas/mips/micromips@addiu-error.d: New test.
2609         * testsuite/gas/mips/break-error.d: New test.
2610         * testsuite/gas/mips/lui-1.l: Adjust error message.
2611         * testsuite/gas/mips/addiu-error.l: New stderr output.
2612         * testsuite/gas/mips/mips16@addiu-error.l: New stderr output.
2613         * testsuite/gas/mips/micromips@addiu-error.l: New stderr output.
2614         * testsuite/gas/mips/break-error.l: New stderr output.
2615         * testsuite/gas/mips/addiu-error.s: New test source.
2616         * testsuite/gas/mips/break-error.s: New test source.
2617         * testsuite/gas/mips/mips.exp: Run the new tests.
2618
2619 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2620
2621         * config/tc-mips.c (match_mips16_insn): Remove the explicit
2622         OT_INTEGER check before the `match_expression' call.
2623         * testsuite/gas/mips/mips16-insn-e.l: Adjust messages.
2624         * testsuite/gas/mips/mips16-32@mips16-insn-e.l: Likewise.
2625         * testsuite/gas/mips/mips16-64@mips16-insn-e.l: Likewise.
2626         * testsuite/gas/mips/mips16e-32@mips16-insn-e.l: Likewise.
2627         * testsuite/gas/mips/mips16-reg-error.d: New test.
2628         * testsuite/gas/mips/mips16-reg-error.l: New stderr output.
2629         * testsuite/gas/mips/mips16-reg-error.s: New test source.
2630         * testsuite/gas/mips/mips.exp: Run the new test.
2631
2632 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2633
2634         * config/tc-mips.c (match_mips16_insn): Call
2635         `match_not_constant' for a disallowed relocation operation.
2636         * testsuite/gas/mips/mips16-reloc-error.d: New test.
2637         * testsuite/gas/mips/mips16-reloc-error.l: New stderr output.
2638         * testsuite/gas/mips/mips16-reloc-error.s: New test source.
2639         * testsuite/gas/mips/mips.exp: Run the new test.
2640
2641 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2642
2643         * testsuite/gas/mips/lui-1.d: New test.
2644         * testsuite/gas/mips/lui-2.d: New test.
2645         * gas/testsuite/gas/mips/mips.exp: Fold corresponding list tests
2646         into the new tests.
2647
2648 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2649
2650         * config/tc-mips.c (match_const_int): Update description.
2651
2652 2017-05-15  Maciej W. Rozycki  <macro@imgtec.com>
2653
2654         * doc/as.texinfo (-mips16, -no-mips16): Refer to `.module
2655         mips16' rather than `.set mips16'.
2656         (-mmicromips, -mno-micromips): Refer to `.module micromips' and
2657         `.module nomicromips' rather than `.set micromips' and `.set
2658         nomicromips'.
2659         (-msmartmips, -mno-smartmips): Refer to `.module smartmips'
2660         rather than `.set smartmips'.
2661         * doc/c-mips.texi (MIPS Options): Refer to `.module mips16',
2662         `.module micromips', `.module nomicromips' and `.module
2663         smartmips' rather than `.set mips16', `.set micromips', `.set
2664         nomicromips' and `.set smartmips' respectively.
2665
2666 2017-05-12  Maciej W. Rozycki  <macro@imgtec.com>
2667             Matthew Fortune  <matthew.fortune@imgtec.com>
2668
2669         * config/tc-mips.c (mips_percent_op): Add "%gprel".
2670         (mips16_percent_op): Add "%gp_rel".
2671         * testsuite/gas/mips/elf-rel8.s:: Add `%gprel' forms.
2672         * testsuite/gas/mips/elf-rel8-mips16.s: Add `%gp_rel' forms.
2673         * testsuite/gas/mips/elf-rel8.d: Adjust accordingly.
2674         * testsuite/gas/mips/elf-rel8-mips16.d: Likewise.
2675
2676 2017-05-12  Maciej W. Rozycki  <macro@imgtec.com>
2677
2678         * testsuite/gas/mips/mips16.d: Adjust BREAK disassembly.
2679         * testsuite/gas/mips/mips16-64@mips16.d: Likewise.
2680         * testsuite/gas/mips/mips16-64.d: Likewise.
2681         * testsuite/gas/mips/mips16-64@mips16-64.d: Likewise.
2682         * testsuite/gas/mips/mips16-macro.d: Likewise.
2683         * testsuite/gas/mips/mips16-64@mips16-macro.d: Likewise.
2684         * testsuite/gas/mips/mips16-sub.d: Likewise.
2685         * testsuite/gas/mips/mips16-32@mips16-sub.d: Likewise.
2686
2687 2017-05-11  Maciej W. Rozycki  <macro@imgtec.com>
2688
2689         * testsuite/gas/mips/mips32r2-sync-1.d: New test.
2690         * testsuite/gas/mips/micromips@mips32r2-sync-1.d: New test.
2691         * testsuite/gas/mips/mips.exp: Run the new tests.
2692
2693 2017-05-10  Maciej W. Rozycki  <macro@imgtec.com>
2694
2695         * testsuite/gas/mips/isa-override-2.d: New test.
2696         * testsuite/gas/mips/mips1@isa-override-2.d: New test.
2697         * testsuite/gas/mips/r3000@isa-override-2.d: New test.
2698         * testsuite/gas/mips/r3900@isa-override-2.d: New test.
2699         * testsuite/gas/mips/mips2@isa-override-2.d: New test.
2700         * testsuite/gas/mips/mips32@isa-override-2.d: New test.
2701         * testsuite/gas/mips/mips32r2@isa-override-2.d: New test.
2702         * testsuite/gas/mips/mips32r3@isa-override-2.d: New test.
2703         * testsuite/gas/mips/mips32r5@isa-override-2.d: New test.
2704         * testsuite/gas/mips/mips32r6@isa-override-2.d: New test.
2705         * testsuite/gas/mips/octeon3@isa-override-2.d: New test.
2706         * testsuite/gas/mips/r3000@isa-override-2.l: Remove list test.
2707         * testsuite/gas/mips/mips1@isa-override-2.s: Remove test source.
2708         * testsuite/gas/mips/r3000@isa-override-2.s: Remove test source.
2709         * testsuite/gas/mips/r3900@isa-override-2.s: Remove test source.
2710         * testsuite/gas/mips/mips2@isa-override-2.s: Remove test source.
2711         * testsuite/gas/mips/mips32@isa-override-2.s: Remove test
2712         source.
2713         * testsuite/gas/mips/mips32r2@isa-override-2.s: Remove test
2714         source.
2715         * testsuite/gas/mips/mips32r3@isa-override-2.s: Remove test
2716         source.
2717         * testsuite/gas/mips/mips32r5@isa-override-2.s: Remove test
2718         source.
2719         * testsuite/gas/mips/mips32r6@isa-override-2.s: Remove test
2720         source.
2721         * testsuite/gas/mips/octeon3@isa-override-2.s: Remove test
2722         source.
2723         * gas/testsuite/gas/mips/mips.exp: Fold corresponding list tests
2724         into the new tests.
2725
2726 2017-05-10  Maciej W. Rozycki  <macro@imgtec.com>
2727
2728         * testsuite/gas/mips/mips16e-sub.d: Correct test name.
2729         * testsuite/gas/mips/mips16-32@mips16e-sub.d: Likewise.
2730         * testsuite/gas/mips/mips16-64@mips16e-sub.d: Likewise.
2731         * testsuite/gas/mips/mips16e-64-sub.d: Likewise.
2732         * testsuite/gas/mips/mips16-32@mips16e-64-sub.d: Likewise.
2733         * testsuite/gas/mips/mips16-64@mips16e-64-sub.d: Likewise.
2734         * testsuite/gas/mips/mips16e-32@mips16e-64-sub.d: Likewise.
2735
2736 2017-05-10  Maciej W. Rozycki  <macro@imgtec.com>
2737
2738         * testsuite/gas/mips/mips16-macro.l: Remove list test.
2739
2740 2017-05-10  Maciej W. Rozycki  <macro@imgtec.com>
2741
2742         * testsuite/gas/mips/r3900@ecoff@ld.d: Remove test.
2743         * testsuite/gas/mips/mips2@ecoff@ld.d: Remove test.
2744         * testsuite/gas/mips/mips32@ecoff@ld.d: Remove test.
2745         * testsuite/gas/mips/mips32r2@ecoff@ld.d: Remove test.
2746         * testsuite/gas/mips/r3900@ecoff@ld-forward.d: Remove test.
2747         * testsuite/gas/mips/mips2@ecoff@ld-forward.d: Remove test.
2748         * testsuite/gas/mips/mips32@ecoff@ld-forward.d: Remove test.
2749         * testsuite/gas/mips/mips32r2@ecoff@ld-forward.d: Remove test.
2750         * testsuite/gas/mips/mips1@ecoff@sd.d: Remove test.
2751         * testsuite/gas/mips/r3000@ecoff@sd.d: Remove test.
2752         * testsuite/gas/mips/r3900@ecoff@sd.d: Remove test.
2753         * testsuite/gas/mips/mips2@ecoff@sd.d: Remove test.
2754         * testsuite/gas/mips/mips32@ecoff@sd.d: Remove test.
2755         * testsuite/gas/mips/mips32r2@ecoff@sd.d: Remove test.
2756         * testsuite/gas/mips/mips1@ecoff@sd-forward.d: Remove test.
2757         * testsuite/gas/mips/r3000@ecoff@sd-forward.d: Remove test.
2758         * testsuite/gas/mips/r3900@ecoff@sd-forward.d: Remove test.
2759         * testsuite/gas/mips/mips2@ecoff@sd-forward.d: Remove test.
2760         * testsuite/gas/mips/mips32@ecoff@sd-forward.d: Remove test.
2761         * testsuite/gas/mips/mips32r2@ecoff@sd-forward.d: Remove test.
2762
2763 2017-05-10  Claudiu Zissulescu  <claziss@synopsys.com>
2764
2765         * testsuite/gas/arc/attr-arc600.d: New file.
2766         * testsuite/gas/arc/attr-arc600_mul32x16.d: Likewise.
2767         * testsuite/gas/arc/attr-arc600_norm.d: Likewise.
2768         * testsuite/gas/arc/attr-arc601.d: Likewise.
2769         * testsuite/gas/arc/attr-arc601_mul32x16.d: Likewise.
2770         * testsuite/gas/arc/attr-arc601_mul64.d: Likewise.
2771         * testsuite/gas/arc/attr-arc601_norm.d: Likewise.
2772         * testsuite/gas/arc/attr-arc700.d: Likewise.
2773         * testsuite/gas/arc/attr-arcem.d: Likewise.
2774         * testsuite/gas/arc/attr-archs.d: Likewise.
2775         * testsuite/gas/arc/attr-autodetect-1.d: Likewise.
2776         * testsuite/gas/arc/attr-autodetect-1.s: Likewise.
2777         * testsuite/gas/arc/attr-cpu-a601.d: Likewise.
2778         * testsuite/gas/arc/attr-cpu-a601.s: Likewise.
2779         * testsuite/gas/arc/attr-cpu-a700.d: Likewise.
2780         * testsuite/gas/arc/attr-cpu-a700.s: Likewise.
2781         * testsuite/gas/arc/attr-cpu-em.d: Likewise.
2782         * testsuite/gas/arc/attr-cpu-em.s: Likewise.
2783         * testsuite/gas/arc/attr-cpu-hs.d: Likewise.
2784         * testsuite/gas/arc/attr-cpu-hs.s: Likewise.
2785         * testsuite/gas/arc/attr-em.d: Likewise.
2786         * testsuite/gas/arc/attr-em4.d: Likewise.
2787         * testsuite/gas/arc/attr-em4_dmips.d: Likewise.
2788         * testsuite/gas/arc/attr-em4_fpuda.d: Likewise.
2789         * testsuite/gas/arc/attr-em4_fpus.d: Likewise.
2790         * testsuite/gas/arc/attr-hs.d: Likewise.
2791         * testsuite/gas/arc/attr-hs34.d: Likewise.
2792         * testsuite/gas/arc/attr-hs38.d: Likewise.
2793         * testsuite/gas/arc/attr-hs38_linux.d: Likewise.
2794         * testsuite/gas/arc/attr-mul64.d: Likewise.
2795         * testsuite/gas/arc/attr-name.d: Likewise.
2796         * testsuite/gas/arc/attr-name.s: Likewise.
2797         * testsuite/gas/arc/attr-nps400.d: Likewise.
2798         * testsuite/gas/arc/attr-override-mcpu.d: Likewise.
2799         * testsuite/gas/arc/attr-override-mcpu.s
2800         * testsuite/gas/arc/attr-quarkse_em.d: Likewise.
2801         * testsuite/gas/arc/blank.s: Likewise.
2802         * testsuite/gas/elf/section2.e-arc: Likewise.
2803         * testsuite/gas/arc/cpu-pseudop-1.d: Update test.
2804         * testsuite/gas/arc/cpu-pseudop-2.d: Likewise.
2805         * testsuite/gas/arc/nps400-0.d: Likewise.
2806         * testsuite/gas/elf/elf.exp: Set target_machine for ARC.
2807         * config/tc-arc.c (opcode/arc-attrs.h): Include.
2808         (ARC_GET_FLAG, ARC_SET_FLAG, streq): Define.
2809         (arc_attribute): Declare new function.
2810         (md_pseudo_table): Add arc_attribute.
2811         (cpu_types): Rename default cpu features.
2812         (selected_cpu): Set the default OSABI flag.
2813         (mpy_option): New variable.
2814         (pic_option): Likewise.
2815         (sda_option): Likewise.
2816         (tls_option): Likewise.
2817         (feature_type, feature_list): Remove.
2818         (arc_initial_eflag): Likewise.
2819         (attributes_set_explicitly): New variable.
2820         (arc_check_feature): Check also for the conflicting features.
2821         (arc_select_cpu): Refactor assignment of selected_cpu.eflags.
2822         (arc_option): Remove setting of private flags and architecture.
2823         (check_cpu_feature): Refactor feature names.
2824         (autodetect_attributes): New function.
2825         (assemble_tokens): Use above function.
2826         (md_parse_option): Refactor feature names.
2827         (arc_attribute): New function.
2828         (arc_set_attribute_int): Likewise.
2829         (arc_set_attribute_string): Likewise.
2830         (arc_stralloc): Likewise.
2831         (arc_set_public_attributes): Likewise.
2832         (arc_md_end): Likewise.
2833         (arc_copy_symbol_attributes): Likewise.
2834         (rc_convert_symbolic_attribute): Likewise.
2835         * config/tc-arc.h (md_end): Define.
2836         (CONVERT_SYMBOLIC_ATTRIBUTE): Likewise.
2837         (TC_COPY_SYMBOL_ATTRIBUTES): Likewise.
2838         * doc/c-arc.texi: Document ARC object attributes.
2839
2840 2017-05-03  Maciej W. Rozycki  <macro@imgtec.com>
2841
2842         * config/tc-mips.c (RELAX_MIPS16_ENCODE): Add `pic', `sym32' and
2843         `nomacro' flags.
2844         (RELAX_MIPS16_PIC, RELAX_MIPS16_SYM32, RELAX_MIPS16_NOMACRO):
2845         New macros.
2846         (RELAX_MIPS16_USER_SMALL, RELAX_MIPS16_USER_EXT)
2847         (RELAX_MIPS16_DSLOT, RELAX_MIPS16_JAL_DSLOT)
2848         (RELAX_MIPS16_EXTENDED, RELAX_MIPS16_MARK_EXTENDED)
2849         (RELAX_MIPS16_CLEAR_EXTENDED, RELAX_MIPS16_ALWAYS_EXTENDED)
2850         (RELAX_MIPS16_MARK_ALWAYS_EXTENDED)
2851         (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED): Shift bits.
2852         (RELAX_MIPS16_MACRO, RELAX_MIPS16_MARK_MACRO)
2853         (RELAX_MIPS16_CLEAR_MACRO): New macros.
2854         (append_insn): Pass `mips_pic', HAVE_32BIT_SYMBOLS and
2855         `mips_opts.warn_about_macros' settings to RELAX_MIPS16_ENCODE.
2856         (mips16_macro_frag): New function.
2857         (md_estimate_size_before_relax): Handle HI16/LO16 relaxation.
2858         (mips_relax_frag): Likewise.
2859         (md_convert_frag): Likewise.
2860
2861         * testsuite/gas/mips/mips16@relax-swap3.d: Remove error output,
2862         add dump patterns.
2863         * testsuite/gas/mips/mips16e@relax-swap3.d: New test
2864         subarchitecture.
2865         * testsuite/gas/mips/micromips@relax-swap3.d: Remove trailing
2866         NOP padding.
2867         * testsuite/gas/mips/mips16-pcrel-reloc-2.d: Remove error
2868         output, add dump patterns.
2869         * testsuite/gas/mips/mips16-pcrel-reloc-3.d: Remove error
2870         output, add dump patterns.
2871         * testsuite/gas/mips/mips16-pcrel-reloc-6.d: Remove error
2872         output, add dump patterns.
2873         * testsuite/gas/mips/mips16-pcrel-reloc-7.d: Remove error
2874         output, add dump patterns.
2875         * testsuite/gas/mips/mips16-pcrel-addend-2.d: Remove error
2876         output, add dump patterns.
2877         * testsuite/gas/mips/mips16-pcrel-addend-3.d: Remove error
2878         output, add dump patterns.
2879         * testsuite/gas/mips/mips16-pcrel-absolute.d: Remove error
2880         output, add dump patterns.
2881         * testsuite/gas/mips/mips16-pcrel-absolute-1.d: Remove error
2882         output, add dump patterns.
2883         * testsuite/gas/mips/mips16@relax-swap3.l: Remove file.
2884         * testsuite/gas/mips/mips16-pcrel-reloc-2.l: Remove file.
2885         * testsuite/gas/mips/mips16-pcrel-reloc-3.l: Remove file.
2886         * testsuite/gas/mips/mips16-pcrel-reloc-6.l: Remove file.
2887         * testsuite/gas/mips/mips16-pcrel-reloc-7.l: Remove file.
2888         * testsuite/gas/mips/mips16-pcrel-addend-2.l: Remove file.
2889         * testsuite/gas/mips/mips16-pcrel-addend-3.l: Remove file.
2890         * testsuite/gas/mips/mips16-pcrel-absolute.l: Remove file.
2891         * testsuite/gas/mips/mips16-pcrel-absolute-1.l: Remove file.
2892         * testsuite/gas/mips/relax-swap3.s: Adjust trailing padding.
2893
2894         * testsuite/gas/mips/mips16-pcrel-0.d: New test.
2895         * testsuite/gas/mips/mips16-pcrel-1.d: New test.
2896         * testsuite/gas/mips/mips16-pcrel-2.d: New test.
2897         * testsuite/gas/mips/mips16-pcrel-3.d: New test.
2898         * testsuite/gas/mips/mips16-pcrel-4.d: New test.
2899         * testsuite/gas/mips/mips16-pcrel-5.d: New test.
2900         * testsuite/gas/mips/mips16-pcrel-pic-0.d: New test.
2901         * testsuite/gas/mips/mips16-pcrel-pic-1.d: New test.
2902         * testsuite/gas/mips/mips16-pcrel-n32-0.d: New test.
2903         * testsuite/gas/mips/mips16-pcrel-n32-1.d: New test.
2904         * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: New test.
2905         * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: New test.
2906         * testsuite/gas/mips/mips16-pcrel-n64-0.d: New test.
2907         * testsuite/gas/mips/mips16-pcrel-n64-1.d: New test.
2908         * testsuite/gas/mips/mips16-pcrel-delay-0.d: New test.
2909         * testsuite/gas/mips/mips16-pcrel-delay-1.d: New test.
2910         * testsuite/gas/mips/mips16-pcrel-addend-4.d: New test.
2911         * testsuite/gas/mips/mips16-pcrel-addend-5.d: New test.
2912         * testsuite/gas/mips/mips16-pcrel-addend-6.d: New test.
2913         * testsuite/gas/mips/mips16-pcrel-addend-7.d: New test.
2914         * testsuite/gas/mips/mips16-pcrel-addend-8.d: New test.
2915         * testsuite/gas/mips/mips16-pcrel-addend-9.d: New test.
2916         * testsuite/gas/mips/mips16-pcrel-addend-pic-8.d: New test.
2917         * testsuite/gas/mips/mips16-pcrel-addend-pic-9.d: New test.
2918         * testsuite/gas/mips/mips16-pcrel-addend-n32-8.d: New test.
2919         * testsuite/gas/mips/mips16-pcrel-addend-n32-9.d: New test.
2920         * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-8.d: New test.
2921         * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-9.d: New test.
2922         * testsuite/gas/mips/mips16-pcrel-addend-n64-8.d: New test.
2923         * testsuite/gas/mips/mips16-pcrel-addend-n64-9.d: New test.
2924         * testsuite/gas/mips/mips16-pcrel-absolute-2.d: New test.
2925         * testsuite/gas/mips/mips16-pcrel-absolute-3.d: New test.
2926         * testsuite/gas/mips/mips16-pcrel-absolute-4.d: New test.
2927         * testsuite/gas/mips/mips16-pcrel-absolute-5.d: New test.
2928         * testsuite/gas/mips/mips16-pcrel-absolute-6.d: New test.
2929         * testsuite/gas/mips/mips16-pcrel-absolute-7.d: New test.
2930         * testsuite/gas/mips/mips16-pcrel-absolute-pic-4.d: New test.
2931         * testsuite/gas/mips/mips16-pcrel-absolute-pic-6.d: New test.
2932         * testsuite/gas/mips/mips16-pcrel-absolute-n32-4.d: New test.
2933         * testsuite/gas/mips/mips16-pcrel-absolute-n32-6.d: New test.
2934         * testsuite/gas/mips/mips16-pcrel-absolute-n64-4.d: New test.
2935         * testsuite/gas/mips/mips16-pcrel-absolute-n64-6.d: New test.
2936         * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-4.d: New
2937         test.
2938         * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-6.d: New
2939         test.
2940         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-4.d: New
2941         test.
2942         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-6.d: New
2943         test.
2944         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-4.d: New
2945         test.
2946         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-6.d: New
2947         test.
2948         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-4.d:
2949         New test.
2950         * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-6.d:
2951         New test.
2952         * testsuite/gas/mips/mips16-pcrel-0.l: New stderr output.
2953         * testsuite/gas/mips/mips16-pcrel-1.l: New stderr output.
2954         * testsuite/gas/mips/mips16-pcrel-2.l: New stderr output.
2955         * testsuite/gas/mips/mips16-pcrel-3.l: New stderr output.
2956         * testsuite/gas/mips/mips16-pcrel-4.l: New stderr output.
2957         * testsuite/gas/mips/mips16-pcrel-5.l: New stderr output.
2958         * testsuite/gas/mips/mips16-pcrel-delay-0.l: New stderr output.
2959         * testsuite/gas/mips/mips16-pcrel-delay-1.l: New stderr output.
2960         * testsuite/gas/mips/mips16-pcrel-addend-8.l: New stderr output.
2961         * testsuite/gas/mips/mips16-pcrel-addend-9.l: New stderr output.
2962         * testsuite/gas/mips/mips16-pcrel-absolute-4.l: New stderr
2963         output.
2964         * testsuite/gas/mips/mips16-pcrel-absolute-6.l: New stderr
2965         output.
2966         * testsuite/gas/mips/mips16-pcrel-0.s: New test source.
2967         * testsuite/gas/mips/mips16-pcrel-1.s: New test source.
2968         * testsuite/gas/mips/mips16-pcrel-2.s: New test source.
2969         * testsuite/gas/mips/mips16-pcrel-3.s: New test source.
2970         * testsuite/gas/mips/mips16-pcrel-4.s: New test source.
2971         * testsuite/gas/mips/mips16-pcrel-5.s: New test source.
2972         * testsuite/gas/mips/mips16-pcrel-delay-0.s: New test source.
2973         * testsuite/gas/mips/mips16-pcrel-delay-1.s: New test source.
2974         * testsuite/gas/mips/mips16-pcrel-addend-4.s: New test source.
2975         * testsuite/gas/mips/mips16-pcrel-addend-5.s: New test source.
2976         * testsuite/gas/mips/mips16-pcrel-addend-6.s: New test source.
2977         * testsuite/gas/mips/mips16-pcrel-addend-7.s: New test source.
2978         * testsuite/gas/mips/mips16-pcrel-addend-8.s: New test source.
2979         * testsuite/gas/mips/mips16-pcrel-addend-9.s: New test source.
2980         * testsuite/gas/mips/mips16-pcrel-absolute-2.s: New test.
2981         * testsuite/gas/mips/mips16-pcrel-absolute-3.s: New test.
2982         * testsuite/gas/mips/mips16-pcrel-absolute-4.s: New test.
2983         * testsuite/gas/mips/mips16-pcrel-absolute-5.s: New test.
2984         * testsuite/gas/mips/mips16-pcrel-absolute-6.s: New test.
2985         * testsuite/gas/mips/mips16-pcrel-absolute-7.s: New test.
2986         * testsuite/gas/mips/mips.exp: Run the new tests.
2987
2988 2017-05-03  Nick Clifton  <nickc@redhat.com>
2989
2990         PR gas/20941
2991         * symbols.c (snapshot_symbol): Handle the case where
2992         resolve_expression returns a local symbol.
2993
2994 2017-05-02  Maciej W. Rozycki  <macro@imgtec.com>
2995
2996         * config/tc-mips.c (append_insn): Call `symbol_append' for any
2997         expression symbol created for MIPS16 relaxation.
2998         (match_mips16_insn): Don't encode a constant value as an
2999         immediate with a PC-relative operand.
3000
3001         * testsuite/gas/mips/mips16-pcrel-absolute-1.d: New test.
3002         * testsuite/gas/mips/mips16-branch-absolute-1.d: New test.
3003         * testsuite/gas/mips/mips16-branch-absolute-2.d: New test.
3004         * testsuite/gas/mips/mips16-branch-absolute-addend-1.d: New
3005         test.
3006         * testsuite/gas/mips/mips16-branch-absolute-n32-1.d: New test.
3007         * testsuite/gas/mips/mips16-branch-absolute-n32-2.d: New test.
3008         * testsuite/gas/mips/mips16-branch-absolute-addend-n32-1.d: New
3009         test.
3010         * testsuite/gas/mips/mips16-branch-absolute-n64-1.d: New test.
3011         * testsuite/gas/mips/mips16-branch-absolute-n64-2.d: New test.
3012         * testsuite/gas/mips/mips16-branch-absolute-addend-n64-1.d: New
3013         test.
3014         * testsuite/gas/mips/mips16-pcrel-absolute-1.l: New stderr
3015         output.
3016         * testsuite/gas/mips/mips16-pcrel-absolute-1.s: New test source.
3017         * testsuite/gas/mips/mips16-branch-absolute-1.s: New test
3018         source.
3019         * testsuite/gas/mips/mips16-branch-absolute-2.s: New test
3020         source.
3021         * testsuite/gas/mips/mips16-branch-absolute-addend-1.s: New test
3022         source.
3023         * testsuite/gas/mips/mips.exp: Run the new tests.
3024
3025 2017-04-27  Maciej W. Rozycki  <macro@imgtec.com>
3026
3027         * config/tc-mips.c (mips16_pcrel_val): New function, factored
3028         out from...
3029         (mips16_extended_frag): ... here.
3030         (md_convert_frag): Use `mips16_pcrel_val' rather than repeated
3031         code in MIPS16 relaxation, with `stretch' hardcoded to 0.
3032
3033 2017-04-27  Maciej W. Rozycki  <macro@imgtec.com>
3034
3035         * config/tc-mips.c (RELAX_MIPS16_LONG_BRANCH): Rename to...
3036         (RELAX_MIPS16_ALWAYS_EXTENDED): ... this.
3037         (RELAX_MIPS16_MARK_LONG_BRANCH): Rename to...
3038         (RELAX_MIPS16_MARK_ALWAYS_EXTENDED): ... this.
3039         (RELAX_MIPS16_CLEAR_LONG_BRANCH): Rename to...
3040         (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED): ... this.
3041         (mips16_extended_frag): Adjust accordingly.
3042
3043 2017-04-27  Alan Modra  <amodra@gmail.com>
3044
3045         * symbols.c (S_FORCE_RELOC): Separate section and symbol tests.
3046
3047 2017-04-26  Maciej W. Rozycki  <macro@imgtec.com>
3048
3049         * config/tc-mips.c (RELAX_ENCODE): Add `PIC' flag.
3050         (RELAX_PIC): New macro.
3051         (RELAX_USE_SECOND, RELAX_SECOND_LONGER, RELAX_NOMACRO)
3052         (RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT)
3053         (RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND):
3054         Shift bits.
3055         (RELAX_BRANCH_ENCODE): Add `pic' flag.
3056         (RELAX_BRANCH_UNCOND, RELAX_BRANCH_LIKELY, RELAX_BRANCH_LINK)
3057         (RELAX_BRANCH_TOOFAR): Shift bits.
3058         (RELAX_BRANCH_PIC): New macro.
3059         (RELAX_MICROMIPS_ENCODE): Add `pic' flag.
3060         (RELAX_MICROMIPS_PIC): New macro.
3061         (RELAX_MICROMIPS_UNCOND, RELAX_MICROMIPS_COMPACT)
3062         (RELAX_MICROMIPS_LINK, RELAX_MICROMIPS_NODS)
3063         (RELAX_MICROMIPS_RELAX32): Shift bits.
3064         (relax_close_frag): Pass `mips_pic' setting to RELAX_ENCODE.
3065         (append_insn): Pass `mips_pic' setting to RELAX_BRANCH_ENCODE
3066         and RELAX_MICROMIPS_ENCODE, and record it in `fx_tcbit2' of the
3067         first fixup created.
3068         (md_apply_fix) <BFD_RELOC_16_PCREL_S2>: Use `fx_tcbit2' of the
3069         fixup processed rather than `mips_pic' in choosing to relax an
3070         out of range branch to a jump.
3071         (relaxed_branch_length): Use the `pic' flag of the relaxed frag
3072         rather than `mips_pic'.
3073         (relaxed_micromips_32bit_branch_length): Likewise.
3074         (md_estimate_size_before_relax): Likewise.
3075         (md_convert_frag): Likewise.
3076
3077         * testsuite/gas/mips/option-pic-relax-0.d: New test.
3078         * testsuite/gas/mips/option-pic-relax-1.d: New test.
3079         * testsuite/gas/mips/option-pic-relax-2.d: New test.
3080         * testsuite/gas/mips/option-pic-relax-3.d: New test.
3081         * testsuite/gas/mips/option-pic-relax-3a.d: New test.
3082         * testsuite/gas/mips/option-pic-relax-4.d: New test.
3083         * testsuite/gas/mips/option-pic-relax-5.d: New test.
3084         * testsuite/gas/mips/option-pic-relax-2.l: New stderr output.
3085         * testsuite/gas/mips/option-pic-relax-3.l: New stderr output.
3086         * testsuite/gas/mips/option-pic-relax-4.l: New stderr output.
3087         * testsuite/gas/mips/option-pic-relax-5.l: New stderr output.
3088         * testsuite/gas/mips/option-pic-relax-0.s: New test source.
3089         * testsuite/gas/mips/option-pic-relax-1.s: New test source.
3090         * testsuite/gas/mips/option-pic-relax-2.s: New test source.
3091         * testsuite/gas/mips/option-pic-relax-3.s: New test source.
3092         * testsuite/gas/mips/option-pic-relax-4.s: New test source.
3093         * testsuite/gas/mips/option-pic-relax-5.s: New test source.
3094         * testsuite/gas/mips/mips.exp: Run the new tests.
3095
3096 2017-04-25  Claudiu Zissulescu  <claziss@synopsys.com>
3097
3098         * testsuite/gas/arc/leave_enter.d: Update test.
3099         * testsuite/gas/arc/leave_enter.s: Likewise.
3100
3101 2017-04-25  Claudiu Zissulescu  <claziss@synopsys.com>
3102
3103         * testsuite/gas/arc/b.d: Update test.
3104         * testsuite/gas/arc/noargs_hs.d: Likewise.
3105
3106 2017-04-25  Maciej W. Rozycki  <macro@imgtec.com>
3107
3108         * config/tc-mips.c (md_convert_frag): Correct
3109         BFD_RELOC_MIPS16_16_PCREL_S1 fixup size.
3110         * testsuite/gas/mips/mips16-branch-addend-4.d: New test.
3111         * testsuite/gas/mips/mips16-branch-addend-5.d: New test.
3112         * testsuite/gas/mips/mips16-branch-addend-5.l: New stderr
3113         output.
3114         * testsuite/gas/mips/mips16-branch-addend-4.s: New test source.
3115         * testsuite/gas/mips/mips16-branch-addend-5.s: New test source.
3116         * testsuite/gas/mips/mips.exp: Run the new tests.
3117
3118 2017-04-25  Jose E. Marchesi  <jose.marchesi@oracle.com>
3119
3120         PR gas/21407
3121         * config/tc-sparc.c (md_apply_fix): Do not transform `call'
3122         instructions into branch instructions in fixups generating
3123         additional relocations.
3124         * testsuite/gas/sparc/call-relax.s: New file.
3125         * testsuite/gas/sparc/call-relax.d: Likewise.
3126         * testsuite/gas/sparc/call-relax-aout.d: Likewise.
3127         * testsuite/gas/sparc/sparc.exp: Test call-relax and call-relax-aout.
3128
3129 2017-04-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
3130
3131         * config/tc-arm.c (move_or_literal_pool): Remove code generating MOVS.
3132         Forbid MOV.W and MOVW if destination is SP or PC.
3133         * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.s: Explain
3134         expectation of LDR not generating a MOVS for low registers and small
3135         constants.  Add tests of MOVW generation.
3136         * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.d: Update
3137         expected disassembly.
3138
3139 2017-04-22  Alan Modra  <amodra@gmail.com>
3140
3141         * testsuite/gas/ppc/vle.s: Format.  Add se_rfgi and e_sc.
3142         * testsuite/gas/ppc/vle.d: Update.
3143
3144 2017-04-21  Nick Clifton  <nickc@redhat.com>
3145
3146         PR binutils/21380
3147         * testsuite/gas/aarch64/illegal-3.s: New file.
3148         * testsuite/gas/aarch64/illegal-3.d: New file.
3149
3150 2017-04-11  Alan Modra  <amodra@gmail.com>
3151
3152         * config/tc-ppc.c (md_show_usage): Delete mention of -mhtm.
3153         * testsuite/gas/ppc/htm.d: Pass -mpower8 and -Mpower8.
3154
3155 2017-04-10  Max Filippov  <jcmvbkbc@gmail.com>
3156
3157         * config/tc-xtensa.c (xtensa_maybe_create_literal_pool_frag):
3158         Initialize lps->frag_count with auto_litpool_limit.
3159         (xg_promote_candidate_litpool): New function.
3160         (xtensa_move_literals): Extract candidate litpool promotion code
3161         into separate function. Call it for all possible found
3162         candidates.
3163         (xtensa_switch_to_literal_fragment): Drop 'recursive' flag and
3164         call to xtensa_mark_literal_pool_location that it guards.
3165         Replace it with call to xtensa_maybe_create_literal_pool_frag.
3166         Initialize pool_location with created literal pool candidate.
3167         * testsuite/gas/xtensa/all.exp: Add new tests.
3168         * testsuite/gas/xtensa/auto-litpools-first1.d: New test results.
3169         * testsuite/gas/xtensa/auto-litpools-first1.s: New test.
3170         * testsuite/gas/xtensa/auto-litpools-first2.d: New test results.
3171         * testsuite/gas/xtensa/auto-litpools-first2.s: New test.
3172         * testsuite/gas/xtensa/auto-litpools.d: Fix offsets changed due
3173         to additional jump instruction.
3174
3175 2017-04-07  Alan Modra  <amodra@gmail.com>
3176
3177         * testsuite/gas/ppc/altivec2.s: Delete E6500 vector insns.
3178         * testsuite/gas/ppc/altivec2.d: Adjust to suit.
3179
3180 2017-04-07  Alan Modra  <amodra@gmail.com>
3181
3182         * testsuite/gas/elf/section12a.d: Don't expect alignment of 1
3183         for .mbind.text.
3184
3185 2017-04-06  Pip Cet  <pipcet@gmail.com>
3186
3187         * testsuite/gas/wasm32/allinsn.d: Adjust test for disassembler
3188         changes.
3189         * testsuite/gas/wasm32/disass.d: New test.
3190         * testsuite/gas/wasm32/disass.s: New test.
3191         * testsuite/gas/wasm32/disass-2.d: New test.
3192         * testsuite/gas/wasm32/disass-2.s: New test.
3193         * testsuite/gas/wasm32/reloc.d: Adjust test for changed reloc
3194         names.
3195         * testsuite/gas/wasm32/reloc.s: Update test for changed assembler
3196         syntax.
3197         * testsuite/gas/wasm32/wasm32.exp: Run new tests.  Expect allinsn
3198         test to succeed.
3199
3200 2017-04-04  H.J. Lu  <hongjiu.lu@intel.com>
3201
3202         * NEWS: Mention support for ELF SHF_GNU_MBIND.
3203         * config/obj-elf.c (section_match): New.
3204         (get_section): Match both sh_info and group name.
3205         (obj_elf_change_section): Add argument for sh_info.  Pass both
3206         sh_info and group name to get_section. Issue an error for
3207         SHF_GNU_MBIND section without SHF_ALLOC.  Set sh_info.
3208         (obj_elf_parse_section_letters): Set SHF_GNU_MBIND for 'd'.
3209         (obj_elf_section): Support SHF_GNU_MBIND section info.
3210         * config/obj-elf.h (obj_elf_change_section): Add argument for
3211         sh_info.
3212         * config/tc-arm.c (start_unwind_section): Pass 0 as sh_info to
3213         obj_elf_change_section.
3214         * config/tc-ia64.c (obj_elf_vms_common): Likewise.
3215         * config/tc-microblaze.c (microblaze_s_data): Likewise.
3216         (microblaze_s_sdata): Likewise.
3217         (microblaze_s_rdata): Likewise.
3218         (microblaze_s_bss): Likewise.
3219         * config/tc-mips.c (s_change_section): Likewise.
3220         * config/tc-msp430.c (msp430_profiler): Likewise.
3221         * config/tc-rx.c (parse_rx_section): Likewise.
3222         * config/tc-tic6x.c (tic6x_start_unwind_section): Likewise.
3223         * doc/as.texinfo: Document 'd' for SHF_GNU_MBIND.
3224         * testsuite/gas/elf/elf.exp: Run section12a, section12b and
3225         section13.
3226         * testsuite/gas/elf/section10.d: Updated.
3227         * testsuite/gas/elf/section10.s: Likewise.
3228         * testsuite/gas/elf/section12.s: New file.
3229         * testsuite/gas/elf/section12a.d: Likewise.
3230         * testsuite/gas/elf/section12b.d: Likewise.
3231         * testsuite/gas/elf/section13.l: Likewise.
3232         * testsuite/gas/elf/section13.d: Likewise.
3233         * testsuite/gas/elf/section13.s: Likewise.
3234
3235 2017-04-03  Palmer Dabbelt  <palmer@dabbelt.com>
3236
3237         * config/tc-riscv.c (riscv_clear_subsets): Cast argument to free to
3238         avoid const warnings.
3239
3240 2017-03-30  Palmer Dabbelt  <palmer@dabbelt.com>
3241
3242         * config/tc-riscv.c (riscv_clear_subsets): New function.
3243         (riscv_add_subset): Call riscv_clear_subsets and riscv_set_rvc to
3244         clear RVC when it's been previously set.
3245
3246 2017-03-31  Nick Clifton  <nickc@redhat.com>
3247
3248         PR gas/21333
3249         * config/tc-s390.c (tc_s390_fix_adjustable): Allow non pc-relative
3250         fixups in mergeable sections to be adjusted.
3251
3252 2017-03-30  Pip Cet  <pipcet@gmail.com>
3253
3254         * config/tc-wasm32.h: New file: Add WebAssembly assembler target.
3255         * config/tc-wasm32.c: New file: Add WebAssembly assembler target.
3256         * Makefile.am: Add WebAssembly assembler target.
3257         * configure.tgt: Add WebAssembly assembler target.
3258         * doc/c-wasm32.texi: New file: Start documenting WebAssembly
3259         assembler.
3260         * doc/all.texi: Define WASM32.
3261         * doc/as.texinfo: Add WebAssembly entries.
3262         * NEWS: Mention the new support.
3263         * Makefile.in: Regenerate.
3264         * po/gas.pot: Regenerate.
3265         * po/POTFILES.in: Regenerate.
3266         * testsuite/gas/wasm32: New directory.
3267         * testsuite/gas/wasm32/allinsn.d: New file.
3268         * testsuite/gas/wasm32/allinsn.s: New file.
3269         * testsuite/gas/wasm32/illegal.l: New file.
3270         * testsuite/gas/wasm32/illegal.s: New file.
3271         * testsuite/gas/wasm32/illegal-2.l: New file.
3272         * testsuite/gas/wasm32/illegal-2.s: New file.
3273         * testsuite/gas/wasm32/illegal-3.l: New file.
3274         * testsuite/gas/wasm32/illegal-3.s: New file.
3275         * testsuite/gas/wasm32/illegal-4.l: New file.
3276         * testsuite/gas/wasm32/illegal-4.s: New file.
3277         * testsuite/gas/wasm32/illegal-5.l: New file.
3278         * testsuite/gas/wasm32/illegal-5.s: New file.
3279         * testsuite/gas/wasm32/illegal-6.l: New file.
3280         * testsuite/gas/wasm32/illegal-6.s: New file.
3281         * testsuite/gas/wasm32/illegal-7.l: New file.
3282         * testsuite/gas/wasm32/illegal-7.s: New file.
3283         * testsuite/gas/wasm32/illegal-8.l: New file.
3284         * testsuite/gas/wasm32/illegal-8.s: New file.
3285         * testsuite/gas/wasm32/illegal-9.l: New file.
3286         * testsuite/gas/wasm32/illegal-9.s: New file.
3287         * testsuite/gas/wasm32/illegal-10.l: New file.
3288         * testsuite/gas/wasm32/illegal-10.s: New file.
3289         * testsuite/gas/wasm32/illegal-11.l: New file.
3290         * testsuite/gas/wasm32/illegal-11.s: New file.
3291         * testsuite/gas/wasm32/illegal-12.l: New file.
3292         * testsuite/gas/wasm32/illegal-12.s: New file.
3293         * testsuite/gas/wasm32/illegal-13.l: New file.
3294         * testsuite/gas/wasm32/illegal-13.s: New file.
3295         * testsuite/gas/wasm32/illegal-14.l: New file.
3296         * testsuite/gas/wasm32/illegal-14.s: New file.
3297         * testsuite/gas/wasm32/illegal-15.l: New file.
3298         * testsuite/gas/wasm32/illegal-15.s: New file.
3299         * testsuite/gas/wasm32/illegal-16.l: New file.
3300         * testsuite/gas/wasm32/illegal-16.s: New file.
3301         * testsuite/gas/wasm32/illegal-17.l: New file.
3302         * testsuite/gas/wasm32/illegal-17.s: New file.
3303         * testsuite/gas/wasm32/illegal-18.l: New file.
3304         * testsuite/gas/wasm32/illegal-18.s: New file.
3305         * testsuite/gas/wasm32/illegal-19.l: New file.
3306         * testsuite/gas/wasm32/illegal-19.s: New file.
3307         * testsuite/gas/wasm32/illegal-20.l: New file.
3308         * testsuite/gas/wasm32/illegal-20.s: New file.
3309         * testsuite/gas/wasm32/illegal-21.l: New file.
3310         * testsuite/gas/wasm32/illegal-21.s: New file.
3311         * testsuite/gas/wasm32/illegal-22.l: New file.
3312         * testsuite/gas/wasm32/illegal-22.s: New file.
3313         * testsuite/gas/wasm32/illegal-24.l: New file.
3314         * testsuite/gas/wasm32/illegal-24.s: New file.
3315         * testsuite/gas/wasm32/illegal-25.l: New file.
3316         * testsuite/gas/wasm32/illegal-25.s: New file.
3317         * testsuite/gas/wasm32/reloc.d: New file.
3318         * testsuite/gas/wasm32/reloc.s: New file.
3319         * testsuite/gas/wasm32/wasm32.exp: New tests for WebAssembly
3320         architecture.
3321
3322 2017-03-29  Alan Modra  <amodra@gmail.com>
3323
3324         * config/tc-ppc.c (md_parse_option): Reject -mraw.
3325
3326 2017-03-27  Alan Modra  <amodra@gmail.com>
3327
3328         PR 21303
3329         * testsuite/gas/ppc/pr21303.d,
3330         * testsuite/gas/ppc/pr21303.s: New test
3331         * testsuite/gas/ppc/ppc.exp: Run it.
3332
3333 2017-03-27  Rinat Zelig  <rinat@mellanox.com>
3334
3335         * testsuite/gas/arc/nps400-12.s: New file.
3336         * testsuite/gas/arc/nps400-12.d: New file.
3337
3338 2017-03-24  Thomas preud'homme  <thomas.preudhomme@arm.com>
3339
3340         * config/tc-arm.: (md_begin): Set selected_cpu from *mcpu_cpu_opt when
3341         CPU_DEFAULT is defined.
3342
3343 2017-03-21  Palmer Dabbbelt  <palmer@dabbelt.com>
3344
3345         * config/tc-riscv.c (md_show_usage): Remode defuct -m32, -m64,
3346         -msoft-float, -mhard-float, -mno-rvc, and -mrvc options; and don't
3347         print an invalid default ISA string.
3348         * doc/c-riscv.texi (OPTIONS): Add -fpic and -fno-pic options.
3349
3350 2017-03-22  Max Filippov  <jcmvbkbc@gmail.com>
3351
3352         * config/tc-xtensa.c (xtensa_relax_frag): Change fx_size of the
3353         reassigned fixup to size of jump instruction (3) and fx_r_type
3354         to BFD_RELOC_XTENSA_SLOT0_OP, as there's only one slot.
3355         (add_jump_to_trampoline): Search
3356         origfrag->tc_frag_data.slot_symbols for the slot with non-NULL
3357         symbol and use that slot instead of slot 0.
3358
3359 2017-03-21  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
3360
3361         * config/tc-s390.c (s390_parse_cpu): Remove S390_INSTR_FLAG_VX2
3362         from cpu_table.  Remove vx2, and novx2 from cpu_flags.
3363
3364 2017-03-21  Rinat Zelig  <rinat@mellanox.com>
3365
3366         * testsuite/gas/arc/nps400-11.s: New file.
3367         * testsuite/gas/arc/nps400-11.d: New file.
3368
3369 2017-03-20  Nick Clifton  <nickc@redhat.com>
3370
3371         * doc/as.texinfo (2byte): Note that if no expressions are present
3372         the directive does nothing.  Emphasize that the output is
3373         unaligned, and that this can have an effect on the relocations
3374         generated.
3375         (4byte): Simplify description.  Refer back to the 2byte
3376         description.
3377         (8byte): Likewise.
3378
3379 2017-03-20  Richard Earnshaw  <rearnsha@arm.com>
3380
3381         * config/tc-arm.c (arm_fpus): Note entires that should not be
3382         documented.
3383         * doc/c-arm.texi (-mfpu): Add missing FPU entries for neon-vfpv3 and
3384         neon-fp16.  Fix spelling error.
3385
3386 2017-03-20  Richard Earnshaw  <rearnsha@arm.com>
3387
3388         * config/tc-arm.c (arm_fpus): Add neon-vfpv3 as an alias for neon.
3389
3390 2017-03-16  Rinat Zelig  <rinat@mellanox.com>
3391
3392         * config/tc-arc.c (assemble_insn): Only handle ".t" and ".nt"
3393         specially for ARCv2.
3394
3395 2017-03-14  Kito Cheng  <kito.cheng@gmail.com>
3396
3397         * config/tc-riscv.c (validate_riscv_insn): Add 'o' RVC immediate
3398         encoding format, which can accept 0-valued immediates.
3399         (riscv_ip): Likewise.
3400
3401 2017-03-15  Nick Clifton  <nickc@redhat.com>
3402
3403         * config/tc-riscv.c (riscv_pre_output_hook): Fix compile time
3404         warning about discarding a const qualifier.
3405
3406 2017-03-02  Kuan-Lin Chen  <rufus@andestech.com>
3407
3408         * config/tc-riscv.h (HWARD2_USE_FIXED_ADVANCE_PC): New define.
3409
3410 2017-03-02  Kuan-Lin Chen  <rufus@andestech.com>
3411
3412         * config/tc-riscv.c (md_apply_fix): Set fx_frag and
3413         fx_next->fx_frag for CFA_advance_loc relocations.
3414
3415 2017-03-02  Kuan-Lin Chen  <rufus@andestech.com>
3416
3417         * config/tc-riscv.c (md_apply_fix): Compute the correct offsets
3418         for CFA relocations.
3419
3420 2017-03-13  Nick Clifton  <nickc@redhat.com>
3421
3422         PR binutils/21202
3423         * config/tc-aarch64.c (reloc_table): Rename
3424         BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC to
3425         BFD_RELOC_AARCH64_TLSDESC_LD64_LO12.  Rname
3426         BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC to
3427         BFD_RELOC_AARCH64_TLSDESC_ADD_LO12.
3428         (md_apply_fix): Likewise.
3429         (aarch64_force_relocation): Likewise.
3430         * testsuite/gas/aarch64/tls.d: Update regexp.
3431
3432 2017-03-10  Tobin C. Harding  <me@tobin.cc>
3433             Nick Clifton  <nickc@redhat.com>
3434
3435         * doc/as.texinfo (2byte): Tidy up wording.  Add note that
3436         overlarge values will produce a warning message and be trunacted.
3437         (4byte): Likewise.
3438
3439 2017-03-09  H.J. Lu  <hongjiu.lu@intel.com>
3440
3441         * config/tc-i386.c (_i386_insn): Add dir_encoding and
3442         vec_encoding.  Remove swap_operand and need_vrex.
3443         (extra_symbol_chars): Add '}'.
3444         (md_begin): Mark '}' with LEX_BEGIN_NAME.  Allow '}' in
3445         mnemonic.
3446         (build_vex_prefix): Don't use 2-byte VEX encoding with
3447         {vex3}.  Check dir_encoding and load.
3448         (parse_insn): Check pseudo prefixes.  Set dir_encoding.
3449         (VEX_check_operands): Likewise.
3450         (match_template): Check dir_encoding and load.
3451         (parse_real_register): Set vec_encoding instead of need_vrex.
3452         (parse_register): Likewise.
3453         * doc/c-i386.texi: Document {disp8}, {disp32}, {load}, {store},
3454         {vex2}, {vex3} and {evex}.  Remove ".s", ".d8" and ".d32"
3455         * testsuite/gas/i386/i386.exp: Run pseudos and x86-64-pseudos.
3456         * testsuite/gas/i386/pseudos.d: New file.
3457         * testsuite/gas/i386/pseudos.s: Likewise.
3458         * testsuite/gas/i386/x86-64-pseudos.d: Likewise.
3459         * testsuite/gas/i386/x86-64-pseudos.s: Likewise.
3460
3461 2017-03-08  Peter Bergner <bergner@vnet.ibm.com>
3462
3463         * testsuite/gas/ppc/altivec2.d (as): Use the -mpower8 option.
3464         (objdump): Use the -Mpower8 option.
3465
3466 2017-03-08  Peter Bergner <bergner@vnet.ibm.com>
3467
3468         * testsuite/gas/ppc/power9.d <lnia> New test.
3469         * testsuite/gas/ppc/power9.s: Likewise.
3470
3471 2017-03-07  Alan Modra  <amodra@gmail.com>
3472
3473         * doc/as.texinfo (2byte, 4byte, 8byte): Correct @section placement.
3474
3475 2017-03-07  Tobin C. Harding  <me@tobin.cc>
3476             Alan Modra  <amodra@gmail.com>
3477
3478         * doc/as.texinfo (2byte, 4byte, 8byte): Document.
3479         * doc/c-arm.texi (2byte, 4byte, 8byte): Omit if ELF.
3480
3481 2017-03-06  H.J. Lu  <hongjiu.lu@intel.com>
3482
3483         * config/tc-i386.c (cpu_arch): Add .cet.
3484         * doc/c-i386.texi: Document cet.
3485         * testsuite/gas/i386/cet-intel.d: New file.
3486         * testsuite/gas/i386/cet.d: Likewise.
3487         * testsuite/gas/i386/cet.s: Likewise.
3488         * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
3489         * testsuite/gas/i386/x86-64-cet.d: Likewise.
3490         * testsuite/gas/i386/x86-64-cet.s: Likewise.
3491         * testsuite/gas/i386/i386.exp: Run Intel CET tests.
3492
3493 2017-03-06  H.J. Lu  <hongjiu.lu@intel.com>
3494
3495         * testsuite/gas/i386/x86-64-mpx-inval-2.s: Force a good alignment.
3496         * testsuite/gas/i386/x86-64-mpx-inval-2.l: Expect [0-9A-F]+.
3497
3498 2017-03-06  Alan Modra  <amodra@gmail.com>
3499
3500         * dw2gencfi.c (encoding_size): Return unsigned int.
3501         (emit_expr_encoded): Assert size matches reloc bitsize.
3502         (output_fde): Use unsigned for offset_size and addr_size.  Set
3503         addr_size earlier and use in place of constant 4 and uses of
3504         DWARF2_FDE_RELOC_SIZE.  Assert it matches reloc bitsize.
3505
3506 2017-03-06  Alan Modra  <amodra@gmail.com>
3507
3508         * dw2gencfi.c: Wrap overlong lines.  Add parens for emacs
3509         auto reformat.  Formatting and whitespace fixes.
3510
3511 2017-03-05  Mark Wielaard  <mark@klomp.org>
3512
3513         * dwarf2dbg.c (out_debug_abbrev): Use DW_FORM_strp instead of
3514         DW_FORM_string for DW_AT_name, DW_AT_comp_dir and DW_AT_producer.
3515         (out_debug_info): Accept symbols to name, comp_dir and producer in
3516         the .debug_str section and emit those offsets not full strings.
3517         (out_debug_str): New function that outputs the strings for name,
3518         comp_dir and producer in .debug_str and generates symbols to those
3519         strings.
3520         (out_debug_line): Create a .debug_str section if necessary and call
3521         out_debug_str before calling out_debug_info.
3522         * testsuite/gas/aarch64/dwarf.d: Add extra section symbol to expected
3523         output.
3524
3525 2017-03-02  Maciej W. Rozycki  <macro@imgtec.com>
3526
3527         * write.c (relax_segment) <rs_org>: Only bail out if the fixed
3528         part of the frag has overrun the location requested.
3529
3530         * testsuite/gas/all/org-1.d: New test.
3531         * testsuite/gas/all/org-2.d: New test.
3532         * testsuite/gas/all/org-3.d: New test.
3533         * testsuite/gas/all/org-4.d: New test.
3534         * testsuite/gas/all/org-5.d: New test.
3535         * testsuite/gas/all/org-6.d: New test.
3536         * testsuite/gas/all/org-1.l: New stderr output.
3537         * testsuite/gas/all/org-2.l: New stderr output.
3538         * testsuite/gas/all/org-3.l: New stderr output.
3539         * testsuite/gas/all/org-1.s: New test source.
3540         * testsuite/gas/all/org-2.s: New test source.
3541         * testsuite/gas/all/org-3.s: New test source.
3542         * testsuite/gas/all/org-4.s: New test source.
3543         * testsuite/gas/all/org-5.s: New test source.
3544         * testsuite/gas/all/org-6.s: New test source.
3545         * testsuite/gas/all/gas.exp: Run the new tests.
3546
3547         * testsuite/gas/mips/org-1.d: New test.
3548         * testsuite/gas/mips/org-2.d: New test.
3549         * testsuite/gas/mips/org-3.d: New test.
3550         * testsuite/gas/mips/org-4.d: New test.
3551         * testsuite/gas/mips/org-5.d: New test.
3552         * testsuite/gas/mips/org-6.d: New test.
3553         * testsuite/gas/mips/org-7.d: New test.
3554         * testsuite/gas/mips/org-8.d: New test.
3555         * testsuite/gas/mips/org-9.d: New test.
3556         * testsuite/gas/mips/org-10.d: New test.
3557         * testsuite/gas/mips/org-11.d: New test.
3558         * testsuite/gas/mips/org-12.d: New test.
3559         * testsuite/gas/mips/org-1.l: New stderr output.
3560         * testsuite/gas/mips/org-4.l: New stderr output.
3561         * testsuite/gas/mips/org-5.l: New stderr output.
3562         * testsuite/gas/mips/org-6.l: New stderr output.
3563         * testsuite/gas/mips/org-10.l: New stderr output.
3564         * testsuite/gas/mips/org-1.s: New test source.
3565         * testsuite/gas/mips/org-2.s: New test source.
3566         * testsuite/gas/mips/org-3.s: New test source.
3567         * testsuite/gas/mips/org-4.s: New test source.
3568         * testsuite/gas/mips/org-5.s: New test source.
3569         * testsuite/gas/mips/org-6.s: New test source.
3570         * testsuite/gas/mips/org-7.s: New test source.
3571         * testsuite/gas/mips/org-8.s: New test source.
3572         * testsuite/gas/mips/org-9.s: New test source.
3573         * testsuite/gas/mips/org-10.s: New test source.
3574         * testsuite/gas/mips/org-11.s: New test source.
3575         * testsuite/gas/mips/org-12.s: New test source.
3576         * testsuite/gas/mips/mips.exp: Run the new tests.
3577
3578 2017-03-01  Szabolcs Nagy  <szabolcs.nagy@arm.com>
3579
3580         * doc/c-aarch64.texi (AArch64 Extensions): Document rcpc.
3581
3582 2017-02-28  Jan Beulich  <jbeulich@suse.com>
3583
3584         * testsuite/gas/i386/x86-64-avx.s: Add suffixed variants of
3585         VPCMPESTR{I,M}.
3586         * testsuite/gas/i386/x86-64-sse2avx.s: Likewise.
3587         * testsuite/gas/i386/x86-64-sse4_2.s: Add suffixed variants
3588         of PCMPESTR{I,M}.
3589         * testsuite/gas/i386/ilp32/x86-64-avx-intel.d: Likewise.
3590         * testsuite/gas/i386/ilp32/x86-64-avx.d: Likewise.
3591         * testsuite/gas/i386/ilp32/x86-64-sse2avx.d: Likewise.
3592         * testsuite/gas/i386/ilp32/x86-64-sse4_2-intel.d: Likewise.
3593         * testsuite/gas/i386/ilp32/x86-64-sse4_2.d: Likewise.
3594         * testsuite/gas/i386/x86-64-avx-intel.d: Likewise.
3595         * testsuite/gas/i386/x86-64-avx.d: Likewise.
3596         * testsuite/gas/i386/x86-64-sse2avx.d: Likewise.
3597         * testsuite/gas/i386/x86-64-sse4_2-intel.d: Likewise.
3598         * testsuite/gas/i386/x86-64-sse4_2.d: Likewise.
3599
3600 2017-02-28  Alan Modra  <amodra@gmail.com>
3601
3602         * config/tc-nios2.h (TC_FORCE_RELOCATION_SUB_LOCAL): Define.
3603
3604 2017-02-28  Alan Modra  <amodra@gmail.com>
3605
3606         * config/tc-ppc.c (md_assemble): Use BFD_RELOC_PPC_16DX_HA for addpcis.
3607         (md_apply_fix): Remove fx_subsy check.  Move code converting to
3608         pcrel reloc earlier and handle BFD_RELOC_PPC_16DX_HA.  Remove code
3609         emiiting errors on seeing fx_pcrel set on unexpected relocs, as
3610         that is done now by the generic code via..
3611         * config/tc-ppc.h (TC_FORCE_RELOCATION_SUB_LOCAL): ..this. Define.
3612         (TC_VALIDATE_FIX_SUB): Define.
3613
3614 2017-02-28  Maciej W. Rozycki  <macro@imgtec.com>
3615
3616         * testsuite/gas/mips/jalr4.s: Add `jalr $0, $25' instructions.
3617         * testsuite/gas/mips/jalr4.d: Adjust accordingly.  Remove MIPSr6
3618         encoding patterns.
3619         * testsuite/gas/mips/jalr4-n64.d: Likewise.
3620         * testsuite/gas/mips/mipsr6@jalr4.d: New test.
3621         * testsuite/gas/mips/mipsr6@jalr4-n32.d: New test.
3622         * testsuite/gas/mips/mipsr6@jalr4-n64.d: New test.
3623
3624 2017-02-25  Alan Modra  <amodra@gmail.com>
3625
3626         * testsuite/gas/elf/strtab.s: Don't put directives on first
3627         column or continuation with labels not in first column.
3628
3629 2017-02-24  Richard Sandiford  <richard.sandiford@arm.com>
3630
3631         * doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
3632         * config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
3633         to be used with SVE registers.
3634         (parse_operands): Handle new SVE operands.
3635         (aarch64_features): Make "sve" require F16 rather than FP.  Also
3636         require COMPNUM.
3637         * testsuite/gas/aarch64/sve.s: Add tests for new instructions.
3638         Include compnum tests.
3639         * testsuite/gas/aarch64/sve.d: Update accordingly.
3640         * testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
3641         * testsuite/gas/aarch64/sve-invalid.l: Update accordingly.  Also
3642         update expected output for new FMOV and MOV alternatives.
3643
3644 2017-02-24  Richard Sandiford  <richard.sandiford@arm.com>
3645
3646         * doc/c-aarch64.texi: Add a "compnum" entry.
3647         * config/tc-aarch64.c (aarch64_features): Likewise,
3648         * testsuite/gas/aarch64/advsimd-compnum.s: New test.
3649         * testsuite/gas/aarch64/advsimd-compnum.d: Likewise.
3650
3651 2017-02-24  Jan Beulich  <jbeulich@suse.com>
3652
3653         * testsuite/gas/i386/opcode.s: Add alternative TEST forms.
3654         * testsuite/gas/i386/x86-64-opcode.s: Likewise.
3655         * testsuite/gas/i386/opcode.d: Adjust accordingly.
3656         * testsuite/gas/i386/opcode-intel.d: Likewise.
3657         * testsuite/gas/i386/x86-64-opcode.d: Likewise.
3658         * testsuite/gas/i386/ilp32/x86-64-opcode.d: Likewise.
3659
3660 2017-02-24  Sheldon Lobo  <sheldon.lobo@oracle.com>
3661
3662         Test cases for the architecture level aware SPARC ASI work.
3663         * gas/testsuite/gas/sparc/sparc.exp: 2 new tests
3664         * gas/testsuite/gas/sparc/asi-bump-warn.s: New test
3665         * gas/testsuite/gas/sparc/asi-bump-warn.l: Likewise
3666         * gas/testsuite/gas/sparc/asi-arch-error.s: Likewise
3667         * gas/testsuite/gas/sparc/asi-arch-error.l: Likewise
3668
3669 2017-02-23  Maciej W. Rozycki  <macro@imgtec.com>
3670
3671         * testsuite/gas/mips/jalr4.d: New test.
3672         * testsuite/gas/mips/jalr4-n32.d: New test.
3673         * testsuite/gas/mips/jalr4-n64.d: New test.
3674         * testsuite/gas/mips/jalr4.s: New test source.
3675         * testsuite/gas/mips/mips.exp: Run the new tests.
3676
3677 2017-02-23  Sheldon Lobo <sheldon.lobo@oracle.com>
3678
3679         Add support for associating SPARC ASIs with an architecture level.
3680         * config/tc-sparc.c (parse_sparc_asi): New encode SPARC ASIs.
3681
3682 2017-02-23  Jan Beulich  <jbeulich@suse.com>
3683
3684         * testsuite/gas/all/err-sizeof.s: Don't use sums or differences
3685         of symbols as expression.
3686
3687 2017-02-23  Jan Beulich  <jbeulich@suse.com>
3688
3689         * gas/testsuite/gas/i386/x86-64-mpx-inval-2.d: Add 32- and 16-
3690         bit GPR forms of BNDCL, BNDCU, and BNDCN. Add RSP-as-index
3691         Intel syntax forms of BNDMK, BNDSTX, and BNDLDX.
3692         * gas/testsuite/gas/i386/x86-64-mpx-inval-2.l: Adjust.
3693
3694 2017-02-22  Maciej W. Rozycki  <macro@imgtec.com>
3695
3696         * ecoff.c (ecoff_directive_end) [md_flush_pending_output]: Call
3697         `md_flush_pending_output'.
3698         * config/tc-mips.c (s_mips_end) [md_flush_pending_output]: Call
3699         `md_flush_pending_output' unconditionally.
3700         * testsuite/gas/mips/debug-label-end-1.d: New test.
3701         * testsuite/gas/mips/debug-label-end-2.d: New test.
3702         * testsuite/gas/mips/debug-label-end-3.d: New test.
3703         * testsuite/gas/mips/debug-label-end.s: New test source.
3704         * testsuite/gas/mips/mips.exp: Run the new tests.
3705
3706 2017-02-22  Hans-Peter Nilsson  <hp@axis.com>
3707
3708         * testsuite/gas/all/err-sizeof.s: Include cris*-*-* in the list of
3709         targets yielding an error message matching "too complex".
3710
3711 2017-02-22  Nick Clifton  <nickc@redhat.com>
3712
3713         * testsuite/gas/arm/vcmp-noprefix-imm.d: Skip for non-ELF targets.
3714
3715 2017-02-21  Jan Beulich  <jbeulich@suse.com>
3716
3717         * expr.c (operand): Handle missing operand to .startof.() and
3718         .sizeof.().
3719         * testsuite/gas/all/err-sizeof.s: New.
3720
3721 2017-02-20  Alan Modra  <amodra@gmail.com>
3722
3723         PR 21118
3724         * NEWS: Revise powerpc register check.
3725         * config/tc-ppc.c (ppc_optimize_expr, md_assemble): Make "invalid
3726         register expression" a warning.
3727
3728 2017-02-17  Maciej W. Rozycki  <macro@imgtec.com>
3729
3730         * ecoff.c (ecoff_directive_ent, add_procedure): Handle `.aent'.
3731         * config/obj-ecoff.c (obj_pseudo_table): Add "aent" entry.
3732         * config/obj-elf.c (ecoff_debug_pseudo_table): Likewise.
3733         * testsuite/gas/mips/aent-2.d: New test.
3734         * testsuite/gas/mips/aent-mdebug.d: New test.
3735         * testsuite/gas/mips/aent-mdebug-2.d: New test.
3736         * testsuite/gas/mips/mips.exp: Run the new tests.
3737
3738 2017-02-15  Richard Sandiford  <richard.sandiford@arm.com>
3739
3740         * testsuite/gas/aarch64/sve-sysreg.s,
3741         testsuite/gas/aarch64/sve-sysreg.d,
3742         testsuite/gas/aarch64/sve-sysreg-invalid.d,
3743         testsuite/gas/aarch64/sve-sysreg-invalid.l: New tests.
3744
3745 2017-02-15  Richard Sandiford  <richard.sandiford@arm.com>
3746
3747         * doc/c-aarch64.texi: Fix sve entry.
3748
3749 2017-02-15  Claudiu Zissulescu  <claziss@synopsys.com>
3750
3751         * config/tc-arc.c (md_convert_frag): Remove @pcl relocation
3752         information from input expression.
3753         (assemble_insn): Make sure pcrel is correctly set.
3754         (arc_pcrel_adjust): Compensate for PCL rounding.
3755         * testsuite/gas/arc/relax-add01.d: New file.
3756         * testsuite/gas/arc/relax-add01.s: Likewise.
3757         * testsuite/gas/arc/relax-add02.d: Likewise.
3758         * testsuite/gas/arc/relax-add02.s: Likewise.
3759         * testsuite/gas/arc/relax-add03.d: Likewise.
3760         * testsuite/gas/arc/relax-add03.s: Likewise.
3761         * testsuite/gas/arc/relax-add04.d: Likewise.
3762         * testsuite/gas/arc/relax-add04.s: Likewise.
3763         * testsuite/gas/arc/relax-ld01.d: Likewise.
3764         * testsuite/gas/arc/relax-ld01.s: Likewise.
3765         * testsuite/gas/arc/relax-ld02.d: Likewise.
3766         * testsuite/gas/arc/relax-ld02.s: Likewise.
3767         * testsuite/gas/arc/relax-mov01.d: Likewise.
3768         * testsuite/gas/arc/relax-mov01.s: Likewise.
3769         * testsuite/gas/arc/relax-mov02.d: Likewise.
3770         * testsuite/gas/arc/relax-mov02.s: Likewise.
3771         * testsuite/gas/arc/relax-mpy01.d: Likewise.
3772         * testsuite/gas/arc/relax-mpy01.s: Likewise.
3773         * testsuite/gas/arc/relax-sub01.d: Likewise.
3774         * testsuite/gas/arc/relax-sub01.s: Likewise.
3775         * testsuite/gas/arc/relax-sub02.d: Likewise.
3776         * testsuite/gas/arc/relax-sub02.s: Likewise.
3777         * testsuite/gas/arc/relax-sub03.d: Likewise.
3778         * testsuite/gas/arc/relax-sub03.s: Likewise.
3779         * testsuite/gas/arc/relax-sub04.d: Likewise.
3780         * testsuite/gas/arc/relax-sub04.s: Likewise.
3781
3782 2017-02-09  Vineet Gupta <vgupta@synopsys.com>
3783
3784         * testsuite/gas/arc/st.d: Update for 0xe having a name now
3785
3786 2017-02-14  Alan Modra  <amodra@gmail.com>
3787
3788         PR 21118
3789         * NEWS: Mention powerpc register checks.
3790         * config/tc-ppc.c (struct pd_reg): Make value a short.  Add flags.
3791         (pre_defined_registers): Delete fpscr and pmr entries.  Set
3792         register type in flags.
3793         (cr_names): Set type in flags.
3794         (reg_name_search): Return pointer to struct pd_reg rather than value.
3795         (register_name): Adjust to suit.  Set X_md from flags.
3796         (ppc_parse_name): Likewise.
3797         (ppc_optimize_expr): New function.
3798         (md_assemble): Verify expresion reg flags match operand.
3799         * config/tc-ppc.h (md_optimize_expr): Define.
3800         (ppc_optimize_expr): Declare.
3801
3802 2017-02-14  Alan Modra  <amodra@gmail.com>
3803
3804         * testsuite/gas/ppc/cell.s: Correct invalid registers.
3805         * testsuite/gas/ppc/vle-simple-1.s: Likewise.
3806         * testsuite/gas/ppc/vle-simple-2.s: Likewise.
3807
3808 2017-02-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
3809
3810         * config/tc-arm.c (parse_ifimm_zero): Make prefix optional in unified
3811         syntax.
3812         * testsuite/gas/arm/vcmp-noprefix-imm.d: New file.
3813         * testsuite/gas/arm/vcmp-noprefix-imm.s: New file.
3814
3815 2017-02-10  Nicholas Piggin  <npiggin@gmail.com>
3816
3817         * testsuite/gas/ppc/power9.d <scv, rfscv>: New tests.
3818
3819 2017-02-02  Maciej W. Rozycki  <macro@imgtec.com>
3820
3821         * doc/as.texinfo (Overview): Select MIPS options for man page
3822         inclusion.
3823
3824 2017-01-30  Maciej W. Rozycki  <macro@imgtec.com>
3825
3826         * config/tc-mips.c (mips_ignore_branch_isa): New variable.
3827         (options): Add OPTION_IGNORE_BRANCH_ISA and
3828         OPTION_NO_IGNORE_BRANCH_ISA enum values.
3829         (md_longopts): Add "mignore-branch-isa" and
3830         "mno-ignore-branch-isa" options.
3831         (md_parse_option): Handle OPTION_IGNORE_BRANCH_ISA and
3832         OPTION_NO_IGNORE_BRANCH_ISA.
3833         (fix_bad_cross_mode_branch_p): Return FALSE if
3834         `mips_ignore_branch_isa' has been set.
3835         (md_show_usage): Add `-mignore-branch-isa' and
3836         `-mno-ignore-branch-isa'.
3837
3838         * doc/as.texinfo (Target MIPS options): Add
3839         `-mignore-branch-isa' and `-mno-ignore-branch-isa' options.
3840         (-mignore-branch-isa, -mno-ignore-branch-isa): New options.
3841         * doc/c-mips.texi (MIPS Options): Add `-mignore-branch-isa' and
3842         `-mno-ignore-branch-isa' options.
3843
3844         * testsuite/gas/mips/branch-local-ignore-2.d: New test.
3845         * testsuite/gas/mips/branch-local-ignore-3.d: New test.
3846         * testsuite/gas/mips/branch-local-ignore-n32-2.d: New test.
3847         * testsuite/gas/mips/branch-local-ignore-n32-3.d: New test.
3848         * testsuite/gas/mips/branch-local-ignore-n64-2.d: New test.
3849         * testsuite/gas/mips/branch-local-ignore-n64-3.d: New test.
3850         * testsuite/gas/mips/mips.exp: Run the new tests.
3851
3852 2017-01-30  Maciej W. Rozycki  <macro@imgtec.com>
3853
3854         * testsuite/gas/mips/branch-local-2.d: New test.
3855         * testsuite/gas/mips/branch-local-3.d: New test.
3856         * testsuite/gas/mips/branch-local-n32-2.d: New test.
3857         * testsuite/gas/mips/branch-local-n32-3.d: New test.
3858         * testsuite/gas/mips/branch-local-n64-2.d: New test.
3859         * testsuite/gas/mips/branch-local-n64-3.d: New test.
3860         * testsuite/gas/mips/mips.exp: Fold corresponding list tests
3861         into the new tests.
3862
3863 2017-01-27  Alexis Deruell  <alexis.deruelle@gmail.com>
3864
3865         PR 21056
3866         * testsuite/gas/tic6x/insns16-parallel.s: New test case.
3867         * testsuite/gas/tic6x/insns16-parallel.d: New test driver.
3868
3869 2017-01-25  Sebastian Huber  <sebastian.huber@embedded-brains.de>
3870
3871         * configure.tgt (aarch64*-*-rtems*): Remove.
3872         (bfin-*-rtems*): Likewise.
3873         (h8300-*-rtems*): Likewise.
3874         (i386-*-rtems*): Likewise.
3875         (m32c-*-rtems*): Likewise.
3876         (m32r-*-rtems*): Likewise.
3877         (m68k-*-rtems*): Likewise.
3878         (mips-*-rtems*): Likewise.
3879         (nios2-*-rtems*): Likewise.
3880         (ppc-*-rtems*): Likewise.
3881         (sh-*-rtems*): Likewise.
3882         (sparc64-*-rtems*): Likewise.
3883         (sparc-*-rtems*): Likewise.
3884         (*-*-rtems*) Use ELF format.
3885
3886 2017-01-25  Sebastian Huber  <sebastian.huber@embedded-brains.de>
3887
3888         * configure.tgt (arm-*-rtems*): Move to (arm-*-eabi*).
3889
3890 2017-01-25  Sebastian Huber  <sebastian.huber@embedded-brains.de>
3891
3892         * configure.tgt (sh-*-rtemscoff*): Remove.
3893
3894 2017-01-24  Sebastian Huber <sebastian.huber@embedded-brains.de>
3895
3896         * configure.tgt (riscv*-*-*): Remove em=linux.
3897
3898 2017-01-23  Sebastian Rasmussen  <sebras@gmail.com>
3899
3900         PR gas/21072
3901         * asintl.h: Fix spelling mistakes and typos.
3902         * atof-generic.c: Likewise.
3903         * bit_fix.h: Likewise.
3904         * config/atof-ieee.c: Likewise.
3905         * config/bfin-defs.h: Likewise.
3906         * config/bfin-parse.y: Likewise.
3907         * config/obj-coff-seh.h: Likewise.
3908         * config/obj-coff.c: Likewise.
3909         * config/obj-evax.c: Likewise.
3910         * config/obj-macho.c: Likewise.
3911         * config/rx-parse.y: Likewise.
3912         * config/tc-aarch64.c: Likewise.
3913         * config/tc-alpha.c: Likewise.
3914         * config/tc-arc.c: Likewise.
3915         * config/tc-arm.c: Likewise.
3916         * config/tc-avr.c: Likewise.
3917         * config/tc-bfin.c: Likewise.
3918         * config/tc-cr16.c: Likewise.
3919         * config/tc-cris.c: Likewise.
3920         * config/tc-crx.c: Likewise.
3921         * config/tc-d10v.c: Likewise.
3922         * config/tc-d30v.c: Likewise.
3923         * config/tc-dlx.c: Likewise.
3924         * config/tc-epiphany.c: Likewise.
3925         * config/tc-frv.c: Likewise.
3926         * config/tc-hppa.c: Likewise.
3927         * config/tc-i370.c: Likewise.
3928         * config/tc-i386-intel.c: Likewise.
3929         * config/tc-i386.c: Likewise.
3930         * config/tc-i960.c: Likewise.
3931         * config/tc-ia64.c: Likewise.
3932         * config/tc-m32r.c: Likewise.
3933         * config/tc-m68hc11.c: Likewise.
3934         * config/tc-m68k.c: Likewise.
3935         * config/tc-mcore.c: Likewise.
3936         * config/tc-mep.c: Likewise.
3937         * config/tc-mep.h: Likewise.
3938         * config/tc-metag.c: Likewise.
3939         * config/tc-microblaze.c: Likewise.
3940         * config/tc-mips.c: Likewise.
3941         * config/tc-mmix.c: Likewise.
3942         * config/tc-mn10200.c: Likewise.
3943         * config/tc-mn10300.c: Likewise.
3944         * config/tc-msp430.c: Likewise.
3945         * config/tc-msp430.h: Likewise.
3946         * config/tc-nds32.c: Likewise.
3947         * config/tc-nds32.h: Likewise.
3948         * config/tc-nios2.c: Likewise.
3949         * config/tc-nios2.h: Likewise.
3950         * config/tc-ns32k.c: Likewise.
3951         * config/tc-pdp11.c: Likewise.
3952         * config/tc-ppc.c: Likewise.
3953         * config/tc-pru.c: Likewise.
3954         * config/tc-rx.c: Likewise.
3955         * config/tc-s390.c: Likewise.
3956         * config/tc-score.c: Likewise.
3957         * config/tc-score7.c: Likewise.
3958         * config/tc-sh.c: Likewise.
3959         * config/tc-sh64.c: Likewise.
3960         * config/tc-sparc.c: Likewise.
3961         * config/tc-tic4x.c: Likewise.
3962         * config/tc-tic54x.c: Likewise.
3963         * config/tc-v850.c: Likewise.
3964         * config/tc-vax.c: Likewise.
3965         * config/tc-visium.c: Likewise.
3966         * config/tc-xgate.c: Likewise.
3967         * config/tc-xtensa.c: Likewise.
3968         * config/tc-z80.c: Likewise.
3969         * config/tc-z8k.c: Likewise.
3970         * config/te-vms.c: Likewise.
3971         * config/xtensa-relax.c: Likewise.
3972         * doc/as.texinfo: Likewise.
3973         * doc/c-arm.texi: Likewise.
3974         * doc/c-hppa.texi: Likewise.
3975         * doc/c-i370.texi: Likewise.
3976         * doc/c-i386.texi: Likewise.
3977         * doc/c-m32r.texi: Likewise.
3978         * doc/c-m68k.texi: Likewise.
3979         * doc/c-mmix.texi: Likewise.
3980         * doc/c-msp430.texi: Likewise.
3981         * doc/c-nds32.texi: Likewise.
3982         * doc/c-ns32k.texi: Likewise.
3983         * doc/c-riscv.texi: Likewise.
3984         * doc/c-rx.texi: Likewise.
3985         * doc/c-s390.texi: Likewise.
3986         * doc/c-tic6x.texi: Likewise.
3987         * doc/c-tilegx.texi: Likewise.
3988         * doc/c-tilepro.texi: Likewise.
3989         * doc/c-v850.texi: Likewise.
3990         * doc/c-xgate.texi: Likewise.
3991         * doc/c-xtensa.texi: Likewise.
3992         * dwarf2dbg.c: Likewise.
3993         * ecoff.c: Likewise.
3994         * itbl-ops.c: Likewise.
3995         * listing.c: Likewise.
3996         * macro.c: Likewise.
3997         * po/gas.pot: Likewise.
3998         * read.c: Likewise.
3999         * struc-symbol.h: Likewise.
4000         * symbols.h: Likewise.
4001         * testsuite/gas/arc/relocs-errors.err: Likewise.
4002         * write.c: Likewise.
4003
4004 2017-01-23  Nick Clifton  <nickc@redhat.com>
4005
4006         * po/sv.po: Updated Swedish translation.
4007
4008 2017-01-20  Nick Clifton  <nickc@redhat.com>
4009
4010         * config/tc-i386.c (parse_operands): Check for operand overflow
4011         before setting the unspecified bit.
4012
4013 2017-01-18  Maciej W. Rozycki  <macro@imgtec.com>
4014
4015         PR gas/20649
4016         * config/tc-mips.c (pic_need_relax): Don't check for linkonce
4017         symbols, remove the `segtype' parameter.
4018         (mips_frob_file, md_estimate_size_before_relax): Adjust
4019         accordingly.
4020         (s_is_linkonce): Add an explanatory comment.
4021         * testsuite/gas/mips/comdat-reloc.d: New test.
4022         * testsuite/gas/mips/comdat-reloc.s: New test source.
4023         * testsuite/gas/mips/mips.exp: Run the new test.
4024
4025 2017-01-18  Szabolcs Nagy  <szabolcs.nagy@arm.com>
4026
4027         * testsuite/gas/arm/armv8_3-a-simd.s: Add vcmla tests.
4028         * testsuite/gas/arm/armv8_3-a-simd.d: Update.
4029
4030 2017-01-18  Bernhard Rosenkranzer  <bero@lindev.ch>
4031
4032         PR 21059
4033         * config/bfin-lex.l: Support processing with flex 2.6.3.
4034         * itbl-lex.l: Likewise.
4035
4036 2017-01-18  Nathan Sidwell  <nathan@acm.org>
4037
4038         * as.h (gas_assert): Use abort.
4039         (as_assert): Remove.
4040         (signal_init): Declare.
4041         * as.c (main): Call signal_init.
4042         * messages.c: #include <signal.h>
4043         (as_assert): Delete.
4044         (as_abort): Allow NULL FILE.
4045         (signal_crash): New.
4046         (signal_init): Register fatal signal handlers.
4047         * configure.ac: Check for strsignal.
4048         * config.in: Rebuilt.
4049         * configure: Rebuilt.
4050
4051 2017-01-17  Nick Clifton  <nickc@redhat.com>
4052
4053         * po/sv.po: Updated Swedish translation.
4054
4055 2017-01-12  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
4056
4057         * config/tc-i386.c (cpu_arch): Add .avx512_vpopcntdq.
4058         (cpu_noarch): Add noavx512_vpopcntdq.
4059         * doc/c-i386.texi: Document avx512_vpopcntdq, noavx512_vpopcntdq.
4060         * testsuite/gas/i386/i386.exp: Run AVX512_VPOPCNTDQ tests.
4061         * testsuite/gas/i386/avx512_vpopcntdqd-intel.d: New file.
4062         * testsuite/gas/i386/avx512_vpopcntdqd.d: Ditto.
4063         * testsuite/gas/i386/avx512_vpopcntdqd.s: Ditto.
4064         * testsuite/gas/i386/x86-64-avx512_vpopcntdqd-intel.d: Ditto.
4065         * testsuite/gas/i386/x86-64-avx512_vpopcntdqd.d: Ditto.
4066         * testsuite/gas/i386/x86-64-avx512_vpopcntdqd.s: Ditto.
4067
4068 2017-01-12  Nick Clifton  <nickc@redhat.com>
4069
4070         * read.c (temp_ilp): New function.  Installs a temporary input
4071         line pointer.
4072         (restore_ilp): New function.  Restores the original input line
4073         pointer.
4074         * read.h (temp_ilp): Prototype.
4075         (restore_ilp): Prototype.
4076         * stabs.c (dot_func_p): Use bfd_boolean type.
4077         (generate_asm_file): Use temp_ilp and restore_ilp.
4078         (stabs_generate_asm_lineno): Likewise.
4079         (stabs_generate_asm_endfunc): Likewise.
4080
4081 2017-01-11  Jeremy Soller  <jackpot51@gmail.com>
4082
4083         * configure.tgt: Add entry for i386-redox.
4084
4085 2017-01-10  Nick Clifton  <nickc@redhat.com>
4086
4087         * po/sv.po: Updated Swedish translation.
4088
4089 2017-01-10  Tristan Gingold  <gingold@adacore.com>
4090
4091         * testsuite/gas/all/sleb128-8.d: Adjust test.
4092         * testsuite/gas/all/gas.exp (test_cond): Likewise.
4093
4094 2017-01-10  Tristan Gingold  <gingold@adacore.com>
4095
4096         * read.c (emit_leb128_expr): Extended unsigned big number for
4097         sleb128.
4098         * testsuite/gas/all/gas.exp (test_cond): Add sleb128-8 test.
4099         * testsuite/gas/all/sleb128.d: New test.
4100         * testsuite/gas/all/sleb128.s: New test source.
4101
4102 2017-01-09  Andrew Waterman <andrew@sifive.com>
4103
4104         * config/tc-riscv.c (append_insn): Don't eagerly apply relocations
4105         against constants.
4106         (md_apply_fix): Mark relocations against constants as "done."
4107
4108 2017-01-09  Andrew Waterman <andrew@sifive.com>
4109
4110         * config/tc-riscv.c (append_insn): Don't eagerly apply relocations
4111         against constants.
4112         (md_apply_fix): Mark relocations against constants as "done."
4113
4114 2017-01-09  Palmer Dabbelt <palmer@dabbelt.com>
4115             Kito Cheng <kito.cheng@gmail.com>
4116
4117         * emulparams/elf32lriscv-defs.sh (INITIAL_READONLY_SECTIONS):
4118         Removed.
4119         (SDATA_START_SYMBOLS): Likewise.
4120
4121 2017-01-09  Nick Clifton  <nickc@redhat.com>
4122
4123         * po/sv.po: New Swedish translation.
4124         * configure.ac (ALL_LINGUAS): Add sv.
4125         * configure: Regenerate.
4126
4127 2017-01-09  Andrew Waterman <andrew@sifive.com>
4128
4129         * config/tc-riscv.c (relaxed_branch_length): Use the long
4130         sequence when the target is a weak symbol.
4131
4132 2017-01-04  Szabolcs Nagy  <szabolcs.nagy@arm.com>
4133
4134         * config/tc-aarch64.c (aarch64_features): Add rcpc.
4135         * doc/c-aarch64.texi (AArch64 Extensions): Document rcpc.
4136         * testsuite/gas/aarch64/ldst-exclusive-armv8_3.d: Rename to ...
4137         * testsuite/gas/aarch64/ldst-rcpc.d: This.
4138         * testsuite/gas/aarch64/ldst-exclusive-armv8_3.s: Rename to ...
4139         * testsuite/gas/aarch64/ldst-rcpc.s: This.
4140         * testsuite/gas/aarch64/ldst-rcpc-armv8_2.d: New test.
4141
4142 2017-01-04  Norm Jacobs  <norm.jacobs@oracle.com>
4143
4144         PR gas/20992
4145         * configure.tgt: Treat sparcv9 as sparc64.
4146
4147 2017-01-03  Kito Cheng  <kito.cheng@gmail.com>
4148
4149         * config/tc-riscv.c (riscv_set_arch): Whitelist the "q" ISA
4150         extension.
4151         (riscv_after_parse_args): Set FLOAT_ABI_QUAD when the Q ISA is
4152         enabled and no other ABI is specified.
4153
4154 2017-01-03  Dimitar Dimitrov  <dimitar@dinux.eu>
4155
4156         * config/tc-pru.c (md_number_to_chars): Fix parameter to be
4157         valueT, as declared in tc.h.
4158         (md_apply_fix): Fix to work on 32-bit hosts.
4159
4160 2017-01-02  Alan Modra  <amodra@gmail.com>
4161
4162         Update year range in copyright notice of all files.
4163
4164 For older changes see ChangeLog-2016
4165 \f
4166 Copyright (C) 2017 Free Software Foundation, Inc.
4167
4168 Copying and distribution of this file, with or without modification,
4169 are permitted in any medium without royalty provided the copyright
4170 notice and this notice are preserved.
4171
4172 Local Variables:
4173 mode: change-log
4174 left-margin: 8
4175 fill-column: 74
4176 version-control: never
4177 End: