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