Improve warning message for $0 constraint on MIPSR6 branches
[external/binutils.git] / gas / ChangeLog
1 2019-04-18  Matthew Fortune  <matthew.fortune@mips.com>
2
3         * config/tc-mips.c (match_non_zero_reg_operand): Update
4         warning message.
5         * testsuite/gas/mips/r6-branch-constraints.l: Likewise.
6
7 2019-04-18  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
8
9         * config/tc-msp430.c (msp430_make_init_symbols): Define
10         __crt0_run_{preinit,init,fini}_array symbols if
11         .{preinit,init,fini}_array sections exist.
12         * testsuite/gas/msp430/fini-array.d: New test.
13         * testsuite/gas/msp430/init-array.d: New test.
14         * testsuite/gas/msp430/preinit-array.d: New test.
15         * testsuite/gas/msp430/fini-array.s: New test source.
16         * testsuite/gas/msp430/init-array.s: New test source.
17         * testsuite/gas/msp430/preinit-array.s: New test source.
18         * testsuite/gas/msp430/msp430.exp: Add new tests to driver.
19
20 2019-04-17  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
21
22         * config/tc-msp430.c (msp430_make_init_symbols): Define __crt0_init_bss
23         symbol when .lower.bss or .either.bss sections exist.
24         Define __crt0_movedata when .lower.data or .either.data sections exist.
25         * testsuite/gas/msp430/either-data-bss-sym.d: New test.
26         * testsuite/gas/msp430/low-data-bss-sym.d: New test.
27         * testsuite/gas/msp430/either-data-bss-sym.s: New test source.
28         * testsuite/gas/msp430/low-data-bss-sym.s: New test source.
29         * testsuite/gas/msp430/msp430.exp: Run new tests.
30         Enable large code model when running -mdata-region={upper,either}
31         tests.
32
33 2019-04-17  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
34
35         * config/tc-msp430.c (options): New OPTION_UNKNOWN_INTR_NOPS,
36         OPTION_NO_UNKNOWN_INTR_NOPS and do_unknown_interrupt_nops.
37         (md_parse_option): Handle OPTION_UNKNOWN_INTR_NOPS and
38         OPTION_NO_UNKNOWN_INTR_NOPS by setting do_unknown_interrupt_nops
39         accordingly.
40         (md_show_usage): Likewise.
41         (md_shortopts): Add "mu" for OPTION_UNKNOWN_INTR_NOPS and
42         "mU" for OPTION_NO_UNKNOWN_INTR_NOPS.
43         (md_longopts): Likewise.
44         (warn_eint_nop): Update comment.
45         (warn_unsure_interrupt): Don't warn if prev_insn_is_nop or
46         prev_insn_is_dint or we are assembling for 430 ISA.
47         (msp430_operands): Only call warn_unsure_interrupt if
48         do_unknown_interrupt_nops == TRUE.
49         * testsuite/gas/msp430/nop-unknown-intr.s: New test source file.
50         * testsuite/gas/msp430/nop-unknown-intr-430.d: New test.
51         * testsuite/gas/msp430/nop-unknown-intr-430x.d: New test.
52         * testsuite/gas/msp430/nop-unknown-intr-430x-ignore.d: New test.
53         * testsuite/gas/msp430/nop-unknown-intr-430.l: Warning output for new
54         test.
55         * testsuite/gas/msp430/nop-unknown-intr-430x.l: Likewise.
56         * testsuite/gas/msp430/msp430.exp: Add new tests to driver.
57
58 2019-04-16  Alan Modra  <amodra@gmail.com>
59
60         * testsuite/gas/all/weakref1.d: xfail nds32.
61
62 2019-04-16  Alan Modra  <amodra@gmail.com>
63
64         * testsuite/gas/all/gas.exp: Remove ns32k xfails.
65         * testsuite/gas/all/weakref1u.d: Don't run for ns32k-*-*.
66
67 2019-04-16  Alan Modra  <amodra@gmail.com>
68
69         * write.h: Don't include bit_fix.h.
70         (struct fix): Rearrange some fields.  Delete fx_im_disp and
71         fx_bit_fixP.  Use bitfields for fx_size and fx_pcrel_adjust.
72         * write.c (fix_new_internal): Don't init fx_im_disp and fx_bit_fixP.
73         (fixup_segment): Don't exclude overflow checks on fx_bit_fixP.
74         (print_fixup): Don't print im_disp.
75         * config/tc-cris.c (md_apply_fix): Remove tests of fx_bit_fixP
76         and fx_im_disp.
77         * config/tc-dlx.c (md_apply_fix): Remove wrong debug code.  Set
78         fx_no_overflow when fx_bit_fixP.
79         * config/tc-dlx.h: Include bit_fix.h.
80         (TC_FIX_TYPE, tc_fix_data, TC_INIT_FIX_DATA): Define.
81         * config/tc-ns32k.c (fix_new_ns32k, fix_new_ns32k_exp): Set
82         fx_no_overflow when bit_fixP.
83         * config/tc-ns32k.h (TC_FIX_TYPE): Add fx_bit_fixP and fx_im_disp.
84         (fix_im_disp, fix_bit_fixP): Adjust to suit.
85         (TC_INIT_FIX_DATA, TC_FIX_DATA_PRINT): Likewise.
86
87 2019-04-16  Alan Modra  <amodra@gmail.com>
88
89         * write.h (struct fix <fx_where>): Make unsigned.
90         (fix_new, fix_at_start, fix_new_exp): Adjust prototypes.
91         * write.c (fix_new, fix_new_exp, fix_at_start): Make "where" and
92         "size" parameters unsigned long.
93         (fix_new_internal): Likewise.  Adjust error format string to suit.
94         * config/tc-mips.c (md_convert_frag): Remove cast of fx_where.
95         * config/tc-sparc.c (md_apply_fix): Likewise.
96         * config/tc-score.c (s3_convert_frag): Adjust for unsigned fx_where.
97         * config/tc-score7.c (s7_convert_frag): Likewise.
98
99 2019-04-16  Alan Modra  <amodra@gmail.com>
100
101         * frags.h (struct frag <fr_fix>): Use unsigned type.
102         * frags.c (frag_new): Assert that current size exceeds
103         old_frags_var_max_size.
104         * ehopt.c (get_cie_info): Adjust for unsigned fr_fix.
105         * listing.c (calc_hex): Likewise.
106         * write.c (cvt_frag_to_fill, write_relocs): Likewise.
107         * config/tc-arc.c (md_convert_frag): Likewise.
108         * config/tc-avr.c (avr_patch_gccisr_frag): Likewise.
109         * config/tc-mips.c (md_convert_frag): Likewise.
110         * config/tc-rl78.c (md_convert_frag): Likewise.
111         * config/tc-rx.c (md_convert_frag): Likewise.
112         * config/tc-sparc.c (md_apply_fix): Likewise.
113         * config/tc-xtensa.c (next_instrs_are_b_retw): Likewise.
114         (unrelaxed_frag_min_insn_count, unrelaxed_frag_has_b_j): Likewise.
115
116 2019-04-15  Thomas Preud'homme  <thomas.preudhomme@arm.com>
117
118         * config/tc-arm.c (parse_sys_vldr_vstr): New function.
119         (OP_VLDR): New enum operand_parse_code enumerator.
120         (parse_operands): Add logic for OP_VLDR.
121         (do_t_vldr_vstr_sysreg): New function.
122         (do_vldr_vstr): Likewise.
123         (insns): Guard VLDR and VSTR by arm_ext_v4t for Thumb mode.
124         (md_apply_fix): Add bound check for VLDR and VSTR co-processor offset.
125         Add masking logic for BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM relocation.
126         * testsuite/gas/arm/archv8m_1m-cmse-main-bad.s: Add examples of bad
127         uses of VLDR and VSTR.
128         * testsuite/gas/arm/archv8m_1m-cmse-main-bad.l: Add error messages for
129         above bad uses.
130         * testsuite/gas/arm/archv8m_1m-cmse-main.s: Add examples of VLDR and
131         VSTR valid uses.
132         * testsuite/gas/arm/archv8m_1m-cmse-main.d: Add disassembly for the
133         above examples.
134
135 2019-04-15  Thomas Preud'homme  <thomas.preudhomme@arm.com>
136
137         * config/tc-arm.c (arm_typed_reg_parse): Fix typo in comment.
138         (enum reg_list_els): New REGLIST_VFP_S_VPR and REGLIST_VFP_D_VPR
139         enumerators.
140         (parse_vfp_reg_list): Add new partial_match parameter.  Set
141         *partial_match to TRUE if at least one element in the register list has
142         matched.  Add support for REGLIST_VFP_S_VPR and REGLIST_VFP_D_VPR
143         register lists which expect VPR as last element in the list.
144         (s_arm_unwind_save_vfp_armv6): Adapt call to parse_vfp_reg_list to new
145         prototype.
146         (s_arm_unwind_save_vfp): Likewise.
147         (enum operand_parse_code): New OP_VRSDVLST enumerator.
148         (parse_operands): Adapt call to parse_vfp_reg_list to new prototype.
149         Handle new OP_VRSDVLST case.
150         (do_t_vscclrm): New function.
151         (insns): New entry for VSCCLRM instruction.
152         * testsuite/gas/arm/archv8m_1m-cmse-main-bad.s: Add invalid VSCCLRM
153         instructions.
154         * testsuite/gas/arm/archv8m_1m-cmse-main-bad.l: Add error expectations
155         for above instructions.
156         * testsuite/gas/arm/archv8m_1m-cmse-main.s: Add tests for VSCCLRM
157         instruction.
158         * testsuite/gas/arm/archv8m_1m-cmse-main.d: Add expected disassembly
159         for above instructions.
160
161 2019-04-15  Thomas Preud'homme  <thomas.preudhomme@arm.com>
162
163         * config/tc-arm.c (enum reg_list_els): Define earlier and add
164         REGLIST_RN and REGLIST_CLRM enumerators.
165         (parse_reg_list): Add etype parameter to distinguish between regular
166         core register list and CLRM register list.  Add logic to
167         recognize CLRM register list.
168         (parse_vfp_reg_list): Assert type is not for core register list.
169         (s_arm_unwind_save_core): Update call to parse_reg_list to new
170         prototype.
171         (enum operand_parse_code): Declare OP_CLRMLST enumerator.
172         (parse_operands): Update call to parse_reg_list to new prototype.  Add
173         logic for OP_CLRMLST.
174         (encode_thumb2_ldmstm): Rename into ...
175         (encode_thumb2_multi): This.  Add do_io parameter.  Add logic to
176         encode CLRM and guard LDM/STM only code by do_io.
177         (do_t_ldmstm): Adapt to use encode_thumb2_multi.
178         (do_t_push_pop): Likewise.
179         (do_t_clrm): New function.
180         (insns): Define CLRM.
181         * testsuite/gas/arm/archv8m_1m-cmse-main-bad.d: New file.
182         * testsuite/gas/arm/archv8m_1m-cmse-main-bad.l: Likewise.
183         * testsuite/gas/arm/archv8m_1m-cmse-main-bad.s: Likewise.
184         * testsuite/gas/arm/archv8m_1m-cmse-main.d: Likewise.
185         * testsuite/gas/arm/archv8m_1m-cmse-main.s: Likewise.
186
187 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
188             Andre Vieira  <andre.simoesdiasvieira@arm.com>
189
190         * config/tc-arm.c (operand_parse_code): Add OP_LR and OP_oLR
191         for the LR operand and optional LR operand.
192         (parse_operands): Add switch cases for OP_LR and OP_oLR for
193         both type checking and value checking.
194         (encode_thumb32_addr_mode): New entries for DLS, WLS and LE.
195         (v8_1_loop_reloc): New helper function for handling labels
196         for the low overhead loop instructions.
197         (do_t_loloop): New function to encode DLS, WLS and LE.
198         (insns): New entries for WLS, DLS and LE.
199         (md_pcrel_from_section): New switch case
200         for BFD_RELOC_ARM_THUMB_LOOP12.
201         (md_appdy_fix): Likewise.
202         (tc_gen_reloc): Likewise.
203         * testsuite/gas/arm/armv8_1-m-tloop.s: New.
204         * testsuite/gas/arm/armv8_1-m-tloop.d: New.
205         * testsuite/gas/arm/armv8_1-m-tloop-bad.s: New.
206         * testsuite/gas/arm/armv8_1-m-tloop-bad.d: New.
207         * testsuite/gas/arm/armv8_1-m-tloop-bad.l: New.
208
209 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
210             Andre Vieira  <andre.simoesdiasvieira@arm.com>
211
212         * config/tc-arm.c (T16_32_TAB): New entriy for bfcsel.
213         (do_t_v8_1_branch): New switch case for bfcsel.
214         (toU): Define.
215         (insns): New instruction for bfcsel.
216         (md_pcrel_from_section): New switch case
217         for BFD_RELOC_THUMB_PCREL_BFCSEL.
218         (md_appdy_fix): Likewise
219         (tc_gen_reloc): Likewise.
220         * testsuite/gas/arm/armv8_1-m-bfcsel.d: New.
221         * testsuite/gas/arm/armv8_1-m-bfcsel.s: New.
222
223 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
224
225         * config/tc-arm.c (md_pcrel_from_section): New switch case for
226         BFD_RELOC_ARM_THUMB_BF13.
227         (md_appdy_fix): Likewise.
228         (tc_gen_reloc): Likewise.
229
230 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
231             Andre Vieira  <andre.simoesdiasvieira@arm.com>
232
233         * config/tc-arm.c (T16_32_TAB): New entrie for bfl.
234         (do_t_v8_1_branch): New switch case for bfl.
235         (insns): New instruction for bfl.
236         * testsuite/gas/arm/armv8_1-m-bfl.d: New.
237         * testsuite/gas/arm/armv8_1-m-bfl.s: New.
238         * testsuite/gas/arm/armv8_1-m-bfl-bad.s: New.
239         * testsuite/gas/arm/armv8_1-m-bfl-bad.d: New.
240         * testsuite/gas/arm/armv8_1-m-bfl-bad.l: New.
241         * testsuite/gas/arm/armv8_1-m-bfl-rel.d: New.
242         * testsuite/gas/arm/armv8_1-m-bfl-rel.s: New.
243
244 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
245
246         * config/tc-arm.c (md_pcrel_from_section): New switch case for
247         BFD_RELOC_ARM_THUMB_BF19.
248         (md_appdy_fix): Likewise.
249         (tc_gen_reloc): Likewise.
250
251 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
252
253         * config/tc-arm.c (T16_32_TAB): New entries for bfx and bflx.
254         (do_t_v8_1_branch): New switch cases for bfx and bflx.
255         (insns): New instruction for bfx and bflx.
256         * testsuite/gas/arm/armv8_1-m-bf-exchange.d: New.
257         * testsuite/gas/arm/armv8_1-m-bf-exchange.s: New.
258         * testsuite/gas/arm/armv8_1-m-bf-exchange-bad.s: New
259         * testsuite/gas/arm/armv8_1-m-bf-exchange-bad.l: New
260         * testsuite/gas/arm/armv8_1-m-bf-exchange-bad.d: New
261
262 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
263             Andre Vieira  <andre.simoesdiasvieira@arm.com>
264
265         * config/tc-arm.c (T16_32_TAB): New entries for bf.
266         (do_t_branch_future): New.
267         (insns): New instruction for bf.
268         * testsuite/gas/arm/armv8_1-m-bf.d: New.
269         * testsuite/gas/arm/armv8_1-m-bf.s: New.
270         * testsuite/gas/arm/armv8_1-m-bf-bad.s: New.
271         * testsuite/gas/arm/armv8_1-m-bf-bad.l: New.
272         * testsuite/gas/arm/armv8_1-m-bf-bad.d: New.
273         * testsuite/gas/arm/armv8_1-m-bf-rel.d: New.
274         * testsuite/gas/arm/armv8_1-m-bf-rel.s: New.
275
276 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
277
278         * config/tc-arm.c (md_pcrel_from_section): New switch case for
279         BFD_RELOC_ARM_THUMB_BF17.
280         (md_appdy_fix): Likewise.
281         (tc_gen_reloc): Likewise.
282
283 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
284
285         * config/tc-arm.c (ARM_IT_MAX_RELOCS): New macro.
286         (arm_it): Member reloc renamed relocs and updated to an array.
287         Rest: Replace all occurrences of reloc to relocs[0].
288
289 2019-04-15  Sudakshina Das  <sudi.das@arm.com>
290
291         * config/tc-arm.c (md_pcrel_from_section): New switch case
292         for BFD_RELOC_THUMB_PCREL_BRANCH5.
293         (v8_1_branch_value_check): New function to check branch
294         offsets.
295         (md_appdy_fix): New switch case for
296         BFD_RELOC_THUMB_PCREL_BRANCH5.
297         (tc_gen_reloc): Likewise.
298
299 2019-04-15  Andre Vieira  <andre.simoesdiasvieira@arm.com>
300
301         * config/tc-arm.c (do_neon_movhf): Remove fp-armv8 check.
302         (armv8_1m_main_ext_table): New extension table.
303         (arm_archs): Use the new extension table.
304         * doc/c-arm.texi: Add missing arch and document new extensions.
305         * testsuite/gas/arm/armv8.1-m.main-fp.d: New.
306         * testsuite/gas/arm/armv8.1-m.main-fp-dp.d: New.
307         * testsuite/gas/arm/armv8.1-m.main-hp.d: New.
308
309 2019-04-15  Thomas Preud'homme  <thomas.preudhomme@arm.com>
310
311         * config/tc-arm.c (cpu_arch_ver): Add entry for Armv8.1-M Mainline
312         Tag_CPU_arch build attribute value.  Reindent.
313         (get_aeabi_cpu_arch_from_fset): Update assert.
314         (aeabi_set_public_attributes): Update assert for Tag_DIV_use logic.
315         * testsuite/gas/arm/attr-march-armv8_1-m.main.d: New test.
316
317 2019-04-09  Matthew Fortune  <matthew.fortune@mips.com>
318
319         * config/tc-mips.c (mips_cpu_info_table): Add i6500.  Update
320         default ASEs for i6400.
321         * doc/c-mips.texi (-march): Document i6500.
322         * testsuite/gas/mips/elf_mach_i6400.d: New test.
323         * testsuite/gas/mips/elf_mach_i6500.d: New test.
324         * testsuite/gas/mips/mips.exp: Run the new tests.
325
326 2019-04-09  Matthew Fortune  <matthew.fortune@mips.com>
327
328         * config/tc-mips.c (mips_set_options) <init_ase>: New field.
329         (file_mips_opts, mips_opts) <init_ase>: Initialize new field.
330         (file_mips_check_options): Propagate initial ASE settings.
331         (mips_after_parse_args, parse_code_option): Track the initial
332         ASE settings for a CPU.
333         (s_mipsset): Restore the initial ASE settings when reverting
334         to the default arch.
335         * testsuite/gas/mips/elf_mach_p6600.d: New test.
336         * testsuite/gas/mips/mips.exp: Run the new test.
337
338 2019-04-12  John Darrington <john@darrington.wattle.id.au>
339         
340         config/tc-s12z.h: Remove definition of macro TC_M68K
341
342 2019-04-01  John Darrington <john@darrington.wattle.id.au>
343         
344         config/tc-s12z.c: Use bfd_boolean where appropriate.
345
346 2019-04-11  Max Filippov  <jcmvbkbc@gmail.com>
347
348         * testsuite/gas/xtensa/loop-relax-2.d: New test definition.
349         * testsuite/gas/xtensa/loop-relax.d: New test definition.
350         * testsuite/gas/xtensa/loop-relax.s: New test source.
351         * testsuite/gas/xtensa/text-section-literals-1a.d: New test
352         definition.
353         * testsuite/gas/xtensa/text-section-literals-2.d: New test
354         definition.
355         * testsuite/gas/xtensa/text-section-literals-2.s: New test
356         source.
357         * testsuite/gas/xtensa/text-section-literals-2a.d: New test
358         definition.
359         * testsuite/gas/xtensa/text-section-literals-3.d: New test
360         definition.
361         * testsuite/gas/xtensa/text-section-literals-3.s: New test
362         source.
363         * testsuite/gas/xtensa/text-section-literals-4.d: New test
364         definition.
365         * testsuite/gas/xtensa/text-section-literals-4.s: New test
366         source.
367         * testsuite/gas/xtensa/text-section-literals-4a.d: New test
368         definition.
369
370 2019-04-11  Max Filippov  <jcmvbkbc@gmail.com>
371
372         * testsuite/gas/xtensa/all.exp: Remove all expect-based
373         tests and all explicit run_dump_test / run_list_test
374         invocations. Add run_dump_tests for all .d files in the
375         test subdirectory.
376         * testsuite/gas/xtensa/entry_align.d: New test definition.
377         * testsuite/gas/xtensa/entry_align.l: New test output.
378         * testsuite/gas/xtensa/entry_misalign.d: New test definition.
379         * testsuite/gas/xtensa/entry_misalign2.d: New test definition.
380         * testsuite/gas/xtensa/j_too_far.d: New test definition.
381         * testsuite/gas/xtensa/j_too_far.l: New test output.
382         * testsuite/gas/xtensa/loop_align.d: New test definition.
383         * testsuite/gas/xtensa/loop_misalign.d: New test definition.
384         * testsuite/gas/xtensa/trampoline-2.d: New test definition.
385         * testsuite/gas/xtensa/trampoline-2.l: Remove empty output.
386         * testsuite/gas/xtensa/xtensa-err.exp: Use positive logic.
387
388 2019-04-11  Max Filippov  <jcmvbkbc@gmail.com>
389
390         * config/tc-xtensa.c (xtensa_literal_pseudo): Drop code that has
391         no effect.
392         (get_literal_pool_location): Only search for the literal pool
393         when auto litpools is used, otherwise take one recorded in the
394         tc_segment_info_data.
395         (xtensa_assign_litpool_addresses): New function.
396         (xtensa_move_literals): Don't duplicate 'literal pool location
397         required...' error message. Call xtensa_assign_litpool_addresses.
398
399 2019-04-11  Max Filippov  <jcmvbkbc@gmail.com>
400
401         * config/tc-xtensa.c (xtensa_is_init_fini): Add declaration.
402         (xtensa_mark_literal_pool_location): Don't add fill frag to literal
403         section that records literal pool location.
404         (md_begin): Call xtensa_mark_literal_pool_location when text
405         section literals or auto litpools are used.
406         (xtensa_elf_section_change_hook): Call
407         xtensa_mark_literal_pool_location when text section literals or
408         auto litpools are used, there's no literal pool location defined
409         for the current section and it's not .init or .fini.
410         * testsuite/gas/xtensa/auto-litpools-first1.d: Fix up addresses.
411         * testsuite/gas/xtensa/auto-litpools-first2.d: Likewise.
412         * testsuite/gas/xtensa/auto-litpools.d: Likewise.
413
414 2019-04-11  Sudakshina Das  <sudi.das@arm.com>
415
416         * config/tc-aarch64.c (process_omitted_operand): Add case for
417         AARCH64_OPND_Rt_SP.
418         (parse_operands): Likewise.
419         * testsuite/gas/aarch64/armv8_5-a-memtag.d: Update tests.
420         * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
421         * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
422         * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
423
424 2019-04-11  Sudakshina Das  <sudi.das@arm.com>
425
426         * testsuite/gas/aarch64/armv8_5-a-memtag.d: New tests for ldgm and stgm.
427         * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
428         * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
429         * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
430
431 2019-04-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
432
433         * config/tc-i386.c (need_plt32_p) [TE_SOLARIS]: Return FALSE.
434         * testsuite/gas/i386/solaris/solaris.exp: New driver.
435         * testsuite/gas/i386/solaris/reloc64.d,
436         testsuite/gas/i386/solaris/x86-64-jump.d,
437         testsuite/gas/i386/solaris/x86-64-mpx-branch-1.d,
438         testsuite/gas/i386/solaris/x86-64-mpx-branch-2.d,
439         testsuite/gas/i386/solaris/x86-64-nop-3.d,
440         testsuite/gas/i386/solaris/x86-64-nop-4.d,
441         testsuite/gas/i386/solaris/x86-64-nop-5.d,
442         testsuite/gas/i386/solaris/x86-64-relax-2.d,
443         testsuite/gas/i386/solaris/x86-64-relax-3.d: New tests.
444         * testsuite/gas/i386/reloc64.d,
445         testsuite/gas/i386/x86-64-jump.d,
446         testsuite/gas/i386/x86-64-mpx-branch-1.d,
447         testsuite/gas/i386/x86-64-mpx-branch-2.d,
448         testsuite/gas/i386/x86-64-nop-3.d,
449         testsuite/gas/i386/x86-64-nop-4.d,
450         testsuite/gas/i386/x86-64-nop-5.d,
451         testsuite/gas/i386/x86-64-relax-2.d,
452         testsuite/gas/i386/x86-64-relax-3.d: Skip on *-*-solaris*.
453
454 2019-04-10  Alan Modra  <amodra@gmail.com>
455
456         * config/te-cloudabi.h: New file.
457         * config/tc-aarch64.c (aarch64_after_parse_args): Use TE_CLOUDABI
458         rather than TARGET_OS to select cloudabi.
459         * config/tc-i386.h (ELF_TARGET_FORMAT64): Define for TE_CLOUDABI.
460         * configure.tgt (*-*-cloudabi*): Set em=cloudabi.
461
462 2019-04-09  Robert Suchanek  <robert.suchanek@mips.com>
463
464         * testsuite/gas/mips/mips.exp: Run hwr-names test.
465         * testsuite/gas/mips/hwr-names.s: Add test cases for RDHWR with
466         the SEL field.
467         * testsuite/gas/mips/mipsr6@hwr-names.d: New file.
468
469 2019-04-08  H.J. Lu  <hongjiu.lu@intel.com>
470
471         * config/tc-i386.c (output_insn): Support
472         GNU_PROPERTY_X86_ISA_1_AVX512_BF16.
473         * testsuite/gas/i386/property-2.s: Add AVX512_BF16 test.
474         * testsuite/gas/i386/property-2.d: Updated.
475         * testsuite/gas/i386/x86-64-property-2.d: Likewise.
476
477 2019-04-08  H.J. Lu  <hongjiu.lu@intel.com>
478
479         * configure.tgt: Remove i386-*-kaos* and i386-*-chaos targets.
480         * testsuite/gas/i386/i386.exp: Remove *-*-caos* and "*-*-kaos*
481         check.
482
483 2019-04-05  H.J. Lu  <hongjiu.lu@intel.com>
484
485         * testsuite/gas/i386/i386.exp: Run -mx86-used-note=yes tests.
486         * testsuite/gas/i386/property-2.d: New file.
487         * testsuite/gas/i386/property-2.s: Likewise.
488         * testsuite/gas/i386/x86-64-property-2.d: Likewise.
489
490 2019-04-05  Xuepeng Guo  <xuepeng.guo@intel.com>
491
492         * config/tc-i386.c (cpu_arch): Add .avx512_bf16.
493         (cpu_noarch): Add noavx512_bf16.
494         * doc/c-i386.texi: Document avx512_bf16.
495         * testsuite/gas/i386/avx512_bf16.d: New file.
496         * testsuite/gas/i386/avx512_bf16.s: Likewise.
497         * testsuite/gas/i386/avx512_bf16_vl-inval.l: Likewise.
498         * testsuite/gas/i386/avx512_bf16_vl-inval.s: Likewise.
499         * testsuite/gas/i386/avx512_bf16_vl.d: Likewise.
500         * testsuite/gas/i386/avx512_bf16_vl.s: Likewise.
501         * testsuite/gas/i386/x86-64-avx512_bf16.d: Likewise.
502         * testsuite/gas/i386/x86-64-avx512_bf16.s: Likewise.
503         * testsuite/gas/i386/x86-64-avx512_bf16_vl-inval.l: Likesie.
504         * testsuite/gas/i386/x86-64-avx512_bf16_vl-inval.s: Likewise.
505         * testsuite/gas/i386/x86-64-avx512_bf16_vl.d: Likewise.
506         * testsuite/gas/i386/x86-64-avx512_bf16_vl.s: Likewise.
507         * testsuite/gas/i386/i386.exp: Add BF16 related tests.
508
509 2019-04-05  Alan Modra  <amodra@gmail.com>
510
511         * testsuite/gas/ppc/bc.s,
512         * testsuite/gas/ppc/bcat.d,
513         * testsuite/gas/ppc/bcaterr.d,
514         * testsuite/gas/ppc/bcaterr.l,
515         * testsuite/gas/ppc/bcy.d,
516         * testsuite/gas/ppc/bcyerr.d,
517         * testsuite/gas/ppc/bcyerr.l: New tests.
518         * testsuite/gas/ppc/ppc.exp: Run them.
519
520 2019-04-05  Alan Modra  <amodra@gmail.com>
521
522         * testsuite/gas/ppc/476.d: Remove trailing spaces.
523         * testsuite/gas/ppc/a2.d: Likewise.
524         * testsuite/gas/ppc/booke.d: Likewise.
525         * testsuite/gas/ppc/booke_xcoff.d: Likewise.
526         * testsuite/gas/ppc/e500.d: Likewise.
527         * testsuite/gas/ppc/e500mc.d: Likewise.
528         * testsuite/gas/ppc/e6500.d: Likewise.
529         * testsuite/gas/ppc/htm.d: Likewise.
530         * testsuite/gas/ppc/power6.d: Likewise.
531         * testsuite/gas/ppc/power8.d: Likewise.
532         * testsuite/gas/ppc/power9.d: Likewise.
533         * testsuite/gas/ppc/vle.d: Likewise.
534
535 2019-04-04  Peter Bergner  <bergner@linux.ibm.com>
536
537         PR gas/24349
538         * testsuite/gas/ppc/power8.s: (bdnztar, bdnztarl, bdztar, bdztarl,
539         btar, btarl, bdnztar-, bdnztarl-, bdnztar+, bdnztarl+, bdztar-,
540         bdztarl-, bdztar+, bdztarl+, bgetar, bnltar, bgetarl, bnltarl,
541         bletar, bngtar, bletarl, bngtarl, bnetar, bnetarl, bnstar, bnutar,
542         bnstarl, bnutarl, bgetar-, bnltar-, bgetarl-, bnltarl-, bletar-,
543         bngtar-, bletarl-, bngtarl-, bnetar-, bnetarl-, bnstar-, bnutar-,
544         bnstarl-, bnutarl-, bgetar+, bnltar+, bgetarl+, bnltarl+, bletar+,
545         bngtar+, bletarl+, bngtarl+, bnetar+, bnetarl+, bnstar+, bnutar+,
546         bnstarl+, bnutarl+, blttar, blttarl, bgttar, bgttarl, beqtar,
547         beqtarl, bsotar, buntar, bsotarl, buntarl, blttar-, blttarl-,
548         bgttar-, bgttarl-, beqtar-, beqtarl-, bsotar-, buntar-, bsotarl-,
549         buntarl-, blttar+, blttarl+, bgttar+, bgttarl+, beqtar+, beqtarl+,
550         bsotar+, buntar+, bsotarl+, buntarl+, bdnzftar, bdnzftarl, bdzftar,
551         bdzftarl, bftar, bftarl, bftar-, bftarl-, bftar+, bftarl+, bdnzttar,
552         bdnzttarl, bdzttar, bdzttarl, bttar, bttarl, bttar-, bttarl-, bttar+,
553         bttarl+): Add tests of extended mnemonics.
554         * testsuite/gas/ppc/power8.d: Likewise.  Update previous bctar tests
555         to expect new extended mnemonics.
556         * testsuite/gas/ppc/a2.s: <bc, bc-, bc+, bcl, bcl-, bcl+>: Update test
557         to not use illegal BO value.  Use a more convenient BI value.
558         * testsuite/gas/ppc/a2.d: Update tests for new expect output.
559
560 2019-04-03  Max Filippov  <jcmvbkbc@gmail.com>
561
562         * config/tc-xtensa.c (convert_frag_immed): Drop
563         convert_frag_immed_finish_loop invocation.
564         (convert_frag_immed_finish_loop): Drop declaration and
565         definition.
566         * config/xtensa-relax.c (widen_spec_list): Replace loop
567         widening that uses addi/addmi with widening that uses l32r
568         and const16.
569
570 2019-04-01  Andre Vieira  <andre.simoesdiasvieira@arm.com>
571
572         * config/tc-arm.c (arm_ext_table): New struct type.
573         (arm_arch_option_table): Add new 'arm_ext_table' field.
574         (ARM_EXT,ARM_ADD,ARM_REMOVE, ALL_FP): New macros.
575         (armv5te_ext_table, armv7ve_ext_table, armv7a_ext_table,
576         armv7r_ext_table, armv7em_ext_table, armv8a_ext_table,
577         armv81a_ext_table, armv82a_ext_table, armv84a_ext_table,
578         armv85a_ext_table, armv8m_main_ext_table,
579         armv8r_ext_table): New architecture extension tables.
580         (ARM_ARCH_OPT): Add new default field.
581         (ARM_ARCH_OPT2): New macro.
582         (arm_archs): Extend some architectures with the new architecture
583         extension tables mentioned above.
584         (arm_extensions): Add DEPRECATED comment with instructions to
585         use new table.
586         (arm_parse_extension): Change to use new extension tables.
587         (arm_parse_cpu): Don't change existing behavior.
588         (arm_parse_arch): Change to use new extension tables.
589         * doc/c-arm.texi: Document new architecture extensions.
590         * testsuite/gas/arm/attr-mfpu-neon-fp16.d: Change test to use new
591         extension option rather than -mfpu and change expected behaviour to
592         sane outputs.
593         * testsuite/gas/arm/armv8-2-fp16-scalar-bad-ext.d: New.
594         * testsuite/gas/arm/armv8-2-fp16-scalar-ext.d: New.
595         * testsuite/gas/arm/armv8-2-fp16-scalar-thumb-ext.d: New.
596         * testsuite/gas/arm/armv8-2-fp16-simd-ext.d: New.
597         * testsuite/gas/arm/armv8-2-fp16-simd-thumb-ext.d: New.
598         * testsuite/gas/arm/armv8-2-fp16-simd-warning-ext.d: New.
599         * testsuite/gas/arm/armv8-2-fp16-simd-warning-thumb-ext.d: New.
600         * testsuite/gas/arm/armv8_2+rdma-ext.d: New.
601         * testsuite/gas/arm/armv8_2-a-fp16-thumb2-ext.d: New.
602         * testsuite/gas/arm/armv8_2-a-fp16_ext.d: New.
603         * testsuite/gas/arm/armv8_3-a-fp-bad-ext.d: New.
604         * testsuite/gas/arm/armv8_3-a-fp-ext.d: New.
605         * testsuite/gas/arm/armv8_3-a-fp16-ext.d: New.
606         * testsuite/gas/arm/armv8_3-a-simd-bad-ext.d: New.
607         * testsuite/gas/arm/armv8_4-a-fp16-ext.d: New.
608         * testsuite/gas/arm/armv8m.main+fp.d: New.
609         * testsuite/gas/arm/armv8m.main+fp.dp.d: New.
610         * testsuite/gas/arm/attr-ext-fpv5-d16.d: New.
611         * testsuite/gas/arm/attr-ext-fpv5.d: New.
612         * testsuite/gas/arm/attr-ext-idiv.d: New.
613         * testsuite/gas/arm/attr-ext-mp.d: New.
614         * testsuite/gas/arm/attr-ext-neon-fp16.d: New.
615         * testsuite/gas/arm/attr-ext-neon-vfpv3.d: New.
616         * testsuite/gas/arm/attr-ext-neon-vfpv4.d: New.
617         * testsuite/gas/arm/attr-ext-sec.d: New.
618         * testsuite/gas/arm/attr-ext-vfpv3-d16-fp16.d: New.
619         * testsuite/gas/arm/attr-ext-vfpv3-d16.d: New.
620         * testsuite/gas/arm/attr-ext-vfpv3-fp16.d: New.
621         * testsuite/gas/arm/attr-ext-vfpv3.d: New.
622         * testsuite/gas/arm/attr-ext-vfpv3xd-fp.d: New.
623         * testsuite/gas/arm/attr-ext-vfpv3xd.d: New.
624         * testsuite/gas/arm/attr-ext-vfpv4-d16.d: New.
625         * testsuite/gas/arm/attr-ext-vfpv4-sp-d16.d: New.
626         * testsuite/gas/arm/attr-ext-vfpv4.d: New.
627         * testsuite/gas/arm/dotprod-mandatory-ext.d: New.
628         * testsuite/gas/arm/fpv5-d16.s: New.
629         * testsuite/gas/arm/fpv5-sp-d16.s: New.
630
631 2019-03-28  Alan Modra  <amodra@gmail.com>
632
633         PR 24390
634         * testsuite/gas/ppc/476.d: Update mtfsb*.
635         * testsuite/gas/ppc/a2.d: Likewise.
636
637 2019-03-21  Alan Modra  <amodra@gmail.com>
638
639         * emul.h (struct emulation): Delete strip_underscore.
640         * emul-target.h (emul_strip_underscore): Don't define.
641         (emul_struct_name): Update initialization.
642
643 2019-03-21  Alan Modra  <amodra@gmail.com>
644
645         * config/tc-d10v.c (md_apply_fix): Apply BFD_RELOC_8.
646         * config/tc-pdp11.c (md_apply_fix): Likewise.
647         * config/tc-d30v.c (md_apply_fix): Don't emit errors for BFD_RELOC_8,
648         BFD_RELOC_16, and BFD_RELOC_64.
649         * testsuite/gas/all/gas.exp: Move target exclusions for forward
650         test, but not cr16, to..
651         * testsuite/gas/all/forward.d: ..here, with explanation.  Remove
652         d10v, d30v, and pdp11 xfails.
653
654 2019-03-19  H.J. Lu  <hongjiu.lu@intel.com>
655
656         * config/tc-i386.c (optimize_encoding): Don't check AVX for
657         EVEX vector load/store optimization.  Check both operands for
658         ZMM register.  Update EVEX vector load/store opcode check.
659         Choose EVEX Disp8 over VEX Disp32.
660         * testsuite/gas/i386/optimize-1.d: Updated.
661         * testsuite/gas/i386/optimize-1a.d: Likewise.
662         * testsuite/gas/i386/optimize-2.d: Likewise.
663         * testsuite/gas/i386/optimize-4.d: Likewise.
664         * testsuite/gas/i386/optimize-5.d: Likewise.
665         * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
666         * testsuite/gas/i386/x86-64-optimize-2a.d: Likewise.
667         * testsuite/gas/i386/x86-64-optimize-2b.d: Likewise.
668         * testsuite/gas/i386/x86-64-optimize-3.d: Likewise.
669         * testsuite/gas/i386/x86-64-optimize-5.d: Likewise.
670         * testsuite/gas/i386/x86-64-optimize-6.d: Likewise.
671         * testsuite/gas/i386/optimize-1.s: Add ZMM register load
672         test.
673         * testsuite/gas/i386/x86-64-optimize-2.s: Likewise.
674
675 2019-03-19  H.J. Lu  <hongjiu.lu@intel.com>
676
677         PR gas/24352
678         * config/tc-i386.c (optimize_encoding): Check only
679         cpu_arch_flags.bitfield.cpuavx512vl.
680         * testsuite/gas/i386/i386.exp: Run x86-64-optimize-2b.
681         * testsuite/gas/i386/x86-64-optimize-2.d: Revert the last
682         change.
683         * testsuite/gas/i386/x86-64-optimize-2b.d: New file.
684         * testsuite/gas/i386/x86-64-optimize-2b.s: Likewise.
685
686 2019-03-19  H.J. Lu  <hongjiu.lu@intel.com>
687
688         PR gas/24359
689         * testsuite/gas/i386/i386.exp: Change optimize-6a, optimize-7,
690         x86-64-optimize-7a and x86-64-optimize-8 tests to run_list_test.
691         Remove optimize-6c and x86-64-optimize-7c tests.
692         * testsuite/gas/i386/noavx-3.l: Updated.
693         * testsuite/gas/i386/noavx-4.d: Likewise.
694         * testsuite/gas/i386/noavx-5.d: Likewise.
695         * testsuite/gas/i386/noavx-3.s: Add AVX512F tests.
696         * testsuite/gas/i386/noavx-4.s: Remove AVX512F tests.
697         * testsuite/gas/i386/nosse-5.s: Likewise.
698         * testsuite/gas/i386/optimize-6a.d: Removed.
699         * testsuite/gas/i386/optimize-6c.d: Likewise.
700         * testsuite/gas/i386/optimize-7.d: Likewise.
701         * testsuite/gas/i386/x86-64-optimize-7a.d: Likewise.
702         * testsuite/gas/i386/x86-64-optimize-7c.d: Likewise.
703         * testsuite/gas/i386/x86-64-optimize-8.d: Likewise.
704         * testsuite/gas/i386/optimize-6a.l: New file.
705         * testsuite/gas/i386/optimize-6a.s: Likewise.
706         * testsuite/gas/i386/optimize-7.l: Likewise.
707         * testsuite/gas/i386/x86-64-optimize-7a.l: Likewise.
708         * testsuite/gas/i386/x86-64-optimize-7a.s: Likewise.
709         * testsuite/gas/i386/x86-64-optimize-8.l: Likewise.
710
711 2019-03-18  Alan Modra  <amodra@gmail.com>
712
713         * config/m68k-parse.y (yylex): Use temp_ilp and restore_ilp.
714         * as.c (macro_expr): Likewise.
715         * macro.c (buffer_and_nest): Likewise.
716         * read.c (temp_ilp): Remove FIXME.
717
718 2019-03-18  H.J. Lu  <hongjiu.lu@intel.com>
719
720         * testsuite/gas/i386/att-regs.d: Pass -O0 to assembler.
721         * testsuite/gas/i386/avx512bw-intel.d: Likewise.
722         * testsuite/gas/i386/avx512bw.d: Likewise.
723         * testsuite/gas/i386/avx512f-intel.d: Likewise.
724         * testsuite/gas/i386/avx512f.d: Likewise.
725         * testsuite/gas/i386/disp32.d: Likewise.
726         * testsuite/gas/i386/intel-regs.d: Likewise.
727         * testsuite/gas/i386/pseudos.d: Likewise.
728         * testsuite/gas/i386/x86-64-disp32.d: Likewise.
729         * testsuite/gas/i386/x86-64-pseudos.d: Likewise.
730
731 2019-03-18  H.J. Lu  <hongjiu.lu@intel.com>
732
733         PR gas/24348
734         * config/tc-i386.c (optimize_encoding): Encode 128-bit and
735         256-bit EVEX vector register load/store instructions as VEX
736         vector register load/store instructions for -O1.
737         * doc/c-i386.texi: Update -O1 documentation.
738         * testsuite/gas/i386/i386.exp: Run PR gas/24348 tests.
739         * testsuite/gas/i386/optimize-1.s: Add tests for EVEX vector
740         load/store instructions.
741         * testsuite/gas/i386/optimize-2.s: Likewise.
742         * testsuite/gas/i386/optimize-3.s: Likewise.
743         * testsuite/gas/i386/optimize-5.s: Likewise.
744         * testsuite/gas/i386/x86-64-optimize-2.s: Likewise.
745         * testsuite/gas/i386/x86-64-optimize-3.s: Likewise.
746         * testsuite/gas/i386/x86-64-optimize-4.s: Likewise.
747         * testsuite/gas/i386/x86-64-optimize-5.s: Likewise.
748         * testsuite/gas/i386/x86-64-optimize-6.s: Likewise.
749         * testsuite/gas/i386/optimize-1.d: Updated.
750         * testsuite/gas/i386/optimize-2.d: Likewise.
751         * testsuite/gas/i386/optimize-3.d: Likewise.
752         * testsuite/gas/i386/optimize-4.d: Likewise.
753         * testsuite/gas/i386/optimize-5.d: Likewise.
754         * testsuite/gas/i386/x86-64-optimize-2.d: Likewise.
755         * testsuite/gas/i386/x86-64-optimize-3.d: Likewise.
756         * testsuite/gas/i386/x86-64-optimize-4.d: Likewise.
757         * testsuite/gas/i386/x86-64-optimize-5.d: Likewise.
758         * testsuite/gas/i386/x86-64-optimize-6.d: Likewise.
759         * testsuite/gas/i386/optimize-7.d: New file.
760         * testsuite/gas/i386/optimize-7.s: Likewise.
761         * testsuite/gas/i386/x86-64-optimize-8.d: Likewise.
762         * testsuite/gas/i386/x86-64-optimize-8.s: Likewise.
763
764 2019-03-18  H.J. Lu  <hongjiu.lu@intel.com>
765
766         * config/tc-i386.c (optimize_encoding): Encode 256-bit/512-bit
767         VEX/EVEX vector register clearing instructions with 128-bit VEX
768         vector register clearing instructions at -O1.
769         * doc/c-i386.texi: Update -O1 and -O2 documentation.
770         * testsuite/gas/i386/i386.exp: Run optimize-1a and
771         x86-64-optimize-2a.
772         * testsuite/gas/i386/optimize-1a.d: New file.
773         * testsuite/gas/i386/x86-64-optimize-2a.d: Likewise.
774
775 2019-03-17  H.J. Lu  <hongjiu.lu@intel.com>
776
777         PR gas/24353
778         * config/tc-i386.c: Include <limits.h> if it exists and try
779         including <sys/param.h> if we have it.
780         (INT_MAX): Define if not defined.
781         (md_parse_option): Set optimize to INT_MAX for -Os.
782         * testsuite/gas/i386/optimize-2.s: Add a test.
783         * testsuite/gas/i386/x86-64-optimize-3.s: Likewise.
784         * testsuite/gas/i386/optimize-2.d: Updated.
785         * testsuite/gas/i386/x86-64-optimize-3.d: Likewise.
786
787 2019-03-17  H.J. Lu  <hongjiu.lu@intel.com>
788
789         PR gas/24352
790         * config/tc-i386.c (optimize_encoding): Encode 512-bit EVEX
791         with 128-bit VEX encoding only when AVX is enabled and with
792         128-bit EVEX encoding only when AVX512VL is enabled.
793         * testsuite/gas/i386/i386.exp: Run PR gas/24352 tests.
794         * testsuite/gas/i386/optimize-6.s: New file.
795         * testsuite/gas/i386/optimize-6a.d: Likewise.
796         * testsuite/gas/i386/optimize-6b.d: Likewise.
797         * testsuite/gas/i386/optimize-6c.d: Likewise.
798         * testsuite/gas/i386/x86-64-optimize-7.s: Likewise.
799         * testsuite/gas/i386/x86-64-optimize-7a.d: Likewise.
800         * testsuite/gas/i386/x86-64-optimize-7b.d: Likewise.
801         * testsuite/gas/i386/x86-64-optimize-7c.d: Likewise.
802         * testsuite/gas/i386/x86-64-optimize-2.d: Updated.
803
804 2019-03-15  Li Hao  <li.hao296@zte.com.cn>
805
806         PR 24308
807         * config/tc-i386.c (parse_insn): Check mnemp before using it to
808         determine if a suffix can be trimmed.
809
810 2019-03-13  Christian Eggers  <ceggers@gmx.de>
811
812         * dwarf2dbg.c (out_set_addr): Align relocation within .debug_line.
813
814 2019-03-13  Christian Eggers  <ceggers@gmx.de>
815
816         * dwarf2dbg.c (out_debug_line): Pad size of .debug_line section.
817
818 2019-03-13  Christian Eggers  <ceggers@gmx.de>
819
820         * dwarf2dbg.c (out_debug_str): Use octets for .debug_string pointers.
821
822 2019-03-13  Christian Eggers  <ceggers@gmx.de>
823
824         * dwarf2dbg.c (out_debug_line): Use octets for .debug_line prologue.
825
826 2019-03-13  Christian Eggers  <ceggers@gmx.de>
827
828         * dwarf2dbg.c (out_debug_line): Use octets for dwarf2 headers.
829         (out_debug_aranges, out_debug_info): Likewise.
830
831 2019-03-13  Christian Eggers  <ceggers@gmx.de>
832
833         * symbols.h (symbol_temp_new_now_octets): Declare.
834         (symbol_set_value_now_octets, symbol_octets_p): Declare.
835         * symbols.c (struct symbol_flags): New member sy_octets.
836         (symbol_temp_new_now_octets): New function.
837         (resolve_symbol_value): Return octets instead of bytes if
838         sy_octets is set.
839         (symbol_set_value_now_octets): New function.
840         (symbol_octets_p): New function.
841
842 2019-03-13  Christian Eggers  <ceggers@gmx.de>
843
844         * dwarf2dbg.c (dwarf2_emit_insn): Fix calculation of line info offset.
845
846 2019-03-12  Andreas Krebbel  <krebbel@linux.ibm.com>
847
848         * testsuite/gas/s390/zarch-arch13.s: Adjust testcase to optable changes.
849         * testsuite/gas/s390/zarch-arch13.d: Likewise.
850
851 2019-02-27  Matthew Malcomson  <matthew.malcomson@arm.com>
852
853         * testsuite/gas/aarch64/dotproduct.d: Use multiple "as" lines.
854         * testsuite/gas/aarch64/dotproduct_armv8_4.d: Remove.
855         * testsuite/gas/aarch64/dotproduct_armv8_4.s: Remove.
856         * testsuite/gas/aarch64/illegal-dotproduct.d: Use multiple "as"
857         lines.
858         * testsuite/gas/aarch64/ldst-rcpc-armv8_2.d: Remove.
859         * testsuite/gas/aarch64/ldst-rcpc.d: Use multiple "as" lines.
860
861 2019-02-24  Alan Modra  <amodra@gmail.com>
862
863         * config/tc-ppc.c (parse_tls_arg): Wrap in #ifdef OBJ_ELF.
864
865 2019-02-24  Alan Modra  <amodra@gmail.com>
866
867         PR 24144
868         * config/obj-aout.c (obj_aout_frob_file_before_fix): Write to end
869         of section to ensure file contents cover aligned section size.
870
871 2019-02-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
872
873         * config/tc-arm.c (arm_cpus): Add neoverse-n1.
874         * doc/c-arm.texi (-mcpu): Document neoverse-n1 value.
875
876 2019-02-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
877
878         * config/tc-aarch64.c (aarch64_cpus): Add neoverse-e1.
879         * doc/c-aarch64.texi (-mcpu): Document neoverse-e1 value.
880
881 2019-02-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
882
883         * config/tc-aarch64.c (aarch64_cpus): Add neoverse-n1.
884         * doc/c-aarch64.texi (-mcpu): Document neoverse-n1 value.
885
886 2019-02-19  Paul Hua  <paul.hua.gm@gmail.com>
887
888         * NEWS: Mention -m[no-]fix-loongson3-llsc.
889         * configure.ac: Add --enable-mips-fix-loongson3-llsc.
890         Define DEFAULT_MIPS_FIX_LOONGSON3_LLSC.
891         * config.in: Regenerated.
892         * configure: Likewise.
893         * config/tc-mips.c (sync_insn, mips_fix_loongson3_llsc):
894         New variables.
895         (options): New OPTION_FIX_LOONGSON3_LLSC,
896         OPTION_NO_FIX_LOONGSON3_LLSC.
897         (md_longopts): Add -m[no-]fix-loongson3-llsc.
898         (md_begin): Initialize sync insn.
899         (fix_loongson3_llsc): New.
900         (append_insn): Call fix_loongson3_llsc.
901         (md_parse_option): Handle OPTION_FIX_LOONGSON3_LLSC,
902         OPTION_NO_FIX_LOONGSON3_LLSC.
903         (md_show_usage): Display -m[no-]fix-loongson3-llsc.
904         * doc/c-mips.texi: Document -m[no-]fix-loongson3-llsc,
905         --enable-mips-fix-loongson3-llsc=[yes|no].
906
907 2019-02-10  H.J. Lu  <hongjiu.lu@intel.com>
908
909         PR gas/24165
910         * frags.c (frag_var_init): Pass max_chars to TC_FRAG_INIT as
911         max_bytes.
912         * config/tc-aarch64.h (TC_FRAG_INIT): Add and pass max_bytes to
913         aarch64_init_frag.
914         * /config/tc-arm.h (TC_FRAG_INIT): And and pass max_bytes to
915         arm_init_frag.
916         * config/tc-avr.h (TC_FRAG_INIT): And and ignore max_bytes.
917         * config/tc-ia64.h (TC_FRAG_INIT): Likewise.
918         * config/tc-mmix.h (TC_FRAG_INIT): Likewise.
919         * config/tc-nds32.h (TC_FRAG_INIT): Likewise.
920         * config/tc-ns32k.h (TC_FRAG_INIT): Likewise.
921         * config/tc-rl78.h (TC_FRAG_INIT): Likewise.
922         * config/tc-rx.h (TC_FRAG_INIT): Likewise.
923         * config/tc-score.h (TC_FRAG_INIT): Likewise.
924         * config/tc-tic54x.h (TC_FRAG_INIT): Likewise.
925         * config/tc-tic6x.h (TC_FRAG_INIT): Likewise.
926         * config/tc-xtensa.h (TC_FRAG_INIT): Likewise.
927         * config/tc-i386.h (MAX_MEM_FOR_RS_ALIGN_CODE): Set to
928         (alignment ? ((1 << alignment) - 1) : 1)
929         (i386_tc_frag_data): Add max_bytes.
930         (TC_FRAG_INIT): Add and track max_bytes.
931         (HANDLE_ALIGN): Replace MAX_MEM_FOR_RS_ALIGN_CODE with
932         fragP->tc_frag_data.max_bytes.
933         * doc/internals.texi: Update TC_FRAG_TYPE with max_bytes.
934
935 2019-02-08  Jim Wilson  <jimw@sifive.com>
936
937         * config/tc-riscv.c (validate_riscv_insn) <'C'>: Add 'z' support.
938         (riscv_ip) <'C'>: Add 'z' support.
939
940 2019-02-07  Tamar Christina  <tamar.christina@arm.com>
941
942         * config/tc-arm.c (insns): Redefine THUMB_VARIANT and ARM_VARIANT for
943         hlt to armv1.
944         * testsuite/gas/arm/armv8a-automatic-hlt.d: Update TAGs
945         * testsuite/gas/arm/hlt.d: New test.
946         * testsuite/gas/arm/hlt.s: New test.
947
948 2019-02-07  Tamar Christina  <tamar.christina@arm.com>
949
950         * testsuite/gas/aarch64/undefined_advsimd_armv8_3.d: New test.
951         * testsuite/gas/aarch64/undefined_advsimd_armv8_3.s: New test.
952
953 2019-02-07  Tamar Christina  <tamar.christina@arm.com>
954
955         PR binutils/23212
956         * testsuite/gas/aarch64/undefined_by_elem_sz_l.s: New test.
957         * testsuite/gas/aarch64/undefined_by_elem_sz_l.d: New test.
958
959 2019-02-07  Eric Botcazou  <ebotcazou@adacore.com>
960
961         * config/tc-visium.c (md_assemble) <mode_cad>: Align instruction on
962         64-bit boundaries for the GR6.
963         * testsuite/gas/visium/allinsn_gr6.s: Tweak.
964         * testsuite/gas/visium/allinsn_gr6.d: Likewise.
965         * testsuite/gas/visium/bra-1.d: New test.
966         * testsuite/gas/visium/bra-1.s: Likewise.
967         * testsuite/gas/visium/visium.exp: Run bra-1 test.
968
969 2019-01-31  John Darrington <john@darrington.wattle.id.au>
970
971         * config/tc-s12z.c (lex_imm): Add new argument exp_o.
972         (emit_reloc): New function.
973         (md_apply_fix): [BFD_RELOC_S12Z_OPR] Recognise that it
974         can be either 2 bytes or 3 bytes long.
975         * testsuite/gas/s12z/mov-imm-reloc.d: New file.
976         * testsuite/gas/s12z/mov-imm-reloc.s: New file.
977         * testsuite/gas/s12z/s12z.exp: Add them.
978
979 2019-01-31  John Darrington <john@darrington.wattle.id.au>
980
981         * config/tc-s12z.c (md_apply_fix): Fix incorrect limits.
982         * testsuite/gas/s12z/pc-rel-bad.d: New file.
983         * testsuite/gas/s12z/pc-rel-bad.l: New file.
984         * testsuite/gas/s12z/pc-rel-bad.s: New file.
985         * testsuite/gas/s12z/pc-rel-good.d: New file.
986         * testsuite/gas/s12z/pc-rel-good.s: New file.
987         * testsuite/gas/s12z/s12z.exp: Add them.
988
989 2019-01-31  John Darrington <john@darrington.wattle.id.au>
990
991         * config/tc-s12z.c (tfr): Emit warning if operands are the same.
992         * testsuite/gas/s12z/exg.d: New test case.
993         * testsuite/gas/s12z/exg.l: New file.
994
995 2019-01-31  John Darrington <john@darrington.wattle.id.au>
996
997         * config/tc-s12z.c (lex_opr): Add a parameter to indicate whether
998         immediate mode operands should be permitted.
999         * testsuite/s12z/imm-dest.d: New file.
1000         * testsuite/s12z/imm-dest.l: New file.
1001         * testsuite/s12z/imm-dest.s: New file.
1002         * testsuite/s12z/s12z.exp: Add them.
1003
1004 2019-01-31  Andreas Krebbel  <krebbel@linux.ibm.com>
1005
1006         * config/tc-s390.c (s390_parse_cpu): New entry for arch13.
1007         * doc/c-s390.texi: Document arch13 march option.
1008         * testsuite/gas/s390/s390.exp: Run the arch13 related tests.
1009         * testsuite/gas/s390/zarch-arch13.d: New test.
1010         * testsuite/gas/s390/zarch-arch13.s: New test.
1011         * testsuite/gas/s390/zarch-z13.d: Expect the renamed mnemonics
1012         also for z13.
1013
1014 2019-01-31  Alan Modra  <amodra@gmail.com>
1015
1016         * config/tc-alpha.c (md_apply_fix): Correct range checks for
1017         BFD_RELOC_ALPHA_NOP, BFD_RELOC_ALPHA_LDA, BFD_RELOC_ALPHA_BSR.
1018         * config/tc-arm.c (md_apply_fix): Use llabs rather than abs.
1019         * config/tc-csky.c (get_macro_reg_vals): Pass s to csky_show_error.
1020
1021 2019-01-28  Max Filippov  <jcmvbkbc@gmail.com>
1022
1023         * config/tc-xtensa.c (md_apply_fix): Mark fixups for constant
1024         symbols as done in md_apply_fix.
1025         * testsuite/gas/all/forward.d: Don't XFAIL for xtensa.
1026
1027 2019-01-28  Nick Clifton  <nickc@redhat.com>
1028
1029         * po/fr.po: Updated French translation.
1030         * po/ru.po: Updated Russian translation.
1031
1032 2019-01-28  Alan Modra  <amodra@gmail.com>
1033
1034         * configure.ac (ac_checking): Set from bfd/development.sh
1035         development variable.
1036         * configure: Regenerate.
1037
1038 2019-01-25  Sudakshina Das  <sudi.das@arm.com>
1039
1040         * config/tc-aarch64.c (warn_unpredictable_ldst): Exempt
1041         stg, st2g, stzg and stz2g from Xt == Xn with writeback warning.
1042         * testsuite/gas/aarch64/armv8_5-a-memtag.d: Change tests for
1043         stg, stzg, st2g and stz2g.
1044         * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
1045         * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
1046         * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
1047
1048 2019-01-25  Sudakshina Das  <sudi.das@arm.com>
1049
1050         * testsuite/gas/aarch64/armv8_5-a-memtag.d: New tests for stzgm.
1051         * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
1052         * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
1053         * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
1054
1055 2019-01-25  Sudakshina Das  <sudi.das@arm.com>
1056             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
1057
1058         * config/tc-aarch64.c (parse_address_main): Remove support for
1059         [base]! address expression.
1060         (parse_operands): Remove support for AARCH64_OPND_ADDR_SIMPLE_2.
1061         (warn_unpredictable_ldst): Remove support for ldstgv_indexed.
1062         * testsuite/gas/aarch64/armv8_5-a-memtag.d: Remove tests for ldgv
1063         and stgv.
1064         * testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
1065         * testsuite/gas/aarch64/illegal-memtag.l: Likewise.
1066         * testsuite/gas/aarch64/illegal-memtag.s: Likewise.
1067
1068 2019-01-25  Wu Heng  <wu.heng@zte.com.cn>
1069
1070         PR gas/23940
1071         * macro.c (getstring): Check array bound before accessing.
1072
1073 2019-01-25  Alan Modra  <amodra@gmail.com>
1074
1075         PR 20902
1076         PR 24125
1077         * read.c (stringer): Delete assertion.
1078
1079 2019-01-21  Nick Clifton  <nickc@redhat.com>
1080
1081         * po/uk.po: Updated Ukranian translation.
1082
1083 2019-01-19  Nick Clifton  <nickc@redhat.com>
1084
1085         * config.in: Regenerate.
1086         * configure: Regenerate.
1087         * po/gas.pot: Regenerate.
1088
1089 2018-06-24  Nick Clifton  <nickc@redhat.com>
1090
1091         2.32 branch created.
1092
1093 2019-01-17  Tamar Christina  <tamar.christina@arm.com>
1094
1095         * testsuite/gas/arm/archv6t2-1-pe.d: New test.
1096         * testsuite/gas/arm/archv6t2-1.d: Skip pe.
1097         * testsuite/gas/arm/csdb.d: Skip pe.
1098         * testsuite/gas/arm/sb-thumb1-pe.d: New test.
1099         * testsuite/gas/arm/sb-thumb1.d: Skip pe.
1100         * testsuite/gas/arm/sb-thumb2-pe.d: New test.
1101         * testsuite/gas/arm/sb-thumb2.d: Skip pe.
1102         * testsuite/gas/arm/udf.d: Skip pe.
1103
1104 2019-01-16  Kito Cheng  <kito@andestech.com>
1105
1106         * testsuite/gas/riscv/attribute-empty.d: New.
1107
1108 2019-01-16  Kito Cheng  <kito@andestech.com>
1109             Nelson Chu  <nelson@andestech.com>
1110
1111         * config/tc-riscv.c (DEFAULT_RISCV_ATTR): Define to 0 if not defined.
1112         (riscv_set_options): Add `arch_attr` field.
1113         (riscv_opts): Set default value for arch_attr.
1114         (riscv_write_out_arch_attr): New.
1115         (riscv_set_public_attributes): Likewise.
1116         (riscv_md_end): Likewise.
1117         (riscv_convert_symbolic_attribute): Likewise.
1118         (s_riscv_attribute): Likewise.
1119         (explicit_arch_attr): Likewise.
1120         (riscv_pseudo_table): Add .attribute to the table.
1121         (options): Add OPTION_ARCH_ATTR and OPTION_NO_ARCH_ATTR
1122         enumeration constants.
1123         (md_longopts): Add `march-attr' and `mno-arch-attr' options.
1124         (md_parse_option): Handle the new options.
1125         (md_show_usage): Document the `march-attr' option.
1126         * config/tc-riscv.h (md_end): Define as riscv_md_end
1127         (riscv_md_end): Declare.
1128         (CONVERT_SYMBOLIC_ATTRIBUTE): Define as
1129         riscv_convert_symbolic_attribute.
1130         (riscv_convert_symbolic_attribute): Declare.
1131         (start_assemble): Declare.
1132         * testsuite/gas/elf/elf.exp: Adjust test case for section2.e.
1133         * testsuite/gas/elf/section2.e-riscv: New.
1134         * testsuite/gas/riscv/attribute-01.d: New test
1135         * testsuite/gas/riscv/attribute-02.d: Likewise.
1136         * testsuite/gas/riscv/attribute-03.d: Likewise.
1137         * testsuite/gas/riscv/attribute-04.d: Likewise.
1138         * testsuite/gas/riscv/attribute-04.s: Likewise.
1139         * testsuite/gas/riscv/attribute-05.d: Likewise.
1140         * testsuite/gas/riscv/attribute-05.s: Likewise.
1141         * testsuite/gas/riscv/attribute-06.d: Likewise.
1142         * testsuite/gas/riscv/attribute-06.s: Likewise.
1143         * testsuite/gas/riscv/attribute-07.d: Likewise.
1144         * testsuite/gas/riscv/attribute-07.s: Likewise.
1145         * testsuite/gas/riscv/attribute-08.d: Likewise.
1146         * testsuite/gas/riscv/attribute-08.s: Likewise.
1147         * testsuite/gas/riscv/attribute-unknown.d: Likewise.
1148         * testsuite/gas/riscv/attribute-unknown.s: Likewise.
1149         * testsuite/gas/riscv/empty.l: Likewise.
1150         * doc/c-riscv.texi (.attribute): Add documentation.
1151         * configure.ac (--enable-default-riscv-attribute): New options.
1152         * configure: Re-generate.
1153         * config.in: Re-generate.
1154
1155 2019-01-16  John Darrington <john@darrington.wattle.id.au>
1156
1157         * config/tc-s12z.c (lex_reg_name): Compare the length of the strings
1158         before the contents.
1159         * testsuite/gas/s12z/labels.d: New file.
1160         * testsuite/gas/s12z/labels.s: New file.
1161         * testsuite/gas/s12z/s12z.exp: Add them.
1162         * config/tc-s12z.c (tfr): Change as_bad to as_warn.
1163         Also fix message typo and semantics.
1164         * config/tc-s12z.c (emit_opr): Emit BFD_RELOC_S12Z_OPR instead of
1165         BFD_RELOC_24.
1166         * testsuite/gas/s12z/opr-indirect-expr.d: Expect R_S12Z_OPR instead
1167         of R_S12Z_EXT24.
1168
1169 2019-01-14  Srinath Parvathaneni  <srinath.parvathaneni@arm.com>
1170
1171         * config/tc-arm.c (arm_ext_v6k_v6t2): Define.
1172         (insns) [ARM_VARIANT]: Modified.
1173         (insns) [THUMB_VARIANT]: To implement few ARMv6K instructions
1174         in ARMv6T2 as well.
1175         * testsuite/gas/arm/archv6t2-1.d: New test.
1176         * testsuite/gas/arm/archv6t2-1.s: Likewise.
1177         * testsuite/gas/arm/archv6t2-2.d: Likewise.
1178
1179 2019-01-11  Alan Modra  <amodra@gmail.com>
1180
1181         PR 23963
1182         * testsuite/gas/m68hc11/lbranch-dwarf2.d: Adjust for PR23963 change.
1183         * testsuite/gas/m68hc11/opers12-dwarf2.d: Likewise.
1184
1185 2019-01-10  Nick Clifton  <nickc@redhat.com>
1186
1187         PR 23963
1188         * testsuite/gas/mips/mips16-branch-absolute-1.d: Adjust for the
1189         fact that control characters are now displayed as escape
1190         sequences.
1191         * testsuite/gas/mips/mips16-e.d: Likewise.
1192         * testsuite/gas/mips/mips16-pcrel-0.d: Likewise.
1193         * testsuite/gas/mips/mips16-pcrel-1.d: Likewise.
1194         * testsuite/gas/mips/mips16-pcrel-delay-0.d: Likewise.
1195         * testsuite/gas/mips/mips16-pcrel-delay-1.d: Likewise.
1196         * testsuite/gas/mips/mips16-pcrel-n32-0.d: Likewise.
1197         * testsuite/gas/mips/mips16-pcrel-n32-1.d: Likewise.
1198         * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: Likewise.
1199         * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: Likewise.
1200         * testsuite/gas/mips/mips16e2@mips16-pcrel-0.d: Likewise.
1201         * testsuite/gas/mips/mips16e2@mips16-pcrel-1.d: Likewise.
1202         * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-0.d: Likewise.
1203         * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-1.d: Likewise.
1204         * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-0.d: Likewise.
1205         * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-1.d: Likewise.
1206         * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-0.d:
1207         Likewise.
1208         * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-1.d:
1209         Likewise.
1210         * testsuite/gas/mips/mipsel16-e.d: Likewise.
1211         * testsuite/gas/mips/mipsr6@msa.d: Likewise.
1212         * testsuite/gas/mips/mipsr6@relax-swap3.d: Likewise.
1213         * testsuite/gas/mips/r6-64-n32.d: Likewise.
1214         * testsuite/gas/mips/r6-64-n64.d: Likewise.
1215         * testsuite/gas/mips/r6-n32.d: Likewise.
1216         * testsuite/gas/mips/r6-n64.d: Likewise.
1217         * testsuite/gas/mips/r6.d: Likewise.
1218         * testsuite/gas/mips/tmips16-e.d: Likewise.
1219         * testsuite/gas/mips/tmipsel16-e.d: Likewise.
1220         * testsuite/gas/mn10300/relax.d: Likewise.
1221
1222 2019-01-09  John Darrington <john@darrington.wattle.id.au>
1223
1224         * testsuite/gas/s12z/jsr.s: New case.
1225         * testsuite/gas/s12z/jsr.d: New case.
1226
1227 2019-01-09  Andrew Paprocki  <andrew@ishiboo.com>
1228
1229         * configure: Regenerate.
1230
1231 2019-01-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1232
1233         * config/tc-aarch64.c (aarch64_cpus): Add ares.
1234         * doc/c-aarch64.texi (-mcpu): Document ares value.
1235
1236 2019-01-08  Alan Modra  <amodra@gmail.com>
1237
1238         * testsuite/gas/rx/rx.exp: Create generated test source in
1239         current directory.
1240         * testsuite/gas/rx/Xtod.d, * testsuite/gas/rx/abs.d,
1241         * testsuite/gas/rx/adc.d, * testsuite/gas/rx/add.d,
1242         * testsuite/gas/rx/and.d, * testsuite/gas/rx/bclr.d,
1243         * testsuite/gas/rx/bcnd.d, * testsuite/gas/rx/bfmov.d,
1244         * testsuite/gas/rx/bmcnd.d, * testsuite/gas/rx/bnot.d,
1245         * testsuite/gas/rx/bra.d, * testsuite/gas/rx/brk.d,
1246         * testsuite/gas/rx/bset.d, * testsuite/gas/rx/bsr.d,
1247         * testsuite/gas/rx/btst.d, * testsuite/gas/rx/clrpsw.d,
1248         * testsuite/gas/rx/cmp.d, * testsuite/gas/rx/dabs.d,
1249         * testsuite/gas/rx/dadd.d, * testsuite/gas/rx/dbt.d,
1250         * testsuite/gas/rx/dcmp.d, * testsuite/gas/rx/ddiv.d,
1251         * testsuite/gas/rx/div.d, * testsuite/gas/rx/divu.d,
1252         * testsuite/gas/rx/dmov.d, * testsuite/gas/rx/dmul.d,
1253         * testsuite/gas/rx/dneg.d, * testsuite/gas/rx/dpopm.d,
1254         * testsuite/gas/rx/dpushm.d, * testsuite/gas/rx/dround.d,
1255         * testsuite/gas/rx/dsqrt.d, * testsuite/gas/rx/dsub.d,
1256         * testsuite/gas/rx/dtoX.d, * testsuite/gas/rx/emaca.d,
1257         * testsuite/gas/rx/emsba.d, * testsuite/gas/rx/emul.d,
1258         * testsuite/gas/rx/emula.d, * testsuite/gas/rx/emulu.d,
1259         * testsuite/gas/rx/fadd.d, * testsuite/gas/rx/fcmp.d,
1260         * testsuite/gas/rx/fdiv.d, * testsuite/gas/rx/fmul.d,
1261         * testsuite/gas/rx/fsqrt.d, * testsuite/gas/rx/fsub.d,
1262         * testsuite/gas/rx/ftoi.d, * testsuite/gas/rx/ftou.d,
1263         * testsuite/gas/rx/gprel.d, * testsuite/gas/rx/int.d,
1264         * testsuite/gas/rx/itof.d, * testsuite/gas/rx/jmp.d,
1265         * testsuite/gas/rx/jsr.d, * testsuite/gas/rx/machi.d,
1266         * testsuite/gas/rx/maclh.d, * testsuite/gas/rx/maclo.d,
1267         * testsuite/gas/rx/max.d, * testsuite/gas/rx/min.d,
1268         * testsuite/gas/rx/mov.d, * testsuite/gas/rx/movco.d,
1269         * testsuite/gas/rx/movli.d, * testsuite/gas/rx/movu.d,
1270         * testsuite/gas/rx/msbhi.d, * testsuite/gas/rx/msblh.d,
1271         * testsuite/gas/rx/msblo.d, * testsuite/gas/rx/mul.d,
1272         * testsuite/gas/rx/mulhi.d, * testsuite/gas/rx/mullh.d,
1273         * testsuite/gas/rx/mullo.d, * testsuite/gas/rx/mvfacgu.d,
1274         * testsuite/gas/rx/mvfachi.d, * testsuite/gas/rx/mvfaclo.d,
1275         * testsuite/gas/rx/mvfacmi.d, * testsuite/gas/rx/mvfc.d,
1276         * testsuite/gas/rx/mvfcp.d, * testsuite/gas/rx/mvfdc.d,
1277         * testsuite/gas/rx/mvfdr.d, * testsuite/gas/rx/mvtacgu.d,
1278         * testsuite/gas/rx/mvtachi.d, * testsuite/gas/rx/mvtaclo.d,
1279         * testsuite/gas/rx/mvtc.d, * testsuite/gas/rx/mvtcp.d,
1280         * testsuite/gas/rx/mvtdc.d, * testsuite/gas/rx/neg.d,
1281         * testsuite/gas/rx/nop.d, * testsuite/gas/rx/not.d,
1282         * testsuite/gas/rx/opecp.d, * testsuite/gas/rx/or.d,
1283         * testsuite/gas/rx/pop.d, * testsuite/gas/rx/popc.d,
1284         * testsuite/gas/rx/popm.d, * testsuite/gas/rx/push.d,
1285         * testsuite/gas/rx/pushc.d, * testsuite/gas/rx/pushm.d,
1286         * testsuite/gas/rx/r-bcc.d, * testsuite/gas/rx/r-bra.d,
1287         * testsuite/gas/rx/racl.d, * testsuite/gas/rx/racw.d,
1288         * testsuite/gas/rx/rdacl.d, * testsuite/gas/rx/rdacw.d,
1289         * testsuite/gas/rx/revl.d, * testsuite/gas/rx/revw.d,
1290         * testsuite/gas/rx/rmpa.d, * testsuite/gas/rx/rolc.d,
1291         * testsuite/gas/rx/rorc.d, * testsuite/gas/rx/rotl.d,
1292         * testsuite/gas/rx/rotr.d, * testsuite/gas/rx/round.d,
1293         * testsuite/gas/rx/rstr.d, * testsuite/gas/rx/rte.d,
1294         * testsuite/gas/rx/rtfi.d, * testsuite/gas/rx/rts.d,
1295         * testsuite/gas/rx/rtsd.d, * testsuite/gas/rx/sat.d,
1296         * testsuite/gas/rx/satr.d, * testsuite/gas/rx/save.d,
1297         * testsuite/gas/rx/sbb.d, * testsuite/gas/rx/sccnd.d,
1298         * testsuite/gas/rx/scmpu.d, * testsuite/gas/rx/setpsw.d,
1299         * testsuite/gas/rx/shar.d, * testsuite/gas/rx/shll.d,
1300         * testsuite/gas/rx/shlr.d, * testsuite/gas/rx/smovb.d,
1301         * testsuite/gas/rx/smovf.d, * testsuite/gas/rx/smovu.d,
1302         * testsuite/gas/rx/sstr.d, * testsuite/gas/rx/stnz.d,
1303         * testsuite/gas/rx/stz.d, * testsuite/gas/rx/sub.d,
1304         * testsuite/gas/rx/suntil.d, * testsuite/gas/rx/swhile.d,
1305         * testsuite/gas/rx/tst.d, * testsuite/gas/rx/utof.d,
1306         * testsuite/gas/rx/wait.d, * testsuite/gas/rx/xchg.d,
1307         * testsuite/gas/rx/xor.d: Add #source line.
1308
1309 2019-01-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1310
1311         * config/tc-arm.c (arm_cpus): Add ares.
1312         * doc/c-arm.texi (-mcpu): Document ares value.
1313
1314 2019-01-05  Yoshinori Sato  <ysato@users.sourceforge.jp>
1315
1316         * config/rx-defs.h (rx_cpu_types): Add type RXV3 and RXV3FPU.
1317         (rx_bfield): Add prototype.
1318         (rx_post): Likewise.
1319         * config/rx-parse.y: Add v3 instructions and Double FPU registers.
1320         (DSIZE): Define.
1321         (POST): Define.
1322         (rx_check_v3): New. check v3 type.
1323         (rx_check_dfpu): New. check have double support.
1324         (double_condition_table): New. dcmp<cond> contiditon.
1325         (check_condition): Multiple condition support.
1326         (rx_lex): RXv3 instructions support.
1327         Add parse dcmp<cond> instruction and Double FPU registers.
1328         (immediate): Disable optimize in dmov #imm case.
1329         (displacement): Add double displacement in dmov instraction.
1330         * config/tc-rx.c (rx_use_conventional_section_names):
1331         Invert default value in rx-*-linux target.
1332         (cpu_type): Add additional ELF flags.
1333         (cpu_type_list): Add RXv3.
1334         (md_parse_option): Refer elf_flags from cpu_type_list.
1335         (md_show_usage): Add rxv3 and rxv3-dfpu.
1336         (rx_bytesT): Add post byte.
1337         (rx_bfield): New. generate bfmov / bfmovz "imm" field.
1338         (rx_post): New. Set instruction post byte.
1339         (md_assemble): Add post byte.
1340         doc/c-rx.texi: Add cpu types.
1341         * testsuite/gas/rx/Xtod.d: New.
1342         * testsuite/gas/rx/Xtod.sm: New.
1343         * testsuite/gas/rx/bfmov.d: New.
1344         * testsuite/gas/rx/bfmov.sm: New.
1345         * testsuite/gas/rx/dabs.d: New.
1346         * testsuite/gas/rx/dabs.sm: New.
1347         * testsuite/gas/rx/dadd.d: New.
1348         * testsuite/gas/rx/dadd.sm: New.
1349         * testsuite/gas/rx/dcmp.d: New.
1350         * testsuite/gas/rx/dcmp.sm: New.
1351         * testsuite/gas/rx/ddiv.d: New.
1352         * testsuite/gas/rx/ddiv.sm: New.
1353         * testsuite/gas/rx/dmov.d: New.
1354         * testsuite/gas/rx/dmov.sm: New.
1355         * testsuite/gas/rx/dmul.d: New.
1356         * testsuite/gas/rx/dmul.sm: New.
1357         * testsuite/gas/rx/dneg.d: New.
1358         * testsuite/gas/rx/dneg.sm: New.
1359         * testsuite/gas/rx/dpopm.d: New.
1360         * testsuite/gas/rx/dpopm.sm: New.
1361         * testsuite/gas/rx/dpushm.d: New.
1362         * testsuite/gas/rx/dpushm.sm: New.
1363         * testsuite/gas/rx/dround.d: New.
1364         * testsuite/gas/rx/dround.sm: New.
1365         * testsuite/gas/rx/dsqrt.d: New.
1366         * testsuite/gas/rx/dsqrt.sm: New.
1367         * testsuite/gas/rx/dsub.d: New.
1368         * testsuite/gas/rx/dsub.sm: New.
1369         * testsuite/gas/rx/dtoX.d: New.
1370         * testsuite/gas/rx/dtoX.sm: New.
1371         * testsuite/gas/rx/macros.inc: Add double FPU registers.
1372         * testsuite/gas/rx/mvfdc.d: New.
1373         * testsuite/gas/rx/mvfdc.sm: New.
1374         * testsuite/gas/rx/mvfdr.d: New.
1375         * testsuite/gas/rx/mvfdr.sm: New.
1376         * testsuite/gas/rx/mvtdc.d: New.
1377         * testsuite/gas/rx/mvtdc.sm: New.
1378         * testsuite/gas/rx/rstr.d: New.
1379         * testsuite/gas/rx/rstr.sm: New.
1380         * testsuite/gas/rx/rx.exp: Use rxv3-dfpu option.
1381         * testsuite/gas/rx/save.d: New.
1382         * testsuite/gas/rx/save.sm: New.
1383         * testsuite/gas/rx/xor.d: New.
1384         * testsuite/gas/rx/xor.sm: Add pattern.
1385
1386 2019-01-04  Wu Heng  <wu.heng@zte.com.cn>
1387
1388         PR 24010
1389         * macro.c (get_any_string): Check for end of input whilst scanning
1390         for separators.
1391
1392 2019-01-04  Wu Heng  <wu.heng@zte.com.cn>
1393
1394         PR 24009
1395         * read.c (stringer): Fix handling of missing '>' character at end
1396         of <...> sequence.
1397
1398 2019-01-01  Alan Modra  <amodra@gmail.com>
1399
1400         Update year range in copyright notice of all files.
1401
1402 For older changes see ChangeLog-2018
1403 \f
1404 Copyright (C) 2019 Free Software Foundation, Inc.
1405
1406 Copying and distribution of this file, with or without modification,
1407 are permitted in any medium without royalty provided the copyright
1408 notice and this notice are preserved.
1409
1410 Local Variables:
1411 mode: change-log
1412 left-margin: 8
1413 fill-column: 74
1414 version-control: never
1415 End: