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