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